@charset "UTF-8";
/* =============================================================
   なみとも Website Renewal 2026
   bright / friendly / warm — brand color #fecb3c
   ============================================================= */

/* ---------- Tokens ---------- */
:root {
  --brand: #fecb3c;
  --brand-soft: #fff3cf;
  --brand-pale: #fffaec;
  --brand-deep: #eaa800;
  --ink: #46402e;
  --ink-soft: #7b7158;
  --teal: #56c2b2;
  --teal-soft: #e2f6f2;
  --coral: #f48b6c;
  --coral-soft: #fdeae3;
  --sky: #7cc3e8;
  --sky-soft: #e8f5fc;
  --paper: #ffffff;
  --cream: #fdf8ec;
  --line: #f0e7d2;
  --radius-s: 14px;
  --radius-m: 22px;
  --radius-l: 32px;
  --shadow-s: 0 4px 16px rgba(70, 64, 46, 0.07);
  --shadow-m: 0 10px 34px rgba(70, 64, 46, 0.10);
  --font-head: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", sans-serif;
  --font-body: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.95;
  letter-spacing: 0.03em;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.5; letter-spacing: 0.04em; margin: 0; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
ul, ol, dl, dd, figure { margin: 0; padding: 0; }
li { list-style: none; }
button { font-family: inherit; }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px;
  margin: -1px; padding: 0; overflow: hidden;
  clip: rect(0 0 0 0); border: 0; white-space: nowrap;
}
.skip-link {
  position: absolute; left: 8px; top: -60px; z-index: 200;
  background: var(--ink); color: #fff; padding: 10px 18px;
  border-radius: 0 0 12px 12px; text-decoration: none; transition: top .2s;
}
.skip-link:focus { top: 0; }
.pc-only { display: inline; }
.sp-only { display: none; }

.container { width: min(1140px, 92%); margin-inline: auto; }
.section { padding-block: clamp(72px, 9vw, 120px); }
.section--tight { padding-block: clamp(48px, 6vw, 80px); }

/* ---------- Reveal animation ---------- */
.js-reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.js-reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js-reveal { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 14px; z-index: 100;
  padding-inline: max(14px, calc((100% - 1340px) / 2));
}
.site-header__bar {
  display: flex; align-items: center; gap: 18px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border-radius: 24px;
  box-shadow: var(--shadow-s);
  padding: 12px 22px;
  transition: box-shadow .3s;
}
.site-header.is-scrolled .site-header__bar { box-shadow: var(--shadow-m); }
.site-header__logo { display: inline-flex; align-items: center; flex-shrink: 0; }
.site-header__logo img { width: 132px; height: auto; }
.site-nav { display: flex; gap: clamp(10px, 1.6vw, 26px); margin-left: auto; }
.site-nav a {
  font-family: var(--font-head); font-weight: 700; font-size: 15px;
  text-decoration: none; padding: 6px 2px; position: relative; white-space: nowrap;
}
.site-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 3px; border-radius: 3px; background: var(--brand);
  transform: scaleX(0); transition: transform .25s; transform-origin: left;
}
.site-nav a:hover::after, .site-nav a[aria-current="page"]::after { transform: scaleX(1); }
.site-header__cta { flex-shrink: 0; }

/* hamburger */
.menu-button {
  display: none; position: relative; width: 48px; height: 48px;
  border: 0; border-radius: 16px; background: var(--brand); cursor: pointer;
  flex-shrink: 0; margin-left: auto;
}
.menu-button__line {
  position: absolute; left: 14px; right: 14px; height: 2.5px;
  border-radius: 2px; background: var(--ink); transition: .3s;
}
.menu-button__line:nth-child(1) { top: 17px; }
.menu-button__line:nth-child(2) { top: 23px; }
.menu-button__line:nth-child(3) { top: 29px; }
.menu-button[aria-expanded="true"] .menu-button__line:nth-child(1) { top: 23px; transform: rotate(45deg); }
.menu-button[aria-expanded="true"] .menu-button__line:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] .menu-button__line:nth-child(3) { top: 23px; transform: rotate(-45deg); }

.mobile-menu {
  display: none;
  margin-top: 10px;
  background: #fff; border-radius: var(--radius-m);
  box-shadow: var(--shadow-m); padding: 26px 24px;
}
.mobile-menu.is-open { display: block; }
.mobile-menu__nav { display: grid; gap: 4px; margin-bottom: 18px; }
.mobile-menu__nav a {
  font-family: var(--font-head); font-weight: 700; text-decoration: none;
  padding: 11px 8px; border-radius: 12px;
}
.mobile-menu__nav a:hover, .mobile-menu__nav a[aria-current="page"] { background: var(--brand-soft); }

/* ---------- Buttons / links ---------- */
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head); font-weight: 700; font-size: 15.5px;
  letter-spacing: 0.06em; text-decoration: none; cursor: pointer;
  border-radius: 999px; padding: 13px 30px; border: 2px solid transparent;
  transition: transform .2s, box-shadow .2s, background .2s, color .2s;
}
.button::after {
  content: "→"; font-size: 0.95em; transition: transform .2s;
}
.button:hover::after { transform: translateX(4px); }
.button--primary { background: var(--brand); color: var(--ink); box-shadow: 0 6px 18px rgba(254, 203, 60, 0.45); }
.button--primary:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(254, 203, 60, 0.55); }
.button--secondary { background: #fff; border-color: var(--ink); color: var(--ink); }
.button--secondary:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }
.button--ghost { background: #fff; border-color: var(--brand); color: var(--ink); }
.button--ghost:hover { background: var(--brand-soft); }
.button--large { padding: 17px 46px; font-size: 17px; }
.button--full { width: 100%; }
.button-row { display: flex; flex-wrap: wrap; gap: 14px; }

.text-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 700; text-decoration: none; color: var(--ink);
}
.text-link .arrow {
  display: inline-grid; place-items: center; width: 34px; height: 34px;
  border-radius: 50%; background: var(--brand); font-size: 14px; transition: transform .2s;
}
.text-link:hover .arrow { transform: translateX(4px); }

/* ---------- Headings ---------- */
.kicker {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-head); font-weight: 700;
  font-size: 14px; letter-spacing: 0.14em; color: var(--teal);
  text-transform: uppercase; margin: 0 0 14px;
}
.kicker::before {
  content: ""; width: 11px; height: 11px; border-radius: 50%;
  background: var(--brand); flex-shrink: 0;
}
.title {
  font-size: clamp(24px, 3.4vw, 36px); font-weight: 700; color: var(--ink);
  margin-bottom: 22px;
}
.title--hero { font-size: clamp(30px, 4.6vw, 50px); line-height: 1.45; }
.lead { color: var(--ink-soft); }
.heading { margin-bottom: clamp(34px, 4vw, 54px); }
.heading .title { margin-bottom: 10px; }

/* ---------- Cards ---------- */
.card {
  background: #fff; border-radius: var(--radius-m);
  box-shadow: var(--shadow-s); overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.card:hover { box-shadow: var(--shadow-m); }
a.card:hover, .card--lift:hover { transform: translateY(-5px); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

.media-card { display: flex; flex-direction: column; text-decoration: none; }
.media-card > img { aspect-ratio: 3 / 2; object-fit: cover; width: 100%; }
.media-card__body { padding: 24px 26px 28px; flex: 1; }
.media-card__body h3 {
  font-size: 19px; margin-bottom: 10px; display: flex; align-items: center; gap: 10px;
}
.media-card__body p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.85; }
.media-card__icon {
  display: inline-grid; place-items: center; width: 40px; height: 40px;
  border-radius: 14px; background: var(--brand-soft); flex-shrink: 0;
}
.media-card__icon svg { width: 22px; height: 22px; fill: var(--brand-deep); }
.media-card__icon img { width: 22px; height: 22px; }

/* numbered card */
.num-card { position: relative; }
.num-card__number {
  font-family: var(--font-head); font-weight: 700; font-size: 30px;
  color: var(--brand-deep); display: block; margin-bottom: 6px;
}

/* chips */
.chip-list { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 20px; }
.chip-list li {
  font-size: 13.5px; font-weight: 500;
  background: var(--brand-pale); border: 1.5px solid var(--brand);
  color: var(--ink); padding: 5px 16px; border-radius: 999px;
}

/* ---------- Split (text + image) ---------- */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 70px); align-items: center;
}
.split--reverse > .split__media { order: -1; }
.split__media img { border-radius: var(--radius-l); box-shadow: var(--shadow-m); width: 100%; object-fit: cover; }
.media-grid--2col { display: grid; gap: 18px; }
.media-grid--2col img { max-height: 190px; object-fit: cover; }

/* photo collage with color blocks */
.collage { position: relative; z-index: 0; }
.collage img { border-radius: var(--radius-l); box-shadow: var(--shadow-m); width: 100%; }
.collage::before, .collage::after {
  content: ""; position: absolute; border-radius: 22px; z-index: -1;
}
.collage::before {
  width: 96px; height: 96px; background: var(--brand);
  top: -26px; right: -20px; transform: rotate(8deg);
}
.collage::after {
  width: 64px; height: 64px; background: var(--teal);
  bottom: -22px; left: -18px; transform: rotate(-10deg);
}
.collage--coral::after { background: var(--coral); }
.collage--sky::after { background: var(--sky); }

/* ---------- Hero (top) ---------- */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--brand-pale) 0%, #fff 55%, var(--teal-soft) 100%);
  padding-block: clamp(56px, 7vw, 110px) clamp(72px, 8vw, 130px);
}
.hero__deco { position: absolute; border-radius: 50%; pointer-events: none; }
.hero__deco--1 { width: 380px; height: 380px; background: rgba(254, 203, 60, .18); top: -130px; left: -110px; }
.hero__deco--2 { width: 300px; height: 300px; background: rgba(86, 194, 178, .12); bottom: -120px; right: -80px; }
.hero__inner {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: clamp(34px, 5vw, 70px); align-items: center; position: relative;
}
.hero__title { margin-bottom: 22px; }
.hero__title .marker {
  background: linear-gradient(transparent 62%, var(--brand) 62%);
  padding-inline: 2px;
}
.hero__lead { margin-bottom: 30px; color: var(--ink-soft); }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--brand) 0%, #ffd95e 100%);
  border-radius: var(--radius-l);
  padding: clamp(40px, 5.5vw, 72px) clamp(26px, 5vw, 80px);
  display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; width: 220px; height: 220px; border-radius: 50%;
  background: rgba(255, 255, 255, .25); top: -90px; right: 12%;
}
.cta-band .title { margin-bottom: 10px; }
.cta-band p { max-width: 640px; }
.cta-band .button--secondary { border-color: var(--ink); background: #fff; }
.cta-band__buttons { display: flex; flex-direction: column; gap: 14px; position: relative; }

/* ---------- SNS tiles ---------- */
.sns-grid { display: flex; flex-wrap: wrap; gap: 16px; }
.sns-grid--center { justify-content: center; }
.sns-grid--equal {
  display: inline-grid; grid-auto-flow: column; grid-auto-columns: 1fr;
}
.sns-grid__wrap { text-align: center; }
.sns-card {
  display: flex; align-items: center; gap: 13px;
  background: #fff; border: 2px solid var(--line); border-radius: 18px;
  padding: 14px 22px; text-decoration: none; 
  font-family: var(--font-head); font-weight: 700; font-size: 15px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
  min-width: 300px;
}
.sns-grid--equal .sns-card { width: 100%; }
.sns-card:hover { border-color: var(--brand); transform: translateY(-3px); box-shadow: var(--shadow-s); }
.sns-card img { width: 44px; height: 44px; }

/* news blocks (top) */
.news-block {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 28px;
  align-items: center; padding: clamp(26px, 4vw, 44px);
}
.news-block + .news-block { margin-top: 22px; }
.news-block__logo { height: 56px; width: auto; margin-bottom: 14px; }
.news-block h3 { font-size: 20px; margin-bottom: 8px; }
.news-block p { font-size: 14.5px; color: var(--ink-soft); }
.news-block__label {
  display: inline-block; font-size: 12.5px; font-weight: 700;
  background: var(--teal-soft); color: var(--teal);
  border-radius: 999px; padding: 3px 14px; margin-bottom: 8px;
}

/* ---------- Page hero (sub pages) ---------- */
.page-hero {
  position: relative; overflow: hidden;
  background: linear-gradient(150deg, var(--brand-pale) 0%, #fff 60%, var(--sky-soft) 100%);
  padding-block: clamp(52px, 6.5vw, 96px);
}
.page-hero__inner {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: clamp(34px, 5vw, 70px); align-items: center;
}
.page-hero__inner--single { grid-template-columns: 1fr; text-align: center; }
.page-hero__inner--single .kicker { justify-content: center; }
.page-hero__inner--single .lead { max-width: 720px; margin-inline: auto; }
.page-hero__logo { width: 120px; margin-bottom: 18px; }

/* ---------- Stats ---------- */
.stat-card { padding: 30px 28px 34px; border-top: 8px solid var(--brand); }
.stat-card > span {
  font-family: var(--font-head); font-weight: 700; font-size: 14px;
  color: var(--brand-deep); letter-spacing: .1em;
}
.stat-card > strong {
  display: block; font-family: var(--font-head); font-size: 23px;
  margin: 4px 0 12px; line-height: 1.5;
}
.stat-card p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.9; }
.stat-card:nth-child(2) { border-top-color: var(--teal); }
.stat-card:nth-child(2) > span { color: var(--teal); }
.stat-card:nth-child(3) { border-top-color: var(--coral); }
.stat-card:nth-child(3) > span { color: var(--coral); }

/* ---------- Timeline ---------- */
.timeline { position: relative; display: grid; gap: 0; }
.timeline-item {
  position: relative; padding: 0 0 34px 36px; border-left: 3px solid var(--line);
  margin-left: 8px;
}
.timeline-item:last-child { padding-bottom: 4px; }
.timeline-item::before {
  content: ""; position: absolute; left: -11.5px; top: 4px;
  width: 20px; height: 20px; border-radius: 50%;
  background: #fff; border: 5px solid var(--brand);
}
.timeline-item.is-award::before { border-color: var(--coral); }
.timeline-item time {
  font-family: var(--font-head); font-weight: 700; font-size: 14px;
  color: var(--brand-deep); letter-spacing: .08em;
}
.timeline-item.is-award time { color: var(--coral); }
.timeline-item h3 { font-size: 17.5px; margin: 3px 0 6px; }
.timeline-item p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.85; }
.timeline-item.is-award h3::after {
  content: "受賞"; font-size: 11.5px; background: var(--coral); color: #fff;
  border-radius: 999px; padding: 2px 10px; margin-left: 10px; vertical-align: 3px;
}

/* ---------- Definition list ---------- */
.info-list { display: grid; }
.info-list > div {
  display: grid; grid-template-columns: 180px 1fr; gap: 18px;
  padding: 20px 8px; border-bottom: 1.5px dashed var(--line);
}
.info-list > div:last-child { border-bottom: 0; }
.info-list dt { font-family: var(--font-head); font-weight: 700; color: var(--brand-deep); }
.info-list dd a { color: var(--teal); font-weight: 600; }
.info-list .note { font-size: 13.5px; color: var(--ink-soft); }

/* ---------- Mission band ---------- */
.mission-band {
  background: #1a3a6e; color: #fff; border-radius: var(--radius-l);
  padding: clamp(44px, 6vw, 80px) clamp(26px, 6vw, 90px);
  text-align: center; position: relative; overflow: hidden;
}
.mission-band::before, .mission-band::after {
  content: ""; position: absolute; border-radius: 50%;
}
.mission-band::before { width: 260px; height: 260px; background: rgba(254, 203, 60, .18); border: 2px solid rgba(254, 203, 60, .55); top: -80px; left: -70px; }
.mission-band::after  { width: 200px; height: 200px; background: rgba(86, 194, 178, .18); border: 2px solid rgba(86, 194, 178, .55); bottom: -70px; right: -50px; }
.mission-band .kicker { color: var(--brand); justify-content: center; position: relative; }
.mission-band .title { color: #fff; position: relative; }
.mission-band p { position: relative; max-width: 800px; margin-inline: auto; text-align: left; }

/* ---------- History sticky figure ---------- */
.history-figure { position: sticky; top: 120px; }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.gallery-grid img {
  border-radius: var(--radius-s); aspect-ratio: 4 / 3; object-fit: cover;
  width: 100%; transition: transform .3s;
}
.gallery-grid img:hover { transform: scale(1.03); }

/* ---------- Footer ---------- */
.site-footer {
  margin-top: clamp(40px, 6vw, 80px);
  background: var(--cream);
  border-top: 6px solid var(--brand);
  padding: clamp(44px, 6vw, 70px) 0 34px;
}
.site-footer__inner { display: grid; gap: 28px; justify-items: center; text-align: center; }
.site-footer__logo img { width: 150px; }
.site-footer__nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 26px; }
.site-footer__nav a {
  font-family: var(--font-head); font-weight: 700; font-size: 14.5px;
  text-decoration: none; padding: 4px 2px;
}
.site-footer__nav a:hover { color: var(--brand-deep); }
.site-footer__sns { display: flex; gap: 14px; }
.site-footer__sns a { transition: transform .2s; }
.site-footer__sns a:hover { transform: translateY(-3px); }
.site-footer__sns img { width: 38px; height: 38px; }
.site-footer__copy { font-size: 13px; color: var(--ink-soft); margin: 0; }

/* ---------- Floating donate button ---------- */
.float-cta {
  position: fixed; right: 18px; bottom: 18px; z-index: 90;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--coral); color: #fff; text-decoration: none;
  font-family: var(--font-head); font-weight: 700; font-size: 14.5px;
  padding: 13px 22px; border-radius: 999px;
  box-shadow: 0 8px 24px rgba(244, 139, 108, .5);
  transition: transform .2s, box-shadow .2s;
}
.float-cta:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(244, 139, 108, .6); }
.float-cta::before { content: "♥"; font-size: 15px; }

/* ---------- Privacy ---------- */
.privacy-card { padding: clamp(26px, 4vw, 40px); margin-bottom: 22px; }
.privacy-card h2 {
  display: flex; align-items: center; gap: 14px;
  font-size: 19px; margin-bottom: 14px;
}
.privacy-card h2 > span {
  display: inline-grid; place-items: center; flex-shrink: 0;
  width: 38px; height: 38px; border-radius: 13px;
  background: var(--brand); font-size: 16px;
}
.privacy-card p, .privacy-card li { font-size: 14.5px; color: var(--ink-soft); }
.privacy-list { padding-left: 4px; margin: 10px 0; }
.privacy-list li { position: relative; padding-left: 20px; margin-bottom: 4px; }
.privacy-list li::before {
  content: ""; position: absolute; left: 2px; top: 11px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--brand);
}
.privacy-date { text-align: right; color: var(--ink-soft); font-size: 14px; margin-top: 26px; }
.privacy-contact-box {
  background: var(--brand-pale); border-radius: var(--radius-s);
  padding: 18px 22px; margin-top: 14px;
}

/* ---------- Contact ---------- */
.contact-layout { display: grid; grid-template-columns: 0.85fr 1.4fr; gap: 30px; align-items: start; }
.contact-aside { padding: clamp(26px, 3.5vw, 38px); background: var(--brand-pale); box-shadow: none; border: 2px solid var(--brand-soft); }
.contact-aside .title { font-size: 22px; }
.contact-note { background: #fff; border-radius: var(--radius-s); padding: 20px 22px; margin-top: 22px; }
.contact-note h3 { font-size: 15.5px; margin-bottom: 10px; }
.contact-note li { position: relative; font-size: 13.5px; color: var(--ink-soft); padding-left: 18px; margin-bottom: 6px; }
.contact-note li::before {
  content: ""; position: absolute; left: 0; top: 10px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--brand);
}
.contact-form-card { padding: clamp(26px, 4vw, 44px); overflow: visible; }
.contact-form-card .formrun { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 22px; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field--full { grid-column: 1 / -1; }
.form-field label { font-family: var(--font-head); font-weight: 700; font-size: 14.5px; }
.required-badge {
  display: inline-block; font-size: 11px; font-weight: 700;
  background: var(--coral); color: #fff; border-radius: 999px;
  padding: 1px 10px; margin-left: 8px; vertical-align: 2px;
}
.formrun input[type="text"], .formrun select, .formrun textarea {
  font-family: inherit; font-size: 15px; color: var(--ink);
  background: var(--cream); border: 2px solid var(--line);
  border-radius: 14px; padding: 13px 16px; width: 100%;
  transition: border-color .2s, background .2s;
}
.formrun input:focus, .formrun select:focus, .formrun textarea:focus {
  outline: none; border-color: var(--brand); background: #fff;
}
.formrun textarea { min-height: 170px; resize: vertical; }
.form-error { color: #d34a2f; font-size: 13px; }
.form-agreement { text-align: center; }
.form-agreement label { display: inline-flex; align-items: center; gap: 10px; cursor: pointer; font-size: 14.5px; }
.form-agreement input { width: 20px; height: 20px; accent-color: var(--brand-deep); }
.form-agreement a { color: var(--teal); font-weight: 600; }
.form-submit { text-align: center; }
.form-submit button {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 700; font-size: 16.5px;
  background: var(--brand); color: var(--ink); border: 0; cursor: pointer;
  border-radius: 999px; padding: 16px 56px;
  box-shadow: 0 6px 18px rgba(254, 203, 60, .45);
  transition: transform .2s, box-shadow .2s;
}
.form-submit button:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(254, 203, 60, .55); }
.contact-guide-grid .num-card { padding: 26px 26px 28px; }
.contact-guide-grid h3 { font-size: 17.5px; margin-bottom: 8px; }
.contact-guide-grid p { font-size: 14px; color: var(--ink-soft); }

/* ---------- Generic body card ---------- */
.body-card { padding: clamp(28px, 4vw, 48px); }

/* ---------- Support page extras ---------- */
.way-card { text-align: center; padding: 0; display: flex; flex-direction: column; }
.way-card > img { aspect-ratio: 16 / 9; object-fit: cover; width: 100%; }
.way-card__body { padding: 26px 28px 30px; display: flex; flex-direction: column; flex: 1; gap: 12px; position: relative; }
.way-card__icon {
  position: absolute; top: -28px; left: 24px;
  display: grid; place-items: center; width: 56px; height: 56px;
  border-radius: 50%; background: var(--brand);
  box-shadow: 0 0 0 5px #fff; z-index: 1;
}
.way-card__icon svg { width: 27px; height: 27px; fill: var(--ink); }
.way-card__icon img { width: 27px; height: 27px; }
.way-card h3 { font-size: 19.5px; margin-top: 18px; }
.way-card p { font-size: 14.5px; color: var(--ink-soft); flex: 1; }
.way-card .button { align-self: flex-start; margin: auto;}
.way-card--noimg { padding: 40px 28px 36px; }
.way-card--noimg .way-card__body { padding: 0; align-items: center; }
.way-card--noimg .way-card__icon { position: static; margin: 0 auto 16px; box-shadow: none; width: 64px; height: 64px; }
.way-card--noimg .way-card__icon svg { width: 32px; height: 32px; }
.way-card--noimg .way-card__icon img { width: 32px; height: 32px; }
.way-card--noimg h3 { margin-top: 0; }

/* use cards */
.use-card > img { aspect-ratio: 16 / 10; }

/* ---------- Background tints ---------- */
.bg-cream { background: var(--cream); }
.bg-teal { background: var(--teal-soft); }
.bg-pale { background: var(--brand-pale); }

/* =============================================================
   Responsive
   ============================================================= */
@media (max-width: 1023px) {
  .site-nav, .site-header__cta { display: none; }
  .menu-button { display: block; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
  body { font-size: 15px; }
  html { scroll-padding-top: 90px; }
  .pc-only { display: none; }
  .sp-only { display: inline; }
  .site-header { top: 8px; }
  .site-header__bar { padding: 10px 14px; border-radius: 18px; }
  .site-header__logo img { width: 110px; }
  .section { padding-block: 56px; }
  .hero__inner, .page-hero__inner, .split { grid-template-columns: 1fr; }
  .split--reverse > .split__media { order: 0; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .news-block { grid-template-columns: 1fr; }
  .cta-band { grid-template-columns: 1fr; }
  .cta-band__buttons { flex-direction: column; }
  .cta-band__buttons .button { width: 100%; }
  .info-list > div { grid-template-columns: 1fr; gap: 2px; padding: 16px 4px; }
  .contact-form-card .formrun { grid-template-columns: 1fr; }
  .button { width: 100%; }
  .button-row { flex-direction: column; }
  .sns-grid--equal { display: grid; grid-auto-flow: row; grid-auto-columns: auto; width: 100%; }
  .collage::before { width: 64px; height: 64px; top: -16px; right: -8px; }
  .collage::after { width: 46px; height: 46px; bottom: -14px; left: -8px; }
  .float-cta { right: 12px; bottom: 12px; font-size: 13.5px; padding: 11px 18px; }
  .timeline-item { padding-left: 28px; }
  .hero { padding-block: 44px 64px; }
  .gallery-grid { gap: 12px; }
  .mission-band::before { width: 110px; height: 110px; top: -40px; left: -35px; }
  .mission-band::after  { width: 90px; height: 90px; bottom: -30px; right: -25px; }
  .history-figure { position: static; }
}
