/* --- 変数定義 --- */
:root {
    --main-color: #07C655;
    --bg-gray: #F6F7F5;
    --text-black: #333;
}

/* --- リセット & 基本設定 --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    height: 100%;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

.cushion-site-wrapper {
    background-color: var(--bg-gray) !important;
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--text-black);
    line-height: 1.6;
    width: 100%;
    min-height: 100vh; /* 画面いっぱいの高さを確保 */
    display: block;
    overflow: hidden;
}

/* --- ヒーローセクション --- */
.hero {
    background-color: var(--main-color);
    padding: 35px 0 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-inner {
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
    min-height: 570px;
}

.hero-content {
    position: relative;
    z-index: 20;

}

.hero-sub-top {
    font-weight: bold;
    margin-bottom: 10px;
}

.hero-logo {
    width: 442px;
    margin: 0 auto 50px;
}

.hero-title {
    font-size: clamp(27px, 5vw, 47px);
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 70px;
    text-shadow: 0 0 15px rgba(0, 103, 43, 0.8); 
    letter-spacing: 0.1em;
    color: #fff;
}

.hero-description {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.8;
    text-shadow: 0 0 15px rgba(0, 103, 43, 0.8); 
    letter-spacing: 0.1em;
    color: #fff;
}

/* 人物配置 (PC) */
.hero-person {
    position: absolute;
    bottom: 0;
    width: 442px;
    z-index: 10;
    pointer-events: none;
}

.person-left { left: -20px; }
.person-right { right: -20px; }

/* --- バッジ --- */
.badge-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    padding: 35px 20px;
    background-color: #fff;
}

.badge {
    background: var(--main-color);
    color: #fff;
    /* padding: 10px 0; */
    border-radius: 50px;
    font-weight: bold;
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.1em;
}
.badge img {
    margin-right: 4px;
    width: 19px;
}
@media (min-width: 769px) {
    .badge:nth-of-type(1),
    .badge:nth-of-type(2) {
        width: 178px;
        padding: 10px 0;
    }
    .badge:nth-of-type(3) {
        padding: 10px 27px;
        width: auto; /* コンテンツに合わせて広がる */
    }
}

/* --- メインコンテンツ --- */
.content-wrapper {
    max-width: calc(950px + 60px);
    margin: 80px auto;
    padding: 0 30px;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-sub-title {
    font-size: 18px;
    color: var(--main-color);
    font-weight: bold;
    margin-bottom: 40px;
    letter-spacing: 0.1em;
}

.section-main-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 32px;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 0.1em;
}

.section-main-title span:first-child {
    border-bottom: 4px solid var(--main-color); /* テキストのすぐ下に線を引く */
    padding-bottom: 10px;  /* テキストと線の間の距離 */
    margin-bottom: 10px;  /* 線と2行目の間の距離 */
    display: inline-block;
}

/* --- 特典カード --- */
.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.benefit-card {
    background: #fff;
    border-radius: 0 20px 20px 0;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 35px;
    border-left: 5px solid var(--main-color);
    position: relative;
}

.benefit-number {
    background: var(--main-color);
    color: #fff;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: bold;
    flex-shrink: 0;
}

.benefit-body {
    flex: 1;
}
.benefit-card-title {
    color: var(--main-color);
    font-size: 26px;
    letter-spacing: 0.1em;
    margin-bottom: 30px;
}

.benefit-text {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.8;
    margin-bottom: 0 !important;
}

/* --- CTA & Footer Info --- */
.cta-area {
    text-align: center;
    margin-top: 70px;
}

.cta-button {
    display: inline-block;
    transition: transform 0.2s cubic-bezier(0.33, 1, 0.68, 1);
    -webkit-tap-highlight-color: transparent;
}

.cta-button:hover {
    transform: scale(1.03);
}

.cta-note {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #969696;
    margin-top: 15px;
}

.info-points {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 140px;
    margin-top: 100px;
    color: #969696;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.1em;
}
.info-points span::before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    background-color: var(--main-color);
    border-radius: 50%;
    margin-right: 10px;
    vertical-align: middle;
    position: relative;
    top: -1px;
}

.sp-only {
    display: none;
}

@media (max-width: 1080px) {
    .hero-inner {
        min-height: 560px; 
    }

    .hero-person {
        width: 45%; 
        max-width: 380px;
    }
    .person-left, .person-right {
        bottom: -100px;
    }
    .person-left {
        left: -12%; 
    }

    .person-right {
        right: -8%;
    }
}

@media (max-width: 768px) {
    .pc-only {
        display: none;
    }
    .sp-only {
        display: block;
    }
    .content-wrapper {
        margin: 40px auto;
    }
    .section-sub-title {
        margin-bottom: 20px;
    }
    .section-main-title {
        font-size: 24px;
    }

    .hero-inner {
        min-height: 480px; 
    }
    .hero-person {
        width: 48%; 
    }
    .person-left, .person-right {
        bottom: -180px; 
    }
    .person-left {
        left: -15%; 
    }
    .person-right {
        right: -10%;
    }
    .hero-title {
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    /* バッジの調整 */
    .badge-container {
        gap: 10px;
        padding: 20px;
    }
    .badge {
        width: 100%;
        padding: 10px;
    }
    .badge:nth-of-type(1),
    .badge:nth-of-type(2) {
        width: calc(50% - 5px);
        font-size: 14px;
    }
    .badge:nth-of-type(3) {
        padding: 10px 0;
        width: 100%;
        font-size: 14px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    /* 特典カードの修正：丸数字を左上に配置 */
    .benefit-card {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        padding: 30px 25px;
        /* margin-top: 20px; */
        position: relative;
    }

    .benefit-number {
        position: absolute;
        top: -10px;
        left: -20px;
        width: 38px;
        height: 38px;
        font-size: 16px;
        z-index: 2;
    }

    .benefit-card-title {
        font-size: 19px;
        line-height: 1.4;
        margin-bottom: 15px;
    }

    .benefit-text {
        font-size: 13px;
        line-height: 1.9;
    }

    .cta-note {
        font-size: 10px;
        margin-top: 5px;
    }

    /* フッター情報の調整 */
    .info-points {
        font-size: 12px;
        margin-top: 80px;
        gap: 15px 20px;
    }
    .info-points span {
        white-space: nowrap;
    }

    .info-points span:nth-child(1) {
        flex-basis: 100%;
        text-align: center;
    }
    .info-points span::before {
        width: 12px;
        height: 12px;
        margin-right: 5px;
    }
}

@media (max-width:430px) {
    .hero-inner {
        min-height: 389px;
    }

    .hero-person {
        width: 65%;
    }
    .person-left, .person-right {
        bottom: -140px;
    }
    .person-left {
        left: -22%;
    }

    .person-right {
        right: -17%;
    }

    .hero-logo {
        width: 277px;
        margin: 0 auto 40px;
    }

    .hero-title {
        margin-bottom: 40px;
    }
    .hero-description {
        font-size: 14px;
    }
}