@charset "utf-8";
/*共通設定*/
.breadcrumb {
    display: flex;
    justify-content: left;
    align-items: center;
    font-size: 14px;
    margin: 40px 0;
}

.breadcrumb p {
    margin: 0 8px;
}

.breadcrumb a:hover {
    opacity: 0.8;
}

.flex-con {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

.main {
    width: 75%;
    padding-left: 24px;
    border-left: solid 1px #f1f1f1;
}

.category {
    width: 25%;
    padding-right: 16px;
}

.main-flex {
    margin-bottom: 100px;
}

.main-flex h1 {
    margin-bottom: 40px;
    font-size: 24px;
    font-weight: 400;
    border-bottom: solid 1px #f1f1f1;
    padding-bottom: 8px;
}

.category h2 {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    font-size: 18px;
}

.category h2::after {
    content: '';
    height: 1px;
    background-color: #999;
    flex-grow: 1;
    margin-left: 16px;
}

.cate-list li {
    margin-bottom: 8px;
}

.cate-list a:hover {
    opacity: 0.8;
}
/*終わり*/ 

/*<section class="single-con">*/
.time-cate {
    display: flex;
    line-height: 1;
    font-size: 14px;
    margin-bottom: 24px;
}

.time-cate time {
    border-right: solid 1px #999;
    padding-right: 16px;
}

.time-cate p {
    padding-left: 16px;
}

.single-txt {
    padding: 0 2vw 40px 2vw;
    border-bottom: solid 1px #f1f1f1;
}

.prev-next {
    margin-top: 80px;
}

.prev-next-in {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.prev-btn,
.next-btn {
    padding: 8px 10px;
    color: #14B88D;
    border: solid 2px #14B88D;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.archive-btn {
    padding: 8px 10px;
    color: #14B88D;
    border: solid 2px #14B88D;
    border-radius: 8px;
}

.prev-btn {
    flex-direction: row-reverse;
}

.prev-btn .arrow-con03::after{
	left: 0px;
    top: 1px;
	border-top: 2px solid #14B88D;
	border-right: 2px solid #14B88D;
	-webkit-transform: rotate(-135deg);
	transform: rotate(-135deg);
}

.next-btn .arrow-con03::after {
    left: 10px;
    top: 1px;
	border-top: 2px solid #14B88D;
	border-right: 2px solid #14B88D;
}

.prev-btn:hover,
.next-btn:hover,
.archive-btn:hover  {
    color: #fff;
    background-color: #14b88d;
}

.prev-btn:hover .arrow-con03::after{
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
}

.next-btn:hover .arrow-con03::after {
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
}

/*終わり*/ 

/*タブレット*/
@media (max-width: 1024px) {
/*共通設定*/
    .flex-con {
        display: block;
    }

    .main {
        width: 100%;
        padding-left: 0px;
        border-left: none;
        margin-bottom: 80px;
    }
    
    .category {
        width: 100%;
        padding-right: 0;
    }    
/*終わり*/ 
}

/*スマホ*/
@media (max-width: 599px) {
/*共通設定*/
    .main-flex h1 {
        font-size: 20px;
    }
/*終わり*/ 

/*<section class="single-con">*/
    .prev-btn,
    .next-btn {
        font-size: 14px;
        padding: 4px 8px;
        top: 0;
    }

    .archive-btn {
        font-size: 14px;
        padding: 4px 5px;
    }
/*終わり*/
}


