/* --- 基本設定 --- */
* {
    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;
}

.lp-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* --- PC向け基本設定 --- */
.hero-section {
    position: relative;
    width: 100%;
    /* PCの比率。画像に合わせて調整 */
    aspect-ratio: 2200 / 633;
    overflow: hidden;
    background-color: #000; /* 隙間用 */
}

/* 背景画像（imgタグ）の設定 */
.hero-section picture,
.hero-bg-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover; /* これで見切れを防ぎ、枠いっぱいに広げます */
}


.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    padding: 40px 50px; /* 余白を少し広げました */
    display: flex;
    flex-direction: column;
    justify-content: center; /* PCでは上下中央に */
    
}


.logo-img {
    width: 160px; /* ロゴ80%縮小 */
    height: auto;
}

.hero-content {
    margin-top: 20px;
    max-width: 800px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
}

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.tag {
    display: inline-block;
    background-color: #9bff00; /* 指定の黄緑 */
    color: #000; /* 文字は黒の方が見やすいです */
    padding: 4px 12px;
    font-weight: bold;
    font-size: 0.85rem;
    margin-bottom: 15px;
    text-shadow: none; /* 影なし */
}

.hero-lead {
    font-size: 0.85rem;
    font-weight: bold;
}


 

/* --- スマホ用の設定（最後に書くことで上書きする） --- */
/* --- スマホ用の設定（600px以下） --- */
@media (max-width: 600px) {
    .hero-section {
        aspect-ratio: 1 / 1; /* 正方形に固定 */
        height: auto;
    }

    .overlay {
        padding: 30px 20px;
        justify-content: flex-start; 
        align-items: center;    /* ★ロゴやコンテンツを中央に寄せる */
        text-align: center;     /* ★文字を中央寄せにする */
    }

    .logo-img {
        width: 140px;           /* スマホに合わせて少し小さめに */
        height: auto;
    }

    .hero-content {
        margin-top: 20px;
        width: 100%;
    }

    .hero-content h1 {
        font-size: 1.6rem;
        line-height: 1.3;
        margin-bottom: 15px;
    }

    .tag {
        margin: 0 auto 15px;    /* ★中央配置にするため margin: auto */
        display: inline-block;
    }

    .hero-lead {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-top: 10px;
    }
} 

/* --- GPUとは？ セクション --- */
.about-section {
    padding: 60px 40px;
    background-color: #000;
}

.section-title {
    color: #9bff00;
    font-size: 2.2rem;
    margin-bottom: 40px;
}

.about-content {
    display: flex; /* 横並び */
    gap: 50px;
    align-items: flex-start;
}

.text-content { flex: 1.4; }


.image-content {
    flex: 1.2;
    display: flex;
    justify-content: flex-end; /* 右寄せ */
    align-items: flex-start;   /* 画像が縦に引き伸ばされるのを防ぐ（重要） */
}

/* スマホ（画面幅が768px以下）の設定 */
@media (max-width: 768px) {
    .image-content {
        justify-content: center; /* 中央寄せに上書き */
        margin-top: 20px;       /* （おまけ）画像の上に少し隙間を作ると見やすくなります */
    }
}


.image-content img {
    width: 80%;  /* ここでサイズを指定 */
    height: auto;
}


/* --- 特長セクション (黒背景・余白1/3短縮) --- */
.features-section {
    padding: 40px 40px; /* 上下余白を狭く */
    background-color: #000;
}

.main-title {
    color: #fff;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 50px; /* 余白短縮 */
    position: relative;
    padding-bottom: 15px;
}

.main-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: #9bff00;
}

.feature-item {
    display: flex; /* 横並びを復活 */
    align-items: center;
    gap: 60px;
    margin-bottom: 40px; /* アイテム間を1/3に短縮 */
}

.feature-sub-title {
    color: #9bff00;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature-text { flex: 1.2; }
.feature-image { flex: 1; }
.feature-image img { width: 100%; height: auto; display: block; }

.sub-block { margin-bottom: 30px; }

/* --- 背景セクション (白背景) --- */
.background-section {
    padding: 60px 40px;
    background-color: #fff;
    color: #333;
}

.bg-main-title {
    color: #84d10b;
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.bg-lead { margin-bottom: 50px; }

.bg-item {
    display: flex; /* 横並び */
    align-items: center;
    gap: 60px;
    margin-bottom: 60px;
}

.bg-sub-title {
    font-size: 1.6rem;
    color: #000;
    margin-bottom: 15px;
}

.bg-text { flex: 1.2; }
.bg-image { flex: 1; }
.bg-image img { width: 100%; height: auto; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }

/* --- レスポンシブ対応 --- */
@media (max-width: 900px) {
    .about-content, .feature-item, .bg-item {
        flex-direction: column; /* スマホでは縦並び */
        gap: 30px;
    }
}

/* --- ラインナップセクション --- */
.lineup-section {
    padding: 80px 40px;
    background-color: #000;
}

.lineup-header {
    text-align: center;
    margin-bottom: 60px;
}

.geforce-logo {
    width: 120px;
    margin-bottom: 20px;
}

/* 各製品アイテム */
.product-item {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px;
}

.product-text { flex: 1; }
.product-image { flex: 1.2; }
.product-image img { width: 100%; height: auto; }

/* テキストスタイル */
.product-name {
    color: #9bff00; /* 指定の黄緑 */
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.product-lead {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.vram-info {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.specs-detail {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.6;
}

/* 下部ボタン */
.lineup-footer {
    text-align: center;
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.btn-specs {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid #9bff00;
    color: #9bff00;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    transition: 0.3s;
}

.btn-specs:hover {
    background-color: #9bff00;
    color: #000;
}

/* レスポンシブ */
@media (max-width: 900px) {
    .product-item {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 60px;
    }
    .lineup-footer {
        flex-direction: column;
        gap: 15px;
    }
}

/* --- 用途から選ぶセクション (白背景) --- */
.usage-section {
    padding: 80px 40px;
    background-color: #fff;
}

.usage-main-title {
    color: #000;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 15px;
}
.usage-main-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: #9bff00;
}

.usage-group { margin-bottom: 50px; }
.usage-group h3 { font-size: 1.5rem; margin-bottom: 8px; color: #000; }
.usage-lead { font-size: 0.9rem; margin-bottom: 15px; color: #000; 
font-weight: bold;}

/* グレーのカード */
.usage-card {
    background-color: #f2f2f2;
    padding: 25px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 30px;
}

/* 左：GPU白背景ボックス */
.gpu-info { flex: 0 0 180px; }
.gpu-white-box {
    background-color: #fff;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 10px;
}
.gpu-white-box img { width: 100%; height: auto; mix-blend-mode: multiply; }
.gpu-info ul { list-style: none; font-size: 0.8rem; padding-left: 10px; border-left: 3px solid #9bff00; }

/* 中央：PC画像2枚 */
.case-images { display: flex; gap: 10px; flex: 0 0 220px; }
.case-images img { width: calc(50% - 5px); height: auto; }

/* 右：導入事例詳細 */
.case-details { flex: 1; }
.case-vol { font-size: 0.75rem; color: #000; font-weight: bold; }
.case-details h4 { font-size: 0.95rem; margin: 4px 0 10px; line-height: 1.4; }
.spec-table { width: 100%; font-size: 0.75rem; border-collapse: collapse; }
.spec-table th { text-align: left; width: 80px; color: #000; font-weight: normal; padding: 2px 0; }
.spec-table td { text-align: left; width: 80px; color: #000; font-weight: normal; padding: 2px 0; }

/* 右端：詳細ボタン */
.case-action { flex: 0 0 150px; }
.btn-detail {
    display: block;
    background-color: #9bff00;
    color: #000;
    text-align: center;
    padding: 12px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 25px;
    transition: 0.3s;
}
.btn-detail:hover { background-color: #8ae600; }

/* 下部：他の事例を見るボタン */
.usage-footer { text-align: center; margin-top: 40px; }
.btn-more {
    display: inline-block;
    background-color: #9bff00;
    color: #000;
    padding: 14px 60px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    font-size: 1rem;
}

/* レスポンシブ (スマホでは縦に並べる) */
@media (max-width: 1024px) {
    .usage-card { flex-wrap: wrap; justify-content: center; }
    .gpu-info, .case-images { flex: 0 0 45%; }
    .case-details, .case-action { flex: 0 0 100%; text-align: center; }
}

/* --- 簡易GPU選定ナビ (ダークグレー背景) --- */
.gpu-navi-section {
    padding: 80px 40px;
    background-color: #333; /* ダークグレー */
    text-align: center;
}

.navi-main-title {
    color: #9bff00;
    font-size: 2rem;
    margin-bottom: 40px;
}

/* タブメニュー */
/*.navi-tabs {
    background-color: #fff;
    display: inline-flex;
    align-items: center;
    padding: 10px 40px;
    border-radius: 50px;
    margin-bottom: 30px;
    gap: 30px;
}
.tab-label { font-size: 0.85rem; color: #666; font-weight: bold; }
.tab-item { font-size: 0.9rem; color: #000; cursor: pointer; display: flex; align-items: center; gap: 5px; }
.tab-item input { accent-color: #9bff00; }

/* 白いカードエリア */
/* 白背景のメインボックス */
/*.navi-content {
    background-color: #fff;
    border-radius: 30px; /* 少し角を丸くして柔らかい印象に */
    padding: 50px 40px;
    color: #333;
    max-width: 1080px;
    margin: 0 auto;
}

/* 3枚のカード (少し明るいグレーか白にしてメリハリをつける) */
/*.case-card {
    flex: 1;
    background-color: #f9f9f9; /* カード自体の色を少し明るく */
    padding: 25px 15px;
    border-radius: 15px;
    text-align: center;
}

/* 下部ボタン (白背景の内側に配置) */
/*.navi-footer-inside {
    margin-top: 50px;
    text-align: center;
}

.btn-more-green {
    display: inline-block;
    background-color: #9bff00;
    color: #000;
    padding: 15px 80px; /* 横幅を少し広げて存在感を出す */
  /*  border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
}

.content-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}
.header-text h3 { font-size: 1.4rem; margin-bottom: 5px; }
.header-text p { font-size: 0.9rem; font-weight: bold; }

.btn-estimate {
    background-color: #9bff00;
    color: #000;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
}

/* 3カラムグリッド */
/*.case-grid {
    display: flex;
    gap: 20px;
}
.case-card {
    flex: 1;
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}
.case-title { font-size: 0.75rem; font-weight: bold; margin-bottom: 15px; }

.case-thumb {
    display: flex;
    gap: 5px;
    justify-content: center;
    margin-bottom: 15px;
}
.case-thumb img { width: 45%; height: auto; }

.btn-detail-small {
    display: inline-block;
    background-color: #9bff00;
    color: #000;
    padding: 8px 30px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.8rem;
}

/* 下部ボタン */
/*.navi-footer { margin-top: 40px; }
.btn-more-green {
    display: inline-block;
    background-color: #9bff00;
    color: #000;
    padding: 12px 60px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
}

/* スマホ対応 */
/*@media (max-width: 850px) {
    .case-grid { flex-direction: column; }
    .content-header { flex-direction: column; gap: 20px; }
    .navi-tabs { flex-wrap: wrap; border-radius: 20px; padding: 20px; }
}

/* --- 切り替えロジックの追加 --- */

/* 1. パネルを一旦すべて非表示にする */
/*.tab-panel {
    display: none;
    /* ふわっと表示させるアニメーション */
    animation: fadeUp 0.5s ease forwards;
}

/* 2. チェックされたボタンに対応するパネルを表示 */
/*.gpu-navi-section:has(#usage-rag:checked) .panel-rag { display: block; }
.gpu-navi-section:has(#usage-gen:checked) .panel-gen { display: block; }
.gpu-navi-section:has(#usage-multi:checked) .panel-multi { display: block; }

/* 3. 選択中のタブの文字を強調（任意） */
/*.tab-item:has(input:checked) span {
    font-weight: bold;
    color: #9bff00;
}

/* 4. 切り替え時のアニメーション */
/*@keyframes fadeUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ラジオボタン自体の色を固定したい場合は既存の accent-color でOKです */
/*.tab-item input { accent-color: #9bff00; }



/* --- フッター基本設定 --- */

/* スマホ対応：縦1列に並べる */
@media (max-width: 768px) {
    .footer-right {
        flex-direction: column;
    }
}
.highlight {
  color: #000;
}
/* 元の記述をこれに書き換え */
.contact-icon img {
  /* 高さを決めるのが一番バランスがとりやすいです */
  height: 2.8rem;    /* 絵文字の時より少し大きめにするならこのくらい */
  width: auto;       /* 横幅は自動で調整 */
  vertical-align: middle; /* 横のテキストと高さを合わせる */
}.main-footer {
    background-color: #001528; /* 暗いネイビー */
    color: #fff;
    padding: 80px 0 0;
    font-size: 0.85rem;
}

.main-footer .inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    gap: 60px;
}

/* 左側エリア */
.footer-left { flex: 1.5; }
.footer-logo img { width: 150px; margin-bottom: 20px; }
.footer-company-desc { line-height: 1.6; margin-bottom: 30px; color: #ccc; }

/* コンタクトボックス (白い枠) */
.contact-box {
    background-color: #fff;
    color: #333;
    padding: 30px;
    border-radius: 4px;
}
.contact-title { font-weight: bold; font-size: 1rem; border-bottom: 1px solid #ddd; padding-bottom: 10px; margin-bottom: 20px; }
.contact-title span { display: block; font-size: 1.2rem; color: #000; }

.contact-methods { display: flex; border-bottom: 1px solid #ddd; padding-bottom: 20px; margin-bottom: 20px; gap: 20px; }
.tel-box, .web-form-link { flex: 1; display: flex; gap: 15px; text-decoration: none; color: inherit; }
.web-form-link { border-left: 1px solid #ddd; padding-left: 20px; }

.contact-icon { font-size: 2rem; color: #00508a; }
.tel-number { font-size: 1.3rem; font-weight: bold; color: #000; }
.bold { font-weight: bold; color: #000; }
.small { font-size: 0.75rem; color: #666; }

.online-reserve-link { display: flex; gap: 15px; text-decoration: none; color: inherit; align-items: center; }

/* 右側：リンク集 */
.footer-divider { width: 1px; background-color: rgba(255,255,255,0.2); }
.footer-right { flex: 1; display: flex; flex-direction: column; gap: 40px; }

.link-group h3 { font-size: 1.1rem; margin-bottom: 15px; border-left: 4px solid #9bff00; padding-left: 10px; }
.link-group ul { list-style: none; }
.link-group li { margin-bottom: 10px; }
.link-group a { color: #fff; text-decoration: none; display: flex; align-items: center; }
.link-group a::before { content: "▶"; font-size: 0.6rem; margin-right: 8px; color: #fff; }
.link-group small { margin-left: auto; color: #aaa; }

/* 最下部バー */
.footer-bottom { background-color: #000d1a; padding: 20px 0; margin-top: 60px; font-size: 0.75rem; }
.footer-bottom .inner { display: flex; justify-content: space-between; align-items: center; }
.bottom-links a { color: #fff; text-decoration: none; margin-right: 20px; }
.copyright { color: #888; }

/* レスポンシブ */
@media (max-width: 900px) {
    .main-footer .inner { flex-direction: column; }
    .contact-methods { flex-direction: column; }
    .web-form-link { border-left: none; border-top: 1px solid #ddd; padding: 20px 0 0; }
}
/* フッター全体：幅を1200pxに制限し、中央に寄せる */
.main-footer {
    max-width: 1200px;       /* 1200pxに固定 */
    margin: 0 auto;          /* 左右中央寄せ */
    background-color: #001528; /* 暗いネイビー */
    color: #fff;
    padding: 60px 0 0;
    font-size: 0.85rem;
}

/* フッターのインナー：余白のみ設定 */
.main-footer .inner {
    display: flex;
    gap: 60px;
    padding: 0 40px;
}

/* コピーライトバーも1200px幅で中央に */
.footer-bottom {
    background-color: #000d1a;
    padding: 20px 0;
    margin-top: 60px;
}

.footer-bottom .inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

/* 右側リンクエリア全体のレイアウト：2カラム（横並び）にする */
.footer-right {
    flex: 1.2;          /* 少し広めに確保 */
    display: flex;
    gap: 40px;          /* 左右の列の間隔 */
    align-items: flex-start;
}

/* 左側の列（店舗一覧 ＋ 関連サイト） */
.footer-right-column-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;          /* 上下のブロックの間隔 */
}

/* 右側の列（グループ営業所一覧） */
.footer-right-column-right {
    flex: 1;
}

/* --- 共通のスタイル --- */
.link-group h3 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 15px;
    border-left: 4px solid #9bff00;
    padding-left: 10px;
    line-height: 1.2;
}

.link-group ul {
    list-style: none;
}

.link-group li {
    margin-bottom: 10px;
}

.link-group a {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center; /* 垂直方向中央 */
    font-size: 0.85rem;
    width: 100%;
}

/* 矢印アイコン */
.link-group a::before {
    content: "▶";
    font-size: 0.6rem;
    margin-right: 10px;
    color: #fff;
}

/* 拠点数テキストを「リンクのすぐ隣」ではなく、少し離した位置で揃える */
.link-group small {
    margin-left: auto;   /* 右端に寄せる */
    color: #aaa;
    font-size: 0.75rem;
    white-space: nowrap;
}

/* --- 活用シーン イントロ (hero-section2) --- */
.hero-section2 {
    position: relative; /* 子要素の文字を上に載せるため */
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.hero2-bg-img {
    width: 100%;
    height: auto;
    display: block;
}

.hero2-content {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    text-align: left;
    color: #fff;
    /* ...以下、既存の文字スタイルを維持... */
}

/* スマホ用調整 */
@media (max-width: 600px) {
    .hero2-content {
        position: absolute;
        top: 30%; /* 50%から30%に引き上げて、上に移動 */
        left: 50%;
        right: auto;
        transform: translate(-50%, -50%);
        width: 90%;
        text-align: center;
    }

    /* もし「5つの活用シーン」の文字がまだ画像に被るようなら、少しサイズを下げます */
    .hero2-sub-copy { font-size: 1.1rem; }
    .hero2-main-copy { font-size: 2.0rem; }
    .hero2-highlight-text { font-size: 1.6rem; }
}



.hero2-sub-copy {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 5px;
    letter-spacing: 0.05em;
}

.hero2-main-copy {
    font-size: 3.2rem;
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.2;
}

/* 「5つの活用シーン」の黄色枠 */
.hero2-highlight-box {
    display: inline-block;
    border: 3px solid #9bff00; /* 指定の黄緑 */
    padding: 10px 25px;
}

.hero2-highlight-text {
    font-size: 2.8rem;
    font-weight: bold;
    letter-spacing: 0.1em;
}

/* レスポンシブ対応 */
@media (max-width: 900px) {
    .hero-section2 {
        aspect-ratio: auto;
        min-height: 400px;
        justify-content: center; /* スマホでは中央寄せ */
        padding-right: 0;
    }
    .hero2-sub-copy { font-size: 1.2rem; }
    .hero2-main-copy { font-size: 2.2rem; }
    .hero2-highlight-text { font-size: 1.8rem; }
}

/* --- 5つの活用シーン (薄グレー背景) --- */
.usage-scenes-gray-section {
    background-color: #f5f5f5; /* 薄いグレー背景 */
    padding: 80px 20px;
    color: #333;
}

.scenes-list {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

/* 各カードのスタイル：縁取りと影を追加 */
.scene-row-card {
    background-color: #fff;
    width: calc(50% - 15px); /* 2カラム */
    border-radius: 8px;
    
    /* 修正箇所：縁取りを黄緑に変更し、影を追加 */
    border: 2px solid #9bff00; 
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); 
    
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* ホバー時に少し影を強調する（お好みで） */
.scene-row-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* ⑤だけ横幅いっぱい */
.full-width-card {
    width: 100%;
}

/* ヘッダーバー */
.scene-header-bar {
    background-color: #fff;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #eee;
}

.scene-no-circle {
    font-size: 1.4rem;
    color: #333;
    font-weight: bold;
}

.scene-h3-title {
    font-size: 1.1rem;
    font-weight: bold;
    color: #000;
}

/* ボディ部分（画像とテキスト） */
.scene-body {
    display: flex;
    padding: 20px;
    gap: 20px;
    flex: 1;
}

.scene-img {
    flex: 0 0 126px; /* 180pxの70%である126pxに設定 */
}

.scene-img.large {
    flex: 0 0 350px; /* ⑤の画像は少し大きく */
}

.scene-img img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    border: none; /* ① 黄緑の線を消去 */
}

.scene-text {
    flex: 1;
}

.scene-catch {
    font-size: 1rem;
    font-weight: bold;
    color: #000;
    line-height: 1.4;
    margin-bottom: 15px;
    background: none; /* ② マーカーを消去 */
}

.scene-desc {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #444;
}
/* スマホ向けのレスポンシブ調整 */
@media (max-width: 600px) {
    /* カード全体の余白を調整 */
    .usage-scenes-gray-section {
        padding: 40px 15px;
    }

    /* 2カラムから1カラムへ（すでに設定済みであれば維持） */
    .scene-row-card {
        width: 100%;
        margin-bottom: 20px;
    }

    /* 画像とテキストを縦並びに */
    .scene-body {
        flex-direction: column; 
        align-items: center; /* 中央寄せ */
        padding: 15px;
        gap: 15px;
    }

    /* 画像のサイズが巨大化しないよう、幅を制限して中央に置く */
    .scene-img, .scene-img.large {
        flex: none;
        width: 60%; /* カードの幅に対して60%程度にする（お好みで調整してください） */
        max-width: 200px; /* 大きくなりすぎない上限を設定 */
    }

    /* テキストも中央寄せで見やすく */
    .scene-text {
        text-align: center;
    }

    /* サブタイトルのフォントサイズをスマホ用に微調整 */
    .scene-catch {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }
}

