/*
 * loohcs-top.css
 * Loohcs志塾 トップページ専用スタイル
 * 各セクションHTMLから自動統合
 */

/* ── リセット ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { overflow-x: hidden; font-family: 'Noto Sans JP', sans-serif; }


/* ======================================================== */
/* hero-final-v4 */
/* ======================================================== */
/* ════════════════════════════════════════
   HERO
   ════════════════════════════════════════ */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 56% 44%;
  overflow: hidden;
  background: linear-gradient(135deg,
    #2DC4C0 0%,
    #10AAAA 30%,
    #008898 60%,
    #005C66 100%
  );
}

.hero-deco {
  position: absolute;
  bottom: -80px; left: 16px;
  font-family: 'DM Serif Display', serif;
  font-size: clamp(200px, 28vw, 420px);
  font-style: italic;
  color: rgba(255,255,255,0.055);
  line-height: 1;
  pointer-events: none; user-select: none; z-index: 1;
}

/* ════════════════════════════════════════
   LEFT
   ════════════════════════════════════════ */
.hero-left {
  padding: 72px 20px 72px 64px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; z-index: 2;
}

.hero-eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  margin-bottom: 22px;
  display: flex; align-items: center; gap: 10px;
}
.hero-eyebrow::before {
  content: '';
  width: 20px; height: 1.5px;
  background: rgba(255,255,255,0.5); flex-shrink: 0;
}

.hero-headline {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: clamp(30px, 3.4vw, 52px); font-weight: 900;
  color: white; line-height: 1.22;
  margin-bottom: 20px; letter-spacing: -0.01em;
}
.hero-headline .ul { position: relative; display: inline-block; }
.hero-headline .ul::after {
  content: ''; position: absolute;
  bottom: 2px; left: 0; right: 0;
  height: 4px; border-radius: 2px;
  background: rgba(255,255,255,0.5);
}

.hero-sub {
  font-size: clamp(12.5px, 1vw, 14px); font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.9; max-width: 380px; margin-bottom: 40px;
}

.hero-stats {
  display: flex; gap: 24px; align-items: flex-end; margin-bottom: 40px;
}
.hero-stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(28px, 2.8vw, 38px); font-weight: 800;
  color: white; line-height: 1; letter-spacing: -0.03em;
}
.hero-stat-unit { font-size: clamp(13px, 1.2vw, 17px); margin-left: 1px; }
.hero-stat-label {
  font-size: clamp(9px, 0.75vw, 10.5px);
  color: rgba(255,255,255,0.5); margin-top: 4px; letter-spacing: 0.04em;
}
.hero-stat-sep {
  width: 1px; align-self: stretch;
  background: rgba(255,255,255,0.2); flex-shrink: 0;
}

.hero-buttons { display: flex; gap: 10px; flex-wrap: wrap; }
.hero-btn-p {
  background: white; color: #005C66;
  padding: clamp(11px,1vw,14px) clamp(18px,2vw,28px);
  border-radius: 7px;
  font-size: clamp(12px,1vw,14px); font-weight: 700;
  text-decoration: none; display: inline-flex; align-items: center; gap: 7px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12); transition: all 0.2s; white-space: nowrap;
}
.hero-btn-p:hover { transform: translateY(-2px); box-shadow: 0 8px 26px rgba(0,0,0,0.18); }
.hero-btn-s {
  border: 1.5px solid rgba(255,255,255,0.38); color: white;
  padding: clamp(11px,1vw,14px) clamp(14px,1.5vw,20px);
  border-radius: 7px;
  font-size: clamp(12px,1vw,14px); font-weight: 300;
  text-decoration: none; display: inline-flex; align-items: center; gap: 7px;
  transition: border-color 0.2s; white-space: nowrap;
}
.hero-btn-s:hover { border-color: rgba(255,255,255,0.7); }

/* ════════════════════════════════════════
   RIGHT PANEL — 三色スリバー
   ────────────────────────────────────────
   グラデBG ｜ 三角スリバー（別色）｜ 白パネル
   という3層を2つのclip-pathで実現。

   ::before = 三角色レイヤー（広め）
   ::after  = 白パネル（三角色レイヤーの上に重ねて
               三角色の薄いスリバーだけを露出させる）

   角度は控えめに：
     三角色レイヤー : 上辺 8%  → 下辺 1%
     白パネル       : 上辺 14% → 下辺 4%
   → 上で約6%幅、下で約3%幅の三角スリバーが現れる
   ════════════════════════════════════════ */
.hero-right-wrap {
  position: relative;
  z-index: 3;
  overflow: hidden;
}

/* 層① 三角色 */
.hero-right-wrap::before {
  content: '';
  position: absolute; inset: 0;
  background: #2DC4C0;
  clip-path: polygon(8% 0%, 100% 0%, 100% 100%, 1% 100%);
  z-index: 1;
}

/* 層② 白パネル（三角色レイヤーに重ねてスリバーを露出） */
.hero-right-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: #F4F3EF;
  clip-path: polygon(14% 0%, 100% 0%, 100% 100%, 4% 100%);
  z-index: 2;
}

/* コンテンツは最前面 */
.hero-right {
  padding: 64px clamp(28px,3.5vw,52px) 64px clamp(52px,7vw,88px);
  position: relative; z-index: 3;
  display: flex; flex-direction: column; justify-content: center;
  height: 100%;
}

.hero-right-header {
  font-family: 'Outfit', sans-serif;
  font-size: 9.5px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: #009EAA; margin-bottom: 22px;
  display: flex; align-items: center; gap: 10px;
}
.hero-right-header::before { content: ''; width: 18px; height: 1.5px; background: #009EAA; }

/* ── ニュースカード ── */
.news-card {
  padding: 13px 0; border-bottom: 1px solid rgba(0,0,0,0.07);
  text-decoration: none;
  display: flex; align-items: flex-start; gap: 10px;
  transition: padding-left 0.2s;
}
.news-card:first-of-type { border-top: 1px solid rgba(0,0,0,0.07); }
.news-card:hover { padding-left: 4px; }

.news-tag {
  font-family: 'Outfit', sans-serif;
  font-size: 8.5px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: white; background: #007A84;
  padding: 3px 7px; border-radius: 3px;
  white-space: nowrap; flex-shrink: 0; margin-top: 3px;
  line-height: 1.4;
}
.news-tag.ev { background: #009EAA; }
.news-tag.bl { background: #666; }
.news-tag.sc { background: #6B3FA0; }

.news-.news-title {
  font-size: clamp(11.5px, 0.95vw, 13px);
  font-weight: 500; color: #0F1C24; line-height: 1.52;
}
.news-date {
  font-family: 'Outfit', sans-serif;
  font-size: 10px; color: #9AA8AE; margin-top: 3px;
}

.news-more {
  margin-top: 16px;
  font-family: 'Outfit', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 0.06em;
  color: #009EAA; text-decoration: none;
  display: flex; align-items: center; gap: 6px; transition: gap 0.2s;
}
.news-more::after { content: '→'; }
.news-more:hover { gap: 10px; }


/* ════════════════════════════════════════
   BREAKPOINTS
   ════════════════════════════════════════ */

/* 1280px */
@media (max-width: 1280px) {
  .hero-left { padding: 64px 16px 64px 52px; }
}

/* 1080px */
@media (max-width: 1080px) {
  .hero { grid-template-columns: 52% 48%; }
  .hero-left { padding: 60px 14px 60px 44px; }
  .hero-sub { max-width: 320px; }
}

/* 860px: タグ縦配置もここで開始 */
@media (max-width: 860px) {
  .hero { grid-template-columns: 50% 50%; }
  .hero-left { padding: 56px 12px 56px 36px; }
  .hero-headline { font-size: clamp(26px, 4.2vw, 38px); }
  .hero-sub { font-size: 12.5px; margin-bottom: 32px; max-width: 280px; }
  .hero-stats { gap: 18px; margin-bottom: 32px; }
  .hero-right { padding: 48px 24px 48px clamp(40px,6vw,64px); }
  .hero-right-header { font-size: 9px; margin-bottom: 18px; }
  .news-title { font-size: 12px; }
  .news-card { padding: 11px 0; }

  /* タグ縦配置 */
  .news-card { flex-direction: column; gap: 5px; padding: 12px 0; }
  .news-tag { margin-top: 0; align-self: flex-start; }
  .news-  .news-date { font-size: 9.5px; }
}

/* 750px */
@media (max-width: 750px) {
  .hero { grid-template-columns: 46% 54%; }
  .hero-deco { display: none; }
  .hero-left { padding: 48px 10px 48px 28px; }
  .hero-eyebrow { font-size: 9.5px; letter-spacing: 0.13em; margin-bottom: 16px; }
  .hero-headline { font-size: clamp(22px, 5vw, 32px); margin-bottom: 14px; }
  .hero-headline .ul::after { height: 3px; }
  .hero-sub { font-size: 12px; line-height: 1.8; margin-bottom: 26px; max-width: 240px; }
  .hero-stats { gap: 14px; margin-bottom: 26px; flex-wrap: wrap; }
  .hero-stat-sep { display: none; }
  .hero-stat-num { font-size: 26px; }
  .hero-stat-unit { font-size: 13px; }
  .hero-stat-label { font-size: 9px; }
  .hero-buttons { flex-direction: column; gap: 8px; align-items: flex-start; }
  .hero-btn-p, .hero-btn-s { font-size: 12px; padding: 11px 16px; }
  .hero-right { padding: 40px 18px 40px clamp(32px,7vw,52px); }
  .hero-right-header { margin-bottom: 16px; }
}

/* 560px: SP横 */
@media (max-width: 560px) {
  .hero { grid-template-columns: 44% 56%; }
  .hero-left { padding: 40px 8px 40px 20px; }
  .hero-eyebrow { display: none; }
  .hero-headline { font-size: clamp(20px, 5.5vw, 28px); margin-bottom: 12px; }
  .hero-sub { font-size: 11.5px; margin-bottom: 20px; max-width: 190px; }
  .hero-stats { gap: 10px; margin-bottom: 20px; }
  .hero-stat-num { font-size: 22px; }
  .hero-stat-unit { font-size: 12px; }
  .hero-stat-label { font-size: 8.5px; }
  .hero-btn-p { padding: 10px 13px; font-size: 11.5px; }
  .hero-btn-s { display: none; }
  .hero-right { padding: 36px 14px 36px clamp(22px,7vw,40px); }
  .hero-right-header { font-size: 8.5px; letter-spacing: 0.16em; margin-bottom: 12px; }
  .news-card { padding: 10px 0; gap: 4px; }
  .news-tag { font-size: 8px; padding: 2px 6px; }
  .news-title { font-size: 11px; line-height: 1.45; }
  .news-date { font-size: 9px; }
  .news-more { font-size: 10px; margin-top: 10px; }
}

/* 400px以下: スタック */
@media (max-width: 400px) {
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }
  .hero-left { padding: 48px 20px 40px; justify-content: flex-start; }
  .hero-eyebrow { display: flex; font-size: 9.5px; margin-bottom: 14px; }
  .hero-headline { font-size: clamp(26px, 8vw, 34px); margin-bottom: 14px; }
  .hero-sub { font-size: 13px; line-height: 1.85; max-width: 100%; margin-bottom: 28px; }
  .hero-stats { gap: 20px; flex-wrap: nowrap; }
  .hero-stat-sep { display: block; }
  .hero-stat-num { font-size: 30px; }
  .hero-stat-unit { font-size: 15px; }
  .hero-stat-label { font-size: 9.5px; }
  .hero-buttons { flex-direction: row; flex-wrap: wrap; }
  .hero-btn-s { display: inline-flex; }

  /* スタック時: clip-path廃止、フラット表示 */
  .hero-right-wrap::before { clip-path: none; background: #D4F5F3; height: 4px; top: auto; bottom: 0; }
  .hero-right-wrap::after  { clip-path: none; background: #ECEAE4; }
  .hero-right { padding: 36px 20px 48px; height: auto; }
  .news-card { flex-direction: row; gap: 10px; }
  .news-tag { margin-top: 3px; align-self: auto; }
  .news-title { font-size: 12.5px; }
  .news-date { font-size: 10px; }
}

/* ======================================================== */
/* pain-section */
/* ======================================================== */
/* ════════════════════════════════════════
   SECTION WRAPPER
   ════════════════════════════════════════ */
.pain-section {
  padding: 96px 0 88px;
  background: #F4F3EF;
  position: relative;
  overflow: hidden;
}

/* 左端に薄いティール縦ライン（ヒーローのスリットと呼応） */
.pain-section::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, #2DC4C0 0%, #008898 60%, transparent 100%);
}

.pain-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 56px;
}

/* ════════════════════════════════════════
   HEADER
   ════════════════════════════════════════ */
.pain-eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: #009EAA;
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.pain-eyebrow::before {
  content: ''; width: 20px; height: 1.5px;
  background: #009EAA; flex-shrink: 0;
}

.pain-title {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 900;
  color: #0A2830;
  line-height: 1.2;
  margin-bottom: 56px;
  letter-spacing: -0.01em;
}

/* ════════════════════════════════════════
   CARDS GRID
   ════════════════════════════════════════ */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.pain-card {
  background: white;
  border-radius: 14px;
  padding: 32px 28px 28px;
  border: 1px solid rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
  transition: transform 0.22s;
}
.pain-card:hover {
  transform: translateY(-3px);
}

/* カード左上のティールアクセントライン */
.pain-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #2DC4C0, transparent 70%);
  border-radius: 14px 14px 0 0;
}

/* 大きなクォーテーション装飾 */
.pain-card::after {
  content: '\201C';
  position: absolute;
  top: 10px; right: 18px;
  font-family: 'DM Serif Display', serif;
  font-size: 72px;
  color: #009EAA;
  opacity: 0.07;
  line-height: 1;
  pointer-events: none;
}

.pain-card-num {
  font-family: 'Outfit', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.12em;
  color: #009EAA;
  margin-bottom: 14px;
}

.pain-card p {
  font-size: 15px; font-weight: 600;
  color: #0A2830;
  line-height: 1.7;
}

/* ════════════════════════════════════════
   ARROW
   ════════════════════════════════════════ */
.pain-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px 0 20px;
}
.pain-arrow-line {
  width: 1.5px;
  height: 36px;
  background: linear-gradient(to bottom, #009EAA, #2DC4C0);
}
.pain-arrow-head {
  width: 0; height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 10px solid #2DC4C0;
}

/* ════════════════════════════════════════
   SOLUTION BLOCK
   ヒーローのグラデーションと同じ色を使い連続感を出す
   ════════════════════════════════════════ */
.pain-solution {
  background: linear-gradient(135deg,
    #2DC4C0 0%,
    #10AAAA 35%,
    #008898 70%,
    #005C66 100%
  );
  border-radius: 16px;
  padding: 44px 52px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
  position: relative;
  overflow: hidden;
}

/* 右下のデコ */
.pain-solution::after {
  content: 'L';
  position: absolute;
  right: -20px; bottom: -60px;
  font-family: 'DM Serif Display', serif;
  font-size: 200px; font-style: italic;
  color: rgba(255,255,255,0.055);
  line-height: 1;
  pointer-events: none; user-select: none;
}

.pain-solution-text {}

.pain-solution-label {
  font-family: 'Outfit', sans-serif;
  font-size: 9.5px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 8px;
}
.pain-solution-label::before {
  content: ''; width: 16px; height: 1px;
  background: rgba(255,255,255,0.4);
}

.pain-solution h3 {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 900;
  color: white;
  line-height: 1.4;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.pain-solution p {
  font-size: 14px; font-weight: 300;
  color: rgba(255,255,255,0.68);
  line-height: 1.85;
  max-width: 520px;
}

.pain-solution-cta {
  flex-shrink: 0;
}
.pain-btn {
  background: white;
  color: #005C66;
  padding: 15px 32px;
  border-radius: 8px;
  font-size: 14px; font-weight: 700;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0,0,0,0.14);
  transition: all 0.2s;
}
.pain-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.2);
}

/* ════════════════════════════════════════
   SCROLL REVEAL
   ════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-sol { transition-delay: 0.1s; }

/* ════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════ */

@media (max-width: 1024px) {
  .pain-inner { padding: 0 44px; }
}

@media (max-width: 860px) {
  .pain-section { padding: 72px 0 68px; }
  .pain-inner { padding: 0 36px; }
  .pain-title { margin-bottom: 40px; }
  .pain-grid { gap: 16px; }
  .pain-card { padding: 26px 22px 22px; }
  .pain-card p { font-size: 14px; }
  .pain-solution { padding: 36px 40px; gap: 32px; }
}

@media (max-width: 700px) {
  .pain-grid { grid-template-columns: 1fr; gap: 12px; }
  .pain-section { padding: 64px 0 60px; }
  .pain-inner { padding: 0 28px; }
  .pain-solution {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 32px 28px;
  }
  .pain-solution-cta { display: flex; justify-content: flex-start; }
}

@media (max-width: 480px) {
  .pain-section { padding: 52px 0 48px; }
  .pain-inner { padding: 0 20px; }
  .pain-title { font-size: clamp(22px, 7vw, 30px); margin-bottom: 32px; }
  .pain-card { padding: 22px 18px 18px; }
  .pain-card p { font-size: 13.5px; }
  .pain-solution { padding: 28px 22px; border-radius: 12px; }
  .pain-solution h3 { font-size: clamp(16px, 5vw, 20px); }
  .pain-solution p { font-size: 13px; }
  .pain-btn { padding: 13px 24px; font-size: 13px; }
}

/* ======================================================== */
/* ao-section */
/* ======================================================== */
/* ════════════════════════════════════════
   SECTION
   ════════════════════════════════════════ */
.ao-section {
  padding: 96px 0 88px;
  background: white;
  position: relative;
  overflow: hidden;
}

/* 右端の薄いデコ */
.ao-section::before {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, transparent, #2DC4C0 40%, #008898 70%, transparent 100%);
}

.ao-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* ════════════════════════════════════════
   LEFT — 比較ダイアグラム
   ════════════════════════════════════════ */
.ao-visual {}

.ao-diagram {
  background: linear-gradient(135deg,
    #2DC4C0 0%, #10AAAA 35%, #008898 70%, #005C66 100%
  );
  border-radius: 18px;
  padding: 36px 36px 32px;
  position: relative;
  overflow: hidden;
}

/* デコ文字 */
.ao-diagram::after {
  content: 'L';
  position: absolute;
  right: -16px; bottom: -64px;
  font-family: 'DM Serif Display', serif;
  font-size: 180px; font-style: italic;
  color: rgba(255,255,255,0.06);
  line-height: 1; pointer-events: none; user-select: none;
}

.ao-diagram-label {
  font-family: 'Outfit', sans-serif;
  font-size: 9.5px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 8px;
}
.ao-diagram-label::before {
  content: ''; width: 16px; height: 1px;
  background: rgba(255,255,255,0.4);
}

/* VS 比較 */
.ao-compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: center;
  margin-bottom: 28px;
}

.ao-box {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 10px;
  padding: 18px 14px;
  text-align: center;
  transition: background 0.2s;
}
.ao-box-label {
  font-family: 'Outfit', sans-serif;
  font-size: 9.5px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 10px;
}
.ao-box-title {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 14px; font-weight: 700;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

/* ハイライト側（総合型） */
.ao-box.hl {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.35);
}
.ao-box.hl .ao-box-label { color: rgba(255,255,255,0.65); }
.ao-box.hl .ao-box-title { color: white; }

.ao-vs {
  font-family: 'Outfit', sans-serif;
  font-size: 12px; font-weight: 800;
  color: rgba(255,255,255,0.22);
  letter-spacing: 0.05em;
  text-align: center;
}

/* チェックリスト */
.ao-checklist {
  display: flex; flex-direction: column; gap: 9px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 22px;
}
.ao-check {
  display: flex; align-items: center; gap: 10px;
  font-size: 12.5px; font-weight: 300;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}
.ao-check-dot {
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.35);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ao-check-dot::before {
  content: '';
  width: 5px; height: 9px;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(40deg) translate(-1px, -1px);
}

/* ════════════════════════════════════════
   RIGHT — テキスト解説
   ════════════════════════════════════════ */
.ao-content {}

.ao-eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: #009EAA; margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.ao-eyebrow::before {
  content: ''; width: 20px; height: 1.5px;
  background: #009EAA; flex-shrink: 0;
}

.ao-title {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: clamp(22px, 2.4vw, 34px); font-weight: 900;
  color: #0A2830; line-height: 1.25;
  margin-bottom: 18px; letter-spacing: -0.01em;
}

.ao-desc {
  font-size: 14px; font-weight: 300;
  color: #4A6068; line-height: 1.9;
  margin-bottom: 36px;
}

/* ポイントリスト */
.ao-points {
  display: flex; flex-direction: column; gap: 20px;
}

.ao-point {
  display: flex; align-items: flex-start; gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.ao-point:last-child { border-bottom: none; padding-bottom: 0; }

.ao-point-num {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, #2DC4C0, #008898);
  color: white; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 800;
  flex-shrink: 0; letter-spacing: -0.02em;
}

.ao-point-.ao-point-body h4 {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 15px; font-weight: 700;
  color: #0A2830; margin-bottom: 5px;
  letter-spacing: -0.01em;
}
.ao-point-body p {
  font-size: 13px; font-weight: 300;
  color: #4A6068; line-height: 1.75;
}

/* ════════════════════════════════════════
   SCROLL REVEAL
   ════════════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.rd1 { transition-delay: 0.05s; }
.rd2 { transition-delay: 0.12s; }
.rd3 { transition-delay: 0.19s; }
.rd4 { transition-delay: 0.26s; }

/* ════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════ */
@media (max-width: 1024px) {
  .ao-inner { padding: 0 44px; gap: 52px; }
}

@media (max-width: 860px) {
  .ao-section { padding: 72px 0 68px; }
  .ao-inner { padding: 0 36px; gap: 40px; }
}

@media (max-width: 700px) {
  .ao-inner {
    grid-template-columns: 1fr;
    gap: 44px;
    padding: 0 28px;
  }
  .ao-section { padding: 64px 0 60px; }
}

@media (max-width: 480px) {
  .ao-section { padding: 52px 0 48px; }
  .ao-inner { padding: 0 20px; gap: 36px; }
  .ao-diagram { padding: 28px 24px 24px; border-radius: 14px; }
  .ao-box-title { font-size: 13px; }
  .ao-title { margin-bottom: 14px; }
  .ao-desc { font-size: 13px; margin-bottom: 28px; }
  .ao-point { gap: 12px; padding-bottom: 16px; }
  .ao-point-num { width: 30px; height: 30px; font-size: 13px; border-radius: 7px; }
  .ao-point-body h4 { font-size: 14px; }
  .ao-point-body p { font-size: 12.5px; }
}

/* ======================================================== */
/* strengths-section */
/* ======================================================== */
/* ════════════════════════════════════════
   SECTION
   ════════════════════════════════════════ */
.strengths-section {
  padding: 96px 0 88px;
  background: white;
  position: relative;
  overflow: hidden;
}

/* 上端ティールライン */
.strengths-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg,
    transparent 0%, #2DC4C0 20%, #2DC4C0 80%, transparent 100%
  );
}

.strengths-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 56px;
}

/* ════════════════════════════════════════
   HEADER
   ════════════════════════════════════════ */
.strengths-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 52px;
}

.strengths-eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: #009EAA; margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.strengths-eyebrow::before {
  content: ''; width: 20px; height: 1.5px;
  background: #009EAA; flex-shrink: 0;
}

.strengths-title {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: clamp(24px, 2.8vw, 38px); font-weight: 900;
  color: #0A2830; line-height: 1.2; letter-spacing: -0.01em;
}

.strengths-link {
  font-family: 'Outfit', sans-serif;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.06em;
  color: #009EAA; text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
  border-bottom: 1px solid rgba(0,158,170,0.3);
  padding-bottom: 2px;
  transition: gap 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.strengths-link::after { content: '→'; }
.strengths-link:hover { gap: 10px; border-color: #009EAA; }

/* ════════════════════════════════════════
   GRID
   ════════════════════════════════════════ */
.strengths-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.strength-card {
  background: white;
  border-radius: 16px;
  padding: 40px 32px 36px;
  border: 1.5px solid rgba(0,158,170,0.2);
  position: relative;
  overflow: hidden;
}

/* 大きな背景番号 */
.strength-bg-num {
  position: absolute;
  top: -10px; right: 16px;
  font-family: 'Outfit', sans-serif;
  font-size: 100px; font-weight: 800;
  color: #009EAA; opacity: 0.05;
  line-height: 1; pointer-events: none; user-select: none;
  letter-spacing: -0.05em;
}

/* アイコンバッジ */
.strength-badge {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, #2DC4C0, #008898);
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  margin-bottom: 22px;
  flex-shrink: 0;
}

/* 番号ラベル */
.strength-num {
  font-family: 'Outfit', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: #009EAA; margin-bottom: 10px;
}

.strength-card h3 {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: clamp(15px, 1.4vw, 18px); font-weight: 900;
  color: #007A85; line-height: 1.4;
  margin-bottom: 14px; letter-spacing: -0.01em;
}

.strength-card p {
  font-size: 13.5px; font-weight: 300;
  color: #4A6068; line-height: 1.85;
}

/* ════════════════════════════════════════
   SCROLL REVEAL
   ════════════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.rd1 { transition-delay: 0.08s; }
.rd2 { transition-delay: 0.16s; }
.rd3 { transition-delay: 0.24s; }

/* ════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════ */
@media (max-width: 1024px) {
  .strengths-inner { padding: 0 44px; }
}

@media (max-width: 860px) {
  .strengths-section { padding: 72px 0 68px; }
  .strengths-inner { padding: 0 36px; }
  .strengths-header { margin-bottom: 40px; }
  .strength-card { padding: 32px 24px 28px; }
}

@media (max-width: 700px) {
  .strengths-inner { padding: 0 28px; }
  .strengths-grid { grid-template-columns: 1fr; gap: 14px; }
  .strengths-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 32px;
  }
  .strength-card { padding: 28px 22px 24px; }
  .strength-bg-num { font-size: 80px; }
}

@media (max-width: 480px) {
  .strengths-section { padding: 52px 0 48px; }
  .strengths-inner { padding: 0 20px; }
  .strengths-title { font-size: clamp(22px, 7vw, 30px); }
  .strength-card h3 { font-size: clamp(15px, 4.5vw, 17px); }
  .strength-card p { font-size: 13px; }
  .strength-badge { width: 40px; height: 40px; font-size: 18px; border-radius: 10px; }
}

/* ======================================================== */
/* results-section */
/* ======================================================== */
/* ════════════════════════════════════════
   SECTION
   ════════════════════════════════════════ */
.results-section {
  padding: 96px 0 88px;
  background: linear-gradient(135deg,
    #0A2830 0%, #0D3540 40%, #0A2830 100%
  );
  position: relative;
  overflow: hidden;
}

/* 斜めスリット装飾（ヒーローと呼応） */
.results-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg,
    transparent 0%, #2DC4C0 30%, #2DC4C0 70%, transparent 100%
  );
}

/* 右下デコ文字 */
.results-deco {
  position: absolute;
  right: -20px; bottom: -80px;
  font-family: 'DM Serif Display', serif;
  font-size: clamp(240px, 28vw, 400px);
  font-style: italic;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none; user-select: none;
}

.results-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 56px;
  position: relative; z-index: 1;
}

/* ════════════════════════════════════════
   HEADER ROW
   ════════════════════════════════════════ */
.results-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  margin-bottom: 64px;
}

.results-header-left {}

.results-eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: #2DC4C0; margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.results-eyebrow::before {
  content: ''; width: 20px; height: 1.5px;
  background: #2DC4C0; flex-shrink: 0;
}

.results-title {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: clamp(26px, 3vw, 40px); font-weight: 900;
  color: white; line-height: 1.2;
  margin-bottom: 16px; letter-spacing: -0.01em;
}

.results-desc {
  font-size: 14px; font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.85; margin-bottom: 28px;
}

.results-link {
  font-family: 'Outfit', sans-serif;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.06em;
  color: #2DC4C0; text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
  border-bottom: 1px solid rgba(45,196,192,0.35);
  padding-bottom: 2px;
  transition: gap 0.2s, border-color 0.2s;
}
.results-link::after { content: '→'; }
.results-link:hover { gap: 10px; border-color: #2DC4C0; }

/* ════════════════════════════════════════
   FOOTNOTE（3統計 インライン文）
   ════════════════════════════════════════ */
.results-footnote {
  margin-top: 28px;
  font-size: 13px; font-weight: 300;
  color: rgba(255,255,255,0.38);
  line-height: 1.85;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.results-footnote strong {
  color: rgba(255,255,255,0.65);
  font-weight: 600;
}

/* ════════════════════════════════════════
   KEIO HIGHLIGHT
   ════════════════════════════════════════ */
.keio-highlight {
  margin-bottom: 48px;
  border: 1px solid rgba(45,196,192,0.2);
  border-radius: 16px;
  padding: 36px 48px;
  display: flex;
  align-items: center;
  gap: 48px;
  background: rgba(45,196,192,0.05);
  position: relative;
  overflow: hidden;
}
/* 左端のティール帯 */
.keio-highlight::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, #2DC4C0, #008898);
  border-radius: 16px 0 0 16px;
}

.keio-text {}
.keio-univ {
  font-family: 'Outfit', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: #2DC4C0; margin-bottom: 8px;
  display: flex; align-items: center; gap: 8px;
}
.keio-univ::before {
  content: ''; width: 5px; height: 5px;
  background: #2DC4C0; border-radius: 50%; flex-shrink: 0;
}
.keio-label {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: clamp(16px, 1.8vw, 22px); font-weight: 900;
  color: white; line-height: 1.35; letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.keio-sub {
  font-size: 12.5px; font-weight: 300;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
}

/* ════════════════════════════════════════
   UNIVERSITY BADGES
   ════════════════════════════════════════ */
.results-univs-label {
  font-family: 'Outfit', sans-serif;
  font-size: 9.5px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 18px;
  display: flex; align-items: center; gap: 10px;
}
.results-univs-label::before {
  content: ''; width: 16px; height: 1px;
  background: rgba(255,255,255,0.2);
}

.results-univs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.univ-badge {
  font-family: 'Outfit', sans-serif;
  font-size: 11px; font-weight: 600;
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 5px 12px; border-radius: 20px;
  letter-spacing: 0.02em;
  transition: all 0.2s;
}
.univ-badge:hover {
  background: rgba(45,196,192,0.12);
  border-color: rgba(45,196,192,0.3);
  color: rgba(255,255,255,0.85);
}

/* ════════════════════════════════════════
   SCROLL REVEAL
   ════════════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.rd1 { transition-delay: 0.06s; }
.rd2 { transition-delay: 0.12s; }
.rd3 { transition-delay: 0.18s; }
.rd4 { transition-delay: 0.24s; }

/* ════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════ */
@media (max-width: 1024px) {
  .results-inner { padding: 0 44px; }
  .results-header { gap: 48px; }
}

@media (max-width: 860px) {
  .results-section { padding: 72px 0 68px; }
  .results-inner { padding: 0 36px; }
  .results-header { gap: 36px; margin-bottom: 48px; }
  .keio-highlight { padding: 28px 32px; gap: 32px; }
  .keio-num { font-size: clamp(44px, 7vw, 64px); }
}

@media (max-width: 700px) {
  .results-header {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-bottom: 40px;
  }
  .results-inner { padding: 0 28px; }
  .keio-highlight {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 28px 24px;
  }
  .keio-divider { display: none; }
}

@media (max-width: 480px) {
  .results-section { padding: 52px 0 48px; }
  .results-inner { padding: 0 20px; }
  .univ-badge { font-size: 10.5px; padding: 4px 10px; }
  .keio-highlight { padding: 24px 20px; gap: 16px; }
  .keio-label { font-size: clamp(14px, 4.5vw, 18px); }
  .results-footnote { font-size: 12px; }
}

/* ======================================================== */
/* experiences-section */
/* ======================================================== */
/* ════════════════════════════════════════
   SECTION
   ════════════════════════════════════════ */
.exp-section {
  padding: 96px 0 88px;
  background: #F4F3EF;
  position: relative;
  overflow: hidden;
}

/* 左端ティールライン（pain-sectionと対称） */
.exp-section::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, transparent, #2DC4C0 40%, #008898 70%, transparent 100%);
}

/* 右下デコ */
.exp-deco {
  position: absolute;
  right: -24px; bottom: -72px;
  font-family: 'DM Serif Display', serif;
  font-size: clamp(200px, 24vw, 360px);
  font-style: italic;
  color: rgba(0,0,0,0.03);
  line-height: 1;
  pointer-events: none; user-select: none;
}

.exp-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 56px;
  position: relative; z-index: 1;
}

/* ════════════════════════════════════════
   HEADER
   ════════════════════════════════════════ */
.exp-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}

.exp-header-left {}

.exp-eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: #009EAA; margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.exp-eyebrow::before {
  content: ''; width: 20px; height: 1.5px;
  background: #009EAA; flex-shrink: 0;
}

.exp-title {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: clamp(22px, 2.6vw, 34px); font-weight: 900;
  color: #0A2830; line-height: 1.2; letter-spacing: -0.01em;
}

.exp-link {
  font-family: 'Outfit', sans-serif;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.06em;
  color: #009EAA; text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
  border-bottom: 1px solid rgba(0,158,170,0.3);
  padding-bottom: 2px;
  transition: gap 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.exp-link::after { content: '→'; }
.exp-link:hover { gap: 10px; border-color: #009EAA; }

/* ════════════════════════════════════════
   CARDS
   ════════════════════════════════════════ */
.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}

.exp-card {
  background: white;
  border-radius: 14px;
  padding: 26px 24px 22px;
  border: 1px solid rgba(0,0,0,0.07);
  text-decoration: none;
  display: block;
  position: relative;
  overflow: hidden;
  transition: transform 0.22s, border-color 0.22s;
}
.exp-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0,158,170,0.25);
}

/* 上端カラーライン */
.exp-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #2DC4C0, transparent 70%);
  border-radius: 14px 14px 0 0;
}

.exp-card-univ {
  font-family: 'Outfit', sans-serif;
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: #009EAA; margin-bottom: 10px;
  display: flex; align-items: center; gap: 6px;
}
.exp-card-univ::before {
  content: '';
  width: 5px; height: 5px;
  background: #2DC4C0; border-radius: 50%; flex-shrink: 0;
}

.exp-card-title {
  font-size: 14px; font-weight: 600;
  color: #0A2830; line-height: 1.6;
  margin-bottom: 16px;
}

/* カード下部のメタ情報 */
.exp-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.exp-card-year {
  font-family: 'Outfit', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.08em;
  color: white; background: #009EAA;
  padding: 2px 8px; border-radius: 3px;
}
.exp-card-school {
  font-size: 10.5px; font-weight: 300;
  color: #8A9BA3; letter-spacing: 0.02em;
}

/* more link */
.exp-more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  border: 1.5px dashed rgba(0,158,170,0.3);
  border-radius: 10px;
  color: #009EAA;
  font-family: 'Outfit', sans-serif;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: all 0.2s;
}
.exp-more::after { content: '→'; }
.exp-more:hover {
  border-color: #009EAA;
  background: rgba(0,158,170,0.04);
  gap: 12px;
}

/* ════════════════════════════════════════
   SCROLL REVEAL
   ════════════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.rd1 { transition-delay: 0.07s; }
.rd2 { transition-delay: 0.14s; }
.rd3 { transition-delay: 0.21s; }

/* ════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════ */
@media (max-width: 1024px) {
  .exp-inner { padding: 0 44px; }
}

@media (max-width: 860px) {
  .exp-section { padding: 72px 0 68px; }
  .exp-inner { padding: 0 36px; }
  .exp-header { margin-bottom: 36px; }
  .exp-grid { gap: 12px; }
  .exp-card { padding: 22px 20px 18px; }
  .exp-card-title { font-size: 13.5px; }
}

@media (max-width: 700px) {
  .exp-inner { padding: 0 28px; }
  .exp-grid { grid-template-columns: 1fr; gap: 10px; }
  .exp-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
  }
}

@media (max-width: 480px) {
  .exp-section { padding: 52px 0 48px; }
  .exp-inner { padding: 0 20px; }
  .exp-title { font-size: clamp(20px, 6.5vw, 28px); }
  .exp-card { padding: 20px 18px 16px; }
  .exp-card-title { font-size: 13px; }
  .exp-more { font-size: 11.5px; }
}

/* ======================================================== */
/* events-section */
/* ======================================================== */
.events-section {
  padding: 96px 0 88px;
  background: #F4F3EF;
  position: relative; overflow: hidden;
}
.events-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, #2DC4C0 20%, #2DC4C0 80%, transparent);
}
.events-deco {
  position: absolute; right: -20px; bottom: -80px;
  font-family: 'DM Serif Display', serif;
  font-size: clamp(200px, 24vw, 380px); font-style: italic;
  color: rgba(0,0,0,0.03); line-height: 1;
  pointer-events: none; user-select: none;
}

.events-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 56px;
  position: relative; z-index: 1;
}

/* HEADER */
.events-header {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 48px;
}
.events-header-left {}
.events-free-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(224,25,98,0.08);
  border: 1px solid rgba(224,25,98,0.2);
  color: #C01858;
  font-family: 'Outfit', sans-serif; font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.1em; padding: 5px 12px; border-radius: 20px;
  margin-bottom: 14px;
}
.events-eyebrow {
  font-family: 'Outfit', sans-serif; font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: #009EAA; margin-bottom: 12px;
  display: flex; align-items: center; gap: 10px;
}
.events-eyebrow::before { content: ''; width: 20px; height: 1.5px; background: #009EAA; flex-shrink: 0; }
.events-title {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: clamp(22px, 2.6vw, 34px); font-weight: 900;
  color: #0A2830; line-height: 1.2; margin-bottom: 12px; letter-spacing: -0.01em;
}
.events-desc {
  font-size: 14px; font-weight: 300;
  color: #4A6068; line-height: 1.85; max-width: 460px;
}
.events-count {
  text-align: right; flex-shrink: 0;
}
.events-count-num {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(40px, 4.5vw, 60px); font-weight: 800;
  color: rgba(0,100,110,0.08); line-height: 1; letter-spacing: -0.04em;
}
.events-count-num span { font-size: 0.4em; font-weight: 700; vertical-align: baseline; }
.events-count-label {
  font-family: 'Outfit', sans-serif;
  font-size: 10px; font-weight: 600; letter-spacing: 0.1em;
  color: #8A9BA3; margin-top: -4px;
}

/* GRID */
.events-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  margin-bottom: 32px;
}

/* カード: Dスタイル（白 + shadow、グラデ上部） */
.event-card {
  background: white; border-radius: 14px;
  overflow: hidden; text-decoration: none; display: block;
  border: none;
  box-shadow: 0 2px 12px rgba(0,100,110,0.08);
  transition: transform 0.22s;
}
.event-card:hover { transform: translateY(-3px); }

.event-card-top {
  background: linear-gradient(135deg, #2DC4C0 0%, #10AAAA 50%, #005C66 100%);
  padding: 24px 22px 20px; position: relative; overflow: hidden;
}
.event-card-top.keio {
  background: linear-gradient(135deg, #0A3A5C 0%, #1060A0 100%);
}
.event-card-top.okinawa {
  background: linear-gradient(135deg, #6B1040 0%, #C01858 100%);
}
.event-card-top::before {
  content: ''; position: absolute;
  top: -30px; right: -30px; width: 110px; height: 110px;
  background: rgba(255,255,255,0.07); border-radius: 50%;
}
.event-type {
  font-family: 'Outfit', sans-serif; font-size: 9.5px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); margin-bottom: 8px;
}
.event-title {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: clamp(14px, 1.3vw, 16px); font-weight: 900;
  color: white;
  /* 行高 × 3行分を min-height に設定 */
  line-height: 1.45;
  min-height: calc(1.45em * 3);
  /* 3行超えは末尾に … */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  position: relative; z-index: 1; letter-spacing: -0.01em;
}

.event-card-bottom { padding: 18px 20px; }
.event-meta { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.event-meta-row {
  display: flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 300; color: #3A4A52;
}
.event-icon {
  width: 20px; height: 20px; border-radius: 4px;
  background: rgba(0,158,170,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 10.5px; flex-shrink: 0;
}
.event-free-tag {
  display: inline-flex; align-items: center; gap: 4px;
  background: rgba(224,25,98,0.08);
  color: #C01858;
  font-family: 'Outfit', sans-serif; font-size: 10.5px; font-weight: 700;
  padding: 3px 10px; border-radius: 20px; letter-spacing: 0.06em;
}

/* MORE LINK */
.events-more {
  text-align: center;
}
.events-more a {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid rgba(0,158,170,0.25);
  color: #009EAA;
  padding: 12px 28px; border-radius: 8px;
  font-family: 'Outfit', sans-serif; font-size: 12px; font-weight: 600;
  letter-spacing: 0.06em; text-decoration: none;
  transition: all 0.2s;
}
.events-more a:hover {
  border-color: #009EAA;
  background: rgba(0,158,170,0.05);
}
.events-more a::after { content: '→'; }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.5s, transform 0.5s; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.rd1 { transition-delay: 0.07s; }
.rd2 { transition-delay: 0.14s; }
.rd3 { transition-delay: 0.21s; }

/* RESPONSIVE */
@media (max-width: 1024px) { .events-inner { padding: 0 44px; } }
@media (max-width: 860px) {
  .events-section { padding: 72px 0 68px; }
  .events-inner { padding: 0 36px; }
  .events-header { margin-bottom: 36px; }
  .events-grid { gap: 14px; }
}
@media (max-width: 700px) {
  .events-inner { padding: 0 28px; }
  .events-grid { grid-template-columns: 1fr; gap: 12px; }
  .events-header { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 28px; }
  .events-count { display: none; }
}
@media (max-width: 480px) {
  .events-section { padding: 52px 0 48px; }
  .events-inner { padding: 0 20px; }
  .event-card-top { padding: 20px 18px 16px; }
  .event-card-bottom { padding: 14px 16px; }
}

/* ======================================================== */
/* founder-section */
/* ======================================================== */
.founder-section {
  padding: 96px 0 88px;
  background: white;
  position: relative;
  overflow: hidden;
}
/* 右側をクリームで塗る斜め分割（ヒーローと呼応） */
.founder-section::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 46%;
  height: 100%;
  background: #F4F3EF;
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
}
/* 上端ティールライン */
.founder-section::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #2DC4C0 20%, #2DC4C0 80%, transparent);
}

.founder-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative; z-index: 1;
}

/* ── LEFT ── */
.founder-eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: #009EAA; margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}
.founder-eyebrow::before { content: ''; width: 20px; height: 1.5px; background: #009EAA; flex-shrink: 0; }

.founder-name-block { margin-bottom: 24px; }
.founder-role {
  font-family: 'Outfit', sans-serif;
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: #8A9BA3; margin-bottom: 8px;
}
.founder-name {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: clamp(30px, 3.2vw, 42px); font-weight: 900;
  color: #0A2830; line-height: 1.15;
  letter-spacing: -0.02em;
}
.founder-name-kana {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px; font-weight: 300;
  color: #8A9BA3; margin-top: 6px; letter-spacing: 0.1em;
}

.founder-bio {
  font-size: 14px; font-weight: 300;
  color: #4A6068; line-height: 1.95;
  margin-bottom: 24px;
  padding-left: 16px;
  border-left: 3px solid #2DC4C0;
}

.founder-quote {
  background: rgba(0,158,170,0.05);
  border: 1px solid rgba(0,158,170,0.15);
  border-radius: 10px;
  padding: 18px 20px;
  margin-bottom: 28px;
  position: relative;
}
.founder-quote::before {
  content: '\201C';
  position: absolute;
  top: 8px; left: 14px;
  font-family: 'DM Serif Display', serif;
  font-size: 40px; color: #009EAA; opacity: 0.2; line-height: 1;
}
.founder-quote p {
  font-size: 13.5px; font-weight: 300;
  color: #3A4A52; line-height: 1.85;
  font-style: italic;
  padding-left: 8px;
}

.founder-link {
  font-family: 'Outfit', sans-serif;
  font-size: 12px; font-weight: 600; letter-spacing: 0.06em;
  color: #009EAA; text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
  border-bottom: 1px solid rgba(0,158,170,0.3); padding-bottom: 2px;
  transition: gap 0.2s;
}
.founder-link::after { content: '→'; }
.founder-link:hover { gap: 10px; }

/* ── RIGHT ── */
.founder-right {
  display: flex; flex-direction: column;
  gap: 28px; align-items: center;
}

.founder-photo {
  width: 200px; height: 240px;
  background: linear-gradient(135deg, #2DC4C0 0%, #008898 60%, #005C66 100%);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4); font-size: 11px;
  font-family: 'Outfit', sans-serif; letter-spacing: 0.08em; text-align: center;
  box-shadow: 0 16px 48px rgba(0,100,100,0.2);
  position: relative; overflow: hidden;
}
.founder-photo::before {
  content: ''; position: absolute;
  top: -20px; right: -20px;
  width: 100px; height: 100px;
  background: rgba(255,255,255,0.1); border-radius: 50%;
}
.founder-photo-label { position: relative; z-index: 1; }

/* 書籍カード */
.book-card {
  background: white;
  border-radius: 14px;
  padding: 18px 20px;
  border: 1px solid rgba(0,0,0,0.08);
  display: flex; gap: 16px; align-items: flex-start;
  width: 100%; max-width: 360px;
  text-decoration: none; transition: border-color 0.2s;
}
.book-card:hover { border-color: rgba(0,158,170,0.25); }
.book-cover {
  width: 72px; height: 100px; flex-shrink: 0;
  background: linear-gradient(155deg, #2DC4C0 0%, #005C66 100%);
  border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  box-shadow: 3px 3px 10px rgba(0,0,0,0.15);
  position: relative; overflow: hidden;
}
.book-cover::after {
  content: ''; position: absolute;
  left: 0; top: 0; bottom: 0; width: 5px;
  background: rgba(0,0,0,0.18);
}
.book-info {}
.book-pub {
  font-family: 'Outfit', sans-serif;
  font-size: 9.5px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: #009EAA; margin-bottom: 7px;
}
.book-title {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 13px; font-weight: 900;
  color: #0A2830; line-height: 1.5;
  margin-bottom: 8px; letter-spacing: -0.01em;
}
.book-meta {
  font-size: 11px; font-weight: 300;
  color: #8A9BA3; line-height: 1.6;
}

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.5s, transform 0.5s; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.rd1 { transition-delay: 0.08s; }
.rd2 { transition-delay: 0.16s; }

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  .founder-section { padding: 72px 0 68px; }
  .founder-inner { padding: 0 36px; gap: 52px; }
}
@media (max-width: 700px) {
  .founder-section::before { display: none; }
  .founder-inner { grid-template-columns: 1fr; padding: 0 28px; gap: 44px; }
  .founder-right { align-items: flex-start; flex-direction: row; flex-wrap: wrap; gap: 20px; }
}
@media (max-width: 480px) {
  .founder-section { padding: 52px 0 48px; }
  .founder-inner { padding: 0 20px; }
  .founder-right { flex-direction: column; align-items: center; }
}

/* ======================================================== */
/* pricing-section */
/* ======================================================== */
.price-section {
  padding: 96px 0 88px;
  background: #F4F3EF;
  position: relative; overflow: hidden;
}
.price-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, #2DC4C0 20%, #2DC4C0 80%, transparent);
}

.price-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 56px;
}

/* ── HEADER ── */
.price-eyebrow {
  font-family: 'Outfit', sans-serif; font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: #009EAA; margin-bottom: 12px;
  display: flex; align-items: center; gap: 10px;
}
.price-eyebrow::before { content: ''; width: 20px; height: 1.5px; background: #009EAA; flex-shrink: 0; }
.price-title {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: clamp(24px, 2.8vw, 38px); font-weight: 900;
  color: #0A2830; line-height: 1.2; letter-spacing: -0.01em;
  margin-bottom: 52px;
}

/* ── GRID ── */
.price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

/* 左：価格ハイライト */
.price-highlight {
  background: linear-gradient(135deg, #2DC4C0 0%, #10AAAA 35%, #008898 70%, #005C66 100%);
  border-radius: 18px;
  padding: 48px 44px;
  position: relative; overflow: hidden;
}
.price-highlight::after {
  content: 'L';
  position: absolute; right: -16px; bottom: -56px;
  font-family: 'DM Serif Display', serif;
  font-size: 180px; font-style: italic;
  color: rgba(255,255,255,0.06);
  line-height: 1; pointer-events: none; user-select: none;
}
.price-tag {
  font-family: 'Outfit', sans-serif; font-size: 9.5px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.55); margin-bottom: 20px;
  display: flex; align-items: center; gap: 8px;
}
.price-tag::before { content: ''; width: 14px; height: 1px; background: rgba(255,255,255,0.4); }
.price-main {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(60px, 6vw, 80px); font-weight: 800;
  color: white; line-height: 1; letter-spacing: -0.04em;
  margin-bottom: 4px;
}
.price-main span { font-size: 0.38em; font-weight: 700; vertical-align: baseline; letter-spacing: -0.01em; }
.price-sub {
  font-size: 13px; font-weight: 300;
  color: rgba(255,255,255,0.55); margin-bottom: 28px;
}
.price-compare {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px; padding: 13px 18px;
  font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.8);
}
.price-compare strong {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 900; color: white; font-size: 14px;
}

/* 右：特徴リスト */
.price-features { display: flex; flex-direction: column; gap: 20px; }

.price-feature {
  display: flex; align-items: flex-start; gap: 14px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.price-feature:last-of-type { border-bottom: none; padding-bottom: 0; }

.price-feature-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: white;
  border: 1.5px solid rgba(0,158,170,0.18);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.price-feature-body h4 {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 15px; font-weight: 700;
  color: #007A85; margin-bottom: 5px; letter-spacing: -0.01em;
}
.price-feature-body p {
  font-size: 13px; font-weight: 300; color: #4A6068; line-height: 1.8;
}

.price-cta {
  margin-top: 8px;
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, #2DC4C0, #008898);
  color: white;
  padding: 14px 28px; border-radius: 8px;
  font-size: 14px; font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s;
}
.price-cta:hover { opacity: 0.88; }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.5s, transform 0.5s; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.rd1 { transition-delay: 0.08s; }

/* RESPONSIVE */
@media (max-width: 1024px) { .price-inner { padding: 0 44px; } }
@media (max-width: 860px) {
  .price-section { padding: 72px 0 68px; }
  .price-inner { padding: 0 36px; }
  .price-grid { gap: 36px; }
}
@media (max-width: 700px) {
  .price-inner { padding: 0 28px; }
  .price-grid { grid-template-columns: 1fr; gap: 32px; }
  .price-highlight { padding: 36px 32px; }
}
@media (max-width: 480px) {
  .price-section { padding: 52px 0 48px; }
  .price-inner { padding: 0 20px; }
  .price-highlight { padding: 28px 24px; border-radius: 14px; }
  .price-main { font-size: clamp(52px, 14vw, 68px); }
}

/* ======================================================== */
/* schools-section */
/* ======================================================== */
.schools-section {
  padding: 96px 0 88px;
  background: white;
  position: relative; overflow: hidden;
}
.schools-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, #2DC4C0 20%, #2DC4C0 80%, transparent);
}

.schools-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 56px;
}

/* HEADER */
.schools-header {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 36px;
}
.schools-eyebrow {
  font-family: 'Outfit', sans-serif; font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: #009EAA; margin-bottom: 12px;
  display: flex; align-items: center; gap: 10px;
}
.schools-eyebrow::before { content: ''; width: 20px; height: 1.5px; background: #009EAA; flex-shrink: 0; }
.schools-title {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: clamp(22px, 2.6vw, 34px); font-weight: 900;
  color: #0A2830; line-height: 1.2; letter-spacing: -0.01em;
}
.schools-map-link {
  font-family: 'Outfit', sans-serif;
  font-size: 12px; font-weight: 600; letter-spacing: 0.06em;
  color: #009EAA; text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
  border-bottom: 1px solid rgba(0,158,170,0.3); padding-bottom: 2px;
  white-space: nowrap; transition: gap 0.2s;
}
.schools-map-link::before { content: '📍'; }
.schools-map-link::after { content: '→'; }
.schools-map-link:hover { gap: 10px; }

/* TABS */
.schools-tabs {
  display: flex; gap: 0; margin-bottom: 28px;
  border-bottom: 2px solid rgba(0,0,0,0.07);
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.schools-tabs::-webkit-scrollbar { display: none; }
.school-tab {
  padding: 10px 20px;
  font-family: 'Outfit', sans-serif;
  font-size: 12.5px; font-weight: 600;
  color: #8A9BA3; letter-spacing: 0.04em;
  border-bottom: 2.5px solid transparent;
  margin-bottom: -2px; cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.school-tab:hover { color: #009EAA; }
.school-tab.active { color: #009EAA; border-bottom-color: #009EAA; }

/* GRID */
.schools-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
}

.school-card {
  border: 1.5px solid rgba(0,0,0,0.08);
  border-radius: 12px; padding: 18px 16px;
  text-decoration: none; display: block;
  transition: border-color 0.2s;
  position: relative;
}
.school-card:hover { border-color: rgba(0,158,170,0.3); }

.school-area {
  font-family: 'Outfit', sans-serif;
  font-size: 9.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: #8A9BA3; margin-bottom: 6px;
}
.school-name {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 15px; font-weight: 700;
  color: #0A2830; margin-bottom: 5px; letter-spacing: -0.01em;
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
}
.school-access {
  font-size: 11.5px; font-weight: 300; color: #8A9BA3;
}

/* バッジ */
.badge-new {
  font-family: 'Outfit', sans-serif; font-size: 8.5px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  background: #009EAA; color: white;
  padding: 2px 7px; border-radius: 3px;
}
.badge-closed {
  font-family: 'Outfit', sans-serif; font-size: 8.5px; font-weight: 700;
  letter-spacing: 0.06em;
  background: rgba(0,0,0,0.07); color: #8A9BA3;
  padding: 2px 7px; border-radius: 3px;
}

/* 「全校舎を見る」カード */
.school-card-more {
  border-style: dashed;
  background: rgba(0,158,170,0.02);
}
.school-card-more .school-area { color: #009EAA; }
.school-card-more .school-name { color: #009EAA; }

/* BOTTOM LINK */
.schools-bottom {
  text-align: center; margin-top: 24px;
}
.schools-bottom a {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid rgba(0,0,0,0.12);
  color: #4A6068;
  padding: 11px 24px; border-radius: 8px;
  font-family: 'Outfit', sans-serif; font-size: 12px; font-weight: 600;
  letter-spacing: 0.06em; text-decoration: none;
  transition: all 0.2s;
}
.schools-bottom a:hover { border-color: #009EAA; color: #009EAA; }
.schools-bottom a::after { content: '→'; }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.5s, transform 0.5s; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.rd1 { transition-delay: 0.06s; }

/* RESPONSIVE */
@media (max-width: 1024px) { .schools-inner { padding: 0 44px; } }
@media (max-width: 860px) {
  .schools-section { padding: 72px 0 68px; }
  .schools-inner { padding: 0 36px; }
  .schools-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
  .schools-inner { padding: 0 28px; }
  .schools-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .schools-header { flex-direction: column; align-items: flex-start; gap: 14px; }
}
@media (max-width: 480px) {
  .schools-section { padding: 52px 0 48px; }
  .schools-inner { padding: 0 20px; }
  .school-tab { font-size: 12px; padding: 9px 14px; }
  .school-card { padding: 14px 13px; }
  .school-name { font-size: 14px; }
}

/* ======================================================== */
/* campaign-section */
/* ======================================================== */
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.25; }
}

.campaign-section {
  padding: 72px 0 68px;
  background: white;
  position: relative; overflow: hidden;
}
.campaign-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, #2DC4C0 20%, #2DC4C0 80%, transparent);
}

.campaign-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 56px;
}

/* HEADER */
.campaign-header {
  display: flex; justify-content: space-between;
  align-items: center; margin-bottom: 32px;
}
.campaign-live {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Outfit', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: #C01858;
}
.campaign-live-dot {
  width: 7px; height: 7px;
  background: #C01858; border-radius: 50%;
  animation: blink 1.4s ease-in-out infinite; flex-shrink: 0;
}
.campaign-more-link {
  font-family: 'Outfit', sans-serif; font-size: 12px; font-weight: 600;
  letter-spacing: 0.06em; color: #009EAA; text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
  border-bottom: 1px solid rgba(0,158,170,0.3); padding-bottom: 2px;
  transition: gap 0.2s; white-space: nowrap;
}
.campaign-more-link::after { content: '→'; }
.campaign-more-link:hover { gap: 10px; }

/* GRID */
.campaign-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}

.campaign-card {
  background: white;
  border: 1.5px solid rgba(0,0,0,0.08);
  border-radius: 12px; padding: 22px 20px;
  text-decoration: none; display: block;
  position: relative; overflow: hidden;
  transition: border-color 0.2s;
}
/* 上端カラーライン */
.campaign-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  border-radius: 12px 12px 0 0;
}
.campaign-card.orange::before { background: linear-gradient(90deg, #E89715, #f0b040); }
.campaign-card.pink::before   { background: linear-gradient(90deg, #C01858, #E84080); }
.campaign-card.teal::before   { background: linear-gradient(90deg, #2DC4C0, #009EAA); }

.campaign-card.orange:hover { border-color: rgba(232,151,21,0.3); }
.campaign-card.pink:hover   { border-color: rgba(192,24,88,0.3); }
.campaign-card.teal:hover   { border-color: rgba(0,158,170,0.3); }

.campaign-tag {
  font-family: 'Outfit', sans-serif; font-size: 9.5px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 20px;
  display: inline-block; margin-bottom: 12px;
}
.campaign-card.orange .campaign-tag { background: rgba(232,151,21,0.1); color: #B86A00; }
.campaign-card.pink .campaign-tag   { background: rgba(192,24,88,0.08);  color: #C01858; }
.campaign-card.teal .campaign-tag   { background: rgba(0,158,170,0.08);  color: #007A85; }

.campaign-title {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 14px; font-weight: 700;
  color: #0A2830; line-height: 1.5;
  margin-bottom: 10px; letter-spacing: -0.01em;
}
.campaign-period {
  font-family: 'Outfit', sans-serif; font-size: 11px; font-weight: 400;
  color: #8A9BA3; display: flex; align-items: center; gap: 5px;
}
.campaign-period::before { content: '📅'; font-size: 10px; }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.5s, transform 0.5s; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.rd1 { transition-delay: 0.07s; }
.rd2 { transition-delay: 0.14s; }
.rd3 { transition-delay: 0.21s; }

/* RESPONSIVE */
@media (max-width: 1024px) { .campaign-inner { padding: 0 44px; } }
@media (max-width: 860px) {
  .campaign-section { padding: 56px 0 52px; }
  .campaign-inner { padding: 0 36px; }
}
@media (max-width: 700px) {
  .campaign-inner { padding: 0 28px; }
  .campaign-grid { grid-template-columns: 1fr; gap: 12px; }
  .campaign-header { flex-direction: column; align-items: flex-start; gap: 12px; margin-bottom: 24px; }
}
@media (max-width: 480px) {
  .campaign-section { padding: 48px 0 44px; }
  .campaign-inner { padding: 0 20px; }
}

/* ======================================================== */
/* footer-section */
/* ======================================================== */
/* ════════════════════════════════════
   CTA BAND（フッター直上）
   ════════════════════════════════════ */
.cta-band {
  background: linear-gradient(135deg, #2DC4C0 0%, #10AAAA 35%, #008898 70%, #005C66 100%);
  padding: 72px 0 68px;
  position: relative; overflow: hidden; text-align: center;
}
.cta-band::after {
  content: 'L';
  position: absolute; right: -20px; bottom: -60px;
  font-family: 'DM Serif Display', serif;
  font-size: 280px; font-style: italic;
  color: rgba(255,255,255,0.05);
  line-height: 1; pointer-events: none; user-select: none;
}
.cta-inner {
  max-width: 640px; margin: 0 auto; padding: 0 40px;
  position: relative; z-index: 1;
}
.cta-eyebrow {
  font-family: 'Outfit', sans-serif; font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.cta-eyebrow::before,
.cta-eyebrow::after { content: ''; width: 20px; height: 1px; background: rgba(255,255,255,0.35); }
.cta-title {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: clamp(24px, 3vw, 36px); font-weight: 900;
  color: white; line-height: 1.25; margin-bottom: 14px; letter-spacing: -0.01em;
}
.cta-sub {
  font-size: 14px; font-weight: 300;
  color: rgba(255,255,255,0.65); line-height: 1.85; margin-bottom: 36px;
}
.cta-btn {
  display: inline-flex; align-items: center; gap: 9px;
  background: white; color: #005C66;
  padding: 16px 36px; border-radius: 8px;
  font-size: 15px; font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  transition: all 0.2s;
}
.cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.16); }

/* ════════════════════════════════════
   FOOTER
   ════════════════════════════════════ */
footer {
  background: #0A1E28;
  padding: 64px 0 0;
  color: rgba(255,255,255,0.35);
  position: relative; overflow: hidden;
}
/* 上端にティールライン */
footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, #2DC4C0 20%, #2DC4C0 80%, transparent);
}
/* デコ文字 */
footer::after {
  content: 'L';
  position: absolute; left: -20px; top: -30px;
  font-family: 'DM Serif Display', serif;
  font-size: 320px; font-style: italic;
  color: rgba(255,255,255,0.02);
  line-height: 1; pointer-events: none; user-select: none;
}

.footer-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 56px;
  position: relative; z-index: 1;
}

/* TOP GRID */
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 52px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* ブランドカラム */
.footer-brand {}
.footer-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 20px; color: white; text-decoration: none;
  display: inline-block; margin-bottom: 12px; letter-spacing: -0.01em;
}
.footer-brand-desc {
  font-size: 13px; font-weight: 300;
  color: rgba(255,255,255,0.38); line-height: 1.85;
  margin-bottom: 24px;
}
/* SNSリンク */
.footer-sns {
  display: flex; gap: 10px;
}
.footer-sns-btn {
  width: 34px; height: 34px; border-radius: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.footer-sns-btn:hover { background: rgba(45,196,192,0.1); border-color: rgba(45,196,192,0.25); }

/* リンクカラム */
.footer-col {}
.footer-col-title {
  font-family: 'Outfit', sans-serif; font-size: 9.5px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.22); margin-bottom: 18px;
}
.footer-col a {
  display: block; text-decoration: none;
  font-size: 12.5px; font-weight: 300;
  color: rgba(255,255,255,0.38);
  padding: 5px 0; letter-spacing: 0.01em;
  transition: color 0.18s;
}
.footer-col a:hover { color: rgba(255,255,255,0.72); }

/* BOTTOM BAR */
.footer-bottom {
  padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'Outfit', sans-serif; font-size: 11px;
  color: rgba(255,255,255,0.18);
}
.footer-bottom-links {
  display: flex; gap: 20px;
}
.footer-bottom-links a {
  color: rgba(255,255,255,0.18); text-decoration: none;
  transition: color 0.18s;
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.45); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .footer-inner { padding: 0 44px; }
}
@media (max-width: 860px) {
  .cta-band { padding: 56px 0 52px; }
  footer { padding: 52px 0 0; }
  .footer-inner { padding: 0 36px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 700px) {
  .footer-inner { padding: 0 28px; }
  .footer-top { gap: 28px; }
  .cta-inner { padding: 0 28px; }
}
@media (max-width: 480px) {
  .cta-band { padding: 48px 0 44px; }
  .cta-inner { padding: 0 20px; }
  .cta-btn { padding: 14px 28px; font-size: 14px; }
  footer { padding: 44px 0 0; }
  .footer-inner { padding: 0 20px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; gap: 12px 16px; }
}