@charset "UTF-8";

/* ===========================
   TOPページ専用CSS
   このファイルはTOPページ（front-page.php）にのみ適用されます
=========================== */


/* ===========================
   全セクション共通パーツ（TOPページ用）
=========================== */
section { padding: 96px 80px; }

/* 英語小見出し（例：SERVICES） */
.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;
  max-width: 560px;
}

/* メインボタン（ティール色） */
.btn-primary {
  background: var(--teal);
  color: var(--navy);
  padding: 12px 35px;
  font-size: 18px;
  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(--border);
  color: var(--text-light);
  padding: 12px 28px;
  font-size: 18px;
  text-decoration: none;
  border-radius: 100px;
  display: inline-block;
  transition: all 0.2s;
}
.btn-secondary:hover { border-color: var(--teal); color: var(--teal-dark); }

/* ===========================
   1. ヒーローセクション
   TOPページ最上部の大きなビジュアルエリア
=========================== */
.hero {
  min-height: 100vh;
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr; /* 左：テキスト / 右：画像 */
  align-items: center;
  padding: 100px 80px 80px;
  gap: 60px;
  position: relative;
}
/* 右半分の薄い背景色 */
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 38%;
  height: 100%;
  background: var(--teal-pale);
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
  animation: fadeUp 0.7s ease both;
}
.hero-image-wrap {
  position: relative;
  z-index: 1;
  animation: fadeUp 0.7s 0.2s ease both;
}
/* フェードアップアニメーション */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
/* ヒーロー上部の英語ラベル */
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  letter-spacing: 0.2em;
  color: var(--teal-dark);
  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, 3.8vw, 50px);
  color: var(--navy);
  line-height: 1.6;
  font-weight: 700;
  margin-bottom: 22px;
}
.hero h1 em {
  font-style: normal;
  color: var(--teal-dark); /* 強調部分の色 */
}
/* ヒーローサブテキスト（見出し下の説明文） */
.hero-sub {
  color: var(--text-light);
  font-size: 16px;   /* ここでフォントサイズ変更可 */
  line-height: 2.2;
  margin-bottom: 40px;
  font-weight: 300;
}
/* ヒーローボタングループ */
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
/* ヒーロー下部の数字実績エリア */
.hero-stats {
  display: flex;
  gap: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.stat-num {
  font-family: 'Shippori Mincho', serif;
  font-size: 34px;
  color: var(--navy);
  line-height: 1;
  display: block;
}
.stat-num sup { font-size: 22px; }
.stat-label {
  font-size: 15px;
  color: var(--text-light);
  display: block;
  margin-top: 6px;
  font-weight: 300;
  line-height: 1.6;
}
/* ヒーロー右側の画像ボックス */
.hero-img-box {
  width: 90%;
  margin-left: auto;
  aspect-ratio: 4/5;
  border-radius: 16px;
  overflow: hidden;
  background: var(--teal-mid);
  position: relative;
  box-shadow: 0 24px 60px rgba(130,216,208,0.25);
}
/* 画像がない時のプレースホルダー */
.hero-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--teal-dark);
  gap: 12px;
  font-size: 22px;
  font-weight: 300;
}
.hero-img-placeholder span { font-size: 56px; opacity: 0.5; }
/* ヒーロー画像上の登壇実績バッジ */
.hero-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--white);
  border: 2px solid var(--teal);
  border-radius: 12px;
  padding: 14px 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  font-size: 22px;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.6;
}
.hero-badge small {
  display: block;
  color: var(--text-light);
  font-weight: 300;
  font-size: 15px;
  margin-bottom: 2px;
}

/* ===========================
   2. お悩みセクション（紺背景）
   「こんなお悩みありませんか？」エリア
=========================== */
.worries {
  background: var(--navy);
  text-align: center;
}
.worries .section-label { justify-content: center; color: var(--teal); }
.worries .section-label::before { background: var(--teal); }
.worries .section-title { color: var(--white); text-align: center; }
/* お悩みカードグリッド（3列） */
.worries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 56px;
  text-align: left;
}
.worry-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(130,216,208,0.2);
  border-radius: 12px;
  padding: 28px 24px;
  transition: all 0.3s;
}
.worry-card:hover {
  background: rgba(130,216,208,0.08);
  border-color: rgba(130,216,208,0.5);
}
.worry-icon { font-size: 28px; margin-bottom: 14px; display: block; }
.worry-card p {
  color: rgba(255,255,255,0.95);
  font-size: 22px;
  line-height: 2.2;
  font-weight: 300;
}
/* お悩みカードの太字タイトル */
.worry-card p strong {
  color: var(--white);
  font-weight: 700;
  display: block;
  margin-bottom: 6px;
  font-size: 20px;
}
/* セクション下部の注釈テキスト */
.worries-note {
  margin-top: 48px;
  color: rgba(255,255,255,0.8);
  font-size: 16px;
  font-weight: 300;
}
.worries-note em {
  font-style: normal;
  color: var(--teal);
  font-weight: 700;
}

/* ===========================
   3. 解決策セクション（白背景）
   「任せてください」エリア
=========================== */
.solution {
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr; /* 左：引用 / 右：説明 */
  gap: 80px;
  align-items: center;
}
/* 左側の大きな引用テキスト */
.solution-quote {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(26px, 2.8vw, 34px);
  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: 20px;
}
.solution-body strong { color: var(--navy); font-weight: 700; }
/* 薄い背景の強調ボックス */
.solution-box {
  background: var(--teal-pale);
  border-left: 4px solid var(--teal);
  border-radius: 0 12px 12px 0;
  padding: 24px 28px;
  margin-top: 8px;
}
.solution-box p {
  color: var(--navy) !important;
  font-size: 22px !important;
  line-height: 2.0 !important;
  margin-bottom: 0 !important;
}
.solution-box strong { font-size: 22px; }

/* ===========================
   4. サービスセクション（薄グレー背景）
   3つのサービス内容を表示
=========================== */
.services { background: var(--bg2); }
/* サービスカードグリッド（3列） */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.service-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 40px 32px;
  transition: all 0.3s;
}
.service-card:hover {
  border-color: var(--teal);
  box-shadow: 0 8px 40px rgba(130,216,208,0.2);
  transform: translateY(-4px);
}
/* サービスアイコンボックス */
.service-icon {
  width: 52px;
  height: 52px;
  background: var(--teal-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}
.service-num {
  font-size: 15px;
  color: var(--teal-dark);
  letter-spacing: 0.15em;
  display: block;
  margin-bottom: 8px;
}
.service-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--navy);
  line-height: 1.4;
}
.service-card p {
  font-size: 22px;
  color: var(--text-light);
  line-height: 2.2;
  font-weight: 300;
  margin-bottom: 20px;
}
/* サービスタグ（WordPress・SEOなど） */
.service-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
  font-size: 15px;
  background: var(--teal-pale);
  color: var(--teal-dark);
  padding: 4px 10px;
  border-radius: 100px;
}

/* ===========================
   5. 実績セクション（白背景）
   セミナー実績と数字の成果を表示
=========================== */
.results { background: var(--white); }
.results-inner {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 左：セミナー / 右：数字 */
  gap: 60px;
  align-items: start;
  margin-top: 56px;
}
/* セミナー実績カード */
.seminar-card {
  background: var(--teal-pale);
  padding: 36px;
  border-radius: 16px;
  border: 1.5px solid var(--teal-mid);
}
.seminar-badge {
  display: inline-block;
  background: var(--teal);
  color: var(--navy);
  font-size: 15px;
  padding: 5px 14px;
  border-radius: 100px;
  font-weight: 700;
  margin-bottom: 18px;
}
.seminar-title {
  font-family: 'Shippori Mincho', serif;
  font-size: 22px;
  line-height: 1.5;
  color: var(--navy);
  margin-bottom: 12px;
}
.seminar-desc {
  font-size: 22px;
  color: var(--text-light);
  line-height: 2.2;
  font-weight: 300;
  margin-bottom: 16px;
}
.seminar-list { list-style: none; }
.seminar-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;
}
.seminar-list li::before {
  content: '✓';
  color: var(--teal-dark);
  position: absolute;
  left: 0;
  font-weight: 700;
}
/* 右側の数字実績グリッド（2列） */
.achievements {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.achievement-item {
  background: var(--white);
  padding: 28px 24px;
  text-align: center;
  border-radius: 16px;
  border: 1.5px solid var(--border);
  transition: border-color 0.2s;
}
.achievement-item:hover { border-color: var(--teal); }
.achievement-num {
  font-family: 'Shippori Mincho', serif;
  font-size: 42px;
  color: var(--navy);
  line-height: 1;
  display: block;
}
.achievement-num sup { font-size: 22px; }
.achievement-label {
  font-size: 15px;
  color: var(--text-light);
  display: block;
  margin-top: 8px;
  font-weight: 300;
  line-height: 1.6;
}

/* ===========================
   6. お客様の声セクション（薄ティール背景）
=========================== */
.testimonials { background: var(--teal-pale); }
/* お客様の声グリッド（3列） */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.testimonial-card {
  background: var(--white);
  padding: 32px 28px;
  border-radius: 16px;
  border: 1.5px solid var(--border);
}
/* 大きな引用符 */
.testimonial-quote {
  font-size: 32px;
  color: var(--teal);
  font-family: Georgia, serif;
  line-height: 1;
  margin-bottom: 12px;
}
.testimonial-text {
  font-size: 22px;
  color: var(--text-light);
  line-height: 2.2;
  font-weight: 300;
  margin-bottom: 20px;
}
/* 投稿者名 */
.testimonial-author {
  font-size: 22px;
  color: var(--teal-dark);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}
.testimonial-author::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--teal);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
}
.testimonial-text {
  flex: 1;
}
/* ===========================
   7. 想いセクション（紺背景）
=========================== */
.philosophy { background: var(--navy); }
.philosophy .section-label { color: var(--teal); }
.philosophy .section-label::before { background: var(--teal); }
.philosophy .section-title { color: var(--white); }
.philosophy .section-desc { color: rgba(255,255,255,0.8); max-width: 100%; }
/* 左：テキスト / 右：カード */
.philosophy-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 56px;
}
.philosophy-left p {
  color: rgba(255,255,255,0.9);
  font-size: 22px;
  line-height: 2.2;
  font-weight: 300;
  margin-bottom: 20px;
}
.philosophy-left strong { color: var(--teal); font-weight: 700; }
/* 「想いを読む」リンク */
.philosophy-cta {
  margin-top: 32px;
  display: inline-block;
  font-size: 22px;
  color: var(--teal);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid var(--teal);
  padding-bottom: 2px;
  transition: opacity 0.2s;
}
.philosophy-cta:hover { opacity: 0.7; }
/* 右側のカードリスト */
.philosophy-cards { display: flex; flex-direction: column; gap: 16px; }
.philosophy-card {
  background: rgba(130,216,208,0.06);
  border: 1px solid rgba(130,216,208,0.2);
  border-radius: 12px;
  padding: 24px 28px;
  transition: all 0.3s;
}
.philosophy-card:hover {
  background: rgba(130,216,208,0.1);
  border-color: rgba(130,216,208,0.4);
}
.philosophy-card-label {
  color: var(--teal);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: 8px;
  display: block;
}
.philosophy-card p {
  color: rgba(255,255,255,0.9);
  font-size: 22px;
  line-height: 2.2;
  font-weight: 300;
}

/* ===========================
   8. FAQセクション（白背景）
   アコーディオン形式のよくある質問
=========================== */
.faq { background: var(--white); }
.faq-inner { max-width: 760px; margin: 0 auto; }
.faq-list { margin-top: 56px; }
.faq-item {
  border: 1.5px solid var(--border);
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item:hover { border-color: var(--teal); }
/* 質問部分（クリックで開閉） */
.faq-q {
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  gap: 20px;
}
/* +/- アイコン */
.faq-icon {
  width: 28px;
  height: 28px;
  background: var(--teal-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-dark);
  font-size: 22px;
  flex-shrink: 0;
  transition: background 0.2s;
  font-weight: 300;
}
.faq-q.open .faq-icon { background: var(--teal); color: var(--navy); }
/* 回答部分（開いた時に表示） */
.faq-a {
  display: none;
  padding: 0 28px 22px;
  font-size: 22px;
  color: var(--text-light);
  line-height: 2.2;
  font-weight: 300;
}
.faq-a.open { display: block; }

/* ===========================
   9. CTAセクション（薄ティール背景）
   お問合せ誘導エリア
=========================== */
.cta {
  background: var(--teal-pale);
  text-align: center;
  border-top: 3px solid var(--teal);
}
.cta .section-label { justify-content: center; }
.cta h2 {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(34px, 4vw, 44px);
  color: var(--navy);
  line-height: 1.6;
  margin-bottom: 16px;
}
.cta h2 em { font-style: normal; color: var(--teal-dark); }
.cta p {
  color: var(--text-light);
  font-size: 22px;
  line-height: 2.2;
  font-weight: 300;
  margin-bottom: 44px;
}
.cta-note {
  font-size: 22px;
  color: var(--navy);
  margin-top: 18px;
  font-weight: 300;
}


/* ===========================
   レスポンシブ：タブレット以下（900px以下）
=========================== */
@media (max-width: 900px) {
  section { padding: 64px 28px; }
  header { padding: 0 24px; }
  .hero { grid-template-columns: 1fr; padding: 100px 28px 60px; }
  .hero::before { display: none; }
  .hero-image-wrap { display: block; }
  .hero-img-box { width: 100%; aspect-ratio: 16/9; margin-left: 0; }
  .solution { grid-template-columns: 1fr; gap: 40px; }
  .worries-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .results-inner { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .philosophy-inner { grid-template-columns: 1fr; gap: 40px; }
  .achievements { grid-template-columns: 1fr 1fr; }
  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: 20px !important; line-height: 2.2 ; }
  .tag, .target-tag, .seminar-meta-item { font-size: 15px ; }
}