:root {
  --ink: #41524a;
  --muted: #708078;
  --cream: #fffaf0;
  --white: #ffffff;
  --green: #70aa78;
  --green-dark: #4e8460;
  --green-soft: #e8f4e9;
  --yellow: #f4c95d;
  --yellow-soft: #fff3c9;
  --orange: #ef9b69;
  --pink: #efaaa5;
  --blue: #86bfd1;
  --brown: #b17b58;
  --line: #e9e5d9;
  --shadow: 0 18px 50px rgba(91, 107, 93, .13);
  --radius-lg: 36px;
  --radius-md: 24px;
  --radius-sm: 16px;
  --container: 1160px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Zen Maru Gothic", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  line-height: 1.85;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
::selection { color: var(--ink); background: var(--yellow-soft); }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 9999;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  transform: translateY(-150%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 108px 0;
}

.section-head {
  display: grid;
  justify-items: center;
  gap: 8px;
  margin-bottom: 52px;
  text-align: center;
}

.section-head .en {
  color: var(--green);
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.section-head h2 {
  margin: 0;
  color: #3b4a43;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: clamp(2rem, 4.2vw, 3.25rem);
  line-height: 1.35;
  letter-spacing: .04em;
}

.section-head p {
  max-width: 690px;
  margin: 8px 0 0;
  color: var(--muted);
}

.leaf-mark {
  width: 48px;
  height: 14px;
  position: relative;
}
.leaf-mark::before, .leaf-mark::after {
  position: absolute;
  top: 2px;
  width: 20px;
  height: 10px;
  content: "";
  background: var(--green);
}
.leaf-mark::before { left: 3px; border-radius: 100% 0 100% 0; transform: rotate(-18deg); }
.leaf-mark::after { right: 3px; border-radius: 0 100% 0 100%; transform: rotate(18deg); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 26px;
  border: 0;
  border-radius: 999px;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  letter-spacing: .03em;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary {
  color: #fff;
  background: var(--green-dark);
  box-shadow: 0 10px 24px rgba(78, 132, 96, .25);
}
.btn-primary:hover { background: #406f50; }
.btn-secondary {
  color: #7d5b14;
  background: var(--yellow);
  box-shadow: 0 10px 24px rgba(210, 164, 49, .2);
}
.btn-white {
  color: var(--green-dark);
  background: #fff;
  box-shadow: 0 10px 24px rgba(78, 132, 96, .12);
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 250, 240, .84);
  border-bottom: 1px solid rgba(221, 218, 204, .7);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}
.brand .custom-logo { max-height: 52px; width: auto; }
.brand-mark {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50% 50% 44% 56%;
  background: var(--yellow-soft);
  transform: rotate(-4deg);
}
.brand-mark svg { width: 36px; transform: rotate(4deg); }
.brand-text { line-height: 1.2; }
.brand-text small {
  display: block;
  color: var(--green-dark);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
}
.brand-text strong {
  display: block;
  margin-top: 4px;
  color: #35483d;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 1.16rem;
  letter-spacing: .04em;
}

.global-nav { margin-left: auto; display: flex; align-items: center; gap: 24px; }
.nav-list {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-list a {
  position: relative;
  display: inline-block;
  padding: 8px 0;
  font-size: .88rem;
  font-weight: 700;
  white-space: nowrap;
}
.nav-list a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--green);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .2s ease;
}
.nav-list a:hover::after { transform: scaleX(1); }
.header-cta { min-height: 46px; padding: 0 20px; font-size: .86rem; }

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--green-soft);
  cursor: pointer;
}
.menu-lines { display: grid; gap: 5px; justify-items: center; }
.menu-lines span { width: 20px; height: 2px; border-radius: 99px; background: var(--green-dark); transition: .2s ease; }
.menu-button[aria-expanded="true"] .menu-lines span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-button[aria-expanded="true"] .menu-lines span:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] .menu-lines span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 790px;
  padding: 146px 0 88px;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 18%, rgba(244, 201, 93, .24) 0 130px, transparent 132px),
    radial-gradient(circle at 90% 20%, rgba(134, 191, 209, .18) 0 170px, transparent 172px),
    linear-gradient(180deg, #fffdf7 0%, #fff9ed 75%, var(--cream) 100%);
}

.hero::after {
  position: absolute;
  right: -10%;
  bottom: -270px;
  width: 720px;
  height: 520px;
  content: "";
  border-radius: 50%;
  background: #e9f3e4;
  transform: rotate(-8deg);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  align-items: center;
  gap: 48px;
}

.hero-copy { padding: 44px 0 20px; }
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  padding: 8px 15px;
  border-radius: 999px;
  color: var(--green-dark);
  background: #fff;
  box-shadow: 0 8px 24px rgba(90, 100, 90, .08);
  font-size: .86rem;
  font-weight: 700;
}
.hero-kicker::before { content: "●"; color: var(--yellow); font-size: .75rem; }

.hero h1 {
  margin: 0;
  color: #384a40;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: clamp(2.75rem, 6vw, 5.15rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: .03em;
}
.hero h1 .accent {
  position: relative;
  z-index: 1;
  display: inline-block;
  color: var(--green-dark);
}
.hero h1 .accent::after {
  position: absolute;
  z-index: -1;
  right: -4px;
  bottom: .13em;
  left: -4px;
  height: .28em;
  content: "";
  border-radius: 999px;
  background: rgba(244, 201, 93, .65);
}
.hero-lead {
  max-width: 560px;
  margin: 24px 0 0;
  color: #64736b;
  font-size: 1.05rem;
  font-weight: 500;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 28px;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 700;
}
.hero-mini span { display: inline-flex; align-items: center; gap: 7px; }
.hero-mini span::before { content: "✓"; display: grid; width: 21px; height: 21px; place-items: center; border-radius: 50%; color: #fff; background: var(--green); font-size: .7rem; }

.hero-visual {
  position: relative;
  min-height: 560px;
}

.hero-card {
  position: absolute;
  overflow: hidden;
  border: 10px solid #fff;
  background: #fff;
  box-shadow: var(--shadow);
}
.hero-card.main {
  top: 18px;
  right: 24px;
  width: min(100%, 520px);
  border-radius: 44% 56% 34% 66% / 48% 40% 60% 52%;
  transform: rotate(2deg);
}
.hero-card.sub {
  z-index: 2;
  bottom: 14px;
  left: 14px;
  width: 245px;
  border-radius: 44px;
  transform: rotate(-5deg);
}
.hero-card svg, .hero-card img { width: 100%; height: auto; }

.floating-badge {
  position: absolute;
  z-index: 3;
  display: grid;
  width: 128px;
  height: 128px;
  place-items: center;
  border: 8px solid #fff;
  border-radius: 50%;
  color: #735c25;
  background: var(--yellow-soft);
  box-shadow: 0 14px 28px rgba(110, 91, 40, .16);
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: .85rem;
  font-weight: 800;
  line-height: 1.45;
  text-align: center;
  transform: rotate(7deg);
}
.floating-badge strong { display: block; color: var(--orange); font-size: 1.5rem; }
.floating-badge.one { top: 20px; left: 10px; }

.doodle {
  position: absolute;
  z-index: 1;
  opacity: .78;
  pointer-events: none;
}
.doodle.sun { top: 94px; left: 5%; width: 68px; }
.doodle.cloud { top: 130px; right: 7%; width: 112px; }
.doodle.bird { top: 42%; left: 45%; width: 55px; }

.wave {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: -1px;
  left: 0;
  line-height: 0;
}
.wave svg { width: 100%; height: 70px; }

.about { background: #fff; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 76px;
}
.about-visual { position: relative; min-height: 530px; }
.about-shape {
  position: absolute;
  inset: 25px 30px 25px 0;
  overflow: hidden;
  border-radius: 58% 42% 46% 54% / 44% 55% 45% 56%;
  background: var(--green-soft);
}
.about-shape svg, .about-shape img { width: 100%; height: 100%; object-fit: cover; }
.about-small {
  position: absolute;
  right: 2px;
  bottom: 0;
  width: 215px;
  overflow: hidden;
  border: 9px solid #fff;
  border-radius: 34px;
  background: #fff;
  box-shadow: var(--shadow);
  transform: rotate(5deg);
}
.about-small svg, .about-small img { width: 100%; height: auto; display: block; }
.about-copy .section-head { justify-items: start; margin-bottom: 30px; text-align: left; }
.about-copy h3 {
  margin: 0 0 18px;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.45rem);
  line-height: 1.6;
}
.about-copy p { margin: 0 0 16px; color: var(--muted); }
.message-sign {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px dashed #d9d6c8;
}
.message-sign .avatar { display: grid; width: 58px; height: 58px; place-items: center; border-radius: 50%; background: var(--pink); font-size: 1.8rem; }
.message-sign small { display: block; color: var(--muted); }
.message-sign strong { font-family: "M PLUS Rounded 1c", sans-serif; }

.features {
  background: linear-gradient(180deg, #edf6ea 0%, #f5faef 100%);
}
.feature-list { display: grid; gap: 42px; }
.feature-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  min-height: 400px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow);
}
.feature-card:nth-child(even) .feature-media { order: 2; }
.feature-media { height: 100%; min-height: 400px; overflow: hidden; background: #f1efe5; }
.feature-media svg, .feature-media img { width: 100%; height: 100%; object-fit: cover; }
.feature-copy { padding: 54px 58px; }
.feature-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin-bottom: 22px;
  border-radius: 50% 45% 50% 42%;
  color: #fff;
  background: var(--green);
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 800;
  transform: rotate(-6deg);
}
.feature-number span { transform: rotate(6deg); }
.feature-copy h3 {
  margin: 0 0 16px;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: clamp(1.45rem, 2.5vw, 2.05rem);
  line-height: 1.5;
}
.feature-copy p { margin: 0; color: var(--muted); }
.feature-tags { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 24px; }
.feature-tags span { padding: 7px 12px; border-radius: 999px; color: var(--green-dark); background: var(--green-soft); font-size: .78rem; font-weight: 700; }

.daily { background: #fffaf0; }
.daily-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 58px; align-items: start; }
.daily-intro {
  position: sticky;
  top: 122px;
  padding: 38px;
  border-radius: 36px;
  background: #fff;
  box-shadow: var(--shadow);
}
.daily-intro h3 { margin: 0 0 14px; font-family: "M PLUS Rounded 1c", sans-serif; font-size: 1.75rem; }
.daily-intro p { margin: 0; color: var(--muted); }
.daily-illust { margin-top: 26px; overflow: hidden; border-radius: 26px; background: var(--yellow-soft); }
.daily-illust svg, .daily-illust img { width: 100%; height: auto; display: block; }

.timeline { position: relative; display: grid; gap: 17px; }
.timeline::before { position: absolute; top: 16px; bottom: 16px; left: 75px; width: 2px; content: ""; background: repeating-linear-gradient(to bottom, var(--green) 0 7px, transparent 7px 14px); }
.time-row {
  position: relative;
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 24px;
  align-items: center;
}
.time-label { font-family: "M PLUS Rounded 1c", sans-serif; font-size: .92rem; font-weight: 800; text-align: right; }
.time-content {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 86px;
  padding: 18px 24px;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(91, 107, 93, .08);
}
.time-content::before { position: absolute; top: 50%; left: -30px; width: 14px; height: 14px; content: ""; border: 4px solid #fffaf0; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 2px var(--green); transform: translateY(-50%); }
.time-icon { display: grid; flex: 0 0 auto; width: 50px; height: 50px; place-items: center; border-radius: 16px; background: var(--yellow-soft); font-size: 1.45rem; }
.time-content h4 { margin: 0; font-family: "M PLUS Rounded 1c", sans-serif; font-size: 1.03rem; }
.time-content p { margin: 3px 0 0; color: var(--muted); font-size: .86rem; line-height: 1.65; }

.events { background: #f7eee5; }
.season-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.season-card { position: relative; min-height: 325px; padding: 28px 24px; overflow: hidden; border-radius: 30px; background: #fff; box-shadow: 0 12px 32px rgba(119, 87, 68, .08); }
.season-card::after { position: absolute; right: -20px; bottom: -42px; width: 150px; height: 150px; content: ""; border-radius: 50%; opacity: .4; }
.season-card.spring::after { background: var(--pink); }
.season-card.summer::after { background: var(--blue); }
.season-card.autumn::after { background: var(--orange); }
.season-card.winter::after { background: #b8d2dd; }
.season-icon { font-size: 2.6rem; }
.season-card h3 { margin: 15px 0 8px; font-family: "M PLUS Rounded 1c", sans-serif; font-size: 1.35rem; }
.season-card ul { margin: 0; padding: 0; list-style: none; color: var(--muted); font-size: .9rem; }
.season-card li { position: relative; padding: 5px 0 5px 17px; }
.season-card li::before { position: absolute; top: 14px; left: 2px; width: 6px; height: 6px; content: ""; border-radius: 50%; background: var(--green); }

.news { background: #fff; }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.news-grid--archive { margin-bottom: 40px; }
.news-card { overflow: hidden; border: 1px solid var(--line); border-radius: 26px; background: #fff; transition: transform .2s ease, box-shadow .2s ease; }
.news-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.news-thumb { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--green-soft); }
.news-thumb svg, .news-thumb img { width: 100%; height: 100%; object-fit: cover; }
.news-thumb-fallback { display: grid; place-items: center; width: 100%; height: 100%; font-size: 2.6rem; background: var(--yellow-soft); }
.news-label { position: absolute; top: 14px; left: 14px; z-index: 1; padding: 6px 11px; border-radius: 999px; color: #fff; background: var(--green-dark); font-size: .72rem; font-weight: 700; }
.news-body { padding: 22px 22px 25px; }
.news-date { color: var(--muted); font-size: .78rem; }
.news-body h3 { margin: 8px 0 0; font-family: "M PLUS Rounded 1c", sans-serif; font-size: 1.03rem; line-height: 1.65; }
.news-empty { color: var(--muted); text-align: center; }
.news-more { display: flex; justify-content: center; margin-top: 44px; }
.news-pagination { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; }
.news-pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 42px; height: 42px; padding: 0 12px; border-radius: 999px;
  background: var(--green-soft); color: var(--green-dark); font-weight: 700; font-size: .88rem;
}
.news-pagination .page-numbers.current { background: var(--green-dark); color: #fff; }
.news-pagination .page-numbers.dots { background: transparent; }

.faq { background: #edf6ea; }
.faq-list { max-width: 900px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item { overflow: hidden; border-radius: 20px; background: #fff; box-shadow: 0 8px 24px rgba(91, 107, 93, .07); }
.faq-question {
  display: grid;
  width: 100%;
  grid-template-columns: 42px 1fr 36px;
  align-items: center;
  gap: 13px;
  padding: 22px 24px;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}
.faq-qmark, .faq-amark { display: grid; width: 37px; height: 37px; place-items: center; border-radius: 50%; font-family: "M PLUS Rounded 1c", sans-serif; font-weight: 800; }
.faq-qmark { color: #fff; background: var(--green); }
.faq-question strong { font-family: "M PLUS Rounded 1c", sans-serif; font-size: 1rem; }
.faq-toggle { position: relative; width: 30px; height: 30px; border-radius: 50%; background: var(--green-soft); }
.faq-toggle::before, .faq-toggle::after { position: absolute; top: 50%; left: 50%; width: 12px; height: 2px; content: ""; border-radius: 99px; background: var(--green-dark); transform: translate(-50%, -50%); transition: transform .2s ease; }
.faq-toggle::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-question[aria-expanded="true"] .faq-toggle::after { transform: translate(-50%, -50%) rotate(0deg); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .25s ease; }
.faq-answer > div { overflow: hidden; }
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-answer-inner { display: grid; grid-template-columns: 42px 1fr; gap: 13px; padding: 0 24px 24px; color: var(--muted); }
.faq-amark { color: #7b5d17; background: var(--yellow-soft); }
.faq-answer p { margin: 5px 0 0; }

.overview { background: #fff; }
.overview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 42px; align-items: stretch; }
.overview-card { padding: 40px; border-radius: 34px; background: var(--cream); }
.overview-card h3 { margin: 0 0 24px; font-family: "M PLUS Rounded 1c", sans-serif; font-size: 1.5rem; }
.overview-list { margin: 0; }
.overview-list div { display: grid; grid-template-columns: 110px 1fr; gap: 16px; padding: 16px 0; border-bottom: 1px dashed #d9d4c5; }
.overview-list div:first-child { padding-top: 0; }
.overview-list div:last-child { padding-bottom: 0; border-bottom: 0; }
.overview-list dt { font-weight: 700; }
.overview-list dd { margin: 0; color: var(--muted); }
.overview-list .map-link { display: inline-block; margin-top: 4px; color: var(--green-dark); font-weight: 700; }
.map-placeholder { position: relative; min-height: 100%; overflow: hidden; border-radius: 34px; background: #dcebdc; }
.map-placeholder svg { width: 100%; height: 100%; min-height: 490px; object-fit: cover; }
.map-placeholder iframe { width: 100%; height: 100%; min-height: 490px; display: block; }
.map-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  border: 7px solid #fff;
  border-radius: 50% 50% 50% 8%;
  color: #fff;
  background: var(--green-dark);
  box-shadow: var(--shadow);
  font-size: 1.6rem;
  transform: translate(-50%, -60%) rotate(-45deg);
}
.map-pin span { transform: rotate(45deg); }

.contact {
  overflow: hidden;
  color: #fff;
  background: var(--green-dark);
}
.contact::before, .contact::after { position: absolute; content: ""; border-radius: 50%; background: rgba(255,255,255,.07); }
.contact::before { top: -170px; left: -100px; width: 430px; height: 430px; }
.contact::after { right: -180px; bottom: -220px; width: 520px; height: 520px; }
.contact .section-head .en { color: var(--yellow); }
.contact .section-head h2, .contact .section-head p { color: #fff; }
.contact .leaf-mark::before, .contact .leaf-mark::after { background: var(--yellow); }
.contact-cards { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 22px; max-width: 900px; margin: 0 auto; }
.contact-card { padding: 34px; border: 1px solid rgba(255,255,255,.2); border-radius: 28px; background: rgba(255,255,255,.10); text-align: center; backdrop-filter: blur(8px); }
.contact-card .icon { font-size: 2.3rem; }
.contact-card h3 { margin: 12px 0 7px; font-family: "M PLUS Rounded 1c", sans-serif; font-size: 1.25rem; }
.contact-card p { margin: 0 0 18px; color: rgba(255,255,255,.78); font-size: .9rem; }
.contact-card .tel { display: block; margin-bottom: 18px; font-family: "M PLUS Rounded 1c", sans-serif; font-size: clamp(1.35rem, 3vw, 2rem); font-weight: 800; letter-spacing: .05em; }
.contact-note { margin-top: 24px; color: rgba(255,255,255,.72); font-size: .8rem; text-align: center; }

/* ─ お問い合わせ専用ページ（フォーム） ─ */
.page-contact-section { background: #fff; }
.page-contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 48px; align-items: start; }
.page-contact-info .contact-card {
  padding: 34px; border: 1px solid var(--line); border-radius: 28px; background: var(--cream);
  text-align: center; color: var(--ink);
}
.page-contact-info .contact-card p { color: var(--muted); }
.page-contact-content { margin-bottom: 24px; color: var(--muted); }
.contact-form {
  padding: 40px; border-radius: 36px; background: var(--cream); box-shadow: var(--shadow);
  display: grid; gap: 20px;
}
.form-row { display: grid; gap: 8px; }
.form-row label { font-weight: 700; font-size: .92rem; }
.form-row .req { padding: 2px 8px; border-radius: 999px; background: var(--orange); color: #fff; font-size: .7rem; font-weight: 700; }
.form-row input, .form-row select, .form-row textarea {
  padding: 14px 16px; border: 1px solid var(--line); border-radius: 14px; background: #fff; color: var(--ink);
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { outline: 2px solid var(--green); outline-offset: 1px; }
.form-row textarea { resize: vertical; min-height: 120px; }
.hp-field { position: absolute; opacity: 0; top: 0; left: 0; height: 0; width: 0; overflow: hidden; pointer-events: none; }
.form-privacy { font-size: .88rem; }
.privacy-label { display: flex; align-items: flex-start; gap: 10px; }
.privacy-label input { margin-top: 4px; }
.privacy-label a { color: var(--green-dark); font-weight: 700; text-decoration: underline; }
.btn-submit { width: 100%; }
.btn-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.form-status { margin: 0; font-size: .9rem; font-weight: 700; }
.form-status.is-success { color: var(--green-dark); }
.form-status.is-error { color: #c0503b; }

/* ─ 汎用固定ページ／プライバシーポリシー／単一投稿 ─ */
.page-content, .privacy-body { max-width: 820px; margin: 0 auto; color: var(--muted); }
.privacy-body h3 { margin: 32px 0 12px; color: var(--ink); font-family: "M PLUS Rounded 1c", sans-serif; }
.privacy-body p { margin: 0 0 14px; }
.privacy-note { margin-top: 32px; padding: 16px 20px; border-radius: 16px; background: var(--yellow-soft); color: #7d5b14; font-size: .85rem; }
.single-thumb { max-width: 820px; margin: 0 auto 32px; overflow: hidden; border-radius: 28px; }
.single-thumb img { width: 100%; height: auto; }
.single-back { max-width: 820px; margin: 40px auto 0; }

.site-footer { padding: 52px 0 28px; color: #68756e; background: #f5f0e6; }
.footer-top { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.footer-top .custom-logo { max-height: 46px; width: auto; }
.footer-nav-list { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px 24px; margin: 0; padding: 0; list-style: none; font-size: .83rem; font-weight: 700; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 34px; padding-top: 22px; border-top: 1px solid #ded9cc; font-size: .75rem; }

.back-to-top {
  position: fixed;
  z-index: 900;
  right: 18px;
  bottom: 18px;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--green-dark);
  box-shadow: 0 10px 25px rgba(70, 92, 77, .2);
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: .2s ease;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1050px) {
  .nav-list { gap: 15px; }
  .nav-list li:nth-child(5), .nav-list li:nth-child(6) { display: none; }
  .hero-grid { gap: 18px; }
  .feature-copy { padding: 44px; }
  .season-grid { grid-template-columns: repeat(2, 1fr); }
  .page-contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .section { padding: 82px 0; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .menu-button { display: grid; place-items: center; }
  .global-nav {
    position: fixed;
    z-index: 999;
    top: 82px;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    align-content: start;
    padding: 24px 20px 40px;
    background: rgba(255, 250, 240, .98);
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    transition: .2s ease;
  }
  .global-nav.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav-list { display: grid; gap: 0; }
  .nav-list li:nth-child(5), .nav-list li:nth-child(6) { display: block; }
  .nav-list a { display: block; padding: 16px 8px; border-bottom: 1px dashed #d8d4c7; font-size: 1rem; }
  .header-cta { margin-top: 22px; width: 100%; }

  .hero { min-height: auto; padding-top: 122px; }
  .hero-grid, .about-grid, .daily-grid, .overview-grid { grid-template-columns: 1fr; }
  .hero-copy { padding-top: 20px; text-align: center; }
  .hero-lead { margin-inline: auto; }
  .hero-actions, .hero-mini { justify-content: center; }
  .hero-visual { min-height: 510px; max-width: 620px; width: 100%; margin: 0 auto; }
  .floating-badge.one { top: 32px; left: 0; }
  .hero-card.main { right: 3%; width: 82%; }
  .hero-card.sub { bottom: 20px; left: 1%; width: 38%; }

  .about-grid { gap: 38px; }
  .about-copy { order: -1; }
  .about-copy .section-head { justify-items: center; text-align: center; }
  .about-visual { min-height: 500px; }

  .feature-card { grid-template-columns: 1fr; }
  .feature-card:nth-child(even) .feature-media { order: 0; }
  .feature-media { min-height: 300px; }
  .feature-copy { padding: 36px 30px 40px; }

  .daily-grid { gap: 36px; }
  .daily-intro { position: relative; top: auto; }
  .news-grid { grid-template-columns: 1fr; max-width: 630px; margin: 0 auto; }
  .contact-cards { grid-template-columns: 1fr; }
  .footer-top { align-items: flex-start; flex-direction: column; }
  .footer-nav-list { justify-content: flex-start; }
}

@media (max-width: 560px) {
  .header-inner { min-height: 72px; }
  .brand-mark { width: 45px; height: 45px; }
  .brand-text strong { font-size: 1rem; }
  .brand-text small { font-size: .6rem; }
  .global-nav { top: 72px; }
  .hero { padding-top: 104px; }
  .hero h1 { font-size: clamp(2.35rem, 12vw, 3.4rem); }
  .hero-lead { font-size: .96rem; }
  .hero-actions .btn { width: 100%; }
  .hero-mini { gap: 9px 14px; }
  .hero-visual { min-height: 390px; }
  .hero-card.main { top: 12px; right: 0; width: 88%; border-width: 7px; }
  .hero-card.sub { width: 43%; border-width: 6px; }
  .floating-badge { width: 95px; height: 95px; border-width: 5px; font-size: .67rem; }
  .floating-badge strong { font-size: 1.1rem; }
  .doodle.sun, .doodle.cloud { display: none; }

  .section-head { margin-bottom: 36px; }
  .about-visual { min-height: 380px; }
  .about-small { width: 150px; border-width: 6px; }
  .feature-media { min-height: 235px; }
  .feature-copy { padding: 30px 24px 34px; }
  .feature-number { width: 50px; height: 50px; }
  .daily-intro { padding: 28px; }
  .timeline::before { left: 54px; }
  .time-row { grid-template-columns: 55px 1fr; gap: 20px; }
  .time-content { gap: 12px; padding: 16px; }
  .time-content::before { left: -27px; }
  .time-icon { width: 43px; height: 43px; font-size: 1.15rem; }
  .season-grid { grid-template-columns: 1fr; }
  .season-card { min-height: 280px; }
  .faq-question { grid-template-columns: 36px 1fr 30px; padding: 18px 16px; }
  .faq-answer-inner { grid-template-columns: 36px 1fr; padding: 0 16px 20px; }
  .faq-qmark, .faq-amark { width: 34px; height: 34px; }
  .overview-card { padding: 28px 22px; }
  .overview-list div { grid-template-columns: 86px 1fr; font-size: .9rem; }
  .map-placeholder svg, .map-placeholder iframe { min-height: 360px; }
  .contact-card { padding: 28px 20px; }
  .footer-bottom { flex-direction: column; }
  .contact-form { padding: 28px 22px; }
}
