:root {
  --crimson: #9B2335;
  --crimson-light: #C4394D;
  --gold: #B8963E;
  --gold-light: #D4AF6A;
  --ink: #1A1A1A;
  --ink-mid: #3D3535;
  --stone: #F5F0EB;
  --stone-mid: #E8DDD3;
  --white: #FEFCF9;
  --muted: #7A6E6E;
  --border: rgba(155,35,53,0.15);
  --nav-h: 72px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

img { height: auto; }   /* 画像の縦横比が崩れないようにする */

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans JP', sans-serif;
  background: var(--white);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.8;
}

/* ===== これまでの活動 ===== */
.past-block {
  max-width: 860px;
  margin: 3.5rem auto 0;
}
.past-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--crimson);
  letter-spacing: 0.08em;
  text-align: center;
  margin: 2.5rem 0 1rem;
}
.past-title:first-child { margin-top: 0; }
.past-lead {
  text-align: center;
  font-size: 14px;
  line-height: 1.95;
  color: var(--ink-light);
  margin-bottom: 1.5rem;
}
.past-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.past-chip {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-mid);
}

/* ===== 活動の目的・メディア掲載 ===== */
.aims-block, .media-block {
  max-width: 760px;
  margin: 3rem auto 0;
}
.aims-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--crimson);
  letter-spacing: 0.08em;
  text-align: center;
  margin-bottom: 1.5rem;
}
.aims-list {
  margin: 0;
  padding-left: 1.5rem;
}
.aim-item {
  color: var(--ink-mid);
  font-size: 15px;
  line-height: 2;
  margin-bottom: 6px;
}
.media-list { list-style: none; margin: 0; padding: 0; }
.media-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 4px 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.media-date {
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.04em;
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
}
.media-outlet {
  font-family: 'Noto Serif JP', serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}
.media-desc {
  grid-column: 2;
  font-size: 14px;
  line-height: 1.9;
  color: var(--ink-light);
}
@media (max-width: 600px) {
  .media-item { grid-template-columns: 1fr; }
  .media-desc { grid-column: 1; }
}

/* ===== お問い合わせフォーム ===== */
.contact-form-wrap {
  max-width: 600px;
  margin: 0 auto;
}
.contact-form-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  text-align: center;
  margin-bottom: 1.75rem;
}
.cf-row { margin-bottom: 1.25rem; }
.cf-label {
  display: block;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.75);
  margin-bottom: 8px;
}
.cf-input {
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 6px;
  padding: 12px 14px;
  color: #FEFCF9;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  transition: border-color 0.2s, background 0.2s;
}
.cf-input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,0.11);
}
.cf-textarea { resize: vertical; min-height: 140px; }
/* 自動送信プログラム用の罠。人の目には見えないようにする */
.cf-trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.cf-note {
  font-size: 12px;
  line-height: 1.9;
  color: rgba(255,255,255,0.5);
  margin: 1.25rem 0 1.5rem;
}
.cf-submit-row { text-align: center; }
.cf-submit {
  border: none;
  cursor: pointer;
  font-weight: 500;
}
.cf-submit:disabled { opacity: 0.5; cursor: default; transform: none; }
.cf-status {
  margin-top: 1.25rem;
  text-align: center;
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: 0.04em;
  min-height: 1.9em;
}
.cf-status.ok { color: var(--gold-light); }
.cf-status.ng { color: #F0A0A8; }

/* ===== FAQ ===== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1.4rem 0.25rem;
  font-family: 'Noto Serif JP', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.05em;
  line-height: 1.7;
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { content: ""; }
.faq-item summary:hover { color: var(--crimson); }
.faq-item summary:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }
.faq-q-mark {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.35rem;
  color: var(--crimson);
  flex: 0 0 auto;
  line-height: 1.25;
}
.faq-q-text { flex: 1 1 auto; }
.faq-arrow {
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  margin-top: 9px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
  transition: transform 0.25s;
}
.faq-item[open] .faq-arrow { transform: rotate(-135deg); margin-top: 13px; }
.faq-answer {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 0 0.25rem 1.6rem 0.25rem;
}
.faq-a-mark {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.35rem;
  color: var(--gold);
  flex: 0 0 auto;
  line-height: 1.25;
}
.faq-a-text {
  flex: 1 1 auto;
  color: var(--ink-mid);
  font-size: 15px;
  line-height: 1.95;
}

/* ===== LANGUAGE SWITCHER ===== */
#lang-bar {
  background: var(--ink);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0 2rem;
  height: 36px;
  gap: 4px;
}
.lang-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.55);
  font-size: 12px;
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: 0.05em;
  cursor: pointer;
  padding: 4px 10px;
  border-radius: 3px;
  transition: all 0.2s;
}
.lang-btn:hover, .lang-btn.active {
  color: #fff;
  background: rgba(255,255,255,0.12);
}
.lang-btn.active {
  color: var(--gold-light);
}
.lang-sep {
  color: rgba(255,255,255,0.2);
  font-size: 11px;
}

/* ===== NAV ===== */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--ink);
}
.nav-crest {
  width: 42px;
  height: 42px;
  background: var(--crimson);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav-crest svg { width: 22px; height: 22px; }
.nav-title-jp {
  font-family: 'Noto Serif JP', serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.3;
}
.nav-title-sub {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0;
}
.nav-links a {
  display: block;
  padding: 0 1.1rem;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--ink-mid);
  text-decoration: none;
  transition: color 0.2s;
  font-family: 'Noto Serif JP', serif;
  line-height: var(--nav-h);
}
.nav-links a:hover { color: var(--crimson); }
.nav-links .nav-cta {
  background: var(--crimson);
  color: white !important;
  padding: 10px 20px !important;
  border-radius: 4px;
  line-height: 1 !important;
  font-size: 13px;
  margin-left: 1rem;
}
.nav-links .nav-cta:hover { background: var(--crimson-light) !important; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: all 0.3s;
}

/* ===== HERO ===== */
#hero {
  min-height: calc(100vh - var(--nav-h) - 36px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
.hero-left {
  background: var(--stone);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 4rem 6rem 6rem;
  position: relative;
}
.hero-left::after {
  content: '';
  position: absolute;
  right: -40px;
  top: 0;
  bottom: 0;
  width: 80px;
  background: var(--stone);
  clip-path: polygon(0 0, 50% 0, 100% 50%, 50% 100%, 0 100%);
  z-index: 2;
}
.hero-label {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.hero-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.08em;
  color: var(--ink);
  margin-bottom: 1rem;
}
.hero-title-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-style: italic;
  color: var(--muted);
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
  line-height: 1.5;
}
.hero-desc {
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 2;
  max-width: 380px;
  margin-bottom: 2.5rem;
}
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--crimson);
  color: white;
  padding: 14px 28px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.08em;
  transition: all 0.25s;
  font-family: 'Noto Serif JP', serif;
}
.btn-primary:hover { background: var(--crimson-light); transform: translateY(-1px); }
.btn-secondary {
  border: 1.5px solid var(--gold);
  color: var(--gold);
  padding: 14px 28px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.08em;
  transition: all 0.25s;
  font-family: 'Noto Serif JP', serif;
}
.btn-secondary:hover { background: var(--gold); color: white; }

.hero-right {
  background: var(--crimson);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4rem;
  position: relative;
  overflow: hidden;
}
.hero-right::before {
  content: '萩';
  position: absolute;
  font-family: 'Noto Serif JP', serif;
  font-size: 320px;
  font-weight: 600;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  pointer-events: none;
}
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  width: 100%;
  max-width: 360px;
  position: relative;
  z-index: 1;
}
.hero-stat {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: white;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.1em;
}
.hero-badge {
  margin-top: 1.5rem;
  padding: 10px 20px;
  border: 1px solid rgba(184,150,62,0.5);
  border-radius: 100px;
  background: rgba(184,150,62,0.15);
  position: relative;
  z-index: 1;
}
.hero-badge span {
  font-size: 11px;
  color: var(--gold-light);
  letter-spacing: 0.12em;
}

/* ===== SECTIONS COMMON ===== */
.section {
  padding: 6rem 2rem;
}
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-label {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--crimson);
  font-weight: 500;
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.4;
  margin-bottom: 1rem;
}
.section-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 1.5rem auto;
}

/* ===== ABOUT ===== */
#about { background: var(--stone); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-text p {
  font-size: 15px;
  line-height: 2.1;
  color: var(--ink-mid);
  margin-bottom: 1.2rem;
}
.about-text p:last-child { margin-bottom: 0; }
.about-visual {
  position: relative;
}
.about-card-main {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
}
.about-fact {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--stone-mid);
}
.about-fact:last-child { border-bottom: none; padding-bottom: 0; }
.about-fact:first-child { padding-top: 0; }
.fact-icon {
  width: 36px;
  height: 36px;
  background: rgba(155,35,53,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--crimson);
  font-size: 16px;
}
.fact-text strong {
  display: block;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}
.fact-text span {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
}

/* ===== EVENTS ===== */
#events { background: var(--white); }
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.event-card {
  background: var(--stone);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.25s;
}
.event-card:hover { transform: translateY(-4px); }
.event-month {
  background: var(--crimson);
  color: white;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.event-month-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-style: italic;
}
.event-month-jp {
  font-size: 13px;
  opacity: 0.8;
  letter-spacing: 0.05em;
}
.event-body {
  padding: 1.5rem;
}
.event-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: 0.05em;
}
.event-name-en {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.05em;
}
.event-item + .event-item {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.event-date {
  font-size: 12px;
  color: var(--crimson);
  margin-top: 10px;
  letter-spacing: 0.05em;
}

/* ===== JOIN ===== */
#join {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-mid) 100%);
  position: relative;
  overflow: hidden;
}
#join::before {
  content: '萩の会';
  position: absolute;
  font-family: 'Noto Serif JP', serif;
  font-size: 200px;
  font-weight: 600;
  color: rgba(255,255,255,0.02);
  right: -40px;
  bottom: -40px;
  line-height: 1;
  letter-spacing: -0.05em;
  pointer-events: none;
}
#join .section-label { color: var(--gold-light); }
#join .section-title { color: white; }
#join .section-subtitle { color: rgba(255,255,255,0.5); }
#join .divider { background: var(--gold); }
.join-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.join-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 2rem;
}
.join-icon {
  width: 44px;
  height: 44px;
  background: rgba(184,150,62,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 1rem;
}
.join-card h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 15px;
  color: white;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.join-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
}
.fee-box {
  background: rgba(184,150,62,0.15);
  border: 1px solid rgba(184,150,62,0.35);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}
.fee-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(184,150,62,0.2);
}
.fee-row:last-child { border-bottom: none; padding-bottom: 0; }
.fee-row:first-child { padding-top: 0; }
.fee-label {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.05em;
}
.fee-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--gold-light);
  font-weight: 600;
}
.join-cta {
  text-align: center;
}

/* ===== COUNTRIES ===== */
#countries { background: var(--stone); }
/* ===== COUNTRIES GRID ===== */

/* ===== REGION BLOCKS ===== */
.region-block {
  margin-bottom: 2.5rem;
}
.region-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-mid);
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--stone-mid);
}

.countries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 12px;
  margin-top: 1rem;
}
.country-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem 0.75rem;
  text-align: center;
  transition: transform 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.country-card:hover { transform: translateY(-3px); }
.country-flag { font-size: 2rem; line-height: 1; }
.country-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.05em;
}

/* ===== MEMORIES PHOTOS ===== */
.mem-photos {
  display: flex;
  gap: 6px;
  margin: 10px 0;
  border-radius: 8px;
  overflow: hidden;
}
.mem-photos img {
  flex: 1;
  width: 0;
  height: 120px;
  object-fit: cover;
  border-radius: 6px;
}
.mem-cancelled {
  display: inline-block;
  background: rgba(155,35,53,0.1);
  color: var(--crimson);
  font-size: 11px;
  padding: 2px 10px;
  border-radius: 100px;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.countries-intro {
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 2;
  max-width: 680px;
  margin: 0 auto 3rem;
  text-align: center;
}
.world-visual {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 3rem;
  text-align: center;
}
.world-img {
  width: 100%;
  max-width: 700px;
  height: 320px;
  background: var(--stone-mid);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.world-img-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--muted);
}
.japan-highlight {
  background: var(--crimson);
  color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Noto Serif JP', serif;
  font-size: 11px;
  letter-spacing: 0.05em;
  position: absolute;
  right: 100px;
  top: 100px;
  box-shadow: 0 0 0 8px rgba(155,35,53,0.15);
}
.world-caption {
  font-size: 13px;
  color: var(--muted);
  margin-top: 1rem;
  letter-spacing: 0.06em;
}

/* ===== FOOTER ===== */
footer {
  background: var(--ink);
  color: rgba(255,255,255,0.65);
  padding: 4rem 2rem 2rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}
.footer-logo-area .footer-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  color: white;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.footer-logo-area .footer-en {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}
.footer-logo-area p {
  font-size: 13px;
  line-height: 1.9;
}
.footer-col h4 {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
  font-weight: 500;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: white; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.copyright {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.05em;
}
.footer-badge {
  font-size: 11px;
  color: var(--gold-light);
  border: 1px solid rgba(184,150,62,0.3);
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.08em;
}

/* ===== RULES ===== */
#rules { background: var(--white); }
.rules-block {
  border-left: 3px solid var(--gold);
  padding: 1.5rem 0 1.5rem 1.5rem;
  margin-bottom: 2rem;
}
.rules-block:last-child { margin-bottom: 0; }
.rules-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--crimson);
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}
.rules-block p {
  font-size: 14px;
  color: var(--ink-mid);
  line-height: 2;
}
.rules-list {
  list-style: none;
  margin-top: 0.5rem;
}
.rules-list li {
  font-size: 14px;
  color: var(--ink-mid);
  line-height: 1.9;
  padding: 4px 0;
  border-bottom: 1px solid var(--stone-mid);
}
.rules-list li:last-child { border-bottom: none; }

/* ===== MEMORIES ===== */
.memories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.memory-card {
  background: var(--white);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid var(--border);
  transition: transform 0.25s;
}
.memory-card:hover { transform: translateY(-3px); }
.memory-date {
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--crimson);
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.memory-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.06em;
  margin-bottom: 0.6rem;
}
.memory-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.9;
}

/* ===== MOBILE MENU ===== */
#mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 1rem 0;
  position: absolute;
  top: var(--nav-h);
  left: 0;
  right: 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  z-index: 99;
}
#mobile-menu.open { display: flex; }
#mobile-menu a {
  padding: 14px 2.5rem;
  font-family: 'Noto Serif JP', serif;
  font-size: 15px;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--stone-mid);
  transition: background 0.15s;
}
#mobile-menu a:hover { background: var(--stone); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  nav { position: relative; }

  #hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-left {
    padding: 4rem 2rem;
  }
  .hero-left::after { display: none; }
  .hero-right {
    padding: 3rem 2rem;
    min-height: 300px;
  }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .section { padding: 4rem 1.5rem; }
}

@media (max-width: 600px) {
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .hero-title { font-size: 1.9rem; }
  .fee-row { flex-direction: column; align-items: flex-start; gap: 4px; }
  #lang-bar { justify-content: center; }
}

/* ナビ項目が8個になったため、狭い画面ではより早くハンバーガーに切り替える */
@media (max-width: 1050px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  nav { position: relative; }
}
@media (max-width: 600px) {
  .faq-item summary { font-size: 15px; }
  .faq-a-text { font-size: 14px; }
}

/* ===== 旧 style 属性から移した指定 ===== */
.country-card.is-highlight { border: 2px solid var(--crimson); }
.section-stone { background: var(--stone); }
.col-800 { max-width: 800px; margin: 0 auto; }
.mt-1 { margin-top: 1rem; }

/* ===== 言語切替をボタンからリンクに変更したための指定 ===== */
#lang-bar a.lang-btn { text-decoration: none; display: inline-block; line-height: 1.6; }

/* ===== 質問ページ（/q/） ===== */
.qa-body { max-width: 760px; margin: 0 auto; }
.qa-body h1.section-title { text-align: left; }
.qa-body h2 { font-family: 'Noto Serif JP', serif; font-size: 19px; margin: 2.2rem 0 0.8rem; color: var(--crimson); }
.qa-body p { margin-bottom: 1rem; line-height: 2; color: var(--ink-mid); font-size: 15px; }
.qa-body ul { margin: 0 0 1.2rem 1.4rem; line-height: 2; color: var(--ink-mid); font-size: 15px; }
.qa-body a { color: var(--crimson); }
.qa-lead { font-size: 17px; color: var(--ink); }
.qa-breadcrumb { font-size: 13px; color: var(--muted); margin-bottom: 1.2rem; }
.qa-cta { margin-top: 2.5rem; padding: 1.5rem; background: var(--stone); border-radius: 8px; text-align: center; }
.qa-cta p { margin-bottom: 0.8rem; }
.qa-related { margin-top: 2.5rem; }
.qa-related h2 { font-size: 17px; }

/* ===== トップページ内：質問ページへの案内 ===== */
.faq-more { max-width: 760px; margin: 2rem auto 0; padding: 1.2rem 1.5rem; background: var(--white); border: 1px solid var(--border); border-radius: 8px; }
.faq-more h3 { font-family: 'Noto Serif JP', serif; font-size: 16px; color: var(--crimson); margin-bottom: 0.6rem; }
.faq-more ul { margin-left: 1.2rem; line-height: 2; font-size: 15px; }
.faq-more a { color: var(--ink-mid); }
.faq-more a:hover { color: var(--crimson); }
