@charset "UTF-8";
/* ================================================
   そよかぜの丘パーク（架空サイト）
   ================================================ */

/* ---------- トークン ---------- */
:root {
  --min-width: 1300;
  --max-width: 1600;
  --fz: clamp(10px, calc(100vw / var(--min-width) * 10), calc(var(--max-width) / 1300 * 10px));
  font-size: var(--fz);

  --color-primary: #0b8388;
  --color-primary-dark: #066c70;
  --color-accent: #f0f300;
  --color-red: #f45562;
  --color-orange: #fa9d7b;
  --color-blue: #64b6f9;
  --color-yellow: #fec352;
  --color-text: #292929;
  --color-bg: #f5f5f5;
  --color-bg-warm: #f4f2ea;
}
@media (max-width: 767px) {
  :root { --fz: calc(100 / 375 * 10vw); }
}

/* ---------- リセット ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
img, svg { display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
em { font-style: normal; }

html { scroll-behavior: smooth; scroll-padding-top: 9rem; }
body {
  font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
  font-size: 1.5rem;
  line-height: 1.8;
  color: var(--color-text);
  background: #fff;
  overflow-x: hidden;
}
body.now-loading, body.nav-open { overflow: hidden; }
::selection { background: var(--color-accent); }

.svg-defs { position: absolute; width: 0; height: 0; overflow: hidden; }

/* ---------- 共通: ボタン ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 1.2rem;
  padding: 1.3rem 1.6rem 1.3rem 2.6rem;
  border: 2px solid var(--color-text); border-radius: 999px;
  background: #fff; color: var(--color-text);
  font-size: 1.4rem; font-weight: 700; line-height: 1;
  transition: background .3s, color .3s;
}
.btn__arrow {
  position: relative; width: 2.6rem; height: 2.6rem; border-radius: 50%;
  background: var(--color-text); flex-shrink: 0;
  transition: transform .3s, background .3s;
}
.btn__arrow::before {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: .7rem; height: .7rem;
  border-top: 2px solid #fff; border-right: 2px solid #fff;
  transform: translate(-65%, -50%) rotate(45deg);
  transition: border-color .3s;
}
.btn:hover { background: var(--color-text); color: #fff; }
.btn:hover .btn__arrow { background: var(--color-accent); transform: translateX(.5rem); }
.btn:hover .btn__arrow::before { border-color: var(--color-text); }

.btn--white { border-color: #fff; background: transparent; color: #fff; }
.btn--white .btn__arrow { background: #fff; }
.btn--white .btn__arrow::before { border-color: var(--color-text); }
.btn--white:hover { background: #fff; color: var(--color-text); }
.btn--white:hover .btn__arrow { background: var(--color-accent); }

.btn--ghost { background: transparent; }
.btn--ghost:hover { background: var(--color-text); }

/* ---------- 共通: 見出し ---------- */
.sec-head { position: relative; line-height: 1.1; }
.sec-head__en {
  display: block; font-family: "Jost", sans-serif; font-weight: 700;
  font-size: 6rem; letter-spacing: .03em;
}
.sec-head__ja {
  display: flex; align-items: center; gap: 1rem;
  margin-top: 1.2rem; font-size: 1.4rem; font-weight: 700; color: var(--color-primary);
}
.sec-head__ja::before { content: ""; width: 3rem; height: 2px; background: var(--color-primary); }
.sec-head__caveat {
  position: absolute; top: -2.2rem; right: -1rem;
  font-family: "Caveat", cursive; font-size: 3.2rem; color: var(--color-red);
  transform: rotate(-6deg);
}
.sec-head--center { text-align: center; }
.sec-head--center .sec-head__ja { justify-content: center; }
.sec-head--center .sec-head__caveat { right: auto; left: calc(50% + 14rem); }

/* ================================================
   ローディング
   ================================================ */
.loading {
  position: fixed; inset: 0; z-index: 9999;
  display: grid; place-items: center; background: #fff;
  transition: opacity .5s, visibility .5s;
}
.loading--off { opacity: 0; visibility: hidden; }
.loading__in { text-align: center; }
.loading__mark { width: 8rem; height: 8rem; margin: 0 auto; animation: spin 6s linear infinite; }
.loading__logo {
  margin-top: 2rem; font-family: "Jost", sans-serif; font-weight: 700;
  font-size: 2.4rem; line-height: 1.2; letter-spacing: .12em; color: var(--color-primary);
}
.loading__dots { display: flex; justify-content: center; gap: .8rem; margin-top: 2rem; }
.loading__dots span {
  width: 1rem; height: 1rem; border-radius: 50%; background: var(--color-primary);
  animation: dotbound 1s ease-in-out infinite;
}
.loading__dots span:nth-child(2) { animation-delay: .15s; background: var(--color-yellow); }
.loading__dots span:nth-child(3) { animation-delay: .3s; background: var(--color-red); }
@keyframes dotbound { 0%, 60%, 100% { transform: translateY(0); } 30% { transform: translateY(-1.2rem); } }
@keyframes spin { to { transform: rotate(360deg); } }

/* ================================================
   ヘッダー
   ================================================ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  height: 8rem; padding: 0 2.4rem;
  transition: background .3s, box-shadow .3s;
}
.header--scrolled { background: rgba(255, 255, 255, .92); box-shadow: 0 .2rem 1.6rem rgba(0, 0, 0, .08); backdrop-filter: blur(6px); }
.header__logo { display: flex; align-items: center; gap: 1.2rem; }
.header__mark { width: 4.4rem; height: 4.4rem; }
.header__name { font-size: 1.8rem; font-weight: 900; line-height: 1.2; }
.header__name small {
  display: block; font-family: "Jost", sans-serif; font-weight: 700;
  font-size: 1rem; letter-spacing: .16em; color: var(--color-primary);
}
.header__right { display: flex; align-items: center; gap: 1.6rem; }
.header__ticket {
  display: flex; align-items: center; gap: .8rem;
  padding: 1.2rem 2.2rem; border-radius: 999px;
  background: var(--color-accent); font-size: 1.4rem; font-weight: 900;
  box-shadow: 0 .3rem 0 rgba(0, 0, 0, .18);
  transition: transform .2s, box-shadow .2s;
}
.header__ticket svg { width: 2.2rem; height: 2.2rem; }
.header__ticket:hover { transform: translateY(.2rem); box-shadow: 0 .1rem 0 rgba(0, 0, 0, .18); }
.header__menu {
  position: relative; width: 5.6rem; height: 5.6rem; border-radius: 50%;
  background: #fff; box-shadow: 0 .2rem 1rem rgba(0, 0, 0, .12);
  display: grid; place-items: center;
}
.header__menu span {
  position: absolute; left: 50%; width: 2.2rem; height: 2px; border-radius: 2px;
  background: var(--color-primary); transform: translateX(-50%);
  transition: transform .3s, opacity .3s;
}
.header__menu span:nth-child(1) { top: 2.1rem; }
.header__menu span:nth-child(2) { top: 2.7rem; }
.header__menu span:nth-child(3) { top: 3.3rem; }
body.nav-open .header__menu span:nth-child(1) { transform: translateX(-50%) translateY(.6rem) rotate(45deg); }
body.nav-open .header__menu span:nth-child(2) { opacity: 0; }
body.nav-open .header__menu span:nth-child(3) { transform: translateX(-50%) translateY(-.6rem) rotate(-45deg); }

/* ================================================
   フルスクリーンナビ
   ================================================ */
.nav {
  position: fixed; inset: 0; z-index: 200;
  background: var(--color-primary);
  visibility: hidden; opacity: 0;
  transition: opacity .4s, visibility .4s;
  overflow-y: auto;
}
.nav--active { visibility: visible; opacity: 1; }
.nav__in {
  display: flex; gap: 6rem; align-items: center;
  min-height: 100%; padding: 10rem 8rem 6rem;
}
.nav__left { flex: 1; }
.nav-list__item a {
  display: flex; align-items: baseline; gap: 1.6rem;
  padding: .7rem 0; color: #fff;
}
.nav-list__item em {
  font-family: "Jost", sans-serif; font-weight: 700; font-size: 4.4rem; line-height: 1.2;
  transition: color .3s, transform .3s; display: inline-block;
}
.nav-list__item a:hover em { color: var(--color-accent); transform: translateX(.8rem); }
.nav-list__item a span, .nav-list__item a { font-size: 1.3rem; font-weight: 700; opacity: .95; }
.nav__bottom { display: flex; align-items: center; gap: 2.4rem; margin-top: 4rem; }
.nav__bnr {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.4rem 2.4rem; border-radius: 999px; background: #fff;
  font-size: 1.4rem; font-weight: 900; color: var(--color-text);
  transition: transform .2s;
}
.nav__bnr:hover { transform: translateY(-.3rem); }
.nav__bnr svg { width: 2.4rem; height: 2.4rem; }
.nav-sns { display: flex; gap: 1.2rem; }
.nav-sns a {
  display: grid; place-items: center; width: 4.4rem; height: 4.4rem;
  border: 2px solid rgba(255, 255, 255, .6); border-radius: 50%;
  color: #fff; font-family: "Jost", sans-serif; font-weight: 700; font-size: 1.2rem;
  transition: background .3s, color .3s;
}
.nav-sns a:hover { background: #fff; color: var(--color-primary); }
.nav__right { position: relative; width: 34rem; }
.nav__imgs { position: relative; width: 30rem; height: 30rem; }
.nav__img {
  position: absolute; inset: 0; display: grid; place-items: center;
  border-radius: 3rem; opacity: 0; transform: scale(.94) rotate(-2deg);
  transition: opacity .35s, transform .35s;
}
.nav__img svg { width: 14rem; height: 14rem; }
.nav__img--active { opacity: 1; transform: scale(1) rotate(0); }
.nav__img--c0 { background: #ffe9a8; }
.nav__img--c1 { background: #d5ecd9; }
.nav__img--c2 { background: #ffe3d4; }
.nav__img--c3 { background: #e8d9c4; }
.nav__img--c4 { background: #ffd9dd; }
.nav__img--c5 { background: #f7f8c9; }
.nav__img--c6 { background: #d9f1f0; }
.nav__img--c7 { background: #d8e9fb; }
.nav__caveat {
  margin-top: 2rem; text-align: center;
  font-family: "Caveat", cursive; font-size: 3rem; color: var(--color-accent);
  transform: rotate(-4deg);
}
.nav__close { position: absolute; top: 1.2rem; right: 1.2rem; width: 5.6rem; height: 5.6rem; }
.overlay { display: none; }

/* ================================================
   ヒーロー（コラージュ）
   ================================================ */
.hero {
  position: relative; height: 100vh; height: 100svh; min-height: 60rem;
  overflow: hidden; background: #cde9ee;
}
.hero__bg {
  position: absolute; inset: 0;
  background: url("../img/hero-bg.jpg") center bottom / cover no-repeat;
}
.hero__in { position: absolute; inset: 0; }
.hero__layer { position: absolute; inset: 0; will-change: transform; }
.hero__layer--04 { z-index: 1; }
.hero__layer--03 { z-index: 2; }
.hero__layer--02 { z-index: 3; }
.hero__layer--01 { z-index: 4; }

/* 巨大タイポ（編み目テクスチャ文字） */
.hero__en {
  position: absolute;
  font-family: "Jost", sans-serif; font-weight: 800; line-height: .92; letter-spacing: .01em;
  color: transparent;
  background-image: radial-gradient(rgba(255, 255, 255, .18) 1.1px, rgba(255, 255, 255, .98) 1.2px);
  background-size: 6px 6px;
  -webkit-background-clip: text; background-clip: text;
  filter: drop-shadow(0 .5rem 1.6rem rgba(6, 108, 112, .28));
}
.hero__en--1 { top: 13%; right: 30%; font-size: 15rem; }
.hero__en--2 { top: 32%; right: 33%; font-size: 16.5rem; }
.hero__en--3 { top: 51%; right: 8%; font-size: 16.5rem; }

/* 切り抜き写真 */
.hero__cut { position: absolute; height: auto; filter: drop-shadow(0 1rem 2.4rem rgba(6, 60, 64, .28)); }
.hero__cut--picnic { width: 77rem; left: 50%; bottom: -6%; transform: translateX(-52%); }
.hero__cut--zip { width: 34rem; right: 4%; top: 11%; transform-origin: 60% -30%; animation: swing 3.4s ease-in-out infinite; }
.hero__cut--child { width: 27rem; left: 16%; top: 35%; animation: bob 4.5s ease-in-out infinite alternate; }
.hero__cut--tent { width: 28rem; left: 1%; bottom: 6%; }
@keyframes swing { 0%, 100% { rotate: 2.5deg; } 50% { rotate: -2deg; } }
@keyframes bob { from { translate: 0 0; } to { translate: 0 -2rem; } }

/* デコレーション */
.hero__deco--moon { position: absolute; top: 6%; left: 6%; width: 11rem; height: 9rem; }
.hero__moonmark { width: 7.5rem; height: 7.5rem; }
.hero__star { position: absolute; width: 2rem; height: 2rem; }
.hero__star--1 { top: -0.6rem; right: 0; animation: twinkle 2.4s ease-in-out infinite; }
.hero__star--2 { bottom: 0; right: 1.6rem; width: 1.3rem; height: 1.3rem; animation: twinkle 3.1s ease-in-out infinite .6s; }
@keyframes twinkle { 0%, 100% { opacity: 1; } 50% { opacity: .3; } }
.hero__sunmark { position: absolute; right: 23%; top: 38%; width: 11rem; height: 11rem; animation: spin 42s linear infinite; }
.hero__sunmark svg, .hero__bird svg { width: 100%; height: 100%; }
.hero__bird { position: absolute; width: 6rem; height: 6rem; }
.hero__bird--01 { top: 30%; left: 33%; animation: bob 3.4s ease-in-out infinite alternate; }
.hero__bird--02 { top: 16%; left: 55%; width: 4.6rem; height: 4.6rem; transform: scaleX(-1); animation: bob 4.2s ease-in-out infinite alternate; }
.hero__garland { position: absolute; }
.hero__garland--1 { top: 3%; left: -2%; width: 46rem; transform: rotate(-4deg); }
.hero__garland--2 { bottom: 47%; right: -4%; width: 36rem; transform: scaleX(-1) rotate(-6deg); }
.hero--paused .hero__sunmark, .hero--paused .hero__bird, .hero--paused .hero__cut, .hero--paused .hero__star { animation-play-state: paused; }

.hero__caveat {
  position: absolute; right: 4%; top: 70%;
  font-family: "Caveat", cursive; font-weight: 700; font-size: 4.4rem;
  color: #fff; transform: rotate(-8deg);
  text-shadow: 0 .3rem 1rem rgba(6, 108, 112, .4);
}
.hero__copy {
  position: absolute; z-index: 6; top: 27%; left: 3.5%;
  display: flex; align-items: center; justify-content: center;
  min-width: 16rem; min-height: 26rem;
  padding: 4.6rem 3.8rem;
  filter: drop-shadow(0 .8rem 1.8rem rgba(0, 0, 0, .14));
}
.hero__copy-bg { position: absolute; inset: 0; width: 100%; height: 100%; z-index: -1; }
.hero__copy-txt {
  position: relative;
  writing-mode: vertical-rl;
  font-size: 2.6rem; font-weight: 900; line-height: 1.9; letter-spacing: .2em;
  text-align: center;
}
.hero__scrolldown {
  position: absolute; z-index: 6; bottom: 0; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
  font-family: "Jost", sans-serif; font-size: 1.1rem; letter-spacing: .3em; color: #fff;
}
.hero__scrolldown span { position: relative; width: 2px; height: 5.6rem; background: rgba(255, 255, 255, .35); overflow: hidden; }
.hero__scrolldown span::before { content: ""; position: absolute; left: 0; top: -100%; width: 100%; height: 100%; background: #fff; animation: scrolldown 1.8s ease-in-out infinite; }
@keyframes scrolldown { 0% { top: -100%; } 55% { top: 0; } 100% { top: 100%; } }

.js-load { opacity: 0; transition: opacity .8s; }
.js-load--on { opacity: 1; }

/* サイド固定ボタン */
.side { position: fixed; right: 0; top: 42%; z-index: 95; display: flex; flex-direction: column; gap: 1rem; }
.side__btn {
  display: flex; flex-direction: column; align-items: center; gap: .8rem;
  writing-mode: vertical-rl; padding: 1.8rem 1rem;
  border-radius: 1.4rem 0 0 1.4rem; color: #fff;
  font-size: 1.25rem; font-weight: 700; letter-spacing: .12em;
  box-shadow: -0.3rem .3rem 1.2rem rgba(0, 0, 0, .15);
  transform: translateX(.4rem); transition: transform .25s;
}
.side__btn:hover { transform: translateX(0); }
.side__btn svg { width: 2.2rem; height: 2.2rem; }
.side__btn--access { background: var(--color-primary); }
.side__btn--plan { background: var(--color-red); }

/* ================================================
   重要なお知らせ
   ================================================ */
.important { max-width: 110rem; margin: 4rem auto 0; padding: 0 2.4rem; }
.important a {
  display: flex; align-items: center; gap: 1.6rem;
  padding: 1.4rem 2.4rem; border-radius: 999px; background: var(--color-bg-warm);
  transition: background .3s;
}
.important a:hover { background: #ece8d8; }
.important__badge {
  flex-shrink: 0; padding: .5rem 1.4rem; border-radius: 999px;
  background: var(--color-red); color: #fff; font-size: 1.2rem; font-weight: 900;
}
.important__txt { font-size: 1.35rem; font-weight: 500; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.important__arrow { position: relative; margin-left: auto; flex-shrink: 0; width: 1rem; height: 1rem; border-top: 2px solid var(--color-text); border-right: 2px solid var(--color-text); transform: rotate(45deg); }

/* ================================================
   PixiJSスクロールシーン（ABOUT）
   ================================================ */
.wrap { position: relative; }
.wrap__stage { position: sticky; top: 0; z-index: 0; display: block; width: 100%; height: 100vh; height: 100svh; }
.wrap__in { position: relative; z-index: 1; margin-top: -100vh; margin-top: -100svh; }
.about { padding-top: 4rem; }
.about__head {
  min-height: 90vh; display: flex; flex-direction: column;
  justify-content: center; align-items: center; text-align: center;
}
.about__en {
  font-family: "Jost", sans-serif; font-weight: 800; font-size: 9rem; line-height: 1;
  color: var(--color-primary); letter-spacing: .04em;
}
.about__ja { margin-top: 1.6rem; font-size: 1.5rem; font-weight: 700; color: var(--color-primary); }
.about__txtarea {
  min-height: 130vh; display: flex; flex-direction: column;
  justify-content: center; align-items: center; text-align: center;
}
.about__ttl {
  font-size: 4.6rem; font-weight: 900; line-height: 1.5;
  text-shadow: 0 0 1.2rem rgba(255, 255, 255, .9), 0 0 2.4rem rgba(255, 255, 255, .9);
}
.about__txt {
  max-width: 58rem; margin-top: 3.2rem; font-size: 1.55rem; font-weight: 500; line-height: 2.3;
  text-shadow: 0 0 .8rem rgba(255, 255, 255, .95), 0 0 1.8rem rgba(255, 255, 255, .95);
}
.about__map { min-height: 120vh; display: flex; align-items: center; gap: 4rem; padding: 0 8vw; }
.about__map-txt { width: 36rem; flex-shrink: 0; }
.about__map-space { flex: 1; }
.about__map-en { font-family: "Jost", sans-serif; font-weight: 700; font-size: 1.6rem; letter-spacing: .2em; color: var(--color-primary); }
.about__map-ttl { margin-top: .8rem; font-size: 3.6rem; font-weight: 900; }
.about__map-desc { margin: 2rem 0 3rem; font-size: 1.45rem; line-height: 2.2; }

/* ================================================
   営業ステータス
   ================================================ */
.state { padding: 10rem 0; background: var(--color-bg); }
.state__in { max-width: 110rem; margin: 0 auto; padding: 0 2.4rem; }
.state-box { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; margin-top: 4rem; }
.state-box__item {
  display: flex; align-items: center; gap: 1.4rem;
  padding: 2rem; border-radius: 1.6rem; background: #fff;
  box-shadow: 0 .2rem 1rem rgba(0, 0, 0, .04);
}
.state-box__item > svg { width: 4.6rem; height: 4.6rem; flex-shrink: 0; }
.state-box__item dt { font-size: 1.15rem; font-weight: 700; color: #8a8a8a; }
.state-box__item dd { font-size: 1.4rem; font-weight: 900; line-height: 1.4; }
.state-box__item .is-ok {
  display: inline-block; padding: .2rem 1.2rem; border-radius: 999px;
  background: var(--color-primary); color: #fff; font-size: 1.3rem;
}
.state__btn { margin-top: 3.2rem; text-align: center; }
.state--footer { padding: 6rem 0; background: var(--color-bg-warm); }
.state--footer .state-box { margin-top: 0; }

/* ================================================
   NEWS
   ================================================ */
.news { padding: 12rem 0; overflow: hidden; }
.news__in { max-width: 120rem; margin: 0 auto; padding: 0 2.4rem; }
.news-slider { margin-top: 4.4rem; }
.news-card {
  display: block; width: 30.4rem; border-radius: 1.6rem; overflow: hidden;
  background: #fff; box-shadow: 0 .3rem 1.4rem rgba(0, 0, 0, .07);
  transition: transform .3s, box-shadow .3s;
}
.news-card:hover { transform: translateY(-.5rem); box-shadow: 0 .8rem 2rem rgba(0, 0, 0, .12); }
.news-card__img { position: relative; display: grid; place-items: center; height: 17rem; overflow: hidden; }
.news-card__img svg { width: 8.5rem; height: 8.5rem; transition: transform .4s; }
.news-card:hover .news-card__img svg { transform: scale(1.12) rotate(-3deg); }
.news-card__img--night { background: linear-gradient(160deg, #23366b, #0b8388); }
.news-card__img--sky { background: linear-gradient(160deg, #a5d3f7, #64b6f9); }
.news-card__img--warm { background: linear-gradient(160deg, #ffe3c9, #fa9d7b); }
.news-card__img--green { background: linear-gradient(160deg, #cfe8d8, #7fbf8e); }
.news-card__img--red { background: linear-gradient(160deg, #ffd0d6, #f45562); }
.news-card__new {
  position: absolute; top: 1.2rem; left: 1.2rem;
  padding: .3rem 1.2rem; border-radius: 999px;
  background: var(--color-red); color: #fff;
  font-family: "Jost", sans-serif; font-weight: 700; font-size: 1.1rem; letter-spacing: .1em;
}
.news-card__meta { display: flex; align-items: center; gap: 1.2rem; padding: 1.6rem 1.8rem 0; }
.news-card__meta time { font-family: "Jost", sans-serif; font-size: 1.3rem; color: #8a8a8a; }
.news-card__cat {
  padding: .2rem 1.2rem; border: 1px solid var(--color-primary); border-radius: 999px;
  color: var(--color-primary); font-size: 1.1rem; font-weight: 700;
}
.news-card__ttl { display: block; padding: 1rem 1.8rem 2rem; font-size: 1.4rem; font-weight: 700; line-height: 1.7; }
.news__btn { margin-top: 4rem; text-align: center; }

/* ================================================
   EAT / PLAY / STAY
   ================================================ */
.cnt { position: relative; height: 700vh; }
.cnt__sticky { position: sticky; top: 0; height: 100vh; height: 100svh; overflow: hidden; }
.cnt__item { position: absolute; inset: 0; will-change: transform; }
.cnt__item--eat { z-index: 1; }
.cnt__item--play { z-index: 2; }
.cnt__item--stay { z-index: 3; }
.cnt__wrap { position: relative; height: 100%; --cntBefore: 0; }
.cnt__wrap::after {
  content: ""; position: absolute; inset: 0; z-index: 5;
  background: #000; opacity: var(--cntBefore); pointer-events: none;
}
.cnt__bg { position: absolute; inset: 0; }
.cnt__item--eat .cnt__bg { background: #f28a63; }
.cnt__item--play .cnt__bg { background: #f45562; }
.cnt__item--stay .cnt__bg { background: #4f9fe8; }
.cnt__bg::before, .cnt__bg::after { content: ""; position: absolute; border-radius: 50%; background: rgba(255, 255, 255, .1); }
.cnt__bg::before { width: 46vw; height: 46vw; top: -18vw; right: -12vw; }
.cnt__bg::after { width: 30vw; height: 30vw; bottom: -14vw; left: -8vw; background: rgba(255, 255, 255, .07); }
.cnt__in {
  position: relative; z-index: 1; height: 100%;
  display: flex; align-items: center; gap: 5rem;
  padding: 8rem 0 4rem 10rem;
}
.cnt__head { position: relative; width: 38rem; flex-shrink: 0; color: #fff; }
.cnt__sub { position: absolute; left: -5.2rem; top: .6rem; text-align: center; }
.cnt__sub span { display: block; margin-bottom: 1rem; font-family: "Jost", sans-serif; font-size: 1.3rem; font-weight: 700; }
.cnt__sub::after {
  content: ""; display: block; width: 2px; height: 11rem; margin: 0 auto;
  background: linear-gradient(to bottom, #fff calc(var(--cntSubBefore, 0) * 100%), rgba(255, 255, 255, .28) 0);
}
.cnt__en { font-family: "Jost", sans-serif; font-weight: 800; font-size: 10.5rem; line-height: 1; letter-spacing: .01em; }
.cnt__dot { color: var(--color-accent); }
.cnt__ja {
  display: inline-block; margin-top: 1.2rem; padding: .4rem 1.6rem;
  border-radius: 999px; background: #fff; font-size: 1.3rem; font-weight: 900;
}
.cnt__item--eat .cnt__ja { color: #e0784f; }
.cnt__item--play .cnt__ja { color: var(--color-red); }
.cnt__item--stay .cnt__ja { color: #2b6ea8; }
.cnt__copy { margin-top: 2.4rem; font-size: 2.5rem; font-weight: 900; line-height: 1.6; }
.cnt__txt { margin: 1.4rem 0 2.8rem; font-size: 1.4rem; line-height: 2.1; opacity: .96; }
.cnt-linkarea { width: 56rem; max-width: 44vw; }
.cnt-card {
  display: block; border-radius: 1.4rem; overflow: hidden; background: #fff;
  transition: transform .3s;
}
.cnt-card:hover { transform: translateY(-.4rem); }
.cnt-card__img { display: grid; place-items: center; height: 14rem; }
.cnt-card__img svg { width: 6.5rem; height: 6.5rem; transition: transform .4s; }
.cnt-card:hover .cnt-card__img svg { transform: scale(1.15); }
.cnt-card__img--warm { background: #ffe3c9; }
.cnt-card__img--mint { background: #d5f0e4; }
.cnt-card__img--night { background: #2c3f70; }
.cnt-card__img--wood { background: #ecdcc3; }
.cnt-card__img--sky { background: #cde7fb; }
.cnt-card__img--green { background: #d8ecd0; }
.cnt-card__name { display: block; padding: 1.4rem 1.6rem 0; font-size: 1.35rem; font-weight: 900; line-height: 1.5; }
.cnt-card__time { display: block; padding: .6rem 1.6rem 1.6rem; font-size: 1.15rem; color: #8a8a8a; }
.cnt-scroll {
  position: absolute; z-index: 10; right: 3.2rem; bottom: 3rem; opacity: 0;
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
  color: #fff; font-family: "Jost", sans-serif; font-size: 1.1rem; letter-spacing: .3em;
}
.cnt-scroll span { position: relative; width: 2px; height: 4.6rem; background: rgba(255, 255, 255, .35); overflow: hidden; }
.cnt-scroll span::before { content: ""; position: absolute; left: 0; top: -100%; width: 100%; height: 100%; background: #fff; animation: scrolldown 1.8s ease-in-out infinite; }

/* パネル内の登場アニメーション（--activeで発火） */
.cnt__head > * { opacity: 0; transform: translateY(2rem); transition: opacity .6s, transform .6s; }
.cnt__in--active .cnt__head > * { opacity: 1; transform: translateY(0); }
.cnt__in--active .cnt__head > *:nth-child(2) { transition-delay: .08s; }
.cnt__in--active .cnt__head > *:nth-child(3) { transition-delay: .16s; }
.cnt__in--active .cnt__head > *:nth-child(4) { transition-delay: .24s; }
.cnt__in--active .cnt__head > *:nth-child(5) { transition-delay: .32s; }
.cnt__in--active .cnt__head > *:nth-child(6) { transition-delay: .4s; }
.cnt-linkarea { opacity: 0; transform: translateY(2rem); transition: opacity .6s .3s, transform .6s .3s; }
.cnt__in--active .cnt-linkarea { opacity: 1; transform: translateY(0); }
.cnt__bg { transform: scale(1.06); transition: transform 1.2s; }
.cnt__bg--active { transform: scale(1); }

/* ================================================
   周辺のおすすめ
   ================================================ */
.linkarea { padding: 12rem 0 14rem; background: var(--color-bg-warm); border-radius: 5rem 5rem 0 0; overflow: hidden; }
.linkarea__head { max-width: 120rem; margin: 0 auto 5rem; padding: 0 2.4rem; }
.linkarea-slider { position: relative; }
.linkarea-slider__illust { position: absolute; z-index: 5; pointer-events: none; }
.linkarea-slider__illust svg { width: 100%; height: 100%; }
.linkarea-slider__illust--1 { top: -3rem; left: 12%; width: 6rem; height: 6rem; transform: rotate(-8deg); }
.linkarea-slider__illust--2 { bottom: -2rem; right: 16%; width: 7rem; height: 7rem; }
.linkarea-slider__illust--3 { top: -4.5rem; right: 34%; width: 8rem; height: 8rem; }
.around-card { display: block; text-align: center; transition: transform .4s, opacity .4s; transform: scale(.92); opacity: .65; }
.splide__slide.is-active .around-card { transform: scale(1); opacity: 1; }
.around-card__img {
  display: grid; place-items: center; height: 23rem; border-radius: 2.4rem;
  box-shadow: 0 .4rem 1.6rem rgba(0, 0, 0, .08);
}
.around-card__img svg { width: 9rem; height: 9rem; transition: transform .4s; }
.around-card:hover .around-card__img svg { transform: scale(1.12) rotate(3deg); }
.around-card__img--sky { background: linear-gradient(160deg, #bfe0ef, #64b6f9); }
.around-card__img--night { background: linear-gradient(160deg, #2c3f70, #23366b); }
.around-card__img--warm { background: linear-gradient(160deg, #ffe3c9, #fa9d7b); }
.around-card__img--mint { background: linear-gradient(160deg, #d5f0e4, #7fbf8e); }
.around-card__img--wood { background: linear-gradient(160deg, #ecdcc3, #c98d5a); }
.around-card__name { display: block; margin-top: 1.8rem; font-size: 1.7rem; font-weight: 900; }
.around-card__tag {
  display: inline-block; margin-top: .6rem; padding: .2rem 1.4rem;
  border-radius: 999px; background: #fff; font-size: 1.15rem; font-weight: 700; color: var(--color-primary);
}

/* ================================================
   バナー
   ================================================ */
.bnr { max-width: 110rem; margin: 10rem auto 0; padding: 0 2.4rem; }
.bnr__link {
  position: relative; display: flex; flex-direction: column; align-items: flex-start; gap: .8rem;
  padding: 5.6rem 6rem; border-radius: 2.4rem; overflow: hidden;
  background: linear-gradient(120deg, #1c2a58 0%, #23366b 45%, #0b8388 100%);
  color: #fff; transition: transform .3s, box-shadow .3s;
}
.bnr__link:hover { transform: translateY(-.4rem); box-shadow: 0 1rem 2.6rem rgba(28, 42, 88, .35); }
.bnr__stars {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(circle, #fff 1px, transparent 1.6px),
    radial-gradient(circle, rgba(255, 255, 255, .7) 1px, transparent 1.4px),
    radial-gradient(circle, var(--color-accent) 1.4px, transparent 2px);
  background-size: 14rem 9rem, 9rem 13rem, 26rem 17rem;
  background-position: 0 0, 4rem 5rem, 9rem 2rem;
  opacity: .8;
}
.bnr__caveat { font-family: "Caveat", cursive; font-size: 3rem; color: var(--color-accent); transform: rotate(-3deg); }
.bnr__ttl { position: relative; font-size: 3.6rem; font-weight: 900; }
.bnr__txt { position: relative; font-size: 1.4rem; opacity: .95; }
.bnr__btn { margin-top: 1.6rem; }

/* ================================================
   GALLERY
   ================================================ */
.gallery { padding: 13rem 0; overflow: hidden; }
.gallery-slider { margin-top: 4.6rem; }
.gallery-card {
  position: relative; display: grid; place-items: center;
  height: 34rem; border-radius: 1.8rem; overflow: hidden;
  transform: scale(.94); opacity: .7; transition: transform .4s, opacity .4s;
}
.splide__slide.is-active .gallery-card { transform: scale(1); opacity: 1; }
.gallery-card svg { width: 10rem; height: 10rem; }
.gallery-card figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 3.2rem 2rem 1.6rem; color: #fff; font-size: 1.3rem; font-weight: 700;
  background: linear-gradient(to top, rgba(0, 0, 0, .45), transparent);
}
.gallery-card--night { background: linear-gradient(160deg, #23366b, #2c3f70); }
.gallery-card--sky { background: linear-gradient(160deg, #a5d3f7, #64b6f9); }
.gallery-card--sky2 { background: linear-gradient(160deg, #bfe0ef, #0b8388); }
.gallery-card--mint { background: linear-gradient(160deg, #d5f0e4, #7fbf8e); }
.gallery-card--green { background: linear-gradient(160deg, #cfe8d8, #5ba77a); }
.gallery-card--warm { background: linear-gradient(160deg, #ffe3c9, #fa9d7b); }
.gallery-card--wood { background: linear-gradient(160deg, #ecdcc3, #c98d5a); }
.gallery-card--red { background: linear-gradient(160deg, #ffd0d6, #f45562); }
.gallery__note { margin-top: 3.2rem; text-align: center; font-size: 1.3rem; font-weight: 700; color: var(--color-primary); }

/* ---------- Splide 矢印共通 ---------- */
.splide__arrow {
  width: 4.8rem; height: 4.8rem; background: #fff; opacity: 1;
  box-shadow: 0 .3rem 1.2rem rgba(0, 0, 0, .14);
  transition: transform .2s, opacity .2s;
}
.splide__arrow svg { width: 1.7rem; height: 1.7rem; fill: var(--color-primary); }
.splide__arrow:hover:not(:disabled) { transform: scale(1.08); }
.splide__arrow:disabled { opacity: .3; }
.splide__arrow--prev { left: -1rem; }
.splide__arrow--next { right: -1rem; }

/* ================================================
   INFO
   ================================================ */
.info { padding: 12rem 0; }
.info__in {
  max-width: 110rem; margin: 0 auto; padding: 0 2.4rem;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 7rem; align-items: start;
}
.info-table { margin-top: 4rem; }
.info-table > div { display: flex; gap: 2.4rem; padding: 1.8rem .4rem; border-bottom: 1px solid #e3e3e3; }
.info-table dt { width: 11rem; flex-shrink: 0; font-weight: 900; color: var(--color-primary); font-size: 1.4rem; }
.info-table dd { font-size: 1.4rem; font-weight: 500; }
.info__map { border-radius: 2rem; overflow: hidden; box-shadow: 0 .4rem 1.6rem rgba(0, 0, 0, .08); margin-bottom: 2.4rem; }
.info__map svg { width: 100%; height: auto; }

/* ================================================
   大型リンク
   ================================================ */
.biglink { display: grid; grid-template-columns: 1fr 1fr; }
.biglink__card {
  position: relative; display: flex; flex-direction: column; justify-content: center;
  min-height: 28rem; padding: 4rem 8rem; overflow: hidden;
  transition: filter .3s;
}
.biglink__card:hover { filter: brightness(1.06); }
.biglink__card--ticket { background: var(--color-accent); color: var(--color-text); }
.biglink__card--access { background: var(--color-primary); color: #fff; }
.biglink__icon { position: absolute; right: 6rem; top: 50%; width: 11rem; height: 11rem; transform: translateY(-50%); transition: transform .3s; }
.biglink__card:hover .biglink__icon { transform: translateY(-56%) rotate(-4deg); }
.biglink__en { font-family: "Jost", sans-serif; font-weight: 700; font-size: 5.4rem; line-height: 1.1; }
.biglink__ja { font-size: 1.5rem; font-weight: 900; margin-top: .6rem; }
.biglink__arrow {
  position: absolute; right: 3rem; bottom: 3rem; width: 4.4rem; height: 4.4rem;
  border: 2px solid currentColor; border-radius: 50%;
  transition: transform .3s;
}
.biglink__arrow::before {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: .9rem; height: .9rem; border-top: 2px solid currentColor; border-right: 2px solid currentColor;
  transform: translate(-65%, -50%) rotate(45deg);
}
.biglink__card:hover .biglink__arrow { transform: translateX(.6rem); }

/* ================================================
   フッター
   ================================================ */
.footer { background: var(--color-primary); color: #fff; padding: 8rem 2.4rem 2.4rem; }
.footer__in {
  max-width: 110rem; margin: 0 auto;
  display: flex; justify-content: space-between; gap: 6rem; flex-wrap: wrap;
}
.footer__logo { display: flex; align-items: center; gap: 1.2rem; font-size: 2rem; font-weight: 900; flex-wrap: wrap; }
.footer__logo svg { width: 4.4rem; height: 4.4rem; }
.footer__logo small { display: block; width: 100%; margin-left: 5.6rem; margin-top: -.8rem; font-family: "Jost", sans-serif; font-size: 1.1rem; letter-spacing: .16em; opacity: .85; }
.footer__addr { margin-top: 2rem; font-size: 1.3rem; opacity: .9; }
.footer__sns { display: flex; gap: 1.2rem; margin-top: 2.4rem; }
.footer__sns a {
  display: grid; place-items: center; width: 4.2rem; height: 4.2rem;
  border: 2px solid rgba(255, 255, 255, .55); border-radius: 50%;
  font-family: "Jost", sans-serif; font-weight: 700; font-size: 1.15rem;
  transition: background .3s, color .3s;
}
.footer__sns a:hover { background: #fff; color: var(--color-primary); }
.footer__nav { display: flex; gap: 6rem; }
.footer__nav a { display: block; padding: .6rem 0; font-size: 1.35rem; font-weight: 500; opacity: .95; transition: opacity .2s, transform .2s; }
.footer__nav a:hover { opacity: 1; transform: translateX(.4rem); }
.footer__copy {
  max-width: 110rem; margin: 6rem auto 0; padding-top: 2.4rem;
  border-top: 1px solid rgba(255, 255, 255, .25);
  font-size: 1.15rem; text-align: center; opacity: .75;
}

/* ================================================
   ページトップ
   ================================================ */
.pagetop {
  position: fixed; right: 2.4rem; bottom: 2.4rem; z-index: 90;
  width: 5.6rem; height: 5.6rem; border-radius: 50%;
  background: #fff; border: 2px solid var(--color-primary);
  box-shadow: 0 .3rem 1.2rem rgba(0, 0, 0, .12);
  opacity: 0; visibility: hidden; transform: translateY(1rem);
  transition: opacity .3s, visibility .3s, transform .3s;
}
.pagetop--show { opacity: 1; visibility: visible; transform: translateY(0); }
.pagetop span {
  position: absolute; top: 55%; left: 50%;
  width: 1.2rem; height: 1.2rem;
  border-top: 3px solid var(--color-primary); border-right: 3px solid var(--color-primary);
  transform: translate(-50%, -50%) rotate(-45deg);
}
.pagetop:hover span { animation: ptop .6s ease-in-out infinite alternate; }
@keyframes ptop { from { translate: 0 0; } to { translate: 0 -.5rem; } }

/* ================================================
   生成画像（Nano Banana Pro）
   ================================================ */
.news-card__img img,
.cnt-card__img img,
.gallery-card img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform .45s;
}
.cnt-card__img { position: relative; overflow: hidden; }
.gallery-card figcaption { z-index: 1; }
.news-card__new { z-index: 1; }
.news-card:hover .news-card__img img { transform: scale(1.06); }
.cnt-card:hover .cnt-card__img img { transform: scale(1.08); }
.splide__slide.is-active .gallery-card img { transform: scale(1.02); }

.bnr__link {
  background:
    linear-gradient(100deg, rgba(24, 36, 78, .9) 0%, rgba(30, 47, 96, .72) 45%, rgba(8, 96, 100, .55) 100%),
    url("../img/fireworks.jpg") center / cover no-repeat;
}

/* ================================================
   SP（〜767px）
   ================================================ */
@media (max-width: 767px) {
  html { scroll-padding-top: 7rem; }

  .sec-head__en { font-size: 4.2rem; }
  .sec-head__caveat { font-size: 2.6rem; top: -2rem; }

  .header { height: 6.8rem; padding: 0 1.6rem; }
  .header__mark { width: 3.6rem; height: 3.6rem; }
  .header__name { font-size: 1.4rem; }
  .header__right { gap: .8rem; margin-right: 3rem; }
  .header__ticket { padding: .85rem 1.15rem; font-size: 0.9rem; gap: .4rem; white-space: nowrap; }
  .header__ticket svg { width: 1.6rem; height: 1.6rem; }
  .header__menu { width: 4.4rem; height: 4.4rem; flex-shrink: 0; }
  .header__menu span { width: 2rem; }
  .header__menu span:nth-child(1) { top: 1.7rem; }
  .header__menu span:nth-child(2) { top: 2.2rem; }
  .header__menu span:nth-child(3) { top: 2.7rem; }
  body.nav-open .header__menu span:nth-child(1) { transform: translateX(-50%) translateY(.5rem) rotate(45deg); }
  body.nav-open .header__menu span:nth-child(3) { transform: translateX(-50%) translateY(-.5rem) rotate(-45deg); }

  .nav__in { flex-direction: column; align-items: stretch; gap: 3rem; padding: 9rem 3rem 5rem; }
  .nav-list__item em { font-size: 3.2rem; }
  .nav__right { width: 100%; }
  .nav__imgs { display: none; }
  .nav__bottom { flex-wrap: wrap; gap: 1.6rem; }

  .hero { min-height: 56rem; }
  .hero__en--1 { top: calc(15% + 0.5mm); right: 3%; font-size: 6.2rem; }
  .hero__en--2 { top: 26%; right: 42%; font-size: 7.8rem; }
  .hero__en--3 { top: 37%; right: 8%; font-size: 7.8rem; }
  .hero__cut--picnic { width: 33rem; bottom: 6%; }
  .hero__cut--zip { width: 19rem; top: 17.5%; right: 2%; }
  .hero__cut--child { width: 14rem; left: 56%; top: 58%; }
  .hero__cut--tent { width: 17rem; bottom: 23%; }
  .hero__caveat { font-size: 2.8rem; top: 52%; right: 6%; }
  .hero__copy { top: 40%; left: 3%; right: auto; min-width: 11rem; min-height: 18rem; padding: 3.2rem 2.4rem; }
  .hero__copy-txt { font-size: 1.8rem; }
  .hero__garland--1 { width: 26rem; }
  .hero__garland--2 { width: 22rem; bottom: 44%; }
  .hero__deco--moon { top: 4%; left: 4%; }
  .hero__sunmark { width: 7rem; height: 7rem; right: 10%; top: 33%; }
  .hero__bird--01 { left: 12%; top: 30%; width: 4.4rem; height: 4.4rem; }
  .hero__bird--02 { left: 70%; top: 24%; }
  .side { display: none; }

  /* ABOUT（PixiJSシーン）：SPは背景の白っぽさを消すため空色グラデを敷く（透明キャンバスの背後に透ける／WebGL不発時の保険も兼ねる） */
  .wrap__stage { background: linear-gradient(180deg, #aeddea 0%, #c6e8da 48%, #e0eecb 100%); }

  .important__txt { white-space: normal; font-size: 1.2rem; }
.important { margin-top: 2.6rem; margin-bottom: 3.4rem; }
  .about__en { font-size: 5.6rem; }
  .about__ttl { font-size: 3.2rem; }
  .about__txt { padding: 0 2.8rem; font-size: 1.4rem; }
  .about__map { flex-direction: column; justify-content: flex-start; padding: 0 2.8rem; min-height: 140vh; }
  .about__map-txt { width: 100%; order: 2; }
  .about__map-space { width: 100%; height: 52vh; order: 1; flex: none; }

  .state { padding: 7rem 0; }
  .state-box { grid-template-columns: 1fr 1fr; gap: 1.2rem; }
  .state-box__item { flex-direction: column; align-items: flex-start; gap: .8rem; padding: 1.6rem; }

  .news { padding: 8rem 0; }
  .news-slider { visibility: visible; } /* SPはSplide非初期化のため */
  .news-slider .splide__track { overflow-x: auto; padding-bottom: 1rem; }
  .news-slider .splide__list { gap: 1.4rem; }
  .news-card { width: 26rem; flex-shrink: 0; }

  .cnt__in { flex-direction: column; align-items: flex-start; justify-content: center; gap: 2.4rem; padding: 8rem 2.4rem 4rem 6rem; }
  .cnt__head { width: 100%; padding-right: 6rem; }
  .cnt__sub { left: -4rem; top: 0; }
  .cnt__en { font-size: 6.4rem; }
  .cnt__copy { margin-top: 1.4rem; font-size: 1.9rem; }
  .cnt__txt { margin: 1rem 0 1.8rem; font-size: 1.3rem; }
  .cnt-linkarea { width: calc(100% + 6rem); max-width: none; margin-left: -6rem; }
  .cnt-scroll { right: 2rem; bottom: 2.4rem; }

  .linkarea { padding: 8rem 0 10rem; border-radius: 3rem 3rem 0 0; }
  .around-card__img { height: 19rem; }

  .bnr__link { padding: 4rem 2.8rem; }
  .bnr__ttl { font-size: 2.6rem; }

  .gallery { padding: 8rem 0; }
  .gallery-card { height: 30rem; }

  .info__in { grid-template-columns: 1fr; gap: 4rem; }
  .info-table dt { width: 9rem; }

  .biglink { grid-template-columns: 1fr; }
  .biglink__card { min-height: 20rem; padding: 3rem 3.2rem; }
  .biglink__icon { width: 8rem; height: 8rem; right: 3rem; }
  .biglink__en { font-size: 4rem; }

  .footer__in { flex-direction: column; gap: 4rem; }
  .footer__nav { gap: 3rem; }

  /* ページトップの丸ボタン：右端から離して確実に画面内へ。あわせてフッター下部に余白を足し、コピーライトが丸に隠れないようにする */
  .pagetop { right: 4.5rem; }
  .footer { padding-bottom: 10rem; }
}
