/* ==========================================================================
   01. DESIGN SYSTEM & RESET (共通リセット＆モダンな配色・余白定義)
   ========================================================================== */
:root {
    --clr-primary: #34495e;   /* Slate Gray / ボタン・タイトルアクセント */
    --clr-secondary: #b39d82; /* Warm Taupe / 飾り線・外枠など */
    --clr-accent: #8e7c68;    /* Muted Bronze / サブテキスト・アイコン */
    --clr-black: #1a1a1a;     /* Charcoal Black / 本文テキスト */
    --clr-gray: #5d6d6e;      /* Light Slate Gray / 補足テキスト */
    --clr-white: #ffffff;
    --clr-bg-box: #fcfbfa;    /* プレーンな背景付きボックス用 */
    --clr-bg-stripe: #f5f2ed; /* セクションの背景切り替え用 */
    --clr-border: #e6e1da;    /* 繊細な細境界線用 */
}

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    letter-spacing: 0.06em; 
}

body { 
    font-family: sans-serif; 
    color: var(--clr-black); 
    background-color: var(--clr-white); 
    line-height: 1.8; 
    font-size: 15px; 
}

/* 高級感を演出するセリフ体フォント指定 */
h2, h3, .btn-primary, .benefit-number, .faq-q-icon, .faq-category-title { 
    font-family: serif; 
}

/* ==========================================================================
   02. LAYOUT & COMMON COMPONENTS (共通セクション・ボタン)
   ========================================================================== */
.section-event { 
    padding: 64px 24px; 
    max-width: 600px; 
    margin: 0 auto; 
}

@media (min-width: 768px) { 
    .section-event { max-width: 800px; padding: 64px 40px; } 
}

/* 引き算の美学を意識したミニマルな章タイトル */
.sec-title { 
    font-size: 22px; 
    font-weight: 700; 
    text-align: center; 
    margin-bottom: 40px; 
}

@media (min-width: 768px) { 
    .sec-title { font-size: 28px; } 
}

.sec-title::after { 
    content: ''; 
    display: block; 
    width: 40px; 
    height: 1px; 
    background: var(--clr-secondary); 
    margin: 16px auto 0; 
}

/* 2カラムグリッド（PCで横並び） */
.grid-2col { 
    display: grid; 
    grid-template-columns: 1fr; 
    gap: 24px; 
}

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

/* コンテキストに溶け込む上質なボタン・CTAエリア */
.btn-primary { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    width: 100%; 
    height: 56px; 
    background-color: var(--clr-primary); 
    color: var(--clr-white); 
    text-decoration: none; 
    font-weight: 700; 
    font-size: 16px; 
    border-radius: 12px; 
    transition: background-color 0.3s; 
}

.btn-primary:hover { 
    background-color: var(--clr-black); 
}

.mid-cta { 
    margin-top: 40px; 
    text-align: center; 
    background: var(--clr-bg-box); 
    padding: 24px; 
    border-radius: 12px; 
    border: 1px solid var(--clr-secondary); 
}

.cta-lead { 
    font-weight: 700; 
    font-size: 18px; 
    margin-bottom: 16px; 
}

@media (min-width: 768px) { 
    .cta-lead { font-size: 22px; } 
}

/* ==========================================================================
   03. BENEFIT (この見学会で分かること)
   ========================================================================== */
.benefit-item { 
    background: var(--clr-white); 
    padding: 24px; 
    border: 1px solid var(--clr-border); 
    border-radius: 4px; 
}

.benefit-header { 
    display: flex; 
    align-items: center; 
    gap: 16px; 
    margin-bottom: 16px; 
    border-bottom: 1px solid #f5f2ed; 
    padding-bottom: 8px; 
}

.benefit-number { 
    font-size: 14px; 
    color: var(--clr-white); 
    background-color: var(--clr-secondary); 
    font-weight: 700; 
    width: 32px; 
    height: 32px; 
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    border-radius: 50%; 
    flex-shrink: 0; 
}

.benefit-item h3 { 
    font-size: 18px; 
    font-weight: 700; 
    color: var(--clr-black); 
}

@media (min-width: 768px) { 
    .benefit-item h3 { font-size: 22px; } 
}

.benefit-item p { 
    font-size: 13px; 
    color: var(--clr-gray); 
    text-align: left; 
}

@media (min-width: 768px) { 
    .benefit-item p { font-size: 15px; } 
}

/* ==========================================================================
   04. HIGHLIGHT (今回のお家の見どころ / 横スクロールスライダー)
   ========================================================================== */
.sec-highlight { 
    background-color: var(--clr-bg-stripe); 
    max-width: 100% !important; 
}

.slider-outer { 
    max-width: 600px; 
    margin: 0 auto; 
}

@media (min-width: 768px) { 
    .slider-outer { max-width: 800px; } 
}

.slider-container { 
    display: flex; 
    gap: 24px; 
    overflow-x: auto; 
    scroll-snap-type: x mandatory; 
    padding-bottom: 16px; 
    scrollbar-width: thin; 
    scrollbar-color: var(--clr-secondary) transparent; 
}

.slider-container::-webkit-scrollbar { 
    height: 3px; 
    display: block; 
}

.slider-container::-webkit-scrollbar-track { 
    background: rgba(179, 157, 130, 0.15); 
}

.slider-container::-webkit-scrollbar-thumb { 
    background: var(--clr-secondary); 
    border-radius: 2px; 
}

.highlight-card { 
    flex: 0 0 82%; 
    scroll-snap-align: center; 
    background-color: var(--clr-white); 
    box-shadow: 0 10px 30px rgba(0,0,0,0.04); 
}

.highlight-img-placeholder { 
    width: 100%; 
    aspect-ratio: 16 / 9; 
    background-color: #eae5df; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-align: center; 
    font-size: 13px; 
    color: var(--clr-accent); 
}

.highlight-content { 
    padding: 24px; 
}

.highlight-content h3 { 
    font-size: 18px; 
    font-weight: 700; 
    margin-bottom: 8px; 
    color: var(--clr-primary); 
    text-align: left; 
}

@media (min-width: 768px) { 
    .highlight-content h3 { font-size: 22px; } 
}

.highlight-content p { 
    font-size: 13px; 
    color: var(--clr-gray); 
    text-align: left; 
}

/* ==========================================================================
   05. PLAN & SPEC (間取り・敷地構成・物件概要)
   ========================================================================== */
.plan-container { 
    border: 1px solid var(--clr-border); 
    background-color: var(--clr-bg-box); 
    padding: 24px; 
    margin-bottom: 24px; 
}

.plan-img-placeholder { 
    width: 100%; 
    aspect-ratio: 4 / 3; 
    background-color: #eae5df; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-align: center; 
    font-size: 13px; 
    color: var(--clr-accent); 
    margin-bottom: 24px; 
}

.spec-badge { 
    display: inline-block; 
    background-color: var(--clr-primary); 
    color: var(--clr-white); 
    padding: 4px 12px; 
    font-size: 13px; 
    font-weight: 700; 
    margin-bottom: 16px; 
}

.spec-table, .outline-table { 
    width: 100%; 
    border-collapse: collapse; 
}

.spec-table th, .spec-table td { 
    padding: 8px 0; 
    font-size: 15px; 
}

@media (min-width: 768px) { 
    .spec-table th, .spec-table td { font-size: 18px; } 
}

.spec-table th { 
    text-align: left; 
    color: var(--clr-gray); 
    width: 30%; 
    font-weight: 400; 
}

.spec-table td { 
    font-weight: 700; 
}

/* 物件概要アコーディオン定義 */
.outline-container { 
    margin-top: 24px; 
}

.outline-details { 
    border: 1px solid var(--clr-border); 
}

.outline-summary { 
    padding: 16px; 
    font-size: 13px; 
    color: var(--clr-gray); 
    cursor: pointer; 
    background-color: var(--clr-bg-box); 
    user-select: none; 
}

.outline-content { 
    padding: 24px; 
    border-top: 1px solid var(--clr-border); 
    background-color: var(--clr-white); 
    max-height: 200px; 
    overflow-y: auto; 
}

.outline-table th, .outline-table td { 
    padding: 8px; 
    font-size: 12px; 
    border-bottom: 1px solid #f1eeea; 
}

.outline-table th { 
    text-align: left; 
    background-color: #faf9f6; 
    color: var(--clr-black); 
    width: 30%; 
    white-space: nowrap; 
}

/* ==========================================================================
   06. PRICE (販売価格・お支払い例)
   ========================================================================== */
.sec-price { 
    background-color: var(--clr-bg-stripe); 
}

.price-container { 
    background-color: var(--clr-white); 
    border: 1px solid var(--clr-secondary); 
    padding: 40px 24px; 
    text-align: center; 
}

.price-main { 
    margin-bottom: 24px; 
    padding-bottom: 24px; 
    border-bottom: 1px solid var(--clr-bg-stripe); 
}

.price-label { 
    display: block; 
    font-size: 13px; 
    color: var(--clr-gray); 
    margin-bottom: 8px; 
}

.price-value { 
    font-size: 32px; 
    font-weight: 700; 
    color: var(--clr-black); 
}

.price-unit { 
    font-size: 18px; 
}

@media (min-width: 768px) { 
    .price-unit { font-size: 22px; } 
}

.monthly-pay { 
    font-size: 18px; 
    font-weight: 700; 
    color: var(--clr-accent); 
}

@media (min-width: 768px) { 
    .monthly-pay { font-size: 22px; } 
}

.text-large { 
    font-size: 28px; 
}

.price-sub { 
    font-size: 13px; 
    color: var(--clr-gray); 
    margin-top: 8px; 
}

/* ==========================================================================
   07. ACCESS (会場へのアクセス)
   ========================================================================== */
.map-container { 
    border: 1px solid var(--clr-border); 
    margin-bottom: 16px; 
}

.map-placeholder { 
    width: 100%; 
    height: 250px; 
    background-color: #f0ede9; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: var(--clr-gray); 
}

/* ==========================================================================
   08. FAQ (よくあるご質問アコーディオン)
   ========================================================================== */
.faq-accordion { 
    display: flex; 
    flex-direction: column; 
    gap: 16px; 
}

.faq-category-title { 
    font-size: 14px; 
    font-weight: 700; 
    color: var(--clr-accent); 
    margin-top: 24px; 
    margin-bottom: 8px; 
    border-left: 2px solid var(--clr-secondary); 
    padding-left: 8px; 
}

.faq-category-title:first-child { 
    margin-top: 0; 
}

.faq-details { 
    border: 1px solid var(--clr-border); 
    background-color: var(--clr-white); 
}

.faq-details[open] { 
    border-color: var(--clr-secondary); 
}

.faq-summary { 
    padding: 24px; 
    display: flex; 
    align-items: flex-start; 
    gap: 16px; 
    cursor: pointer; 
    font-weight: 700; 
    user-select: none; 
    list-style: none; 
    background-color: var(--clr-bg-box); 
}

/* 標準の三角マークを完全に打ち消し、美しく洗練されたプラスマイナス記号へ変更 */
.faq-summary::-webkit-details-marker { 
    display: none; 
}

.faq-summary::after { 
    content: '+'; 
    margin-left: auto; 
    font-family: sans-serif; 
    font-weight: 300; 
    font-size: 20px; 
    color: var(--clr-secondary); 
}

.faq-details[open] .faq-summary::after { 
    content: '−'; 
}

.faq-q-icon, .faq-a-icon { 
    font-weight: 700; 
    font-size: 18px; 
}

/* ==========================================================================
   09. GIFT (来場特典 / WEB予約特典)
   ========================================================================== */
/* セクション全体の背景 */
.sec-gift {
    padding: 64px 24px;
    background-color: #f2f5f7; 
}

/* 
   全体コンテナ
   max-widthを580pxに制限し、PCでもスマホでも綺麗な1カラムの縦長カードを維持します
*/
.gift-container {
    max-width: 580px;
    margin: 0 auto;
    background: var(--clr-white);
    border: 4px solid var(--clr-primary); /* 外枠を濃紺で引き締め */
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    position: relative;
    
    /* 【超重要】不要な flex 関連のプロパティを完全にリセットし、縦並びを強制 */
    display: block !important; 
}

/* 3連休限定トップバナー（上部に横いっぱいに広がる帯） */
.gift-top-banner {
    background: var(--clr-primary);
    color: var(--clr-white);
    text-align: center;
    padding: 14px 10px;
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 0.05em;
    width: 100%; /* 横幅いっぱいに広げる */
    box-sizing: border-box;
}
.gift-top-banner .banner-accent {
    background: #ffec00; /* アクセントイエロー */
    color: var(--clr-primary);
    padding: 2px 10px;
    border-radius: 4px;
    margin-right: 6px;
    display: inline-block;
    font-size: 14px;
}

/* メインコンテンツエリア */
.gift-body {
    padding: 40px 30px 24px;
    text-align: center;
    position: relative;
    background: var(--clr-white);
    width: 100%;
    box-sizing: border-box;
    /* 【超重要】ここも横並びにならないようブロック要素化 */
    display: block !important; 
}

/* WEB RESERVATION バッジ */
.gift-badge {
    display: inline-block;
    background: var(--clr-gray);
    color: var(--clr-white);
    font-size: 11px;
    padding: 4px 14px;
    border-radius: 20px;
    font-weight: bold;
    letter-spacing: 0.08em;
}

.gift-body h2 {
    color: var(--clr-black);
    font-size: 22px;
    margin: 16px 0 24px;
    font-weight: bold;
}

/* イメージ画像配置エリア（リンク切れ画像マークが見えている部分の調整） */
.gift-image-box {
    width: 100%;
    max-width: 400px;
    margin: 0 auto 20px;
    border-radius: 12px;
    overflow: hidden;
}
.gift-image-box img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* 中央のメイン特典カード（点線枠のエリア） */
.gift-main-card {
    background: #fffdf4; /* 薄いクリーム背景 */
    border: 2px dashed var(--clr-secondary);
    border-radius: 16px;
    padding: 24px 20px;
    margin-top: 15px;
}

.gift-target {
    font-size: 18px;
    color: var(--clr-black);
    font-weight: bold;
    margin-bottom: 8px;
}
.gift-target .highlight {
    color: #d9534f;
    font-size: 24px;
    font-weight: 900;
    margin: 0 4px;
    background: linear-gradient(transparent 65%, #ffec00 65%);
}

.gift-product {
    color: #df7385; /* ポップなピンク */
    font-size: 32px;
    font-weight: 900;
    line-height: 1.3;
    margin: 12px 0;
    letter-spacing: -0.02em;
}

/* 金額表示スタイリング */
.gift-price-display {
    display: flex;
    justify-content: center;
    align-items: baseline;
    color: var(--clr-primary);
    font-weight: bold;
    margin-top: 12px;
}
.price-num {
    font-size: 64px;
    font-family: 'Arial Black', sans-serif;
    line-height: 1;
}
.price-unit {
    font-size: 18px;
    margin-left: 6px;
    color: var(--clr-primary);
}

/* 先着10組様丸バッジ（カードの右上に配置） */
.gift-badge-limited {
    position: absolute;
    top: 25px;
    right: 20px;
    background: #d9534f;
    color: var(--clr-white);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    transform: rotate(8deg);
    z-index: 10;
}
.badge-sub {
    font-size: 12px;
    font-weight: bold;
}
.badge-main {
    font-size: 28px;
    font-weight: 900;
    color: #ffec00;
    line-height: 1;
}
.badge-unit {
    font-size: 11px;
    color: var(--clr-white);
}

/* 注意事項エリア */
.gift-notes-wrap {
    background: #fbfbfb;
    padding: 24px 30px;
    border-top: 1px dashed var(--clr-border);
    width: 100%;
    box-sizing: border-box;
}
.gift-note {
    font-size: 13px;
    color: var(--clr-gray);
    text-align: left;
    margin: 0 0 8px;
    line-height: 1.6;
}
.gift-note:last-child {
    margin-bottom: 0;
}
.gift-caption {
    font-size: 11px;
    color: #999;
    text-align: right;
    margin-top: 12px;
}

/* 改行コントロール用 */
.pc-hidden {
    display: none;
}

/* ==========================================
   スマートフォン用の微調整（画面幅580px以下）
============================================ */
@media (max-width: 580px) {
    .sec-gift {
        padding: 48px 16px;
    }
    .gift-body {
        padding: 32px 16px 20px;
    }
    .gift-top-banner {
        font-size: 14px;
    }
    .gift-body h2 {
        font-size: 18px;
    }
    .gift-product {
        font-size: 24px;
    }
    .pc-hidden {
        display: block; /* スマホ環境のみ改行を有効化 */
    }
    .price-num {
        font-size: 52px;
    }
    .price-unit {
        font-size: 15px;
    }
    .gift-badge-limited {
        width: 72px;
        height: 72px;
        top: 16px;
        right: 12px;
    }
    .badge-main {
        font-size: 24px;
    }
    .gift-notes-wrap {
        padding: 20px 16px;
    }
}


.condition-item {
    font-size: 0.9rem;
    color: #555;
    margin: 0 0 10px;
    line-height: 1.5;
    text-align: left;
}
.condition-item:last-child {
    margin-bottom: 0;
}

.gift-caption {
    font-size: 0.75rem;
    color: #999;
    text-align: right;
}

/* 改行コントロール用改行タグ */
.pc-hidden {
    display: none;
}

/* ==========================================
   レスポンシブ（タブレット・スマホ対応）
============================================ */
@media (max-width: 768px) {
    .gift-container {
        flex-direction: column; /* 縦並びに変更 */
        max-width: 100%;
    }
    .gift-visual-side {
        border-right: none;
        border-bottom: 2px dashed #4a235a;
        padding: 40px 20px;
    }
    .gift-info-side {
        padding: 40px 20px;
    }
    .gift-product {
        font-size: 2rem;
        white-space: normal; /* スマホでは折り返しを許可 */
    }
    .pc-hidden {
        display: block; /* スマホのみ改行を入れる */
    }
    .price-num {
        font-size: 3.5rem;
    }
    .gift-badge-limited {
        width: 75px;
        height: 75px;
        top: 15px;
        right: 15px;
    }
    .badge-main {
        font-size: 1.6rem;
    }
}/* 全体コンテナ（チラシの青空背景をイメージした薄いブルー系、またはお好みの背景に） */
.sec-gift {
    padding: 60px 20px;
    background: #eef7fc; 
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

/* PCでは横並び、スマホでは縦並びになるメインコンテナ */
.gift-container {
    max-width: 960px;
    margin: 0 auto;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: row; /* PCで横並び */
    overflow: hidden;
    border: 4px solid #4a235a; /* チラシのキーカラー（濃パープル）で縁取り */
}

/* ==========================================
   左側：ビジュアル＆特典アピールエリア
============================================ */
.gift-visual-side {
    flex: 1.2;
    background: #fffae6; /* チラシ内のクリーム色背景 */
    padding: 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-right: 2px dashed #4a235a;
}

/* 3連休限定吹き出し */
.gift-balloon {
    background: #4a235a; /* 濃パープル */
    color: #fff;
    font-weight: bold;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    display: inline-block;
    white-space: nowrap; /* PCでの意図しない改行を防止 */
}

/* チラシのメインとなる丸い要素の再現 */
.gift-circle-content {
    text-align: center;
    width: 100%;
}

.gift-lead {
    font-size: 1.3rem;
    font-weight: bold;
    color: #4a235a;
    margin-bottom: 10px;
    white-space: nowrap;
}

.gift-target {
    font-size: 1.4rem;
    color: #333;
    font-weight: bold;
    margin-bottom: 15px;
    white-space: nowrap;
}
.gift-target .highlight {
    color: #d9534f; /* ピンクレッド */
    font-size: 1.9rem;
    font-weight: 900;
    margin: 0 4px;
    background: linear-gradient(transparent 60%, #ffec00 60%); /* 黄色マーカー風 */
}

.gift-product {
    color: #df7385; /* サーティワンピンク */
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 15px;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

/* 金額の特大表示 */
.gift-price-display {
    display: flex;
    justify-content: center;
    align-items: baseline;
    flex-wrap: wrap;
    color: #4a235a;
    font-weight: bold;
}
.price-num {
    font-size: 4.5rem;
    font-family: 'Arial Black', sans-serif;
    line-height: 1;
}
.price-unit {
    font-size: 1.4rem;
    margin-left: 5px;
}
.present-label {
    background: #d9534f;
    color: #fff;
    font-size: 1rem;
    padding: 4px 12px;
    border-radius: 4px;
    margin-left: 10px;
    align-self: center;
    white-space: nowrap;
}

/* 先着10組様丸バッジ */
.gift-badge-limited {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #d9534f; /* ピンクレッド */
    color: #fff;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    transform: rotate(7deg);
}
.badge-sub {
    font-size: 0.9rem;
    font-weight: bold;
}
.badge-main {
    font-size: 2rem;
    font-weight: 900;
    color: #ffec00; /* 数字を黄色に */
    line-height: 1;
}
.badge-unit {
    font-size: 0.8rem;
    color: #fff;
}

/* ==========================================
   右側：情報エリア
============================================ */
.gift-info-side {
    flex: 1;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
}

.gift-header .sub-caps {
    font-size: 0.85rem;
    background: #666;
    color: #fff;
    padding: 3px 12px;
    border-radius: 4px;
    font-weight: bold;
    letter-spacing: 0.1em;
    display: inline-block;
    margin-bottom: 10px;
}
.gift-header h2 {
    font-size: 1.8rem;
    color: #333;
    font-weight: bold;
    margin: 0 0 30px;
    line-height: 1.4;
}

/* 条件リスト */
.gift-conditions {
    border-top: 1px dashed #ccc;
    border-bottom: 1px dashed #ccc;
    padding: 25px 0;
    margin-bottom: 15px;
}
.condition-item {
    font-size: 0.9rem;
    color: #555;
    margin: 0 0 10px;
    line-height: 1.5;
    text-align: left;
}
.condition-item:last-child {
    margin-bottom: 0;
}

.gift-caption {
    font-size: 0.75rem;
    color: #999;
    text-align: right;
}

/* 改行コントロール用改行タグ */
.pc-hidden {
    display: none;
}

/* ==========================================
   レスポンシブ（タブレット・スマホ対応）
============================================ */
@media (max-width: 768px) {
    .gift-container {
        flex-direction: column; /* 縦並びに変更 */
        max-width: 100%;
    }
    .gift-visual-side {
        border-right: none;
        border-bottom: 2px dashed #4a235a;
        padding: 40px 20px;
    }
    .gift-info-side {
        padding: 40px 20px;
    }
    .gift-product {
        font-size: 2rem;
        white-space: normal; /* スマホでは折り返しを許可 */
    }
    .pc-hidden {
        display: block; /* スマホのみ改行を入れる */
    }
    .price-num {
        font-size: 3.5rem;
    }
    .gift-badge-limited {
        width: 75px;
        height: 75px;
        top: 15px;
        right: 15px;
    }
    .badge-main {
        font-size: 1.6rem;
    }
}

@media (min-width: 768px) { 
    .faq-q-icon, .faq-a-icon { font-size: 22px; } 
}

.faq-q-icon { 
    color: var(--clr-primary); 
}

.faq-a-icon { 
    color: var(--clr-secondary); 
    flex-shrink: 0; 
}

.faq-question-text { 
    padding-right: 16px; 
    font-size: 15px; 
    color: var(--clr-black); 
    text-align: left; 
}

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

.faq-content { 
    padding: 24px; 
    margin: 0 24px 24px 24px; 
    color: var(--clr-black); 
    font-size: 15px; 
    background-color: var(--clr-white); 
    border-left: 2px solid var(--clr-secondary); 
}

.faq-content p { 
    display: flex; 
    align-items: flex-start; 
    gap: 16px; 
    text-align: left; 
}


@media (min-width: 768px) {
    .gift-container h2 { font-size: 24px; }
}

/* 特典金額のクリーンなレイアウト */
.gift-amount {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 32px;
    padding: 24px 0;
    border-top: 1px dashed var(--clr-border);
    border-bottom: 1px dashed var(--clr-border);
}

@media (min-width: 500px) {
    .gift-amount {
        flex-direction: row;
        gap: 16px;
    }
}

.gift-text {
    font-size: 16px;
    font-weight: 700;
    color: var(--clr-gray);
}

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

/* 数字を上品に際立たせる */
.gift-price {
    font-size: 40px;
    font-weight: 700;
    color: var(--clr-accent);
    line-height: 1;
    font-family: serif;
}

@media (min-width: 768px) {
    .gift-price { font-size: 48px; }
}

.gift-unit {
    font-size: 16px;
    font-weight: 700;
    margin-left: 4px;
    color: var(--clr-black);
}

/* 注意書きのフォントサイズを小さく抑えて美観をキープ */
.gift-note {
    font-size: 12px;
    color: var(--clr-gray);
    line-height: 1.6;
    text-align: left;
    display: inline-block;
    max-width: 480px;
}