@charset "utf-8";
/*===========================
article__header
===========================*/

.article__header {
    position: relative;
    overflow: hidden;
}

.flower__otherPc {
    position: absolute;
    top: -32%;
    left: -7%;
    width: 118vw;
    height: auto;
    max-width: none;
}

.mainCopy__container {
    position: relative;
    padding-top: 16.9%;
    padding-left: 17.2%;
}

.main__copy {
    display: flex;
    flex-direction: column;
    font-family: "Zen Kaku Gothic New";
    font-size: 4rem;
    font-weight: 400;
    line-height: 180%;
    position: relative;
    z-index: 100;
    transition-delay: 0.3s;
}

.flower__leftPc {
    position: absolute;
    top: 89%;
    left: -14%;
    width: 30%;
    height: auto;
}

.flower__rightPc {
    position: absolute;
    top: 5%;
    right: 15%;
    width: 37%;
    height: auto;
    z-index: 10;
}

.flower__leftSp,
.flower__rightSp,
.flower__centerSp {
    display: none;
}

.main__subCopy {
    position: relative;
    display: flex;
    flex-direction: column;
    margin-top: 65px;
    padding-left: 17.2%;
    z-index: 100;
    transition-delay: 0.6s;
}

.main__subTxt {
    font-family: "Noto Sans JP";
    font-size: 2rem;
    font-weight: 300;
    line-height: 180%;
}

.flower__bottomPc {
    display: block;
    width: 60%;
    height: auto;
    margin-top: 6px;
}

.flower__bottomSp {
    display: none;
}

@media screen and (max-width: 1024px) {
    .main__copy {
        font-size: 3.2rem;
    }

    .main__subTxt {
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 767px) {
    .flower__otherPc {
        display: none;
    }

    .flower__leftSp {
        display: block;
        position: absolute;
        top: -8%;
        left: -20%;
        width: 48%;
        height: auto;
    }

    .flower__rightSp {
        display: block;
        position: absolute;
        top: -7%;
        right: -20%;
        width: 70%;
        height: auto;
    }

    .mainCopy__container {
        position: relative;
        padding-top: 26%;
        padding-left: 0;
    }

    .main__copy {
        margin: 0 auto;
        width: fit-content;
        font-size: 2.6rem;
    }

    .flower__leftPc,
    .flower__rightPc {
        display: none;
    }

    .flower__centerSp {
        display: block;
        margin-top: -12px;
        margin-left: 10%;
        width: 100%;
        height: auto;
    }

    .main__subCopy {
        margin: -50px auto 0;
        padding-left: 0;
        width: fit-content;
        text-align: left;
        transition-delay: 0.2s;
    }

    .main__subTxt {
        font-size: 1.6rem;
    }

    .flower__bottomPc {
        display: none;
    }

    .flower__bottomSp {
        display: block;
        width: 50%;
        height: auto;
        margin-top: -20px;
        margin-left: -35%;
    }
}

/*===========================
section__targetCards
===========================*/

.section__targetCards {
    padding: 150px 0 60px;
    margin: 0 auto;
    width: fit-content;
}

.stack-card {
    display: flex;
    padding: 80px 80px;
    justify-content: center;
    align-items: center;
    gap: 50px;
    border-radius: 20px;
    background: #F8F8F8;

    position: sticky;
    top: 250px; /* 画面の上からどの位置で止まるか（ヘッダー分を考慮してね） */
    width: 764px;
    height: 415px; /* カードの高さ */
    margin: 0 auto 200px; /* スクロールさせるための余白 */
    
    /* 最初は隠しておく */
    opacity: 0;
    transition: opacity 0.6s ease-out; /* ふわっと動くスピード */
    will-change: transform, opacity;
}

/* 1枚目：ほぼ真っ直ぐ、少し左寄り */
.stack-card:nth-child(1) {
    transform: rotate(-0.5deg) translateX(-10px);
    z-index: 2;
}

/* 2枚目：少し右に傾けて、右に寄せる */
.stack-card:nth-child(2) {
    transform: rotate(1.2deg) translateX(15px);
    z-index: 3;
}

/* 3枚目：しっかり左に傾けて、左に寄せる */
.stack-card:nth-child(3) {
    transform: rotate(-1.8deg) translateX(-20px);
    z-index: 4;
}

/* 4枚目：わずかに右に傾けて、ほぼ中央 */
.stack-card:nth-child(4) {
    transform: rotate(0.8deg) translateX(5px);
    z-index: 5;
}

.stack-card:nth-child(odd) {
    box-shadow: -5px 10px 30px rgba(46, 13, 3, 0.08);
}

.stack-card:nth-child(even) {
    box-shadow: 5px 10px 30px rgba(46, 13, 3, 0.08);
}

/* JSでクラスがついたら表示する */
.stack-card.is-visible {
    opacity: 1;
}

.ttc {
    display: block;
    width: 222px;
    height: auto;
}

.pregnant {
    display: block;
    width: 202px;
    height: auto;
}

.postpartum {
    display: block;
    width: 191px;
    height: auto;
}

.women {
    display: block;
    width: 192px;
    height: auto;
}

.target__detail {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.target__copy {
    color: #FD7777;
    font-family: "Zen Kaku Gothic New";
    font-size: 2rem;
    font-weight: 400;
    line-height: normal;
}

.target__big {
    font-size: 2.8rem;
}

.target__txt {
    font-family: "Noto Sans JP";
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 200%;
}

@media screen and (max-width: 767px) {
    .section__targetCards {
        padding: 50px 10% 0;
    }

    .stack-card {
        flex-direction: column;
        padding: 30px 40px;
        gap: 20px;
        position: relative;
        top: 0;
        width: 100%;
        max-width: 400px;
        height: auto;
        margin: 0 auto 30px;
        opacity: 0;
        transition: rotate(0) translateX(0) !important;
        z-index: 100;
    }

    .stack-card:nth-child(1),
    .stack-card:nth-child(2),
    .stack-card:nth-child(3),
    .stack-card:nth-child(4) {
        transform: rotate(0) translateX(0) !important;
        z-index: 1;
    }

    .stack-card.is-visible {
        opacity: 1;
        transform: translateY(0) !important;
        z-index: 100;
    }

    .ttc {
        width: 180px;
    }

    .pregnant {
        width: 160px;
    }

    .postpartum {
        width: 155px;
    }

    .women {
        width: 155px;
    }

    .target__detail {
        align-items: center;
        gap: 10px;
    }

    .target__copy {
        font-size: 1.8rem;
    }

    .target__big {
        font-size: 2.4rem;
    }

    .target__txt {
        text-align: left;
        font-size: 1.4rem;
        line-height: 180%;
    }
}

/*===========================
introduction
===========================*/

.section__introduction {
    position: relative;
}

.smoke__container {
    position: absolute;
    top: 100px; 
    left: 50%;
    width: 200px;
    height: 3200px; /* ★FVまで届くように思いっきり長く！ */
    transform: translateX(-50%) translateY(-100%); 
    pointer-events: none;
    z-index: 1; /* お灸や文字の後ろに忍ばせる */
}

.smoke__container img {
    display: block;
    width: 100%;
    height: 100%;
}

.introduction__copy {
    position: relative;
    z-index: 2;
    margin: 0 auto;
    width: fit-content;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 1.8rem;
    font-weight: 300;
    line-height: 350%;
}

.moxibustion_topPc {
    position: relative;
    z-index: 1;
    margin: -250px auto 0;
    width: 100%;
    height: auto;
}

.moxibustion_topSp {
    display: none;
}

@media screen and (max-width: 767px) {
    .smoke__container {
        top: 100px; 
        left: 50%;
        width: 150px;
        height: 2300px; /* ★FVまで届くように思いっきり長く！ */
        transform: translateX(-50%) translateY(-100%); 
    }

    .introduction__copy {
        margin: 115px auto;
        font-size: 1.4rem;
        line-height: 250%;
    }

    .moxibustion_topPc {
        display: none;
    }

    .moxibustion_topSp {
        display: block;
        position: relative;
        z-index: 1;
        margin: -260px auto 0;
        width: 100%;
        height: auto;
    }
}

/*===========================
director
===========================*/

.section__director {
    padding: 100px 0 0;
    background-color: #F8E7DD;
}

.section__title {
    margin: 0 auto;
    width: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.petal {
    width: 20px;
    height: auto;
}

.title__detail {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.title__jp {
    font-family: "Zen Kaku Gothic New";
    font-size: 2.4rem;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 2.4px;
}

.title__en {
    font-family: "DM Sans";
    font-size: 1rem;
    font-weight: 200;
    line-height: 150%;
    letter-spacing: 1.5px;
}

.director__content {
    margin: 140px auto 0;
    display: flex;
    align-items: center;
    gap: 70px;
    width: 82%;
    max-width: 1160px;
}

.director__introduction {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 5px;
}

.director__face {
    width: 318px;
    height: auto;
}

.director__name {
    font-family: "Zen Kaku Gothic New";
    font-size: 2rem;
    font-weight: 400;
    line-height: 150%;
}

.director__words {
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 40px;
}

.director__copy {
    font-family: "Zen Kaku Gothic New";
    font-size: 2rem;
    font-weight: 400;
    line-height: 200%;
}

.director__detail {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.director__txt {
    font-family: "Noto Sans JP";
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 180%;
}

.director__profile {
    margin: 120px auto 200px;
    width: fit-content;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.profile__title {
    position: relative;
    display: inline-block;
    font-family: "Noto Sans JP";
    font-size: 1.6rem;
    font-weight: 350;
    line-height: 150%;
}

.profile__title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -15px;
    width: 30px;
    height: 0.5px;
    background-color: rgba(46, 13, 3, 0.5);
    /* transform: scaleY(0.5); 
    transform-origin: left bottom; */
}

.profile__txt {
    margin-top: 35px;
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 12px;
}

.profile__detail {
    font-family: "Noto Sans JP";
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 180%;
}

.wave__onePc {
    width: 100%;
    height: auto;
}

.wave__oneSp {
    display: none;
}

@media screen and (max-width: 767px) {
    .section__director {
        padding: 50px 0 0;
    }

    .section__title {
        gap: 15px;
    }

    .title__jp {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .title__en {
        font-size: 0.8rem;
        letter-spacing: 1.2px;
    }

    .director__content {
        margin: 50px auto 0;
        flex-direction: column;
        gap: 55px;
        width: 80%;
        max-width: 400px;
    }

    .director__face {
        width: 250px;
    }

    .director__name {
        font-size: 1.6rem;
    }

    .director__words {
        gap: 30px;
    }

    .director__copy {
        font-size: 1.7rem;
        line-height: 180%;
    }

    .director__detail {
        gap: 8px;
    }

    .director__txt {
        font-size: 1.4rem;
    }

    .director__profile {
        margin: 50px auto 125px;
        width: 80%;
        max-width: 400px;
    }

    .profile__title {
        font-size: 1.5rem;
    }

    .profile__title::after {
        bottom: -8px;
    }

    .profile__txt {
        margin-top: 18px;
        gap: 5px;
    }

    .profile__detail {
        font-size: 1.2rem;
    }

    .wave__onePc {
        display: none;
    }

    .wave__oneSp {
        display: block;
        width: 100%;
        height: auto;
        transform: scale(1.01);
        transform-origin: top center;
    }
}

/*===========================
features
===========================*/

.section__features {
    padding: 100px 0 0;
}

.features__content {
    margin: 140px auto 200px;
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 120px;
    width: 82%;
    max-width: 850px;
}

.feature__one,
.feature__three {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 50px;
}

.featureOne__img {
    width: 380px;
    height: auto;
}

.feature__detail {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.featureOne__title,
.featureTwo__title,
.featureThree__title {
    position: relative;
    text-align: left;
    font-family: "Zen Kaku Gothic New";
    font-size: 2rem;
    font-weight: 400;
    line-height: 180%;
    z-index: 10;
}

.featureOne__title::before {
    position: absolute;
    content: '';
    display: inline-block;
    width: 142px;
    height: 112px;
    background-image: url(../images/colorPetal_one.webp);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    left: -45px;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
}

.featureTwo__title::before {
    position: absolute;
    content: '';
    display: inline-block;
    width: 130px;
    height: 117px;
    background-image: url(../images/colorPetal_two.webp);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    left: -45px;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
}
.featureThree__title::before {
    position: absolute;
    content: '';
    display: inline-block;
    width: 110px;
    height: 114px;
    background-image: url(../images/colorPetal_three.webp);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    left: -45px;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
}

.feature__txt {
    text-align: left;
    font-family: "Noto Sans JP";
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 200%;
}

.feature__two {
    display: flex;
    align-items: center;
    gap: 50px;
}

.featureTwo__img {
    width: 350px;
    height: auto;
}

.featureThree__img {
    width: 350px;
    height: auto;
}

.wave__twoPc {
    width: 100%;
    height: auto;
}

.wave__twoSp {
    display: none;
}

@media screen and (max-width: 767px) {
    .section__features {
        padding: 50px 0 0;
    }

    .features__content {
        margin: 75px auto 115px;
        gap: 60px;
        width: 80%;
        max-width: 400px;
    }

    .feature__one,
    .feature__three {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .featureOne__img {
        width: 270px;
    }

    .feature__detail {
        gap: 40px;
    }

    .featureOne__title,
    .featureTwo__title,
    .featureThree__title {
        font-size: 1.8rem;
        line-height: 180%;
    }

    .featureOne__title::before {
        width: 100px;
        height: 79px;
        left: -35px;
        top: 50%;
        transform: translateY(-50%);
    }

    .featureTwo__title::before {
        width: 100px;
        height: 90px;
        left: -30px;
        top: 50%;
        transform: translateY(-50%);
    }

    .featureThree__title::before {
        width: 90px;
        height: 93px;
        left: -30px;
        top: 50%;
        transform: translateY(-50%);
    }

    .feature__txt {
        font-size: 1.4rem;
        line-height: 180%;
    }

    .feature__two {
        flex-direction: column;
        gap: 40px;
    }

    .featureTwo__img {
        width: 250px;
    }

    .featureThree__img {
        width: 250px;
    }

    .wave__twoPc {
        display: none;
    }

    .wave__twoSp {
        display: block;
        width: 100%;
        height: auto;
    }
}

/*===========================
menu
===========================*/

.section__menu {
    padding: 100px 0;
    background-color: #F8E7DD;
}

.menu__copy {
    display: flex;
    flex-direction: column;
    margin: 140px auto 0;
    width: fit-content;
    text-align: center;
    gap: 35px;
}

.menu__txt {
    font-family: "Noto Sans JP";
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 250%;
}

.menu__content {
    margin: 120px auto 0;
    width: fit-content;
    display: flex;
    gap: 60px;
}

.sale__imgPc {
    width: 340px;
    height: auto;
    display: inline-block;
    animation: yurayura-sale 3.5s ease-in-out infinite;
    will-change: transform;
}

@keyframes yurayura-sale {
    0% { transform: rotate(-1deg) translateX(0); }
    50% { transform: rotate(1deg) translateX(8px); }
    100% { transform: rotate(-1deg) translateX(0); }
}

.sale__imgSp {
    display: none;
}

.menu__list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.menu__detail {
    display: flex;
    width: 400px;
    padding: 0 20px 10px 20px;
    align-items: flex-start;
    gap: 30px;
    border-bottom: 0.5px solid rgba(46, 13, 3, 0.50);
    font-family: "Zen Kaku Gothic New";
    font-size: 2rem;
    font-weight: 400;
    line-height: 150%;
}

.link__btn {
    display: block;
    margin: 140px auto 0;
    width: 100%;
}

.link__btn a {
    display: flex;
    margin: 0 auto;
    width: fit-content;
    align-items: center;
    gap: 20px;
}

.arrow__pc {
    display: block;
    width: 70px;
    height: 70px;
    cursor: pointer;
    background-image: url(../images/arrow_pc.webp);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: background-image 0.5s ease;
    flex-shrink: 0;
}

.link__btn a:hover .arrow__pc {
    background-image: url(../images/hoverArrow_pc.webp);
}

.link__txt {
    font-family: "Noto Sans JP";
    font-size: 2rem;
    font-weight: 350;
    line-height: normal;
    transition: 0.3s ease;
}

.link__btn a:hover .link__txt {
    color: #FD7777;
}

@media screen and (max-width: 767px) {
    .section__menu {
        padding:50px 0 100px;
    }

    .menu__copy {
        margin: 55px auto 0;
        gap: 25px;
        width: 95%;
    }

    .menu__txt {
        font-size: 1.4rem;
        line-height: 250%;
    }

    .menu__content {
        margin: 52px auto 0;
        width: 80%;
        max-width: 400px;
        flex-direction: column;
        gap: 50px;
    }

    .sale__imgPc {
        display: none;
    }

    .sale__imgSp {
        display: block;
        margin: 0 auto;
        width: 300px;
        height: auto;
        display: inline-block;
        animation: yurayura-sale 3.5s ease-in-out infinite;
        will-change: transform;
    }

    .menu__list {
        margin: 0 auto;
        width: fit-content;
        gap: 15px;
    }

    .menu__detail {
        width: 300px;
        padding: 0 20px 5px 10px;
        font-size: 1.6rem;
    }

    .link__btn {
        margin: 84px auto 0;
    }

    .link__btn a {
        gap: 10px;
    }

    .arrow__pc {
        width: 50px;
        height: 50px;
        background-image: url(../images/arrow_sp.webp);
    }

    .link__btn a:hover .arrow__pc {
        background-image: url(../images/hoverArrow_sp.webp);
    }

    .link__txt {
        font-size: 1.7rem;
    }
}

/*===========================
news
===========================*/

.wave__threePc {
    width: 100%;
    height: auto;
}

.wave__threeSp {
    display: none;
}

.section__titleNews {
    margin: 200px auto 0;
    width: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.news__content {
    display: flex;
    margin: 140px auto;
    width: 67%;
    max-width: 964px;
    padding: 40px 100px;
    align-items: flex-start;
    gap: 100px;
    border-radius: 20px;
    border: 0.5px solid rgba(46, 13, 3, 0.50);
    background: #F8F8F8;
}

.time__txt {
    font-family: "DM Sans";
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 190%;
}

.news__title {
    font-family: "Noto Sans JP";
    font-size: 1.6rem;
    font-weight: 350;
    line-height: 150%;
}

.wave__fourPc {
    margin-top: 200px;
    width: 100%;
    height: auto;
}

.wave__fourSp {
    display: none;
}

@media screen and (max-width: 1024px) {
    .news__content {
        padding: 30px 60px;
        gap: 50px;
    }
}

@media screen and (max-width: 767px) {
    .wave__threePc {
        display: none;
    }

    .wave__threeSp {
        display: block;
        width: 100%;
        height: auto;
    }

    .section__titleNews {
        margin: 90px auto 0;
        gap: 15px;
    }

    .news__content {
        flex-direction: column;
        margin: 64px auto;
        width: 80%;
        max-width: 400px;
        padding: 30px;
        gap: 15px;
    }

    .time__txt {
        font-size: 1.4rem;
    }

    .news__title {
        font-size: 1.4rem;
    }

    .wave__fourPc {
        display: none;
    }

    .wave__fourSp {
        display: block;
        margin-top: 120px;
        width: 100%;
        height: auto;
        transform: scale(1.01);
        transform-origin: top center;
    }
}

/*===========================
FAQ
===========================*/

.section__faq {
    padding: 100px 0 0;
    background-color: #F8E7DD;
}

.FAQ__content {
    margin: 100px auto 0;
    width: 82%;
    max-width: 1160px;
}

.FAQaccordion {
    width: 100%;
    padding: 40px 100px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-bottom: 0.5px solid rgba(46, 13, 3, 0.50);
}

.accordion__header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    text-align: left;
}

.accordion__header:hover .question__txt {
    color: #FD7777;
}

.accordion__header:hover .FAQicon {
    color: #FD7777;
}

.question__content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.question__img {
    display: block;
    width: 35px;
    height: auto;
    flex-shrink: 0;
}

.question__txt {
    font-family: "Noto Sans JP";
    font-size: 1.8rem;
    font-weight: 300;
    line-height: 150%;
    transition: 0.3s ease;
}

.FAQicon {
    display: block;
    position: relative;
    width: 15px; 
    height: 15px;
    transition: 0.3s ease;
}

.FAQicon::before,
.FAQicon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%; 
    height: 1px;
    background-color: currentColor;
    transition: 0.3s ease;
}

.FAQicon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.accordion__header.is-open .FAQicon::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.accordion__header:hover .FAQicon {
    color: #FD7777 !important;
}

.accordion__inner {
    display: none;
}

.answer__content {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.answer__img {
    display: block;
    width: 34px;
    height: auto;
    flex-shrink: 0;
}

.answer__txt {
    font-family: "Noto Sans JP";
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 150%;
    margin-top: 3px;
}

.wave__fivePc {
    margin-top: 250px;
    width: 100%;
    height: auto;
}

.wave__fiveSp {
    display: none;
}

@media screen and (max-width: 767px) {
    .section__faq {
        padding: 60px 0 0;
    }

    .FAQ__content {
        margin: 55px auto 0;
        width: 80%;
        max-width: 500px;
    }

    .FAQaccordion {
        padding: 25px 5px;
        gap: 15px;
    }

    .accordion__header {
        gap: 10px;
    }

    .question__content {
        gap: 8px;
    }

    .question__img {
        width: 45px;
    }

    .question__txt {
        font-size: 1.6rem;
    }

    .FAQicon {
        width: 12px; 
        height: 12px;
    }

    .answer__content {
        align-items: center;
        gap: 8px;
    }

    .answer__img {
        width: 44px;
    }

    .answer__txt {
        font-size: 1.4rem;
        margin-top: 0;
    }

    .wave__fivePc {
        display: none;
    }

    .wave__fiveSp {
        display: block;
        margin-top: 120px;
        width: 100%;
        height: auto;
    }

}

/*===========================
kalanchoe
===========================*/

.kalanchoe__content {
    position: relative;
    margin: 100px auto;
    width: 67%;
    max-width: 964px;
}

.kalanchoe__txt {
    position: relative;
    width: 740px;
    font-family: "Noto Sans JP";
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 350%;
    z-index: 2;
    transition-delay: 0.2s;
}

.bold {
    font-weight: 400;
}

.kalanchoe__visual {
    position: absolute;
    right: 0;
    bottom: -80px;
    width: 260px;
    height: auto;
    z-index: 1;
}

.kalanchoe__visual img {
    width: 100%;
    height: auto;
    display: block;
}

@media screen and (max-width: 767px) {
    .kalanchoe__content {
        width: 90%;
        max-width: 400px;
    }

    .kalanchoe__txt {
        position: relative;
        margin: 0 auto;
        width: 80%;
        text-align: center;
        font-size: 1.5rem;
        line-height: 250%;
    }

    .kalanchoe__visual {
        right: 0;
        bottom: -80px;
        width: 230px;
        opacity: 0.2;
    }
}

/*===========================
footer
===========================*/

.footer {
    background-color: #F8E7DD;
}

.wave__sixPc {
    width: 100%;
    height: auto;
}

.wave__sixSp {
    display: none;
}

.section__titleFooter {
    margin: 200px auto 0;
    width: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.footer__content {
    margin: 140px auto 0;
}

@media screen and (max-width: 767px) {
    .wave__sixPc {
        display: none;
    }

    .wave__sixSp {
        display: block;
        width: 100%;
        height: auto;
    }

    .section__titleFooter {
        margin: 100px auto 0;
        gap: 15px;
    }

    .footer__content {
        margin: 55px auto 0;
    }
}