/* --- 変数定義 --- */
:root {
    --primary-blue: #1c6ece;
    --primary-navy: #0f172a;
    --accent-orange: #f97316;
    --bg-slate: #dce7f6;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --white: #ffffff;
}

/* --- リセット & 基本設定 --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    padding-top: 80px; /* ヘッダー固定用 */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.container.narrow { max-width: 850px; }

/* --- ヘッダー --- */
.site-header {
    position: fixed;
    top: 0; width: 100%; height: 80px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    border-bottom: 1px solid #e2e8f0;
    z-index: 1000;
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}
.company-name { font-size: 10px; color: var(--text-muted); display: block; }
.product-logo { font-size: 20px; font-weight: bold; color: var(--primary-navy); }
.product-logo span { color: var(--primary-blue); }

.header-nav { display: flex; align-items: center; gap: 30px; }
.nav-links { display: flex; list-style: none; gap: 20px; }
.nav-links a { text-decoration: none; color: var(--text-main); font-size: 14px; font-weight: 500; }
.header-cta { display: flex; gap: 10px; }

/* --- ロゴ画像の調整 --- */
.header-logo a {
    display: block;
    text-decoration: none;
}

.logo-img {
    height: 60px; /* ヘッダーの高さに合わせて調整 */
    width: auto;  /* アスペクト比を維持 */
    display: block;
    margin-top: 2px;
}
.product-name-area {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.product-suffix {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--primary-navy);
}
/* 社名テキストの微調整 */
.company-name {
    font-size: 10px;
    color: var(--text-muted);
    display: block;
    margin-bottom: 2px;
    line-height: 1;
}

/* スマホ表示でのサイズ調整（必要に応じて） */
@media (max-width: 768px) {
    .logo-img {
        height: 32px;
    }
}

/* --- ロゴエリアの横並び設定 --- */
.logo-wrapper {
    display: flex;
    align-items: center; /* 上下中央揃え */
    gap: 15px;           /* 社名とロゴの間の余白 */
}

.company-name {
    font-size: 14px;      /* 横並びに合わせて少しサイズアップ */
    font-weight: bold;
    color: var(--primary-navy);
    white-space: nowrap;  /* 改行を防ぐ */
    margin-bottom: 0;     /* 以前の余白をリセット */
}

.logo-img {
    height: 65px;         /* 高さを調整して社名とバランスを取る */
    width: auto;
    display: block;
}

/* スマホ表示での調整 */
@media (max-width: 768px) {
    .logo-wrapper {
        gap: 10px;
    }
    .company-name {
        font-size: 12px;
    }
    .logo-img {
        height: 26px;
    }
}
/* --- ボタン --- */
.btn-main { background: var(--accent-orange); color: var(--white); text-decoration: none; border-radius: 8px; font-weight: bold; transition: 0.2s; text-align: center; display: inline-block; }
.btn-sub { background: var(--white); border: 1px solid #cbd5e1; color: var(--text-main); text-decoration: none; border-radius: 8px; font-weight: bold; transition: 0.2s; text-align: center; display: inline-block; }
.btn-dark { background: #334155; color: var(--white); text-decoration: none; border-radius: 8px; font-weight: bold; transition: 0.2s; text-align: center; display: inline-block; }
.btn-blue { background: var(--primary-blue); color: var(--white); text-decoration: none; border-radius: 8px; font-weight: bold; transition: 0.2s; text-align: center; display: inline-block; }

.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-lg { padding: 18px 40px; font-size: 18px; }
.btn-xl { padding: 20px 60px; font-size: 22px; width: 100%; max-width: 450px; }
.btn-shadow { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); }
.btn-main:hover, .btn-dark:hover, .btn-blue:hover { transform: translateY(-2px); opacity: 0.9; }

/* --- ファーストビュー --- */
.hero { background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%); padding: 100px 0; text-align: center; border-bottom: 1px solid #e2e8f0; }
.seminar-tag { display: inline-block; background: #fff7ed; border: 1px solid var(--accent-orange); color: #c2410c; padding: 4px 16px; border-radius: 6px; font-weight: bold; margin-bottom: 30px; font-size: 14px; }
.hero-title { font-size: 3rem; font-weight: bold; line-height: 1.2; margin-bottom: 30px; }
.hero-title span { color: var(--primary-blue); }
.hero-subtext { font-size: 1.25rem; color: var(--text-muted); margin-bottom: 40px; }
.hero-points { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 40px; }
.hero-points span { background: var(--white); border: 1px solid #e2e8f0; padding: 10px 20px; border-radius: 8px; font-weight: 500; box-shadow: 0 1px 3px rgba(0,0,0,0.05); }
.hero-cta-group { display: flex; justify-content: center; gap: 20px; }
/* ニューリリースバッジのスタイル */
.new-release-badge {
    display: inline-block;
    background-color: var(--accent-orange);
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 15px;
    letter-spacing: 0.1em;
    box-shadow: 0 4px 10px rgba(249, 115, 22, 0.3);
}
/* ニューリリースバッジ（Hero用） */
.new-release-badge {
    display: inline-block;
    background-color: var(--accent-orange);
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    padding: 4px 14px;
    border-radius: 4px;
    margin-bottom: 20px;
    letter-spacing: 0.1em;
    box-shadow: 0 4px 10px rgba(249, 115, 22, 0.3);
}
/* --- 課題・グリッド共通 --- */
section { padding: 80px 0; }
.section-title { text-align: center; font-size: 2rem; font-weight: bold; margin-bottom: 50px; }
.grid { display: grid; gap: 25px; }
.col-3 { grid-template-columns: repeat(3, 1fr); }
.col-4 { grid-template-columns: repeat(4, 1fr); }

.problem-card { border-left: 4px solid #f87171; background: #f8fafc; padding: 30px; }
.problem-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.problem-footer { text-align: center; margin-top: 40px; font-weight: bold; font-size: 1.1rem; color: #475569; }

/* --- 機能 --- */
.section-features { background: var(--bg-slate); }
.feature-card { background: var(--white); padding: 40px; border-radius: 15px; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05); text-align: center; position: relative; }
.feature-card.highlight { border: 2px solid var(--primary-blue); }
.feature-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--primary-blue); color: var(--white); padding: 2px 14px; border-radius: 20px; font-size: 12px; }
.feature-card .icon { font-size: 3rem; margin-bottom: 20px; }
.feature-card h3 { margin-bottom: 15px; }

/* --- 共通：余白の確保 --- */
.section-benefits, .section-target {
    padding: 100px 0; /* 上下の余白を広めにとる */
    background-color: #ffffff;
}

/* --- ベネフィット：3カラム並び --- */
.benefits-grid {
    display: flex;
    justify-content: space-around;
    gap: 40px;
    text-align: center;
}

.benefit-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.benefit-item h3 {
    font-size: 1.4rem;
    color: var(--primary-navy);
    margin-bottom: 15px;
}

/* --- おすすめ：カード型 --- */
.target-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.target-card {
    background: #f1f5f9; /* 薄いグレーで清潔感を出す */
    padding: 30px;
    border-radius: 12px;
    border-left: 5px solid var(--primary-blue); /* アクセントカラー */
}

.target-card h4 {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: var(--primary-navy);
}

/* --- 背景セクション --- */
.why-box { background: #eff6ff; padding: 50px; border-radius: 30px; }
.why-text { font-size: 1.1rem; margin-bottom: 30px; }
.why-highlight { font-weight: bold; color: var(--primary-blue); font-size: 1.2rem; margin-bottom: 20px; }
.why-list { list-style: none; margin-bottom: 40px; }
.why-list li::before { content: "●"; color: var(--primary-blue); margin-right: 10px; }
.why-conclusion { text-align: center; font-size: 1.5rem; font-weight: bold; border-top: 1px solid #bfdbfe; padding-top: 30px; }

/* --- システムメリット --- */
.section-merit { background: var(--primary-navy); color: var(--white); }
.text-white { color: var(--white); }
.merit-item h4 { font-size: 1.1rem; margin-bottom: 10px; color: #93c5fd; }
.merit-item p { font-size: 0.9rem; color: #94a3b8; }
/* style.css に追加：付箋風のチェックリスト */
/* --- ターゲット課題セクション（デザイン） --- */
.section-target-problem {
    padding: 80px 0;
    background-color: #ffffff; /* 清潔な白背景 */
}

.target-problem-wrapper {
    display: flex;
    align-items: center; /* 上下中央揃え */
    gap: 60px; /* 画像とテキストの間の余白 */
}

/* 左側：ビジュアルエリア */
.target-visual {
    flex: 1;
    max-width: 500px; /* 画像エリアの最大幅 */
}

.target-visual img {
    width: 70%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* 画像がない場合のプレースホルダー（後で画像に差し替えてください） */
.visual-placeholder {
    display: flex;
    justify-content: center;
    align-items: center;
    }

/* 右側：テキストエリア */
.target-content {
    flex: 1;
}

/* 見出しのデザイン */
.target-heading {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-navy);
    line-height: 1.4;
    margin-bottom: 25px;
}

/* 黄色のマーカー風強調 */
.marker-highlight {
    background: linear-gradient(transparent 60%, #fff176 60%);
    display: inline;
    padding-bottom: 2px;
}

.target-lead {
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 35px;
    line-height: 1.8;
}

/* チェックリスト */
.yayoi-style-list {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
}

.yayoi-style-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: var(--text-main);
    line-height: 1.6;
}

/* 青いチェックアイコン */
.list-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: var(--primary-blue); /* 信頼の青色 */
    color: #fff;
    border-radius: 50%;
    font-size: 14px;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0; /* アイコンが潰れないように */
    margin-top: 3px; /* テキストとの位置合わせ */
}

.target-conclusion {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-blue);
}

/* スマホ対応 */
@media (max-width: 900px) {
    .target-problem-wrapper {
        flex-direction: column; /* 縦積みに変更 */
        gap: 40px;
    }
    .target-visual {
        max-width: 100%;
        width: 100%;
    }
    .visual-placeholder {
        height: 250px;
    }
    .target-heading {
        font-size: 1.6rem;
    }
}
/* --- 特長セクション（ジグザグレイアウト） --- */
.feature-item {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px;
}

/* 偶数番目（またはreverseクラス）の左右を反転 */
.feature-item.reverse {
    flex-direction: row-reverse;
}

.feature-text {
    flex: 1;
}

.feature-num {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-blue);
    display: block;
    margin-bottom: 10px;
    opacity: 0.5;
}

.feature-heading {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-navy);
}

.feature-check-list {
    margin-top: 20px;
}

.feature-check-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-weight: bold;
}

.feature-check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-orange);
}

/* --- 画像ウィンドウ装飾 --- */
.feature-image {
    flex: 1;
}


/* --- 解決できることセクション：画像エリアのサイズ統一 --- */
.feature-visual, 
.feature-image {
    flex: 1;
    max-width: 460px; /* 全ての画像エリアを一律で最大460pxに制限 */
    width: 100%;
}

/* --- スクリーンショット表示の統一（ふわっとした影） --- */
.screenshot-image {
    width: 100%;
    background: #ffffff;
    border-radius: 12px;
    /* 柔らかく、少し広がりのある影で「ふわっと感」を演出 */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    overflow: hidden; /* 画像の角を丸めるために必要 */
}

.screenshot-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

/* キャプション（注釈）の余白と色を統一 */
.caption {
    margin-top: 15px;
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

/* --- 01のロボットと画像の重なり微調整 --- */
.feature-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.robot-container-flat {
    width: 160px; /* ロボットを少し小ぶりにしてバランスを取る */
    margin-bottom: -35px; /* 画像と少し重ねて一体感を出す */
    z-index: 2;
}


.window-mock {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.window-header {
    background: #f1f5f9;
    padding: 10px 15px;
    display: flex;
    gap: 6px;
    border-bottom: 1px solid #e2e8f0;
}

.window-header span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
}

.window-mock img {
    width: 100%;
    height: auto;
    display: block;
    /* 仮の画像がない時のための背景 */
    background: #f8fafc;
    min-height: 250px;
}

/* --- スマホ対応 --- */
@media (max-width: 768px) {
    .feature-item, .feature-item.reverse {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 60px;
    }
}
/* --- 画像拡大（モーダル）のスタイル --- */
/* クリックできることを示すポインター */
.window-mock img {
    cursor: zoom-in;
    transition: opacity 0.3s;
}

.window-mock img:hover {
    opacity: 0.8;
}

/* 拡大時の背景 */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85); /* 背景を暗く */
    display: none; /* 最初は隠す */
    justify-content: center;
    align-items: center;
    z-index: 2000;
    cursor: zoom-out;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* モーダル表示中のクラス */
.modal-overlay.is-open {
    display: flex;
    opacity: 1;
}

/* モーダル内の画像 */
.modal-img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-overlay.is-open .modal-img {
    transform: scale(1);
}
/* 画像にマウスを乗せた時のスタイル */
.popup-image {
    cursor: zoom-in; /* カーソルを「虫眼鏡（拡大）」アイコンに変更 */
    transition: all 0.3s ease; /* 変化を滑らかにする */
  }
  
  /* 画像にマウスが乗っている（ホバー）状態 */
  .popup-image:hover {
    opacity: 0.6; /* 画像を少し透明にして明るく見せる */
    /* または、以下のように影をつけて浮かび上がらせる表現も人気です */
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transform: scale(1.02); 
    /* 画像をわずかに拡大させる */
  }
/* --- 活用シーンセクション全体のスタイル --- */
.section-usecase {
    padding: 100px 0;
    background-color: #ffffff; /* 清潔感のある白背景 */
}

.usecase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3列並び */
    gap: 30px;
    margin-top: 50px;
}

/* カードのデザイン */
.usecase-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%; /* 高さを揃える */
}

/* ホバー時の動き（さりげない浮き上がり） */
.usecase-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-blue);
}

/* ターゲット別のタグ */
.usecase-tag {
    display: inline-block;
    align-self: flex-start;
    background-color: #f1f5f9;
    color: var(--primary-blue);
    font-size: 12px;
    font-weight: bold;
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

/* カード内の見出し */
.usecase-card h4 {
    font-size: 1.25rem;
    color: var(--primary-navy);
    margin-bottom: 18px;
    line-height: 1.4;
    font-weight: bold;
}

/* カード内の説明文 */
.usecase-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-main);
    margin: 0;
}

/* スマホ対応（縦並び） */
@media (max-width: 900px) {
    .usecase-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .section-usecase {
        padding: 60px 0;
    }
    .usecase-card {
        padding: 30px 20px;
    }
}
/* --- ステップ図セクションのスタイル --- */
.section-step-flow {
    padding: 100px 0;
    background-color: #f8fafc; /* 薄いグレーで背景を分け、情報のまとまりを強調 */
}

.step-flow-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 60px;
    gap: 20px;
}

.step-flow-item {
    flex: 1;
    background: #ffffff;
    padding: 40px 25px;
    border-radius: 16px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.step-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-navy); /* 株式会社サクセスのネイビー */
    color: #ffffff;
    padding: 4px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.step-icon {
    font-size: 50px;
    margin-bottom: 25px;
}

.step-flow-item h4 {
    font-size: 1.2rem;
    color: var(--primary-navy);
    margin-bottom: 15px;
    font-weight: bold;
}

.step-flow-item p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-main);
    text-align: left;
}

/* ステップを繋ぐ矢印 */
.step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
}

.step-arrow::after {
    content: "▶";
    color: #cbd5e1;
    font-size: 24px;
}

/* スマホ対応：縦並びにして矢印を下向きに */
@media (max-width: 900px) {
    .step-flow-wrapper {
        flex-direction: column;
        align-items: center;
    }
    .step-arrow {
        padding: 10px 0;
        transform: rotate(90deg);
    }
    .step-flow-item {
        width: 100%;
    }
}
/* --- STEP 01-03：業務効率化の3ステップ（斜め背景の調整） --- */
.section-step-flow {
    background-color: #f8fafc; /* 薄いグレー/ブルー */
    /* 右肩上がりの斜めカット */
    clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
    padding: 120px 0; /* 斜めカットで上下が削れる分、余白を広めに確保 */
    position: relative;
    z-index: 1;
}
/* --- セミナー --- */
.section-seminar { background: #fff7ed; }
.seminar-card { background: var(--white); border: 2px solid #fed7aa; border-radius: 30px; padding: 60px; text-align: center; box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); max-width: 900px; margin: 0 auto; }
.seminar-label { background: var(--accent-orange); color: var(--white); padding: 5px 15px; border-radius: 4px; font-weight: bold; font-size: 14px; }
.seminar-title { font-size: 2.25rem; margin: 25px 0; line-height: 1.3; }
.seminar-info-grid { display: flex; gap: 20px; justify-content: center; margin-bottom: 40px; }
.info-box { background: #f8fafc; padding: 20px 40px; border-radius: 12px; text-align: left; }
.info-label { font-size: 12px; color: var(--text-muted); display: block; }
.info-value { font-size: 1.25rem; font-weight: bold; }
.seminar-note { font-size: 12px; color: var(--text-muted); margin-top: 20px; }
/* --- セミナー情報の「申込制」バッジ --- */
.info-status {
    display: inline-block;
    margin-top: 10px;      /* 日付との間隔 */
    padding: 3px 12px;     /* 内側の余白 */
    background-color: #f8fafc; /* 薄いグレーの背景 */
    color: var(--primary-navy);
    border: 1px solid #cbd5e1; /* 繊細な枠線 */
    border-radius: 4px;    /* 少しだけ角丸 */
    font-size: 13px;       /* 少し小さめに */
    font-weight: bold;
    letter-spacing: 0.05em;
}

/* 補足：info-box 自体の整列を整える */
.info-box {
    display: flex;
    flex-direction: column;
    align-items: center;   /* 中央揃え */
    justify-content: flex-start;
}

/* --- サポート --- */
.support-item { padding: 30px; text-align: center; }
.border-x { border-left: 1px solid #e2e8f0; border-right: 1px solid #e2e8f0; }
/* --- サポートセクションのグリッドデザイン --- */
.support-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2列並び */
    gap: 30px;
    margin-top: 50px;
}

.support-item {
    display: flex;
    align-items: flex-start;
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.support-item:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border-color: var(--primary-blue);
}

.support-icon {
    font-size: 40px;
    margin-right: 25px;
    flex-shrink: 0;
}

.support-text h4 {
    font-size: 1.2rem;
    color: var(--primary-navy);
    margin-bottom: 10px;
}

.support-text p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-main);
}

/* スマホ対応：1列にする */
@media (max-width: 768px) {
    .support-grid {
        grid-template-columns: 1fr;
    }
    .support-item {
        padding: 20px;
    }
}
/* --- システム利用料（単一プラン） --- */
.pricing-single-card {
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 30px;
    padding: 60px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    max-width: 800px;
    margin: 0 auto;
}
.section-subtitle {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--text-muted);
    margin-bottom: 20px;
    text-align: center;
}
.pricing-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    margin-bottom: 50px;
}

/* 左側：人数サークル */
.usage-circle {
    width: 180px;
    height: 180px;
    background: #eef4ff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--primary-navy);
}

.usage-label { font-size: 16px; font-weight: bold; }
.usage-count { font-size: 24px; font-weight: bold; }
.user-icon { width: 60px; color: var(--primary-blue); }

/* 右側：価格エリア */
.tax-included-price {
    font-size: 14px;
    font-weight: bold;
    color: var(--text-main);
    margin-bottom: 5px;
}

.main-price {
    display: flex;
    align-items: baseline;
    color: var(--primary-navy);
    margin-bottom: 25px;
}

.main-price .amount {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
}

.main-price .currency {
    font-size: 2rem;
    font-weight: bold;
    margin: 0 10px;
}

.main-price .period {
    font-size: 1.5rem;
    font-weight: bold;
}

.price-notes {
    list-style: none;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.8;
}

.pricing-cta {
    text-align: center;
}

/* スマホ対応 */
@media (max-width: 768px) {
    .pricing-content {
        flex-direction: column;
        gap: 30px;
    }
    .main-price .amount { font-size: 3rem; }
    .pricing-single-card { padding: 40px 20px; }
}
/* --- リリース記念キャンペーンのスタイル --- */
.section-campaign {
    padding: 60px 0 20px; /* 下の価格セクションへ繋げるため下余白は少なめ */
}

.campaign-box {
    background: linear-gradient(135deg, #fffcf5 0%, #fff7ed 100%);
    border: 3px solid var(--accent-orange);
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.15);
}

.campaign-badge {
    display: inline-block;
    background: var(--accent-orange);
    color: #fff;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 20px;
}

.campaign-title {
    font-size: 1.8rem;
    color: var(--primary-navy);
    line-height: 1.4;
    margin-bottom: 40px;
}

.campaign-title span {
    color: var(--accent-orange);
    display: block;
    font-size: 2.2rem;
}

.campaign-content {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.campaign-item {
    flex: 1;
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 16px;
    border: 1px dashed var(--accent-orange);
}

.campaign-item-label {
    color: var(--accent-orange);
    font-weight: bold;
    font-size: 12px;
    margin-bottom: 10px;
}

.campaign-item h4 {
    font-size: 1.3rem;
    color: var(--primary-navy);
    margin-bottom: 15px;
}

.campaign-item p {
    font-size: 14px;
    color: var(--text-main);
}

.campaign-deadline {
    font-weight: bold;
    color: #ef4444; /* 注意を引く赤色 */
    margin-bottom: 20px;
}

.btn-campaign {
    display: inline-block;
    background: var(--accent-orange);
    color: #fff;
    padding: 20px 60px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(249, 115, 22, 0.3);
}

.btn-campaign:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(249, 115, 22, 0.4);
}

/* スマホ対応 */
@media (max-width: 768px) {
    .campaign-content {
        flex-direction: column;
    }
    .campaign-title span {
        font-size: 1.6rem;
    }
    .campaign-box {
        padding: 40px 20px;
    }
}
/* --- キャンペーンセクションの再構築 --- */
.section-campaign {
    padding: 80px 0;
    background-color: #ffffff;
}

.campaign-box {
    background: linear-gradient(135deg, #fffcf5 0%, #fff7ed 100%);
    border: 3px solid var(--accent-orange);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.1);
}

.campaign-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.campaign-card {
    background: #ffffff;
    padding: 35px 20px;
    border-radius: 16px;
    border: 1px solid #fed7aa;
    transition: transform 0.3s ease;
}

.campaign-card.highlight {
    border: 2px solid var(--accent-orange);
    transform: scale(1.05); /* メインの特典を少し大きく */
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.15);
}

/* 金額表示のスタイリング */
.price-display, .price-discount {
    margin: 20px 0;
    min-height: 90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.old-price {
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: line-through;
}

.new-price {
    font-size: 3.2rem;
    font-weight: 900;
    color: #ef4444; /* 強烈な赤 */
    line-height: 1;
}

.new-price span { font-size: 1.2rem; }

.discount-rate {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--primary-blue);
}

.discount-rate span { font-size: 1.2rem; }

/* Excel対象バッジ（緑色で差別化） */
.excel-target-badge {
    display: inline-block;
    background: #f0fdf4;
    color: #166534;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 25px;
    border: 1px solid #bbf7d0;
}

/* スマホ対応 */
@media (max-width: 900px) {
    .campaign-grid { grid-template-columns: 1fr; gap: 20px; }
    .campaign-card.highlight { transform: none; }
}
/* --- カウントダウンのデザイン --- */
.countdown-wrapper {
    margin-bottom: 30px;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    display: inline-block;
}

.countdown-label {
    font-weight: bold;
    color: var(--text-main);
    margin-bottom: 10px;
    font-size: 14px;
}

.countdown-display {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
}

.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-unit span {
    display: block;
    background: var(--primary-navy);
    color: #fff;
    font-size: 2.5rem;
    font-weight: 900;
    padding: 5px 10px;
    border-radius: 6px;
    min-width: 70px;
    line-height: 1.2;
}

.countdown-unit small {
    font-size: 12px;
    font-weight: bold;
    margin-top: 5px;
    color: var(--text-muted);
}

.campaign-deadline-text {
    font-size: 13px;
    color: #ef4444;
    font-weight: bold;
}
/* キャンペーンフッターを縦並びに強制 */
.campaign-footer {
    display: flex;
    flex-direction: column;
    align-items: center; /* 全て中央揃え */
    gap: 20px;           /* 要素同士の間隔を一律にする */
    margin-top: 40px;
}

/* カウントダウンの枠調整 */
.countdown-wrapper {
    margin-bottom: 10px; /* 下のExcelバッジとの微調整 */
    background: #ffffff;
    padding: 30px 40px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border: 1px solid #f1f5f9;
}

/* Excelターゲットバッジの微調整 */
.excel-target-badge {
    display: inline-block;
    background: #f0fdf4;
    color: #166534;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 15px;
    margin-bottom: 10px; /* ボタンとの距離 */
    border: 1px solid #bbf7d0;
}

/* ボタンの横幅を適切に */
.btn-campaign {
    min-width: 400px; /* カウントダウンと幅を合わせるとより綺麗 */
}

/* スマホ対応：バッジの文字を小さくして折り返しを防ぐ */
@media (max-width: 768px) {
    .btn-campaign {
        min-width: 100%;
    }
    .excel-target-badge {
        font-size: 13px;
        padding: 8px 15px;
    }
    .countdown-wrapper {
        padding: 20px 15px;
    }
}
/* --- Excel乗り換えプランのスタイル --- */
.section-excel-switch {
    padding: 40px 0 80px;
}

.excel-switch-banner {
    background-color: #ffffff;
    border: 2px solid #217346; /* Excelカラーのグリーン */
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 15px 35px rgba(33, 115, 70, 0.1);
    position: relative;
    overflow: hidden;
}

/* Excelカラーの装飾 */
.excel-switch-banner::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 8px;
    background: #217346;
}

.excel-switch-badge {
    display: inline-block;
    background: #217346;
    color: #fff;
    padding: 5px 15px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: bold;
    margin-bottom: 20px;
}

.excel-switch-title {
    font-size: 1.4rem;
    color: var(--primary-navy);
    line-height: 1.5;
    margin-bottom: 30px;
}

.excel-switch-title span {
    font-size: 2rem;
    color: #217346;
    display: block;
    margin-top: 10px;
}

/* あるあるリスト */
.excel-problem-list {
    background: #f0fdf4; /* ごく薄いグリーン */
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 40px;
    text-align: left;
}

.excel-problem-list p {
    font-weight: bold;
    color: #166534;
    margin-bottom: 15px;
}

.excel-problem-list ul {
    list-style: none;
    padding: 0;
}

.excel-problem-list li {
    font-size: 15px;
    margin-bottom: 10px;
    display: flex;
    gap: 10px;
}

.excel-problem-list span {
    color: #217346;
    font-weight: bold;
}

/* メリットカード */
.excel-benefit-grid {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.excel-benefit-card {
    flex: 1;
    background: #fff;
    border: 1px solid #e2e8f0;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
}

.eb-icon {
    font-size: 30px;
    margin-bottom: 15px;
}

.excel-benefit-card h4 {
    color: #217346;
    margin-bottom: 10px;
}

.excel-benefit-card p {
    font-size: 14px;
    line-height: 1.6;
}

/* ボタンとフッター */
.special-offer-text {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 25px;
}

.btn-excel-switch {
    display: inline-block;
    background: #217346;
    color: #fff;
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(33, 115, 70, 0.2);
    transition: 0.3s;
}

.btn-excel-switch:hover {
    transform: translateY(-3px);
    background: #1a5c38;
}

/* スマホ対応 */
@media (max-width: 768px) {
    .excel-benefit-grid {
        flex-direction: column;
    }
    .excel-switch-banner {
        padding: 40px 20px;
    }
    .excel-switch-title span {
        font-size: 1.5rem;
    }
}

/* --- ビジュアルエリアの調整 --- */
.feature-visual {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}
/* --- 導入フローセクションのスタイル --- */
.section-flow {
    padding: 80px 0;
    background-color: #ffffff;
}

.flow-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 60px;
    position: relative;
    gap: 20px;
}

/* ステップ間のコネクタ（線） */
.flow-container::before {
    content: "";
    position: absolute;
    top: 50px;
    left: 10%;
    right: 10%;
    height: 2px;
    background-color: #e2e8f0;
    z-index: 1;
}

.flow-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-circle {
    width: 100px;
    height: 100px;
    background-color: #ffffff;
    border: 3px solid var(--primary-navy);
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.step-label {
    font-size: 10px;
    font-weight: bold;
    color: var(--text-muted);
    letter-spacing: 0.1em;
}

.step-number {
    font-size: 28px;
    font-weight: 900;
    color: var(--primary-navy);
    line-height: 1;
}

.step-content h4 {
    font-size: 1.15rem;
    color: var(--primary-navy);
    margin-bottom: 15px;
    font-weight: bold;
}

.step-content p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-main);
    text-align: left;
    padding: 0 10px;
}

/* スマホ対応（縦並び） */
@media (max-width: 900px) {
    .flow-container {
        flex-direction: column;
        gap: 50px;
    }
    .flow-container::before {
        display: none; /* スマホでは線を消すか縦にする */
    }
    .flow-step {
        display: flex;
        align-items: center;
        text-align: left;
    }
    .step-circle {
        margin: 0 20px 0 0;
        flex-shrink: 0;
    }
    .step-content p {
        padding: 0;
    }
}

/* ロボットのスタイリング */
.robot-container {
    width: 200px; /* ロボットのサイズ調整 */
    z-index: 2;
    margin-bottom: -40px; /* 下のウィンドウと少し重ねる演出 */
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
}

.robot-character {
    width: 100%;
    height: auto;
    /* フワフワ浮くようなアニメーション（任意） */
    animation: floating 3s ease-in-out infinite;
}

/* ウィンドウ（操作画面）の調整 */
.small-mock {
    width: 100%;
    max-width: 450px;
    z-index: 1;
}

/* 浮遊アニメーションの設定 */
@keyframes floating {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

/* スマホ対応の微調整 */
@media (max-width: 768px) {
    .robot-container {
        width: 150px;
        margin-bottom: -20px;
    }
}

追加
/* --- 以前のスタイルを削除またはコメントアウト --- */
/*
.robot-container { ... }
.robot-character { ... }
@keyframes floating { ... }
*/

/* --- 新しいフラットロボット用のスタイルを追加 --- */
.robot-container-flat {
    width: 280px; /* フラットデザインに合わせて少し大きめに調整 */
    z-index: 2;
    margin-bottom: -50px; /* 操作画面と自然に重ねる */
    /* 影や浮遊アニメーションは削除してシンプルに */
}

.robot-character-flat {
    width: 100%;
    height: auto;
    display: block;
}

/* スマホ表示での調整（既存のメディアクエリ内に追加・修正） */
@media (max-width: 768px) {
    /* 以前の記述を修正 */
    .robot-container-flat {
        width: 200px;
        margin-bottom: -30px;
    }
}


/* --- 解決できることセクションのタイトル装飾 --- */
.section-title-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;      /* ロゴとテキストの間隔 */
    margin-bottom: 60px;
    flex-wrap: wrap; /* スマホで入り切らない場合に改行 */
}

.title-logo {
    height: 120px;    /* タイトルの文字サイズに合わせた高さ */
    width: auto;
    display: block;
}

.section-title-text {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-navy);
    margin-bottom: 0; /* 既存のmarginをリセット */
}

/* スマホ表示での調整 */
@media (max-width: 768px) {
    .section-title-wrapper {
        gap: 10px;
    }
    .title-logo {
        height: 35px; /* スマホでは少し小さく */
    }
    .section-title-text {
        font-size: 1.5rem;
    }
}
/* --- 作成可能帳票セクションのスタイル --- */
/* --- その下のセクション：主要な作成可能帳票（白背景に変更） --- */
.section-docs {
    background-color: #ffffff; /* 白背景に戻して対比させる */
    padding: 100px 0;
    margin-top: -50px; /* 前のセクションの斜め部分との隙間を埋める微調整 */
    position: relative;
    z-index: 2;
}

/* 帳票カードの影を少し強めて、白背景の上で浮かび上がらせる */
.docs-card {
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); /* 柔らかい影を追加 */
}

.docs-header {
    text-align: center;
    margin-bottom: 50px;
}

.docs-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-main);
}

.docs-intro span {
    color: var(--accent-orange);
    font-weight: bold;
}

.docs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3列並び */
    gap: 30px;
}

.docs-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    text-align: center;
}

.docs-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* 決算報告書（真ん中）を目立たせる */
.docs-card.highlight {
    border: 2px solid var(--primary-navy);
    position: relative;
}

.docs-card-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.docs-card h3 {
    font-size: 1.3rem;
    color: var(--primary-navy);
    margin-bottom: 25px;
}

.docs-card h3 span {
    display: block;
    font-size: 0.9rem;
    color: var(--accent-orange);
    margin-top: 5px;
}

.docs-list {
    text-align: left;
    list-style: none;
    padding: 0;
}

.docs-list li {
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 15px;
    position: relative;
    padding-left: 20px;
}

/* リストのチェックマーク */
.docs-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: bold;
}

.docs-note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 40px;
}

/* スマホ対応（縦並び） */
@media (max-width: 900px) {
    .docs-grid {
        grid-template-columns: 1fr;
    }
}

/* --- 特長セクションのチェックリスト修正 --- */
.feature-check-list {
    list-style: none; /* これで「・」が消えます */
    padding-left: 0;   /* デフォルトの左余白を消して左端に揃えます */
    margin-top: 20px;
}

.feature-check-list li {
    position: relative;
    padding-left: 25px; /* チェックアイコンが入るスペースを確保 */
    margin-bottom: 10px;
    font-weight: bold;
    list-style: none;   /* 念のためここにも入れておくと確実です */
}

/* オレンジのチェックアイコン部分（変更なし） */
.feature-check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-orange);
}
/* インラインのNEWタグ（赤色でアクセント） */
.new-tag-inline {
    background: #ef4444;
    color: #fff;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 3px;
    margin-left: 8px;
    vertical-align: middle;
    font-weight: bold;
}
/* --- サポート満足度セクションのスタイル --- */
.section-satisfaction {
    padding: 100px 0;
    background-color: #ffffff;
}
.section-satisfaction {
    position: relative;
    overflow: hidden; /* 矢印がはみ出さないように */
}

/* --- 満足度セクションの背景矢印：位置の再調整 --- */
.section-satisfaction {
    position: relative;
    overflow: hidden;
}

/* --- 満足度セクションの背景矢印：グラデーション化 --- */
.section-satisfaction::before {
    content: "↗";
    position: absolute;
    top: 120px;
    right: 15%;
    
    font-size: 450px;
    font-weight: 900;
    z-index: 0;
    pointer-events: none;
    line-height: 1;
    transform: rotate(5deg);

    /* --- ここからグラデーションの設定 --- */
    /* 下から上（to top）に向かって、ほぼ透明→薄いブルーへ変化 */
    background: linear-gradient(to top, rgba(28, 110, 206, 0.01) 20%, rgba(28, 110, 206, 0.08) 100%);
    
    /* 背景のグラデーションを「文字の形」で切り抜く */
    -webkit-background-clip: text;
    background-clip: text;
    
    /* 文字自体の色は透明にして、背景のグラデーションを見せる */
    color: transparent;
    /* --------------------------------- */
}

/* スマホ表示（変更なし、念のため記載） */
@media (max-width: 768px) {
    .section-satisfaction::before {
        top: 150px;
        right: 50%;
        transform: translateX(50%) rotate(5deg);
        font-size: 320px;
    }
}

.satisfaction-stats, .customer-voices {
    position: relative;
    z-index: 1; /* テキストを矢印の前に出す */
}
/* 実績の数字エリア */
.satisfaction-stats {
    display: flex;
    justify-content: center;
    gap: 100px;
    margin-bottom: 60px;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-label {
    font-size: 1rem;
    font-weight: bold;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-navy); /* 株式会社サクセスのネイビー */
    line-height: 1;
}

.stat-number span {
    font-size: 1.2rem;
    margin-left: 5px;
}

.stat-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 10px;
}

/* お客様の声カード */
.customer-voices {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.voice-card {
    background: #f8fafc;
    padding: 35px;
    border-radius: 16px;
    position: relative;
    border: 1px solid #e2e8f0;
}

.voice-card.highlight {
    border-color: var(--primary-blue);
    background-color: #f0f9ff;
}

.voice-tag {
    display: inline-block;
    background: var(--primary-blue);
    color: #fff;
    padding: 2px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 20px;
}

.voice-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-main);
    font-style: italic;
}

/* スマホ対応 */
@media (max-width: 900px) {
    .satisfaction-stats {
        flex-direction: column;
        gap: 40px;
    }
    .customer-voices {
        grid-template-columns: 1fr;
    }
}
/* --- FAQセクションのスタイル --- */
.section-faq {
    padding: 80px 0;
    background-color: #f8fafc;
}

.faq-list {
    margin-top: 40px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item summary {
    padding: 20px 25px;
    font-weight: bold;
    color: var(--primary-navy);
    cursor: pointer;
    list-style: none; /* デフォルトの三角形を消す */
    position: relative;
    padding-right: 50px;
    outline: none;
}

/* 独自のプラスアイコンを表示 */
.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: var(--accent-orange);
    transition: transform 0.3s;
}

/* 開いている時のアイコン変化 */
.faq-item[open] summary::after {
    content: "−";
    transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
    padding: 0 25px 25px;
    border-top: 1px solid #f1f5f9;
}

.faq-answer p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-main);
    margin: 20px 0 0;
}

/* ホバー時に少し浮かせる */
.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
/* --- 電話お問い合わせエリア --- */
.contact-phone-box {
    text-align: center;
    background: #ffffff;
    border: 2px solid var(--primary-blue);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.phone-label {
    font-size: 16px;
    font-weight: bold;
    color: var(--primary-navy);
    margin-bottom: 10px;
}

.phone-number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
}

.phone-number a {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-blue);
    text-decoration: none;
}

.phone-hours {
    font-size: 14px;
    color: var(--text-muted);
}

/* スマホでは電話をかけやすく */
@media (max-width: 768px) {
    .phone-number a {
        font-size: 1.8rem;
    }
}


/* --- フォームセクション --- */
.section-form {
    background-color: var(--bg-slate);
    padding: 100px 0;
}

.contact-form {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 14px;
}

.required {
    background: #ef4444;
    color: var(--white);
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 8px;
    vertical-align: middle;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 16px;
    color: var(--text-main);
    transition: border-color 0.2s;
}
/* --- 都道府県セレクトボックスの修正（矢印を1つにし、プレースホルダーの色をグレーに） --- */

/* 1. 矢印を1つにするためのリセットと設定 */
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 16px;
    background-color: #ffffff;
    transition: border-color 0.2s;

    /* ブラウザ標準の矢印を完全に消す */
    appearance: none;
    -webkit-appearance: none;  /* Safari/Chrome用 */
    -moz-appearance: none;     /* Firefox用 */

    /* 代わりに、独自のデザインの矢印アイコンを背景として1つだけ追加 */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748b'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 18px;
    padding-right: 40px; /* 矢印と文字が重ならないように */
}

/* フォーカス時の色を統一 */
.form-group select:focus {
    outline: none;
    border-color: var(--primary-blue);
    background-color: #f8faff;
}


/* 2. プレースホルダーのテキスト「選択してください」の色をグレーにする */
.form-group select {
    /* 初期状態（未選択）は、プレースホルダーの色（グレー）にする */
    color: var(--text-muted); /* 既存のグレーの変数を使う。なければ #94a3b8 など */
}

/* 値が選択された（validな）状態になったら、文字色を黒（通常色）にする */
.form-group select:valid {
    color: var(--text-main); /* 既存の黒の変数を使う。なければ #333333 など */
}

/* 選択肢（option）自体の文字色は常に黒（通常色）にする */
.form-group select option {
    color: var(--text-main);
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    background-color: #f8faff;
}

.radio-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    background: #f8fafc;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.radio-group label {
    font-weight: normal;
    margin-bottom: 0;
    cursor: pointer;
}

.form-agreement {
    text-align: center;
    margin: 40px 0 20px;
}

.form-agreement a {
    color: var(--primary-blue);
    text-decoration: underline;
}

.form-submit {
    text-align: center;
}

/* スマホ対応 */
@media (max-width: 768px) {
    .contact-form {
        padding: 30px 20px;
    }
    .radio-group {
        grid-template-columns: 1fr;
    }
}
/* ラジオボタンの選択肢をより見やすく調整 */
.radio-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    padding: 5px 0;
}

/* スマホでは1列にして、タップしやすくする */
@media (max-width: 768px) {
    .radio-group {
        display: flex;
        flex-direction: column;
    }
}
/* --- キャンペーンチェックボックスの完全修正版 --- */
.form-group label.checkbox-container {
    display: flex !important;    /* 強制的に横並びにする */
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    width: 100%;
    background: none;            /* 背景色の上書きを防ぐ */
    padding: 0;
    margin-bottom: 0;
}

.checkbox-container input[type="checkbox"] {
    flex-shrink: 0;             /* チェックボックスを潰さない */
    width: 20px;
    height: 20px;
    margin-top: 4px;            /* 1行目のテキストと高さを合わせる */
}

/* 不要な空のspan（checkmark）が隙間を作らないように非表示に */
.checkbox-container .checkmark {
    display: none;
}
/* --- 送信完了メッセージのスタイル --- */
.form-success-message {
    text-align: center;
    padding: 40px 20px;
    animation: fadeIn 0.5s ease-out;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #22c55e; /* 緑色 */
    color: white;
    font-size: 40px;
    line-height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.form-success-message h3 {
    color: var(--primary-navy);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.form-success-message p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.8;
}

.success-note {
    margin-top: 15px;
    font-size: 12px !important;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
/* --- パターンB：フォーム一体型ヘッダーのデザイン --- */
.form-intro-label {
    text-align: left;
    background-color: var(--primary-navy); /* ロゴと同じネイビー */
    color: #ffffff;
    padding: 20px 30px;
    border-radius: 12px 12px 0 0; /* 上側だけ丸くしてフォームと合体 */
    margin-top: 20px;
}

.form-intro-label p {
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0;
    letter-spacing: 0.05em;
}

.form-intro-label span {
    font-size: 0.85rem;
    opacity: 0.9;
    display: block;
    margin-top: 4px;
}

/* フォーム本体の枠線を調整してヘッダーと繋げる */
.contact-form-styled {
    background-color: #ffffff;
    border: 2px solid var(--primary-navy); /* ヘッダーと同じ色の枠線 */
    border-top: none; /* ヘッダーと接する部分は線を消す */
    padding: 40px;
    border-radius: 0 0 12px 12px; /* 下側だけ丸く */
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* スマホ対応 */
@media (max-width: 768px) {
    .form-intro-label {
        padding: 15px 20px;
    }
    .contact-form-styled {
        padding: 25px 20px;
    }
}
/* --- キャンペーンチェックボックスの専用スタイル --- */
.campaign-check-area {
    background-color: #fff7ed; /* ほんのりオレンジの背景 */
    padding: 20px;
    border: 2px solid var(--accent-orange);
    border-radius: 12px;
    margin-bottom: 30px;
}

/* チェックボックス本体を隠して、カスタムデザインを作る */
.checkbox-container input {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--accent-orange); /* 最近のブラウザならこれだけでオレンジに */
}

.checkbox-label {
    display: flex;
    flex-direction: column;
}

.checkbox-label strong {
    font-size: 16px;
    color: var(--primary-navy);
    margin-bottom: 4px;
}

.checkbox-label small {
    font-size: 13px;
    color: var(--accent-orange);
    font-weight: bold;
}

/* スマホ表示での調整 */
@media (max-width: 768px) {
    .campaign-check-area {
        padding: 15px;
    }
    .checkbox-label strong {
        font-size: 14px;
    }
}
/* --- キャンペーンチェックボックスの修正版 --- */
.checkbox-container {
    display: flex;             /* 横並びにする */
    align-items: flex-start;    /* チェックボックスを1行目の高さに合わせる */
    gap: 12px;                  /* チェックボックスと文字の間隔 */
    cursor: pointer;
    width: 100%;                /* 横幅いっぱいに広げる */
}
.checkbox-container input[type="checkbox"] {
    flex-shrink: 0;             /* チェックボックスが潰れないように固定 */
    width: 20px;                /* サイズを明示的に指定 */
    height: 20px;
    margin-top: 4px;            /* 文字の1行目と高さを微調整 */
}

.checkbox-label {
    flex: 1;                    /* 残りの横幅をすべてテキストに割り当てる */
    text-align: left;           /* テキストを左寄せにする */
    line-height: 1.5;           /* 行間を整える */
}
/* --- 運営会社情報セクション --- */
.section-company {
    background-color: #ffffff;
    padding: 80px 0;
}

.company-card {
    background: #f8fafc;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 50px;
}

.company-logo-area {
    flex: 0 0 200px;
    text-align: center;
}

.company-section-logo {
    width: 60%;
    height: auto;
}

.company-table {
    flex: 1;
    border-collapse: collapse;
    width: 100%;
}

.company-table th, 
.company-table td {
    padding: 15px 0;
    border-bottom: 1px solid #e2e8f0;
    text-align: left;
    font-size: 15px;
}

.company-table th {
    width: 150px;
    color: var(--primary-navy);
    font-weight: bold;
}

.company-table td a {
    color: var(--primary-blue);
    text-decoration: underline;
}

/* スマホ対応 */
@media (max-width: 768px) {
    .company-card {
        flex-direction: column;
        padding: 30px 20px;
        gap: 30px;
    }
    .company-logo-area {
        flex: none;
        width: 150px;
    }
    .company-table th {
        width: 80px;
        font-size: 14px;
    }
    .company-table td {
        font-size: 14px;
    }
}

/* --- フッター --- */
.site-footer { background: #f1f5f9; padding: 80px 0; text-align: center; border-top: 1px solid #e2e8f0; }
.footer-title { margin-bottom: 30px; }
.footer-cta { display: flex; justify-content: center; gap: 20px; margin-bottom: 50px; }
.footer-product { font-weight: bold; color: var(--text-muted); margin-bottom: 10px; }
.footer-copy { font-size: 12px; color: #94a3b8; }

/* --- レスポンス対応 --- */
@media (max-width: 1024px) {
    .col-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .header-nav { display: none; }
    .hero-title { font-size: 2rem; }
    .col-3, .col-4 { grid-template-columns: 1fr; }
    .hero-cta-group, .footer-cta, .seminar-info-grid { flex-direction: column; align-items: center; }
    .btn-xl { width: 100%; }
    .hero-title-sub br { display: none; }
}
/* --- ハンバーガーボタンのスタイル --- */
.hamburger {
    display: none; /* デスクトップでは隠す */
    position: relative;
    width: 30px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.hamburger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-navy);
    transition: all 0.3s;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 11px; }
.hamburger span:nth-child(3) { bottom: 0; }

/* ボタンがアクティブな時（×印に変形） */
.hamburger.is-active span:nth-child(1) { transform: translateY(11px) rotate(45deg); }
.hamburger.is-active span:nth-child(2) { opacity: 0; }
.hamburger.is-active span:nth-child(3) { transform: translateY(-11px) rotate(-45deg); }

/* --- スマホ用ナビゲーションのスタイル --- */
@media (max-width: 768px) {
    .hamburger {
        display: block; /* スマホで表示 */
    }

    .header-nav {
        position: fixed;
        top: 0;
        right: -100%; /* 最初は画面の外側に隠す */
        width: 80%;
        height: 100vh;
        background: var(--white);
        box-shadow: -10px 0 20px rgba(0,0,0,0.1);
        padding: 100px 40px;
        flex-direction: column;
        align-items: flex-start;
        transition: all 0.4s ease;
        z-index: 1050;
        display: flex; /* gridやnoneではなくflexで制御 */
    }

    /* メニューが開いている状態 */
    .header-nav.is-active {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        gap: 30px;
        width: 100%;
        margin-bottom: 40px;
    }

    .nav-links a {
        font-size: 18px;
        display: block;
        width: 100%;
    }

    .header-cta {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .header-cta .btn-sm {
        width: 100%;
        padding: 15px;
    }
}
/* --- 1. 全体的なフォントサイズの基本を一段下げる --- */
body {
    font-size: 15px; /* 標準サイズに固定 */
}

/* --- 2. 解決できること（01, 02）の巨大化を止める --- */
.feature-item {
    gap: 30px; /* 画像と説明文の間隔を狭める */
    margin-bottom: 60px; /* セクション間の余白を詰める */
    align-items: flex-start; /* 縦長にならないよう上に揃える */
}

.feature-text {
    flex: 0 1 450px; /* 説明文が広がりすぎないよう上限を設ける */
}

.feature-visual {
    flex: 0 1 400px; /* 画像エリアがこれ以上大きくならないよう固定気味にする */
}

/* ウィンドウサンプルのサイズを具体的に制限 */
.window-mock {
    max-width: 400px; /* 画像の横幅を最大400pxに制限 */
    margin: 0 auto;
}

.feature-heading {
    font-size: 1.5rem; /* 見出しを少し小さく */
    margin-bottom: 15px;
}
/* --- AIコピー詳細セクション --- */
.section-ai-detail {
    padding: 100px 0;
    background-color: #f0f7ff; /* AIをイメージした薄いブルー */
}

/* ステップ図の並び */
.ai-flow-diagram {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 60px 0;
    gap: 15px;
}

.ai-flow-step {
    flex: 1;
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.ai-flow-step.highlight {
    border: 2px solid var(--accent-orange);
}

.step-label {
    display: inline-block;
    background: var(--primary-navy);
    color: #fff;
    padding: 2px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: bold;
    margin-bottom: 15px;
}

.step-visual {
    font-size: 40px;
    margin-bottom: 15px;
}

.ai-flow-arrow {
    font-size: 24px;
    color: var(--primary-blue);
    font-weight: bold;
}

/* スクリーンショットと説明の横並び */
.ai-screenshot-showcase {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 80px;
    background: #fff;
    padding: 40px;
    border-radius: 20px;
}

.screenshot-desc {
    flex: 1;
}

.screenshot-desc h3 {
    color: var(--primary-navy);
    margin-bottom: 20px;
}

.screenshot-desc ul {
    list-style: none;
    padding: 0;
}

.screenshot-desc li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.screenshot-desc li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
}

.user-voice-mini {
    margin-top: 30px;
    padding: 20px;
    background: #fff9f2;
    border-left: 4px solid var(--accent-orange);
    font-size: 14px;
    color: #444;
    line-height: 1.6;
}

.screenshot-image {
    flex: 1.2;
}

.screenshot-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.caption {
    text-align: center;
    font-size: 12px;
    color: #999;
    margin-top: 10px;
}

/* スマホ対応 */
@media (max-width: 900px) {
    .ai-flow-diagram, .ai-screenshot-showcase {
        flex-direction: column;
    }
    .ai-flow-arrow {
        transform: rotate(90deg);
    }
}
/* --- 3. システム利用料（価格）をコンパクトに --- */
.pricing-single-card {
    max-width: 650px; /* カードが横に広がりすぎるのを防ぐ */
    padding: 35px; /* 内側の余白をタイトに */
}

.main-price .amount {
    font-size: 2.8rem; /* 4remから大幅にシュリンク */
}

.usage-circle {
    width: 140px; /* 円を少し小さく */
    height: 140px;
}

/* --- 4. ロボットと画像の重なりを微調整 --- */
.robot-container-flat {
    width: 180px; /* ロボットも少し小ぶりに */
    margin-bottom: -40px;
}

/* --- Heroセクションの2カラム化 --- */
.hero {
    padding: 60px 0; /* 上下の余白を少し調整 */
    overflow: hidden; /* 画像がはみ出た場合の対策 */
}

.hero-flex {
    display: flex;
    align-items: center; /* 上下中央揃え */
    justify-content: space-between;
    gap: 50px; /* テキストと画像の間隔 */
}

.hero-text {
    flex: 1; /* 左側のテキストエリア */
    max-width: 600px; /* テキストが横に広がりすぎないように */
    text-align: left; /* 左揃えに変更 */
}

/* 既存のクラスの微調整（上書き） */
.hero-title {
    font-size: 2.4rem; /* タイトルサイズ */
    line-height: 1.4;
}

.hero-subtext {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.hero-badges {
    justify-content: flex-start; /* バッジも左揃え */
    margin-bottom: 40px;
}

.hero-cta {
    justify-content: flex-start; /* ボタンも左揃え */
}

/* 右側のビジュアル画像エリア */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-img {
    width: 100%;
    max-width: 600px; /* 画像の最大幅 */
    height: auto;
    /* 画像を少し浮かび上がらせる演出 */
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.1));
    /* 登場時のアニメーション（任意） */
    animation: fadeUp 1s ease-out;
}

/* シンプルなフェードアップアニメーション */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* スマホ対応（900px以下） */
@media (max-width: 900px) {
    .hero-flex {
        flex-direction: column-reverse; /* 画像を上、テキストを下に */
        text-align: center;
        gap: 30px;
        padding-top: 30px;
    }
    .hero-text {
        text-align: center;
        max-width: 100%;
    }
    .hero-badges, .hero-cta {
        justify-content: center;
    }
    .hero-visual {
        width: 90%; /* スマホでは少し小さめに */
        max-width: 400px;
    }
}
/* --- Heroセクションのボタン・CTAエリアの強化 --- */

.hero-cta {
    display: flex;
    gap: 20px; /* ボタン同士の間隔 */
    margin-top: 40px;
    align-items: center;
}

/* メインボタン（オレンジ）とサブボタン（ネイビー）共通の強化 */
.hero-cta .btn-main,
.hero-cta .btn-sub {
    padding: 18px 35px; /* 上下左右の余白を増やして大きくする */
    font-size: 1.1rem;   /* 文字サイズを少し大きく */
    font-weight: bold;
    border-radius: 8px;
    text-align: center;
    white-space: nowrap; /* 改行を防いで形を保つ */
    min-width: 220px;    /* ボタンの最小横幅を確保 */
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* 軽い影をつけて立体感を出す */
    transition: transform 0.2s, box-shadow 0.2s;
}

/* ホバー時の演出（さらに「押せる感」を出す） */
.hero-cta .btn-main:hover,
.hero-cta .btn-sub:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* スマホ表示（900px以下）の調整 */
@media (max-width: 900px) {
    .hero-cta {
        flex-direction: column; /* スマホでは縦に並べて押しやすく */
        width: 100%;
        max-width: 400px;
        margin: 40px auto 0;
    }
    .hero-cta .btn-main,
    .hero-cta .btn-sub {
        width: 100%; /* スマホでは横幅いっぱい */
        padding: 15px 20px;
    }
}
/* --- 1. セミナー告知タグの復活 --- */
.hero-tag {
    display: inline-block;
    padding: 6px 15px;
    border: 1px solid var(--accent-orange); /* オレンジの枠線 */
    color: var(--accent-orange);
    background-color: #fff9f5; /* ほんのりオレンジの背景 */
    border-radius: 50px;       /* 角丸 */
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 25px;
}

/* --- 2. 特長バッジ（✓リスト）の復活 --- */
.hero-badges {
    display: flex;
    flex-wrap: wrap; /* スマホで入り切らない時に改行 */
    gap: 12px;
    margin-bottom: 40px;
    justify-content: flex-start; /* 左寄せ */
}

.hero-badges span {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary-navy);
    display: flex;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05); /* 軽い影 */
}

/* チェックアイコンの緑色 */
.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background-color: #22c55e; /* 緑色 */
    color: white;
    font-size: 11px;
    font-style: normal;
    border-radius: 4px;
    margin-right: 8px;
    font-weight: bold;
}

/* スマホ対応：中央寄せに戻す（メディアクエリ内） */
@media (max-width: 900px) {
    .hero-badges {
        justify-content: center;
    }
}