@charset "UTF-8";

/* Utility Classes */
.-sp-hidden {
    display: none;
}

section {
    box-sizing: content-box;
}



@media (min-width: 1024px) {
    .-sp-hidden {
        display: block;
    }
}

.-pc-hidden {
    display: block;
}

@media (min-width: 1024px) {
    .-pc-hidden {
        display: none;
    }
}

.mv-section {
    position: relative;
    width: 100%;
    /* overflow: hidden; */
}

.mv-section__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.mv-section__bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mv-section__bg-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.3);
}

.mv-section__content {
    position: relative;
    z-index: 1;
    max-width: 1580px;
    margin: 0 auto;
    min-height: 500px;
    padding: 32px;
}

@media (min-width: 414px) {
    .mv-section__content {
        padding: 32px;
        min-height: 560px;
        padding-top: 70px;
    }
}

@media (min-width: 768px) {
    .mv-section__content {
        padding-top: 150px;
    }
}

@media (min-width: 1024px) {
    .mv-section__content {
        padding: 140px 100px 0 100px;
    }
}

.mv-section__catch {}

@media (min-width: 1024px) {
    .mv-section__catch {}
}

.mv-section__catch-main {
    margin: 0;
    font-size: 42px;
    font-weight: 400;
    color: #fff;
    line-height: 1.2;
    letter-spacing: 2px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.8);
}

@media (min-width: 414px) {
    .mv-section__catch-main {
        font-size: 48px;
    }
}

@media (min-width: 768px) {
    .mv-section__catch-main {
        font-size: 70px;
    }
}

@media (min-width: 1024px) {
    .mv-section__catch-main {
        font-size: 80px;
        letter-spacing: 4px;
    }
}

.mv-section__catch-sub {
    margin: 16px 0 0 0;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    line-height: 1.5;
    letter-spacing: 1px;
    text-shadow: 0 4px 6px #212f39;
}

.mv-section__catch-sub+.mv-section__catch-sub {
    margin-top: 0;
}

@media (min-width: 414px) {
    .mv-section__catch-sub {
        font-size: 18px;
    }
}

@media (min-width: 1024px) {
    .mv-section__catch-sub {
        margin: 50px 0 0 0;
        font-size: 30px;
        letter-spacing: 2px;
    }
}

/* CTA Area */
.mv-section__cta {
    position: absolute;
    right: 60px;
    bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
}

@media (min-width: 414px) {
    .mv-section__cta {
        bottom: 60px;
        /* right: 80px;
        bottom: 60px; */
    }
}

@media (min-width: 768px) {
    .mv-section__cta {
        right: 80px;
        bottom: 80px;
    }
}

@media (min-width: 1024px) {
    .mv-section__cta {
        position: relative;
        align-items: flex-end;
        bottom: 100px;
        gap: 0;
        right: 16px;
        bottom: 80px;
        margin-top: 100px;
    }
}

/* Badge */
.mv-badge {
    position: absolute;
    width: 100px;
    height: 100px;
    z-index: 1;
    /* top: 60px;
    left: 80px; */
    right: -39px;
    top: -70px;

}

@media (min-width: 414px) {
    .mv-badge {
        width: 100px;
        height: 100px;
    }
}

@media (min-width: 768px) {
    .mv-badge {
        width: 120px;
        height: 120px;
        right: -59px;
        top: -84px;
    }
}

@media (min-width: 1024px) {
    .mv-badge {
        width: 180px;
        height: 180px;
        right: -100px;
        top: -110px;
    }
}

.mv-badge__svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.mv-badge__text {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.mv-badge__main {
    font-size: 26px;
    font-weight: 700;
    color: #000;
    line-height: 1.5;
    letter-spacing: 1px;
}

@media (min-width: 1024px) {
    .mv-badge__main {
        font-size: 40px;
        letter-spacing: 2px;
    }
}

.mv-badge__sub {
    font-size: 20px;
    font-weight: 400;
    color: #000;
    line-height: 1.5;
    letter-spacing: 1px;
}

@media (min-width: 1024px) {
    .mv-badge__sub {
        font-size: 32px;
        letter-spacing: 1.6px;
    }
}

/* CTA Button */
.mv-cta-btn {
    display: block;
    width: 100%;
    max-width: 343px;
    text-decoration: none;
}

@media (min-width: 1024px) {
    .mv-cta-btn {
        width: auto;
        max-width: none;
    }
}

.mv-cta-btn__inner {
    position: relative;
    width: 100%;
    height: 80px;
    background-color: #C0994E;
    transition: background-color 0.3s;
    overflow: hidden;
}

.mv-cta-btn:hover .mv-cta-btn__inner {
    background-color: #D3A754;
}
@media (min-width: 414px) {
    .mv-cta-btn__inner {
        height: 80px;
    }
}

@media (min-width: 768px) {
    .mv-cta-btn__inner {
        height: 90px;
    }
}


@media (min-width: 1024px) {
    .mv-cta-btn__inner {
        width: 459px;
        height: 119px;
    }
}

.mv-cta-btn__line {
    position: absolute;
    bottom: 5px;
    left: 50%;
    right: 0;
    height: 1px;
    background-color: #e0cca7;
    transform: translateX(-50%);
    width: 99%;
}

.mv-cta-btn__content {
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

@media (min-width: 1024px) {
    .mv-cta-btn__content {
        padding: 16px;
    }
}

.mv-cta-btn__label {
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    line-height: 2;
    letter-spacing: 0.6px;
}

@media (min-width: 1024px) {
    .mv-cta-btn__label {
        font-size: 18px;
        letter-spacing: 0.9px;
    }
}

.mv-cta-btn__text {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    line-height: 1.5;
    letter-spacing: 1.6px;
    text-shadow: 0 4px 8px #997a3f;
}

@media (min-width: 1024px) {
    .mv-cta-btn__text {
        font-size: 24px;
        letter-spacing: 2.4px;
    }
}

.mv-cta-btn__text-small {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.6px;
}

@media (min-width: 1024px) {
    .mv-cta-btn__text-small {
        font-size: 18px;
        letter-spacing: 0.9px;
    }
}

/* ===================
   Benefits Bar
   =================== */
.benefits-bar {
    position: absolute;
    width: 98%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0;
    left: 50%;
    bottom: -54px;
    transform: translateX(-50%);
    z-index: 10;
}

@media (min-width: 1024px) {
    .benefits-bar {
        width: 100%;
        height: 104px;
        padding: 0;
        bottom: -50px;
    }
}

.benefits-bar__bg {
    position: absolute;
    inset: 0;
    background-color: #e6e1d6;
    clip-path: polygon(0 0,
            /* 左上 */
            100% 0,
            /* 右上 */
            calc(100% - 15px) 50%,
            /* 右中央（内側へこみ） */
            100% 100%,
            /* 右下 */
            0 100%,
            /* 左下 */
            15px 50%
            /* 左中央（内側へこみ） */
        );
}

@media (min-width: 1024px) {
    .benefits-bar__bg {
        clip-path: polygon(0 0,
                /* 左上 */
                100% 0,
                /* 右上 */
                calc(100% - 40px) 50%,
                /* 右中央（内側へこみ） */
                100% 100%,
                /* 右下 */
                0 100%,
                /* 左下 */
                40px 50%
                /* 左中央（内側へこみ） */
            );
    }
}

.benefits-bar__content {
    position: relative;
    gap: 16px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0;
    padding: 13px 14px;
}

@media (min-width: 1024px) {
    .benefits-bar__content {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 0;
        padding: 18px 14px;
    }
}

/* Benefits Item */
.benefits-bar__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex: 1;
}

@media (min-width: 1024px) {
    .benefits-bar__item {}
}

.benefits-bar__label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background-color: #c2b292;
    border-radius: 50px;
    padding: 4px 12px;
    height: 31px;
    box-sizing: border-box;
}

@media (min-width: 1024px) {
    .benefits-bar__label {
        width: 111px;
    }
}

.benefits-bar__icon {
    width: 20px;
    height: 20px;
}

@media (min-width: 1024px) {
    .benefits-bar__icon {
        width: 24px;
        height: 24px;
    }
}

.benefits-bar__label-text {
    font-size: 12px;
    font-weight: 400;
    color: #212f39;
    line-height: 2;
    letter-spacing: 0.8px;
}

@media (min-width: 768px) {
    .benefits-bar__label-text {
        font-size: 16px;
    }
}

@media (min-width: 1024px) {
    .benefits-bar__label-text {
        font-size: 20px;
        letter-spacing: 1px;
    }
}

.benefits-bar__text {
    font-size: 12px;
    font-weight: 400;
    color: #212f39;
    line-height: 1.5;
    letter-spacing: 0.9px;
    text-align: center;
}

@media (min-width: 768px) {
    .benefits-bar__text {
        font-size: 18px;
    }
}

@media (min-width: 1024px) {
    .benefits-bar__text {
        font-size: 20px;
        letter-spacing: 1.2px;
    }
}

/* Divider */
.benefits-bar__divider {
    display: block;
    flex-shrink: 0;
    width: 1px;
    height: 71px;
    background-color: #d3a754;
}

@media (min-width: 1024px) {
    .benefits-bar__divider {
        display: block;
        flex-shrink: 0;
        width: 1px;
        height: 71px;
        background-color: #d3a754;
    }
}



/* ===================
   Solution Section (解決策)
   =================== */
.solution-section {
    padding: 60px 2rem;
    max-width: 1280px;
    margin: 0 auto;
    /* background-image: url(images/bg_section.png); */
    background-size: contain;
    background-repeat: repeat;
    background-position: center center;
}

@media (min-width: 1024px) {
    .solution-section {
        padding: 110px 100px;
    }
}

/* Solution Header */
.solution-section__header {
    position: relative;
    text-align: center;
    margin-bottom: 48px;
}

.solution-section__header::before {
    content: "";
    background: url(https://www.sugatani.co.jp/new/wp-content/themes/sugatani2025/assets/ornaments/stain-a.png) no-repeat center center;
    background-size: contain;
    display: block;
    width: 190px;
    height: 138px;
    position: absolute;
    top: -30px;
    left: 0;
    right: 0;
    margin: auto;
}



.solution-section__title {
    font-size: 24px;
    font-weight: 500;
    position: relative;
}

@media (min-width: 1024px) {
    .solution-section {}

    .solution-section__header::before {
    width: 230px;

    }

    .solution-section__header {
        margin-bottom: 64px;
    }

    .solution-section__title {
        font-size: 40px;
    }
}

/* Solution Item - SP: 縦積み */
.solution-item {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    margin-bottom: 56px;
    gap: 0;
}

.solution-item:last-child {
    margin-bottom: 0;
}

@media (min-width: 1024px) {
    .solution-item {
        grid-template-columns: 1fr 400px;
        align-items: center;
        margin-bottom: 80px;
        gap: 105px;
    }

    .solution-item--reverse {
        grid-template-columns: 400px 1fr;
    }

    .solution-item--reverse .solution-item__image-area {
        order: -1;
    }

    .solution-item--reverse .solution-item__text-area {
        order: 1;
    }
}

@media (min-width: 1400px) {
    .solution-item {
        grid-template-columns: 1fr 520px;
    }

    .solution-item--reverse {
        grid-template-columns: 520px 1fr;
    }
}

/* Text Area */
.solution-item__text-area {
    width: 100%;
}

@media (min-width: 1024px) {
    .solution-item__text-area {
        /* max-width: 750px; */
        flex-grow: 1;
    }

    .solution-item__text-area--right {
        /* max-width: 700px; */
        flex-grow: 1;
    }
}

/* Heading */
.solution-item__heading {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    margin-left: -20px;
}

/* SP: reverse版も一律で数字を左に、左寄せ */
.solution-item__heading--right {
    flex-direction: row-reverse;
    justify-content: flex-end;
}

@media (min-width: 1024px) {
    .solution-item__heading {
        margin-bottom: 16px;
        margin-left: -80px;
    }

    .solution-item__heading--right {
        flex-direction: row;
        justify-content: flex-end;
        margin-right: -80px;
        margin-left: 0;
    }
}

/* Number Circle */
.solution-item__number {
    position: relative;
    width: 60px;
    max-width: 150px;
    aspect-ratio: 1;
    flex-shrink: 0;
    border: 2px solid #c0994e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 1024px) {
    .solution-item__number {
        min-width: 120px;
        height: 120px;
    }
}

@media (min-width: 1400px) {
    .solution-item__number {
        min-width: 180px;
        height: 180px;
    }
}

/* Number Text */
.solution-item__number-text {
    font-size: 22px;
    color: #c0994e;
    line-height: 1.5;
    letter-spacing: 3px;
    text-align: center;
}

@media (min-width: 1024px) {
    .solution-item__number-text {
        line-height: 2;
        letter-spacing: 4px;
        font-size: 60px;
    }
}

@media (min-width: 1400px) {
    .solution-item__number-text {
        font-size: 80px;
    }
}

/* Title */
.solution-item__title-wrapper {
    padding-left: 12px;
}

/* SP: reverse版も左padding（数字が左に来るため） */
.solution-item__title-wrapper--right {
    padding-left: 12px;
}

@media (min-width: 1024px) {
    .solution-item__title-wrapper--right {
        padding-left: 0;
        padding-right: 32px;
    }
}

/* Title Text - SP: 24px / PC: 40px */
h3.solution-item__title {
    margin: 0;
    font-size: 26px;
    color: #c0994e;
    line-height: 1.5;
    /* letter-spacing: 0.05em; */
}

@media (min-width: 1024px) {
    h3.solution-item__title {
        font-size: 32px;
    }
}

@media (min-width: 1400px) {
    h3.solution-item__title {
        font-size: 40px;
    }
}

/* Body - SP: default / PC: padding 100px */
.solution-item__body {}

@media (min-width: 1024px) {
    .solution-item__body {
        /* padding-left: 100px; */
    }

    .solution-item__body--right {
        /* padding-right: 100px; */
    }
}

/* Subtitle - SP: 16px / PC: 26px */
.solution-item__subtitle {
    margin: 0 0 12px 0;
    font-size: 20px;
    font-weight: 700;
    color: #000;
    line-height: 1.5;
    letter-spacing: 1.3px;
}

@media (min-width: 1024px) {
    .solution-item__subtitle {
        font-size: 26px;
        margin: 0 0 33px 0;
    }
}

/* Text Wrapper - SP: 14px / PC: 18px */
.solution-item__text-wrapper {
    font-size: 14px;
    font-weight: 500;
    color: #000;
    line-height: 2;
    letter-spacing: 0.9px;
}

@media (min-width: 1024px) {
    .solution-item__text-wrapper {
        font-size: 18px;
    }
}

.solution-item__text {
    margin: 0;
}

.solution-item__text--spaced {
    margin: 0 0 8px 0;
}

/* Note Text - SP: 12px / PC: 14px */
.solution-item__text--small {
    font-size: 12px;
    letter-spacing: 0.7px;
}

@media (min-width: 1024px) {
    .solution-item__text--small {
        font-size: 14px;
    }
}

.solution-item__link {
    margin: 0;
    text-decoration: underline;
}

/* Image Area - SP: 全幅、テキストの下 */
.solution-item__image-area {
    width: 100%;
    padding: 32px 0 0;
    flex-shrink: 0;
    order: 1;
}

@media (min-width: 1024px) {
    .solution-item__image-area {
        max-width: 520px;
        padding: 64px 0 0 0;
        order: 0;
    }

    .solution-item__image-area--left {}
}

.solution-item__image-wrapper {
    width: 100%;
    aspect-ratio: 520 / 376;
    overflow: hidden;
    /* background: #f5f5f5; */
}

@media (min-width: 1024px) {
    .solution-item__image-wrapper {
        max-width: 520px;
        aspect-ratio: unset;
    }
}

.solution-item__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}





.problem-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 2rem;
    box-sizing: border-box;
}

@media (min-width: 1024px) {
    .problem-section {
        padding: 160px 0;
    }
}

.problem-section__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.problem-section__bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.problem-section__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

@media (min-width: 1024px) {
    .problem-section__content {
        gap: 64px;
    }
}

/* Heading */
.problem-section__heading {
    margin: 0;
    font-size: 24px;
    font-weight: 400;
    color: #fff;
    text-align: center;
    line-height: 1.5;
    letter-spacing: 1.2px;
}

@media (min-width: 1024px) {
    .problem-section__heading {
        font-size: 40px;
        letter-spacing: 2px;
    }
}

.problem-section__heading-comma {
    letter-spacing: -10px;
}

@media (min-width: 1024px) {
    .problem-section__heading-comma {
        letter-spacing: -19.6px;
    }
}

/* List */
.problem-section__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 658px;
}

@media (min-width: 1024px) {
    .problem-section__list {
        gap: 24px;
    }
}

.problem-section__item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

@media (min-width: 1024px) {
    .problem-section__item {
        gap: 16px;
    }
}

.problem-section__icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    position: relative;
    top: 5px;
}

@media (min-width: 1024px) {
    .problem-section__icon-wrapper {
        width: 29px;
        height: 29px;
    }
}

.problem-section__icon {
    width: 20px;
    height: 20px;
    transform: rotate(15deg);
}

@media (min-width: 1024px) {
    .problem-section__icon {
        width: 24px;
        height: 24px;
    }
}

/* Item Text */
.problem-section__item-text {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    line-height: 1.8;
    letter-spacing: 0.8px;
}

@media (min-width: 1024px) {
    .problem-section__item-text {
        font-size: 20px;
        line-height: 2;
        letter-spacing: 1px;
    }
}





.voice-section {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 64px 2rem;
    gap: 40px;
}

@media (min-width: 1024px) {
    .voice-section {
        padding: 160px 2rem;
        gap: 64px;
    }
}


.voice-section__content {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
}

/* Background */
.voice-section__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.voice-section__bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.voice-section__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(41, 45, 32, 0.8);
}

/* Heading */
.voice-section__heading {
    text-align: center;
}

.voice-section__title {
    margin: 0;
    font-size: 24px;
    font-weight: 400;
    color: #fff;
    line-height: 1.5;
    letter-spacing: 1.2px;
    margin-bottom: 32px;
}

@media (min-width: 1024px) {
    .voice-section__title {
        font-size: 40px;
        letter-spacing: 2px;
        margin-bottom: 64px;
    }
}

/* Voice Cards Container */
.voice-cards {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 24px;
    width: 100%;
    /* max-width: 400px; */
}

@media (min-width: 768px) {
    .voice-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .voice-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 64px;
    }
}

/* Voice Card */
.voice-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    padding: 24px;
    box-sizing: border-box;
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .voice-card {
        gap: 24px;
        max-width: 384px;
        min-height: 364px;
        padding: 32px;
        border-radius: 27px;
    }
}

.voice-card__title {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #212f39;
    line-height: 1.5;
    letter-spacing: 0.9px;
}

@media (min-width: 1024px) {
    .voice-card__title {
        font-size: 24px;
        letter-spacing: 1.2px;
    }
}

.voice-card__divider {
    width: 100%;
    height: 1px;
    background-color: #c0994e;
}

.voice-card__text {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    color: #000;
    line-height: 1.8;
    letter-spacing: 0.7px;
}

@media (min-width: 1024px) {
    .voice-card__text {
        font-size: 18px;
        line-height: 2;
        letter-spacing: 0.9px;
    }
}

.voice-card__icon {
    position: absolute;
    bottom: 8px;
    right: 12px;
    width: 30%;
    max-width: 100px;
    aspect-ratio: 100 / 127;
    object-fit: cover;
    pointer-events: none;
}

@media (min-width: 1024px) {
    .voice-card__icon {
        bottom: 11px;
        right: 18px;
        max-width: 130px;
    }
}




.feature-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 2rem 80px;
    box-sizing: border-box;
}

@media (min-width: 1024px) {
    .feature-section {
        padding: 80px 2rem;
    }
}

/* Background */
.feature-section__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.feature-section__bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-section__bg-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(41, 45, 32, 0.8);
}

/* Content */
.feature-section__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 64px;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

/* ===================
     Heading
     =================== */
.feature-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 100%;
}

.feature-heading__wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

/* SPECIAL OFFER - SP: 80px / PC: 80px (same) */
.feature-heading__en {
    margin: 0;
    font-size: 40px;
    font-weight: 700;
    color: #efefef;
    opacity: 0.2;
    line-height: 1.2;
    letter-spacing: 4px;
    text-align: center;
}

@media (min-width: 768px) {
    .feature-heading__en {
        font-size: 60px;
    }
}

@media (min-width: 1024px) {
    .feature-heading__en {
        font-size: 80px;
    }
}

/* サブ見出し - SP: 32px / PC: 32px (same) */
.feature-heading__sub {
    margin: 0;
    font-size: 22px;
    font-weight: 400;
    color: #fff;
    line-height: 1.5;
    letter-spacing: 1.6px;
    text-align: center;
}

@media (min-width: 768px) {
    .feature-heading__sub {
        font-size: 32px;
    }
}

@media (min-width: 1024px) {
    .feature-heading__sub {
        font-size: 32px;
    }
}

/* 3大特典 - SP: 80px / PC: 80px (same) */
.feature-heading__main {
    margin: 0;
    font-size: 50px;
    font-weight: 400;
    color: #fff;
    line-height: 1.2;
    letter-spacing: 4px;
    text-align: center;
}

@media (min-width: 768px) {
    .feature-heading__main {
        font-size: 60px;
    }
}

@media (min-width: 1024px) {
    .feature-heading__main {
        font-size: 80px;
    }
}

/* ===================
     Feature Cards
     =================== */

/* SP: 縦積み、max-width 900px / PC: 横並び 1280px */
.feature-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 42px;
    width: 100%;
    max-width: 900px;
}



@media (min-width: 1024px) {
    .feature-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 55px;
        max-width: 1280px;
        padding-bottom: 0;
    }
}

/* Card - SP: 縦レイアウト / PC: 縦レイアウト flex */
.feature-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #fff;
    width: 100%;
}

@media (min-width: 1024px) {
    .feature-card {
        max-width: 390px;
    }
}

/* Label */
.feature-card__label {
    position: absolute;
    top: 0;
    left: 0;
    padding: 8px 10px;
    min-width: 80px;
    background-color: #e0cca7;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    z-index: 2;
}

.feature-card__label-text {
    font-size: 20px;
    font-weight: 400;
    color: #000;
    line-height: 1.5;
    letter-spacing: 1.6px;
}

@media (min-width: 768px) {
    .feature-card__label-text {
        font-size: 32px;
    }
}

/* Image Wrapper - 全ブレイクポイントでアスペクト比固定 */
.feature-card__image-wrapper {
    width: 100%;
    overflow: hidden;
    aspect-ratio: 390 / 255;
    flex-shrink: 0;
}

.feature-card__image-wrapper--layered {
    position: relative;
}

.feature-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-card__image--bg {
    position: absolute;
}

.feature-card__image--fg {
    object-fit: contain;
    position: relative;
    z-index: 1;
}

/* Card Body - SP: flex-grow / PC: fixed padding */
.feature-card__body {
    flex: 1;
    padding: 16px 16px 32px 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Title - 24px Bold */
.feature-card__title {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #000;
    line-height: 1.5;
    letter-spacing: 1.2px;
}

@media (min-width: 768px) {
    .feature-card__title {
        font-size: 20px;
    }
}

@media (min-width: 1024px) {
    .feature-card__title {
        font-size: 24px;
    }
}

/* Text - 18px Medium */
.feature-card__text {
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    color: #000;
    line-height: 2;
    letter-spacing: 0.9px;
}

@media (min-width: 768px) {
    .feature-card__text {
        font-size: 18px;
    }
}

.feature-card__text--small {
    font-size: 13px;
}

@media (min-width: 768px) {
    .feature-card__text--small {
        font-size: 15px;
    }
}

/* ===================
     Footer
     =================== */
.feature-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 991px;

}

.feature-footer p:not([class]) {
    width: 100%;
}

@media (min-width: 1024px) {
    .feature-footer {
        max-width: 1280px;
    }
}

/* Notice - 18px */
.feature-footer__notice {
    margin: 0 0 45px 0;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    line-height: 2;
    letter-spacing: 0.9px;
    text-align: center;
}

/* Button - SP: 991px幅 / PC: 100%幅 */
.feature-footer__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 100%;
    padding: 45px 24px;
    box-sizing: border-box;
    background: #C0994E;
    text-decoration: none;
    transition: opacity 0.3s;
}

.feature-footer__btn:hover {
    opacity: 0.9;
}

/* Button Icon - SP: 40x43px */
.feature-footer__btn-icon {
    width: 10%;
    max-width: 40px;
    aspect-ratio: 40 / 43;
}

/* Button Text - 32px */
.feature-footer__btn-text {
    font-size: clamp(0px, 5vw, 32px);
    font-weight: 400;
    color: #fff;
    line-height: 1.5;
    letter-spacing: 1.6px;
}


@media (min-width: 768px) {
    .feature-footer__btn-text {
        font-size: 32px;
    }
}


.experience-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 48px 2rem;
    gap: 40px;
    background-image: url(images/bg_section.png);
    background-size: contain;
    background-repeat: repeat;
    background-position: center center;
}

@media (min-width: 1024px) {
    .experience-section {
        padding: 160px 2rem;
        gap: 80px;
    }
}

/* ===================
     Heading
     =================== */
.experience-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
    text-align: center;
}

@media (min-width: 1024px) {
    .experience-heading {
        max-width: 1478px;
    }
}

/* EXPERIENCE - SP: 80px / PC: 80px (same) */
.experience-heading__en {
    margin: 0;
    font-size: 40px;
    font-weight: 400;
    color: #c0994e;
    opacity: 0.2;
    line-height: 1.2;
    letter-spacing: 4px;
    white-space: nowrap;
}

@media (min-width: 768px) {
    .experience-heading__en {
        font-size: 60px;
    }
}

@media (min-width: 1024px) {
    .experience-heading__en {
        font-size: 80px;
    }
}

/* Main Heading - SP: 32px / PC: 40px */
.experience-heading__main {
    font-size: 25px;
    font-weight: 400;
    color: #000;
    line-height: 1.5;
    letter-spacing: 1.6px;
    text-align: left;
}

@media (min-width: 768px) {
    .experience-heading__main {
        font-size: 32px;
        text-align: center;
    }
}

@media (min-width: 1024px) {
    .experience-heading__main {
        font-size: 40px;
        letter-spacing: 2px;
    }
}

.experience-heading__main p {
    margin: 0;
}

/* ===================
     Pet List
     =================== */
.experience-list {
    display: flex;
    flex-direction: column;
    gap: 64px;
    width: 100%;
    max-width: 900px;
    padding-bottom: 36px;
}

@media (min-width: 1024px) {
    .experience-list {
        max-width: 1152px;
        padding-bottom: 0;
    }
}

/* ===================
     Pet Item
     =================== */
.experience-item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: flex-start;
    padding: 10px 0;
}

@media (min-width: 768px) {
    .experience-item {
        grid-template-columns: 200px 1fr;
        gap: 64px;
    }
}

@media (min-width: 1024px) {
    .experience-item {
        grid-template-columns: 200px 1fr;
        gap: 64px;
    }
}

/* ===================
     Hexagon Image
     =================== */
.hexagon-clip {
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

/* Image Wrapper - SP: %ベース + aspect-ratio / PC: 200x182px */
.experience-item__image-wrapper {
    position: relative;
    width: 100%;
    max-width: 200px;
    aspect-ratio: 200 / 182;

    margin: 0 auto;
}

/* Shadow */
.experience-item__image-shadow {
    position: absolute;
    top: 8px;
    left: 8px;
    width: 100%;
    height: 100%;
    background-color: #212f39;
}

/* Image Container */
.experience-item__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.experience-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===================
     Content
     =================== */
.experience-item__content {
    flex: 1;
    padding-top: 0;
}


@media (min-width: 1024px) {
    .experience-item__content {
        padding-top: 16px;
    }
}

.experience-item__content--tight {
    padding-top: 6px;
}

/* ===================
     Label (ラインつき見出し)
     =================== */
.experience-item__label {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

/* Label Text - 24px */
.experience-item__label-text {
    font-size: 24px;
    font-weight: 400;
    color: #c0994e;
    line-height: 1.5;
    letter-spacing: 1.2px;
    white-space: nowrap;
}

/* Label Line */
.experience-item__label-line {
    flex: 1;
    height: 1px;
    background-color: #c0994e;
}

/* ===================
     Text
     =================== */
.experience-item__text {
    margin: 0;
    font-size: 20px;
    font-weight: 500;
    color: #000;
    line-height: 2;
    letter-spacing: 0.9px;
    max-width: 920px;
}


.cta-lp {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 96px 16px 60px;
    box-sizing: border-box;
}

@media (min-width: 1024px) {
    .cta-lp {
        padding: 160px 17px 100px;
    }
}

.cta-lp__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.cta-lp__bg-green {
    /* position: absolute; */
    /* inset: 0; */
    /* opacity: 0.5; */
    /* background-color: #315136; */
}

.cta-lp__bg-image-wrapper {
    position: absolute;
    inset: 0;
    opacity: 1;
    overflow: hidden;
}

.cta-lp__bg-image {
    width: 131%;
    height: 103%;
    object-fit: cover;
    position: absolute;
    /* top: -0.68%; */
    /* left: -20%; */
}

.cta-lp__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* gap: 48px; */
    width: 100%;
}

@media (min-width: 1024px) {
    .cta-lp__content {
        /* gap: 96px; */
    }
}

.cta-lp__heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

@media (min-width: 1024px) {
    .cta-lp__heading {
        gap: 64px;
    }
}

.cta-lp__title {
    margin: 0;
    font-size: 24px;
    font-weight: 400;
    color: #fff;
    line-height: 1.5;
    letter-spacing: 1.2px;
    text-align: center;
}

@media (min-width: 1024px) {
    .cta-lp__title {
        font-size: 40px;
        letter-spacing: 2px;
    }
}

.cta-lp__subtitle {
    text-align: center;
    color: #fff;
}

.cta-lp__subtitle-text {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.8px;
}

@media (min-width: 1024px) {
    .cta-lp__subtitle-text {
        font-size: 24px;
        letter-spacing: 1.2px;
    }
}

.cta-lp__subtitle-text--lg {
    font-size: 20px;
    letter-spacing: 1px;
}

@media (min-width: 1024px) {
    .cta-lp__subtitle-text--lg {
        font-size: 32px;
        letter-spacing: 1.6px;
    }
}




@media (max-width: 1023px) {
    #yoyaku-wrapper.cta-lp__yoyaku-wrapper {
        margin: 0;
        width: 100%;
        padding-bottom: 20px;
    }

    #yoyaku-wrapper .yoyaku-links {}
}

.cta-lp__yoyaku-wrapper {}

.cta-lp__yoyaku-wrapper.-pc-hidden {
    display: none;
}

.cta-lp__yoyaku-wrapper.-sp-hidden {
    display: block;
}

@media (min-width: 1024px) {
    .cta-lp__yoyaku-wrapper.-pc-hidden {
        display: block;
    }

    .cta-lp__yoyaku-wrapper.-sp-hidden {
        display: none;
    }

    #yoyaku-wrapper .yoyaku-links a {
        color: #fff;
        border-bottom: none;
    }

    .cta-lp__yoyaku-wrapper {
        display: block;
    }

    #yoyaku-wrapper .yoyaku-links a::after {
        background-image: url("images/right_white.svg");
        /* filter: invert(1); */
    }
}

.cta-lp-medium {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}


.cta-lp-medium__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.cta-lp-medium__bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-lp-medium__bg-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(41, 45, 32, 0.8);
}

/* ===================
     Content
     =================== */
.cta-lp-medium__content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 20% 1fr;
    align-items: center;
    width: 100%;
    max-width: 600px;
    padding: 40px 16px;
    box-sizing: border-box;
    justify-content: center;
}

.cta-lp-medium__content p:not([class]) {
    display: none;
}


@media (min-width: 768px) {
    .cta-lp-medium__content {
        padding: 0;
        max-width: 800px;
    }
}

@media (min-width: 1024px) {
    .cta-lp-medium__content {
        max-width: 1200px;
        grid-template-columns: 200px 1fr;
        padding: 0 30px;
    }
}

@media (min-width: 1300px) {
    .cta-lp-medium__content {
        max-width: 1200px;
        grid-template-columns: 280px 1fr;
        padding: 0 30px;
    }
}

/* ===================
     Dog Image
     =================== */
.cta-lp-medium__dog-image {
    position: relative;
    z-index: 11;
    filter: brightness(1);
    transition: filter 0.3s;
}

.cta-lp-medium__dog-image img {
    width: 100%;
}

@media (min-width: 1024px) {
    .cta-lp-medium__dog-image {
        left: 51px;
        scale: 1.1;
    }
    .cta-lp-medium__dog-image img {
        width: 200px;
    }
}

@media (min-width: 1300px) {
    .cta-lp-medium__dog-image {
        scale: 1.0;
        left: 0;
    }
    .cta-lp-medium__dog-image img {
        width: 280px;
    }
}

/* ===================
     Banner
     =================== */
.cta-lp-medium__banner {
    display: block;
    position: relative;
    left: -30px;
}

@media (min-width: 1024px) {
    .cta-lp-medium__banner {
        position: relative;
        left: 10px;
        width: 90%;
    }
}

@media (min-width: 1300px) {
    .cta-lp-medium__banner {
        left: -80px;
        width: 100%;
    }
}

.cta-lp-medium__banner-outer {
    width: 100%;
    height: 100%;
    background-color: rgba(41, 45, 32, 0.6);
    border: 2px solid #e0cca7;
    padding: 6px;
    box-sizing: border-box;
    transition: background-color 0.3s, border-color 0.3s;
}

@media (min-width: 768px) {
    .cta-lp-medium__banner-outer {
        padding: 8px;
    }
}

.cta-lp-medium__banner-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 100%;
    height: 100%;
    background-color: rgba(41, 45, 32, 0.2);
    border: 2px solid #e0cca7;
    padding: 16px 15px;
    box-sizing: border-box;
    transition: background-color 0.3s, border-color 0.3s;
}

@media (min-width: 768px) {
    .cta-lp-medium__banner-inner {
        gap: 24px;
        padding: 30px 30px;
    }
}

@media (min-width: 1024px) {
    .cta-lp-medium__banner-inner {
        gap: 24px;
        padding: 40px 60px;
    }
}

.cta-lp-medium__banner-text {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    line-height: 1.5;
    letter-spacing: 0.7px;
    transition: color 0.3s;
}

@media (min-width: 768px) {
    .cta-lp-medium__banner-text {
        font-size: 24px;
        letter-spacing: 1.2px;
        white-space: nowrap;
    }
}

@media (min-width: 1024px) {
    .cta-lp-medium__banner-text {
        font-size: 32px;
        letter-spacing: 1.6px;
    }
}

.cta-lp-medium__banner-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 10px;
    height: 16px;
    color: #fff;
    transition: color 0.3s;
}

@media (min-width: 768px) {
    .cta-lp-medium__banner-arrow {
        width: 12px;
        height: 20px;
    }
}

.cta-lp-medium__banner-arrow svg {
    width: 100%;
    height: 100%;
}

/* ===================
     Hover State
     =================== */
.cta-lp-medium__banner:hover .cta-lp-medium__banner-outer {
    background-color: #efefef;
    border-color: #c0994e;
}

.cta-lp-medium__banner:hover .cta-lp-medium__banner-inner {
    background-color: rgba(255, 255, 255, 0.6);
    border-color: #c0994e;
}

.cta-lp-medium__banner:hover .cta-lp-medium__banner-text {
    color: #212f39;
}

.cta-lp-medium__banner:hover .cta-lp-medium__banner-arrow {
    color: #212f39;
}

/* Dog image brightens on banner hover */
.cta-lp-medium__content:has(.cta-lp-medium__banner:hover) .cta-lp-medium__dog-image {
    filter: brightness(1.2);
}




.model-course {

    padding: 0 0 64px 0;
    gap: 48px;
    background-image: url(images/bg_section.png);
    background-size: contain;
    background-repeat: repeat;
    background-position: center center;
}

@media (min-width: 1024px) {
    .model-course {
        padding: 0 0 160px 0;
        gap: 96px;
    }
}

.model-course__content {
    position: relative;
    z-index: 1;
    max-width: 1478px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 2rem;
}

/* Heading */
.model-course__heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
    position: relative;
    margin-bottom: 100px;
    /* overflow: hidden; */
}

.model-course__heading-en {
    margin: 0;
    font-size: clamp(30px, 11vw, 90px);
    font-weight: 400;
    color: #c0994e;
    opacity: 0.1;
    line-height: 1;
    letter-spacing: 3px;
    white-space: nowrap;
}

@media (min-width: 1024px) {
    .model-course__heading-en {
        font-size: clamp(100px, 10vw, 220px);
        letter-spacing: 11px;
    }
}

.model-course__heading-main-wrapper {
    /* position: absolute; */
    /* bottom: 10px;
    left: 50%; */
    /* transform: translateX(-50%); */
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

@media (min-width: 1024px) {
    .model-course__heading-main-wrapper {
        bottom: 40px;
        width: auto;
        padding: 0;
    }
}

.model-course__heading-main {
    margin: 0;
    font-size: 18px;
    font-weight: 400;
    color: #000;
    line-height: 1.5;
    letter-spacing: 0.9px;
    text-align: center;
}

@media (min-width: 1024px) {
    .model-course__heading-main {
        font-size: 40px;
        letter-spacing: 2px;
        white-space: nowrap;
    }
}

/* Tabs Area */
.model-course__tabs-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-bottom: 64px;
}

@media (min-width: 1024px) {
    .model-course__tabs-area {
        max-width: 1478px;
        margin-bottom: 100px;
    }
}

.model-course__tabs {
    display: flex;
    /* flex-direction: column; */
    gap: 4px;
    width: 100%;
}

@media (min-width: 1024px) {
    .model-course__tabs {
        flex-direction: row;
        justify-content: space-between;
        gap: 64px;
        max-width: 1280px;
        /* height: 60px; */
    }
}

.model-course__tab {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    /* height: 50px; */
    background-color: #212f39;
    cursor: pointer;
    padding: 8px;
}

@media (min-width: 768px) {
    .model-course__tab {
        padding: 16px;
    }
}

@media (min-width: 1024px) {
    .model-course__tab {
        height: auto;
    }
}

.model-course__tab--active {
    background-color: #c0994e;
}

.model-course__tab-text {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    line-height: 1.5;
    letter-spacing: 0.8px;
}

@media (min-width: 768px) {
    .model-course__tab-text {
        font-size: 16px;
    }
}

@media (min-width: 1024px) {
    .model-course__tab-text {
        font-size: 24px;
        letter-spacing: 1.2px;
    }
}

.model-course__tabs-line {
    width: 100%;
    height: 3px;
    background-color: #c0994e;
}

@media (min-width: 1024px) {
    .model-course__tabs-line {
        max-width: 1478px;
    }
}

/* Schedule Area */
.model-course__schedule {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 100%;
    /* padding: 0 20px; */
    box-sizing: border-box;
}

@media (min-width: 1024px) {
    .model-course__schedule {
        gap: 48px;
        /* width: 1152px; */
        padding: 0;
    }
}

.model-course__schedule--hidden {
    display: none;
}

.model-course__plan-desc {
    margin: 0;
    font-size: 20px;
    font-weight: 400;
    color: #000;
    line-height: 1.5;
    letter-spacing: 1px;
}

@media (min-width: 1024px) {
    .model-course__plan-desc {
        font-size: 32px;
        letter-spacing: 1.6px;
    }
}

.model-course__plan {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 12px;
}

@media (min-width: 1024px) {
    .model-course__plan {}
}

/* Day Wrapper - アコーディオンを閉じた時の縦棒 */
.model-course__day {
    position: relative;
}

.model-course__day--closed::after {
    content: '';
    position: absolute;
    left: 32px;
    top: 100%;
    width: 1px;
    height: 12px;
    background-color: #212f39;
}

@media (min-width: 1024px) {
    .model-course__day--closed::after {
        left: 60px;
    }
}

/* 最後のDAYには縦棒を表示しない */
.model-course__day:last-child::after {
    display: none;
}

/* Day Header */
.model-course__day-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 16px;
    background-color: #c0994e;
    color: #fff;
    box-sizing: border-box;
    cursor: pointer;
}

@media (min-width: 1024px) {
    .model-course__day-header {
        padding: 24px 32px;
        /* height: 91px; */
    }
}

.model-course__day-label {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.9px;
}

@media (min-width: 1024px) {
    .model-course__day-label {
        font-size: 24px;
        letter-spacing: 1.2px;
    }
}

.model-course__day-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Noto Sans JP', sans-serif;
}

.model-course__day-toggle-icon {
    font-size: 24px;
    font-weight: 500;
    line-height: 1;
}

@media (min-width: 1024px) {
    .model-course__day-toggle-icon {
        font-size: 32px;
    }
}

.model-course__day-toggle-text {
    font-size: 12px;
    font-weight: 500;
}

@media (min-width: 1024px) {
    .model-course__day-toggle-text {
        font-size: 14px;
    }
}

/* Day Content */
.model-course__day-content {
    display: flex;
    padding-left: 32px;
    padding-right: 16px;
}

@media (min-width: 1024px) {
    .model-course__day-content {
        padding-left: 60px;
        padding-right: 24px;
    }
}

.model-course__day-content--hidden {
    display: none;
}

/* Timeline */
.model-course__timeline {
    width: 1px;
    background-color: #212f39;
    flex-shrink: 0;
}

.model-course__timeline-wrapper {
    display: flex;
    width: 1px;
}

.model-course__timeline-dot {
    width: 9px;
    height: 9px;
    background-color: #212f39;
    border-radius: 50%;
    margin-top: auto;
    position: absolute;
    bottom: 0;
    left: 28px;
}

@media (min-width: 1024px) {
    .model-course__timeline-dot {
        left: 56px;
    }
}

/* Time Area */
.model-course__time-area {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 16px 0 32px 0;
    width: 100%;
}

@media (min-width: 1024px) {
    .model-course__time-area {
        gap: 48px;
        padding: 24px 0 48px 0;
    }
}

.model-course__time-block {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding-left: 16px;
}

@media (min-width: 1024px) {
    .model-course__time-block {
        gap: 48px;
        padding-left: 48px;
    }
}

/* Event */
.model-course__event {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media (min-width: 1024px) {
    .model-course__event {
        gap: 24px;
    }
}

.model-course__event--simple {
    gap: 0;
}

.model-course__event-title {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #000;
    line-height: 1.5;
    letter-spacing: 0.9px;
}

@media (min-width: 1024px) {
    .model-course__event-title {
        font-size: 24px;
        letter-spacing: 1.2px;
    }
}

.model-course__event-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-left: 46px;
}

@media (min-width: 1024px) {
    .model-course__event-body {
        gap: 16px;
        padding-left: 72px;
    }
}

.model-course__event-body--no-gap {
    gap: 0;
}

.model-course__event-subtitle {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #000;
    line-height: 1.5;
    letter-spacing: 0.8px;
}

@media (min-width: 1024px) {
    .model-course__event-subtitle {
        font-size: 24px;
        letter-spacing: 1.2px;
    }
}

.model-course__event-text-wrapper {
    font-size: 14px;
    font-weight: 500;
    color: #000;
    line-height: 1.8;
    letter-spacing: 0.7px;
}

@media (min-width: 1024px) {
    .model-course__event-text-wrapper {
        font-size: 18px;
        line-height: 2;
        letter-spacing: 0.9px;
    }
}

.model-course__event-text {
    font-size: 14px;
    font-weight: 500;
    color: #000;
    line-height: 1.8;
    letter-spacing: 0.7px;
}
@media (min-width: 1024px) {
    .model-course__event-text {
        font-size: 18px;
        line-height: 2;
        letter-spacing: 0.9px;
    }
}


.model-course__event-images {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 12px;
}

@media (min-width: 1024px) {
    .model-course__event-images {
        flex-direction: row;
        gap: 32px;
        padding-top: 16px;
    }
}

.model-course__event-image {
    width: 100%;
    height: auto;
    aspect-ratio: 350 / 263;
    object-fit: cover;
}

@media (min-width: 1024px) {
    .model-course__event-image {
        width: 350px;
        height: 263px;
        aspect-ratio: auto;
    }
}

.model-course__event-image--contain {
    object-fit: contain;
}

/* Transport Badge */
.model-course__transport {
    display: flex;
    align-items: center;
}

.model-course__transport-line {
    width: 16px;
    height: 1px;
    background-color: #212f39;
}

@media (min-width: 1024px) {
    .model-course__transport-line {
        width: 32px;
    }
}

.model-course__transport-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 12px 0 6px;
    border: 1px solid #212f39;
    background-color: #fff;
}

@media (min-width: 1024px) {
    .model-course__transport-badge {
        gap: 16px;
        padding: 0 16px 0 8px;
    }
}

.model-course__transport-badge svg {
    width: 20px;
    height: 17px;
}

@media (min-width: 1024px) {
    .model-course__transport-badge svg {
        width: 24px;
        height: 21px;
    }
}

.model-course__transport-text {
    font-size: 14px;
    font-weight: 400;
    color: #212f39;
    line-height: 2;
    letter-spacing: 0.7px;
}

@media (min-width: 1024px) {
    .model-course__transport-text {
        font-size: 20px;
        letter-spacing: 1px;
    }
}



.faq-list-section {
    background-image: url(images/bg_section.png);
    background-size: contain;
    background-repeat: repeat;
    background-position: center center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 64px 2rem;
    gap: 32px;
}

@media (min-width: 1024px) {
    .faq-list-section {
        padding: 160px 2rem;
        gap: 64px;
    }
}

.faq-list-section__content {
    max-width: 1280px;
    margin: 0 auto;
}

/* Heading */
.faq-heading {
    display: flex;
    align-items: flex-end;
    gap: 16px;
    padding: 0 16px;
    margin-bottom: 64px;
}

@media (min-width: 1024px) {
    .faq-heading {
        padding: 0 32px;
        margin-bottom: 64px;
    }
}

.faq-heading__title {
    margin: 0;
    font-size: 32px;
    font-weight: 400;
    color: #000;
    line-height: 1.5;
    letter-spacing: 1.6px;
}

.faq-heading__label {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    color: #c0994e;
    line-height: 2;
    letter-spacing: 0.9px;
}

/* FAQ List */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 100%;
    max-width: 1280px;
    padding: 0 16px;
    box-sizing: border-box;
}
.faq-list .wp-block-post-content{
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 100%;
    max-width: 1280px;
    /* padding: 0 16px; */
    box-sizing: border-box;
}

@media (min-width: 1024px) {
    .faq-list {
        padding: 0 32px;
    }
}

/* FAQ Item */
.faq-item {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq-item__question-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

/* Q Icon */
.faq-item__icon {
    position: relative;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.faq-item__icon-text {
    position: absolute;
    top: 2px;
    left: 11px;
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #fff;
    line-height: 1.5;
    letter-spacing: 1.2px;
}

/* Question */
.faq-item__question {
    margin: 0;
    font-size: 18px;
    font-weight: 400;
    color: #333;
    line-height: 1.5;
    letter-spacing: 1.2px;

}


@media (min-width: 768px) {
    .faq-item__question {
        font-size: 24px;
    }
}

@media (min-width: 1024px) {
    .faq-item__question {
        font-size: 24px;
    }
}

/* Answer */
.faq-item__answer {
    padding-left: 56px;
}

@media (min-width: 1024px) {
    .faq-item__answer {
        padding-left: 64px;
    }
}

.faq-item__answer-text {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    line-height: 2;
    letter-spacing: 0.9px;
}

@media (min-width: 768px) {
    .faq-item__answer-text {
        font-size: 18px;
    }
}

@media (min-width: 1024px) {
    .faq-item__answer-text {
        font-size: 18px;
    }
}

.faq-item__link,
.faq-item__answer-text a {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    line-height: 2;
    letter-spacing: 0.9px;
    text-decoration: underline;
}

@media (min-width: 768px) {
    .faq-item__link,
    .faq-item__answer-text a {
        font-size: 18px;
    }
}

@media (min-width: 1024px) {
    .faq-item__link,
    .faq-item__answer-text a {
        font-size: 18px;
    }
}

/* Divider */
.faq-item__divider {
    height: 1px;
    background-color: #e0cca7;
}