@charset "UTF-8";

/* ===========================
   事業者の方へページ専用CSS（business.css）
   このファイルはbusinessページにのみ適用されます
   ※local.cssをベースに事業者向けページ用として作成
=========================== */

/* ===========================
   全セクション共通パーツ
=========================== */
section { padding: 96px 80px; }
/* 英語小見出し */
.section-label { font-size: var(--font-label); 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: var(--font-card); line-height: 2.2; font-weight: 300; }
/* メインボタン */
.btn-primary { background: var(--teal); color: var(--navy); padding: 16px 36px; font-size: var(--font-card); 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: var(--font-card); 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: 100px 80px 50px; 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: var(--font-label); 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: var(--font-card); line-height: 2.2; font-weight: 300; margin-bottom: 40px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===========================
   2. お悩みセクション（薄グレー背景）
=========================== */
.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-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.worry-card-header .worry-icon { font-size: 28px; margin-bottom: 0; background: var(--teal-pale); border: 1.5px solid var(--teal-mid); border-radius: 10px; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.worry-card-header h3 { margin-bottom: 0; }
.worry-card h3 { font-size: var(--font-card); font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.worry-card p { font-size: var(--font-card); 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: var(--font-card); line-height: 2.2; font-weight: 300; margin-bottom: 16px; }
.solution-body strong { color: var(--navy); font-weight: 700; }

/* ===========================
   4. 対象者セクション（紺背景）
=========================== */
.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; display: flex; flex-direction: column; }
.target-card:hover { background: rgba(130,216,208,0.12); border-color: rgba(130,216,208,0.5); }
.target-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.target-card-header .target-icon { font-size: 28px; margin-bottom: 0; background: rgba(130,216,208,0.2); border-radius: 10px; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.target-card-header h3 { margin-bottom: 0; }
.target-card h3 { font-size: var(--font-card); font-weight: 700; color: var(--white); margin-bottom: 12px; }
.target-card p { font-size: var(--font-card); 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: auto; }
.target-tag { font-size: var(--font-label); 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. サービスメニューセクション（薄ティール背景）
=========================== */
.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: var(--font-label); color: var(--teal-dark); letter-spacing: 0.15em; display: block; margin-bottom: 8px; }
.seminar-card h3 { font-size: var(--font-card); font-weight: 700; color: var(--navy); margin-bottom: 12px; line-height: 1.4; }
.seminar-card p { font-size: var(--font-card); 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: var(--font-label); color: var(--teal-dark); font-weight: 700; }
.seminar-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.tag { font-size: var(--font-label); 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: var(--font-label); padding: 4px 12px; border-radius: 100px; font-weight: 700; margin-bottom: 12px; }
.result-card-header h3 { font-family: 'Shippori Mincho', serif; font-size: var(--font-card); color: var(--white); line-height: 1.4; }
.result-card-body { padding: 24px 28px; }
.result-card-body p { font-size: var(--font-card); color: var(--text-light); line-height: 2.2; font-weight: 300; margin-bottom: 16px; }
.result-list { list-style: none; }
.result-list li { font-size: var(--font-card); 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; }
.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: var(--font-card); }
.result-stat-label { font-size: var(--font-label); color: var(--text-light); display: block; margin-top: 8px; font-weight: 300; line-height: 1.6; }

/* ===========================
   7. フローセクション（薄グレー背景）
=========================== */
.flow { background: var(--bg2); }
.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: var(--font-card); 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: var(--font-card); font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.flow-step p { font-size: var(--font-card); color: var(--text-light); line-height: 2.2; font-weight: 300; }

/* ===========================
   料金導線セクション（薄ティール背景）
   FLOWとCTAの間に配置
=========================== */
.price-lead { background: var(--teal-pale); text-align: center; border-top: 3px solid var(--teal); border-bottom: 3px solid var(--teal); }
.price-lead-inner { max-width: 640px; margin: 0 auto; }
/* 小さな前置きテキスト */
.price-lead-text { font-size: var(--font-label); color: var(--teal-dark); font-weight: 700; letter-spacing: 0.15em; margin-bottom: 16px; }
/* メインタイトル */
.price-lead-title { font-family: 'Shippori Mincho', serif; font-size: clamp(26px, 3vw, 36px); color: var(--navy); line-height: 1.6; margin-bottom: 16px; }
.price-lead-title em { font-style: normal; color: var(--teal-dark); }
/* 説明文 */
.price-lead-desc { font-size: var(--font-card); color: var(--text-light); line-height: 2.2; font-weight: 300; margin-bottom: 36px; }

/* ===========================
   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: var(--font-card); line-height: 2.2; font-weight: 300; margin-bottom: 44px; }
.cta-note { font-size: var(--font-label); color: rgba(255,255,255,0.6); margin-top: 18px; }
.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; }
}

/* ===========================
   レスポンシブ：スマホ（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; }
}