@charset "UTF-8";

/* ===========================
   地域と、ともにページ専用CSS（local.css）
   このファイルはlocalページにのみ適用されます
=========================== */


/* ===========================
   全セクション共通パーツ
=========================== */
section { padding: 96px 80px; }
.section-label { font-size: 15px; letter-spacing: 0.25em; color: var(--teal-dark); margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.section-label::before { content: ''; display: block; width: 24px; height: 2px; background: var(--teal); }
.section-title { font-family: 'Shippori Mincho', serif; font-size: clamp(34px, 3.5vw, 40px); line-height: 1.5; margin-bottom: 16px; color: var(--navy); }
.section-desc { color: var(--text-light); font-size: 22px; line-height: 2.2; font-weight: 300; }
/* メインボタン */
.btn-primary { background: var(--teal); color: var(--navy); padding: 16px 36px; font-size: 22px; font-weight: 700; text-decoration: none; border-radius: 100px; display: inline-block; transition: all 0.2s; border: 2px solid var(--teal); }
.btn-primary:hover { background: var(--teal-dark); border-color: var(--teal-dark); color: var(--white); }
/* サブボタン（白枠・紺背景用） */
.btn-secondary { border: 2px solid var(--white); color: var(--white); padding: 16px 36px; font-size: 22px; text-decoration: none; border-radius: 100px; display: inline-block; transition: all 0.2s; }
.btn-secondary:hover { background: rgba(255,255,255,0.1); }

/* ===========================
   1. ヒーローセクション（紺背景）
   ページ最上部のタイトルエリア
=========================== */
.hero {
  min-height: 70vh; background: var(--navy);
  display: flex; align-items: center;
  padding: 140px 80px 80px; position: relative; overflow: hidden;
}
/* 右上のグラデーション装飾 */
.hero::before { content: ''; position: absolute; top: -200px; right: -200px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(130,216,208,0.12) 0%, transparent 70%); }
/* 左下のグラデーション装飾 */
.hero::after { content: ''; position: absolute; bottom: -100px; left: -100px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(130,216,208,0.06) 0%, transparent 70%); }
.hero-content { position: relative; z-index: 1; max-width: 760px; }
/* 英語ラベル */
.hero-label { display: inline-flex; align-items: center; gap: 10px; font-size: 15px; letter-spacing: 0.2em; color: var(--teal); margin-bottom: 28px; }
.hero-label::before { content: ''; display: block; width: 28px; height: 2px; background: var(--teal); }
/* ページタイトル */
.hero h1 { font-family: 'Shippori Mincho', serif; font-size: clamp(34px, 5vw, 58px); color: var(--white); line-height: 1.5; font-weight: 700; margin-bottom: 24px; }
.hero h1 em { font-style: normal; color: var(--teal); }
/* サブテキスト */
.hero-sub { color: rgba(255,255,255,0.85); font-size: 22px; line-height: 2.2; font-weight: 300; margin-bottom: 40px; }
/* ヒーローボタングループ */
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===========================
   2. お悩みセクション（薄グレー背景）
   商工会議所・市役所担当者のお悩みを3列で表示
=========================== */
.worries { background: var(--bg2); }
.worries-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
.worry-card { background: var(--white); border: 1.5px solid var(--border); border-radius: 16px; padding: 32px 28px; transition: all 0.3s; }
.worry-card:hover { border-color: var(--teal); box-shadow: 0 8px 32px rgba(130,216,208,0.15); }
.worry-icon { font-size: 32px; margin-bottom: 14px; display: block; }
.worry-card h3 { font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.worry-card p { font-size: 22px; color: var(--text-light); line-height: 2.2; font-weight: 300; }

/* ===========================
   3. 解決策セクション（白背景）
   左：引用 / 右：説明文
=========================== */
.solution { background: var(--white); }
.solution-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-top: 56px; }
/* 左側の大きな引用テキスト */
.solution-quote { font-family: 'Shippori Mincho', serif; font-size: clamp(26px, 2.5vw, 30px); line-height: 2.2; color: var(--navy); border-left: 4px solid var(--teal); padding-left: 28px; }
.solution-quote em { font-style: normal; color: var(--teal-dark); }
.solution-body p { color: var(--text-light); font-size: 22px; line-height: 2.2; font-weight: 300; margin-bottom: 16px; }
.solution-body strong { color: var(--navy); font-weight: 700; }

/* ===========================
   4. 対象者セクション（紺背景）
   どんな団体・企業向けかを3列カードで表示
=========================== */
.targets { background: var(--navy); }
.targets .section-label { color: var(--teal); }
.targets .section-label::before { background: var(--teal); }
.targets .section-title { color: var(--white); }
.targets-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.target-card { background: rgba(130,216,208,0.06); border: 1px solid rgba(130,216,208,0.25); border-radius: 16px; padding: 36px 28px; transition: all 0.3s; }
.target-card:hover { background: rgba(130,216,208,0.12); border-color: rgba(130,216,208,0.5); }
.target-icon { font-size: 36px; margin-bottom: 16px; display: block; }
.target-card h3 { font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.target-card p { font-size: 22px; color: rgba(255,255,255,0.85); line-height: 2.2; font-weight: 300; }
/* 対象者カード下部のタグ */
.target-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.target-tag { font-size: 15px; background: rgba(130,216,208,0.15); color: var(--teal); padding: 4px 10px; border-radius: 100px; border: 1px solid rgba(130,216,208,0.3); }

/* ===========================
   5. セミナーメニューセクション（薄ティール背景）
   セミナーのメニューを2列カードで表示
=========================== */
.seminars { background: var(--teal-pale); }
.seminar-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 56px; }
.seminar-card { background: var(--white); border: 1.5px solid var(--border); border-radius: 16px; padding: 36px 32px; transition: all 0.3s; }
.seminar-card:hover { border-color: var(--teal); box-shadow: 0 8px 40px rgba(130,216,208,0.2); transform: translateY(-4px); }
/* セミナー番号ラベル */
.seminar-num { font-size: 15px; color: var(--teal-dark); letter-spacing: 0.15em; display: block; margin-bottom: 8px; }
.seminar-card h3 { font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 12px; line-height: 1.4; }
.seminar-card p { font-size: 22px; color: var(--text-light); line-height: 2.2; font-weight: 300; margin-bottom: 20px; }
/* 時間・人数などのメタ情報 */
.seminar-meta { display: flex; gap: 16px; flex-wrap: wrap; }
.seminar-meta-item { display: flex; align-items: center; gap: 6px; font-size: 15px; color: var(--teal-dark); font-weight: 700; }
/* セミナーカード下部のタグ */
.seminar-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.tag { font-size: 15px; background: var(--teal-pale); color: var(--teal-dark); padding: 4px 10px; border-radius: 100px; }

/* ===========================
   6. 実績セクション（白背景）
   セミナー実績カードと数字実績を表示
=========================== */
.results { background: var(--white); }
.results-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; margin-top: 56px; }
.result-card { border: 1.5px solid var(--border); border-radius: 16px; overflow: hidden; transition: all 0.3s; }
.result-card:hover { border-color: var(--teal); box-shadow: 0 8px 32px rgba(130,216,208,0.15); }
/* カードヘッダー（紺背景） */
.result-card-header { background: var(--navy); padding: 24px 28px; }
.result-badge { display: inline-block; background: var(--teal); color: var(--navy); font-size: 15px; padding: 4px 12px; border-radius: 100px; font-weight: 700; margin-bottom: 12px; }
.result-card-header h3 { font-family: 'Shippori Mincho', serif; font-size: 22px; color: var(--white); line-height: 1.4; }
/* カードボディ（白背景） */
.result-card-body p { font-size: 22px; color: var(--text-light); line-height: 2.2; font-weight: 300; margin-bottom: 16px; }
.result-list { list-style: none; }
.result-list li { font-size: 22px; color: var(--text-light); padding: 9px 0 9px 22px; border-bottom: 1px solid var(--border); position: relative; font-weight: 300; }
.result-list li:last-child { border-bottom: none; }
.result-list li::before { content: '✓'; color: var(--teal-dark); position: absolute; left: 0; font-weight: 700; }
/* 数字実績グリッド（3列） */
.result-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 48px; }
.result-stat { text-align: center; padding: 28px 20px; background: var(--teal-pale); border-radius: 16px; border: 1.5px solid var(--teal-mid); }
.result-stat-num { font-family: 'Shippori Mincho', serif; font-size: 40px; color: var(--navy); line-height: 1; display: block; }
.result-stat-num sup { font-size: 22px; }
.result-stat-label { font-size: 15px; color: var(--text-light); display: block; margin-top: 8px; font-weight: 300; line-height: 1.6; }

/* ===========================
   7. フローセクション（薄グレー背景）
   依頼から完了までの4ステップを横並びで表示
=========================== */
.flow { background: var(--bg2); }
/* 4列の横並びフロー */
.flow-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 56px; position: relative; }
.flow-step { background: var(--white); border: 1.5px solid var(--border); padding: 32px 24px; text-align: center; position: relative; transition: all 0.3s; }
/* ステップ間の矢印 → */
.flow-step:not(:last-child)::after { content: '→'; position: absolute; right: -18px; top: 50%; transform: translateY(-50%); font-size: 22px; color: var(--teal); z-index: 1; }
/* 角丸の設定（左端・右端のみ） */
.flow-step:first-child { border-radius: 16px 0 0 16px; }
.flow-step:last-child { border-radius: 0 16px 16px 0; }
.flow-step:hover { border-color: var(--teal); background: var(--teal-pale); }
/* ステップ番号 */
.flow-num { font-family: 'Shippori Mincho', serif; font-size: 36px; color: var(--teal); line-height: 1; margin-bottom: 12px; display: block; }
.flow-step h3 { font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.flow-step p { font-size: 22px; color: var(--text-light); line-height: 2.2; font-weight: 300; }

/* ===========================
   CTAセクション（紺背景）
   お問合せ誘導エリア
=========================== */
.cta { background: var(--navy); text-align: center; }
.cta .section-label { justify-content: center; color: var(--teal); }
.cta .section-label::before { background: var(--teal); }
.cta h2 { font-family: 'Shippori Mincho', serif; font-size: clamp(34px, 4vw, 44px); color: var(--white); line-height: 1.6; margin-bottom: 16px; }
.cta h2 em { font-style: normal; color: var(--teal); }
.cta p { color: rgba(255,255,255,0.85); font-size: 22px; line-height: 2.2; font-weight: 300; margin-bottom: 44px; }
.cta-note { font-size: 22px; color: rgba(255,255,255,0.6); margin-top: 18px; }
/* CTAボタングループ（中央寄せ） */
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }


/* ===========================
   レスポンシブ：タブレット以下（900px以下）
=========================== */
@media (max-width: 900px) {
  section { padding: 64px 28px; }
  header { padding: 0 24px; }
  .hero { padding: 120px 28px 64px; }
  .worries-grid { grid-template-columns: 1fr; }
  .solution-inner { grid-template-columns: 1fr; gap: 40px; }
  .targets-grid { grid-template-columns: 1fr; }
  .seminar-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .result-stats { grid-template-columns: 1fr; }
  .flow-steps { grid-template-columns: 1fr; }
  /* スマホでは矢印を下向きに変更 */
  .flow-step:not(:last-child)::after { content: '↓'; right: auto; left: 50%; bottom: -18px; top: auto; transform: translateX(-50%); }
  .flow-step:first-child { border-radius: 16px 16px 0 0; }
  .flow-step:last-child { border-radius: 0 0 16px 16px; }
  nav a:not(.nav-cta) { display: none; }
  footer { padding: 40px 28px 28px; }
  .footer-inner { flex-direction: column; gap: 24px; }
}

/* ===========================
   レスポンシブ：スマホ（600px以下）
=========================== */
@media (max-width: 600px) {
  p, li, .section-desc { font-size: 18px !important; line-height: 2.2 !important; }
  .tag, .target-tag, .seminar-meta-item { font-size: 15px !important; }
}