/* ===================================================================
   田中宣光 議員HP — Design System v2
   
   ★ 田中カラー（会派HP: #1e3a8a）をベースにしつつ
     「草加にAttack!」のオレンジを主役にした個人ブランドデザイン
   
   会派HP = ネイビー中心の落ち着いた団体感
   個人HP = オレンジ×ネイビーの情熱的で親しみやすい個人ブランド
   =================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800;900&family=Noto+Sans+JP:wght@400;500;700;900&family=Zen+Maru+Gothic:wght@400;500;700;900&display=swap');

/* ── CSS Custom Properties ── */
:root {
  /* 田中カラー（会派HPアクセント #1e3a8a をベースに） */
  --tanaka-navy:    #1e3a8a;
  --tanaka-navy-light: #2d4ea3;
  --tanaka-navy-dark:  #152a6b;

  /* Attack! ブランドカラー（個人HP主役） */
  --attack-500: #f97316;
  --attack-600: #ea580c;
  --attack-400: #fb923c;
  --attack-300: #fdba74;
  --attack-glow: rgba(249,115,22,.25);

  /* 暖色系アクセント */
  --warm-50:  #fffbeb;
  --warm-100: #fef3c7;
  --warm-200: #fde68a;

  /* ニュートラル */
  --gray-50:  #fafaf9;
  --gray-100: #f5f5f4;
  --gray-200: #e7e5e4;
  --gray-300: #d6d3d1;
  --gray-400: #a8a29e;
  --gray-500: #78716c;
  --gray-600: #57534e;
  --gray-700: #44403c;
  --gray-800: #292524;
  --gray-900: #1c1917;

  /* セマンティック */
  --green-500: #16a34a;
  --blue-500:  #3b82f6;
  --red-500:   #ef4444;
  --purple-500:#8b5cf6;

  --font-sans: 'Inter', 'Noto Sans JP', -apple-system, sans-serif;
  --font-round: 'Zen Maru Gothic', 'Noto Sans JP', sans-serif;
  --font-serif: 'Hiragino Mincho ProN', 'Yu Mincho', serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.06);
  --shadow-md:  0 4px 12px rgba(0,0,0,.08);
  --shadow-lg:  0 12px 28px rgba(0,0,0,.1);
  --shadow-xl:  0 20px 50px rgba(0,0,0,.14);
  --shadow-glow: 0 0 40px var(--attack-glow);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  color: var(--gray-800);
  background: var(--gray-50);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
ul, ol { list-style: none; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--attack-400); border-radius: 3px; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* ===================================================================
   HEADER — オレンジグラデ（会派HPのネイビーと完全差別化）
   =================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: linear-gradient(135deg, var(--tanaka-navy) 0%, var(--tanaka-navy-dark) 100%);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--attack-500);
  transition: all .3s ease;
}

.site-header.scrolled {
  background: rgba(30, 58, 138, 0.97);
  box-shadow: 0 4px 20px rgba(249,115,22,.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  color: #fff;
  font-size: .95rem;
  font-family: var(--font-round);
}

.header-logo .logo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--attack-500);
  border-radius: 8px;
  font-size: 1rem;
}

.header-logo .logo-sub {
  opacity: .5;
  font-weight: 500;
  font-size: .72rem;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.header-nav a {
  color: rgba(255,255,255,.75);
  font-size: .8rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  transition: all .2s;
}

.header-nav a:hover {
  color: #fff;
  background: rgba(255,255,255,.1);
}

.header-nav .nav-cta {
  background: var(--attack-500);
  color: #fff;
  padding: 7px 18px;
  font-weight: 800;
  margin-left: 6px;
}

.header-nav .nav-cta:hover { background: var(--attack-600); }

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #fff;
  padding: 8px;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 60px; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, var(--tanaka-navy-dark), #0f172a);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  transition: background .2s;
  width: 80%;
  text-align: center;
}

.mobile-nav a:hover { background: rgba(249,115,22,.15); }

@media (max-width: 768px) {
  .header-nav { display: none; }
  .mobile-menu-btn { display: block; }
}

/* ===================================================================
   HERO — 斜めオレンジオーバーレイ（会派HPの水平レイアウトと差別化）
   =================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 60px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center bottom;
  filter: brightness(0.25) contrast(1.2);
  transition: opacity 1.5s ease;
}

.hero-bg-anime {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.35) contrast(1.3) saturate(1.8) hue-rotate(20deg);
  opacity: 0;
  transition: opacity 1.5s ease;
}

.hero.anime-mode .hero-bg { opacity: 0; }
.hero.anime-mode .hero-bg-anime { opacity: 1; }

/* 斜めオレンジストライプ — 個人HPの独自性 */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg,
      rgba(249,115,22,.15) 0%,
      rgba(249,115,22,.05) 30%,
      transparent 50%,
      rgba(30,58,138,.3) 100%
    );
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--gray-50), transparent);
  z-index: 5;
}

.hero-content {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  width: 100%;
}

.hero-text { animation: fadeSlideUp .8s ease-out; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--attack-500);
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  padding: 5px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
  letter-spacing: .05em;
  box-shadow: 0 4px 14px var(--attack-glow);
}

.hero-name {
  font-family: var(--font-round);
  font-size: 1.1rem;
  color: rgba(255,255,255,.6);
  font-weight: 500;
  margin-bottom: 6px;
  letter-spacing: .15em;
}

.hero-catchphrase {
  font-family: var(--font-round);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 8px;
}

.hero-catchphrase .highlight {
  color: var(--attack-400);
  text-shadow: 0 0 40px var(--attack-glow);
}

.hero-sub {
  font-size: .95rem;
  color: rgba(255,255,255,.55);
  font-weight: 600;
  margin-bottom: 28px;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-photo {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  animation: fadeSlideUp .8s ease-out .2s both;
}

.hero-photo-frame {
  position: relative;
  width: 280px;
  height: 360px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 3px solid var(--attack-400);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 1s ease;
}

.hero-photo-frame .photo-anime {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero.anime-mode .hero-photo-frame img:first-child { opacity: 0; }
.hero.anime-mode .hero-photo-frame .photo-anime { opacity: 1; }

.anime-toggle {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(249,115,22,.4);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  z-index: 20;
  transition: all .2s;
}

.anime-toggle:hover { background: var(--attack-500); }

@media (max-width: 768px) {
  .hero { min-height: auto; padding: 100px 0 80px; }
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-photo { order: -1; }
  .hero-photo-frame { width: 180px; height: 240px; }
  .hero-actions { justify-content: center; }
}

/* ===================================================================
   COUNTDOWN TICKER — オレンジフリップ
   =================================================================== */
.countdown-ticker {
  background: linear-gradient(90deg, var(--tanaka-navy), var(--tanaka-navy-light), var(--tanaka-navy));
  color: #fff;
  padding: 14px 20px;
  text-align: center;
  font-weight: 700;
  font-size: .88rem;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--attack-500);
}

.countdown-ticker .countdown-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.countdown-number {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.countdown-digit {
  display: inline-block;
  background: var(--attack-500);
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 1.6rem;
  font-weight: 900;
  min-width: 52px;
  text-align: center;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  box-shadow: 0 4px 12px var(--attack-glow);
  animation: flipIn .6s ease;
}

.countdown-label { font-size: .72rem; opacity: .7; font-weight: 800; }

.countdown-ticker.hidden { display: none; }

/* ===================================================================
   SECTION HEADERS
   =================================================================== */
.section-spacing { padding: 80px 0; }
.section-spacing-sm { padding: 48px 0; }

.section-header { margin-bottom: 40px; }

.section-header .section-tag {
  display: inline-block;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--attack-500);
  margin-bottom: 6px;
}

.section-header h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--gray-900);
  font-family: var(--font-round);
  line-height: 1.3;
}

.section-header .section-bar {
  width: 48px;
  height: 4px;
  background: linear-gradient(90deg, var(--attack-500), var(--attack-300));
  border-radius: 2px;
  margin-top: 12px;
}

/* ===================================================================
   NEWS — カード with オレンジアクセント（会派HPのブルー系と差別化）
   =================================================================== */
.news-section { background: #fff; }

.news-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 20px;
}

.news-card-main {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 320px;
  cursor: pointer;
  transition: transform .3s;
}

.news-card-main:hover { transform: scale(1.01); }

.news-card-main .news-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .5s;
}

.news-card-main:hover .news-img { transform: scale(1.05); }

.news-card-main .news-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,25,23,.9) 0%, rgba(28,25,23,.3) 50%, transparent 100%);
}

.news-card-main .news-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
}

.news-card-main .news-cat {
  display: inline-block;
  background: var(--attack-500);
  color: #fff;
  font-size: .68rem;
  font-weight: 800;
  padding: 3px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
}

.news-card-main .news-title {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 900;
  font-family: var(--font-round);
  line-height: 1.4;
  margin-bottom: 6px;
}

.news-card-main .news-date {
  color: rgba(255,255,255,.5);
  font-size: .76rem;
  font-weight: 600;
}

.news-list-side {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.news-card-sm {
  display: flex;
  gap: 14px;
  background: var(--gray-50);
  padding: 14px;
  border-radius: var(--radius-md);
  transition: all .2s;
  cursor: pointer;
  border: 1px solid transparent;
}

.news-card-sm:hover {
  background: var(--warm-50);
  border-color: var(--attack-300);
  box-shadow: var(--shadow-sm);
}

.news-card-sm .news-thumb {
  width: 90px;
  height: 64px;
  border-radius: var(--radius-sm);
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.news-card-sm .news-meta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.news-card-sm .news-meta-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.news-card-sm .news-cat-sm {
  font-size: .65rem;
  font-weight: 800;
  color: var(--attack-600);
  background: var(--warm-50);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  border: 1px solid var(--warm-200);
}

.news-card-sm .news-date-sm {
  font-size: .65rem;
  color: var(--gray-400);
  font-weight: 600;
}

.news-card-sm .news-title-sm {
  font-size: .85rem;
  font-weight: 700;
  color: var(--gray-800);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-empty {
  text-align: center;
  color: var(--gray-400);
  padding: 60px 20px;
  font-size: .9rem;
}

@media (max-width: 768px) {
  .news-grid { grid-template-columns: 1fr; }
  .news-card-main { min-height: 240px; }
}

/* ===================================================================
   POLICY — 縦型カード with アイコン（会派HPの横型グリッドと差別化）
   =================================================================== */
.policy-section {
  background: linear-gradient(180deg, var(--gray-50) 0%, #fff 100%);
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.policy-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid transparent;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.policy-card::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 100px; height: 100px;
  border-radius: 50%;
  opacity: .04;
  transform: translate(30px, -30px);
}

.policy-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* カテゴリ別カラー */
.policy-card[data-category="community"]  { border-left-color: var(--blue-500); }
.policy-card[data-category="community"]::after { background: var(--blue-500); }
.policy-card[data-category="education"]  { border-left-color: var(--green-500); }
.policy-card[data-category="education"]::after { background: var(--green-500); }
.policy-card[data-category="healthcare"] { border-left-color: var(--red-500); }
.policy-card[data-category="healthcare"]::after { background: var(--red-500); }
.policy-card[data-category="elderly"]    { border-left-color: var(--purple-500); }
.policy-card[data-category="elderly"]::after { background: var(--purple-500); }

.policy-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.policy-card[data-category="community"] .policy-icon  { background: #eff6ff; }
.policy-card[data-category="education"] .policy-icon  { background: #f0fdf4; }
.policy-card[data-category="healthcare"] .policy-icon { background: #fef2f2; }
.policy-card[data-category="elderly"] .policy-icon    { background: #f5f3ff; }

.policy-card h3 {
  font-size: 1.05rem;
  font-weight: 900;
  margin-bottom: 14px;
  font-family: var(--font-round);
}

.policy-card[data-category="community"] h3  { color: #1e40af; }
.policy-card[data-category="education"] h3  { color: #166534; }
.policy-card[data-category="healthcare"] h3 { color: #b91c1c; }
.policy-card[data-category="elderly"] h3    { color: #6d28d9; }

.policy-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.policy-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: .84rem;
  font-weight: 600;
  color: var(--gray-600);
  line-height: 1.5;
}

.policy-list li::before {
  content: '▸';
  flex-shrink: 0;
  font-weight: 900;
  margin-top: 1px;
}

.policy-card[data-category="community"] .policy-list li::before  { color: var(--blue-500); }
.policy-card[data-category="education"] .policy-list li::before  { color: var(--green-500); }
.policy-card[data-category="healthcare"] .policy-list li::before { color: var(--red-500); }
.policy-card[data-category="elderly"] .policy-list li::before    { color: var(--purple-500); }

@media (max-width: 768px) {
  .policy-grid { grid-template-columns: 1fr; }
}

/* ===================================================================
   ACHIEVEMENTS — グラデーション背景（会派HPのフラットネイビーと差別化）
   =================================================================== */
.achievements-section {
  background: linear-gradient(160deg, var(--gray-900) 0%, #292524 50%, #1c1917 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.achievements-section::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--attack-glow), transparent 70%);
  border-radius: 50%;
}

.achievements-section::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -15%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(30,58,138,.15), transparent 70%);
  border-radius: 50%;
}

.achievement-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.achievement-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-lg);
  padding: 22px;
  transition: all .3s;
}

.achievement-card:hover {
  background: rgba(255,255,255,.08);
  border-color: var(--attack-400);
  transform: translateX(6px);
  box-shadow: 0 0 30px var(--attack-glow);
}

.achievement-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  background: rgba(249,115,22,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  border: 1px solid rgba(249,115,22,.2);
}

.achievement-body { flex: 1; }

.achievement-tag {
  display: inline-block;
  font-size: .62rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 6px;
}

.achievement-body h3 {
  font-size: .95rem;
  font-weight: 800;
  margin-bottom: 5px;
  color: #fff;
  font-family: var(--font-round);
}

.achievement-body p {
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  font-weight: 500;
  line-height: 1.7;
}

/* ===================================================================
   PROFILE — 丸型写真＋カード（会派HPの四角写真と差別化）
   =================================================================== */
.profile-section { background: #fff; }

.profile-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 44px;
  align-items: start;
}

.profile-photo-wrap {
  position: sticky;
  top: 80px;
  text-align: center;
}

.profile-photo {
  position: relative;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-xl), 0 0 0 4px var(--attack-400), 0 0 0 8px var(--warm-100);
  margin: 0 auto;
  transition: box-shadow .5s ease;
}

.profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .6s ease, transform .6s ease;
}

.profile-photo .profile-img-anime {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity .6s ease, transform .6s ease;
}

/* ホバーでジブリ風に変身 */
.profile-photo:hover .profile-img-normal,
.profile-photo.anime-active .profile-img-normal {
  opacity: 0;
  transform: scale(0.95);
}

.profile-photo:hover .profile-img-anime,
.profile-photo.anime-active .profile-img-anime {
  opacity: 1;
  transform: scale(1);
}

/* ホバー時のリング色変化 */
.profile-photo:hover,
.profile-photo.anime-active {
  box-shadow: var(--shadow-xl), 0 0 0 4px #86efac, 0 0 0 8px #dcfce7;
  cursor: pointer;
}

.profile-photo-hint {
  text-align: center;
  margin-top: 10px;
  font-size: .72rem;
  font-weight: 700;
  color: var(--attack-400);
  animation: hintBounce 2s ease infinite;
  opacity: .8;
}

@keyframes hintBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

.profile-name-card {
  text-align: center;
  margin-top: 20px;
}

.profile-name-card h3 {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--gray-900);
  font-family: var(--font-round);
}

.profile-name-card .kana {
  font-size: .72rem;
  color: var(--gray-400);
  font-weight: 600;
  letter-spacing: .1em;
}

.profile-name-card .position {
  display: inline-block;
  margin-top: 8px;
  background: var(--attack-500);
  color: #fff;
  font-size: .68rem;
  font-weight: 800;
  padding: 4px 16px;
  border-radius: var(--radius-full);
}

.profile-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.profile-message {
  background: linear-gradient(135deg, var(--warm-50), #fff);
  border-radius: var(--radius-lg);
  padding: 28px;
  border-left: 4px solid var(--attack-500);
  box-shadow: var(--shadow-sm);
}

.profile-message p {
  font-size: .92rem;
  font-weight: 600;
  color: var(--gray-700);
  line-height: 1.9;
}

.profile-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.profile-info-item {
  background: var(--gray-50);
  border-radius: var(--radius-md);
  padding: 18px;
  text-align: center;
  border: 1px solid var(--gray-200);
}

.profile-info-item .info-label {
  font-size: .68rem;
  font-weight: 700;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 5px;
}

.profile-info-item .info-value {
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--attack-600);
  font-family: var(--font-round);
}

.career-timeline {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-left: 24px;
}

.career-timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(to bottom, var(--attack-400), var(--tanaka-navy));
}

.career-item {
  position: relative;
  padding: 8px 0 8px 20px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--gray-700);
}

.career-item::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 14px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--attack-500);
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px var(--attack-300);
}

@media (max-width: 768px) {
  .profile-grid { grid-template-columns: 1fr; }
  .profile-photo-wrap { position: static; }
  .profile-photo { width: 180px; height: 180px; }
  .profile-info-grid { grid-template-columns: 1fr; }
}

/* ===================================================================
   DAILY SCHEDULE — 丸みタイムライン
   =================================================================== */
.schedule-section {
  background: linear-gradient(180deg, #fff 0%, var(--gray-50) 100%);
}

.schedule-timeline {
  display: flex;
  flex-direction: column;
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding-left: 80px;
}

.schedule-timeline::before {
  content: '';
  position: absolute;
  left: 55px;
  top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--attack-400), var(--attack-600), var(--tanaka-navy));
  border-radius: 2px;
}

.schedule-item {
  position: relative;
  padding: 14px 0 14px 32px;
  transition: transform .2s;
}

.schedule-item:hover { transform: translateX(6px); }

.schedule-time {
  position: absolute;
  left: -80px;
  top: 16px;
  font-size: .84rem;
  font-weight: 900;
  color: var(--attack-600);
  width: 50px;
  text-align: right;
}

.schedule-item::before {
  content: '';
  position: absolute;
  left: -9px;
  top: 20px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--attack-500);
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--attack-300);
}

.schedule-content {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-sm);
  border-left: 3px solid var(--attack-400);
}

.schedule-content .schedule-title {
  font-weight: 800;
  font-size: .92rem;
  color: var(--gray-800);
  margin-bottom: 4px;
  font-family: var(--font-round);
}

.schedule-content .schedule-desc {
  font-size: .78rem;
  color: var(--gray-500);
  font-weight: 500;
}

/* ===================================================================
   CTA
   =================================================================== */
.cta-section {
  background: linear-gradient(135deg, var(--warm-50), #fff);
  text-align: center;
}

.cta-inner {
  max-width: 600px;
  margin: 0 auto;
}

.cta-inner h2 {
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  font-weight: 900;
  color: var(--gray-900);
  margin-bottom: 16px;
  line-height: 1.5;
  font-family: var(--font-round);
}

.cta-inner p {
  color: var(--gray-500);
  font-weight: 600;
  margin-bottom: 32px;
  line-height: 1.8;
  font-size: .88rem;
}

.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===================================================================
   BUTTONS — オレンジ主役
   =================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 800;
  border: none;
  border-radius: var(--radius-full);
  padding: 12px 28px;
  font-size: .88rem;
  transition: all .3s;
  text-decoration: none;
}

.btn-primary {
  background: var(--attack-500);
  color: #fff;
  box-shadow: 0 4px 14px var(--attack-glow);
}

.btn-primary:hover {
  background: var(--attack-600);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--attack-glow);
}

.btn-accent {
  background: linear-gradient(135deg, var(--attack-500), var(--attack-600));
  color: #fff;
  box-shadow: 0 4px 14px var(--attack-glow);
}

.btn-accent:hover {
  background: linear-gradient(135deg, var(--attack-600), var(--attack-500));
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--attack-glow);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.35);
}

.btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--attack-400);
  color: var(--attack-300);
}

.btn-ghost {
  background: transparent;
  color: var(--attack-600);
  border: 2px solid var(--attack-300);
}

.btn-ghost:hover {
  background: var(--warm-50);
  border-color: var(--attack-500);
}

/* ===================================================================
   FOOTER — ダーク＋オレンジライン
   =================================================================== */
.site-footer {
  background: var(--gray-900);
  color: rgba(255,255,255,.4);
  padding: 36px 20px;
  text-align: center;
  border-top: 3px solid var(--attack-500);
}

.footer-name {
  font-size: .95rem;
  font-weight: 800;
  color: rgba(255,255,255,.7);
  margin-bottom: 6px;
  font-family: var(--font-round);
}

.footer-copy { font-size: .72rem; }

.footer-faction {
  margin-top: 10px;
  font-size: .7rem;
  opacity: .5;
}

.footer-faction a {
  color: var(--attack-400);
  text-decoration: underline;
}

/* ===================================================================
   ANIMATIONS & UTILITIES
   =================================================================== */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes flipIn {
  0%   { opacity: 0; transform: rotateX(-90deg); }
  100% { opacity: 1; transform: rotateX(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--attack-500);
  color: #fff;
  border: none;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  opacity: 0;
  pointer-events: none;
  transition: all .3s;
  z-index: 900;
}

.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { background: var(--tanaka-navy); transform: translateY(-3px); }

/* ── News Detail Modal ── */
.news-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.news-modal-overlay.open { display: flex; }

.news-modal {
  background: #fff;
  border-radius: 16px;
  max-width: 700px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem;
  position: relative;
}

.news-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gray-100, #f3f4f6);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.news-modal-close:hover { background: var(--gray-200, #e5e7eb); }

.news-modal-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: .75rem;
}
.news-modal-cat {
  background: var(--attack-500, #f97316);
  color: #fff;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: .8rem;
  font-weight: 700;
}
.news-modal-date { font-size: .85rem; color: #6b7280; }

.news-modal-title {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--tanaka-navy, #1e3a8a);
  line-height: 1.5;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #f3f4f6;
}

.news-modal-body {
  font-size: .95rem;
  line-height: 1.9;
  color: #374151;
}
.news-modal-body p { margin-bottom: 1em; }

.news-read-more {
  display: inline-block;
  margin-top: .5rem;
  font-size: .8rem;
  font-weight: 700;
  color: var(--attack-500, #f97316);
  opacity: .9;
}

@media (max-width: 600px) {
  .news-modal { padding: 1.5rem 1rem; }
  .news-modal-title { font-size: 1.1rem; }
}

/* ── News card: color fallback (no image) ── */
.news-card--color .news-overlay {
  background: linear-gradient(to top, rgba(0,0,0,.55) 0%, rgba(0,0,0,.1) 60%, transparent 100%);
}

.news-card-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  font-size: 4rem;
  opacity: .35;
  pointer-events: none;
  user-select: none;
}

.news-img { position: relative; }

.news-thumb--color { position: relative; }

.news-thumb-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.6rem;
  opacity: .45;
  pointer-events: none;
  user-select: none;
}
