@charset "UTF-8";

/* 全体共通設定 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
}
.pc_only { display: block; }
@media (max-width: 768px) {
    .pc_only { display: none; }
}

/* ==========================================================================
  ① ヒーローエリア（メインビジュアル）
=========================================================================== --> */

.hero_section {
    background-color: #000000;
    background-image: url('./images-new/edgexpert_reservation_hero.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    
    width: 100%;
    height: 520px; 
    
    /* ★修正・追記：上側の余白を増やして、ヘッダーに被らないようにします */
    padding-top: 110px; 
    
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 2px solid #a38446;
}

.hero_inner {
    width: 100%;
    max-width: 1200px; /* ★ここで最大幅を1200pxにガチッと制限 */
    margin: 0 auto;    /* 画面の中央に配置 */
    padding: 0 60px;   /* 左側の文字位置を内側に寄せるクッション余白 */
    display: flex;
    justify-content: flex-start; /* 文字自体は左側に配置 */
    align-items: center;
    height: 100%;
}

/* 左側のテキストエリア */
.hero_content {
    max-width: 550px;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.9); /* 背景と被っても文字をハッキリ見せる影 */
}

.hero_sub_catch {
    font-size: 1.25rem;
    color: #a38446;
    font-weight: bold;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}
.hero_main_title {
    font-size: 2.8rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.3;
    letter-spacing: 0.05em;
    margin-bottom: 25px;
}

/* ゴールドのリボン・バッジ */
.hero_badge_wrap {
    margin-bottom: 20px;
}
.badge_gold {
    display: inline-block;
    background: linear-gradient(135deg, #bf953f 0%, #fcf6ba 25%, #b38728 50%, #fbf5b7 75%, #aa771c 100%);
    color: #000000;
    font-weight: bold;
    padding: 8px 25px;
    font-size: 1.1rem;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(191, 149, 63, 0.4);
}
.hero_caption {
    font-size: 1.05rem;
    color: #cccccc;
    letter-spacing: 0.05em;
}

/* ヒーローエリアのレスポンシブ（スマホ表示） */
@media (max-width: 768px) {
    .hero_section {
        background-image: url('./images-new/edgexpert_reservation_hero_sp.png');
        background-position: center center;
        background-size: contain;
        height: auto;
        min-height: 400px;
        
        /* ★修正：padding-topを「130px」から「90px」に減らして、文字を上に引き上げます */
        padding: 90px 15px 40px 15px; 
    }
    
    .hero_inner {
        justify-content: center;
        padding: 0;
    }
    .hero_content {
        text-align: center;
        max-width: 100%;
        /* スマホ画像の上に文字が被って読みにくい場合は、下の半透明黒背景を活かしてください */
        /* 不要ならbackgroundの行を消しても大丈夫です */
      
        padding: 25px 20px;
        border-radius: 8px;
    }
    .hero_main_title {
        font-size: 1.8rem;
    }
    .hero_sub_catch {
        font-size: 1rem;
    }
    .badge_gold {
        font-size: 0.95rem;
        padding: 6px 15px;
    }
}

/* ==========================================================================
  ② 導入・製品コンセプトエリア
=========================================================================== --> */
.intro_section {
    background-color: #000000;
    /* 回路線の入った背景画像をセット */
    background-image: url('./images-new/image_fdaac07d.png');
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    
    width: 100%;
    padding: 80px 0;
}

.intro_inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* メイン見出し */
.intro_header {
    text-align: center;
    margin-bottom: 60px;
}
.intro_title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffffff;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}
.intro_subtitle {
    font-size: 1.4rem;
    font-weight: bold;
    color: #ffffff;
    letter-spacing: 0.05em;
}

/* 3カラム（画像・テキスト・画像）レイアウト */
.concept_grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
}
.concept_img_left,
.concept_img_right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.concept_img_left img,
.concept_img_right img {
    max-width: 100%;
    height: auto;
}
.concept_text {
    flex: 0 0 280px; /* 中央の文字エリアの幅を固定 */
    text-align: center;
}
.txt_large {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ffffff;
    letter-spacing: 0.05em;
}
.cross_mark {
    font-size: 2rem;
    color: #a38446; /* ゴールドの「×」 */
    margin: 10px 0;
    font-weight: 300;
}

/* 解説文 */
.intro_description {
    max-width: 1000px;
    margin: 0 auto 40px auto;
    text-align: justify;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #cccccc;
}

/* 区切り線 */
.intro_divider {
    border: none;
    border-top: 1px solid #555555;
    max-width: 1000px;
    margin: 0 auto 40px auto;
}

/* スペック2段組 */
.spec_list_grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto 60px auto;
}
.spec_col {
    flex: 1;
}
.spec_col ul {
    list-style: none;
}
.spec_col ul li {
    font-size: 1.05rem;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.5;
    letter-spacing: 0.03em;
}
.spec_label {
    font-weight: bold;
}

/* お問合せボタン */
.intro_btn_wrap {
    text-align: center;
}
.intro_contact_btn {
    display: inline-block;
    background: #c3a161; /* チラシに近いベージュ・ゴールド */
    color: #000000;
    font-weight: bold;
    font-size: 1.3rem;
    padding: 15px 60px;
    border-radius: 50px; /* 丸みのあるボタン */
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
    box-shadow: 0 4px 15px rgba(195, 161, 97, 0.3);
}
.intro_contact_btn:hover {
    background: #dbb775;
    transform: translateY(-2px);
}

/* ②導入エリアのレスポンシブ（スマホ対応） */
@media (max-width: 768px) {
    .intro_section {
        padding: 50px 0;
    }
    .intro_title {
        font-size: 1.8rem;
    }
    .intro_subtitle {
        font-size: 1.1rem;
    }
    .concept_grid {
        flex-direction: column;
        gap: 30px;
    }
    .concept_text {
        flex: auto;
    }
    .txt_large {
        font-size: 1.5rem;
    }
    .spec_list_grid {
        flex-direction: column;
        gap: 0;
        padding: 0 10px;
    }
    .spec_col ul li {
        font-size: 0.95rem;
    }
    .intro_contact_btn {
        font-size: 1.1rem;
        padding: 12px 30px;
        width: 100%;
        max-width: 340px;
    }
}

/* ==========================================================================
  ③ テクノロジーの深掘りエリア
=========================================================================== --> */
/* セクション全体を白背景に設定 */
.tech_section {
    background-color: #ffffff;
    width: 100%;
    padding-bottom: 80px;
}

/* 3-1. タイトルエリア（edgexpert_reservation_hero2.pngを背景に敷く） */
.tech_header_wrap {
    width: 100%;
    margin-top: 40px; /* ★新しく追加：これで画像の上に白い隙間が空きます！ */
    background-color: #000000;
    background-image: url('../images-new/edgexpert_reservation_hero2.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 40px 0;
    margin-bottom: 50px;
}

.tech_header_inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: left; /* チラシ通り左寄せ */
}
.tech_header_sub {
    font-size: 1.4rem;
    font-weight: bold;
    color: #ffffff;
    letter-spacing: 0.05em;
    margin-bottom: 5px;
}
.tech_header_title {
    font-size: 2.4rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 0.03em;
    line-height: 1.3;
}

/* 3-2. コンテンツ内枠（1200px） */
.tech_inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ゴールドグラデーションの帯 */
.tech_gold_bar {
    /* 高級感のあるゴールド系グラデーション（金属的な質感を表現） */
    background: linear-gradient(135deg, #bf953f 0%, #fcf6ba 25%, #b38728 50%, #fbf5b7 75%, #aa771c 100%);
    border-radius: 4px;
    padding: 25px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    box-shadow: 0 4px 15px rgba(191, 149, 63, 0.2);
    margin-bottom: 50px;
}
.gold_bar_left {
    color: #000000; /* ゴールド背景の上なので文字は黒 */
}
.gold_bar_left h3 {
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 8px;
    letter-spacing: 0.03em;
}
.gold_bar_left p {
    font-size: 1.1rem;
    font-weight: bold;
}
.gold_bar_right {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}
.gold_bar_right img {
    height: 80px; /* アイコンの適切な高さ（適宜調整してください） */
    width: auto;
}

/* 基盤の内部解説グラフィック画像 */
.tech_main_graphic {
    width: 100%;
    text-align: center;
}
.tech_main_graphic img {
    max-width: 100%;
    height: auto;
    /* 白背景の上でグラフィックを引き締めるための軽いシャドウ */
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1); 
    border-radius: 6px;
}

/* ③テクノロジー深掘りエリアのレスポンシブ（スマホ対応） */
@media (max-width: 768px) {
    .tech_section {
        padding-bottom: 50px;
    }
    .tech_header_wrap {
        padding: 30px 15px;
        margin-bottom: 30px;
    }
    .tech_header_inner {
        padding: 0;
        text-align: center;
    }
    .tech_header_title {
        font-size: 1.5rem;
    }
    .tech_header_sub {
        font-size: 1rem;
    }
    .tech_inner {
        padding: 0 20px;
    }
    .tech_gold_bar {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 15px;
        margin-bottom: 30px;
    }
    .gold_bar_left h3 {
        font-size: 1.2rem;
    }
    .gold_bar_left p {
        font-size: 0.95rem;
    }
}
/* 画像の下の説明文スタイル */
.tech_graphic_desc {
    max-width: 1000px; /* 1200px幅の中で少し内側に収めて読みやすくします */
    margin: 40px auto 0 auto; /* 画像との間に40pxのマージンを確保 */
    padding: 0 10px;
}
.tech_graphic_desc p {
    font-size: 1.1rem;
    color: #333333; /* 白背景なので、目に優しい濃いグレーの文字にします */
    line-height: 1.8;
    text-align: justify; /* 両端を綺麗に揃えます */
    letter-spacing: 0.03em;
}

/* スマホ用の調整 */
@media (max-width: 768px) {
    .tech_graphic_desc {
        margin-top: 25px;
    }
    .tech_graphic_desc p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

/* ==========================================================================
  3-3. AI演算性能（TOPS）での比較エリア
=========================================================================== --> */
.tops_compare_area {
    max-width: 1000px;
    margin: 60px auto 0 auto;
}

/* 比較タイトルの茶色い帯 */
.tops_header_bar {
    background-color: #c49a45; /* チラシのくすんだゴールド・ブラウン */
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 4px 4px 0 0;
}
.tops_header_bar h3 {
    font-size: 1.8rem;
    color: #ffffff;
    font-weight: bold;
    letter-spacing: 0.05em;
}
.tops_note {
    font-size: 0.9rem;
    color: #ffffff;
}

/* TOPS解説バッジ */
.tops_badge_wrap {
    text-align: center;
    margin: 25px 0;
}
.tops_info_badge {
    display: inline-block;
    background-color: #f0f0f0;
    color: #333333;
    font-size: 0.95rem;
    font-weight: bold;
    padding: 6px 25px;
    border-radius: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* グラフと画像の5カラムグリッド */
.tops_graph_grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-end; /* 下揃えにしてグラフを上に伸ばす */
    background-color: #f7f7f7;
    padding: 30px 20px;
    border-radius: 4px;
    gap: 15px;
    margin-bottom: 40px;
    border-bottom: 2px solid #ddd;
}

.graph_item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* グラフバーの土台（高さを揃える） */
.bar_wrap {
    width: 100%;
    height: 180px; /* グラフバーの最大高さ */
    display: flex;
    align-items: flex-end;
    margin-bottom: 15px;
    border-bottom: 1px solid #ccc;
}

/* グラフバー自体の共通設定 */
.graph_bar {
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 2px 2px 0 0;
    transition: height 0.5s ease-out;
}
.graph_bar span {
    font-size: 0.95rem;
    font-weight: bold;
    color: #ffffff;
    padding: 5px;
    white-space: nowrap;
}

/* 各グラフの色（チラシの再現） */
.item_gold_light .graph_bar {
    background: linear-gradient(to top, #bf953f, #fcf6ba);
}
.item_gold_light .graph_bar span { color: #000; }

.item_gold .graph_bar {
    background: #b38728;
}
.item_black .graph_bar {
    background: #000000;
}
.item_dark_gray .graph_bar {
    background: #555555;
}
.item_light_gray .graph_bar {
    background: #aaaaaa;
}
.item_light_gray .graph_bar span {
    color: #333333;
    position: relative;
    top: -25px; /* バーが低すぎるので文字を上に逃がす */
}

/* 製品画像枠 */
.product_thumb {
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}
.product_thumb img {
    max-width: 90%;
    max-height: 100%;
    object-fit: contain;
}
.product_name {
    font-size: 0.85rem;
    font-weight: bold;
    color: #333333;
    white-space: nowrap;
}

/* 黒背景のモンスタースペック解説ボックス */
.tops_black_box {
    background-color: #000000;
    color: #ffffff;
    padding: 30px 40px;
    border-radius: 4px;
    margin-bottom: 20px;
}
.tops_black_box h4 {
    font-size: 1.25rem;
    font-weight: bold;
    border-bottom: 1px solid #444;
    padding-bottom: 15px;
    margin-bottom: 15px;
    line-height: 1.4;
    letter-spacing: 0.02em;
}
.tops_black_box p {
    font-size: 1rem;
    line-height: 1.7;
    color: #dddddd;
    text-align: justify;
}

/* 注釈テキスト */
.tops_footnote {
    font-size: 0.8rem;
    color: #666666;
    line-height: 1.6;
    padding: 0 10px;
}

/* スマホ用のレスポンシブ調整 */
@media (max-width: 768px) {
    .tops_header_bar h3 {
        font-size: 1.3rem;
    }
    .tops_info_badge {
        font-size: 0.8rem;
        padding: 5px 15px;
    }
    .tops_graph_grid {
        flex-direction: column;
        align-items: stretch;
        gap: 25px;
    }
    .bar_wrap {
        height: auto;
        border-bottom: none;
        margin-bottom: 5px;
    }
    .graph_bar {
        width: 100%;
        height: 35px !important; /* スマホでは横棒グラフ風にするため高さを固定 */
        justify-content: flex-start;
        padding-left: 15px;
    }
    .item_light_gray .graph_bar span {
        top: 0;
        color: #ffffff;
    }
    .product_thumb {
        height: 60px;
    }
    .tops_black_box {
        padding: 20px;
    }
    .tops_black_box h4 {
        font-size: 1.1rem;
    }
    .tops_black_box p {
        font-size: 0.9rem;
    }
}

/* ==========================================================================
  3-4. ユニファイド・システム・メモリ解説エリア
=========================================================================== --> */
.memory_explain_area {
    max-width: 1000px;
    margin: 60px auto 0 auto;
}

/* ゴールドグラデーションの帯（上の記述をベースにマージンのみ調整） */
.memory_gold_bar {
    background: linear-gradient(135deg, #bf953f 0%, #fcf6ba 25%, #b38728 50%, #fbf5b7 75%, #aa771c 100%);
    border-radius: 4px;
    padding: 25px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    box-shadow: 0 4px 15px rgba(191, 149, 63, 0.2);
    margin-bottom: 40px;
}

/* 2カラムレイアウト（テキストと右側イラスト） */
.memory_content_grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}
.memory_lead_text {
    flex: 1;
}
.memory_lead_text h3 {
    font-size: 1.45rem;
    font-weight: bold;
    color: #000000; /* 白背景なので黒文字 */
    line-height: 1.6;
    letter-spacing: 0.02em;
    text-align: justify;
}
.memory_graphic_img {
    flex: 0 0 280px; /* イラスト画像の横幅を固定 */
    display: flex;
    justify-content: center;
    align-items: center;
}
.memory_graphic_img img {
    max-width: 100%;
    height: auto;
}

/* 黒背景の解説ボックス */
.memory_black_box {
    background-color: #000000;
    color: #ffffff;
    padding: 30px 40px;
    border-radius: 4px;
    margin-bottom: 50px;
}
.memory_black_box p {
    font-size: 1rem;
    line-height: 1.7;
    color: #dddddd;
    text-align: justify;
}

/* お問合せボタンの余白 */
.memory_btn_wrap {
    text-align: center;
    margin-bottom: 20px;
}

/* スマホ用のレスポンシブ調整 */
@media (max-width: 768px) {
    .memory_gold_bar {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 15px;
    }
    .memory_content_grid {
        flex-direction: column-reverse; /* スマホではイラストを上、テキストを下にする */
        gap: 20px;
    }
    .memory_graphic_img {
        flex: auto;
        width: 100%;
        max-width: 240px;
    }
    .memory_lead_text h3 {
        font-size: 1.15rem;
        text-align: center;
    }
    .memory_black_box {
        padding: 20px;
    }
    .memory_black_box p {
        font-size: 0.9rem;
    }
}

/* ==========================================================================
  ④ 予約・価格エリア（チラシそのまま構成）
=========================================================================== --> */
.closing_price_area {
    max-width: 1000px;
    margin: 60px auto 0 auto;
    padding-top: 40px;
    border-top: 2px solid #eaeaea;
    /* ★この1行を最後に追加してください */
    padding-bottom: 400px; 
}

/* 上段：黄色バナーエリア */
.price_banner_box {
    background: linear-gradient(135deg, #fff3cd 0%, #ffffff 100%);
    border: 1px solid #ffe8a1;
    border-radius: 4px;
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.banner_left {
    flex: 1;
    color: #000000;
}
.banner_left h2 {
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1.4;
    margin-bottom: 15px;
    letter-spacing: 0.02em;
}
.banner_note {
    font-size: 0.85rem;
    font-weight: bold;
    color: #555555;
    line-height: 1.5;
}
.banner_right {
    flex: 0 0 280px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.banner_right img {
    max-width: 130%;
    height: auto;
}

/* 中段：価格リストエリア */
.price_list_container {
    margin-bottom: 50px;
}
.price_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10px;
    border-bottom: 2px solid #000000;
}
.price_row_labels {
    display: flex;
    align-items: center;
    gap: 12px;
}
/* チラシの黒四角バッジ */
.lbl_black {
    background-color: #000000;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: bold;
    padding: 4px 8px;
    text-align: center;
    line-height: 1.3;
}
/* チラシの線囲みバッジ */
.lbl_border {
    border: 2px solid #000000;
    color: #000000;
    font-size: 0.8rem;
    font-weight: bold;
    padding: 2px 8px;
}
.model_title_text {
    font-size: 1.5rem;
    font-weight: bold;
    color: #000000;
}
.model_title_text .sub_spec {
    font-size: 1.1rem;
    color: #555555;
    font-weight: normal;
}
/* 価格の数字 */
.price_row_value {
    color: #000000;
    text-align: right;
}
.num_large {
    font-size: 2.8rem;
    font-weight: 900;
    font-family: 'Arial Black', sans-serif;
    letter-spacing: -0.02em;
    margin-right: 5px;
}
.unit_text {
    font-size: 1.1rem;
    font-weight: bold;
}

/* 下段：オプションエリア（2カラム） */
.options_grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 60px;
}
.option_box {
    flex: 1;
    border: 2px solid #000000;
    border-radius: 4px;
    overflow: hidden;
}
.option_title {
    background-color: #222222;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: bold;
    padding: 10px 20px;
    text-align: center;
    letter-spacing: 0.05em;
}
.option_body {
    padding: 20px;
}
/* 延長保証の行 */
.sub_option_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px dashed #ccc;
}
.sub_option_row:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}
.sub_opt_title strong {
    font-size: 1.1rem;
    color: #000;
    display: block;
}
.jan_code {
    display: block;
    font-size: 0.75rem;
    color: #888888;
    margin-top: 2px;
}
.sub_opt_prices p {
    font-size: 0.9rem;
    color: #333;
    text-align: right;
    margin-bottom: 4px;
}
.sub_opt_prices p span {
    margin-right: 10px;
    color: #666;
}
.sub_opt_prices p strong {
    font-size: 1.2rem;
    color: #000;
    font-family: 'Arial', sans-serif;
    margin-right: 2px;
}

/* ケーブルオプション側 */
.option_body_flex {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}
.cable_img {
    flex: 0 0 130px;
}
.cable_img img {
    max-width: 100%;
    height: auto;
}
.cable_info {
    flex: 1;
    color: #000;
}
.cable_info h5 {
    font-size: 1.05rem;
    font-weight: bold;
    margin-bottom: 2px;
}
.cable_price {
    font-size: 1rem;
    font-weight: bold;
    text-align: right;
    margin-top: 15px;
}
.cable_price strong {
    font-size: 2rem;
    font-family: 'Arial Black', sans-serif;
    margin-right: 2px;
}

/* 総合お問合せエリア */
.final_contact_box {
    background-color: #f7f7f7;
    padding: 40px;
    border-radius: 6px;
    text-align: center;
}
.final_text {
    font-size: 1.1rem;
    color: #333333;
    font-weight: bold;
    margin-bottom: 25px;
}
.final_large_btn {
    display: inline-block;
    background-color: #c3a161;
    color: #000000;
    font-weight: bold;
    font-size: 1.4rem;
    padding: 18px 60px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(195, 161, 97, 0.3);
    transition: all 0.3s;
}
.final_large_btn:hover {
    background-color: #dbb775;
    transform: translateY(-2px);
}

/* スマホ用調整 */
@media (max-width: 768px) {
    .price_banner_box {
        flex-direction: column;
        padding: 25px 20px;
        text-align: center;
    }
    .banner_left h2 {
        font-size: 1.3rem;
    }
    .banner_right {
        flex: auto;
        max-width: 200px;
    }
    .price_row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .num_large {
        font-size: 2.2rem;
    }
    .options_grid {
        flex-direction: column;
        gap: 30px;
    }
    .option_body_flex {
        flex-direction: column;
        text-align: center;
    }
    .cable_price {
        text-align: center;
    }
}