/* ========================================
   ナガフリ 共通スタイル — Redesign 2026
   Concept: 長崎の海 × ランタンゴールド × 温かみ
   ======================================== */

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

:root {
  /* Navy-based palette */
  --teal:        #1b3e67;
  --teal-dark:   #0d2138;
  --teal-mid:    #2d567f;
  --teal-light:  #4a78aa;

  /* Warm accent */
  --gold:        #b8862e;
  --gold-light:  #d6a24e;
  --gold-pale:   #f5ebd8;

  /* Soft neutrals */
  --cream:       #f6f3ee;
  --cream-dark:  #ebe4d8;
  --warm-white:  #fffdfa;
  --white:       #ffffff;

  /* テキスト */
  --text:        #1f2b3a;
  --text-light:  #5b6472;
  --gray:        #8b93a1;
  --gray-light:  #dde3ea;

  --font-ja: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
  --font-en: 'Montserrat', 'Arial', sans-serif;

  --section-pad: 96px 24px;
  --radius:      12px;
  --radius-lg:   24px;
  --shadow:      0 10px 30px rgba(13, 33, 56, 0.08);
  --shadow-hover:0 18px 48px rgba(13, 33, 56, 0.14);
  --transition:  0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-ja);
  color: var(--text);
  background: var(--warm-white);
  line-height: 1.7;
  font-size: 16px;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- Typography --- */
.section-title {
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  font-weight: 900;
  color: var(--teal);
  text-align: center;
  margin-bottom: 12px;
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 56px;
  line-height: 1.85;
}
.section-label {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  background: rgba(184, 134, 46, 0.1);
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 14px;
  border: 1px solid rgba(184, 134, 46, 0.22);
}
.text-center { text-align: center; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 99px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  letter-spacing: 0.04em;
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(184, 134, 46, 0.22);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(184, 134, 46, 0.3);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.65);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--teal);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-teal {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
}
.btn-outline-teal:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
}
/* 旧クラス名との互換性 */
.btn-outline-navy {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
}
.btn-outline-navy:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-lg {
  padding: 18px 48px;
  font-size: 1.05rem;
}

/* ========================================
   HEADER / NAV
   ======================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(13, 33, 56, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-logo img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--cream);
  border: 2px solid rgba(255,255,255,0.15);
}
.header-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.header-logo-text .en {
  font-family: var(--font-en);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold-light);
  text-transform: uppercase;
}
.header-logo-text .ja {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.header-nav a {
  color: rgba(255,255,255,0.8);
  font-size: 0.86rem;
  font-weight: 500;
  transition: color var(--transition);
  letter-spacing: 0.02em;
}
.header-nav a:hover { color: var(--white); }
.header-nav a.active { color: var(--white); }
.header-nav .btn {
  padding: 9px 22px;
  font-size: 0.84rem;
}
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  transition: var(--transition);
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--white);
  transition: var(--transition);
}
.menu-toggle:hover {
  background: rgba(255,255,255,0.1);
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.mobile-nav {
  display: none;
}

/* ========================================
   HERO (index) — グラデーション背景・中央揃え
   ======================================== */
.hero {
  min-height: 100vh;
  background: linear-gradient(145deg, var(--teal-dark) 0%, var(--teal) 58%, var(--teal-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 110px 24px 100px;
  position: relative;
  overflow: hidden;
}
/* 装飾的な光源 */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 18% 78%, rgba(184,134,46,0.1) 0%, transparent 46%),
    linear-gradient(180deg, rgba(255,255,255,0.02) 0%, transparent 38%);
  pointer-events: none;
}
/* 下部の波形カット */
.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0; right: 0;
  height: 80px;
  background: var(--cream);
  clip-path: ellipse(56% 100% at 50% 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}
.hero-logo {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 26px;
  border: 3px solid rgba(255,255,255,0.22);
  box-shadow: 0 8px 44px rgba(0,0,0,0.3);
  background: var(--cream);
}
.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: var(--gold-light);
  text-transform: uppercase;
  margin-bottom: 20px;
  background: rgba(184, 134, 46, 0.18);
  padding: 6px 18px;
  border-radius: 99px;
  border: 1px solid rgba(184, 134, 46, 0.32);
}
.hero-title {
  font-size: clamp(2.2rem, 7vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}
.hero-title span {
  color: var(--gold-light);
}
.hero-concept {
  font-size: clamp(1rem, 2.5vw, 1.18rem);
  color: rgba(255,255,255,0.78);
  margin-bottom: 42px;
  font-weight: 400;
  line-height: 1.9;
}
.hero-concept strong {
  color: var(--white);
  font-weight: 800;
  background: rgba(192,122,16,0.2);
  padding: 2px 10px;
  border-radius: 4px;
}
.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.35);
  font-family: var(--font-en);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  animation: bounce 2.5s infinite;
  z-index: 1;
}
.hero-scroll::after {
  content: '';
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.35), transparent);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ========================================
   CONCEPTS (3カラム)
   ======================================== */
.concepts {
  padding: var(--section-pad);
  background: var(--cream);
  position: relative;
}
.concepts-grid {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.concept-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 24px 22px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.concept-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--teal);
}
.concept-card:nth-child(2)::before { background: var(--gold); }
.concept-card:nth-child(3)::before { background: var(--teal-mid); }
.concept-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.concept-num {
  font-family: var(--font-en);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gray);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.concept-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--teal);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.concept-desc {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* ========================================
   MEMBER TYPES（参加者の属性）
   ======================================== */
.member-types {
  padding: var(--section-pad);
  background: linear-gradient(180deg, var(--cream-dark) 0%, var(--cream) 100%);
}
.member-types-grid {
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.member-type-card {
  background: white;
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(26,61,61,0.08);
  box-shadow: 0 4px 20px rgba(26,61,61,0.06);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.member-type-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(26,61,61,0.13);
}
.member-type-card-header {
  padding: 28px 24px 22px;
  position: relative;
  overflow: hidden;
}
.member-type-card:nth-child(1) .member-type-card-header { background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal-mid) 100%); }
.member-type-card:nth-child(2) .member-type-card-header { background: linear-gradient(135deg, #7a5420 0%, var(--gold) 100%); }
.member-type-card:nth-child(3) .member-type-card-header { background: linear-gradient(135deg, #17304e 0%, #325d8e 100%); }
.member-type-card:nth-child(4) .member-type-card-header { background: linear-gradient(135deg, #202f50 0%, #445f92 100%); }
.member-type-card-header::after {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 100px; height: 100px;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
  pointer-events: none;
}
.member-type-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 12px;
  line-height: 1;
}
.member-type-label {
  font-size: 0.94rem;
  font-weight: 900;
  color: white;
  line-height: 1.3;
  letter-spacing: 0.01em;
}
.member-type-card-body {
  padding: 20px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.member-type-desc {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.8;
  flex: 1;
}
.member-type-examples {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.member-type-tag {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 99px;
  background: var(--cream-dark);
  color: var(--teal);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.member-type-card:nth-child(2) .member-type-tag { color: var(--gold); background: rgba(192,122,16,0.08); }
.member-type-card:nth-child(3) .member-type-tag { color: #325d8e; background: rgba(50,93,142,0.08); }
.member-type-card:nth-child(4) .member-type-tag { color: #445f92; background: rgba(68,95,146,0.08); }
@media (max-width: 768px) {
  .member-types-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ========================================
   STATS（数字で見るナガフリ）
   ======================================== */
.stats {
  padding: var(--section-pad);
  background: var(--teal);
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(58, 122, 114, 0.4) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(192, 122, 16, 0.14) 0%, transparent 50%);
  pointer-events: none;
}
/* 下部の波形 */
.stats::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 64px;
  background: var(--cream-dark);
  clip-path: ellipse(56% 100% at 50% 100%);
}
.stats .text-center {
  position: relative; z-index: 1;
  margin-bottom: 48px;
}
.stats .section-label {
  background: rgba(192,122,16,0.2);
  border-color: rgba(192,122,16,0.25);
}
.stats-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  position: relative; z-index: 1;
}
.stat-item {
  text-align: center;
  padding: 44px 24px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-en);
  font-size: clamp(2.6rem, 6vw, 4rem);
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 10px;
  text-shadow: 0 4px 24px rgba(192,122,16,0.3);
}
.stat-num sup { font-size: 0.5em; }
.stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.82);
  font-weight: 600;
  margin-bottom: 4px;
}
.stat-sub {
  font-size: 0.74rem;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
}

/* ========================================
   EVENT BANNER（次回交流会）
   ======================================== */
.event-banner {
  padding: 80px 24px;
  background: var(--cream-dark);
}
.event-banner-inner {
  max-width: 860px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%);
  border-radius: var(--radius-lg);
  padding: 52px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  box-shadow: 0 16px 56px rgba(10, 30, 30, 0.25);
  position: relative;
  overflow: hidden;
}
.event-banner-inner::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(192,122,16,0.18), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.event-banner-inner::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(255,255,255,0.04), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.event-banner-body { position: relative; z-index: 1; }
.event-banner-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 99px;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.event-banner-title {
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.event-banner-date {
  color: rgba(255,255,255,0.75);
  font-size: 0.93rem;
  line-height: 1.75;
}
.event-banner-date strong { color: var(--gold-light); }
.event-banner-cta { position: relative; z-index: 1; flex-shrink: 0; }

/* ========================================
   TARGET AUDIENCE（こんな人に来てほしい）
   ======================================== */
.target {
  padding: var(--section-pad);
  background: var(--white);
}
.target-list {
  max-width: 780px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.target-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--cream);
  border-radius: var(--radius);
  padding: 22px 24px;
  transition: var(--transition);
  border: 1px solid transparent;
}
.target-item:hover {
  background: var(--white);
  border-color: var(--gray-light);
  transform: translateX(4px);
  box-shadow: var(--shadow);
}
.target-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.target-text {
  font-size: 0.92rem;
  color: var(--text);
  font-weight: 500;
  line-height: 1.65;
}

/* ========================================
   VOICE（参加者の声）
   ======================================== */
.voices {
  padding: var(--section-pad);
  background: var(--cream);
}
.voices-grid {
  max-width: 1020px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.voice-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}
/* 装飾クォーテーション */
.voice-card::before {
  content: '\201C';
  position: absolute;
  top: 16px; left: 24px;
  font-size: 5rem;
  color: var(--gold-pale);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}
.voice-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.voice-stars {
  color: var(--gold);
  font-size: 0.82rem;
  margin-bottom: 14px;
  position: relative; z-index: 1;
}
.voice-text {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.85;
  margin-bottom: 22px;
  position: relative; z-index: 1;
}
.voice-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--gray-light);
}
.voice-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 800; font-size: 1rem;
  flex-shrink: 0;
}
.voice-name { font-weight: 700; font-size: 0.88rem; color: var(--teal); }
.voice-role { font-size: 0.76rem; color: var(--gray); margin-top: 2px; }

/* ========================================
   HOW TO JOIN（参加方法）
   ======================================== */
.how-to-join {
  padding: var(--section-pad);
  background: var(--white);
}
.steps {
  max-width: 740px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  position: relative;
  padding-bottom: 40px;
}
.step:last-child { padding-bottom: 0; }
.step-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
.step-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  position: relative; z-index: 1;
  box-shadow: 0 4px 18px rgba(26, 61, 61, 0.3);
}
.step:not(:last-child) .step-left::after {
  content: '';
  width: 2px;
  flex: 1;
  min-height: 48px;
  background: linear-gradient(to bottom, var(--teal), var(--gray-light));
  margin-top: 10px;
  opacity: 0.45;
}
.step-body { padding-top: 12px; }
.step-title { font-weight: 800; font-size: 1.05rem; color: var(--teal); margin-bottom: 8px; }
.step-desc { font-size: 0.88rem; color: var(--text-light); line-height: 1.75; }
.step-cta { margin-top: 14px; }

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
  background: var(--teal-dark);
  color: rgba(255,255,255,0.65);
  padding: 60px 28px 36px;
}
.footer-inner { max-width: 1020px; margin: 0 auto; }
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  flex-wrap: wrap;
}
.footer-logo { display: flex; align-items: center; gap: 14px; }
.footer-logo img {
  width: 50px; height: 50px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--cream);
}
.footer-logo-text .ja { font-size: 1rem; font-weight: 700; color: var(--white); }
.footer-logo-text .en {
  font-family: var(--font-en);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  color: var(--gold-light);
}
.footer-sns { display: flex; gap: 14px; }
.footer-sns a {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.08);
}
.footer-sns a.line-link {
  background: #06c755;
  color: var(--white);
  border-color: rgba(6,199,85,0.5);
}
.footer-sns a.line-link svg {
  width: 20px;
  height: 20px;
  display: block;
}
.footer-sns a.line-link:hover {
  background: #11d562;
  border-color: #11d562;
}
.footer-sns a:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }
.footer-bottom {
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 0.76rem; }
.footer-nav { display: flex; gap: 28px; }
.footer-nav a { font-size: 0.82rem; color: rgba(255,255,255,0.45); transition: color var(--transition); }
.footer-nav a:hover { color: var(--white); }

/* ========================================
   EVENT PAGE — Hero
   ======================================== */
.event-hero {
  min-height: 72vh;
  background:
    radial-gradient(circle at 18% 24%, rgba(184,134,46,0.14) 0%, transparent 30%),
    linear-gradient(145deg, var(--teal-dark) 0%, var(--teal) 58%, var(--teal-mid) 100%);
  display: flex;
  align-items: center;
  padding: 130px 24px 100px;
  position: relative;
  overflow: hidden;
}
.event-hero::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 70px;
  background: var(--cream);
  clip-path: ellipse(56% 100% at 50% 100%);
}
.event-hero-inner {
  max-width: 840px;
  margin: 0 auto;
  position: relative; z-index: 1;
}
.event-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 7px 20px;
  border-radius: 99px;
  margin-bottom: 22px;
  letter-spacing: 0.04em;
}
.event-hero-title {
  font-size: clamp(2rem, 6vw, 3.4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 22px;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 24px rgba(0,0,0,0.3);
}
.event-hero-title span { color: var(--gold-light); }
.event-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}
.event-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.9);
  font-size: 0.92rem;
  background: rgba(255,255,255,0.1);
  padding: 8px 16px;
  border-radius: 99px;
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
}
.event-meta-icon { font-size: 1rem; }
.event-hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

/* ========================================
   EVENT — Parts Overview
   ======================================== */
.event-overview {
  padding: var(--section-pad);
  background: var(--cream);
}
.parts-grid {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.part-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.part-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.part-header {
  background: var(--teal);
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.part-header.orange { background: linear-gradient(135deg, var(--gold), var(--gold-light)); }
.part-num {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--white);
  flex-shrink: 0;
}
.part-header-text .label {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
  letter-spacing: 0.1em;
  font-family: var(--font-en);
}
.part-header-text .name {
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}
.part-body { padding: 26px 28px; }
.part-info-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--gray-light);
  font-size: 0.88rem;
}
.part-info-row:last-child { border-bottom: none; }
.part-info-label {
  flex-shrink: 0;
  font-weight: 700;
  color: var(--teal);
  min-width: 60px;
}
.part-info-value { color: var(--text); line-height: 1.7; }
.part-free-badge {
  display: inline-block;
  background: #e8f5e9;
  color: #2e7d32;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 99px;
  margin-left: 8px;
}
.part-price-note {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 4px;
}

/* ========================================
   EVENT — Gallery（過去の様子）
   ======================================== */
.event-gallery {
  padding: var(--section-pad);
  background: var(--teal-dark);
  position: relative;
  overflow: hidden;
}
/* 上部の波形 */
.event-gallery::before {
  content: '';
  position: absolute;
  top: -2px; left: 0; right: 0;
  height: 70px;
  background: var(--cream-dark);
  clip-path: ellipse(56% 100% at 50% 0%);
}
.event-gallery .section-title { color: var(--white); }
.event-gallery .section-subtitle { color: rgba(255,255,255,0.5); }
.gallery-grid {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: rgba(255,255,255,0.05);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

/* ========================================
   EVENT — Access（会場）
   ======================================== */
.event-access {
  padding: var(--section-pad);
  background: var(--white);
}
.access-grid {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.access-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 30px;
  border: 1px solid var(--gray-light);
}
.access-part-tag {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 99px;
  margin-bottom: 16px;
}
.access-card h3 {
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--teal);
  margin-bottom: 10px;
}
.access-card p, .access-card address {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.75;
  font-style: normal;
}
.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 18px;
}
.map-embed iframe {
  width: 100%;
  height: 200px;
  border: none;
  display: block;
}

/* ========================================
   EVENT — CTA Bottom
   ======================================== */
.event-cta-bottom {
  padding: 96px 24px;
  background: linear-gradient(160deg, var(--teal-dark) 0%, var(--teal) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.event-cta-bottom::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(192,122,16,0.15), transparent 60%);
  pointer-events: none;
}
.event-cta-bottom .section-title { color: var(--white); position: relative; z-index: 1; }
.event-cta-bottom .section-subtitle { color: rgba(255,255,255,0.55); position: relative; z-index: 1; }
.event-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative; z-index: 1;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
  :root { --section-pad: 64px 20px; }

  .header-nav { display: none; }
  .menu-toggle { display: inline-flex; }
  .mobile-nav {
    position: fixed;
    inset: 68px 16px auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: rgba(13, 33, 56, 0.98);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 18px;
    box-shadow: 0 18px 40px rgba(13, 33, 56, 0.24);
    z-index: 99;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: var(--transition);
  }
  .mobile-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .mobile-nav a {
    color: rgba(255,255,255,0.88);
    font-size: 0.95rem;
    font-weight: 700;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(255,255,255,0.04);
  }
  .mobile-nav a.btn {
    justify-content: center;
    margin-top: 6px;
  }
  body.menu-open {
    overflow: hidden;
  }

  /* モバイルでは parallax 無効化 */
  .event-hero { background-attachment: scroll; }

  /* ヒーロー: 1カラムに変更 */
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 0 24px;
    gap: 32px;
  }
  .hero-content { text-align: center; }
  .hero-logo { margin: 0 auto 20px; }
  .hero-cta { justify-content: center; flex-direction: column; align-items: center; }
  .hero-illustration { order: -1; }
  .hero-illustration svg { max-height: 260px; }

  .concepts-grid,
  .stats-grid,
  .voices-grid { grid-template-columns: 1fr; }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .stat-item:last-child { border-bottom: none; }

  .event-banner-inner {
    flex-direction: column;
    padding: 36px 28px;
    text-align: center;
  }

  .target-list { grid-template-columns: 1fr; }

  .parts-grid,
  .access-grid,
  .gallery-grid { grid-template-columns: 1fr; }

  .event-hero-meta { flex-direction: column; align-items: flex-start; gap: 10px; }
  .event-hero-cta { flex-direction: column; }

  .footer-top { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; }
}
