@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;500;700&family=Noto+Sans+JP:wght@300;400;500&display=swap');

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

:root {
  --navy: #0a1628;
  --navy-mid: #112240;
  --gold: #c9a84c;
  --gold-light: #e8c96a;
  --off-white: #f8f6f0;
  --text-mid: #4a4a6a;
  --green: #97c459;
}

html { scroll-behavior: smooth; }
body { font-family: 'Noto Sans JP', sans-serif; background: var(--off-white); color: var(--navy); overflow-x: hidden; line-height: 1.8; }

/* HEADER */
.site-header {
  background: var(--navy);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(201,168,76,0.2);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-logo { font-family: 'Shippori Mincho', serif; font-size: 16px; font-weight: 700; color: var(--gold-light); text-decoration: none; letter-spacing: 0.1em; }
.site-nav { display: flex; gap: 24px; }
.site-nav a { font-size: 12px; color: rgba(255,255,255,0.6); text-decoration: none; letter-spacing: 0.05em; transition: color 0.2s; }
.site-nav a:hover { color: var(--gold-light); }

/* BREADCRUMB */
.breadcrumb { background: var(--navy-mid); padding: 10px 24px; }
.breadcrumb-inner { max-width: 900px; margin: 0 auto; font-size: 11px; color: rgba(255,255,255,0.4); display: flex; gap: 8px; align-items: center; }
.breadcrumb-inner a { color: rgba(201,168,76,0.7); text-decoration: none; }
.breadcrumb-inner a:hover { color: var(--gold-light); }
.breadcrumb-sep { color: rgba(255,255,255,0.2); }

/* HERO */
.page-hero {
  background: var(--navy);
  padding: 64px 24px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(201,168,76,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-label { font-size: 10px; letter-spacing: 0.4em; color: var(--gold); text-transform: uppercase; margin-bottom: 20px; display: block; position: relative; }
.page-hero-title { font-family: 'Shippori Mincho', serif; font-size: clamp(26px, 4vw, 46px); font-weight: 700; color: #fff; line-height: 1.45; margin-bottom: 16px; position: relative; }
.page-hero-title .gold { color: var(--gold-light); }
.page-hero-sub { font-size: clamp(13px, 1.8vw, 16px); color: rgba(255,255,255,0.6); line-height: 1.9; max-width: 600px; margin: 0 auto 32px; position: relative; }
.page-hero-cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy); font-size: 13px; font-weight: 500; letter-spacing: 0.15em;
  padding: 14px 40px; text-decoration: none;
  transition: all 0.3s ease; position: relative;
}
.page-hero-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,168,76,0.35); color: var(--navy); }

.gold-divider { height: 1px; background: linear-gradient(to right, transparent, var(--gold), transparent); }

/* MAIN CONTENT */
.content-wrap { max-width: 900px; margin: 0 auto; padding: 64px 24px; }

.section-title {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(201,168,76,0.3);
}

.section-title::before {
  content: '';
  display: inline-block;
  width: 4px; height: 20px;
  background: var(--gold);
  margin-right: 12px;
  vertical-align: middle;
}

.content-text { font-size: 14px; color: var(--text-mid); line-height: 2; margin-bottom: 32px; }
.content-text p { margin-bottom: 16px; }
.content-text strong { color: var(--navy); font-weight: 500; }

/* INFO CARDS */
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; margin-bottom: 48px; }

.info-card {
  background: #fff;
  border: 1px solid rgba(10,22,40,0.1);
  padding: 24px;
  transition: border-color 0.3s;
}
.info-card:hover { border-color: var(--gold); }
.info-card-icon { font-size: 24px; margin-bottom: 12px; display: block; }
.info-card-title { font-family: 'Shippori Mincho', serif; font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.info-card-text { font-size: 12px; color: var(--text-mid); line-height: 1.9; }

/* CHECKLIST */
.check-list { list-style: none; margin-bottom: 32px; }
.check-list li { font-size: 13px; color: var(--text-mid); padding: 10px 0 10px 28px; border-bottom: 1px solid rgba(10,22,40,0.06); position: relative; }
.check-list li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

/* FAQ */
.faq-list { margin-bottom: 48px; }
.faq-item { border-bottom: 1px solid rgba(10,22,40,0.08); }
.faq-q {
  font-family: 'Shippori Mincho', serif;
  font-size: 14px; font-weight: 700;
  color: var(--navy);
  padding: 18px 0 18px 28px;
  position: relative;
  cursor: pointer;
}
.faq-q::before { content: 'Q'; position: absolute; left: 0; color: var(--gold); font-size: 13px; font-weight: 700; }
.faq-a { font-size: 13px; color: var(--text-mid); line-height: 1.9; padding: 0 0 18px 28px; }

/* AREA TABLE */
.area-table { width: 100%; border-collapse: collapse; margin-bottom: 48px; font-size: 13px; }
.area-table th { background: var(--navy); color: rgba(255,255,255,0.8); padding: 12px 16px; text-align: left; font-weight: 500; font-size: 11px; letter-spacing: 0.1em; }
.area-table td { padding: 12px 16px; border-bottom: 1px solid rgba(10,22,40,0.08); color: var(--text-mid); }
.area-table tr:hover td { background: rgba(201,168,76,0.04); }
.area-table td.highlight { color: var(--navy); font-weight: 500; }

/* CTA SECTION */
.cta-section {
  background: var(--navy);
  padding: 64px 24px;
  text-align: center;
  margin: 0;
}
.cta-section-title { font-family: 'Shippori Mincho', serif; font-size: clamp(22px, 3vw, 36px); font-weight: 700; color: #fff; line-height: 1.5; margin-bottom: 12px; }
.cta-section-title .gold { color: var(--gold-light); }
.cta-section-sub { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.9; max-width: 480px; margin: 0 auto 32px; }
.cta-section-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy); font-size: 13px; font-weight: 500; letter-spacing: 0.15em;
  padding: 16px 48px; text-decoration: none; transition: all 0.3s ease;
}
.cta-section-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,168,76,0.35); color: var(--navy); }

/* RELATED LINKS */
.related-links { background: var(--navy-mid); padding: 48px 24px; }
.related-links-inner { max-width: 900px; margin: 0 auto; }
.related-links-title { font-family: 'Shippori Mincho', serif; font-size: 16px; font-weight: 700; color: rgba(255,255,255,0.7); margin-bottom: 20px; }
.related-links-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.related-link { background: rgba(255,255,255,0.05); border: 1px solid rgba(201,168,76,0.2); color: rgba(255,255,255,0.6); font-size: 12px; padding: 8px 16px; text-decoration: none; transition: all 0.2s; }
.related-link:hover { border-color: var(--gold); color: var(--gold-light); }

/* FOOTER */
.site-footer { background: var(--navy); padding: 28px 24px; text-align: center; border-top: 1px solid rgba(201,168,76,0.1); }
.site-footer-text { font-size: 11px; color: rgba(255,255,255,0.25); letter-spacing: 0.1em; }
.site-footer-note { font-size: 10px; color: rgba(255,255,255,0.15); margin-top: 6px; line-height: 1.6; }

/* FADE IN */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 640px) {
  .site-nav { display: none; }
  .content-wrap { padding: 40px 16px; }
  .page-hero { padding: 48px 16px 40px; }
}

/* ============================================
   CONTACT FORM (SEO pages)
============================================ */
.local-contact {
  background: var(--navy);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.local-contact::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(201,168,76,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.local-contact-title {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700; color: #fff; line-height: 1.5;
  margin-bottom: 10px; position: relative;
}
.local-contact-title .gold { color: var(--gold-light); }
.local-contact-sub {
  font-size: 13px; color: rgba(255,255,255,0.55);
  line-height: 1.9; max-width: 460px;
  margin: 0 auto 32px; position: relative;
}
.local-contact-form {
  display: flex; flex-direction: column;
  max-width: 420px; margin: 0 auto 16px;
  position: relative;
}
.local-form-field { margin-bottom: 10px; }
.local-form-label-row { display: flex; align-items: center; gap: 8px; margin-bottom: 5px; }
.local-form-label { font-size: 11px; color: rgba(255,255,255,0.55); letter-spacing: 0.05em; }
.local-form-required {
  font-size: 10px;
  background: rgba(201,168,76,0.2); border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold-light); padding: 1px 7px;
}
.local-form-optional {
  font-size: 10px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.35); padding: 1px 7px;
}
.local-contact-form input,
.local-contact-form textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,168,76,0.3);
  color: #fff; font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px; padding: 13px 18px; outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: none; border-radius: 0;
}
.local-contact-form input::placeholder,
.local-contact-form textarea::placeholder { color: rgba(255,255,255,0.3); }
.local-contact-form input:focus,
.local-contact-form textarea:focus { border-color: var(--gold); }
.local-contact-form textarea { resize: vertical; min-height: 80px; }
.local-form-submit { margin-top: 6px; }
.local-form-submit button {
  width: 100%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy); font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px; font-weight: 500; letter-spacing: 0.15em;
  padding: 16px; border: none; cursor: pointer;
  transition: all 0.3s ease; border-radius: 0;
}
.local-form-submit button:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(201,168,76,0.3);
}
.local-form-success {
  display: none;
  background: rgba(99,153,34,0.15);
  border: 1px solid rgba(99,153,34,0.4);
  padding: 20px; text-align: center;
  color: var(--green); font-family: 'Shippori Mincho', serif;
  font-size: 15px; line-height: 1.8; position: relative;
  max-width: 420px; margin: 0 auto;
}
.local-contact-note {
  font-size: 11px; color: rgba(255,255,255,0.3);
  letter-spacing: 0.05em; position: relative;
}
