/* 基本設定 */
body {
    margin: 0;
    padding: 0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #0b0e11; /* 画像のような深い黒 */
    color: #ffffff;
    line-height: 1.6;
}

/* 11行目付近から */
.container, 
.hero-container, 
.comparison-container, 
.spec-container {
    width: 100% !important;
    max-width: 1200px !important; /* ここでサイト全体の「芯」を統一！ */
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 40px 20px 0 !important; /* 上の余白40px、左右20px */
    box-sizing: border-box !important;
    background-color: transparent !important; /* 背景は各セクションで指定するため透明に */
}

/* もしタイトルを囲む別の親要素（sectionなど）がある場合は、そこにも適用 */
.comparison-container {
    background-color: #1a1e23 !important;
}
/* --- ヒーローセクション全体 --- */
.hero {
    padding: 80px 0;
    background-color: #000; /* 背景は黒 */
}

/* 基準となるコンテナ */
.hero-container {
    position: relative; /* 子要素（テキスト）を重ねる基準 */
    width: 100%;
    max-width: 1100px
    ; /* 他のセクションと合わせた最大幅 */
    margin: 0 auto;
    min-height: 500px; /* 画像の高さに合わせて調整してください */
}

/* --- 画像エリア（背景として配置） --- */
.hero-image {
    width: 100%;
    text-align: right; /* 画像を右寄せに */
}

.hero-image img {
    max-width: 800px; /* 画像のサイズ。お好みで調整してください */
    width: 100%;
    height: auto;
    opacity: 0.8; /* 文字を読みやすくするため少し暗くする場合 */
}

/* --- テキストエリア（画像の上に浮かせる） --- */
.hero-text {
    position: absolute;
    top: 50px;  /* 上からの位置 */
    left: 20px; /* 左からの位置 */
    z-index: 10;
    text-align: left;
}

.main-title {
    font-size: 4.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.1;
}

.sub-title {
    font-size: 2.0rem;
    color: #90f403;
    margin-bottom: 40px;
}

/* ボタン（以前のスタイルを継承） */
.cta-button {
    display: inline-block;
    background-color: #90f403;
    color: #000;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px; /* 画像に合わせて少し角丸に */
}

/* 特徴セクション（カード） */
.features {
    padding-bottom: 100px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3列 */
    gap: 25px;
}

.feature-card {
    background-color: #1a1e23;
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid #2d333b;
    transition: transform 0.3s ease;
    /* --- 追加：中身のテキストをすべて中央寄せ --- */
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card .icon img {
    width: 50%;
    max-width: 120px;
    height: auto;
    display: block;
    /* --- 修正：上下の余白は保ちつつ、左右を auto で中央へ --- */
    margin: 0 auto 20px; 
}

/* もしタイトルの下に余白が欲しければ追加 */
.card-title {
    margin-bottom: 15px;
}

/* スマホ対応 */
@media (max-width: 768px) {
    .hero-flex {
        flex-direction: column;
        text-align: center;
    }
    .hero-image {
        margin-top: 50px;
        text-align: center;
    }
    .grid {
        grid-template-columns: 1fr; /* 1列にする */
    }
    .main-title {
        font-size: 2.5rem;
    }
}

/* 比較表全体のスタイル */
.comparison-section {
    background-color: #0f1113; /* 背景は暗めに */
    padding: 40px 20px;
    color: #fff;
    font-family: sans-serif;
}

.comparison-container {
    max-width: 800px;
    margin: 0 auto;
}

/* ヘッダー部分 */
.header-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #333;
    font-size: 0.85rem;
    color: #FFF;
    margin-bottom: 20px;
}

.label-h200 { color: #90f403; font-weight: bold; }

/* 各行のレイアウト */
.comparison-row {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    border-bottom: 1px solid #222;
    padding-bottom: 15px;
}

.row-label {
    width: 120px;
    font-size: 0.9rem;
}

.bar-container {
    flex-grow: 1;
    display: flex;
    flex-direction: column; /* 棒を上下に並べる */
    gap: 8px;
    padding: 0 20px;
}

/* 棒の共通スタイル */
.bar {
    height: 24px;
    line-height: 24px;
    padding-left: 10px;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 2px;
}

.bar-h100 {
    background-color: #ffffff; /* H100は白 */
    color: #333;
}

.bar-h200 {
    background-color: #90f403; /* 指定のグリーン */
    color: #000;
}

.evolution-text {
    width: 80px;
    text-align: right;
    color: #90f403;
    font-weight: bold;
}

/* 比較表全体のスタイル終わり*/

/* --- 全体共通：横幅を揃えるためのコンテナ --- */
.container, .comparison-container {
    /* 1100px から 1300px 前後に広げる */
    max-width: 1150px;
    
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* --- カードセクションの微調整 --- */
.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3枚横並び */
    gap: 20px; /* カード同士の隙間 */
}

/* --- グラフセクションの微調整 --- */
.header-row, .comparison-row {
    width: 100%; /* コンテナいっぱいに広げる */
}

.bar-container {
    flex-grow: 1; /* 棒グラフが真ん中の余白を埋めるように */
}

/* --- 導入ステップセクション --- */
.steps-section {
    padding: 80px 0;
    background-color: #1a1e23;
    color: #fff;
}

.section-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 60px;
    font-weight: bold;
}

/* 3カラムのグリッド */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* 各ステップのレイアウト（数字とコンテンツを横並び） */
.step-card {
    display: flex;
    align-items: flex-start;
}

/* 大きな数字 */
.step-number {
    font-size: 2.5rem;
    font-weight: 300; /* 少し細めがオシャレです */
    color: #fff;
    margin-right: 15px;
    line-height: 1;
}

/* タイトルと下線 */
.step-title {
    font-size: 1.1rem;
    font-weight: bold;
    padding-bottom: 8px;
    margin-bottom: 12px;
    border-bottom: 2px solid #90f403; 
    white-space: nowrap;
}

/* 説明文 */
.step-text {
    font-size: 0.9rem;
    color: FFFF;
    line-height: 1.6;
}

/* スマホ対応：縦並びにする */
@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
/* --- 導入ステップセクション終わり --- */

/* --- ソフトウェア高速化セクション --- */
/* --- ソフトウェア高速化セクション --- */
.software-section {
    background-color: #1a1e23;
    color: #ffffff; /* セクション全体の文字を白に */
    padding: 80px 0;
    text-align: center;
}

.software-title2 {
    font-size: 1.8rem;
    color: #ffffff;
    font-weight: bold;
    margin-bottom: 50px;
}

/* 3カラムのグリッドレイアウト */
.software-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

/* 各カードのスタイル */
.software-card {
    border: 2px solid #90f403;
    border-radius: 10px;
    padding: 5px 10px 10px 5px;
    
    background-color: #ffffff;
    color: #000000;
    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; /* 上寄せ */
    
    /* 高さを揃えるための最低値。余白を詰めた分、ここを少し小さくしてもOKです */
    min-height: 240px; 
}

/* タイトル部分：高さを固定して、下のリストの開始位置を揃える */
.software-card h3 {
    font-size: 1.4rem;
    font-weight: bold;
    text-align: center;
    display: flex;
    align-items: center;    /* タイトル内の文字を垂直中央に */
    justify-content: center;
    width: 100%;
    
    /* ★ここが最重要：タイトルの表示エリアを固定する */
    min-height: 4rem;      /* タイトルが2行になっても大丈夫な高さを確保 */
    margin-bottom: 10px;    /* リストとの間隔 */
}

/* リスト部分 */
.software-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    display: block;
}

.software-card li {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 10px;
    padding-left: 1.2em;
    position: relative;
}

.software-card li::before {
    content: "・";
    position: absolute;
    left: 0;
    color: #000;
}

/* ★ここがポイント：補足テキスト（注釈）を白くする */
.software-note {
    font-size: 0.95rem;
    font-weight: bold;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #ffffff !important; /* 強制的に白に指定 */
}

/* --- 下部カタログボタン --- */
.footer-cta {
    margin-top: 20px;
}

.catalog-button {
    display: inline-block;
    background-color: #90f403;
    color: #000;
    padding: 18px 40px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    border-radius: 6px;
    transition: background-color 0.3s ease, opacity 0.3s ease;
}

.catalog-button:hover {
    opacity: 0.8;
}

/* --- スマホ専用の設定（1つにまとめました） --- */
@media (max-width: 768px) {
    .software-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .software-title2 {
        font-size: 1.5rem;
    }


    .software-title2 {
    font-size: 1.5rem;    /* 文字の大きさはそのまま */
    margin-top: 0;       /* 上の隙間をゼロにする */
    margin-bottom: 20px; /* 下（カードとの間）の余白 */
    padding-top: 0;      /* 上の内側余白をゼロにする */
}

    .software-note br {
        display: none; /* スマホでは改行を解除 */
    }
}



/* 2. コンテナの設定：幅を固定して中央に居座る */
.spec-container {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: flex-start !important; /* カード自体は左詰め */
    
    /* ★重要：以前設定した .container と同じ数値（1100px等）にしてください */
    width: 1100px !important; 
    
    /* 左右の余白を自動にして中央に固定 */
    margin-left: auto !important;
    margin-right: auto !important;
    
    gap: 20px !important;
}

/* 3. カードの設定：2列に固定 */
.spec-card {
    /* (100% - gap) / 2 = 2列ピッタリ */
    width: calc((100% - 20px) / 2) !important;
    flex-grow: 0 !important;
    flex-shrink: 0 !important;
}

/* 各カードのスタイル */
.spec-card {
  background: #ffffff;
  flex: 1;
  min-width: 320px;
  border-radius: 12px;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-name {
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  color: #333;
}

.product-image {
  width: 100%;
  margin-bottom: 25px;
}

.product-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* 黄緑色のタグ */
.tag-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  justify-content: center;
}

.spec-tag {
  background-color: #90f403; /* 指定色 */
  color: #000;
  font-size: 0.75rem;
  font-weight: bold;
  padding: 6px 15px;
  border-radius: 50px;
}

.spec-tag.full {
  width: 100%;
  text-align: center;
}

/* スペック表 */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
  font-size: 0.85rem;
}

.spec-table th, .spec-table td {
  border-bottom: 1px solid #eee;
  padding: 12px 8px;
  text-align: left;
}

.spec-table th {
  width: 30%;
  color: #666;
  white-space: nowrap;
}

.spec-table td {
  color: #333;
  line-height: 1.4;
}

/* ボタン */
.btn-product {
  background-color: #90f403;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  padding: 12px 40px;
  border-radius: 6px;
  transition: opacity 0.3s;
  margin-top: auto; /* ボタンを下揃えにする */
}

.btn-product:hover {
  opacity: 0.8;
}
header.hero, 
header.hero .hero-container {
    background-color: #000000 !important;
}

/* ヘッダー内の画像エリアなども念のため黒に */
.hero-image, .hero-text {
    background-color: transparent !important; /* 透けさせて親の黒を見せる */
}
/* 特徴カードセクションを黒にする */
.features, 
.features .container {
    background-color: #000000 !important;
}

/* 特徴カード自体の背景も黒に合わせる（もし浮いて見える場合） */
.feature-card {
    background-color: #000000 !important;
}

/* グラフ比較セクションを黒にする */
.comparison-section, 
.comparison-container {
    background-color: #000000 !important;
}

/* グラフの行の背景なども念のため黒に */
.comparison-row, .header-row {
    background-color: #000000 !important;
}
/* すでにある設定に .spec-container を追加 */
.container, 
.comparison-container, 
.spec-container {  /* ←これを追加 */
    max-width: 1200px; 
    /* 先ほど設定した広めの数値に合わせる */
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}
.spec-card h3 {
    color: #333; /* 真っ黒すぎない高級感のある濃いグレー */
    font-size: 1.1rem; /* 大きすぎる場合はここで調整 */
    margin: 10px 0;    /* 上下に少し隙間を作る */
    line-height: 1.4;  /* 行間を広げて読みやすくする */
    text-align: center; /* 中央寄せ（お好みで） */
}
.product-title-highlight {
    background-color: #90f403; /* 指定の鮮やかなグリーン */
    color: #000;              /* 背景が明るいので文字は黒が見やすいです */
    display: inline-block;    /* 背景を文字の幅に合わせる */
    padding: 5px 15px;        /* 上下左右に少し余白を作る */
    font-size: 1.2em;         /* 120% 拡大 */S
    font-weight: bold;        /* 太字で強調 */
    border-radius: 0;         /* 角を丸くしない（四角にする） */
    margin-bottom: 15px;      /* 下のテキストとの間隔 */
}



/* 2. コンテナの設定（以前決めた幅に固定） */
.spec-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start; /* カード自体は左から詰める */
    
    /* 上のグラフエリアのmax-widthと同じ数値にしてください（例：1320px） */
    max-width: 1320px; 
    
    width: 100%;
    gap: 20px;
    margin: 0 auto; /* 念のため */
}

/* 3. カードの設定（今のままの計算式でOK） */
.spec-card {
    width: calc((100% - 20px) / 2);
    flex-grow: 0;
    flex-shrink: 0;
    box-sizing: border-box;
}


/* 2. カードを囲むコンテナを中央に固定する */
.spec-container {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: flex-start !important; /* カード自体は左から詰める */
    
    /* 上のグラフエリアと同じ数値にする（例: 1100px や 1320px） */
    max-width: 1100px !important; 
    
    width: 95% !important; /* 画面が狭い時用のマージン */
    margin: 0 auto !important; /* これで中央に居座る */
    gap: 20px !important;
}

/* 3. カードの幅を「2列」に固定する */
.spec-card {
    /* 2列なら gap(20px) を引いた半分にする */
    width: calc((100% - 20px) / 2) !important;
    flex-grow: 0 !important;
    flex-shrink: 0 !important;
    box-sizing: border-box !important;
}

/* スマホでは1列にする */
@media (max-width: 768px) {
    .spec-card {
        width: 100% !important;
    }
}



/* 1. 外側のセクションを画面の端から端まで無理やり広げる */
.product-spec-section {
    width: 100vw !important;
    position: relative !important;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    padding: 0 !important;
}

/* 1. コンテナ：ここを1200pxの基準にする */
.spec-container {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important; /* 中央に寄せる */
    
    max-width: 1200px !important; 
    width: 100% !important;
    margin: 0 auto !important; /* 中央固定 */
    
    /* カード間の隙間を少し詰め、2列に入りやすくする */
    gap: 20px !important; 
}

/* 2. カード：横幅を「48%」程度に抑えることで、確実に2枚並ぶようにする */
.spec-card {
    /* 100%から隙間分を引いて2枚並ぶ計算（48%〜49%が安全） */
    width: 48.5% !important; 
    min-width: 300px !important; /* スマホで1列になるための最低幅 */
    
    flex-grow: 0 !important;
    flex-shrink: 0 !important;
    box-sizing: border-box !important;
    
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    /* テーブルのはみ出しを物理的にカット */
    overflow: hidden !important; 
}

/* 3. テーブル：カードを突き破らないための「絶対条件」 */
.spec-table {
    width: 100% !important;
    table-layout: fixed !important; /* これで文字が枠内に収まります */
    border-collapse: collapse;
}

.spec-table th, .spec-table td {
    padding: 8px 4px;
    word-break: break-all !important; /* 型番などの長い英字を強制改行 */
    font-size: 0.9em; /* 文字が入りきらない場合は少し小さく */
}

/* 左側の項目幅を固定（お好みで調整） */
.spec-table th {
    width: 100px !important;
}
.container, 
.comparison-container, 
.spec-container, 
.hero-container {
    max-width: 1200px !important; 
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 20px !important; /* 左右の共通余白 */
    box-sizing: border-box !important;
}

/* 2. スペック表セクションの背景と外枠をリセット */
.product-spec-section {
    width: 100% !important;
    margin: 0 !important;
    padding: 80px 0 !important; /* 上下の余白 */
    position: static !important; /* 100vw設定を解除 */
}

/* 3. スペック表コンテナを2列（中央寄せ）にする */
.spec-container {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important; 
    gap: 30px !important; /* カード間の隙間を30pxに固定 */
}

/* 4. カードの幅を 1200px のラインに合わせる */
.spec-card {
    /* (100% - 隙間30px) / 2枚 */
    width: calc((100% - 30px) / 2) !important;
    max-width: 565px !important; /* 1200pxから余白を引いた半分 */
    
    flex: 0 0 calc((100% - 30px) / 2) !important;
    box-sizing: border-box !important;
    background: #ffffff !important;
    border-radius: 12px !important;
    padding: 30px 20px !important;
    overflow: hidden !important; /* 中身の突き出しを許さない */
}

/* 5. テーブルがカードを突き破るのを物理的に防ぐ（これが無いと2列になりません） */
.spec-table {
    width: 100% !important;
    table-layout: fixed !important; /* ★最重要：文字数無視で幅を固定 */
    border-collapse: collapse !important;
}

.spec-table th, .spec-table td {
    word-break: break-all !important; /* 長い英単語を強制改行 */
    overflow-wrap: break-word !important;
    border-bottom: 1px solid #eee !important;
}

.spec-table th {
    width: 110px !important; /* 左の見出し幅 */
}

/* 6. スマホ対応：768px以下で1列にする */
@media (max-width: 768px) {
    .spec-card {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
}

/* --- 主要スペック・ハイライト --- */
.feature-highlight-section {
    padding: 100px 0 60px;
    background-color: #0b0e11;
}

.feature-highlight-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3列 */
    gap: 25px;
}

.highlight-card {
    background-color: #1a1e23;
    border: 1px solid #2d333b;
    border-radius: 12px;
    padding: 35px 25px;
    position: relative;
    transition: 0.3s;
}

.highlight-card:hover {
    border-color: #90f403;
    transform: translateY(-5px);
}

.card-num {
    font-size: 2.5rem;
    color: #90f403;
    font-weight: bold;
    font-family: 'Courier New', Courier, monospace;

    /* --- 1. 右寄せにする --- */
    text-align: left; 

    /* --- 2. 上下の余白を狭くする --- */
    margin-top: -15px;    /* 上の余白をマイナスで削って持ち上げる */
    margin-bottom: -5px;  /* 下の文字（タイトル）との距離をグッと近づける */
    
    /* 文字が右端に寄りすぎないよう少しだけ内側に入れる（お好みで） */
    padding-left: 5px;
}

.highlight-card h3 {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: bold;
}

.highlight-card p {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* ポイントタグの装飾 */
.point-tag {
    display: inline-block;
    background-color: rgba(144, 244, 3, 0.1);
    color: #90f403;
    border: 1px solid #90f403;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 4px 12px;
    border-radius: 4px;
}

/* スマホ対応 */
@media (max-width: 992px) {
    .feature-highlight-grid {
        grid-template-columns: repeat(2, 1fr); /* 2列 */
    }
}
@media (max-width: 600px) {
    .feature-highlight-grid {
        grid-template-columns: 1fr; /* 1列 */
    }
}
/* --- お問い合わせボタンセクション --- */
.footer-cta-section {
    padding: 80px 0 100px; /* 上下にゆったりとした余白を作る */
    background-color: #0b0e11; /* 背景色に合わせる */
    text-align: center; /* ★中身（ボタン）を中央に寄せる */
}

.footer-cta-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* ボタン自体の微調整（もし必要なら） */
.footer-cta-section .cta-button {
    display: inline-block;
    padding: 20px 60px; /* お問い合わせなので、少し大きめにすると目立ちます */
    font-size: 1.2rem;
    transition: 0.3s;
    cursor: pointer;
}

.footer-cta-section .cta-button:hover {
    transform: scale(1.05); /* マウスを乗せた時に少し大きくして「押せる感」を出す */
    opacity: 0.9;
}

.main-title {
    /* 5.5rem から 7.2rem 前後に大きくしてみる */
    font-size: 7.2rem; 

    /* 文字が大きくなった分、製品画像に重ならないよう行間を少し詰める */
    line-height: 1.0; 

    /* その他は以前のままでOK */
    font-weight: 600; 
    letter-spacing: 0.04em;
    margin-bottom: 20px;
    margin-top: -10px;
    width: 100%;
}

/* スマホ用（今のままでOK） */
@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem; /* スマホでは読みやすく少し小さめに */
        margin-top: 0;
    }
}

/* 画面幅が768px以下のとき（スマホ・タブレット向け）の設定 */
@media (max-width: 768px) {
    .grid {
        /* 3列から1列に変更 */
        grid-template-columns: 1fr; 
        /* カード同士の上下の隙間を少し広げる（お好みで） */
        gap: 20px;
    }

    .features {
        /* スマホだと余白が広すぎる場合があるので少し調整 */
        padding-bottom: 50px;
    }
}
/* 1. タイトルセクション全体の高さを抑える */
.hero-text {
    /* もし padding が入っていれば、下の数値を小さくします */
    padding-bottom: 20px; 
}

/* 2. 特徴カードセクションの上の余白を詰める */
.features {
    /* 現在 padding-bottom: 100px; となっているはずなので、上の余白も明示的に小さくします */
    padding-top: 20px; 
    padding-bottom: 80px; /* 下の余白も少し詰めると全体のバランスが良くなります */
}

/* 3. ボタン下の余白を微調整（念のため） */
.cta-button {
    margin-bottom: 0; 
}
.hero {
    position: relative;
    /* --- これを追加：右側にはみ出した画像をカットして横スクロールを防ぐ --- */
    overflow: hidden; 
    
    /* セクションの高さを画像に合わせる */
    min-height: 600px; 
    width: 100%;
}

.hero-image img {
    width: 1200px !important;
    max-width: none !important;
    height: auto;
    position: absolute;
    top: 50%;
    /* --- 画面の右端にぴったり合わせる --- */
    right: 0; 
    transform: translateY(-50%);
    z-index: 1;
}

.point-tag {
    display: inline-block;
    background-color: rgba(144, 244, 3, 0.1);
    color: #90f403;
    border: 1px solid #90f403;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 4px 12px;
    border-radius: 4px;
    
    /* 追加：タグの下に余白を作る */
    margin-bottom: 10px; 
}
/* 特徴カードを並べているグリッド全体の設定 */
.feature-highlight-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;

    /* --- 追加：カードの下側（04, 05, 06の下）に余白を作る --- */
    padding-bottom: 80px; 
}

/* もしセクション全体の背景色を少し明るくして、余白を際立たせたい場合 */
.feature-highlight-section {
    background-color: #0b0e11; /* ここを調整すると余白の色が変わります */
    padding: 100px 0 20px; /* セクション自体の余白は少し詰める */
}

.section-title {
    /* --- 1. 上側の余白を少しだけ増やす --- */
    padding-top: 30px; 

    /* 他の設定はそのまま */
    text-align: center;
    color: #ffffff;
    margin-bottom: 50px;
    line-height: 1.4;
}

/* もしPCだけで広げたい場合はこちら */
@media (min-width: 992px) {
    .section-title {
        padding-top: 50px; /* PCではもう少し広めに空けると高級感が出ます */
    }
}