@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;200;300;400;500;600;700;800;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
html{
    scroll-behavior: smooth;
}
#article main{
    background-color: var(--base-color);
    font-feature-settings: "palt";
}

.mv {
    position: relative;
    width: 100%;
    height: auto;
    max-height: 600px;
    text-align: center;
    background: #eeeeee;
}
.mv img {
    height: 100%;
    width: 100%;
    max-height: 600px;
    max-width: 1500px;
    object-fit: contain;
}

.article-wrap{
    padding-bottom: 8rem;
}
.head-wrap{
    padding: 0 20px;
}

/* 記事タイトル
===============================================================*/
.article-head{
    width: 100%;
    padding: 4rem;
    margin-top: -15px;
    background-color: rgba(255,255,255,0.75);
    position: relative;
}

.label{
    position: absolute;
    top: 0;
    left: 0;
    width: 9.5rem;
    height: 9.5rem;
    padding: 0.5rem 0.8rem;
    background-color: var(--main-color);
    border-radius: 0 0 10px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.label > *{

    color: #fff;
    font-weight: bold;
    display: block;
}
.label i{
    font-family: 'Roboto', sans-serif;
    font-size: 2.8rem;
    padding-bottom: .5rem;
    border-bottom: 1px solid #fff;
}
.label span{
    font-family: 'Roboto', sans-serif;
    font-size: 3.4rem;
    padding-top: .5rem;
}
.label u{
    position: absolute;
    left: .8rem;
    top: 4.8rem;
}

.article-head .text-head{
    padding-left: 8rem;
}
.article-head .text-head h2{
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1.2;
}
.article-head .text-head span{
    font-size: 1.6rem;
}
.article-head p {
    padding-left: 8rem;
    margin-top: 3.5rem;
    font-size: 2rem;
    line-height: 1.6;
}

/* 概要 POINT
===============================================================*/
.lead h2,
.point h2{
    font-size: 2.8rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 6rem;
}
.marker {
    background: linear-gradient(transparent 70%, #c1eeff 30%);
}
.lead,
.point {
    padding-top: 6rem;
}
.lead p{
    line-height: 2;
}
.point-wrap li{
    position: relative;
}
.point-wrap li::after{
    content: '';
    display: block;
    width: 32px;
    height: 32px;
    background-image: url(/kenshou/images/2023/point-link-arrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
    /* border-top: solid 2px var(--main-color);
    border-right: solid 2px var(--main-color);
    transform: rotate(135deg); */
    position: absolute;
    top: 27%;
    right: 0;
}
.point-wrap dl:hover{
    background-color: #cfeeff;
}
.index-row:hover{
    background-color: #cfeeff;
}
.point-wrap li a:hover{
    opacity: 1;
}
.point-wrap dl{
    display: flex;
    align-items: center;
    border-bottom: 1.5px dashed var(--border-graycolor);
    padding: 1.5rem 0;
}

.point-wrap dl dt{
    background-color: var(--main-color);
    padding: .8rem .5rem;
    max-width: 11rem;
    width: 100%;
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
    color: #fff;
    margin-right: 7rem;
}
.point-wrap dl dd{
    font-size: 1.8rem;
    line-height: 1.3;
    padding-right: 3.5rem;
}
.point-wrap dl dd span{
    border-bottom: 1px solid #252525;
    /* text-decoration: underline; */
}
/* 記事
===============================================================*/

.article-title span{
    display: inline-block;
    background-color: var(--main-color);
    padding: 1.6rem 1rem;
    max-width: 12rem;
    width: 100%;
    font-size: 2rem;
    color: #fff;
    font-weight: bold;
    text-align: center;
}
.article-title h3{
    padding: 1.4rem 0;
    margin-bottom: 4rem;
    border-top: 2px solid var(--main-color);
    border-bottom: 1px solid var(--main-color);
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1.5;
}
#article-body{
    padding: 0 10px;
}
#article-body section{
    padding: 8rem 7rem;
    margin-top: 8rem;
    border-radius: 15px;
    background-color: #fff;
}
#article-body section .article-title+p{
    padding-top: 0;
}
#article-body section > p{
    padding-top: 2.5rem;
    line-height: 1.9;
    font-weight: 500;
    font-feature-settings: "palt";
}
#article-body section figure+p{
    padding-top: 5rem;
}
#article-body section figure{
    width: 90%;
    max-width: 720px;
    margin: 6rem auto 0;
}
#article-body section figure figcaption{
    margin-top: 1rem;
}
#article-info{
    padding: 2rem;
    border: 1px dotted var(--border-graycolor);
    width:-moz-fit-content; /* Firefox */
    width:fit-content; /* other browsers */
    max-width: 550px;
    margin-top: 6rem;
}
#article-info h4{
    font-weight: bold;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}
#article-info h4::before{
    content: '●';
    color: var(--main-color);
    font-size: .4em;
    vertical-align: 4px;
    margin-right: 5px;
}
#article-info ul li{
    display: flex;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
}
#article-info .info-cat{
    display: block;
    width: 12rem;
    position: relative;
    font-size: 1.6rem;
    white-space: nowrap;
    line-height: 1.4;
}
#article-info .info-cat::before{
    content: ':';
    position: absolute;
    right: 0;
    top: -2px;
}
#article-info p{
    display: block;
    padding-left: 1.5rem;
    font-size: 1.6rem;
    width: 78%;
    line-height: 1.4;
}
#article-info a{
    text-decoration: underline;
    color: var(--main-color);
}
/* SNS
===============================================================*/

.foot-wrap{
    padding: 0 20px;
}
#sns-area{
    margin-top: 7rem;
}
#sns-area ul{
    display: flex;
    justify-content: center;
    align-items: center;
}
#sns-area ul li{
    width: 100%;
    height: 55px;
    max-width: 215px;
    margin-right: 2rem;
}
#sns-area ul li a{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;

}
#sns-area ul li a.twitter{ background-color: #1d9bf0;}
#sns-area ul li a.facebook{ background-color: #1877f2;}
#sns-area ul li a.line{ background-color: #4cc764;}
#sns-area ul li a img{
    max-width: 35px;
    width: 100%;
    display: block;
}
#sns-area ul li a.facebook img{ max-width: 31px; margin-bottom: .6rem;}
#sns-area ul li a.line img{ margin-right: .5rem;}
#sns-area ul li a span{
    color: #fff;
    font-weight: bold;
    display: block;
}
/* 次へ　戻る
===============================================================*/
#prev-next-area {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    line-height: 1.2;
    margin-bottom: 5rem;
    margin-top: 5rem;
}
#prev-next-area.one-next {
    justify-content: flex-end;
}
#prev-next-area.one-prev {
    justify-content: flex-start;
}
#prev-next-area .prev-link,
#prev-next-area .next-link{
    position: relative;
    display: block;
    padding-bottom: 1rem;
    border-bottom: 2px solid #252525;
    font-size: 2rem;
    width: 40%;
}

#prev-next-area .prev-link {
    padding-left: 4.5rem;
}
#prev-next-area .next-link {
    padding-right: 4.5rem;
    text-align: left;
}
#prev-next-area .next-link span {
    display: flex;
    width: 100%;
    justify-content: flex-end;
}
#prev-next-area .next-link i {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 9px 0 9px 16px;
    border-color: transparent transparent transparent #252525;
    position: absolute;
    right: 0;
    top: 4px;
}
#prev-next-area .prev-link i {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 9px 16px 9px 0;
    border-color: transparent #252525 transparent transparent;
    position: absolute;
    left: 0;
    top: 4px;
}
@media (max-width: 1024px){

}
@media (max-width: 768px){
    .label {
        width: 6.5rem;
        height: 6.5rem;
    }
    .label i{ font-size: 2rem;}
    .label span{ font-size: 2.4rem;}
    .label u {
        top: 2.8rem;
        max-width: 11px;
        width: 100%;
    }
    .article-head {
        padding: 2rem 2rem 2rem 2rem;
    }
    .article-head .text-head {
        padding-left: 6rem;
    }
    .article-head .text-head h2 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    .article-head .text-head span {
        font-size: 1.4rem;
    }
    .article-head p {
        padding-left: 0;
        margin-top: 2rem;
        font-size: 1.5rem;
    }
/* 概要 POINT
===============================================================*/
    .lead,
    .point {
        padding-top: 5rem;
    }
    .lead h2,
    .point h2{
        font-size: 2.4rem;
        margin-bottom: 3rem;
    }
    .lead p{
        font-size: 1.4rem;
    }
    .point-wrap dl{
        flex-wrap: wrap;
    }
    .point-wrap dl dt{
        margin-right: 0;
    }
    .point-wrap dl dd{
        width: 100%;
        margin-top: 1.3rem;
        font-size: 1.7rem;
        line-height: 1.5;
    }
    .point-wrap li::after{
        top: 52%;
    }
/* 記事
===============================================================*/
    .article-title span{
        font-size: 1.8rem;
        max-width: 11rem;
        padding: 1rem;
    }
    .article-title h3{
        font-size: 1.8rem;
    }
    #article-body section{
        padding: 6rem 1.5rem;
        margin: 6rem 0;
    }
    #article-body section figure{
        width: 100%;
    }
    #article-body section figure figcaption{
        line-height: 1.4;
        font-size: 1.4rem;
    }
    #article-info{
        padding: 2rem 1rem;
        width: 100%;
    }
    #article-info ul li{
        margin-bottom: 1rem;
    }
    #article-info .info-cat,
    #article-info p{
        font-size: 1.4rem;
    }
    #article-info p{
        padding-left: 1rem;
    }

/* sns
===============================================================*/
    #sns-area ul { flex-direction: column;}
    #sns-area ul li{
        width: 100%;
        max-width: 350px;
        margin-right: 0;
        margin-bottom: 1.5rem;
    }
/* 次へ　戻る
===============================================================*/
    #prev-next-area .prev-link,
    #prev-next-area .next-link
    {
        font-size:1.6rem;
        width: 45%;
    }
    #prev-next-area .prev-link {
        padding-left: 2rem;
    }
    #prev-next-area .next-link {
        padding-right: 2rem;
    }
    #prev-next-area .next-link i {
        border-width: 7px 0 7px 12px;
    }
    #prev-next-area .prev-link i {
        border-width: 7px 12px 7px 0;
    }
}

/* 特集記事
===============================================================*/
.lead.feature p:not(:first-child) {
    padding-top: 2.5rem;
}
#featureNO.onMV {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    display: flex;
    align-content: flex-end;
    flex-wrap: wrap;
    align-items: flex-end;
    padding-top: 3rem;
    padding-bottom: 5rem;
}
#featureNO.onMV .featureNOinner {
    width: 100%;
    max-height: 750px;
    max-width: 1500px;
    padding: 0 0 0 2rem;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
}
#featureNO div {
    font-size: 3rem;
    letter-spacing: 0.2rem;
    display: flex;
    /* width: 13rem; */
    /* height: 5rem; */
}
#featureNO span {
    background: #fff;
    color: var(--main-color);
    font-weight: 700;
    font-size: 2.4rem;
    padding: 1.3rem 1rem;
    display: flex;
    align-items: center;
    height: 100%;
    box-sizing: border-box;
}
#featureNO em {
    padding: 1.3rem 1rem;
    /* font-family: 'Teko-font'; */
    font-size: 2.4rem;
    font-style: normal;
    color: #fff;
    background: var(--main-color);
    display: flex;
    align-items: center;
    height: 100%;
    box-sizing: border-box;
}
#featureNO strong {
    width: 100%;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.5;
}
#featureNO span {
    background: #fff;
    color: var(--main-color);
    font-weight: 700;
    font-size: 2.4rem;
    padding: 1.3rem 1rem;
    display: flex;
    align-items: center;
    height: 100%;
}
#featureNO.onMV strong span {
    background: rgba(255,255,255,.75);
    padding: 1rem;
    margin-top: 1rem;
    display: table;
    height: auto;
    width: auto;
    color: #000;
}
.lead.info {
    margin-top: 6rem;
    padding: 3rem;
    background: #eee;
}
#article-body section > strong {
    display: block;
    padding-top: 2.5rem;
    line-height: 1.9;
    font-feature-settings: "palt";
}
#article-body section > .article-title + strong {
    padding-top: 0;
}
.point-wrap .index-row {
    display: flex;
    align-items: center;
    border-bottom: 1.5px dashed var(--border-graycolor);
    padding: 1.5rem 0;
}
.point-wrap .index-row div {
    font-size: 1.8rem;
    line-height: 1.3;
    padding-right: 3.5rem;
}
.point-wrap .index-row div span {
    border-bottom: 1px solid #252525;
}
#article-body section .kakomi {
    margin-top: 3rem;
    padding: 3rem;
    background: #eee;
}
#article-body section .kakomi .head {
    font-size: 2.8rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 6rem;
}
#article-body section .kakomi p:not(.head) {
    line-height: 2;
}
#article-body section .kakomi figure {
    margin-top: 1rem;
}
@media screen and (max-width: 768px) {
    #featureNO.onMV {
        padding-bottom: 2rem;
    }
    #featureNO.onMV .featureNOinner {
        padding: 0 1rem;
    }
    #featureNO.onMV strong span {
        font-size: 1.4rem;
        text-align: left;
        padding: 0.5rem;
    }
    #featureNO.onMV strong span + span {
        margin-top: 0;
        padding-top: 0;
    }
    #featureNO span,
    #featureNO em {
        font-size: 1.6rem;
    }
    #article-body section .kakomi .head {
        font-size: 2.4rem;
        margin-bottom: 3rem;
    }
    #article-body section .kakomi p:not(.head) {
        font-size: 1.4rem;
    }
}