@charset "UTF-8";

/* ===========================
   想いページ専用CSS（philosophy.css）
   このファイルはphilosophyページにのみ適用されます
=========================== */



/* ===========================
   全セクション共通パーツ
=========================== */
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); }

/* メインボタン */
.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); }

/* ===========================
   1. ヒーローセクション（紺背景）
   ページ最上部のタイトルエリア
=========================== */
.hero {
  min-height: 60vh;
  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.1) 0%, transparent 70%); }
.hero-content { position: relative; z-index: 1; max-width: 720px; }
/* 英語ラベル（PHILOSOPHY など） */
.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, 60px); 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; }

/* ===========================
   2. オープニングセクション（白背景）
   冒頭の大きな引用テキストエリア
=========================== */
.opening {
  background: var(--white);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 96px 80px;
}
/* 大きな引用テキスト */
.opening-quote { font-family: 'Shippori Mincho', serif; font-size: clamp(26px, 3vw, 36px); line-height: 2.2; color: var(--navy); margin-bottom: 40px; }
.opening-quote em { font-style: normal; color: var(--teal-dark); border-bottom: 2px solid var(--teal); padding-bottom: 2px; }
.opening-body strong { color: var(--navy); font-weight: 700; }

/* ===========================
   3. ストーリーセクション（薄グレー背景）
   タイムライン形式で経歴・歩みを表示
=========================== */
.story { background: var(--bg2); }
.story-inner { max-width: 800px; margin: 0 auto; }
.story-timeline { margin-top: 56px; }

/* タイムラインの1項目（左：年号 / 右：内容） */
.timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 40px;
  margin-bottom: 56px;
  position: relative;
}
/* 項目間をつなぐ縦線 */
.timeline-item::before { content: ''; position: absolute; left: 58px; top: 40px; bottom: -56px; width: 2px; background: var(--border); }
.timeline-item:last-child::before { display: none; }

/* 年号エリア（左列） */
.timeline-year { text-align: right; padding-top: 4px; }
.timeline-year span { font-family: 'Shippori Mincho', serif; font-size: 22px; color: var(--teal-dark); font-weight: 700; letter-spacing: 0.05em; display: block; }

/* タイムラインの丸ポイント */
.timeline-dot { width: 14px; height: 14px; background: var(--teal); border-radius: 50%; position: absolute; left: 52px; top: 6px; border: 3px solid var(--white); box-shadow: 0 0 0 2px var(--teal); }

/* 右列のテキストエリア */
.timeline-content h3 { font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 10px; line-height: 1.4; }
.timeline-content p { font-size: 22px; color: var(--text-light); line-height: 2.2; font-weight: 300; }
.timeline-content strong { color: var(--navy); font-weight: 700; }
/* タイムライン内の強調ボックス（薄ティール） */
.timeline-content .highlight { background: var(--teal-pale); border-left: 3px solid var(--teal); padding: 16px 20px; border-radius: 0 8px 8px 0; margin-top: 14px; font-size: 22px; color: var(--navy); line-height: 2.2; font-weight: 300; }

/* ===========================
   4. 木の哲学セクション（白背景）
   葉・幹・根の3層構造で想いを表現
=========================== */
.tree { background: var(--white); }
/* 左：ビジュアル / 右：テキスト */
.tree-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; margin-top: 56px; }
.tree-visual { position: relative; display: flex; flex-direction: column; gap: 3px; }

/* 各層の共通スタイル */
.tree-layer { border-radius: 12px; padding: 28px 32px; position: relative; transition: all 0.3s; }
.tree-layer:hover { transform: translateX(6px); }

/* 葉の層（薄ティール） */
.tree-layer-leaves { background: var(--teal-pale); border: 2px solid var(--teal-mid); }
/* 幹の層（中間色） */
.tree-layer-trunk { background: #e8f4f2; border: 2px solid #b8ddd9; }
/* 根の層（紺） */
.tree-layer-root { background: var(--navy); border: 2px solid var(--navy); }

/* 各層のラベル・タイトル・説明文の色分け */
.tree-layer-label { font-size: 15px; font-weight: 700; letter-spacing: 0.2em; margin-bottom: 6px; }
.tree-layer-leaves .tree-layer-label { color: var(--teal-dark); }
.tree-layer-trunk .tree-layer-label { color: #4a9e97; }
.tree-layer-root .tree-layer-label { color: var(--teal); }

.tree-layer-title { font-family: 'Shippori Mincho', serif; font-size: 22px; font-weight: 700; margin-bottom: 4px; }
.tree-layer-leaves .tree-layer-title { color: var(--navy); }
.tree-layer-trunk .tree-layer-title { color: var(--navy); }
.tree-layer-root .tree-layer-title { color: var(--white); }

.tree-layer-desc { font-size: 22px; font-weight: 300; line-height: 2.2; }
.tree-layer-leaves .tree-layer-desc { color: var(--text-light); }
.tree-layer-trunk .tree-layer-desc { color: var(--text-light); }
.tree-layer-root .tree-layer-desc { color: rgba(255,255,255,0.9); }

/* 右側のテキスト */
.tree-text p { color: var(--text-light); font-size: 22px; line-height: 2.2; font-weight: 300; margin-bottom: 20px; }
.tree-text strong { color: var(--navy); font-weight: 700; }

/* ===========================
   5. 釣りの哲学セクション（薄ティール背景）
   大きな引用ボックスで想いを表現
=========================== */
.fishing { background: var(--teal-pale); }
.fishing-inner { max-width: 800px; margin: 0 auto; text-align: center; }
/* 大きな引用ボックス */
.fishing-quote {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 2.2;
  color: var(--navy);
  margin: 48px 0;
  padding: 40px;
  background: var(--white);
  border-radius: 16px;
  border: 2px solid var(--teal-mid);
  position: relative;
}
/* 大きな引用符の装飾 */
.fishing-quote::before { content: '"\A'; font-size: 80px; color: var(--teal); font-family: Georgia, serif; position: absolute; top: -20px; left: 24px; line-height: 1; }
.fishing-quote em { font-style: normal; color: var(--teal-dark); }
.fishing-body strong { color: var(--navy); font-weight: 700; }

/* ===========================
   6. 問い力セクション（紺背景）
   左：テキスト / 右：ステップカード
=========================== */
.toiryoku { background: var(--navy); }
.toiryoku .section-label { color: var(--teal); }
.toiryoku .section-label::before { background: var(--teal); }
.toiryoku .section-title { color: var(--white); }
/* 左：テキスト / 右：ステップ */
.toiryoku-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; margin-top: 56px; }
.toiryoku-left p { color: rgba(255,255,255,0.9); font-size: 22px; line-height: 2.2; font-weight: 300; margin-bottom: 20px; }
.toiryoku-left strong { color: var(--teal); font-weight: 700; }
/* 右側のステップカードリスト */
.toiryoku-steps { display: flex; flex-direction: column; gap: 16px; }
.toiryoku-step { background: rgba(130,216,208,0.06); border: 1px solid rgba(130,216,208,0.2); border-radius: 12px; padding: 24px 28px; display: flex; gap: 20px; align-items: flex-start; transition: all 0.3s; }
.toiryoku-step:hover { background: rgba(130,216,208,0.1); border-color: rgba(130,216,208,0.4); }
/* ステップ番号 */
.step-num { font-family: 'Shippori Mincho', serif; font-size: 32px; color: var(--teal); line-height: 1; flex-shrink: 0; width: 40px; }
.step-content h4 { color: var(--white); font-size: 22px; font-weight: 700; margin-bottom: 6px; }
.step-content p { color: rgba(255,255,255,0.8); font-size: 22px; line-height: 2.2; font-weight: 300; }

/* ===========================
   7. 仕事の哲学セクション（白背景）
   大きな漢字と説明文で想いを表現
=========================== */
.shigoto { background: var(--white); }
.shigoto-inner { max-width: 800px; margin: 0 auto; }
/* 大きな漢字ボックス（紺背景） */
.shigoto-word {
  text-align: center;
  margin: 48px 0;
  padding: 56px;
  background: var(--navy);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}
/* 右上のグラデーション装飾 */
.shigoto-word::before { content: ''; position: absolute; top: -100px; right: -100px; width: 300px; height: 300px; background: radial-gradient(circle, rgba(130,216,208,0.15) 0%, transparent 70%); }
/* 大きな漢字テキスト */
.shigoto-word-main { font-family: 'Shippori Mincho', serif; font-size: clamp(40px, 6vw, 72px); color: var(--white); letter-spacing: 0.2em; position: relative; z-index: 1; margin-bottom: 8px; }
.shigoto-word-sub { font-size: 22px; color: var(--teal); letter-spacing: 0.2em; font-weight: 300; position: relative; z-index: 1; }
.shigoto-body p { color: var(--text-light); font-size: 22px; line-height: 2.2; font-weight: 300; margin-bottom: 20px; }
.shigoto-body strong { color: var(--navy); font-weight: 700; }

/* ===========================
   8. タグラインセクション（薄ティール背景）
   締めの大きなメッセージエリア
=========================== */
.tagline-section {
  background: var(--teal-pale);
  text-align: center;
  padding: 96px 80px;
  border-top: 3px solid var(--teal);
}
/* 大きなタグライン */
.tagline-main { font-family: 'Shippori Mincho', serif; font-size: clamp(34px, 4vw, 52px); color: var(--navy); line-height: 1.6; margin-bottom: 24px; }
.tagline-main em { font-style: normal; color: var(--teal-dark); }
.tagline-sub { color: var(--text-light); font-size: 22px; line-height: 2.2; font-weight: 300; margin-bottom: 48px; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ===========================
   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; }


/* ===========================
   レスポンシブ：タブレット以下（900px以下）
=========================== */
@media (max-width: 900px) {
  section { padding: 64px 28px; }
  header { padding: 0 24px; }
  .hero { padding: 120px 28px 64px; }
  .opening { padding: 64px 28px; }
  .tree-inner { grid-template-columns: 1fr; gap: 40px; }     /* 木の哲学を1列に */
  .toiryoku-inner { grid-template-columns: 1fr; gap: 40px; } /* 問い力を1列に */
  .timeline-item { grid-template-columns: 80px 1fr; gap: 20px; }
  .timeline-item::before { left: 38px; }
  .timeline-dot { left: 32px; }
  nav a:not(.nav-cta) { display: none; }
  footer { padding: 40px 28px 28px; }
  .tagline-section { padding: 64px 28px; }
  .shigoto-word { padding: 40px 28px; }
}

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