/* =========================================================
   田中しほ 公式サイト — スタイル
   ベース: 京都らしい藍 (#2E4057) × クリーム (#FAF7F2)
   アクセント: 桜色 (#E8A5B5) × ゴールド (#C9A96E)
   ========================================================= */

:root {
  --color-bg: #FAF7F2;
  --color-bg-alt: #F3EEE6;
  --color-ink: #1E2A38;
  --color-ink-soft: #4A5566;
  --color-accent: #2E4057;       /* 京都藍 */
  --color-accent-deep: #1E2B3C;
  --color-hero-veil: #3F6193;    /* トップの文字下に敷く淡い青 */
  --color-sakura: #E8A5B5;       /* 桜色 */
  --color-sakura-soft: #F7DDE2;
  --color-gold: #C9A96E;         /* ほのかな金 */
  --color-line: #E5DED3;
  --color-white: #FFFFFF;

  --font-sans: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --font-serif: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --font-script: "Cormorant Garamond", serif;

  --shadow-sm: 0 2px 12px rgba(30, 42, 56, 0.06);
  --shadow-md: 0 10px 40px rgba(30, 42, 56, 0.10);
  --shadow-lg: 0 24px 60px rgba(30, 42, 56, 0.14);

  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 24px;

  --ease: cubic-bezier(.2,.7,.2,1);
}

/* =================== Reset =================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--color-ink);
  background: var(--color-bg);
  line-height: 1.8;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--color-sakura); }
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 500; line-height: 1.3; letter-spacing: .02em; }
ul, ol { list-style: none; padding: 0; margin: 0; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }

.container { width: min(1160px, 92vw); margin: 0 auto; }
.sp-hide { display: inline; }
@media (max-width: 720px) { .sp-hide { display: none; } }
.sp-br { display: none; }
@media (max-width: 600px) { .sp-br { display: inline; } }

/* =================== Reveal animation =================== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* =================== Header / Nav =================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(250, 247, 242, .0);
  backdrop-filter: blur(0);
  transition: background .3s var(--ease), backdrop-filter .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.scrolled {
  background: rgba(250, 247, 242, .92);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  width: min(1160px, 92vw);
  margin: 0 auto;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: flex; flex-direction: column; gap: 2px; line-height: 1; }
.brand-name { font-family: var(--font-serif); font-size: 18px; font-weight: 700; color: var(--color-accent); }
.site-header.scrolled .brand-name { color: var(--color-accent); }
.brand-sub { font-family: var(--font-script); font-style: italic; font-size: 11px; letter-spacing: .15em; color: var(--color-ink-soft); }
.site-header:not(.scrolled) .brand-name,
.site-header:not(.scrolled) .brand-sub { color: #fff; }

.nav { display: flex; gap: 28px; }
.nav a {
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--color-ink);
  position: relative;
}
.site-header:not(.scrolled) .nav a { color: #fff; }
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav a:hover::after { transform: scaleX(1); }

.nav-toggle { display: none; width: 40px; height: 40px; position: relative; }
.nav-toggle span {
  position: absolute;
  left: 8px; right: 8px;
  height: 1.5px;
  background: #fff;
  transition: transform .3s var(--ease), opacity .3s var(--ease), background .2s var(--ease);
}
.site-header.scrolled .nav-toggle span { background: var(--color-accent); }
.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 19px; }
.nav-toggle span:nth-child(3) { top: 24px; }

@media (max-width: 860px) {
  .nav-toggle { display: block; z-index: 60; }
  .nav {
    position: fixed;
    inset: 0;
    background: var(--color-bg);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    transform: translateX(100%);
    transition: transform .4s var(--ease);
    z-index: 55;
  }
  .nav.open { transform: translateX(0); }
  .nav a { font-size: 18px; color: var(--color-accent) !important; }
  .nav-toggle.open span { background: var(--color-accent); }
  .nav-toggle.open span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }
}

/* =================== HERO =================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero-media { position: absolute; inset: 0; z-index: -1; }
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 55%;
  transform: scale(1.05);
  animation: heroZoom 14s var(--ease) forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(63, 97, 147, .82) 0%, rgba(63, 97, 147, .48) 30%, rgba(63, 97, 147, .1) 60%, rgba(63, 97, 147, .26) 100%);
}

.hero-content {
  width: min(1160px, 92vw);
  margin: 0 auto;
  padding: 0 0 60px;
}
.eyebrow {
  font-family: var(--font-script);
  font-style: italic;
  letter-spacing: .3em;
  font-size: 13px;
  opacity: .9;
  margin: 0 0 20px;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px; height: 1px;
  background: currentColor;
  margin-right: 12px;
  vertical-align: middle;
}
.hero-title {
  font-size: clamp(38px, 6.5vw, 78px);
  font-weight: 500;
  margin: 0 0 28px;
  letter-spacing: .04em;
  line-height: 1.25;
  text-shadow: 0 2px 20px rgba(0,0,0,.2);
}
.hero-name {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.6vw, 30px);
  letter-spacing: .12em;
  margin: 0 0 24px;
  font-weight: 600;
}
.hero-name span {
  font-size: .55em;
  font-weight: 400;
  letter-spacing: .2em;
  opacity: .85;
  margin-left: 12px;
}
.hero-lead {
  font-size: clamp(15px, 1.6vw, 18px);
  max-width: 620px;
  margin: 0 0 36px;
  line-height: 2;
  opacity: .95;
}
.hero-meta {
  display: flex;
  gap: 0;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.hero-meta span {
  font-size: 12.5px;
  letter-spacing: .12em;
  padding: 0 18px;
  border-right: 1px solid rgba(255,255,255,.4);
}
.hero-meta span:first-child { padding-left: 0; }
.hero-meta span:last-child { border-right: 0; }

.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .08em;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
}
.btn-primary {
  background: var(--color-sakura);
  color: var(--color-white);
  box-shadow: 0 10px 28px rgba(232, 165, 181, .35);
}
.btn-primary:hover { background: #d88b9d; color: #fff; transform: translateY(-2px); box-shadow: 0 16px 34px rgba(232, 165, 181, .45); }
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.7);
}
.btn-ghost:hover { background: rgba(255,255,255,.15); color: #fff; }

.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px; height: 48px;
}
.scroll-hint span {
  position: absolute;
  left: 50%;
  top: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, rgba(255,255,255,.7) 0%, rgba(255,255,255,0) 100%);
  transform-origin: top;
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* スマホ: PCと同様に写真を全面に敷き、半透明の青ヴェールで文字を載せる（写真が透ける） */
@media (max-width: 600px) {
  .hero {
    flex-direction: column;
    justify-content: flex-end;
    align-items: stretch;
    height: auto;
  }
  .hero-media img { object-position: center 20%; }
  .hero-overlay {
    background: linear-gradient(to top, rgba(63, 97, 147, .9) 0%, rgba(63, 97, 147, .62) 30%, rgba(63, 97, 147, .28) 58%, rgba(63, 97, 147, .14) 78%, rgba(63, 97, 147, .34) 100%);
  }
  .hero-content { padding: 104px 24px 44px; }
  .scroll-hint { display: none; }
}

/* =================== Sections (共通) =================== */
.section { padding: 120px 0; position: relative; }
.section-header { text-align: center; margin-bottom: 72px; }
.section-eyebrow {
  font-family: var(--font-script);
  font-style: italic;
  letter-spacing: .3em;
  font-size: 13px;
  color: var(--color-sakura);
  margin: 0 0 16px;
  text-transform: uppercase;
}
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  margin: 0 0 24px;
  color: var(--color-accent);
}
.section-lead {
  font-size: 16px;
  color: var(--color-ink-soft);
  max-width: 680px;
  margin: 0 auto;
  line-height: 2;
}

/* =================== About =================== */
.about { background: linear-gradient(180deg, var(--color-bg) 0%, #fff 100%); }
.grid-2 { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; }
@media (max-width: 900px) { .grid-2 { grid-template-columns: 1fr; gap: 48px; } }

.about-media { position: relative; }
.frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--color-bg-alt);
  aspect-ratio: 4/5;
}
.frame::before {
  content: "";
  position: absolute;
  inset: -16px -16px auto auto;
  width: 60%; height: 60%;
  border: 1px solid var(--color-sakura);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.frame img { width: 100%; height: 100%; object-fit: cover; }
.badge {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--color-accent);
  color: #fff;
  padding: 20px 26px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: baseline;
  gap: 10px;
  box-shadow: var(--shadow-md);
}
.badge-num { font-family: var(--font-serif); font-size: 44px; line-height: 1; font-weight: 600; }
.badge-label { font-size: 11px; letter-spacing: .1em; line-height: 1.4; }

.about-body .section-title { text-align: left; }
.about-body .section-lead { margin: 0 0 32px; max-width: none; }
.profile-list {
  margin: 0;
  border-top: 1px solid var(--color-line);
}
.profile-list > div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--color-line);
  font-size: 14.5px;
}
.profile-list dt {
  font-weight: 500;
  color: var(--color-accent);
  letter-spacing: .06em;
  font-size: 13px;
  padding-top: 2px;
}
.profile-list dd { margin: 0; color: var(--color-ink-soft); }
@media (max-width: 600px) {
  .profile-list > div { grid-template-columns: 100px 1fr; gap: 12px; }
}

/* =================== Story / Timeline =================== */
.story { background: var(--color-bg-alt); position: relative; overflow: hidden; }
.story::before {
  content: "Story";
  position: absolute;
  top: 60px; right: -20px;
  font-family: var(--font-script);
  font-style: italic;
  font-size: clamp(100px, 18vw, 220px);
  color: rgba(232, 165, 181, .12);
  pointer-events: none;
  line-height: 1;
}

.timeline {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  padding: 40px 0;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent 0%, var(--color-sakura) 10%, var(--color-sakura) 90%, transparent 100%);
  transform: translateX(-50%);
}
@media (max-width: 820px) {
  .timeline::before { left: 24px; }
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 24px;
  align-items: start;
  margin-bottom: 80px;
}
.timeline-item:last-child { margin-bottom: 0; }

.timeline-marker {
  grid-column: 2;
  grid-row: 1;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--color-bg);
  border: 1px solid var(--color-sakura);
  color: var(--color-accent);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  margin: 0 auto;
  box-shadow: 0 4px 16px rgba(232, 165, 181, .3);
  position: relative;
  z-index: 1;
}
.timeline-body {
  grid-column: 1;
  background: #fff;
  padding: 28px 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.timeline-body::after {
  content: "";
  position: absolute;
  top: 28px;
  right: -8px;
  width: 16px; height: 16px;
  background: #fff;
  transform: rotate(45deg);
}
.timeline-media {
  grid-column: 3;
  grid-row: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4/3;
}
.timeline-media img { width: 100%; height: 100%; object-fit: cover; }

.timeline-item.reverse .timeline-body { grid-column: 3; }
.timeline-item.reverse .timeline-body::after { right: auto; left: -8px; }
.timeline-item.reverse .timeline-media { grid-column: 1; grid-row: 1; }

.timeline-item:not(:has(.timeline-media)) .timeline-body { grid-column: 1 / span 1; }
.timeline-item.reverse:not(:has(.timeline-media)) .timeline-body { grid-column: 3 / span 1; }

.timeline-body h3 {
  font-size: clamp(17px, 2vw, 20px);
  margin: 0 0 12px;
  color: var(--color-accent);
}
.timeline-body p {
  margin: 0;
  color: var(--color-ink-soft);
  font-size: 14.5px;
  line-height: 2;
}
.timeline-body strong { color: var(--color-ink); font-weight: 700; }

@media (max-width: 820px) {
  .timeline-item,
  .timeline-item.reverse {
    grid-template-columns: 48px 1fr;
    gap: 16px;
    margin-bottom: 56px;
  }
  .timeline-marker {
    grid-column: 1; grid-row: 1;
    width: 48px; height: 48px; font-size: 14px;
  }
  /* モバイルは画像有無・reverse に関わらず body は2カラム目 */
  .timeline-item .timeline-body,
  .timeline-item.reverse .timeline-body,
  .timeline-item:not(:has(.timeline-media)) .timeline-body,
  .timeline-item.reverse:not(:has(.timeline-media)) .timeline-body {
    grid-column: 2; grid-row: 1;
    padding: 22px 24px;
    min-width: 0;
  }
  .timeline-body::after,
  .timeline-item.reverse .timeline-body::after {
    top: 18px; left: -8px; right: auto;
  }
  .timeline-media,
  .timeline-item.reverse .timeline-media {
    grid-column: 2; grid-row: 2;
    margin-top: 14px;
  }
}

/* =================== Vision =================== */
.vision { background: var(--color-bg); }
.vision .section-title { text-align: center; }
.vision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}
@media (max-width: 860px) { .vision-grid { grid-template-columns: 1fr; } }

.vision-card {
  background: #fff;
  padding: 48px 36px;
  border-radius: var(--radius-md);
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  border-top: 3px solid var(--color-sakura);
}
.vision-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.vision-num {
  display: inline-block;
  font-family: var(--font-script);
  font-style: italic;
  font-size: 48px;
  color: var(--color-sakura);
  line-height: 1;
  margin-bottom: 16px;
}
.vision-card h3 {
  font-size: 20px;
  margin: 0 0 16px;
  color: var(--color-accent);
  line-height: 1.5;
}
.vision-card p {
  font-size: 14.5px;
  color: var(--color-ink-soft);
  margin: 0;
  line-height: 2;
}
.vision-card strong { color: var(--color-ink); font-weight: 700; }

/* =================== Stats =================== */
.stats { background: var(--color-accent); color: #fff; padding: 88px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}
@media (max-width: 700px) { .stats-grid { grid-template-columns: 1fr; gap: 40px; } }

.stat { position: relative; }
.stat + .stat::before {
  content: "";
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(255,255,255,.2);
}
@media (max-width: 700px) { .stat + .stat::before { display: none; } }

.stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 500;
  letter-spacing: .04em;
  margin-bottom: 10px;
  color: var(--color-sakura-soft);
}
.stat-num small { font-size: 18px; color: rgba(255,255,255,.6); margin-left: 4px; }
.stat-label { font-size: 13px; letter-spacing: .1em; opacity: .85; }

/* =================== Work / Policy =================== */
.work { background: #fff; }

.work-feature {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
  background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-sakura-soft) 180%);
  padding: 56px;
  border-radius: var(--radius-lg);
  margin-bottom: 72px;
}
@media (max-width: 900px) { .work-feature { grid-template-columns: 1fr; padding: 32px; gap: 32px; } }

.work-feature-media {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
}
.work-feature-media img { width: 100%; height: 100%; object-fit: cover; }

.work-tag {
  display: inline-block;
  font-family: var(--font-script);
  font-style: italic;
  letter-spacing: .2em;
  font-size: 12px;
  color: var(--color-sakura);
  text-transform: uppercase;
  margin: 0 0 12px;
  padding: 4px 14px;
  border: 1px solid var(--color-sakura);
  border-radius: 999px;
}
.work-feature-body h3 {
  font-size: clamp(24px, 3vw, 32px);
  margin: 0 0 20px;
  color: var(--color-accent);
}
.work-feature-body p {
  color: var(--color-ink-soft);
  font-size: 15px;
  line-height: 2;
  margin: 0;
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .policy-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .policy-grid { grid-template-columns: 1fr; } }

.policy-card {
  background: var(--color-bg);
  padding: 32px 28px;
  border-radius: var(--radius-md);
  transition: transform .4s var(--ease), background .4s var(--ease);
}
.policy-card:hover { transform: translateY(-4px); background: #fff; box-shadow: var(--shadow-sm); }
.policy-card h4 {
  font-size: 17px;
  margin: 0 0 14px;
  color: var(--color-accent);
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.policy-card h4 span {
  font-family: var(--font-script);
  font-style: italic;
  font-size: 24px;
  color: var(--color-sakura);
  font-weight: 400;
}
.policy-card p {
  margin: 0;
  font-size: 14px;
  color: var(--color-ink-soft);
  line-height: 2;
}
.policy-card strong { color: var(--color-ink); font-weight: 700; }

/* =================== Questions (議会質問テーマ) =================== */
.questions {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: 56px;
}
@media (max-width: 700px) { .questions { padding: 32px 24px; } }
.questions-title {
  font-size: clamp(20px, 2.6vw, 26px);
  color: var(--color-accent);
  margin: 0 0 8px;
  text-align: center;
}
.questions-lead {
  text-align: center;
  color: var(--color-ink-soft);
  font-size: 14.5px;
  margin: 0 0 32px;
}
.questions-list {
  max-width: 720px;
  margin: 0 auto;
}
.questions-list li {
  position: relative;
  padding: 16px 8px 16px 40px;
  border-bottom: 1px solid var(--color-line);
  font-size: 15px;
  color: var(--color-ink);
  line-height: 1.8;
}
.questions-list li:last-child { border-bottom: 0; }
.questions-list li::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 24px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--color-sakura-soft);
  border: 1px solid var(--color-sakura);
}
.questions-list li::after {
  content: "";
  position: absolute;
  left: 13px;
  top: 28px;
  width: 7px; height: 5px;
  border-left: 1.5px solid var(--color-accent);
  border-bottom: 1.5px solid var(--color-accent);
  transform: rotate(-45deg);
}

/* =================== Achievement details =================== */
.achievement-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 56px 0 44px;
}
@media (max-width: 860px) { .achievement-details { grid-template-columns: 1fr; } }
.ach-item {
  background: var(--color-bg);
  border-radius: var(--radius-md);
  padding: 34px 30px;
  border-top: 3px solid var(--color-accent);
}
.ach-num {
  font-family: var(--font-script);
  font-style: italic;
  font-size: 40px;
  color: var(--color-sakura);
  line-height: 1;
  display: block;
  margin-bottom: 14px;
}
.ach-item h4 { font-size: 18px; color: var(--color-accent); margin: 0 0 14px; line-height: 1.5; }
.ach-item p { font-size: 14px; color: var(--color-ink-soft); margin: 0; line-height: 1.95; }
.ach-item strong { color: var(--color-ink); font-weight: 700; }
.ach-list { margin: 14px 0 0; display: flex; flex-direction: column; gap: 10px; }
.ach-list li { font-size: 13.5px; color: var(--color-ink-soft); padding-left: 16px; position: relative; line-height: 1.7; }
.ach-list li::before { content: ""; position: absolute; left: 0; top: 9px; width: 6px; height: 6px; border-radius: 50%; background: var(--color-sakura); }
.achievement-closing {
  text-align: center;
  font-family: var(--font-serif);
  font-size: clamp(16px, 2.2vw, 21px);
  color: var(--color-accent);
  line-height: 1.95;
  margin: 0;
  letter-spacing: .04em;
}

/* =================== Video (代表質問) =================== */
.video-block { margin-top: 80px; text-align: center; }
.video-eyebrow {
  font-family: var(--font-script);
  font-style: italic;
  letter-spacing: .3em;
  font-size: 13px;
  color: var(--color-sakura);
  margin: 0 0 12px;
  text-transform: uppercase;
}
.video-heading { font-size: clamp(22px, 3vw, 30px); color: var(--color-accent); margin: 0 0 14px; }
.video-sub { font-size: 14.5px; color: var(--color-ink-soft); line-height: 1.9; margin: 0 auto 36px; max-width: 660px; }
.video-embed {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  background: #000;
}
.video-poster { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; transition: transform .5s var(--ease); }
.video-embed:hover .video-poster { transform: scale(1.04); }
.video-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 84px; height: 84px;
  border-radius: 50%;
  background: rgba(232, 165, 181, .94);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .35);
  transition: transform .3s var(--ease), background .3s var(--ease);
}
.video-embed:hover .video-play { transform: scale(1.08); background: var(--color-sakura); }
.video-play-ico {
  width: 0; height: 0;
  border-style: solid;
  border-width: 13px 0 13px 22px;
  border-color: transparent transparent transparent #fff;
  margin-left: 5px;
}
.video-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

/* =================== Voice =================== */
.voice { background: var(--color-bg-alt); }
.voice-inner { text-align: center; }
.voice .section-title { margin: 0 auto 24px; }
.voice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 56px;
  text-align: left;
}
@media (max-width: 860px) { .voice-grid { grid-template-columns: 1fr; gap: 40px; } }

.voice-text p {
  font-size: 16px;
  color: var(--color-ink-soft);
  line-height: 2.2;
  margin: 0 0 20px;
}
.voice-text p:last-child { margin: 0; }
.voice-text strong { color: var(--color-accent); font-weight: 700; }
.voice-close {
  font-family: var(--font-serif);
  font-size: 20px !important;
  color: var(--color-accent) !important;
  padding-top: 16px;
  border-top: 1px solid var(--color-line);
}

.sns-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 480px) { .sns-list { grid-template-columns: 1fr; } }

.sns-list a {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 4px 16px;
  align-items: center;
  background: #fff;
  padding: 20px 22px;
  border-radius: var(--radius-md);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), color .3s var(--ease);
  box-shadow: var(--shadow-sm);
  color: var(--color-accent);
}
.sns-list a:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); color: var(--color-sakura); }
.sns-ico {
  grid-row: 1 / span 2;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--color-sakura-soft);
  color: var(--color-accent);
  display: flex; align-items: center; justify-content: center;
  transition: background .3s var(--ease);
}
.sns-list a:hover .sns-ico { background: var(--color-sakura); color: #fff; }
.sns-label { font-size: 14px; font-weight: 600; letter-spacing: .05em; }
.sns-handle { font-size: 12px; color: var(--color-ink-soft); font-family: var(--font-script); letter-spacing: .06em; }

/* =================== Voice: SNSリンクのみ表示 =================== */
.voice-grid.single {
  grid-template-columns: 1fr;
  max-width: 720px;
  margin: 48px auto 0;
}
.voice-grid.single .sns-list { grid-template-columns: 1fr 1fr; }
@media (max-width: 480px) { .voice-grid.single .sns-list { grid-template-columns: 1fr; } }

/* =================== Supporter =================== */
.supporter { background: #fff; }
.supporter-inner { text-align: center; max-width: 960px; margin: 0 auto; }
.supporter .section-lead { margin-bottom: 48px; }
.supporter-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 44px;
  text-align: left;
}
@media (max-width: 760px) { .supporter-cards { grid-template-columns: 1fr; } }
.supporter-card {
  background: var(--color-bg);
  border-radius: var(--radius-md);
  padding: 30px 28px;
  border-top: 3px solid var(--color-sakura);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.supporter-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.supporter-card h3 { font-size: 17px; color: var(--color-accent); margin: 0 0 12px; }
.supporter-card p { font-size: 14px; color: var(--color-ink-soft); margin: 0; line-height: 1.9; }
.supporter-cta { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.btn-line {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #06C755;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  padding: 16px 40px;
  border-radius: 999px;
  letter-spacing: .06em;
  box-shadow: 0 10px 26px rgba(6, 199, 85, .3);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.btn-line:hover { transform: translateY(-2px); color: #fff; box-shadow: 0 16px 32px rgba(6, 199, 85, .42); }
.btn-line-ico { display: inline-flex; }
.supporter-note { font-size: 12.5px; color: var(--color-ink-soft); margin: 0; max-width: 560px; line-height: 1.85; }

/* =================== Profile catch (志して、歩く) =================== */
.profile-catch {
  font-family: var(--font-serif);
  font-size: clamp(16px, 2vw, 21px);
  color: var(--color-sakura);
  letter-spacing: .12em;
  margin: 0 0 26px;
  font-weight: 500;
}

/* =================== Press banner (広報誌への導線) =================== */
.press-banner-section { background: var(--color-bg-alt); }
.press-banner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 56px;
  align-items: center;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 52px 56px;
  box-shadow: var(--shadow-md);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.press-banner:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.press-banner-covers {
  position: relative;
  width: 288px;
  height: 200px;
  margin: 0 auto;
}
.press-banner-covers img {
  position: absolute;
  top: 50%;
  width: 168px;
  border-radius: 6px;
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-md);
  transition: transform .45s var(--ease);
}
.press-banner-covers img:nth-child(1) { left: 0; transform: translateY(-50%) rotate(-7deg); }
.press-banner-covers img:nth-child(2) { left: 60px; transform: translateY(-50%) rotate(0deg); z-index: 2; }
.press-banner-covers img:nth-child(3) { left: 120px; transform: translateY(-50%) rotate(7deg); }
.press-banner:hover .press-banner-covers img:nth-child(1) { transform: translateY(-50%) rotate(-12deg) translateX(-8px); }
.press-banner:hover .press-banner-covers img:nth-child(3) { transform: translateY(-50%) rotate(12deg) translateX(8px); }
.press-banner-eyebrow {
  font-family: var(--font-script);
  font-style: italic;
  letter-spacing: .22em;
  color: var(--color-sakura);
  font-size: 14px;
  margin: 0 0 10px;
  text-transform: uppercase;
}
.press-banner-body h2 { font-size: clamp(23px, 3vw, 32px); color: var(--color-accent); margin: 0 0 16px; }
.press-banner-body > p { color: var(--color-ink-soft); font-size: 14.5px; line-height: 1.95; margin: 0 0 22px; }
.press-banner-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--color-accent);
  font-size: 15px;
  letter-spacing: .04em;
  border-bottom: 2px solid var(--color-sakura);
  padding-bottom: 4px;
  transition: gap .3s var(--ease), color .3s var(--ease);
}
.press-banner:hover .press-banner-cta { gap: 14px; color: var(--color-sakura); }
@media (max-width: 780px) {
  .press-banner { grid-template-columns: 1fr; gap: 36px; padding: 40px 28px; text-align: center; }
  .press-banner-body > p br { display: none; }
}

/* =================== Gallery =================== */
.gallery { background: #fff; padding: 100px 0; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
.gallery-grid figure {
  position: relative;
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1/1;
  box-shadow: var(--shadow-sm);
}
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.gallery-grid figure:hover img { transform: scale(1.06); }
.gallery-grid figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 16px 14px;
  background: linear-gradient(to top, rgba(30,43,60,.85), transparent);
  color: #fff;
  font-size: 12px;
  letter-spacing: .08em;
}

/* =================== Contact =================== */
.contact {
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-alt) 100%);
  padding: 120px 0;
}
.contact-inner { text-align: center; max-width: 880px; margin: 0 auto; }
.contact .section-lead { margin-bottom: 56px; }

.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  text-align: left;
  margin-bottom: 48px;
}
@media (max-width: 760px) { .contact-cards { grid-template-columns: 1fr; } }

.contact-card {
  background: #fff;
  padding: 32px 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.contact-card h3 {
  font-size: 16px;
  margin: 0 0 16px;
  color: var(--color-accent);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-line);
}
.contact-card p { margin: 0 0 16px; font-size: 14px; color: var(--color-ink-soft); line-height: 1.9; }
.contact-card p.addr { font-size: 14.5px; color: var(--color-ink); }
.contact-sns { display: flex; gap: 14px; flex-wrap: wrap; }
.contact-sns a {
  font-size: 13px;
  padding: 8px 16px;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  color: var(--color-accent);
}
.contact-sns a:hover { background: var(--color-sakura); color: #fff; border-color: var(--color-sakura); }

.closing {
  font-family: var(--font-serif);
  font-size: clamp(20px, 3vw, 28px);
  color: var(--color-accent);
  margin: 0;
  letter-spacing: .06em;
}

/* =================== Footer =================== */
.site-footer {
  background: var(--color-accent-deep);
  color: rgba(255,255,255,.72);
  padding: 56px 0 40px;
}
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 24px; text-align: center; }
.footer-name { font-family: var(--font-serif); font-size: 20px; color: #fff; margin: 0 0 4px; }
.footer-role { font-size: 12.5px; letter-spacing: .1em; margin: 0; opacity: .8; }
.footer-nav { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }
.footer-nav a { font-size: 13px; color: rgba(255,255,255,.8); }
.footer-nav a:hover { color: var(--color-sakura); }
.copyright { font-size: 11.5px; letter-spacing: .1em; opacity: .5; margin: 0; }

/* =================== Press page (広報誌) =================== */
.press-hero {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-deep) 100%);
  color: #fff;
  text-align: center;
  padding: 132px 20px 80px;
}
.press-hero .eyebrow { color: var(--color-sakura-soft); }
.press-hero h1 { font-size: clamp(30px, 5vw, 50px); margin: 0 0 18px; color: #fff; letter-spacing: .04em; }
.press-hero p { max-width: 640px; margin: 0 auto; opacity: .92; font-size: 15px; line-height: 2; }

.press-section { padding: 72px 0 40px; background: var(--color-bg); }
.press-tabs {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 52px;
}
.press-tab {
  padding: 10px 26px;
  border-radius: 999px;
  border: 1px solid var(--color-line);
  font-size: 14px;
  color: var(--color-accent);
  background: #fff;
  cursor: pointer;
  font-family: inherit;
  letter-spacing: .04em;
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.press-tab:hover { border-color: var(--color-sakura); }
.press-tab.active { background: var(--color-accent); color: #fff; border-color: var(--color-accent); }

.press-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
@media (max-width: 900px) { .press-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .press-grid { grid-template-columns: 1fr; } }

.press-item a { display: block; color: inherit; }
.press-cover {
  aspect-ratio: 1.414 / 1;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-line);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.press-cover img { width: 100%; height: 100%; object-fit: contain; }
.press-item a:hover .press-cover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.press-meta { margin-top: 16px; }
.press-vol { font-family: var(--font-script); font-style: italic; font-size: 15px; color: var(--color-sakura); letter-spacing: .08em; }
.press-date { font-size: 12px; color: var(--color-ink-soft); margin-left: 8px; }
.press-caption { font-size: 13.5px; color: var(--color-accent); margin: 6px 0 0; line-height: 1.65; font-weight: 500; }
.press-pdf-badge { display: inline-flex; align-items: center; gap: 5px; margin-top: 8px; font-size: 11px; color: var(--color-ink-soft); letter-spacing: .08em; }

.press-back { text-align: center; padding: 24px 0 96px; background: var(--color-bg); }
.press-back a { color: var(--color-accent); font-size: 14px; border-bottom: 1px solid var(--color-sakura); padding-bottom: 3px; }
.press-back a:hover { color: var(--color-sakura); }

/* =================== Utilities =================== */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-media img { animation: none; }
  .scroll-hint span { animation: none; }
  * { transition: none !important; }
}
