/* リセットCSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* 画像の最大幅を制限 */
img {
    max-width: 100%;
    height: auto;
}

html, body {
    font-family: 'Yu Gothic', 'YuGothic', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Meiryo', sans-serif;
    font-weight: bold;
    line-height: 1.6;
    color: #756b52;
    background-color: #fff;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* コンテナ */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ファーストビュー */
.hero {
    position: relative;
    height: auto;
    overflow: hidden;
    width: 100%;
    background-color: #93dad7;
    margin-bottom: 0;
}

.hero-image {
    width: 100%;
    z-index: 1;
    background-image: url('images/fv-pc-bg.jpg');
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 900px;
    margin: 0 auto;
}

/* PC・スマホ画像の表示制御 */
.pre-head-pc {
    display: block !important;
    width: 100%;
    background-color: #93dad7;
    text-align: center;
}

.pre-head-pc img {
    max-width: 900px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.hero-image-pc {
    display: block !important;
}

.hero-image-sp {
    display: none !important;
}

/* PC用ボタン */
.hero-buttons-pc {
    position: absolute;
    bottom: 8%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: row;
    gap: 10px;
    width: 100%;
    max-width: 900px;
    justify-content: center;
}

.line-button img,
.mail-button img {
    width: auto;
    height: auto;
    transition: transform 0.3s ease;
}

.line-button:hover img,
.mail-button:hover img {
    transform: scale(1.05);
}

/* 電話番号情報 */
.hero-phone-info {
    position: absolute;
    bottom: 8%;
    left: 50%;
    transform: translateX(30px);
    z-index: 10;
    color: #756b52;
    font-family: 'Yu Gothic', 'YuGothic', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Meiryo', sans-serif;
    font-weight: bold;
    font-size: 1.2rem;
    text-align: center;
}

.hero-phone-info a {
    color: #756b52;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.hero-phone-info a:hover {
    opacity: 0.8;
}

/* スマホ用LINEボタン */
.hero-button-sp {
    display: none;
    text-align: center;
    margin-top: 20px;
}

.line-button-sp img {
    width: 95%;
    height: auto;
}

/* スマホ用メール・電話ボタン */
.hero-buttons-sp {
    display: none;
    text-align: center;
    margin-top: 15px;
}

.hero-buttons-sp a {
    width: 45%;
    max-width: 150px;
}

.hero-buttons-sp img {
    width: 100%;
    height: auto;
}

/* レスポンシブ対応 */
@media (max-width: 900px) {
    .line-button img,
    .mail-button img {
        max-width: 90%;
        height: auto;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .container {
        padding: 0 10px;
    }
    
    /* スマホ用画像の表示切り替え */
    .pre-head-pc {
        display: none !important;
    }
    
    .hero-image-pc {
        display: none !important;
    }
    
    .hero-image-sp {
        display: block !important;
    }
    
    .hero-buttons-pc {
        display: none !important;
    }
    
    .hero-phone-info {
        display: none !important;
    }
    
    /* スマホ用LINEボタンを表示 */
    .hero-button-sp {
        display: block !important;
    }
    
    /* スマホ用メール・電話ボタンを表示（横並び） */
    .hero-buttons-sp {
        display: flex;
        justify-content: center;
        gap: 0px;
    }
    
    .hero-buttons-sp a {
        width: 47.5%;
        max-width: none;
    }
    
    .hero-buttons-sp img {
        width: 100%;
        height: auto;
    }
    
    /* スマホ表示時は背景画像と背景色を非表示 */
    .hero-image {
        background-image: none;
        background-color: transparent;
    }
    
    .hero {
        background-color: transparent;
        margin-bottom: 60px;
    }
}

/* セクション01 */
.section-01 {
    padding: 80px 0;
    background-color: #b2edea;
    overflow-x: hidden;
}

.section01-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 0;
    color: #fff;
    position: relative;
}

.section01-title::before {
    content: '';
    position: absolute;
    left: 36%;
    top: 54%;
    transform: translate(-120%, -50%);
    width: 2rem;
    height: 2rem;
    background-image: url(images/point6-sub-title-l.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.section01-title::after {
    content: '';
    position: absolute;
    right: 34%;
    top: 54%;
    transform: translate(20%, -50%);
    width: 2rem;
    height: 2rem;
    background-image: url(images/point6-sub-title-r.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.section01-title-text {
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
}

.section01-subtitle {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 60px;
    color: #756b52;
    background-image: url('images/point6-sub-title-bg.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    padding: 20px 0;
}

/* PC用のフォントサイズ設定 */
.section01-subtitle .pc-size-3rem {
    font-size: 3rem;
}

.section01-subtitle .pc-size-2rem {
    font-size: 2rem;
}

.section01-subtitle .pc-size-kazu {
    font-size: 5rem;
    font-weight: 500;
}

/* ピンクテキスト */
.pink-text {
    color: #ffb6b9;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.feature-item {
    text-align: center;
    background-color: #fff;
    padding: 15px 20px;
    border-radius: 10px;
    position: relative;
    margin: 10px 0;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -7px;
    width: 75px;
    height: 75px;
    background-image: url('images/point6-number.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 2;
}

.feature-item:nth-child(1)::after {
    content: '01';
    position: absolute;
    top: -2px;
    left: 7px;
    width: 45px;
    text-align: center;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 2rem;
    font-weight: 400;
    color: #756b52;
    z-index: 3;
}

.feature-item:nth-child(2)::after {
    content: '02';
    position: absolute;
    top: -2px;
    left: -7px;
    width: 75px;
    text-align: center;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 2rem;
    font-weight: 400;
    color: #756b52;
    z-index: 3;
}

.feature-item:nth-child(3)::after {
    content: '03';
    position: absolute;
    top: -2px;
    left: -7px;
    width: 75px;
    text-align: center;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 2rem;
    font-weight: 400;
    color: #756b52;
    z-index: 3;
}

.feature-item:nth-child(4)::after {
    content: '04';
    position: absolute;
    top: -2px;
    left: -7px;
    width: 75px;
    text-align: center;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 2rem;
    font-weight: 400;
    color: #756b52;
    z-index: 3;
}

.feature-item:nth-child(5)::after {
    content: '05';
    position: absolute;
    top: -2px;
    left: -7px;
    width: 75px;
    text-align: center;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 2rem;
    font-weight: 400;
    color: #756b52;
    z-index: 3;
}

.feature-item:nth-child(6)::after {
    content: '06';
    position: absolute;
    top: -2px;
    left: -7px;
    width: 75px;
    text-align: center;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 2rem;
    font-weight: 400;
    color: #756b52;
    z-index: 3;
}

.feature-item h3 {
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #756b52;
}

.feature-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #756b52;
    text-align: left;
}

/* レスポンシブ対応（セクション01） */
@media (max-width: 768px) {
    .section-01 {
        padding: 40px 0;
    }
    
    .section01-title {
        font-size: 1.5rem;
        margin-bottom: -.5rem;
    }

    .section01-title-text {
        font-size: 1.5rem;
        font-weight: bold;
        color: #fff;
    }

    .section01-title::before {
        content: '';
        position: absolute;
        left: 30%;
        top: 54%;
        transform: translate(-120%, -50%);
        width: 2rem;
        height: 2rem;
        background-image: url(images/point6-sub-title-l.png);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }

    .section01-title::after {
        content: '';
        position: absolute;
        right: 25%;
        top: 54%;
        transform: translate(20%, -50%);
        width: 2rem;
        height: 2rem;
        background-image: url(images/point6-sub-title-r.png);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }

    .section01-subtitle {
        padding: 10px 0;
        margin-bottom: 20px;
    }

    
    .features-grid {
        gap: 10px;
        padding: 0;
    }

    .feature-item {
        padding: 27px 5px 15px;
        margin: 10px 0;
    }
    
    .feature-item h3 {
        font-size: 1.1rem;
        line-height: 1.3;
    }
    
    .feature-item p {
        font-size: 1rem;
    }
    
    
    /* スマホ表示時はフォントサイズを元に戻す */
    .section01-subtitle .pc-size-3rem {
        font-size: 1.8rem;
    }
    
    .section01-subtitle .pc-size-2rem {
        font-size: 1.2rem;
    }
    
    .section01-subtitle .pc-size-kazu {
        font-size: 2.5rem;
        font-weight: 500;
    }
    
    /* スマホ表示時の番号画像サイズ */
    .feature-item::before {
        width: 35px;
        height: 35px;
        top: -7px;
        left: 0;
    }
    
    .feature-item:nth-child(1)::after,
    .feature-item:nth-child(2)::after,
    .feature-item:nth-child(3)::after,
    .feature-item:nth-child(4)::after,
    .feature-item:nth-child(5)::after,
    .feature-item:nth-child(6)::after {
        width: 35px;
        top: -3px;
        left: 0;
        font-size: 1.2rem;
    }
}

/* セクション02 */
.section-02 {
    padding: 40px 0 80px 0;
    background-color: #fff7f7;
    overflow-x: hidden;
}

.section-02 .container {
    padding: 0;
}

.section02-title {
    text-align: center;
    margin-bottom: 60px;
}

.section02-title img {
    width: 100%;
    height: auto;
}

.section02-cards {
    display: flex;
    justify-content: center;
    gap: 10px;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 10px;
}

.section02-card {
    flex: 1;
    max-width: 48%;
}

.section02-card {
    position: relative;
}


.card-text {
    position: absolute;
    top: calc(3rem - 10px);
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 15px;
    font-size: 2rem;
    color: #756b52;
    white-space: nowrap;
    z-index: 10;
}

.card-amount {
    position: absolute;
    top: calc(6rem - 15px);
    left: 50%;
    transform: translateX(-50%);
    font-size: 5rem;
    color: #ffb6b9;
    font-weight: bold;
    white-space: nowrap;
    z-index: 10;
}

.max-text {
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-size: 1.5rem;
    margin-right: 1px;
    display: inline-block;
}

/* PC用の数字フォントサイズ設定 */
.pc-size-kazu2 {
    font-size: 7rem;
    font-weight: 500;
}
.section02-card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transform: translateY(-30px);
}

/* 左のカード用の画像 */
.section02-card-l img {
    content: url('images/section02-card-l.png');
}

/* 右のカード用の画像 */
.section02-card-r img {
    content: url('images/section02-card-r.png');
}

/* 注意書き */
.section02-notice {
    margin-top: 40px;
    text-align: center;
}

/* セクション03 */
.section-03 {
    background-color: #ffffff;
    padding: 20px 0;
    overflow-x: hidden;
}

.section-03 .features-grid-4 {
    background-color: #ffffc9;
    margin: 60px 0 0 0;
    border-radius: 10px;
}

.section-03 .features-grid-4 .features-row {
    max-width: 900px;
    margin: 0 auto;
}

.section-03 .section-title {
    display: block;
}

.section-03 .section-title img {
    width: 80%;
    height: auto;
    display: block;
    margin: 90px auto 0 auto;
}

.section03-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

.section03-text {
    flex: 1;
    position: relative;
    padding-right: 20px;
}

.section03-main-title {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1.5;
    color: #756b52;
    margin: 0;
}

.subtitle {
    color: #756b52;
    font-size: 1.8rem;
    font-weight: bold;
    position: relative;
    display: inline-block;
    margin-left: 20%;
    margin-top: 1rem;
}

.subtitle::before {
    content: '';
    position: absolute;
    left: -35px;
    top: 50%;
    transform: translateY(-50%);
    width: 25px;
    height: 25px;
    background-image: url('images/section03-sub-title-before.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
}

.subtitle::after {
    content: '';
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
    width: 25px;
    height: 25px;
    background-image: url('images/section03-sub-title-after.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
}

.highlight-blue {
    color: #93dad7;
    font-weight: 900;
}

.center-text {
    text-align: center;
    display: block;
    margin-top: 1.3rem;
    font-size: 3.3rem;
}

.small-text {
    font-size: 2.3rem;
}

.description-text {
    text-align: left;
}

.heart-icon {
    position: absolute;
    top: 0;
    right: 20px;
    font-size: 2rem;
    color: #ffb6b9;
}

.section03-image {
    flex: 0 0 auto;
    text-align: center;
    width: 35%;
}

.section03-image img {
    width: 100%;
    height: auto;
}

.section03-description {
    max-width: 800px;
    margin: 40px 0;
    padding: 0 20px;
    text-align: center;
}

.description-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffb6b9;
    margin: 0 0 20px 0;
}

.description-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #756b52;
    margin: 0;
}


.highlight-pink {
    color: #ffb6b9;
    font-weight: bold;
}

/* 4つの特徴項目 */
.features-grid-4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 60px auto 0 auto;
    padding: 60px 10px;
    border-radius: 10px;
}

.features-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-item-4 {
    text-align: center;
    position: relative;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #756b52;
    margin-bottom: 0;
    text-align: left;
}

.feature-title-text {
    color: #ffb6b9;
}

.feature-number {
    font-size: 2rem;
    font-weight: bold;
    color: #756b52;
    margin-right: 1px;
    font-family: 'Josefin Sans', sans-serif;
}

.feature-title-img {
    width: 15px;
    height: auto;
    margin: 0 1px;
}

.feature-content {
    background-color: #ffffff;
    padding: 0;
    margin: 0;
    border-radius: 10px;
    height: auto;
}

.feature-content img {
    width: 100%;
    height: auto;
    border-radius: 10px 10px 0 0;
    margin-bottom: 15px;
    object-fit: contain;
}

.feature-description {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #756b52;
    text-align: left;
    margin: 0;
    padding: 0 10px 20px;
}

.notice-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.notice-icon {
    width: 60px;
    height: auto;
    flex-shrink: 0;
}

.notice-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #756b52;
    margin: 0;
}

/* スマホ表示時のセクション02見出し */
/* タブレット対応 */
@media (max-width: 1024px) {
    .card-text {
        font-size: 1.8rem;
    }
    
    .card-amount {
        font-size: 4.2rem;
    }
}

/* スマホ対応 */
@media (max-width: 768px) {
    
.section-02 {
    padding: 40px 0 40px 0;
}

    .section02-title {
        margin-bottom: 40px;
    }
    
    .pc-size-kazu2 {
        font-size: 3.5rem;
    }

    .card-amount {
        top: calc(33% - 20px);
        font-size: 2.2rem;
        color: #ffb6b9;
        left: 8vw;
        transform: none;
    }
    
    .card-text {
        top: calc(18% - 15px);
        left: 49%;
        font-size: 1.5rem;
    }
    
    
    .section02-notice {
        margin-top: 0;
    }
    
    .section-03 .section-title img {
        margin: 20px auto 0 auto;
    }
    
    .section03-content {
        flex-direction: row;
        margin: 20px auto;
        padding: 0;
    }
    
    .section03-text {
        padding-right: 0;
        flex: 1;
    }
    
    .section03-main-title {
        font-size: 1.4rem;
        line-height: 1.6;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .center-text {
        font-size: 1.5rem;
        margin-top: 0;
    }
    
    .small-text {
        font-size: 1.2rem;
    }
    
    .features-grid-4 {
        gap: 10px;
        margin: 40px auto 0 auto;
        padding: 40px 8px;
    }
    
    .features-row {
        grid-template-columns: repeat(2, 1fr) ;
        gap: 10px;
    }
    
    .feature-item-4 {
        width: 100% ;
        max-width: none ;
    }
    
    .feature-content {
        padding: 0 0 10px;
        margin: 5px 0 10px 0;
    }
    
    .feature-title {
        font-size: 1.2rem;
    }
    
    .feature-number {
        font-size: 1.5rem;
    }
    
    .feature-title-img {
        width: 15px;
    }
    
    .feature-description {
        font-size: 0.9rem;
    }
    
    .feature-content img {
        width: 100%;
        height: auto;
        border-radius: 10px 10px 0 0;
        margin-bottom: 0;
        object-fit: contain;
    }
}

/* スマホでも横並びを維持 */
@media (max-width: 480px) {
    .features-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .feature-item-4 {
        width: 100% ;
        max-width: none ;
    }
    
    .max-text {
        font-size: 1rem;
        margin-left: -5px;
    }
    
    .feature-title {
        font-size: 1.2rem;
    }
    
    .feature-number {
        font-size: 1.2rem;
    }
    
    .feature-title-img {
        width: 10px;
    }
    
    .feature-content {
        padding: 0 0 5px;
        margin: 2px 0 5px 0;
        height: 250px;
        display: flex;
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .feature-content {
        padding: 0 0 5px;
        margin: 2px 0 5px 0;
        height: 34vh;
        display: flex;
        flex-direction: column;
    }
    
    .feature-description {
        font-size: 1rem;
        padding: 5px 5px 20px;
    }
    
    .description-title {
        font-size: 1.3rem;
    }
    
    .subtitle::before {
        width: 20px;
        height: 20px;
        left: -25px;
    }
    
    .subtitle::after {
        width: 20px;
        height: 20px;
        right: -25px;
    }
    
    .heart-icon {
        position: absolute;
        top: 0;
        right: 10px;
        font-size: 1.2rem;
    }
    
    .section03-image {
        flex: 0 0 auto;
        width: 35%;
    }
    
    .section03-description {
        margin: 20px auto;
        padding: 0 10px;
    }
    
    .description-title {
        font-size: 1.4rem;
    }
    
    .description-text {
        font-size: 1rem;
    }
    .max-text {
        font-size: 1rem;
        margin-right: 0px;
    }

    .section02-cards {
        padding: 0 5px;
    }
    
    .notice-content {
        flex-direction: row;
        gap: 5px;
        align-items: center;
    }
    
    .notice-icon {
        width: 43px;
        flex-shrink: 0;
        padding-left: 5px;
    }
    
    .notice-text {
        font-size: 0.9rem;
        text-align: left;
    }
    
    .card-text {
        font-size: 1.1rem;
        padding: 6px 12px;
    }
    
    .card-amount {
        font-size: 2.5rem;
    }
}


/* 3ステップガイドセクション */
.steps-guide {
    background-color: #fff;
    padding: 60px 0 80px 0;
}

.steps-title {
    text-align: center;
    font-size: 3.5rem;
    color: #ffb6b9;
    font-weight: bold;
    margin-bottom: 2rem;
}


.steps-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0;
}

.step-item {
    border-radius: 20px;
    padding: 0 10px 70px;
    position: relative;
}

.step-header {
    text-align: center;
    margin-bottom: 0px;
    position: relative;
    top: 40px;
    z-index: 2;
}

.step-number {
    color: #ffb6b9;
    font-size: 4rem;
    font-weight: 200;
    font-family: 'Josefin Sans', sans-serif;
    display: inline-block;
}

.step-content {
    text-align: center;
    position: relative;
    z-index: 1;
}




.step-description {
    font-size: 1.5rem;
    line-height: 1.6;
    color: #756b52;
    text-align: left;
    padding: 15px 10px 30px;
    position: relative;
    z-index: 1;
}


.step-image {
    width: 100%;
    height: auto;
    padding: 1rem 1rem 0;
    margin: 1rem auto 0;
    display: block;
}




/* 背景画像の基本スタイル */
.step-bg-image {
    position: absolute;
    z-index: 0;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    top: 0;
    left: 0;
    pointer-events: none;
}

/* PC表示での背景画像制御 */
.step-bg-02 {
    display: block;
    z-index: 1;
}

.step-bg-02-sp {
    display: none;
}

/* スマホ表示での背景画像制御 */
@media (max-width: 480px) {
    .step-bg-02 {
        display: none;
    }
    
    .step-bg-02-sp {
        display: block;
        z-index: 1;
    }
    .step-item:nth-child(2) {
        border-radius: 20px;
        margin-top: 10px;
        padding: 0px 10px 0px;
        position: relative;
    }
}

/* ========================================
   セクション04: 安心ポイント
======================================== */
.section-04 {
    background-image: url(images/section04-bg.jpg);
    background-repeat: repeat;
    background-size: 35%;
    background-position: center;
    padding: 80px 0;
    overflow-x: hidden;
}

.section04-title {
    text-align: center;
    font-size: 3rem;
    color: #ff7f7e;
    font-weight: bold;
    margin-bottom: 2rem;
    position: relative;
}

.title-decoration {
    position: absolute;
    top: 70%;
    transform: translateY(-50%);
    height: 60px;
    width: auto;
}

.title-decoration.left {
    left: 15%;
}

.title-decoration.right {
    right: 15%;
}

.title-main {
    font-size: 3rem;
}

.title-sub {
    font-size: 4rem;
}

.number-highlight {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.5em;
}

.section04-title .highlight {
    color: #ff6b9d;
}

.points-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.point-item {
    background-color: white;
    border-radius: 20px;
    padding: 0;
    position: relative;
    margin-bottom: 4rem;
}

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

.point-item-01 {
    background-image: url(images/section04-point01-bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 40vh;
    padding: 0;
}


.point-number {
    width: 60px;
    height: 60px;
    background-color: #ffb6b9;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.point-item-01 .point-number,
.point-item-02 .point-number,
.point-item-03 .point-number {
    position: absolute;
    top: -15px;
    left: -15px;
    margin: 0;
    z-index: 2;
    width: 60px;
    height: 60px;
    background-image: url('images/point6-number.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    color: #756b52;
    font-size: 2rem;
    font-weight: 400;
    font-family: 'Josefin Sans', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
}

.point-content {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 6vh;
}

.point-item-01 .point-content,
.point-item-02 .point-content,
.point-item-03 .point-content {
    position: absolute;
    top: 20px;
    left: 5%;
    right: 20px;
    z-index: 2;
}

.point-item-01 {
    background-image: url(images/section04-point01-bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 43vh;
    padding: 0;
}

.point-text {
    flex: 1;
}

.point-title {
    background-image: url(images/section04-point-h3.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: white;
    padding: 0;
    border-radius: 20px 20px 0 0;
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
    min-height: 65px;
    text-align: center;
}

.point-text-image {
    flex: 1;
    padding-top: 1rem;
}

.point-item-02 .point-text-image {
    padding-top: 2rem;
}

.point-item-03 .point-text-image {
    padding-top: 3rem;
}

.point-main-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.point-description {
    font-size: 1.5rem;
    line-height: 1.6;
    color: #756b52;
    margin-bottom: 20px;
    text-align: left;
    padding-left: 0;
}

.point-subsection {
    margin-top: 20vh;
    padding-top: 20px;
}

.point-subtitle {
    background-color: #ffb6b9;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 15px;
    display: inline-block;
}

.subsection-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    padding: 20px;
}

.point-item-02 .subsection-image {
    padding: 25px 20px;
    position: relative;
    z-index: 10;
    margin-top: 4rem;
}

.point-item-03 .subsection-image {
    padding: 25px 20px;
    position: relative;
    z-index: 10;
    margin-top: 4rem;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .section-04 {
        padding: 60px 0;
    }
    
    .section04-title {
        font-size: 2.8rem;
        margin-bottom: 40px;
    }
    
    .points-container {
        padding: 0 15px;
    }
    
    
    .point-title {
        font-size: 1.2rem;
        padding: 0;
        min-height: 45px;
    }
    
    .point-description {
        font-size: 1rem;
    }
    
    .point-content {
        gap: 15px;
    }
    
    .point-item-01 .point-content,
    .point-item-02 .point-content,
    .point-item-03 .point-content {
        position: static;
        padding: 20px;
    }
    
    .point-item-01 .point-number,
    .point-item-02 .point-number,
    .point-item-03 .point-number {
        top: -10px;
        left: -10px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        align-items: center;
        justify-content: center;
    }
    
    
    .point-item {
        padding: 0;
    }
    
    .point-title {
        font-size: 1.7rem;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .section-04 {
        padding: 40px 0;
    }
    
    .title-main {
        font-size: 1.8rem;
    }
    
    .title-sub {
        font-size: 2rem;
    }
    
    .number-highlight {
        font-family: 'Josefin Sans', sans-serif;
        font-size: 1.2em;
    }
    
    .title-decoration.left {
        left: 11%;
    }
    
    img.title-decoration.left {
        width: 18px;
        height: auto;
    }
    
    .title-decoration.right {
        right: 11%;
    }
    
    img.title-decoration.right {
        width: 18px;
        height: auto;
    }
    
    .section04-title {
        font-size: 2.2rem;
        margin-bottom: 30px;
        line-height: 1.2;
    }
    
    .points-container {
        padding: 0;
    }
    
    .point-number {
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
        margin-bottom: 15px;
    }
    
    .point-title {
        font-size: 1.6rem;
        margin-bottom: 15px;
        padding-top: .5rem;
    }
    
    .point-content {
        display: flex;
        align-items: center;
        gap: 5px;
        margin-top: 1vh;
    }
    
    .point-description {
        font-size: 1rem;
        line-height: 1.6;
        color: #756b52;
        margin-bottom: 0;
        text-align: left;
        margin-left: 0;
        padding-left: 10px;
    }
    
    .point-text-image {
        flex: 1;
        padding-top: 0;
    }
    
    .point-item-02 .point-text-image {
        padding-top: 0;
    }
    
    .point-item-03 .point-text-image {
        padding-top: 0;
    }
    
    .point-item-02 .subsection-image {
        padding: 0 10px;
        position: relative;
        z-index: 10;
    }
    
    .point-item-03 .subsection-image {
        padding: 0 10px;
        position: relative;
        z-index: 10;
    }
    
    .point-subsection {
        margin-top: 0px;
        padding-top: 15px;
    }
    
    .point-item-01 .point-content,
    .point-item-02 .point-content,
    .point-item-03 .point-content {
        position: static;
        padding: 0;
    }
    
    .point-item-01 .point-number,
    .point-item-02 .point-number,
    .point-item-03 .point-number {
        top: -8px;
        left: -3px;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    
    
    .point-item-01 {
        min-height: auto;
        padding-bottom: 1rem;
    }
    
    .point-item-02 {
        min-height: auto;
        padding-bottom: 1rem;
    }
    
    .point-item-03 {
        min-height: auto;
        padding-bottom: 1rem;
    }
    
    .point-item-01 .point-content {
        position: static;
        padding: 0;
    }
    
    
    .point-subtitle {
        font-size: 0.9rem;
        padding: 6px 12px;
        margin-bottom: 10px;
    }
    
    /* セクション04 スマホ表示 */
    .section-04 {
        padding: 40px 0 60px;
    }
    
}


/* セクション05: 実績・口コミ */
.section-05 {
    padding: 80px 0;
    overflow-x: hidden;
}

.container-message {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 10px;
    background-color: white;
}

.section05-header {
    text-align: center;
    margin-bottom: 20px;
}

.section05-ttl-before {
    width: 50%;
    height: auto;
    display: block;
    margin: 0 auto 20px;
}

.section05-main-title {
    background-image: url(images/section05-message-ttl-bg.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    padding: 30px 0 65px;
    max-width: 860px;
}

.section05-main-title {
    color: #756b52;
    font-weight: bold;
    line-height: 1.4;
    margin: 0 auto 1rem;
}

.section05-title-part1 {
    font-size: 2rem;
}

.section05-title-part2 {
    font-size: 3rem;
}

.section05-subtitle {
    font-size: 1.8rem;
    color: #756b52;
    font-weight: bold;
    margin: 0;
    line-height: 1.4;
}

.section05-h2-heart {
    width: 15px;
    height: auto;
    vertical-align: middle;
    margin: 0 0 5px 5px;
}

.section05-message {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    margin-bottom: 4rem;
}

/* 体験談セクション */
.container-voice {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    background-color: #f2ffff;
}

.voice-header {
    text-align: center;
    margin-bottom: 40px;
}

.voice-title {
    text-align: center;
    font-size: 3rem;
    color: #ffb6b9;
    font-weight: bold;
    margin-bottom: 2rem;
    position: relative;
    padding-top: 3rem;
}


.voice-decoration {
    position: absolute;
    top: 63%;
    transform: translateY(-50%);
    height: auto;
}

.voice-decoration.left {
    left: 10%;
}

.voice-decoration.right {
    right: 10%;
}

.voice-container {
    gap: 30px;
}

.voice-card {
    display: flex;
    align-items: flex-start;
    gap: 5px;
    padding-bottom: 2rem;
}

.voice-image {
    flex-shrink: 0;
    width: 30%;
}

.voice-photo {
    width: 100%;
    object-fit: cover;
}

.voice-content {
    flex: 1;
}

.income-amount {
    font-size: 2.5rem;
    font-weight: bold;
    color: #64c2b5;
    display: inline-block;
    margin-right: 0px;
}

.income-number {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.5em;
    font-weight: 400;
}
.income-label {
    font-size: 1rem;
    color: #64c2b5;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    display: inline-block;
    margin-left: -5px;
}

.income-info {
    font-size: 1.5rem;
    color: #756b52;
    display: inline-block;
}
.income-divider {
    width: 100%;
    height: 1px;
    background-color: #756b52;
    margin: -15px 0 0;
}
.voice-income {
    margin-bottom: 0px;
    text-align: right;
}

.voice-info p {
    font-size: 1.5rem;
    color: #756b52;
    margin: 2px 0 1rem;
    text-align: right;
}

.voice-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #756b52;
    padding: 0 10px 2rem;
}



.woman-image {
    width: 100%;
    max-width: 250px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* レイアウト切り替え */
.pc-layout {
    display: flex;
}

.mobile-layout {
    display: none;
}

.pc-layout + .voice-text {
    display: none;
}

/* セクション05 スマホ表示 */
@media (max-width: 480px) {
    .pc-layout {
        display: none;
    }
    
    .mobile-layout {
        display: flex;
    }
    
    .pc-layout + .voice-text {
        display: block;
    }
    
    .pc-layout .voice-text {
        display: none;
    }
    
    .section-05 {
        padding: 40px 0;
    }
    
    .section05-main-title p {
        font-size: 2rem;
    }
    
    .section05-subtitle {
        font-size: 1.3rem;
    }
    
    .section05-ttl-before {
        width: 80%;
        height: auto;
        display: block;
        margin: 0 auto 0px;
    }
    
    .section05-title-part1 {
        font-size: 1.7rem;
    }
    
    .section05-title-part2 {
        font-size: 2rem;
    }
    
    .section05-message {
        border-radius: 10px;
    }
    
    /* 体験談セクション スマホ表示 */
    .voice-title {
        font-size: 2.2rem;
        margin-bottom: 30px;
        line-height: 1.2;
    }
    
    .voice-title {
        font-size: 1.8rem;
    }
    
    
    .voice-decoration.left {
        left: 11%;
    }
    
    .voice-decoration.right {
        right: 11%;
    }
    
    .voice-decoration {
        width: 13%;
        height: auto;
    }
    
    .voice-decoration.left {
        left: 3%;
    }
    
    .voice-decoration.right {
        right: 3%;
    }
    
    .voice-card {
        padding: 0;
        gap: 0px;
    }
    
    .voice-text {
        font-size: 1rem;
        padding: 0 0 2rem;
    }
    
    .section-03 .features-grid-4 {
        margin: 40px 0 0 0;
    }
    
    .step-image {
        width: 100%;
        height: auto;
        padding: 0 1rem 0;
        margin: 5px auto 0;
        display: block;
    }
    
    .point-item-02 .subsection-image {
        margin-top: 0rem;
    }
    
    .point-item-03 .subsection-image {
        margin-top: 0rem;
    }
    
    .point-item {
        margin-bottom: 2rem;
    }
    
    
    .section05-main-title {
        margin: 0 auto;
    }

    
    
    .income-amount {
        font-size: 1.7rem;
    }
    
    .income-number {
        font-family: 'Josefin Sans', sans-serif;
        font-size: 1.7em;
        font-weight: 400;
        margin-left: -5px;
    }
    
    .income-info {
        font-size: 1rem;
    }
    
    .voice-info p {
        font-size: 1rem;
    }
    
    .voice-photo {
        width: 100px;
        height: 100px;
    }
    
    /* スマホ用レイアウトでは体験談テキストをflexから外す */
    .mobile-layout .voice-card {
        flex-direction: column;
    }
    
    .mobile-layout .voice-text {
        margin-top: 15px;
        order: 3;
    }
    
    .mobile-layout .voice-content {
        order: 2;
    }
    
    .income-amount {
        font-size: 2rem;
    }
    
    .voice-text {
        font-size: 0.9rem;
    }
    
    .container-voice {
        padding: 0 10px;
    }
}


.step-line {
    text-align: center;
    margin-top: 0;
    position: relative;
    z-index: 2;
}

.step-line-image {
    width: 95%;
    height: auto;
    margin: 0 auto 10px auto;
    display: block;
    content: url('images/section03-line.png');
    position: relative;
    z-index: 2;
}



@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes twinkle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .steps-guide {
        padding: 40px 0 20px;
    }
    
    .steps-title {
        font-size: 1.7rem;
        margin-bottom: 0;
    }
    
    .steps-container {
        padding: 0;
    }
    
    .step-item {
        padding: 15px;
        margin-top: 1rem;
        margin-bottom: 0;
    }
    
    .step-content {
        flex-direction: row;
        gap: 0;
        text-align: left;
    }
    
    
    
    
    .step-header {
        top: 1rem;
    }
    
    .step-line-image {
        content: url('images/section03-line-sp.png');
    }
    
    
    
    
    
    .step-description {
        font-size: 0.9rem;
        text-align: left;
    }
    
    .step-number {
        font-size: 2.8rem;
    }
}

@media (max-width: 480px) {
    .steps-title {
        font-size: 1.5rem;
    }
    
    .step-item {
        padding: 0;
    }
    
    .step-content {
        gap: 0;
    }
    
    
    
    
    
    
    
    .step-description {
        font-size: 1rem;
        line-height: 1.6;
        color: #756b52;
        text-align: left;
        padding: 0px 10px 20px;
    }
    
    .step-item:nth-child(2) .step-description {
        padding: 0px 0px 30px;
    }
    
    .step-number {
        font-size: 2.2rem;
    }
}


/* サポートコンテナ */
.container-support {
    max-width: 900px;
    margin: 40px auto 0;
    padding: 0 20px;
    background-color: white;
}

.support-header {
    text-align: center;
    margin-bottom: 30px;
}

.support-title-image {
    width: 60%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.support-title-text {
    font-size: 3rem;
    color: #ffb6b9;
    font-weight: bold;
    text-align: center;
    margin: -5px;
}

.support-title-heart {
    width: 30px;
    height: 30px;
    vertical-align: middle;
    margin-left: 2px;
}


.support-text {
    margin-bottom: 0;
}

.support-features-and-image {
    display: flex;
    align-items: flex-end;
    gap: 0px;
    position: relative;
}

.support-text p {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #756b52;
    margin-bottom: 0;
}

.support-features {
    flex: 7;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 2;
}

.support-image {
    flex: 3;
    text-align: right;
    position: relative;
}

.support-feature-item {
    display: flex;
    align-items: center;
    gap: 3px;
    background-color: #ffc5c8;
    padding: 0;
    border-radius: 50px;
}

.support-heart {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.support-point {
    width: 85px;
    height: 85px;
    flex-shrink: 0;
}

.support-feature-text {
    font-weight: bold;
    font-size: 2rem;
    color: #fff;
    line-height: 1.2;
}

.support-large-text {
    font-size: 2rem;
}

.support-medium-text {
    font-size: 2rem;
}

.support-small-text {
    font-size: 1.7rem;
}

/* スマホ用 */
@media (max-width: 480px) {

    
    .container-support {
        padding: 0 10px;
    }
    
    
    .support-text p {
        font-size: 1rem;
    }
    
    .support-features {
        order: 2;
    }
    
    
    .woman-image {
        width: 120%;
        height: auto;
        display: block;
        margin: 0 auto;
        transform: translateX(-10px);
    }
    
    .support-title-image {
        width: 80%;
    }
    
    .support-title-text {
        font-size: 2.2rem;
    }
    
    .support-title-heart {
        width: 20px;
        height: 20px;
    }

    .support-features-and-image {
        flex-direction: row;
        gap: 0;
    }
    
    .support-features {
        order: 1;
        flex: 7;
    }
    
    .support-image {
        order: 2;
        flex: 3;
        z-index: 1;
    }
    
    
    .compact-padding {
        padding: 0;
    }
    
    .support-medium-text {
        font-size: 1.1rem;
    }
    
    .support-large-text {
        font-size: 1.2rem;
    }
    
    .support-point {
        width: 43px;
        height: 43px;
        flex-shrink: 0;
    }
    
    .support-feature-text {
        font-size: 1.1rem;
    }

    .support-small-text {
        font-size: 1rem;
    }
}




/* セクション06: ボーナス制度 */
.section-06 {
    padding: 0;
    background-color: #ffe6e6;
    overflow-x: hidden;
}

.container-bonus {
    max-width: 900px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.container-table {
    background-color: #f2ffff;
    padding: 60px;
}

.comparison-table {
    max-width: 900px;
    margin: 0 auto;
}

.table-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: -40px;
}

.table-title {
    text-align: center;
    flex: 7;
}

.table-woman {
    flex: 3;
    margin-left: 0;
}

.woman-illustration {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 10;
}

.table-title-pink {
    font-size: 4.3rem;
    color: #ffb6b9;
}

.table-title-with-decoration {
    position: relative;
    font-size: 3.3rem;
}

.table-title-small {
    font-size: 2.7rem;
}

.table-title-with-decoration::before {
    content: '';
    position: absolute;
    left: 18%;
    top: 21%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-image: url(images/section06-table-ttl-l.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.table-title-with-decoration::after {
    content: '';
    position: absolute;
    right: 18%;
    top: 21%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-image: url(images/section06-table-ttl-r.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.section06-header {
    text-align: center;
    margin-bottom: 0;
    position: relative;
}

.section06-bg {
    width: 100%;
    max-width: 800px;
    height: auto;
}

.section06-overlay {
    position: absolute;
    top: 50%;
    right: 0%;
    transform: translateY(-50%);
    width: auto;
    height: 60%;
    z-index: 2;
}

.bonus-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.bonus-item {
    flex: 1 1 calc(50% - 10px);
    min-width: 0;
    background-color: #fff;
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(255, 182, 185, 0.2);
    position: relative;
}

.bonus-title {
    font-size: 2.2rem;
    font-weight: bold;
    color: #756b52;
    margin-bottom: 0;
    line-height: 1.3;
}

.bonus-pink {
    color: #ffb6b9;
}

.bonus-amount {
    font-size: 2.2rem;
    font-weight: bold;
    color: #ffb6b9;
    margin-bottom: 15px;
    font-family: 'Josefin Sans', sans-serif;
    font-variant-numeric: tabular-nums;
}

.bonus-text {
    font-size: 1.8rem;
}

.bonus-number {
    font-size: 2.7rem;
    font-weight: 400;
    font-variant-numeric: tabular-nums;
}

.bonus-tag {
    background-color: #ffb6b9;
    color: #fff;
    padding: 0 10px;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 10px;
}

.bonus-line {
    text-align: center;
    margin: 5px 0 10px;
}

.bonus-line-pc {
    display: block;
    width: 100%;
    height: auto;
}

.bonus-line-sp {
    display: none;
    width: 100%;
    height: auto;
}

.bonus-description {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #756b52;
    margin: 0;
    text-align: left;
}

/* 比較表のスタイル */
.table-content {
    background-color: #f2ffff;
    border-radius: 15px;
    overflow: hidden;
}

.table-row {
    display: flex;
    align-items: flex-end;
}

.header-row {
    border-bottom: none;
}


.row-label {
    flex: 0 0 30%;
    padding: 20px;
    background-color: #fff;
    font-weight: bold;
    color: #756b52;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid #ffb6b9;
    border-right: 1px solid #ffb6b9;
    border-bottom: 1px solid #ffb6b9;
}

.header-row .row-label {
    background-color: transparent;
    font-size: 1.1rem;
    display: flex;
    color: transparent;
    border-left: none;
    border-right: none;
    border-bottom: none;
}

.prima-column {
    flex: 0 0 35%;
    padding: 20px;
    background-color: #fff;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.table-row .prima-column {
    background-color: #fff;
}

.table-row .other-column {
    background-color: #fff;
}

.other-column {
    flex: 0 0 35%;
    padding: 20px;
    background-color: #f8f9fa;
    text-align: center;
    font-weight: bold;
    color: #756b52;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prima-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.logo-image {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo-text {
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
}

.logo-image {
    width: 90%;
    object-fit: contain;
}

.prima-data {
    flex: 0 0 35%;
    padding: 17px;
    background-color: #fff2f3;
    text-align: center;
    font-size: 1.6rem;
    color: #756b52;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #ffb6b9;
    line-height: 1.2;
}

.table-row:nth-child(2) .prima-data {
    background-color: #ffffc9;
    padding: 18px;
}

.table-row:nth-child(2) .row-label {
    border-top-left-radius: 20px;
}

.table-row:nth-child(2) .row-label,
.table-row:nth-child(2) .prima-data,
.table-row:nth-child(2) .other-data {
    border-top: 1px solid #ffb6b9;
}

.highlight-number {
    font-size: 1.4em;
    font-weight: 400;
    font-family: 'Josefin Sans', sans-serif;
    font-variant-numeric: tabular-nums;
}

.number-highlight {
    font-weight: 400;
    font-family: 'Josefin Sans', sans-serif;
    font-variant-numeric: tabular-nums;
}

.text-highlight {
    padding: 7px;
}

.text-highlight-ari {
    padding: 10px;
}

.table-row:nth-child(5) .prima-data {
    padding: 7px 22px;
    line-height: 1.2;
    font-size: 1.7rem;
}

.table-row:last-child .row-label {
    border-bottom-left-radius: 20px;
}

.table-row:last-child .other-data {
    border-bottom-right-radius: 20px;
}


.other-data {
    flex: 0 0 35%;
    padding: 9px;
    background-color: #f8f9fa;
    text-align: center;
    font-size: 1.6rem;
    color: #756b52;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid #ffb6b9;
    border-right: 1px solid #ffb6b9;
    border-bottom: 1px solid #ffb6b9;
}


.header-row .row-label {
    flex: 0 0 30%;
    background-color: #f2ffff;
}

.header-row .prima-column {
    background-color: #ffb6b9;
    flex: 0 0 35%;
    border-radius: 20px 20px 0 0;
    padding: 1.7em 20px;
}

.header-row .other-column {
    background-color: #e9ecef;
    flex: 0 0 35%;
    height: 60px;
    border-radius: 20px 20px 0 0;
}

/* スマホ用 */
@media (max-width: 768px) {
    .bonus-grid {
        gap: 10px;
    }
    
    .bonus-item {
        padding: 15px 10px;
    }
    
    .bonus-title {
        font-size: 1.5rem;
    }
    
    .bonus-text {
        font-size: 1.2rem;
    }
    
    .bonus-amount {
        font-size: 1.7rem;
        margin: -10px 0;
    }
    
    .bonus-tag {
        font-size: 1rem;
        margin-bottom: 5px;
    }
    
    .bonus-description {
        font-size: 1rem;
    }
    
    .container-bonus {
        margin: 0 auto 40px;
        padding: 0 10px;
    }
    
    .container-table {
        padding: 40px 20px;
    }
    
    .row-label {
        font-size: 1rem;
    }
    
    .prima-data {
        font-size: 1rem;
    }
    
    .other-data {
        font-size: 1rem;
    }
    
    .table-title-small {
        font-size: 1.7rem;
    }
    
    .table-title-with-decoration {
        font-size: 2rem;
    }
    
    .table-title-pink {
        font-size: 3rem;
    }
    
    .header-row .prima-column {
        background-color: #ffb6b9;
        flex: 0 0 36%;
        border-radius: 10px 10px 0 0;
        padding: .1rem;
    }
    
    .header-row .other-column {
        background-color: #e9ecef;
        flex: 0 0 35%;
        height: 2rem;
        border-radius: 10px 10px 0 0;
    }
    
    .row-label {
        font-size: 1.1rem;
    }
    
    .container-table {
        padding: 0px 10px 40px;
    }
    
    .table-row:nth-child(5) .prima-data {
        padding: 7px 0px;
        line-height: 1.2;
        font-size: 1.2rem;
    }
    
    .table-row:nth-child(2) .row-label {
        border-top-left-radius: 15px;
    }
    
    .table-row:last-child .row-label {
        border-bottom-left-radius: 15px;
    }
    
    .table-row:last-child .other-data {
        border-bottom-right-radius: 15px;
    }
    
    .row-label {
        padding: 10px;
    }
    
    .table-row:nth-child(2) .prima-data {
        background-color: #ffffc9;
        padding: 10px 0 5px;
        font-size: 1.5em;
    }
    
    .prima-data {
        flex: 0 0 35%;
        padding: 13px;
    }
    
    .other-data {
        flex: 0 0 35%;
        padding: 9px 0;
    }
    
    .table-row:nth-child(5) .prima-data {
        padding: 5px 0px;
        line-height: 1.2;
        font-size: 1.2rem;
    }
    
    .text-highlight-ari {
        padding: 2px;
    }
    
    .text-highlight {
        padding: 2px;
    }
    
    .table-content {
        margin-top: 0rem;
        background-color: #f2ffff;
        border-radius: 15px;
        overflow: hidden;
    }
    
    .table-title {
        text-align: center;
        flex: 6;
    }
    
    .table-woman {
        flex: 4;
        margin-left: 0;
    }
    
    .table-title-pink {
        font-size: 2.3rem;
    }
    
    .table-title-with-decoration {
        font-size: 1.7rem;
    }
    
    .table-title-with-decoration::before {
        content: '';
        position: absolute;
        left: 7%;
        top: 21%;
        transform: translateY(-50%);
        width: 1rem;
        height: 25px;
        background-image: url(images/section06-table-ttl-l.png);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }
    
    .table-title-with-decoration::after {
        content: '';
        position: absolute;
        right: 7%;
        top: 21%;
        transform: translateY(-50%);
        width: 1rem;
        height: 25px;
        background-image: url(images/section06-table-ttl-r.png);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }
    
    .row-label {
        padding: 13px 0;
        flex: 0 0 27%;
    }
    
    .header-row .row-label {
        flex: 0 0 27%;
        background-color: #f2ffff;
    }
    
    .other-data {
        font-size: 1.2em;
        flex: 0 0 37%;
        padding: 9px 0;
    }
    
    .prima-data {
        font-size: 1.2rem;
        flex: 0 0 36%;
        padding: 13px 0;
    }
    
    .header-row .other-column {
        background-color: #e9ecef;
        flex: 0 0 37%;
        height: 2rem;
        border-radius: 10px 10px 0 0;
        z-index: 2;
    }
    
    .woman-illustration {
        width: 110%;
        height: auto;
        position: relative;
        z-index: 0;
        padding-top: 3rem;
    }
}

/* よくある質問セクション */
.section-faq {
    padding: 80px 0;
    background-color: #fff;
}

.faq-title {
    text-align: center;
    font-size: 3rem;
    color: #64c2b5;
    margin-bottom: 60px;
    font-weight: bold;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-item {
    background-color: transparent;
    margin-bottom: 0;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
    border-left: none;
    border-bottom: 1px solid #64c2b5;
}

.faq-question {
    padding: 20px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: background-color 0.3s ease;
    border-bottom: none;
}

.faq-question:hover {
    background-color: transparent;
}

.faq-q {
    font-size: 2rem;
    font-weight: bold;
    color: #64c2b5;
    margin-right: 15px;
    min-width: 30px;
}

.faq-text {
    flex: 1;
    font-size: 1.5rem;
    color: #64c2b5;
    font-weight: bold;
}

.faq-icon {
    font-size: .9rem;
    color: #64c2b5;
    transition: transform 0.3s ease;
    margin-left: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 0 20px 0;
    background-color: transparent;
}

.faq-answer p {
    font-size: 1.2rem;
    color: #756b52;
    line-height: 1.6;
    margin: 0;
}

/* スマホ表示 */
@media (max-width: 768px) {
    .section-faq {
        padding: 60px 0;
    }
    
    .faq-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .faq-list {
        padding: 0;
    }
    
    .faq-question {
        padding: 10px 0;
    }
    
    .faq-q {
        font-size: 1.1rem;
        margin-right: 0;
        min-width: 25px;
    }
    
    .faq-text {
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 0 15px 0;
    }
    
    .faq-answer p {
        font-size: 1rem;
    }
}

/* セクション08 - スタッフ紹介 */
.section-08 {
    background-color: #ffeded;
    padding: 80px 0;
    overflow-x: hidden;
}

.staff-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.staff-title {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.staff-title-bg {
    width: 60%;
    height: auto;
    display: block;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .staff-container {
        padding: 0 10px;
    }
    
    .staff-title-bg {
        width: 80%;
        height: auto;
        display: block;
        margin: 0 auto;
    }
    
    .staff-title {
        text-align: center;
        margin-bottom: 20px;
        position: relative;
    }
}

.staff-title-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-60%, -50%);
    font-size: 2.5rem;
    color: #756b52;
    font-weight: bold;
    margin: 0;
    z-index: 2;
}

.staff-content {
    text-align: center;
    position: relative;
}

.staff-slider {
    position: relative;
    overflow: hidden;
    max-width: 600px;
    margin: 0 auto;
}

.staff-slider-container {
    display: flex;
    transition: transform 0.5s ease;
    width: 500%; /* 5枚のスライド（3枚 + 2枚クローン） */
}

.staff-card {
    background-color: #fff;
    margin: 0; /* 余白を完全に削除 */
    position: relative;
    flex: 0 0 20%; /* 5枚のカードを横並び */
    width: 20%; /* 明示的に幅を設定 */
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #ffb6b9;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 4rem;
    height: 4rem;
    font-size: 2.2rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    z-index: 10;
    display: flex; /* PCでも表示 */
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background-color: #ff6b9d;
}

.prev-btn {
    left: 5%;
}

.next-btn {
    right: 5%;
}

.staff-photo {
    position: relative;
    margin-bottom: 0;
}

.staff-image {
    width: 100%;
    height: auto;
    display: block;
}

.staff-role-tag {
    position: absolute;
    top: 10px;
    right: 20px;
    background-color: #ffb6b9;
    color: #fff;
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: bold;
}

.staff-info {
    text-align: left;
    padding: 30px;
    font-size: 1.3rem;
}

@media (max-width: 768px) {
    .staff-info {
        text-align: left;
        padding: 10px;
        font-size: 1rem;
    }
}

.staff-nickname {
    color: #756b52;
    font-weight: bold;
    margin-bottom: 0;
}

.staff-achievement {
    color: #756b52;
    margin-bottom: 20px;
}

.highlight-achievement {
    color: #ffb6b9;
    font-weight: bold;
}

.staff-comment {
    margin-top: 20px;
}

.comment-title {
    color: #ffb6b9;
    font-size: 1.5em;
    font-weight: bold;
    margin: 0 0 10px 0;
}

.comment-text {
    color: #756b52;
    line-height: 1.6;
    margin: 0;
}

/* スマホ表示 */
@media (max-width: 768px) {
    .section-08 {
        padding: 60px 0;
    }
    
    .staff-title-text {
        font-size: 2rem;
        transform: translate(-70%, -50%);
    }
    
    .staff-card {
        max-width: 80%;
    }
    
    .staff-image {
        width: 100%;
    }
    
    .comment-title {
        font-size: 1.3rem;
        margin: 0;
    }
    
    .comment-text {
        font-size: 1rem;
    }
    
    .prev-btn {
        left: 3%;
    }
    
    .next-btn {
        right: 3%;
    }
    
    .slider-btn {
        width: 1.5rem;
        height: 1.5rem;
        font-size: 1.8rem;
    }
    
    .staff-slider {
        overflow: hidden;
        max-width: 90%;
    }
    
    .staff-slider-container {
        width: 500%;
    }
    
    .staff-card {
        flex: 0 0 20%;
        margin: 0; /* スマホでは余白なし */
        max-width: 100%;
    }
    
    .prev-btn {
        left: 0%;
    }
    
    .next-btn {
        right: 0%;
    }
    
    .slider-btn {
        width: 1.7rem;
        height: 1.7rem;
        font-size: 1.7rem;
    }
}

/* セクション09 - オーナーからのメッセージ */
.section-09 {
    background-color: #fff;
    padding: 60px 0;
    overflow-x: hidden;
}

.owner-message-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.owner-message-title {
    text-align: center;
    margin: 0 0 1rem;
    position: relative;
    padding-right: 28%;
}

.owner-message-title::before {
    content: '';
    position: absolute;
    left: 11%;
    top: 20%;
    height: 5rem;
    width: 4rem;
    background-image: url('images/section09-ttl-l.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.owner-message-title::after {
    content: '';
    position: absolute;
    right: 33%;
    top: 20%;
    height: 5rem;
    width: 4rem;
    background-image: url('images/section09-ttl-r.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.owner-message-title-text {
    font-size: 2.5rem;
    color: #756b52;
    font-weight: bold;
    margin: 0;
    display: inline-block;
    position: relative;
    z-index: 2;
}

.owner-image {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20%;
    height: auto;
    z-index: 1;
}

.owner-message-content {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.owner-message-bg {
    width: 100%;
    height: auto;
    display: block;
}

.owner-message-text {
    position: absolute;
    top: 50%;
    left: 60%;
    transform: translate(-50%, -50%);
    color: #756b52;
    line-height: 1.95;
    font-size: 1.7rem;
    width: 100%;
    text-align: left;
}

.owner-message-text p {
    margin-bottom: 3rem;
}

.owner-message-text p:last-of-type {
    margin-bottom: 0;
}


.highlight-text {
    color: #ffb6b9;
    font-weight: bold;
}

.highlight-underline {
    color: #756b52;
    font-weight: bold;
    position: relative;
}

.highlight-underline::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #ffb6b9;
    z-index: -1;
}

.confidence-text {
    color: #93dad7;
    font-weight: bold;
}

.owner-signature {
    position: absolute;
    bottom: 3%;
    right: -2%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
}

.owner-signature-image {
    width: 80%;
    height: auto;
}

/* スマホ表示 */
@media (max-width: 768px) {
    .section-09 {
        padding: 40px 0;
    }
    
    .owner-message-container {
        max-width: 900px;
        margin: 0 auto;
        padding: 0 10px;
    }
    
    .owner-message-title-text {
        font-size: 2rem;
    }
    
    .owner-image {
        width: 25%;
    }
    
    .owner-message-title::before {
        left: -3%;
        width: 3rem;
        height: 4rem;
    }
    
    .owner-message-title::after {
        right: 25%;
        width: 3rem;
        height: 4rem;
    }
    
    .owner-message-title-text {
        font-size: 1.8rem;
    }
    
    .owner-message-text {
        font-size: 1rem;
        line-height: 1.5;
        top: 48.5%;
        left: 54%;
    }
    
    .owner-message-text p {
        margin-bottom: 1.5rem;
    }
    
    .owner-signature {
        bottom: 2%;
        right: -45%;
    }
    
    .owner-signature-image {
        width: 55%;
    }
}

/* セクション07 - アクセス情報 */
.section-07 {
    background-color: #fff;
    position: relative;
    overflow-x: hidden;
}

.section-07-top {
    width: 100%;
    text-align: center;
}

.top-image {
    width: 100%;
    height: auto;
    display: block;
    background-image: url(images/section07-top.png);
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-position: center;
}

.section-07-content {
    padding: 0;
    background-color: #fff;
}

.section-07-content .container {
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-07-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.section07-title-text {
    text-align: center;
}

.main-title {
    font-size: 3.5rem;
    font-weight: bold;
    color: #756b52;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.small-text {
    font-size: 0.7em;
}

.number-font {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.5em;
    font-variant-numeric: tabular-nums;
}

.small-walk {
    font-size: 0.8em;
}

.station-info {
    position: relative;
    display: inline-block;
}

.station-badge {
    max-width: 250px;
    height: auto;
    display: block;
}

.station-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    line-height: 1.6;
    width: 100%;
}

.girl-image {
    position: relative;
    text-align: center;
    flex: 1;
}

.girl-img {
    height: auto;
    display: block;
    margin: 0 auto;
}


.section-07-photo {
    width: 100%;
    text-align: center;
    padding: 0 20px;
    max-width: 900px;
    margin: -20px auto 0;
    position: relative;
    z-index: 10;
}

.street-photo {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.section-07-description {
    padding: 10px 0 60px;
    background-color: #fff;
}

.section07-description-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #756b52;
    text-align: left;
    margin: 0;
}

.highlight-pink {
    color: #ffb6b9;
    font-weight: bold;
}

.privacy-note {
    font-size: 1rem;
    color: #756b52;
    text-align: right;
    margin: 0;
}

/* セクション07 - スマホ表示 */
@media (max-width: 768px) {
    .section-07-content {
        padding: 0;
    }
    
    .section-07-content .container {
        flex-direction: row;
        gap: 15px;
        padding: 0 0 0 10px;
    }
    
    .section-07-left {
        gap: 0;
    }
    
    .main-title {
        font-size: 1.5rem;
        text-align: center;
        line-height: 1.5;
        margin-bottom: 1rem;
    }
    
    .section07-title-text {
        text-align: left;
        flex: 1;
    }
    
    .station-badge {
        max-width: 110px;
    }
    
    .station-info {
        position: relative;
        display: inline-block;
        margin-left: 20%;
    }
    
    .station-text {
        position: absolute;
        top: 55%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: #fff;
        font-size: 1.3rem;
        font-weight: bold;
        text-align: center;
        line-height: 1.3;
        width: 100%;
    }
    
    .girl-img {
        text-align: right;
        width: 100%;
        margin-right: 0;
    }
    
    .section-07-photo {
        padding: 0 15px;
        margin: -10px auto 0;
    }
    
    .section-07-description {
        padding: 5px 0 60px;
        background-color: #fff;
    }
    
    .section07-description-text {
        font-size: 1rem;
        padding: 0 0 10px;
    }
    
    .privacy-note {
        font-size: 0.9rem;
        padding: 0;
    }
}

/* セクション10 - 応募・面接の流れ */
.section-10 {
    background-color: #b2edea;
    padding: 0;
    overflow-x: hidden;
}

.application-flow-container {
    max-width: 900px;
    margin: 0 auto 60px;
}

/* 面接に必要なものコンテナ */
.required-items-container {
    background-color: #fff5f5;
    padding: 40px 0 30px 0;
    margin: 40px 0 0 0;
    width: 100%;
    position: relative;
    min-height: 410px;
}

.required-items-frame {
    position: absolute;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 500px;
    height: auto;
    z-index: 1;
}

.required-items-header {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.required-items-title {
    font-size: 2rem;
    font-weight: bold;
    color: #756b52;
    margin: -10px 0 0;
}

.required-items-icon {
    width: 35px;
    height: auto;
    margin-top: -10px;
}

.required-items-subtitle {
    position: absolute;
    top: 26%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.2rem;
    font-weight: bold;
    color: #ffb6b9;
    text-align: center;
    margin: 0;
    z-index: 2;
}

.required-items-list {
    position: absolute;
    top: 41%;
    left: 58%;
    transform: translateX(-50%);
    list-style: none;
    padding: 0;
    margin: 0;
    width: 40%;
    z-index: 2;
}

.required-items-list li {
    font-size: 1.3rem;
    color: #756b52;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.required-items-list li::before {
    content: '・';
    position: absolute;
    left: 0;
    color: #756b52;
    font-weight: bold;
}

/* スマホ対応 */
@media (max-width: 768px) {
    .section-10 {
        padding: 0;
    }
    
    .application-flow-container {
        max-width: 900px;
        margin: 0 10px 40px;
    }
    
    .required-items-container {
        padding: 20px 0 20px 0;
        margin: 0;
        width: 100%;
        min-height: 42vh;
    }
    
    .required-items-frame {
        position: absolute;
        top: 6vh;
        left: 50%;
        transform: translateX(-50%);
        width: 95%;
        max-width: 500px;
        height: auto;
        z-index: 1;
    }
    
    .required-items-list li {
        margin-bottom: 0;
    }
    
    .required-items-title {
        font-size: 1.5rem;
    }
    
    .required-items-subtitle {
        font-size: 1.8rem;
    }
    
    .required-items-list {
        width: 85%;
    }
    
    .required-items-list li {
        font-size: 1.1rem;
    }
}

.section10-header {
    text-align: center;
    margin-bottom: 20px;
}

.section10-title {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 0;
    font-weight: bold;
    padding-top: 3rem;
}

.section10-subtitle-image {
    width: 80%;
    height: auto;
}

.steps-flow {
    max-width: 800px;
    margin: 0 auto;
}

.step-flow-item {
    background-color: #fff;
    border-radius: 15px;
    padding: 30px;
    margin: 30px 20px;
    position: relative;
}

.step-flow-header {
    text-align: center;
    margin-bottom: 0;
}

.step-flow-image {
    max-width: 200px;
    width: 100%;
    height: auto;
}

.step-flow-line {
    margin: 5px 0;
}

.step-line-pc {
    display: block;
    width: 95%;
    margin: 0 auto;
}

.step-line-sp {
    display: none;
}

.step-flow-title {
    font-size: 2rem;
    color: #756b52;
    margin: 0;
    font-weight: bold;
}

.step-flow-title .small-text {
    font-size: 0.8em;
}

.step-flow-content {
    display: block;
}

.step-flow-photo {
    width: 100%;
    margin: 0;
    text-align: center;
}

.step-photo {
    width: 100%;
    height: auto;
    border-radius: 10px;
    padding: 0 20px;
}

.step-flow-text {
    text-align: left;
    padding: 20px;
}

.step-flow-text p {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #756b52;
    margin: 0;
}

.step-arrow {
    text-align: center;
    margin: 10px 0;
}

.step-arrow-image {
    display: block;
    max-width: 3rem;
    margin: 0 auto;
}

.step-arrow-last {
    text-align: center;
    margin: 50px 0 0;
}

.step4 {
    background-color: transparent;
    padding: 0;
    margin: 0 20px;
}

.step4 .step-flow-header {
    position: relative;
    text-align: center;
}

.step4 .step-flow-image {
    width: 100%;
    max-width: none;
    height: auto;
    display: block;
}

.step4 .step-flow-text {
    position: absolute;
    top: 70%;
    left: 40%;
    transform: translate(-50%, -50%);
    font-size: 3.5rem;
    font-weight: bold;
    color: #ffb6b9;
    white-space: nowrap;
}

.step4 .step-flow-text .exclamation {
    font-size: 0.7em;
}

/* スマホ対応 */
@media (max-width: 768px) {
    .section10-title {
        font-size: 2rem;
    }
    
    .section10-subtitle-image {
        width: 100%;
    }
    
    .step-arrow-last {
        text-align: center;
        margin: 20px 0;
    }
    
    .step-flow-item {
        padding: 10px;
        margin: 0;
    }
    
    .step-flow-content {
        display: block;
    }
    
    .step-flow-photo {
        width: 100%;
        margin: 10px 0;
        text-align: center;
    }
    
    .step-photo {
        padding: 10px;
    }
    
    .step-flow-title {
        font-size: 2.3rem;
    }
    
    .step-flow-text {
        padding: 10px 0;
    }
    
    .step-flow-text p {
        font-size: 1rem;
        text-align: left;
    }
    
    .step-line-pc {
        display: none;
    }
    
    .step-line-sp {
        display: block;
        width: 95%;
        margin: 0 auto;
    }
    
    .step-flow-image {
        width: 30%;
    }
    
    .step-arrow-image {
        max-width: 70px;
    }
    
    .step4 {
        border-radius: 0;
        padding: 0;
        margin: 0 0 10px;
        position: relative;
    }
    
    .step-flow-title {
        font-size: 2rem;
    }
    
    .step-arrow-image {
        max-width: 30px;
    }
    
    .step-flow-photo {
        width: 100%;
        margin: 0;
        text-align: center;
    }
    
    .step-photo {
        padding: 0;
    }
    
    .step4 .step-flow-text {
        font-size: 1.8rem;
    }
    
    .owner-message-title {
        text-align: center;
        margin: 0 0 1rem;
        position: relative;
        padding-right: 25%;
    }
    
    .owner-message-title::before {
        left: 0%;
        width: 3rem;
        height: 4rem;
    }
}

/* スムーススクロール */
html {
    scroll-behavior: smooth;
}

/* セクション11 - 特別キャンペーン */
.section-11 {
    background-color: #fff;
    padding: 60px 0;
    overflow-x: hidden;
}

.campaign-container {
    max-width: 900px;
    margin: 0 auto;
}

.section11-header {
    text-align: center;
    margin-bottom: 10px;
}

.section11-title {
    font-size: 2rem;
    color: #756b52;
    margin: 0;
    font-weight: bold;
    position: relative;
    display: inline-block;
}

.section11-title::before {
    content: '';
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 35px;
    background-image: url(images/section11-ttl-l.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.section11-title::after {
    content: '';
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 35px;
    background-image: url(images/section11-ttl-r.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.section11-subtitle {
    text-align: center;
    margin-bottom: 20px;
}

.section11-subtitle-image {
    max-width: 600px;
    width: 100%;
    height: auto;
}

.section11-offer {
    text-align: center;
    margin-bottom: 20px;
}

.section11-offer-image {
    max-width: 570px;
    width: 100%;
    height: auto;
}

.section11-buttons {
    text-align: center;
    position: relative;
}

/* セクション11専用ボタンスタイル */
.section11-buttons-pc {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.section11-line-button,
.section11-mail-button {
    display: inline-block;
}

.section11-line-button img,
.section11-mail-button img {
    width: auto;
    height: auto;
    transition: transform 0.3s ease;
}

.section11-line-button:hover img,
.section11-mail-button:hover img {
    transform: scale(1.05);
}

.section11-phone-info {
    position: absolute;
    bottom: 8%;
    left: 50%;
    transform: translateX(30px);
    z-index: 10;
    font-size: 1.2rem;
    color: #756b52;
    font-weight: bold;
}

.section11-phone-info a {
    color: #756b52;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.section11-phone-info a:hover {
    opacity: 0.8;
}

.section11-button-sp {
    display: none;
    text-align: center;
    margin-top: 20px;
}

.section11-buttons-sp {
    display: none;
    text-align: center;
    margin-top: 15px;
}

.section11-buttons-sp a {
    width: 45%;
    max-width: 150px;
}

.section11-buttons-sp img {
    width: 100%;
    height: auto;
}


.section11-line-button-sp img {
    width: 95%;
    height: auto;
}

.section11-mail-button-sp img,
.section11-tel-button-sp img {
    width: 100%;
    height: auto;
}

/* スマホ対応 */
@media (max-width: 768px) {
    .section-11 {
        padding: 40px 0;
    }
    
    .section11-title {
        font-size: 2rem;
    }
    
    .section11-title::before {
        width: 30px;
        height: 30px;
        left: -40px;
    }
    
    .section11-title::after {
        width: 30px;
        height: 30px;
        right: -40px;
    }
    
    .section11-subtitle-image {
        max-width: 90%;
    }
    
    .section11-offer-image {
        max-width: 90%;
    }
    
    .section11-buttons-pc {
        display: none;
    }
    
    .section11-phone-info {
        display: none !important;
    }
    
    .section11-button-sp {
        display: block;
        margin-bottom: 0;
    }
    
    .section11-buttons-sp {
        display: flex;
        justify-content: center;
        gap: 0px;
    }
    
    .section11-buttons-sp a {
        width: 47.5%;
        max-width: none;
    }
    
    .section11-buttons-sp img {
        width: 100%;
        height: auto;
    }
    
    .section11-line-button img,
    .section11-mail-button img {
        max-width: 90%;
        height: auto;
    }
}

/* Googleフォームセクション */
.google-form-section {
    background-color: #fff;
    padding: 0;
    margin: 40px 0;
}

.form-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: #fff;
    padding: 0;
    text-align: center;
}

.form-container iframe {
    border-radius: 10px;
    overflow: hidden;
    max-width: 100%;
    width: 100%;
}

/* Googleフォームのスクロールバーを非表示 */
.form-container iframe::-webkit-scrollbar {
    display: none;
}

.form-container iframe {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* スマホ対応 */
@media (max-width: 768px) {
    .google-form-section {
        padding: 0;
        margin: 20px 0;
    }
    
    .form-container {
        padding: 0;
        margin: 0;
    }
    
    .form-container iframe {
        height: 1000px;
    }
}

/* フッター */
.footer {
    background-color: #93dad7;
    padding: 20px 0;
    text-align: center;
    position: relative;
    z-index: 1001;
}

.footer-content {
    max-width: 900px;
    margin: 0 auto;
}

.footer-text {
    color: #fff;
    font-size: 1rem;
    margin: 0;
    font-weight: bold;
}

.footer-link {
    color: #fff;
    text-decoration: none;
    font-size: 0.8rem;
    transition: opacity 0.3s ease;
}

.footer-link:hover {
    opacity: 0.8;
}

.footer-links {
    margin-bottom: 10px;
}

.footer-separator {
    color: #fff;
    margin: 0 8px;
}

/* 固定ボタン */
.fixed-buttons {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 900px;
    padding: 10px 5px;
    display: flex;
    justify-content: center;
    gap: 5px;
    z-index: 1000;
    transition: opacity 0.3s ease-in-out;
    opacity: 1;
}

.fixed-buttons.hidden {
    opacity: 0;
}

.fixed-line-button {
    flex: 1;
    max-width: 45%;
    transition: transform 0.3s ease;
}

.fixed-mail-button,
.fixed-tel-button {
    flex: 1;
    max-width: 27.5%;
    transition: transform 0.3s ease;
}

.fixed-line-button img,
.fixed-mail-button img,
.fixed-tel-button img {
    width: 100%;
    height: auto;
}

.fixed-bottom-buttons {
    display: none;
}

.fixed-mail-button-mobile,
.fixed-tel-button-mobile {
    display: none;
}

.fixed-line-pc {
    display: block;
}

.fixed-line-sp {
    display: none;
}

.fixed-line-button:hover,
.fixed-mail-button:hover,
.fixed-tel-button:hover {
    transform: scale(1.05);
}

/* スマホ表示での固定ボタン */
@media (max-width: 768px) {
    .fixed-buttons {
        padding: 8px 3px;
        gap: 3px;
        width: 98vw;
        max-width: 100vw;
        flex-direction: column;
        align-items: center;
    }
    
    .fixed-line-pc {
        display: none;
    }
    
    .fixed-line-button {
        width: 90%;
        max-width: 350px;
        margin-bottom: 5px;
    }
    
    .fixed-mail-button,
    .fixed-tel-button {
        display: none;
    }
    
    .fixed-bottom-buttons {
        display: flex;
        justify-content: center;
        gap: 5px;
        width: 99%;
    }
    
    .fixed-mail-button-mobile,
    .fixed-tel-button-mobile {
        display: block;
        flex: 1;
        max-width: 45%;
    }
    
    .fixed-line-sp {
        display: block;
    }
}


