/* --- [01. 基礎設定] --- */
html {
    overflow-x: hidden;
    max-width: 100%;
}
body {
    margin: 0; padding: 0;
    background-color: #f5f5f0;
    color: #2d2d2d;
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    position: relative;
    overflow-x: hidden;
    max-width: 100%;
    -webkit-tap-highlight-color: transparent;
    scroll-behavior: smooth;
}

/* --- [02. 質感ノイズ] --- */
body::before {
    content: "";
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.04;
    pointer-events: none;
    z-index: 9998;
}

/* --- [26. ページトップボタン] --- */
.totop-button {
    position: fixed;
    right: 12px;
    /* SP幅では追従の定期お申し込みボタン（中央配置・幅240px）と横並びで重なるため、
       768px以上（別ロジックで横並びに十分な余白がある）に切り替わるまでは縦に積んで避ける */
    bottom: 20px;
    width: 58px; height: 58px;
    background-color: #ffffff;
    color: #036f07;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none; font-size: 13px; font-weight: 800; line-height: 1.2;
    z-index: 9999; opacity: 0; visibility: hidden;
    transition: 0.3s; box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.totop-button.is-show { opacity: 1; visibility: visible; }

/* --- [28. 追従ボタン] --- */
.btn-floating-order {
    position: fixed;
    bottom: 20px; left: 50%;
    transform: translateX(-50%) translateY(100px);
    width: 240px; height: 54px;
    background-color: #ffffff;
    border: 2px solid #036f07;
    color: #036f07;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none; font-weight: bold; font-size: 14.5px;
    letter-spacing: 0.15em; border-radius: 27px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3); z-index: 999;
    opacity: 0; transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease;
}
.btn-floating-order.is-active {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}
.btn-floating-order:hover {
    background-color: #036f07; color: #ffffff;
}
.btn-floating-kin {
    display: block;
    position: fixed;
    bottom: 20px;
    right: calc(50% + 130px);
    height: 62px;
    width: auto;
    opacity: 0;
    z-index: 999;
    transition: opacity 0.4s ease;
    animation: kinBob 2.4s ease-in-out infinite;
}
.btn-floating-kin.is-active {
    opacity: 1;
}
.btn-floating-bg {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 94px;
    background-color: #036f07;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.08);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 998;
}
.btn-floating-bg.is-active {
    opacity: 1;
}
@keyframes kinBob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* --- [29. TOPイメージ] --- */
.hero-top {
    padding: 48px 35px 40px;
    box-sizing: border-box;
    text-align: center;
}
.hero-title-img {
    width: 75%;
    display: block;
    margin: 0 auto;
}
.hero-title-img--sp {
    margin-top: 30px;
}
.hero-title-img--pc {
    display: none;
}
.hero-lead-img {
    width: 42%;
    display: block;
    margin: 30px auto;
}
.hero-top-image {
    width: 65%;
    display: block;
    margin: 40px auto 20px;
}
.hero-top-note {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #2d2d2d;
    letter-spacing: 0.04em;
    line-height: 1.6;
    margin: 0 -15px;
}

/* --- [30. コンテンツセクション] --- */
.content-section {
    background-color: #ffffff;
    margin: 0px 0 0;
    padding: 36px 35px 48px;
    box-sizing: border-box;
}
.content-section.bg-gray {
    margin-top: 0;
}
.content-section-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 550;
    font-size: clamp(18px, 5.5vw, 26px);
    color: #036f07;
    margin: 25px 0 25px;
    letter-spacing: 0em;
    line-height: 1.5;
    text-align: center;
    border: 2px solid #036f07;
    padding: 16px 20px;
    box-sizing: border-box;
    white-space: nowrap;
    background-color: #f5f5f0;
}
.content-section.bg-gray .content-section-title {
    background-color: #ffffff;
}

.section-nav {
    margin-bottom: 60px;
}

/* --- [31. セクション見出し] --- */
.section-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 32px 40px 0;
    padding: 0 0 12px;
    border-bottom: 1px solid #036f07;
    text-decoration: none;
}
.section-heading::before {
    content: '';
    display: block;
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    background-color: #036f07;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(3,111,7,0.2);
}
.section-heading h2 {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: clamp(16px, 4vw, 22px);
    color: #036f07;
    margin: 0;
    letter-spacing: 0em;
    line-height: 1.4;
    flex: 1;
}
.section-heading::after {
    content: '›';
    font-size: 22px;
    color: #036f07;
    opacity: 0.5;
    margin-left: auto;
    transition: opacity 0.2s ease, transform 0.2s ease;
    line-height: 1;
}
.section-heading:hover::after {
    opacity: 1;
    transform: translateX(4px);
}
.section-heading:hover {
    border-bottom-color: #036f07;
    background-color: rgba(3,111,7,0.04);
}

/* --- [33. 注意事項ブロック] --- */
.notice-block {
    margin: 20px 0 15px;
    padding: 20px 0 0;
    border-top: 1px solid #f0f0eb;
    box-sizing: border-box;
}
.notice-block-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #036f07;
    margin: 0 0 14px;
}
.notice-block ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.notice-block ul li {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #555;
    line-height: 1.4;
    letter-spacing: 0.04em;
    padding-left: 1em;
    text-indent: -1em;
}
.notice-block ul li::before { content: '・'; }
.notice-block ul li + li { margin-top: 8px; }

/* --- [32. キッカケメッセージ] --- */
.quote-message {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #036f07;
    letter-spacing: 0.02em;
    line-height: 1.9;
    margin: 40px 0 0;
    padding: 20px 35px;
    background-color: #f5f5f0;
    border-radius: 12px;
    box-sizing: border-box;
    text-align: left;
    position: relative;
}
.quote-message::after {
    content: '';
    position: absolute;
    right: 32px;
    bottom: -18px;
    width: 0;
    height: 0;
    border-left: 18px solid transparent;
    border-right: 0 solid transparent;
    border-top: 20px solid #f5f5f0;
}
.ookunonde-img {
    display: block;
    position: absolute;
    right: 0px;
    bottom: -90px;
    width: 55%;
    z-index: 2;
}

/* --- [34. 共通リビールアニメーション] --- */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- [35. ページレイアウト] --- */
main { padding-top: 60px; }
.bg-gray { background-color: #f5f5f0; }

/* --- [36. 画像ユーティリティ] --- */
.img-full { width: 100%; display: block; }
.img-full--mb { margin-bottom: 20px; }
.img-full--mb24 { margin-bottom: 24px; }
.img-full--mb32 { margin-bottom: 32px; }
.img-center-88 { width: 70%; display: block; margin: 0 auto 30px; position: relative; left: 30px; }

/* 「10回目〜」テキストの背面に画像を重ねる */
.tenth-text-overlay {
    position: relative;
}
.tenth-text-overlay .img-10times {
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(-50%, -50%);
    width: 80%;
    margin: 0;
    opacity: 0.15;
    z-index: 0;
}
.tenth-text-overlay .text-zen-body {
    position: relative;
    z-index: 1;
}

/* --- [37. 本文テキスト] --- */
.text-zen-body {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    line-height: 2;
    letter-spacing: 0em;
    margin: 0;
}
.text-zen-body--mt { margin: 110px 0 0; }

/* SPのみ: 「10回ごと」セクションで画像と本文の順序を入れ替え */
#tenth-delivery-section {
    display: flex;
    flex-direction: column;
}
@media (max-width: 767px) {
    #tenth-delivery-section {
        padding-top: 30px;
    }
}
#tenth-delivery-section .content-section-title { order: 1; }
#tenth-delivery-section .tenth-text-overlay { order: 2; }
#tenth-delivery-section .img-center-88 { order: 3; }
#tenth-delivery-section .text-zen-body--note { order: 4; }
#tenth-delivery-section .quotes-wrapper { order: 5; }
#tenth-delivery-section .text-zen-body--mt { order: 6; }
.section-intro {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #2d2d2d;
    line-height: 2.2;
    letter-spacing: 0.0em;
    margin: 20px 0;
    text-align: center;
}
.example-label {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #036f07;
    letter-spacing: 0.06em;
    margin: 0px 0 0;
    padding: 12px 0;
    border-top: 1px solid #036f07;
    border-bottom: 1px solid #036f07;
    text-align: center;
}

/* --- [38. STEPカード] --- */
.step-box {
    position: relative;
    background-color: #ffffff;
    padding: 24px 24px 28px;
    box-sizing: border-box;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    border-radius: 12px;
    overflow: hidden;
    margin: 0;
}
.step-box--first { margin-top: 24px; }
.step-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 8px 0 20px;
    padding-right: 90px;
    padding-bottom: 14px;
    border-bottom: 1px solid #036f07;
}
.step-header--noribbon { padding-right: 0; }
.step-label {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    background-color: #036f07;
    border-radius: 50%;
    margin: 0;
}
.step-label-num {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    color: #ffffff;
    font-size: 20px;
    letter-spacing: 0;
}
.step-label-caption {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #036f07;
    letter-spacing: 0.15em;
    display: block;
    margin: 0 0 2px;
}
.step-date-badge {
    position: absolute;
    top: 0;
    right: 24px;
    background-color: #036f07;
    padding: 6px 14px 8px;
    border-radius: 0 0 8px 8px;
}
.step-date-text {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.02em;
    line-height: 1;
    white-space: nowrap;
}
.step-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #2d2d2d;
    letter-spacing: 0.04em;
    white-space: nowrap;
    margin: 0;
}
.step-body {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #2d2d2d;
    line-height: 1.6;
    letter-spacing: 0em;
    margin: 0 0 20px;
}
.step-arrow {
    text-align: center;
    color: #036f07;
    font-size: 42px;
    margin: 0;
    padding: 16px 0;
    line-height: 1;
}
.cycle-list {
    margin: 0 0 20px;
    padding: 0;
    list-style: none;
}
.cycle-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 0;
    border-bottom: 1px solid #e5ede5;
}
.cycle-list li:last-child { border-bottom: none; padding-bottom: 0; }
.cycle-num {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #036f07;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cycle-name {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #2d2d2d;
    display: block;
    margin-bottom: 3px;
}
.cycle-sub {
    font-size: 13px;
    color: #777;
    display: block;
    line-height: 1.6;
}
.step-note {
    background-color: #fafaf6;
    border: 1px solid #036f07;
    border-radius: 8px;
    padding: 14px 16px;
    box-sizing: border-box;
}
.step-note-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0;
    color: #036f07;
    margin: 0 0 8px;
}
.step-note-body {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    letter-spacing: 0;
    margin: 0;
}

/* --- [38b. カード縦書き見出し] --- */
.card-heading-vertical {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin: 0 0 16px;
    padding-bottom: 30px;
    border-bottom: 1px solid #036f07;
}
.card-heading-vertical--muted {
    border-bottom-color: #666;
}
.card-heading-vertical__img {
    display: block;
    width: 250px;
}

/* --- [39. 白カード] --- */
.card {
    background-color: #ffffff;
    padding: 44px 24px;
    box-sizing: border-box;
    margin: 0 0 32px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    border-radius: 12px;
    border: 2px solid #036f07;
}
.card--last { margin-bottom: 0; border-color: #666666; }
.card-heading {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #036f07;
    margin: 0 0 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid #036f07;
}
.card-heading--muted { color: #888; border-bottom-color: #ddd; }
.card-heading-lg {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #2d2d2d;
    margin: 0 0 20px;
    padding-bottom: 12px;
    border-bottom: 1px dotted #036f07;
}
.card-heading-callout {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 19px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #036f07;
    margin: 30px 0 20px;
    padding: 14px 8px 14px;
    background-color: #f0f7f0;
    border: 1px solid #036f07;
}
.card-note {
    background-color: #fafaf6;
    border: 1px solid #036f07;
    border-radius: 8px;
    padding: 14px 16px;
    box-sizing: border-box;
}
.card-note-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0;
    color: #036f07;
    margin: 0 0 6px;
}
.card-note-body {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    letter-spacing: 0;
    margin: 0;
}

/* --- [40. 変更リスト] --- */
.change-list { margin: 0 0 20px; padding: 0; list-style: none; }
.change-list li {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #2d2d2d;
    line-height: 1.8;
    letter-spacing: 0.0em;
    padding: 10px 0 10px 28px;
    border-bottom: 1px solid #f0f0eb;
    position: relative;
}
.change-list li:last-child { padding-bottom: 0; border-bottom: none; }
.change-list li::before {
    content: '✓';
    position: absolute;
    left: 0; top: 10px;
    color: #036f07;
    font-weight: 700;
}
.cannot-list { margin: 0 0 20px; padding: 0; list-style: none; }
.cannot-list li {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #2d2d2d;
    line-height: 1.8;
    letter-spacing: 0.0em;
    padding: 10px 0 10px 28px;
    border-bottom: 1px solid #f0f0eb;
    position: relative;
}
.cannot-list li:last-child { padding-bottom: 0; border-bottom: none; }
.cannot-icon { position: absolute; left: 0; top: 10px; font-size: 14px; }
.card-sub-note {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #666;
    letter-spacing: 0.02em;
    margin: 0 0 12px;
    white-space: nowrap;
}
.card-etc {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    color: #666666;
    letter-spacing: 0.04em;
    margin: 0;
}

/* --- [41. 手順リスト] --- */
.procedure-list { margin: 0 0 20px; padding: 0; list-style: none; }
.procedure-item {
    background-color: #ffffff;
    border: 2px solid #d5e8d5;
    border-radius: 12px;
    padding: 18px;
}
.procedure-item + .procedure-item { margin-top: 12px; }
.procedure-row {
    display: flex;
    align-items: center;
    gap: 14px;
}
.procedure-badge {
    flex-shrink: 0;
    width: 36px; height: 36px;
    background-color: #036f07;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: #ffffff;
}
.procedure-main {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #2d2d2d;
    line-height: 1.6;
    letter-spacing: 0.02em;
    display: block;
}
.procedure-sub {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #666;
    line-height: 1.6;
    display: block;
    margin-top: 8px;
}
.procedure-note {
    font-family: 'Noto Sans JP', sans-serif;
    display: block;
    background-color: #f5f5f0;
    border-radius: 6px;
    margin-top: 10px;
    padding: 10px 12px;
    font-size: 13px;
    font-weight: 400;
    color: #888;
    line-height: 1.6;
}
.footnote {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 12px;
    color: #888;
    line-height: 1.8;
    letter-spacing: 0.04em;
    margin: 0;
}

/* --- [42. 決済エラーセクション] --- */
.error-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #2d2d2d;
    line-height: 1.8;
    letter-spacing: 0.04em;
    margin: 0 0 8px;
}
.error-body {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #2d2d2d;
    line-height: 1.6;
    letter-spacing: 0em;
    margin: 40px 0 32px;
}
.error-footer {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #666;
    line-height: 1.9;
    letter-spacing: 0.04em;
    margin: 0;
    padding-top: 20px;
    border-top: 1px solid #e8e8e0;
}
.payment-error-img {
    width: 50%;
    display: block;
    margin: 30px auto 30px;
}

/* --- [43. 申し込みボタン] --- */
.btn-container {
    padding: 0 35px;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.form-btn {
    width: 100%;
    height: 60px;
    max-width: 320px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s;
    border-radius: 30px;
}
.form-btn:hover { opacity: 0.8; }
.btn-green { background-color: #036f07; color: #ffffff; }

/* ==========================================================
   レスポンシブ対応
   768px : タブレット
   1024px: デスクトップ
========================================================== */

.br-pc-only {
    display: none;
}
.br-tablet-only {
    display: none;
}

/* ---- 768px: タブレット ---------------------------------------- */
@media (min-width: 768px) {
    .br-pc-only {
        display: inline;
    }

    /* PC: 「10回目〜」テキストブロックをタイトル直下にまとめて配置 */
    #tenth-delivery-section {
        display: flex;
        flex-direction: column;
    }
    #tenth-delivery-section .tenth-text-overlay {
        order: 2;
    }
    #tenth-delivery-section .img-center-88 {
        order: 3;
        z-index: 0;
    }
    #tenth-delivery-section .text-zen-body--note {
        order: 4;
        z-index: 1;
    }

    /* ヒーロー: 2カラム（テキスト左 / 画像右） */
    .hero-top {
        padding: 60px 80px 52px;
        display: grid;
        grid-template-columns: 1fr 42%;
        grid-template-rows: auto auto;
        align-items: center;
        column-gap: 40px;
        text-align: left;
    }
    .hero-top-text {
        grid-column: 1;
        grid-row: 1;
        text-align: left;
    }
    .hero-top-note {
        grid-column: 1;
        grid-row: 2;
        margin: 0 0 0 12.5%;
        font-size: 18px;
        text-align: left;
        padding-top: 0px;
    }
    .hero-top-image {
        grid-column: 2;
        grid-row: 1 / 3;
        width: 100%;
        margin: 20px 0 0 -60px;
    }
    .hero-title-img--sp {
        display: none;
    }
    .hero-lead-img {
        width: 35%;
        margin-top: 50px;
        margin-left: 12.5%;
    }
    .hero-title-img--pc {
        display: block;
    }

    /* セクションナビ: 2×2グリッド */
    .section-nav {
        display: grid;
        grid-template-columns: 1fr 1fr;
        padding: 0 40px;
        margin: 0px 0 0;
        gap: 15px;
    }
    .section-nav .section-heading {
        margin: 0;
        padding: 16px 12px;
        border-bottom: 1px solid #036f07;
    }
    .section-nav .section-heading:nth-child(odd) {
        border-right: 1px solid rgba(3,111,7,0.2);
    }
    .section-nav .section-heading:nth-child(n+3) {
        border-top: none;
    }

    /* コンテンツセクション: 余白拡大 */
    .content-section {
        margin-top: 60px;
        padding: 48px 80px 60px;
    }

    /* タイトル折り返し許可 */
    .content-section-title {
        white-space: normal;
        width: fit-content;
        margin: 25px auto 50px;
        padding-left: 50px;
        padding-right: 50px;
    }
    .img-center-88 {
        width: 50%;
        left: 0;
        top: 0;
        margin: 30px auto;
    }
    .tenth-text-overlay .img-10times {
        width: 60%;
        top: 120%;
        left: 10%;
        transform: translate(-50%, -50%);
    }
    .text-highlight-green {
        font-weight: bold;
        color: #036f07;
    }
    .section-intro {
        font-size: 25px;
    }
    .example-label {
        font-size: 25px;
        margin-left: 150px;
        margin-right: 150px;
    }

    /* STEPグリッド: 1列（縦積み） */
    .step-items-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        align-items: stretch;
        margin-top: 24px;
    }
    .step-items-grid .step-box--first {
        margin-top: 0;
        z-index: 0;
    }
    .step-items-grid .step-box--first > img {
        width: 35% !important;
        position: absolute;
        right: 40px;
        bottom: 30px;
        z-index: 1;
    }
    .step-items-grid img[alt="STEP02 お届け予告メール"] {
        width: 40% !important;
    }
    .step-items-grid img[alt="STEP03 注文確定"] {
        width: 40% !important;
        margin-top: 0 !important;
        margin-bottom: 40px !important;
    }
    .step-items-grid img[alt="STEP04 発送"] {
        width: 50% !important;
    }
    .step-items-grid img[alt="STEP05 商品のお届け"] {
        width: 50% !important;
        margin: 0 auto !important;
    }
    /* 矢印を非表示にしてグリッド外に出す */
    .step-items-grid .step-arrow {
        display: none;
    }
    .br-sp-only {
        display: none;
    }

    /* 各STEP BOX内: 1カラム */
    .step-items-grid .step-box {
        display: grid;
        grid-template-columns: 1fr;
        align-items: start;
        margin-left: 150px;
        margin-right: 150px;
        padding: 70px 70px 70px;
    }
    .step-items-grid .step-box > * {
        grid-column: 1;
    }
    .step-items-grid .step-box--02,
    .step-items-grid .step-box--03,
    .step-items-grid .step-box--04,
    .step-items-grid .step-box--05 {
        grid-template-columns: 1fr 200px;
        column-gap: 20px;
    }
    .step-items-grid .step-box--02 .step-header,
    .step-items-grid .step-box--02 .step-note,
    .step-items-grid .step-box--03 .step-header,
    .step-items-grid .step-box--03 .step-note,
    .step-items-grid .step-box--04 .step-header,
    .step-items-grid .step-box--04 .step-note,
    .step-items-grid .step-box--05 .step-header,
    .step-items-grid .step-box--05 .step-note {
        grid-column: 1 / -1;
    }
    .step-items-grid .step-box--02 img,
    .step-items-grid .step-box--03 img,
    .step-items-grid .step-box--04 img,
    .step-items-grid .step-box--05 img {
        grid-column: 2;
        width: 85% !important;
        margin: 0 auto !important;
        align-self: end;
    }
    .step-items-grid .step-box--02 img {
        width: 90% !important;
        padding-bottom: 15px;
    }
    .step-items-grid .step-box--03 img,
    .step-items-grid .step-box--04 img {
        padding-bottom: 30px;
    }
    .step-items-grid .step-box--02 .step-body,
    .step-items-grid .step-box--03 .step-body,
    .step-items-grid .step-box--04 .step-body,
    .step-items-grid .step-box--05 .step-body {
        padding-left: 15px;
    }
    .step-body {
        margin: 30px 0 30px;
    }
    .step-date-badge {
        right: 74px;
    }
    .step-date-text {
        font-size: 24px;
    }
    .step-title {
        font-size: 24px;
    }
    .text-zen-body--mt {
        margin: 90px 0 0;
    }
    .card {
        padding: 44px 40px;
    }

    /* カード: まだ縦並びのまま（タブレットでは幅が狭いため） */

    /* 引用メッセージ: 横並び */
    .quotes-wrapper {
        display: flex;
        gap: 24px;
        margin-top: 40px;
    }
    .quotes-wrapper .quote-message {
        flex: 1;
        margin-top: 0px;
        border: 2px solid #036f07;
    }
    .quotes-wrapper .quote-message::before {
        content: '';
        position: absolute;
        right: 30px;
        bottom: -20px;
        width: 0;
        height: 0;
        border-left: 20px solid transparent;
        border-right: 0 solid transparent;
        border-top: 22px solid #036f07;
    }
    .ookunonde-img {
        right: 0px;
        bottom: -150px;
        width: 42%;
        z-index: auto;
    }
    /* .quotes-wrapper .quote-message::after {
        display: none;
    } */

    /* ボタン: 中央寄せ・幅制限 */
    .btn-container {
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }
    .btn-floating-order {
        width: 260px;
        left: auto;
        right: 86px;
        bottom: 10px;
        box-shadow: none;
        transform: translateY(100px);
    }
    .btn-floating-order.is-active {
        transform: translateY(0);
    }
    .btn-floating-bg {
        left: auto;
        right: 0;
        bottom: 0;
        width: 425px;
        height: 78px;
        border-radius: 0;
        background-color: #04530a;
        box-shadow: 0 8px 24px rgba(4,83,10,0.35);
    }
    .btn-floating-kin {
        display: block;
        position: fixed;
        bottom: 12px;
        right: 362px;
        height: 92px;
        width: auto;
        opacity: 0;
        z-index: 1000;
        transition: opacity 0.4s ease;
        animation: kinBob 2.4s ease-in-out infinite;
    }
    .btn-floating-kin.is-active {
        opacity: 1;
    }
    .totop-button {
        right: 16px;
        bottom: 10px;
        box-shadow: none;
    }
}

/* ---- 768px〜1023px: タブレットのみ -------------------------------------- */
@media (min-width: 768px) and (max-width: 1023px) {
    .br-tablet-only {
        display: inline;
    }
    #shipping-section {
        margin-top: 0;
    }
    #payment-error-section {
        margin-top: 0;
    }
    .btn-container {
        margin-top: 40px;
    }
    .text-zen-body {
        text-align: center;
    }
    .hero-top {
        grid-template-columns: 1fr 36%;
        column-gap: 20px;
    }
    .hero-top-note {
        font-size: 14px;
        margin-left: 5%;
    }
    .hero-lead-img {
        width: 60%;
        margin-top: 30px;
        margin-left: 5%;
        margin-bottom: 20px;
        padding-bottom: 0;
    }
    .hero-title-img {
        width: 90%;
        margin-left: 5%;
        margin-right: 0;
    }
    .hero-top-image {
        width: 102%;
        margin-left: -10px;
    }
    .section-nav {
        padding-left: 40px;
        padding-right: 40px;
        gap: 10px;
    }
    .section-nav .section-heading {
        padding: 12px 10px;
    }
    .section-nav .section-heading h2 {
        font-size: 16px;
    }
    .example-label {
        margin-left: 45px;
        margin-right: 45px;
    }
    .step-items-grid .step-box {
        margin-left: 45px;
        margin-right: 45px;
        padding-left: 50px;
        padding-right: 50px;
    }
    .step-items-grid .step-box--first > img {
        width: 30% !important;
    }
    #tenth-delivery-section .text-zen-body--mt {
        width: 77%;
        margin-top: 50px;
        text-align: left;
    }
    .ookunonde-img {
        width: 55%;
        right: -40px;
        bottom: -186px;
    }
    .step-body {
        margin-top: 20px;
    }
    .step-items-grid .step-box--05 .step-body .br-pc-only {
        display: none;
    }
    .btn-floating-bg {
        left: 0;
        width: auto;
    }
    .step-items-grid .step-box--02,
    .step-items-grid .step-box--03,
    .step-items-grid .step-box--04,
    .step-items-grid .step-box--05 {
        grid-template-columns: 1fr 150px;
        column-gap: 10px;
    }
    .step-items-grid .step-box--03 img {
        width: 80% !important;
        padding-bottom: 30px;
    }
    .step-items-grid .step-box--04 img,
    .step-items-grid .step-box--05 img {
        width: 92% !important;
        padding-bottom: 30px;
    }
    .step-items-grid .step-box--02 img {
        width: 85% !important;
        padding-bottom: 30px;
    }
    .btn-floating-kin {
        bottom: 4px;
    }
    .step-items-grid .step-box--02 .step-body--full,
    .step-items-grid .step-box--03 .step-body--full {
        grid-column: 1 / -1;
        margin-top: 0;
        font-size: 14px;
    }
    .payment-error-img {
        width: 40%;
    }
    .step-items-grid .step-box--03 .step-title .br-sp-only {
        display: inline;
    }
    #teiki-change-section {
        padding-left: 40px;
        padding-right: 40px;
    }
    .cards-row {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        align-items: start;
        column-gap: 16px;
    }
    .cards-row .card {
        margin-bottom: 0;
    }
    .cards-row .card--last {
        margin-bottom: 0;
    }
    .cards-row .card-heading-vertical {
        margin-bottom: 0;
        height: 190px;
        box-sizing: content-box;
        align-items: flex-start;
    }
    .cards-row .card {
        padding-left: 24px;
        padding-right: 24px;
    }
    .card-sub-note {
        padding-top: 10px;
        font-size: 17px;
        letter-spacing: 0.04em;
    }
}

/* ---- 1024px: デスクトップ -------------------------------------- */
@media (min-width: 1024px) {

    /* 超ワイドモニターで背景・コンテンツが際限なく伸びないよう、ページ全体に上限幅を設定 */
    main {
        max-width: 1080px;
        margin-left: auto;
        margin-right: auto;
    }

    #shipping-section {
        margin-top: 0;
    }
    .ookunonde-img {
        width: 55%;
        right: -140px;
        bottom: -250px;
    }
    .step-items-grid .step-box--02 {
        grid-template-columns: 1fr;
        z-index: 0;
    }
    .step-items-grid .step-box--03 {
        grid-template-columns: 1fr 150px;
        column-gap: 10px;
    }
    .step-items-grid .step-box--02 .step-body:not(.step-body--full) {
        padding-right: 200px;
    }
    .step-items-grid .step-box--02 img {
        grid-column: auto;
        width: 25% !important;
        position: absolute;
        top: 150px;
        right: 70px;
        padding-bottom: 0;
    }
    .step-items-grid .step-box--03 img {
        width: 80% !important;
        padding-bottom: 30px;
    }
    .step-items-grid .step-box--02 .step-body--full,
    .step-items-grid .step-box--03 .step-body--full {
        grid-column: 1 / -1;
        margin-top: 0;
        font-size: 14px;
    }

    /* コンテンツ最大幅（各セクションの内側余白でコンテンツを中央配置） */
    .hero-top,
    .content-section {
        padding-left: max(60px, calc((100% - 1080px) / 2));
        padding-right: max(60px, calc((100% - 1080px) / 2));
    }
    #teiki-change-section {
        padding-left: 45px;
        padding-right: 45px;
    }
    #tenth-delivery-section,
    #payment-error-section,
    #shipping-section,
    #cancellation-section,
    #return-exchange-section {
        padding-left: 240px;
        padding-right: 240px;
    }

    /* ヒーロー: ガター・余白をデスクトップ用に拡大 */
    .hero-top {
        grid-template-columns: 1fr 36%;
        column-gap: 64px;
        padding-top: 80px;
        padding-bottom: 64px;
    }

    /* セクションナビ: 4列一行 */
    .section-nav {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        margin: -10px 0 0;
        padding-left: max(30px, calc((100% - 1100px) / 2));
        padding-right: max(30px, calc((100% - 1100px) / 2));
        gap: 0;
    }
    .section-nav .section-heading {
        margin: 0;
        padding: 12px 14px 14px;
        border-bottom: 2px solid #036f07;
        border-right: 1px solid rgba(3,111,7,0.25);
    }
    .section-nav .section-heading:last-child {
        border-right: none;
    }
    /* 768pxの odd ルールをリセット */
    .section-nav .section-heading:nth-child(odd) {
        border-right: 1px solid rgba(3,111,7,0.25);
    }
    .section-nav .section-heading:nth-child(4n) {
        border-right: none;
    }
    .section-nav .section-heading::after {
        display: none;
    }
    .section-nav .section-heading h2 {
        font-size: clamp(12px, 1.05vw, 18px);
        line-height: 1.4;
    }

    /* STEPグリッド: 1列（tablet設定を引き継ぎ・gap拡大） */
    .step-items-grid {
        gap: 28px;
    }

    /* カード: 横並び + subgrid で見出し下ボーダー位置を揃える */
    .cards-row {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        align-items: start;
        column-gap: 32px;
    }
    .cards-row .card {
        margin-bottom: 0;
    }
    .cards-row .card--last {
        margin-bottom: 0;
    }
    .cannot-icon {
        font-size: 16px;
    }
    .card-sub-note {
        padding-top: 10px;
        text-align: center;
    }
    .cards-row .card-heading-vertical {
        margin-bottom: 0;
        height: 220px;
        box-sizing: content-box;
        align-items: flex-start;
    }
    .card-heading-vertical__img {
        width: 300px;
    }

    /* 引用メッセージ: gap拡大 */
    .quotes-wrapper {
        gap: 32px;
    }
    .form-btn {
        font-size: 17px;
        margin-top: 40px;
    }
    .btn-floating-order {
        width: 300px;
        height: 58px;
        right: 90px;
        font-size: 18px;
    }
    .totop-button {
        width: 58px;
        height: 58px;
        font-size: 14px;
    }
    .btn-floating-kin {
        right: 406px;
        height: 88px;
    }
    .btn-floating-bg {
        left: 0;
        width: auto;
        height: 82px;
        border-radius: 0;
    }
    .payment-error-inner {
        display: flex;
        align-items: center;
        gap: 40px;
        margin-top: 28px;
    }
    .payment-error-img {
        width: 25%;
        flex-shrink: 0;
        margin: 0;
    }
    .error-body {
        margin: 20px 0 32px;
    }
    .payment-error-text {
        flex: 1;
        min-width: 0;
    }
}
