@charset "UTF-8";
/* ==========================
main
========================== */
/* article__header */
.article__header {
    margin-top: 80px;
}

.header__img {
    width: 100%;
}

.articleHeader__group {
    position: relative;
}

.egTitle--topic {
    position: absolute;
    color: rgba(255, 255, 255, 0.90);
    font-family: "Spectral";
    font-size: 5.5em;
    font-style: normal;
    font-weight: 500;
    line-height: 1.5;
    top: 0;
    transform: translateX(-8px);
}

.topic__group {
    position: relative;
    z-index: 1;
    background-color: #fff;
    padding-top: 17px;
    margin: -30px 8.5%;
}

.topic {
    text-align: center;
    font-size: 2.0rem;
    font-weight: 600;
}

.topicTxt {
    text-align: justify;
    font-family: "Noto Sans JP";
    font-size: 1.6rem;
    font-weight: 400;
    padding: 50px 5px 0;
}

.br__pc {
    display: none;
}

/* article__header PC */
@media screen and (min-width: 768px) {
    .egTitle {
        font-size: 11vw;
        font-weight: 500;
        line-height: 1.5;
        transform: translateX(-15px);
    }

    .topic__group {
        padding-top: 50px;
        margin: -100px 9.7%;
    }

    .topicTxt {
        text-align: center;
        padding: 80px 0;
    }

    .topicTxt p:last-child {
        margin-top: 16px;
    }

    .br__pc {
        display: block;
    }
}
/* 768px PC */

/* btn */
.btn__group {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 80px;
    gap: 30px 10px;
}

.btn__item {
    background-color: rgba(251, 215, 169, 0.80);
    padding: 5px 20px;
    text-align: center;
    font-size: 1.8rem;
    line-height: 1.3;
    position: relative;
}

.btn__group li:nth-child(2) {
    line-height: 2.1;
}

.btn__item::after {
    position: absolute;
    display: block;
    content: '';
    width: 100%;
    height: 100%;
    border-right: 1px solid #D0CFCF;
    border-bottom: 1px solid #D0CFCF;
    top: 32px;
    left: 4px;
    transform: translateY(-50%);
    pointer-events: none;
}

/* btn PC */
@media screen and (min-width: 768px) {
    .btn__group {
        margin-top: 100px;
        gap: 40px;
    }
    
    .btn__item {
        width: 210px;
        padding: 10px 0;
    }

    .btn__item::after {
        top: 38px;
    }    
}
/* 768px PC */

/* section */
.section__img {
    margin-top: 80px;
    width: 100%;
}

.titleGroup {
    position: relative;
}

.titleGroup__set {
    position: absolute;
    width: 85%;
    top: 55%;
}

.egTitle--sub {
    color: #FFF;
    text-align: left;
    font-family: "Spectral";
    font-size: 4.0rem;
    font-weight: 600;
    line-height: 1.5;
    left: -10px;
}
    
.yoga__subTopic {
    font-size: 2.0rem;
    font-weight: 500;
    line-height: 2.0;
    background-color: rgba(252, 251, 221, 0.90);
    padding: 15px 0 15px 4.2%;
    margin-top: -20px;
}

.contents__group {
    padding: 40px 4.2% 100px;
    font-family: "Noto Sans JP";
    font-size: 1.6rem;
    font-weight: 400;
}

.contents__topic {
    font-weight: 500;
    padding-left: 16px;
    position: relative;
}

.contents__topic::before {
    position: absolute;
    display: block;
    content: '';
    width: 10px;
    height: 25px;
    background-color: #F0C183;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.yoga__subTopic--begi {
    line-height: 1.3;
}

.contents__txt {
    margin-top: 10px;
}

.detail {
    margin-top: 30px;
}

.detail__item {
    display: flex;
    margin-top: 24px;
}

.detail__topic {
    font-weight: 400;
    background-color: #FCFBDD;
    height: 100%;
    padding: 5px 10px;
}

.detail__txt {
    margin: 5px 0 0 8px;
}

.detail__price {
    display: block;
}

.detail__subtxt {
    margin: 16px 0 0 8px;
}

/* section PC */
@media screen and (min-width: 768px) {
    .section {
        margin: 100px auto;
        max-width: 1160px;
        width: 80.5%;
        display: flex;
        justify-content: space-between;
    }

    .section--first {
        margin-top: 150px;
    }

    .section__img {
        margin-top: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .titleGroup {
        position: relative;
        width: 40%;
    }

    .titleGroup__set {
        position: absolute;
        width: 85%;
        top: 50%;
    }

    .egTitle--sub {
        font-size: 4.8rem;
        line-height: 1.5;
        transform: translateX(-7px);
    }

    .yoga__subTopic {
        font-size: 2.4rem;
        padding: 0;
        margin-top: 0;
        padding: 15px 0 15px 4.2%;
        margin-top: -24px;
    }

    .contents__group {
        padding: 0 0 0 20px;
        width: 58%;
        font-family: "Noto Sans JP";
        font-size: 1.6rem;
        font-weight: 400;
    }

    .detail {
        margin-top: 20px;
    }

    .detail__subtxt {
        margin: 8px 0 0 0;
    }

    .br__sp {
        display: none;
    }
}