/*
Theme Name: ARAKAWA RIVER FIELD
Theme URI:
Author: クレイジードンキー
Description: 特定非営利活動法人クレイジードンキー 荒川リバーフィールド公式サイト
Version: 1.0.0
License: Private
Text Domain: arakawa-river-field
*/

/* ── RESET & ROOT ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --s-font-edaa2608: 'Montserrat Alternates';
  --s-font-3d90083b: 'Noto Sans JP';
  --green-dark: #1C3D5A;
  --green-light:#5B9EC9;
  --green-pale: #EEF4F8;
  --text:       #1a1a1a;
  --muted:      #777;
  --bg:         #ffffff;
  --bg-sub:     #f6f5f2;
  --border:     #e5e5e3;
}
body { font-family: var(--s-font-3d90083b), sans-serif; color: var(--text); background: var(--bg); }

/* ── HEADER ── */
header {
  background: #fff;
  display: flex;
  align-items: center;
  padding: 0 40px;
  height: 120px;
}
.logo-wrap { line-height: 0; flex-shrink: 0; }
.logo-wrap a { display: block; line-height: 0; }
.logo-wrap img { height: 100px; width: auto; display: block; }
.main-nav { display: flex; gap: 2px; margin-left: auto; margin-right: 68px; }
nav a {
  font-family: var(--s-font-edaa2608), sans-serif;
  color: var(--muted);
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .07em;
  padding: 7px 14px;
  border-radius: 4px;
  transition: background .15s, color .15s;
  white-space: nowrap;
}
nav a:hover  { background: var(--bg-sub); color: var(--text); }
nav a.active { background: var(--green-pale); color: var(--green-dark); }

/* ── HAMBURGER (fixed) ── */
.hamburger {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 500;
  width: 48px;
  height: 48px;
  background: var(--green-dark);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
}
.hamburger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: #fff;
  border-radius: 1px;
  transition: transform .3s, opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── MENU OVERLAY ── */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: var(--green-dark);
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.menu-overlay.open { opacity: 1; pointer-events: all; }
.overlay-nav { display: flex; flex-direction: column; gap: 28px; text-align: center; }
.overlay-nav a {
  font-family: var(--s-font-edaa2608), sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: rgba(255,255,255,.8);
  text-decoration: none;
  letter-spacing: .06em;
  transition: color .15s;
}
.overlay-nav a:hover { color: #fff; background: transparent; }
.nav-en { display: block; font-size: 10px; font-weight: 400; letter-spacing: .18em; opacity: .55; margin-top: 4px; text-transform: uppercase; font-family: var(--s-font-edaa2608), sans-serif; }

/* ── WAVE ── */
.wave { display: block; width: 100%; line-height: 0; }

/* ── SECTION ── */
.section-wrap { padding: 96px 0px; max-width: 1120px; margin: 0 auto; }
.bg-sub { background: var(--bg-sub); }
.label {
  font-family: var(--s-font-edaa2608), sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .24em;
  color: var(--green-light);
  text-transform: uppercase;
  margin-bottom: 10px;
}
h2 {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 900;
  line-height: 1.35;
  margin-bottom: 40px;
}

/* ── PHOTO PLACEHOLDER ── */
.img-ph {
  width: 100%;
  height: 100%;
  min-height: 360px;
  background: linear-gradient(160deg, #e8e7e3 0%, #d8d7d3 100%);
  border-radius: 16px 16px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.img-ph::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(255,255,255,.12) 20px,
    rgba(255,255,255,.12) 21px
  );
}
.img-ph .ph-label {
  font-family: var(--s-font-edaa2608), sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .4em;
  color: rgba(255,255,255,.55);
  position: relative;
}
.img-ph.rounded { border-radius: 12px; }
.img-ph.small { min-height: 280px; }
.img-ph.medium { min-height: 340px; }
.img-ph.large  { min-height: 440px; }

/* ── PAGE HERO ── */
.page-hero-wrap { background: var(--bg); }
.page-hero {
  max-width: 800px;
  margin: 0 auto;
  padding: 72px 48px 72px;
}
.page-hero-text { padding-bottom: 0; }
.page-hero h1 { font-size: clamp(28px, 4vw, 52px); font-weight: 900; margin-bottom: 16px; }
.page-hero p  { font-size: 14px; color: var(--muted); line-height: 1.9; }

/* ── CONCEPT ── */
.concept-block { max-width: 760px; }
.concept-quote {
  font-size: clamp(22px, 3.2vw, 42px);
  font-weight: 900;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 24px;
}
.concept-sub { font-size: 15px; color: var(--muted); line-height: 2.2; max-width: 640px; }

/* ── VISION ── */
.vision-block {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.vision-lead {
  font-size: clamp(18px, 2.4vw, 28px);
  font-weight: 900;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 28px;
}
.vision-sub { font-size: 14px; color: var(--muted); line-height: 2.2; }

/* ── MISSION ── */
.mission-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.mission-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 28px 28px 24px;
  display: flex;
  gap: 18px;
}
.mission-num {
  font-family: var(--s-font-edaa2608), sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: var(--border);
  line-height: 1;
  flex-shrink: 0;
}
.mission-card h3 { font-size: 14px; font-weight: 700; color: var(--green-dark); margin-bottom: 8px; }
.mission-card p  { font-size: 13px; color: var(--muted); line-height: 1.85; }

/* ── SERVICES (TOP) ── */
.service-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.service-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  overflow: hidden;
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  transition: transform .2s, box-shadow .2s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 10px 32px rgba(0,0,0,.08); }
.service-body { padding: 32px 28px 32px; }
.service-body .s-label {
  font-family: var(--s-font-edaa2608), sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--green-light);
  margin-bottom: 6px;
}
.service-body h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.service-body p  { font-size: 13px; line-height: 1.9; color: var(--muted); margin-bottom: 16px; }
.service-body .arrow {
  font-family: var(--s-font-edaa2608), sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--green-dark);
}

/* ── FULLSCREEN HERO ── */
.fv-hero {
  position: relative;
  height: 70vh;
  min-height: 520px;
  overflow: hidden;
}
.fv-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease;
  z-index: 0;
}
.fv-slide.active { opacity: 1; }
.fv-overlay {
  position: absolute;
  inset: 0;
}
.fv-wave-top {
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  z-index: 8;
  line-height: 0;
}
.fv-wave-top img, .fv-wave-top svg {
  display: block;
  width: 100%;
  height: 120px;
}
.fv-wave-bottom {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 8;
  line-height: 0;
}
.fv-wave-bottom img, .fv-wave-bottom svg {
  display: block;
  width: 100%;
  height: 80px;
}
.fv-logo {
  position: absolute;
  top: 24px;
  left: 48px;
  z-index: 20;
  line-height: 0;
}
.fv-logo img { height: 100px; width: auto; }
.fv-nav {
  background: var(--green-dark);
  display: flex;
  justify-content: center;
  gap: 0;
  padding: 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.fv-nav a {
  font-family: var(--s-font-3d90083b), sans-serif;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 16px 28px;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: all .15s;
  text-align: center;
  line-height: 1.3;
}
.fv-nav a span {
  display: block;
  font-family: var(--s-font-edaa2608), sans-serif;
  font-size: 9px;
  color: rgba(255,255,255,.45);
  letter-spacing: .14em;
  margin-top: 3px;
}
.fv-nav a:hover { background: transparent; color: #fff; border-bottom-color: var(--green-light); }
.fv-nav a.active { background: transparent; color: #fff; border-bottom-color: var(--green-light); }

/* ── FOOTER ── */
footer { background: var(--green-dark); padding: 56px 48px 32px; }
.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 28px;
}
.footer-left { display: flex; flex-direction: column; gap: 12px; }
.f-logo img { height: 99px; width: auto; display: block; }
.f-address { font-size: 12px; color: rgba(255,255,255,.4); line-height: 1.8; }
.f-map { font-size: 11px; color: rgba(255,255,255,.5); text-decoration: underline; text-underline-offset: 3px; transition: color .15s; }
.f-map:hover { color: rgba(255,255,255,.85); }
.footer-right { display: flex; flex-direction: column; gap: 10px; }
.f-info-row { display: flex; gap: 24px; align-items: baseline; }
.f-info-label {
  font-family: var(--s-font-edaa2608), sans-serif;
  font-size: 10px;
  color: var(--green-light);
  letter-spacing: .1em;
  min-width: 72px;
  flex-shrink: 0;
}
.f-info-val { font-size: 13px; color: rgba(255,255,255,.65); }
.f-nav { display: flex; flex-wrap: wrap; justify-content: center; max-width: 1120px; margin: 0 auto 16px; }
.f-nav a {
  font-family: var(--s-font-edaa2608), sans-serif;
  font-size: 11px;
  color: rgba(255,255,255,.4);
  text-decoration: none;
  padding: 5px 14px;
  transition: color .15s;
}
.f-nav a:hover { color: rgba(255,255,255,.85); background: transparent; }
.f-copy { font-size: 9px; color: rgba(255,255,255,.25); letter-spacing: .04em; text-align: center; max-width: 1120px; margin: 0 auto; }

/* ── RESPONSIVE BR ── */
.br-sp { display: none; }
.br-pc { display: inline; }

/* ── SCROLL REVEAL ── */
.sr { opacity: 0; transform: translateY(32px); transition: opacity .7s cubic-bezier(.25,.46,.45,.94), transform .7s cubic-bezier(.25,.46,.45,.94); }
.sr.sr-v { opacity: 1; transform: none; }
.sr[data-d="1"] { transition-delay: .08s; }
.sr[data-d="2"] { transition-delay: .16s; }
.sr[data-d="3"] { transition-delay: .24s; }
.sr[data-d="4"] { transition-delay: .32s; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  header { padding: 0 16px; height: 88px; }
  .logo-wrap img { height: 70px; }
  .overlay-nav { gap: 20px; }
  .overlay-nav a { font-size: 20px; }
  .main-nav { display: none; }
  .fv-logo { top: 20px; left: 20px; }
  .fv-logo img { height: 100px; }
  .fv-nav { overflow-x: auto; justify-content: flex-start; }
  .fv-nav a { padding: 12px 16px; font-size: 12px; }
  .mission-grid, .service-cards { grid-template-columns: 1fr; }
  .section-wrap { padding: 64px 24px; }
  .page-hero { padding: 48px 24px 48px; }
  footer { padding: 40px 24px 28px; }
  .footer-inner { flex-direction: column; gap: 32px; }
  .f-nav a { padding: 5px 7px; }
  .br-sp { display: inline; }
  .br-pc { display: none; }
}

/* ── PAGE-SPECIFIC: INITIATIVES ── */
.service-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 48px;
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.service-item:last-child { border-bottom: none; }
.si-num {
  font-family: var(--s-font-edaa2608), sans-serif;
  font-size: 64px;
  font-weight: 900;
  color: var(--border);
  line-height: 1;
}
.service-num {
  font-family: var(--s-font-edaa2608), sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--green-light);
  margin-bottom: 10px;
}
.service-text p { font-size: 14px; line-height: 2.1; color: var(--muted); margin-bottom: 28px; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
}
.feature-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-light);
  flex-shrink: 0;
  margin-top: 8px;
}
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 36px; }
.price-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
}
.price-card.featured { background: var(--green-dark); border-color: var(--green-dark); }
.price-card .p-label {
  font-family: var(--s-font-edaa2608), sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--green-light);
  margin-bottom: 8px;
}
.price-card h3 { font-size: 14px; font-weight: 700; margin-bottom: 16px; color: var(--text); }
.price-card.featured h3 { color: #fff; }
.price-row { display: flex; justify-content: space-between; align-items: center; padding: 9px 0; border-bottom: 1px solid var(--border); font-size: 13px; }
.price-card.featured .price-row { border-color: rgba(255,255,255,.1); }
.price-row:last-child { border-bottom: none; }
.price-row .ptype { color: var(--muted); }
.price-card.featured .ptype { color: rgba(255,255,255,.5); }
.price-row .amount { font-weight: 700; font-size: 16px; color: var(--text); }
.price-card.featured .amount { color: var(--green-light); }
.price-note {
  margin-top: 24px;
  background: var(--green-pale);
  border-left: 4px solid var(--green-light);
  border-radius: 0 8px 8px 0;
  padding: 14px 18px;
  font-size: 13px;
  color: var(--green-dark);
  line-height: 1.9;
}
.flow { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; align-items: center; gap: 0; margin-top: 36px; }
.flow-item { border: 1px solid var(--border); border-radius: 10px; padding: 22px 16px; text-align: center; background: var(--bg); }
.flow-item h4 { font-size: 13px; font-weight: 700; color: var(--green-dark); margin-bottom: 6px; }
.flow-item p  { font-size: 12px; color: var(--muted); line-height: 1.7; }
.flow-arrow { font-size: 18px; color: var(--green-light); text-align: center; padding: 0 6px; }
.btn {
  display: inline-flex;
  align-items: center;
  padding: 13px 28px;
  border-radius: 4px;
  font-family: var(--s-font-edaa2608), sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-decoration: none;
  transition: all .15s;
}
.btn-primary { background: var(--green-dark); color: #fff; }
.btn-primary:hover { background: var(--green-dark); }

/* ── PAGE-SPECIFIC: ORGANIZATION ── */
.org-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 260px 1fr;
}
.org-card-left {
  background: var(--green-dark);
  padding: 48px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 14px;
}
.org-card-left h3 { font-size: 13px; font-weight: 700; color: #fff; line-height: 1.9; }
.org-card-right { padding: 44px 48px; background: #fff; }
.info-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
}
.info-row:last-child { border-bottom: none; }
.info-row .key {
  font-family: var(--s-font-edaa2608), sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--green-light);
}
.info-row .val { font-size: 14px; color: var(--text); line-height: 1.8; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.about-text p { font-size: 15px; line-height: 2.1; color: var(--muted); margin-bottom: 20px; }
.about-text p:last-child { margin-bottom: 0; }
.mission-list { list-style: none; display: flex; flex-direction: column; gap: 0; margin-top: 0; }
.mission-list li {
  display: flex;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.mission-list li:last-child { border-bottom: none; }
.mission-list .m-num {
  font-family: var(--s-font-edaa2608), sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--green-light);
  line-height: 1;
  flex-shrink: 0;
  min-width: 28px;
}
.mission-list .m-text { font-size: 14px; color: var(--text); line-height: 1.75; font-weight: 600; }

/* ── PAGE-SPECIFIC: PARK-DETAILS ── */
.anchor-nav {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  overflow-x: auto;
  padding: 0 48px;
}
.anchor-nav a {
  font-family: var(--s-font-edaa2608), sans-serif;
  flex-shrink: 0;
  padding: 14px 18px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .07em;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: all .15s;
  white-space: nowrap;
}
.anchor-nav a:hover { color: var(--text); border-bottom-color: var(--green-light); }
.anchor-nav a.is-active { color: var(--green-dark); border-bottom-color: var(--green-dark); }
.service-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.info-cards-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
}
.s-num-badge {
  font-family: var(--s-font-edaa2608), sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green-dark);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  margin-bottom: 16px;
}
.info-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 28px;
  margin-bottom: 16px;
}
.info-card:last-child { margin-bottom: 0; }
.info-card h3 {
  font-family: var(--s-font-edaa2608), sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--green-light);
  margin-bottom: 14px;
}
.info-card table { width: 100%; border-collapse: collapse; }
.info-card tr { border-bottom: 1px solid var(--border); }
.info-card tr:last-child { border-bottom: none; }
.info-card th { width: 38%; padding: 10px 0; font-size: 12px; font-weight: 600; color: var(--muted); text-align: left; vertical-align: top; }
.info-card td { padding: 10px 0 10px 10px; font-size: 14px; color: var(--text); line-height: 1.7; }
.price-amt { font-size: 18px; font-weight: 900; color: var(--green-dark); }
.price-amt small { font-size: 11px; font-weight: 400; color: var(--muted); }
.rules-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 32px; }
.rule-box { border: 1px solid var(--border); border-radius: 10px; padding: 20px 22px; background: var(--bg-sub); }
.rule-box.warn   { border-color: var(--green-light); background: var(--green-pale); }
.rule-box.danger { border-color: var(--green-dark); background: var(--green-pale); }
.rule-box h3 { font-size: 12px; font-weight: 700; margin-bottom: 12px; color: var(--text); }
.rule-box.warn h3   { color: var(--green-dark); }
.rule-box.danger h3 { color: var(--green-dark); }
.rule-box ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.rule-box ul li { font-size: 13px; color: var(--muted); line-height: 1.7; display: flex; gap: 8px; }
.rule-box ul li::before { content: '—'; color: var(--border); flex-shrink: 0; }
.rule-box.warn   ul li::before { color: var(--green-light); }
.rule-box.danger ul li::before { color: var(--green-dark); }
.bbq-price-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin-bottom: 20px; }
.bbq-price-table { width: 100%; min-width: 480px; border-collapse: collapse; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.bbq-price-table thead tr { background: var(--green-dark); }
.bbq-price-table th {
  font-family: var(--s-font-edaa2608), sans-serif;
  padding: 13px 22px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  color: #fff;
  text-align: left;
  white-space: nowrap;
}
.bbq-price-table td { padding: 14px 22px; font-size: 14px; color: var(--text); border-bottom: 1px solid var(--border); white-space: nowrap; }
.bbq-price-table tbody tr:last-child td { border-bottom: none; }
.bbq-price-table .amt { font-size: 16px; font-weight: 900; color: var(--green-dark); }
.season-tag {
  font-family: var(--s-font-edaa2608), sans-serif;
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .07em;
  padding: 2px 8px;
  border-radius: 10px;
  margin-left: 8px;
}
.tag-peak    { background: var(--green-dark); color: #fff; }
.tag-weekend { background: var(--green-light); color: #fff; }
.tag-weekday { background: var(--bg-sub); color: var(--muted); }
.rule-group-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.rule-group {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 22px 24px;
}
.rule-group h4 {
  font-family: var(--s-font-edaa2608), sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--green-dark);
  margin-bottom: 12px;
}
.rule-group ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.rule-group ul li { font-size: 13px; color: var(--muted); line-height: 1.7; display: flex; gap: 8px; }
.rule-group ul li::before { content: '—'; color: var(--border); flex-shrink: 0; }
.disclaimer {
  margin-top: 24px;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 22px 24px;
  font-size: 13px;
  color: var(--muted);
  line-height: 2;
}
.disclaimer strong { color: var(--text); }

/* ── PAGE-SPECIFIC: CONTACT ── */
.contact-layout {
  grid-template-columns: 1fr 360px;
  gap: 80px;
  align-items: start;
}
.contact-form { display: flex; flex-direction: column; gap: 24px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}
.form-group label .req {
  font-family: var(--s-font-edaa2608), sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
  background: var(--green-dark);
  color: #fff;
  padding: 2px 7px;
  border-radius: 3px;
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--s-font-3d90083b), sans-serif;
  font-size: 14px;
  color: var(--text);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  transition: border-color .15s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--green-light); }
.form-group textarea { min-height: 160px; resize: vertical; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23777' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 40px;
  background: var(--green-dark);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-family: var(--s-font-edaa2608), sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  cursor: pointer;
  transition: background .15s;
  align-self: flex-start;
}
.btn-submit:hover { background: var(--green-dark); }
.info-panel {
  background: var(--green-dark);
  border-radius: 16px;
  padding: 40px 36px;
  color: #fff;
}
.info-panel .i-label {
  font-family: var(--s-font-edaa2608), sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .22em;
  color: var(--green-light);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.info-panel h3 {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.8;
  margin-bottom: 28px;
}
.info-note {
  margin-top: 24px;
  font-size: 11px;
  color: rgba(255,255,255,.45);
  line-height: 1.8;
}

/* ── CONTACT FORM 7 ── */
.cf7-wrap .wpcf7 { max-width: 720px; margin: 0 auto; }

/* フォーム全体レイアウト */
.cf7-wrap .wpcf7-form { display: flex; flex-direction: column; gap: 24px; }

/* ラベル行 */
.cf7-wrap .cf7-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cf7-wrap .cf7-group { display: flex; flex-direction: column; gap: 8px; }
.cf7-wrap .cf7-group label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cf7-wrap .req {
  font-family: var(--s-font-edaa2608), sans-serif;
  font-size: 9px;
  font-weight: 700;
  background: var(--green-dark);
  color: #fff;
  padding: 2px 6px;
  border-radius: 3px;
  letter-spacing: .06em;
}

/* wpcf7-form-control-wrap は inline になるので block に */
.cf7-wrap .wpcf7-form-control-wrap { display: block; }

/* input / select / textarea 共通 */
.cf7-wrap .wpcf7-form-control:not([type="submit"]) {
  font-family: var(--s-font-3d90083b), sans-serif;
  font-size: 14px;
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  background: #fff;
  color: var(--text);
  outline: none;
  transition: border-color .15s;
  box-sizing: border-box;
}
.cf7-wrap .wpcf7-form-control:not([type="submit"]):focus { border-color: var(--green-light); }
.cf7-wrap textarea.wpcf7-form-control { min-height: 160px; resize: vertical; }
.cf7-wrap select.wpcf7-form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23777' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

/* 送信ボタン */
.cf7-wrap input[type="submit"].wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 40px;
  background: var(--green-dark);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-family: var(--s-font-edaa2608), sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  cursor: pointer;
  transition: background .15s;
  width: auto;
}
.cf7-wrap input[type="submit"].wpcf7-submit:hover { background: #163050; }

/* バリデーションエラー */
.cf7-wrap .wpcf7-not-valid-tip {
  font-size: 11px;
  color: #c0392b;
  margin-top: 4px;
  display: block;
}
.cf7-wrap .wpcf7-form-control.wpcf7-not-valid { border-color: #c0392b; }

/* 送信結果メッセージ */
.cf7-wrap .wpcf7-response-output {
  padding: 14px 18px;
  border-radius: 6px;
  font-size: 13px;
  border: none;
  margin: 0;
}
.cf7-wrap .wpcf7-mail-sent-ok { background: var(--green-pale); color: var(--green-dark); }
.cf7-wrap .wpcf7-mail-sent-ng,
.cf7-wrap .wpcf7-spam-blocked,
.cf7-wrap .wpcf7-validation-errors { background: #fdf0f0; color: #c0392b; }

/* スピナー */
.cf7-wrap .wpcf7-spinner { margin-left: 12px; }

/* ── NEWS ── */
.news-list { list-style: none; border-top: 1px solid var(--border); }
.news-item { border-bottom: 1px solid var(--border); }
.news-link {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 20px 4px;
  text-decoration: none;
  color: var(--text);
  transition: color .15s;
}
.news-link:hover { color: var(--green-dark); }
.news-link:hover .news-title { text-decoration: underline; text-underline-offset: 3px; }
.news-meta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.news-date {
  font-family: var(--s-font-edaa2608), sans-serif;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: .04em;
  white-space: nowrap;
}
.news-cat {
  font-family: var(--s-font-edaa2608), sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  padding: 3px 8px;
  border-radius: 3px;
  background: var(--green-pale);
  color: var(--green-dark);
  white-space: nowrap;
}
.news-title { font-size: 14px; line-height: 1.6; }
.news-more { text-align: center; margin-top: 40px; }
.btn-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  border: 1.5px solid var(--green-dark);
  border-radius: 6px;
  font-family: var(--s-font-edaa2608), sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--green-dark);
  text-decoration: none;
  transition: background .15s, color .15s;
}
.btn-more:hover { background: var(--green-dark); color: #fff; }

/* NEWS アーカイブ */
.news-filter { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 36px; }
.news-filter-btn {
  font-family: var(--s-font-edaa2608), sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  padding: 6px 16px;
  border-radius: 99px;
  border: 1.5px solid var(--border);
  color: var(--muted);
  text-decoration: none;
  transition: all .15s;
}
.news-filter-btn:hover,
.news-filter-btn.is-active { border-color: var(--green-dark); background: var(--green-dark); color: #fff; }
.news-pagination { display: flex; justify-content: center; gap: 4px; margin-top: 48px; }
.news-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: all .15s;
}
.news-pagination .page-numbers:hover,
.news-pagination .page-numbers.current { background: var(--green-dark); color: #fff; }

/* NEWS 詳細 */
.news-article { max-width: 720px; margin: 0 auto; }
.news-hero-meta { display: flex; align-items: center; gap: 12px; margin-top: 12px; font-size: 13px; color: rgba(255,255,255,.65); }
.news-body { font-size: 15px; line-height: 2; color: var(--text); }
.news-body h2 { font-size: 18px; margin: 40px 0 16px; padding-bottom: 8px; border-bottom: 1px solid var(--border); }
.news-body h3 { font-size: 16px; margin: 32px 0 12px; }
.news-body p { margin-bottom: 20px; }
.news-body ul, .news-body ol { margin: 0 0 20px 20px; }
.news-body li { margin-bottom: 6px; }
.news-back { margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--border); }
.news-back a { font-size: 13px; color: var(--muted); text-decoration: none; }
.news-back a:hover { color: var(--green-dark); }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 8px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--s-font-3d90083b), sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  transition: color .15s;
}
.faq-q:hover { color: var(--green-dark); }
.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green-dark);
  color: #fff;
  font-family: var(--s-font-edaa2608), sans-serif;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0;
}
.faq-icon-a { background: var(--green-light); }
.faq-q-text { flex: 1; line-height: 1.5; }
.faq-arrow {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
  margin-left: auto;
}
.faq-arrow::before,
.faq-arrow::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 8px;
  height: 1.5px;
  background: var(--muted);
  transition: transform .25s;
}
.faq-arrow::before { left: 2px;  transform: translateY(-50%) rotate(45deg); }
.faq-arrow::after  { right: 2px; transform: translateY(-50%) rotate(-45deg); }
.faq-q[aria-expanded="true"] .faq-arrow::before { transform: translateY(-50%) rotate(-45deg); }
.faq-q[aria-expanded="true"] .faq-arrow::after  { transform: translateY(-50%) rotate(45deg); }
.faq-a[hidden] { display: none !important; }
.faq-a {
  display: flex;
  gap: 16px;
  padding: 4px 8px 24px 8px;
  align-items: flex-start;
}
.faq-a-text { font-size: 14px; line-height: 1.9; color: var(--muted); flex: 1; }
.faq-a-text p { margin: 0 0 8px; }
.faq-a-text ul { margin: 8px 0 0 16px; }
.faq-a-text li { margin-bottom: 4px; }

/* ── RESPONSIVE (page-specific) ── */
@media (max-width: 900px) {
  .service-item { grid-template-columns: 48px 1fr; gap: 24px; padding: 48px 0; }
  .si-num { font-size: 40px; }
  .price-grid { grid-template-columns: 1fr; }
  .flow { grid-template-columns: 1fr; }
  .flow-arrow { transform: rotate(90deg); }
  .org-card { grid-template-columns: 1fr; }
  .org-card-right { padding: 28px 24px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .info-row { grid-template-columns: 110px 1fr; }
  .anchor-nav { top: 0; padding: 0 16px; }
  .service-layout { grid-template-columns: 1fr; gap: 32px; }
  .info-cards-2col { grid-template-columns: 1fr; }
  .rules-grid, .rule-group-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .cf7-wrap .cf7-row { grid-template-columns: 1fr; }
  .news-link { flex-direction: column; gap: 8px; }
  .news-meta { flex-wrap: wrap; }
  .faq-q { font-size: 14px; }
}
