@charset "UTF-8";
:root {
  --page: #f2f2f2;
  --surface: #ffffff;
  --warm: #f6e4d5;
  --panel: #e8e8e8;
  --panel-strong: #d8d8d8;
  --ink: #151515;
  --muted: #666666;
  --line: #c8c8c8;
  --accent: #2f6f4e;
  --accent-soft: #e4eee7;
  --green: #6aa549;
  --max: 640px;
  --nav-h: 62px;
  --guide-heading-h: 96px;
  --concepts-heading-h: 64px;
  color: var(--ink);
  background: var(--page);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  /* アンカーリンク(#enjoy 等)でジャンプした時、固定ヘッダー(.global-nav)に
     セクション先頭が隠れないよう、その高さ分の余白を上に確保する。 */
  scroll-padding-top: 84px;
  /* 横方向のはみ出しを抑止。bodyだとviewportへ伝播して効かない癖があるためhtml側に置く。
     clip は scroll container を作らないので sticky な .hero を壊さない。 */
  overflow-x: clip;
}

body {
  margin: 0;
  /* iOSのオーバースクロール/セーフエリアが淡黄緑にならないよう白背景に。
     ヒーローは .hero が自前で背景色(#eef1af)を持つため見た目は変わらない。 */
  background: var(--surface);
  /* sticky な .hero を壊さずに横方向のはみ出しだけ抑止（hiddenだとstickyが壊れる） */
  overflow-x: clip;
  letter-spacing: 0;
}

button,
input,
textarea {
  font: inherit;
}

a {
  color: inherit;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.hero {
  position: sticky;
  top: 0;
  z-index: 0;
  /* 縦長画面でも下に余白が出ないよう、最低でもビューポート全高を確保 */
  min-height: max(clamp(540px, 75vw, 923px), 100vh);
  overflow: hidden;
  /* 背景色は ::before(絶対配置)に持たせる。iOS26 Safari(Liquid Glass)は
     sticky/fixed要素の background-color をツールバー裏にサンプリング＝残像化
     させるが、absolute の子は無視するため、sticky本体は背景透明にする。
     見た目・せり上がり演出は不変。 */
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #eef1af;
}

main {
  position: relative;
  z-index: 1;
  padding-top: 55vh;
}

.logo-cloud {
  transition: opacity 0.2s linear;
  will-change: opacity;
}

.park-map {
  position: absolute;
  /* ヒーローは縦長クランプで画面より背が高くなる事がある(max(...,923px))。
     その中央(50%)に置くと画面中央より下へずれ、上に隙間が出る。
     min(50%,50vh)で「画面より背が高い時だけ画面中央基準」にして隙間を防ぐ。
     通常時・モバイル(背の低いヒーロー)では 50% が選ばれ従来どおり。 */
  top: min(50%, 50vh);
  left: 50%;
  /* 幅だけでなく高さでも画面内に収める(contain)。これで画面が狭い／
     ブラウザ拡大・Windows表示スケール150%等でも公園全体が切れずに表示され、
     100%時と同じ「全体＋余白」の見え方を保つ。
     max-width/max-height + width/height:auto で縦横比を維持したまま縮小。 */
  max-width: min(1280px, 104vw);
  max-height: 96vh;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
}

.logo-cloud {
  position: absolute;
  /* マップと同じ基準で画面中央に合わせ、上の隙間を防ぐ（min(50%,50vh)）。 */
  top: min(50%, 50vh);
  left: 50%;
  /* マップが高さ拘束で縮むときもロゴが相対的に大きくならないよう、
     vh基準(52vh)も min() に加えてマップと同じ拘束に追従させる。 */
  width: min(520px, 46vw, 52vh);
  min-width: 290px;
  transform: translate(-50%, -50%);
  text-align: center;
}

/* 新デザイン: ロゴ＋リボンを1枚に焼き込んだセンタータイトル画像（白円は廃止し画像を直置き） */
.fv-center {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.logo-top,
.logo-bottom {
  display: block;
  height: auto;
  object-fit: contain;
}

.logo-top {
  width: min(342px, 72%);
  margin-bottom: 14px;
}

.logo-bottom {
  width: min(492px, 98%);
  margin-bottom: 22px;
}

.place-ribbon {
  position: relative;
  min-width: min(360px, 74%);
  margin: 0;
  padding: 12px 30px 14px;
  background: var(--green);
  color: #fff;
  font-size: clamp(20px, 2.4vw, 32px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 0 rgba(31, 81, 61, 0.22);
}

.place-ribbon::before,
.place-ribbon::after {
  content: "";
  position: absolute;
  top: 0;
  width: 18px;
  height: 100%;
  background: var(--green);
}

.place-ribbon::before {
  right: calc(100% - 1px);
  clip-path: polygon(
    100% 0,
    24% 0,
    56% 12.5%,
    16% 25%,
    56% 37.5%,
    16% 50%,
    56% 62.5%,
    16% 75%,
    56% 87.5%,
    24% 100%,
    100% 100%
  );
}

.place-ribbon::after {
  left: calc(100% - 1px);
  clip-path: polygon(
    0 0,
    76% 0,
    44% 12.5%,
    84% 25%,
    44% 37.5%,
    84% 50%,
    44% 62.5%,
    84% 75%,
    44% 87.5%,
    76% 100%,
    0 100%
  );
}

.brand-mark {
  display: block;
  border-radius: 999px;
  background: var(--panel-strong);
}

.global-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(20px, 4vw, 60px) 14px 20px;
  /* iOSのステータスバー領域(theme-color #fff)と境目が出ないよう完全な白に揃える。
     ステータスバーは仕様上「透過」にできないため、追従ヘッダー側を不透明白にして一致させる。 */
  background: var(--surface);
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.4s ease;
  pointer-events: none;
}

.global-nav.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: auto;
  height: 34px;
}

.nav-toggle {
  display: none;
  position: relative;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  position: absolute;
  left: 8px;
  right: 8px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav-toggle span:nth-child(1) { top: 13px; }
.nav-toggle span:nth-child(2) { top: 19px; }
.nav-toggle span:nth-child(3) { top: 25px; }

.global-nav.menu-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.global-nav.menu-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.global-nav.menu-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-items {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 40px);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-items a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  color: var(--ink);
  text-decoration: none;
}

.nav-items .en {
  color: var(--green);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.nav-items .jp {
  font-size: 14px;
  font-weight: 800;
}

.section {
  padding: clamp(58px, 8vw, 100px) clamp(20px, 5vw, 72px);
  background: var(--surface);
}

.enjoy-section {
  --tab-color: #d75d3f;
  --tab-section-bg: rgba(246, 228, 213, 0.9);
  --tab-sticky-bg: #f6e4d5;
  --tab-pill-bg: #f0d8c4;
  background: var(--tab-section-bg);
}

.enjoy-section[data-active="play"] {
  --tab-color: #e72f82;
  --tab-section-bg: rgba(252, 222, 235, 0.9);
  --tab-sticky-bg: #fcdce8;
  --tab-pill-bg: #f9d3e1;
}

.enjoy-section[data-active="gather"] {
  --tab-color: #009de1;
  --tab-section-bg: rgba(217, 238, 250, 0.9);
  --tab-sticky-bg: #d9eef9;
  --tab-pill-bg: #c4e2f1;
}

.enjoy-sticky {
  position: sticky;
  top: var(--nav-h);
  z-index: 5;
  margin-inline: calc(-1 * clamp(20px, 5vw, 72px));
  margin-top: calc(-1 * clamp(58px, 8vw, 100px));
  margin-bottom: 24px;
  padding: clamp(44px, 5vw, 72px) clamp(20px, 5vw, 72px) 18px;
  background: transparent;
}

.enjoy-sticky .section-heading {
  margin-bottom: 18px;
}

.enjoy-sticky .tab-list {
  margin-bottom: 0;
}

.news-section {
  background: rgba(255, 255, 255, 0.85);
}

.guide-section {
  background: #6aa549;
  color: #fff;
  padding-bottom: 0;
}

.guide-stage-wrap {
  position: relative;
  height: 400vh;
  margin-top: calc(-1 * clamp(58px, 8vw, 100px));
  margin-inline: calc(-1 * clamp(20px, 5vw, 72px));
}

.guide-fixed {
  position: sticky;
  top: var(--nav-h);
  height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 3vh, 40px) clamp(20px, 5vw, 72px);
  background: #6aa549;
  transition: background-color 0.6s ease;
  overflow: hidden;
}

.guide-content {
  width: min(640px, 100%);
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 4.5vh, 56px);
  color: #fff;
  text-align: center;
}

.guide-section { --stage-accent: #6aa549; }
.guide-section[data-stage="01"] { --stage-accent: #e6332a; }
.guide-section[data-stage="02"] { --stage-accent: #f39800; }
.guide-section[data-stage="03"] { --stage-accent: #e72f82; }

.guide-section[data-stage="01"] .guide-fixed { background: #e6332a; }
.guide-section[data-stage="02"] .guide-fixed { background: #f39800; }
.guide-section[data-stage="03"] .guide-fixed { background: #e72f82; }

.guide-master {
  text-align: center;
}

.guide-subheads {
  position: relative;
  min-height: 32px;
  text-align: center;
}

.guide-subheads h3 {
  position: absolute;
  inset: 0;
  margin: 0;
  font-size: 22px;
  line-height: 1.3;
  font-weight: 800;
  color: #fff;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.guide-section[data-stage="intro"] .guide-subheads h3[data-head="intro"],
.guide-section[data-stage="01"] .guide-subheads h3[data-head="concepts"],
.guide-section[data-stage="02"] .guide-subheads h3[data-head="concepts"],
.guide-section[data-stage="03"] .guide-subheads h3[data-head="concepts"] {
  opacity: 1;
}

.guide-master p {
  margin: 0 0 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.guide-master h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.35;
  color: #fff;
  font-weight: 800;
}

.guide-stages {
  position: relative;
  min-height: clamp(280px, 50vh, 420px);
}

.guide-stage {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3vh, 36px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  color: #fff;
}

.guide-stage.is-active {
  opacity: 1;
  pointer-events: auto;
}

.guide-stage h4 {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  text-align: center;
  color: #fff;
}

.guide-stage .num-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.guide-stage .num {
  display: block;
  text-align: center;
  font-size: 36px;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1.1;
  color: #fff;
}

.guide-stage > p {
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.92);
}

.guide-stage[data-stage="intro"] > p {
  text-align: left;
}

.photo-carousel {
  width: 100%;
  overflow: hidden;
}

.photo-carousel-track {
  display: flex;
  gap: 12px;
  width: max-content;
  will-change: transform;
}

.photo-item {
  flex: 0 0 auto;
  width: clamp(180px, 26vw, 280px);
  aspect-ratio: 4 / 3;
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 10px;
  overflow: hidden;
  cursor: zoom-in;
  transition: transform 0.2s ease;
}

.photo-item:hover,
.photo-item:focus-visible {
  transform: scale(1.02);
}

.photo-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 5vw, 60px);
  background: rgba(0, 0, 0, 0.88);
  cursor: zoom-out;
  animation: modal-fade-in 0.22s ease-out both;
}

.photo-modal[hidden] {
  display: none;
}

.photo-modal-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
  animation: modal-img-pop 0.32s cubic-bezier(0.34, 1.4, 0.64, 1) both;
}

@keyframes modal-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes modal-img-pop {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.photo-modal-close {
  position: absolute;
  top: clamp(14px, 2vh, 24px);
  right: clamp(14px, 2vw, 28px);
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.photo-modal-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.guide-stage .example-box {
  margin: 0;
  padding: 18px 20px;
  border: 0;
  background: #fff;
  text-align: left;
  border-radius: 4px;
}

.guide-stage .example-box p {
  margin: 0 0 6px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.7;
  color: var(--stage-accent);
}

.guide-stage .example-box p:last-child {
  margin-bottom: 0;
}

/* リストの後ろに置いた段落(「など」等)に上余白を付け、例えば...下と同じ間隔にする */
.guide-stage .example-box ul + p {
  margin-top: 6px;
}

.guide-stage .example-box ul {
  margin: 0;
  padding-left: 1.2em;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.7;
  color: var(--stage-accent);
}

/* コンセプト内の2つ目以降のexample-box(利用申請・手続き等の補足)は
   白箱をやめ、説明文(.guide-stage > p)と同じ体裁(中央・通常ウェイト・14px・
   白0.92)で色帯の上にそのまま表示する */
.guide-stage .example-box ~ .example-box {
  background: transparent;
  padding: 0;
  text-align: center;
}

.guide-stage .example-box ~ .example-box p,
.guide-stage .example-box ~ .example-box ul {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.92);
}


.guide-section .text-column p {
  color: rgba(255, 255, 255, 0.92);
}

.guide-section .photo-row div {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.72);
}

.guide-section .pdf-links a {
  background: #fff;
  color: var(--stage-accent);
  border-color: transparent;
  border-radius: 4px;
  font-weight: 600;
}

.guide-section .pdf-links a::before,
.guide-section .pdf-links a::after {
  color: var(--stage-accent);
}

.contact-section {
  background: rgba(255, 255, 255, 0.85);
}

.access-section {
  background: #f7f7f7;
}

.section-heading {
  width: min(var(--max), 100%);
  margin: 0 auto 32px;
  text-align: center;
}

.section-heading p {
  margin: 0 0 1px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.35;
  letter-spacing: 0;
}

.tabs,
.tab-panels,
.news-list,
.text-column,
.photo-row,
.pdf-links,
.access-section address,
.access-section .access-address,
.map-placeholder,
.access-table,
.contact-form {
  width: min(var(--max), 100%);
  margin-inline: auto;
}

.tab-list {
  display: flex;
  width: min(640px, 100%);
  margin: 0 auto 28px;
  padding: 6px;
  background: var(--tab-pill-bg);
  border: 0;
  border-radius: 999px;
}

.tab {
  flex: 1 1 0;
  min-width: 0;
  min-height: 46px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition:
    flex-grow 0.45s cubic-bezier(0.34, 1.45, 0.64, 1),
    background-color 0.3s ease,
    color 0.3s ease;
}

.tab.is-active {
  flex-grow: 2;
  background: var(--tab-color);
  color: #fff;
}

.tab-panel {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.tab-panel h3 {
  margin: 0 0 16px;
  font-size: 20px;
  line-height: 1.55;
  letter-spacing: 0;
  color: var(--tab-color);
}

.tab-panel > p {
  margin: 0 auto 22px;
  color: #333333;
  font-size: 15px;
  font-weight: 600;
  line-height: 2;
}

.instagram-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 28px;
  border: 0;
  border-radius: 14px;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 14px rgba(220, 39, 67, 0.25);
}

.instagram-icon:hover,
.instagram-icon:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(220, 39, 67, 0.35);
}

.instagram-icon img {
  display: block;
  width: 56px;
  height: 56px;
}

.content-box,
.content-stack section {
  background: var(--surface);
  border: 0;
  border-radius: 12px;
}

.content-box {
  width: min(640px, 100%);
  margin: 0 auto 22px;
  padding: 24px;
}

.content-box h4,
.content-stack h4 {
  margin: 0 0 12px;
  font-size: 16px;
  color: var(--tab-color);
}

.content-box ul {
  display: inline-grid;
  gap: 5px;
  margin: 0;
  padding-left: 1.2em;
  text-align: left;
  font-size: 14px;
}

/* 見出し(h4=16px)以外の本文・箇条書きは14pxに統一 */
.content-box p {
  font-size: 14px;
}

.content-stack,
.content-stack > .wp-block-group__inner-container {
  display: grid;
  gap: 14px;
  margin-bottom: 22px;
}

.content-stack > .wp-block-group__inner-container {
  margin-bottom: 0;
}

.content-stack section,
.content-stack > .wp-block-group__inner-container > section {
  padding: 18px 22px;
  text-align: left;
}

.content-stack section > .wp-block-group__inner-container > * {
  margin: 0;
}

.content-stack section > .wp-block-group__inner-container > * + * {
  margin-top: 6px;
}

.content-stack p {
  margin: 0;
  color: #444444;
  font-size: 14px;
  line-height: 1.8;
}

.note {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.pickup-card {
  width: min(480px, 100%);
  margin: 0 auto;
  background: var(--surface);
  text-align: left;
}

.pickup-thumb {
  aspect-ratio: 16 / 9;
  background: var(--panel);
}

.pickup-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pickup-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px 18px 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.pickup-meta span {
  display: inline-grid;
  min-height: 28px;
  place-items: center;
  padding-inline: 10px;
  border-radius: 999px;
  background: var(--panel);
  color: var(--ink);
}

.pickup-card[data-category="eat"]    .pickup-meta span { background: #fbe1d3; color: #b94a2c; }
.pickup-card[data-category="play"]   .pickup-meta span { background: #fcdce8; color: #c61f6c; }
.pickup-card[data-category="gather"] .pickup-meta span { background: #d6ecf9; color: #007fb5; }
.pickup-card[data-category="info"]   .pickup-meta span { background: #dfeee4; color: #3c6e4d; }
.pickup-card[data-category="other"]  .pickup-meta span { background: #e5e5e5; color: #555; }

.pickup-card a {
  display: block;
  padding: 0 18px 16px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.7;
  text-decoration: none;
}

.filter-row {
  width: min(640px, 100%);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
  margin: 0 auto 28px;
}

.filter-row button {
  min-height: 40px;
  padding: 0 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.filter-row button[data-filter="all"].is-active   { background: var(--ink); border-color: var(--ink); color: #fff; }
.filter-row button[data-filter="eat"].is-active   { background: #fbe1d3;    border-color: #fbe1d3;    color: #b94a2c; }
.filter-row button[data-filter="play"].is-active  { background: #fcdce8;    border-color: #fcdce8;    color: #c61f6c; }
.filter-row button[data-filter="gather"].is-active{ background: #d6ecf9;    border-color: #d6ecf9;    color: #007fb5; }
.filter-row button[data-filter="info"].is-active  { background: #dfeee4;    border-color: #dfeee4;    color: #3c6e4d; }
.filter-row button[data-filter="other"].is-active { background: #e5e5e5;    border-color: #e5e5e5;    color: #555; }

.important-news {
  width: min(640px, 100%);
  min-height: 68px;
  display: grid;
  grid-template-columns: 28px 86px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  margin: 0 auto 12px;
  padding: 10px 16px;
  border: 3px solid #f39800;
  border-radius: 4px;
  background: var(--surface);
}

.important-news .alert-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  border: 0;
  color: inherit;
  font-family: "Noto Color Emoji", "Noto Emoji", sans-serif;
  font-size: 18px;
  line-height: 1;
}

.important-news time {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.important-news a {
  font-size: 14px;
  font-weight: 800;
  line-height: 1.6;
  text-decoration: none;
}

.news-list {
  display: grid;
  gap: 0;
  max-width: 760px;
  min-height: 360px;
  align-content: start;
}

.news-list article {
  display: grid;
  grid-template-columns: 90px 78px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.news-list article[hidden] {
  display: none;
}

.news-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 280px;
  min-height: 48px;
  margin: 24px auto 0;
  padding: 0 44px;
  background: #429b51;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.news-cta::after {
  content: "→";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 800;
}

.news-cta:hover,
.news-cta:focus-visible {
  background: var(--green);
  transform: translateY(-1px);
}

.news-section {
  text-align: center;
}

.news-section .news-list,
.news-section .filter-row,
.news-section .important-news {
  text-align: left;
}

.news-list time,
.news-list span {
  font-size: 12px;
  font-weight: 800;
}

.news-list time {
  color: var(--muted);
}

.news-list span {
  display: inline-grid;
  min-height: 28px;
  place-items: center;
  padding-inline: 10px;
  border-radius: 999px;
  background: var(--panel);
  color: var(--ink);
}

.news-list article[data-category="eat"]    span { background: #fbe1d3; color: #b94a2c; }
.news-list article[data-category="play"]   span { background: #fcdce8; color: #c61f6c; }
.news-list article[data-category="gather"] span { background: #d6ecf9; color: #007fb5; }
.news-list article[data-category="info"]   span { background: #dfeee4; color: #3c6e4d; }
.news-list article[data-category="other"]  span { background: #e5e5e5; color: #555; }

.news-list a {
  font-size: 14px;
  font-weight: 800;
  line-height: 1.7;
  text-decoration: none;
}

.text-column {
  max-width: 720px;
  text-align: center;
}

.text-column h3 {
  margin: 0 0 18px;
  font-size: 22px;
  line-height: 1.5;
  letter-spacing: 0;
}

.text-column p {
  margin: 0 0 18px;
  color: #333333;
  font-size: 15px;
  line-height: 2;
  text-align: left;
}

.photo-row {
  max-width: 720px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 30px;
}

.photo-row div {
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  background: var(--panel);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}


.example-box {
  margin-top: 14px;
  padding: 16px 18px;
  border: 1px solid var(--ink);
  text-align: left;
}

.example-box + .example-box {
  margin-top: 10px;
}

.example-box p {
  margin: 0 0 8px;
  font-size: 13px;
  line-height: 1.8;
}

.example-box p:last-child {
  margin-bottom: 0;
}

.example-box ul {
  display: grid;
  gap: 4px;
  margin: 0;
  padding-left: 1.1em;
  color: #333333;
  font-size: 13px;
  line-height: 1.75;
}

.pdf-links {
  max-width: 400px;
  display: grid;
  gap: 8px;
  margin-top: 32px;
}

/* 部品ページ(Gutenberg)のリストで書かれてもカードが縦並びになるよう両対応 */
.pdf-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.pdf-links li {
  margin: 0;
}

.pdf-links a {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.pdf-links a::before {
  content: "PDF";
  margin-right: 12px;
  color: var(--muted);
  font-size: 11px;
}

.pdf-links a::after {
  content: "📄";
  color: var(--muted);
  font-family: "Noto Color Emoji", "Noto Emoji", sans-serif;
  font-size: 14px;
  line-height: 1;
}

.access-section address,
.access-section .access-address {
  display: block;
  max-width: 720px;
  margin-bottom: 28px;
  color: #333333;
  font-style: normal;
  font-weight: 600;
  line-height: 1.8;
  text-align: center;
}

.map-placeholder {
  width: 100vw;
  max-width: none;
  margin-inline: calc(50% - 50vw);
  margin-bottom: 36px;
  height: 420px;
  background: var(--panel-strong);
  overflow: hidden;
}

.map-placeholder iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.access-table {
  max-width: 720px;
  display: grid;
  border-top: 1px solid var(--line);
}

.access-table div {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.access-table dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.access-table dd {
  margin: 0;
  color: #333333;
  font-size: 14px;
  line-height: 1.8;
}

.access-table strong {
  display: block;
  margin: 18px 0 2px;
  color: var(--ink);
  font-size: 13px;
}

.access-table dd > strong:first-child {
  margin-top: 0;
}

.contact-form {
  max-width: 640px;
  display: grid;
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form span {
  font-size: 13px;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  font-size: 15px;
}

.contact-form input {
  min-height: 48px;
  padding: 0 14px;
}

.contact-form textarea {
  resize: vertical;
  padding: 14px;
}

.contact-form button {
  min-height: 50px;
  border: 0;
  background: #429b51;
  color: var(--surface);
  font-weight: 800;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.contact-form button:hover,
.contact-form button:focus-visible {
  background: var(--green);
}

/* Contact Form 7 の出力を既存の .contact-form 見た目に馴染ませる */
.contact-form .wpcf7-form-control-wrap {
  display: block;
}
.contact-form input[type="submit"] {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 0;
  background: #429b51;
  color: var(--surface);
  font-weight: 800;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.contact-form input[type="submit"]:hover,
.contact-form input[type="submit"]:focus-visible {
  background: var(--green);
}
/* ローディングスピナーは待機中は場所を取らず、送信中(submitting)だけ表示 */
.contact-form .wpcf7-spinner {
  display: none;
}
.contact-form .wpcf7-form.submitting .wpcf7-spinner {
  display: block;
  margin: 8px auto 0;
}
.contact-form .wpcf7-response-output {
  margin: 4px 0 0;
  padding: 12px 14px;
  border-width: 1px;
  font-size: 13px;
  text-align: center;
}
/* 送信メッセージ枠は空のとき(初期表示)は場所を取らない＝ボタン下に余白を作らない */
.contact-form .wpcf7-response-output:empty {
  display: none;
}
.contact-form .wpcf7-not-valid-tip {
  font-size: 12px;
  font-weight: 600;
}
/* Cloudflare Turnstile（非表示モード）利用の開示文。送信ボタン下に控えめに表示。
   非表示モードは画面に何も出ないため、規約上プライバシー付録を参照する必要がある。 */
/* 開示文は部品ページでフォームショートコードの後ろ＝.wpcf7 の兄弟 <p> として
   出力されるため、.contact-section .wpcf7 ~ p(0,2,1) に上書きされる。
   それを上回る詳細度(0,3,1)で指定して font-size:10px 等を確実に効かせる。 */
.contact-privacy-note,
.contact-section .wpcf7 ~ p.contact-privacy-note {
  margin-top: 10px;
  font-size: 10px;
  line-height: 1.6;
  color: #888;
  text-align: center;
}
.contact-privacy-note a,
.contact-section .wpcf7 ~ p.contact-privacy-note a {
  color: #888;
  text-decoration: underline;
}

/* CONTACT: フォーム下の注意書き(部品ページの段落)をフォーム幅に揃え、
   送信ボタンの直下に自然に配置する */
.contact-section .wpcf7 {
  margin-bottom: 0;
}
.contact-section .wpcf7 ~ p {
  max-width: 640px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
  text-align: left;
}
/* リンクだけの段落(個人情報保護方針 等)は中央揃え */
.contact-section .wpcf7 ~ p:has(a) {
  text-align: center;
}

.footer {
  position: relative;
  z-index: 2;
  padding: 40px 20px 32px;
  background: #6aa549;
  color: #fff;
  text-align: center;
}

/* .footer-links は既定マークアップ、.footer ul は部品ページ(Gutenberg)の
   リストにも同じ見た目を当てるため両対応にしている。 */
.footer-links,
.footer ul {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-links li,
.footer ul li {
  font-size: 14px;
  font-weight: 400;
}

.footer-links a,
.footer a {
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

/* コピーライト：既定は <small>、部品ページでは段落で書かれる想定 */
.footer small,
.footer p {
  margin: 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.02em;
}

@media (max-width: 820px) {
  :root {
    --nav-h: 48px;
  }

  /* 見出しはスマホで少し小さく */
  .section-heading h2 {
    font-size: 20px;
  }
  .guide-master h2 {
    font-size: 20px;
  }
  .tab-panel h3 {
    font-size: 18px;
  }

  /* 公園での過ごし方(enjoy)：スマホでは sticky をやめる。
     sticky の合成レイヤー＋色付きセクション背景が iOS で残像化する(GUIDEと同種)
     ため、通常フローに戻す。タブ切替機能はクリック制御なので影響なし。 */
  .enjoy-sticky {
    position: static;
    margin-top: 0;
    margin-inline: 0;
    padding: 0 0 18px;
  }

  /* GUIDE：スマホでは固定スクロール演出(sticky/400vh)をやめ、
     intro＋3コンセプトを普通に縦並び表示する（iOSのsticky描画バグ回避）。 */
  .guide-stage-wrap {
    height: auto;
    margin-top: 0;
    margin-inline: 0;
  }
  .guide-fixed {
    position: static;
    height: auto;
    display: block;
    overflow: visible;
    padding: 0;
    background: transparent;
    transition: none;
  }
  .guide-content {
    width: 100%;
    gap: clamp(32px, 8vw, 48px);
  }
  .guide-subheads {
    display: none;
  }
  .guide-stages {
    position: static;
    min-height: 0;
    display: flex;
    flex-direction: column;
    /* 色帯どうしは密着させ、間に緑地を出さない（間隔は各帯の内側padで作る） */
    gap: 0;
  }
  .guide-stage {
    position: static;
    inset: auto;
    opacity: 1;
    pointer-events: auto;
    transition: none;
  }
  /* intro（緑地の紹介文＋写真）の下に余白を入れ、写真と赤帯を密着させない */
  .guide-stage[data-stage="intro"] {
    padding-bottom: clamp(48px, 12vw, 80px);
  }
  /* 3コンセプトは全幅の色帯にして周囲の緑を無くす。
     各カードに自分のアクセント色を持たせ、白枠(example-box)内の文字色も
     その色に揃える（var(--stage-accent) はJS停止で緑固定になるため明示）。 */
  .guide-stage[data-stage="01"],
  .guide-stage[data-stage="02"],
  .guide-stage[data-stage="03"] {
    width: 100vw;
    margin-inline: calc(50% - 50vw);
    /* 各色帯の上下に十分な余白を持たせて背を高くする（帯間の緑は出さない） */
    padding: clamp(56px, 15vw, 96px) clamp(20px, 5vw, 28px);
    border-radius: 0;
  }
  .guide-stage[data-stage="01"] { background: #e6332a; --stage-accent: #e6332a; }
  .guide-stage[data-stage="02"] { background: #f39800; --stage-accent: #f39800; }
  .guide-stage[data-stage="03"] { background: #e72f82; --stage-accent: #e72f82; }
  /* スクロールで表示される時、背景(色帯)はそのままに中身をふわっと出す。
     .reveal はJSが付与（JS無効時は中身が常時表示で崩れない）。 */
  .guide-stage.reveal > * {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .guide-stage.reveal.in-view > * {
    opacity: 1;
    transform: none;
  }
  /* カルーセルはスワイプ式の横スクロールに（JSの自動送りは停止）。
     全幅化し左だけ本文と同じインセットを付与＝左は本文揃え／右は画面端まで流して
     写真が見切れ、スワイプできそうな見た目にする。 */
  .photo-carousel {
    width: 100vw;
    margin-inline: calc(50% - 50vw);
    padding-left: clamp(20px, 5vw, 72px);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .photo-carousel::-webkit-scrollbar {
    display: none;
  }
  .photo-carousel-track {
    transform: none !important;
  }

  /* モバイルはヘッダーが低いのでアンカージャンプの余白も縮める */
  html {
    scroll-padding-top: 60px;
  }

  .global-nav {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .brand-logo {
    height: 22px;
  }

  .nav-toggle {
    display: block;
    z-index: 2;
    width: 32px;
    height: 32px;
  }

  .nav-toggle span {
    left: 5px;
    right: 5px;
  }

  .nav-toggle span:nth-child(1) { top: 10px; }
  .nav-toggle span:nth-child(2) { top: 15px; }
  .nav-toggle span:nth-child(3) { top: 20px; }

  .global-nav.menu-open .nav-toggle span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
  }

  .global-nav.menu-open .nav-toggle span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
  }

  .nav-items {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 6px 0 10px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(6px);
    border-top: 1px solid var(--line);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .global-nav.menu-open .nav-items {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-items a {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px clamp(20px, 5vw, 32px);
  }

  .nav-items li + li a {
    border-top: 1px solid var(--line);
  }

  .nav-items .jp {
    order: -1;
    font-size: 16px;
    font-weight: 800;
  }

  .nav-items .en {
    font-size: 9px;
    letter-spacing: 0.16em;
  }

  /* お知らせ：日付とカテゴリを1行目に横並び、タイトルを2行目に全幅で表示 */
  .news-list article {
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "date cat"
      "title title";
    column-gap: 10px;
    row-gap: 8px;
  }
  .news-list article time { grid-area: date; }
  .news-list article span { grid-area: cat; justify-self: start; }
  .news-list article a    { grid-area: title; }

  .important-news {
    grid-template-columns: 28px minmax(0, 1fr);
  }

  .important-news time {
    grid-column: 2;
  }

  .important-news a {
    grid-column: 2;
  }

  .news-list span {
    width: fit-content;
  }
}

@media (max-width: 720px) {
  .hero {
    /* スマホはマップの高さ＝heroにして下の緑余白を無くす。
       これで logo-cloud(top:50%) がマップ中央(白い雲)に正しく乗る。 */
    min-height: 0;
  }

  main {
    /* マップ直下からコンテンツを始める（緑だけの余白を出さない）。
       hero は sticky のままなのでせり上がりは維持。 */
    padding-top: 0;
  }

  .park-map {
    /* フロー内に置いて hero の高さをマップ自身で決める（全体表示・上端）。
       relative にして ::before(背景) より前面に描画（static だと背景に隠れる）。 */
    position: relative;
    top: 0;
    left: 0;
    width: 100vw;
    height: auto;
    transform: none;
  }

  .logo-cloud {
    width: 60vw;
    min-width: 0;
  }

  .logo-top {
    width: 68%;
    margin-bottom: 10px;
  }

  .logo-bottom {
    width: 96%;
    margin-bottom: 16px;
  }

  .place-ribbon {
    min-width: 70%;
    padding: 10px 18px 12px;
  }
}

@media (max-width: 560px) {
  .section {
    padding: 50px 16px;
  }

  /* カルーセル左インセットを縮小したセクション余白(16px)に合わせる */
  .photo-carousel {
    padding-left: 16px;
  }

  .access-table div {
    grid-template-columns: 1fr;
  }

  .photo-row {
    gap: 6px;
  }

  .photo-row div {
    font-size: 10px;
  }

  .tab {
    min-height: 46px;
    padding: 0 8px;
    font-size: 15px;
  }

  .filter-row {
    display: flex;
    flex-wrap: nowrap;
    width: auto;
    margin-inline: -16px;
    padding-inline: 16px;
    gap: 8px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .filter-row::-webkit-scrollbar {
    display: none;
  }

  .filter-row button {
    flex: 0 0 auto;
    padding: 0 18px;
    scroll-snap-align: start;
  }
}

/* ============================================================
   サブページ (お知らせ一覧 / 詳細) — WordPress archive/single 想定
   ============================================================ */
.subpage {
  background: var(--surface);
}

.subpage .global-nav {
  position: sticky;
  transform: none;
  opacity: 1;
  pointer-events: auto;
  border-bottom: 1px solid var(--line);
}

.subpage-main {
  width: min(760px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px) clamp(20px, 5vw, 40px) clamp(56px, 8vw, 96px);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: clamp(24px, 4vw, 40px);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.breadcrumb-foot {
  margin-top: clamp(36px, 5vw, 52px);
  margin-bottom: 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.breadcrumb a {
  color: var(--green);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span[aria-hidden] {
  color: var(--line);
}

/* --- 一覧 (archive) --- */
.archive-heading {
  margin-bottom: 28px;
}

.archive .filter-row {
  margin-bottom: 8px;
}

.archive .news-list {
  max-width: none;
  min-height: 0;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}

.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.pagination a:hover {
  background: #f2f2f2;
}

.pagination .is-current {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.pagination-next {
  gap: 4px;
}

/* --- 詳細 (single / Gutenberg 本文) --- */
.article-head {
  margin-bottom: 24px;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.article-meta time {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.article-cat {
  display: inline-grid;
  min-height: 28px;
  place-items: center;
  padding-inline: 12px;
  border-radius: 999px;
  background: var(--panel);
  font-size: 12px;
  font-weight: 800;
}

.article-cat[data-category="eat"]    { background: #fbe1d3; color: #b94a2c; }
.article-cat[data-category="play"]   { background: #fcdce8; color: #c61f6c; }
.article-cat[data-category="gather"] { background: #d6ecf9; color: #007fb5; }
.article-cat[data-category="info"]   { background: #dfeee4; color: #3c6e4d; }
.article-cat[data-category="other"]  { background: #e5e5e5; color: #555; }

.article-title {
  margin: 0;
  font-size: clamp(22px, 4vw, 32px);
  line-height: 1.45;
  font-weight: 800;
  letter-spacing: 0;
}

.article-hero {
  margin: 0 0 32px;
}

.article-hero img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Gutenberg 本文 */
.article-body {
  font-size: 15px;
  line-height: 2;
  color: #333;
}

.article-body > * {
  margin-top: 0;
  margin-bottom: 0;
}

.article-body > * + * {
  margin-top: 1.6em;
}

.article-body h2 {
  margin: 2em 0 0.8em;
  padding-bottom: 0.4em;
  border-bottom: 2px solid var(--green);
  font-size: clamp(20px, 3vw, 26px);
  line-height: 1.4;
  font-weight: 800;
  color: var(--ink);
}

.article-body h3 {
  margin: 1.8em 0 0.6em;
  padding-left: 12px;
  border-left: 4px solid var(--green);
  font-size: clamp(17px, 2.4vw, 21px);
  line-height: 1.5;
  font-weight: 800;
  color: var(--ink);
}

.article-body a {
  color: var(--green);
  font-weight: 700;
  text-underline-offset: 3px;
}

.article-body ul,
.article-body ol {
  padding-left: 1.4em;
}

.article-body li + li {
  margin-top: 0.4em;
}

.article-body blockquote {
  padding: 16px 20px;
  border-left: 4px solid var(--green);
  background: #f3f7f0;
  color: #444;
  font-style: normal;
}

.article-body blockquote p {
  margin: 0;
}

.article-body .wp-block-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.article-body .wp-block-image figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

/* メディアとテキスト（画像＋文章・左/右）：画像も他と同じ角丸に、
   文章カラム内の複数段落に余白を付けて崩れにくくする */
.article-body .wp-block-media-text__media img {
  border-radius: 8px;
}

.article-body .wp-block-media-text__content > * + * {
  margin-top: 1em;
}

.article-foot {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.back-to-list {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 48px;
  padding: 0 32px;
  background: #429b51;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.back-to-list:hover {
  background: var(--green);
}

/* キッチンカーのメニュー羅列(content-box内の段落) */
.content-box .menu-list {
  margin: 0;
  text-align: left;
  font-size: 14px;
  line-height: 1.95;
  color: #333;
}

/* コンセプト枠外の関連PDFリンク(guide-stage-wrapの後) */
.guide-links {
  --stage-accent: #6aa549;
  padding: clamp(48px, 8vw, 88px) clamp(20px, 5vw, 72px);
  background: #6aa549;
}

.guide-links .pdf-links {
  margin: 0 auto;
}

/* PDFリンク下の「広場利用にあたってのご注意」(部品ページ top-guide-notice) */
.guide-notice {
  max-width: 560px;
  margin: clamp(40px, 7vw, 64px) auto 0;
  color: rgba(255, 255, 255, 0.92);
  text-align: left;
  font-size: 13px;
  line-height: 1.9;
}

.guide-notice h2,
.guide-notice h3,
.guide-notice h4 {
  margin: 0 0 12px;
  text-align: center;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
}

.guide-notice p {
  margin: 0 0 12px;
}

.guide-notice ul {
  margin: 0;
  padding-left: 1.3em;
  display: grid;
  gap: 4px;
}

.guide-notice li {
  font-size: 13px;
}
