@charset "utf-8";
/* =========================================================
   YAMECHAUNA — 8HOTEL茅ヶ崎の意匠を踏襲したスタイル
   パレット差し替えは :root の変数のみで可能
========================================================= */
:root {
  /* ブランドカラー: ロゴの茶葉グリーン #48603c を主色に統一 */
  --c-navy: #48603c;        /* 主色（見出し・ボタン）＝ロゴグリーン */
  --c-blue: #5d7a4a;        /* 副色・カード英字フチ（若葉） */
  --c-blue-lt: #9dbb85;     /* バナー枠線（淡い若葉） */
  --c-blue-pale: #d3ddc5;   /* 体験セクション背景（抹茶の淡緑） */
  --c-pink-1: #b5791f;      /* アクセント（CTA・茶金） */
  --c-pink-2: #cf9a45;
  --c-cream: #f6f3ef;       /* カード地 */
  --c-cream-bd: #cac2bb;    /* カード内側罫 */
  --c-gray-initial: #79826c;/* 見出し頭文字（緑がかったグレー） */
  --c-ink: #343434;
  --c-ink-soft: #4e4441;
  --c-slate: #6e7a63;       /* ACCESSパネル（緑スレート） */
  --c-bg-soft: #f4f4f4;
  --grad-navy: linear-gradient(to right, #48603c 0%, #48603c 50%, #79826c 100%);
  --grad-pink: linear-gradient(to right, #b5791f 0%, #b5791f 50%, #cf9a45 100%);
  --ff-en: 'PT Sans', sans-serif;
  --ff-script: 'Satisfy', cursive;
  --ff-jp: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  --header-h: 84px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
  font-family: var(--ff-jp);
  color: var(--c-ink);
  background: #fff;
  line-height: 1.9;
  letter-spacing: .06em;
  font-size: 15px;
}
body.is-nav-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
figure { margin: 0; }
.nowrap { white-space: nowrap; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; margin: -1px;
  padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- fade-in ---------- */
.fade { opacity: 0; transform: translateY(24px); transition: opacity .9s ease, transform .9s ease; }
.fade.is-view { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .fade { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- buttons ---------- */
.btn-navy {
  position: relative;
  display: flex; align-items: center; justify-content: center; gap: 1em;
  width: 280px; max-width: 100%; height: 52px; margin: 0 auto;
  background: var(--c-navy); color: #fff;
  font-family: var(--ff-en); font-size: 14px; letter-spacing: .14em;
  transition: opacity .3s;
}
.btn-navy i { font-style: normal; transition: transform .3s; }
.btn-navy:hover { opacity: .85; }
.btn-navy:hover i { transform: translateX(6px); }
.btn-pink {
  display: flex; align-items: center; justify-content: center;
  width: 280px; max-width: 100%; height: 56px; margin: 0 auto;
  background: var(--grad-pink);
  color: #fff; font-family: var(--ff-en); font-size: 14px; font-weight: 700; letter-spacing: .2em;
  transition: opacity .3s;
}
.btn-pink:hover { opacity: .85; }

/* ---------- section title ---------- */
.sec { padding: 90px 5% 100px; max-width: 1200px; margin: 0 auto; }
.sec-title { text-align: center; margin-bottom: 56px; font-weight: normal; }
.sec-title__en {
  display: block; font-family: var(--ff-en); font-weight: 700;
  font-size: clamp(40px, 6vw, 80px); letter-spacing: .06em; line-height: 1.1;
  color: var(--c-ink);
}
.sec-title__en i {
  font-style: normal; color: var(--c-gray-initial);
  font-size: 1.25em; line-height: 1; vertical-align: -0.06em; margin-right: .01em;
}
.sec-title__jp { display: block; font-size: 14px; letter-spacing: .2em; margin-top: 10px; }
.sec-title--left { text-align: left; }

/* =========================================================
   Header
========================================================= */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h); padding-left: 24px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 1px 8px rgba(0,0,0,.06);
}
.header__logo { display: flex; align-items: center; gap: 12px; }
.header__logo img { width: 56px; height: 56px; object-fit: contain; mix-blend-mode: multiply; }
.header__logo-txt {
  font-family: var(--ff-en); font-weight: 700; letter-spacing: .12em;
  font-size: 17px; color: var(--c-navy); line-height: 1.2; display: flex; flex-direction: column;
}
.header__logo-txt small { font-family: var(--ff-jp); font-size: 10px; font-weight: normal; letter-spacing: .18em; color: #7b7b7b; }
.header__right { display: flex; align-items: center; height: 100%; }
.header__sns { display: flex; align-items: center; padding: 0 18px; color: #7b7b7b; }
.header__sns:hover { color: var(--c-navy); }
.header__btn {
  display: flex; align-items: center; justify-content: center; text-align: center;
  height: 100%; width: 150px;
  color: #fff; font-family: var(--ff-en); font-weight: 700;
  font-size: 12px; letter-spacing: .14em; line-height: 1.7;
}
.header__btn--navy { background: var(--grad-navy); }
.header__btn--pink { background: var(--grad-pink); }
.header__btn--navy:hover, .header__btn--pink:hover { opacity: .88; }
.header__menu {
  width: 64px; height: 100%; background: none; border: 0; cursor: pointer;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
}
.header__menu span { width: 26px; height: 2px; background: var(--c-ink); transition: .3s; }
.header__menu.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.header__menu.is-open span:nth-child(2) { opacity: 0; }
.header__menu.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- gnav ---------- */
.gnav {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(72, 96, 60, .97);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity .4s, visibility .4s;
}
.gnav.is-open { opacity: 1; visibility: visible; }
.gnav ul { list-style: none; text-align: center; }
.gnav a {
  display: block; padding: 12px 40px; color: #fff;
  font-size: 17px; letter-spacing: .2em; transition: opacity .3s;
}
.gnav a:hover { opacity: .6; }

/* =========================================================
   Hero（見本同様、全周に白フレーム）
========================================================= */
.hero {
  position: relative; height: min(88vh, 860px); min-height: 480px;
  margin-top: var(--header-h); overflow: hidden;
  border: 25px solid #fff;
}
.hero__slider, .hero__slide { position: absolute; inset: 0; }
.hero__slide { opacity: 0; transition: opacity 1.6s ease; }
.hero__slide.is-active { opacity: 1; }
.hero__slide img { width: 100%; height: 100%; object-fit: cover; }
.hero__dots {
  position: absolute; bottom: 22px; right: 44px;
  display: flex; gap: 4px;
}
.hero__dots button {
  position: relative; width: 24px; height: 24px;
  border: 0; padding: 0; background: none; cursor: pointer;
}
.hero__dots button::after {
  content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.6); transition: background .3s;
}
.hero__dots button.is-active::after { background: var(--c-pink-2); }
.hero__scroll {
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  color: #fff; font-family: var(--ff-en); font-size: 13px; letter-spacing: .3em;
  text-align: center; text-shadow: 0 0 8px rgba(0,0,0,.4);
}
.hero__scroll i {
  display: block; width: 1px; height: 48px; margin: 6px auto 0;
  background: linear-gradient(#fff, rgba(255,255,255,0));
  animation: scrollline 2s ease infinite;
}
@keyframes scrollline { 0% { transform: scaleY(0); transform-origin: top; } 45% { transform: scaleY(1); transform-origin: top; } 55% { transform: scaleY(1); transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }
@media (prefers-reduced-motion: reduce) { .hero__scroll i { animation: none; } }

/* ---------- SP用予約ボタン帯（900px以下で表示） ---------- */
.sp-reserve { display: none; }

/* =========================================================
   Booking bar
========================================================= */
.book { background: #c5ccba; padding: 26px 4%; }
.book__inner {
  max-width: 1440px; margin: 0 auto; background: var(--c-navy);
  padding: 26px 40px 20px; color: #fff;
  display: grid; grid-template-columns: auto 1fr; grid-template-rows: auto auto; gap: 8px 48px;
}
.book__label {
  grid-row: 1 / 3; align-self: center;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  font-family: var(--ff-en); font-weight: 700; font-size: 17px; letter-spacing: .1em;
}
.book__form { display: flex; align-items: flex-end; gap: 26px; flex-wrap: wrap; }
.book__field { display: flex; flex-direction: column; gap: 4px; flex: 1 1 300px; max-width: 460px; }
.book__field label { font-size: 12px; letter-spacing: .16em; }
.book__field select {
  height: 44px; width: 100%; padding: 0 14px;
  border: 0; border-radius: 3px; font-family: var(--ff-jp); font-size: 14px;
  background: #fff; color: var(--c-ink); cursor: pointer;
}
.book__search {
  display: flex; align-items: center; justify-content: center;
  height: 44px; padding: 0 46px;
  background: var(--grad-pink);
  color: #fff; font-family: var(--ff-en); font-size: 14px; font-weight: 700; letter-spacing: .2em;
  border-radius: 3px; transition: opacity .3s;
}
.book__search:hover { opacity: .85; }
.book__tel { margin-left: auto; align-self: center; font-size: 15px; letter-spacing: .12em; }
.book__tel .sp { display: none; }
.book__sub { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; font-size: 12px; }
.book__plans {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 8px 22px; background: #647d52; letter-spacing: .12em; transition: opacity .3s;
}
.book__plans:hover { opacity: .8; }
.book__confirm { letter-spacing: .08em; }
.book__confirm:hover { text-decoration: underline; }

/* =========================================================
   Instagram banner（MEMBERSHIP風）
========================================================= */
.bnr-line { padding: 56px 5% 0; }
.bnr-line__inner {
  display: flex; align-items: center; gap: 22px;
  max-width: 680px; margin: 0 auto; padding: 16px 26px;
  border: 1px solid var(--c-blue-lt); color: var(--c-blue);
  transition: background .3s;
}
.bnr-line__inner:hover { background: #f2f8fb; }
.bnr-line__logo { display: flex; flex-direction: column; align-items: center; gap: 2px; padding-right: 22px; border-right: 1px solid var(--c-blue-lt); }
.bnr-line__logo small { font-family: var(--ff-en); font-size: 9px; letter-spacing: .2em; }
.bnr-line__txt { display: flex; flex-direction: column; }
.bnr-line__txt strong { font-family: var(--ff-en); font-size: 19px; letter-spacing: .28em; }
.bnr-line__txt span { font-size: 11.5px; letter-spacing: .1em; }
.bnr-line__arrow { margin-left: auto; font-size: 26px; font-weight: 300; }

/* =========================================================
   Recommend Menu
========================================================= */
.plan__list {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px;
  margin-bottom: 20px;
}
.plan__item figure { overflow: hidden; aspect-ratio: 3 / 2; }
.plan__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.plan__item a:hover img { transform: scale(1.06); }
.plan__item h3 {
  margin-top: 14px; font-size: 13.5px; font-weight: 600; line-height: 1.8;
  text-decoration: underline; text-underline-offset: 4px; text-decoration-thickness: 1px;
}
.plan__price { text-align: right; margin-top: 10px; font-size: 13px; }
.plan__price span { font-size: 1.5em; font-family: var(--ff-en); }
.plan__note { text-align: center; font-size: 11.5px; color: #7b7b7b; margin-bottom: 44px; }

/* =========================================================
   Experience
========================================================= */
.exp__mv {
  position: relative; min-height: 420px;
  background: url("../img/river-wide.jpg") center / cover no-repeat;
  display: flex; align-items: center; justify-content: center; text-align: center;
}
.exp__mv::before { content: ""; position: absolute; inset: 0; background: rgba(42, 58, 34, .38); }
.exp__mv-inner { position: relative; color: #fff; padding: 60px 5%; }
.exp__mv-sub { font-family: var(--ff-en); font-size: 15px; letter-spacing: .34em; }
.exp__mv-title { font-family: var(--ff-en); font-weight: 700; font-size: clamp(44px, 6vw, 68px); letter-spacing: .1em; line-height: 1.15; }
.exp__mv-title i { font-style: normal; font-size: 1.25em; vertical-align: -0.06em; }
.exp__mv-copy { margin-top: 14px; font-size: 15px; letter-spacing: .22em; }
.exp__body { background: var(--c-blue-pale); padding: 64px 5% 90px; }
.exp__cards { max-width: 1200px; margin: 0 auto 56px; display: grid; grid-template-columns: repeat(6, 1fr); gap: 26px; }
.exp__card {
  grid-column: span 2; position: relative;
  background: var(--c-cream); border-radius: .7em;
  padding: 48px 34px 44px; text-align: center;
}
.exp__card::before {
  content: ""; position: absolute; inset: .7em;
  border: 1px solid var(--c-cream-bd); border-radius: .7em;
  pointer-events: none;
}
.exp__card--lg { grid-column: span 3; }
.exp__card .exp__card-en {
  font-family: var(--ff-en); font-weight: 700; font-size: 42px; letter-spacing: .1em;
  text-align: center; line-height: 1.2;
  color: var(--c-cream);
  text-shadow: 1px 1px 0 var(--c-blue), -1px 1px 0 var(--c-blue), 1px -1px 0 var(--c-blue), -1px -1px 0 var(--c-blue), 1px 0 0 var(--c-blue), -1px 0 0 var(--c-blue), 0 1px 0 var(--c-blue), 0 -1px 0 var(--c-blue);
}
.exp__card-ic { width: 60px; height: 60px; margin: 20px auto 18px; color: var(--c-navy); }
.exp__card h3 { font-size: 15.5px; letter-spacing: .1em; margin-bottom: 10px; }
.exp__card--lg h3 { text-align: left; }
.exp__card-desc { font-size: 13px; text-align: left; }

/* =========================================================
   Dark attention band
========================================================= */
.band-dark { padding: 0 5%; }
.band-dark__inner {
  max-width: 940px; margin: 0 auto; background: var(--c-ink-soft);
}
.band-dark p {
  padding: 26px 16px;
  color: #fff; text-align: center; font-size: 19px; letter-spacing: .12em; line-height: 1.6;
}
.band-dark small { font-size: 12.5px; letter-spacing: .2em; }

/* =========================================================
   Feature sections（ROOMS/BREAKFAST風）
========================================================= */
.feat { padding-top: 110px; padding-bottom: 110px; }
.feat__inner { display: grid; grid-template-columns: 54% 1fr; gap: 60px; align-items: start; }
.feat--rev .feat__inner { grid-template-columns: 1fr 54%; }
.feat__photos { position: relative; padding-bottom: 90px; }
.feat__photo-main { width: 88%; aspect-ratio: 4 / 3; overflow: hidden; }
.feat__photo-main img { width: 100%; height: 100%; object-fit: cover; }
.feat__photo-sub {
  position: absolute; right: 0; bottom: 0; width: 46%; aspect-ratio: 1 / 1; overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.15);
}
.feat__photo-sub img { width: 100%; height: 100%; object-fit: cover; }
.feat__photos--pair { display: grid; grid-template-columns: 1fr 1.3fr; gap: 18px; padding-bottom: 0; align-items: start; }
.feat__photos--pair figure { overflow: hidden; }
.feat__photos--pair figure:first-child { aspect-ratio: 3 / 4; margin-top: 40px; }
.feat__photos--pair figure:last-child { aspect-ratio: 4 / 3; }
.feat__photos--pair img { width: 100%; height: 100%; object-fit: cover; }
.feat .sec-title { margin-bottom: 26px; }
.feat .sec-title__en { font-size: clamp(40px, 5vw, 64px); }
.feat__lead { font-size: 19px; letter-spacing: .14em; margin-bottom: 18px; }
.feat__desc { font-size: 14px; margin-bottom: 30px; }
.feat__desc small { font-size: 12px; color: #7b7b7b; }
.feat__news {
  display: flex; gap: 16px; align-items: center;
  border-top: 1px solid #dbe0d2; border-bottom: 1px solid #dbe0d2;
  padding: 16px 4px; margin-bottom: 34px;
}
.feat__news figure { width: 110px; flex-shrink: 0; aspect-ratio: 4 / 3; overflow: hidden; }
.feat__news img { width: 100%; height: 100%; object-fit: cover; }
.feat__news p { font-size: 12.5px; line-height: 1.7; }
.feat .btn-navy { margin: 0; }

/* =========================================================
   News
========================================================= */
.news { max-width: 1000px; }
.news__list { list-style: none; }
.news__list li {
  display: flex; align-items: center; gap: 20px;
  padding: 20px 26px; font-size: 14px;
}
.news__list li:nth-child(odd) { background: #f6f6f6; }
.news__chip {
  flex-shrink: 0; min-width: 86px; text-align: center;
  border: 1px solid var(--c-navy); color: var(--c-navy);
  font-size: 12px; padding: 2px 10px; letter-spacing: .1em;
}
.news__more {
  display: flex; align-items: center; justify-content: flex-end; gap: 10px;
  margin-top: 26px; padding-right: 6px;
  font-family: var(--ff-en); font-size: 14px; letter-spacing: .14em;
  color: var(--c-ink);
}
.news__more { text-decoration: underline; text-underline-offset: 5px; text-decoration-thickness: 1px; }
.news__more i { font-style: normal; }
.news__more:hover { opacity: .6; }

/* =========================================================
   Cancel policy banner（QR banner風）
========================================================= */
.bnr-pink { padding: 20px 5% 70px; }
.bnr-pink__inner {
  display: flex; align-items: center; gap: 26px;
  max-width: 760px; margin: 0 auto; padding: 18px 30px;
  border: 1px solid var(--c-pink-1); color: var(--c-pink-1);
}
.bnr-pink__title { font-family: var(--ff-en); font-weight: 700; font-size: 17px; letter-spacing: .08em; line-height: 1.3; }
.bnr-pink__inner p { color: var(--c-ink); font-size: 13.5px; }

/* =========================================================
   Feel Yame banner（team530風）
========================================================= */
.local { padding: 0 5% 90px; }
.local__inner {
  max-width: 860px; margin: 0 auto; background: #ececec;
  display: grid; grid-template-columns: 310px 1fr; align-items: center;
}
.local__photo { height: 100%; min-height: 210px; }
.local__photo img { width: 100%; height: 100%; object-fit: cover; }
.local__txt { padding: 30px 36px; font-size: 13.5px; }
.local__script { font-family: var(--ff-script); font-size: 26px; color: var(--c-ink); letter-spacing: .06em; margin-bottom: 6px; }
.local__txt a { display: inline-block; margin-top: 14px; border-bottom: 1px solid var(--c-ink); letter-spacing: .1em; }
.local__txt a:hover { opacity: .6; }

/* =========================================================
   Access
========================================================= */
.access { display: grid; grid-template-columns: 38% 1fr; max-width: 1216px; margin: 0 auto 110px; padding: 0 16px; }
.access__info { background: var(--c-slate); color: #fff; padding: 56px 44px 48px; }
.access__title { margin-bottom: 22px; }
.access__title-en { display: block; font-family: var(--ff-en); font-weight: 700; font-size: clamp(44px, 4.5vw, 60px); letter-spacing: .04em; line-height: 1.1; }
.access__title-en i { font-style: normal; color: #b9c2ae; font-size: 1.25em; vertical-align: -0.06em; }
.access__title-jp { display: block; font-size: 13px; letter-spacing: .22em; margin-top: 6px; }
.access__lead { font-size: 20px; letter-spacing: .12em; margin-bottom: 26px; }
.access__addr { margin-bottom: 28px; }
.access__addr-label { display: flex; align-items: center; gap: 6px; font-family: var(--ff-en); font-size: 13px; letter-spacing: .14em; margin-bottom: 6px; }
.access__addr-txt { border-left: 2px solid #fff; padding-left: 14px; font-size: 14.5px; line-height: 1.9; }
.btn-navy--line { margin: 0 0 30px; width: 250px; }
.access__note { font-size: 11.5px; line-height: 2; }
.access__note p { margin-bottom: 10px; }
.access__caution { opacity: 1; }
.access__photo { min-height: 420px; }
.access__photo img { width: 100%; height: 100%; object-fit: cover; }

/* =========================================================
   Closing / Footer
========================================================= */
.closing { background: var(--c-bg-soft); border-bottom: 1px solid #e3e3e3; padding: 40px 5%; text-align: center; }
.closing p { font-family: var(--ff-en); font-size: clamp(20px, 3vw, 27px); letter-spacing: .12em; color: var(--c-navy); }
.footer { background: #efefef; padding: 60px 5% 30px; text-align: center; }
.footer__logo { width: 88px; margin: 0 auto 10px; mix-blend-mode: multiply; }
.footer__name { font-size: 15px; letter-spacing: .3em; margin-bottom: 4px; }
.footer__hours { font-size: 12px; color: #666; margin-bottom: 22px; }
.footer__contact { margin-bottom: 18px; }
.footer__contact-btn {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid var(--c-ink); padding: 10px 30px;
  font-family: var(--ff-en); font-size: 14px; letter-spacing: .1em; transition: .3s;
}
.footer__contact-btn:hover { background: var(--c-ink); color: #fff; }
.footer__sns { display: flex; justify-content: center; gap: 14px; margin-bottom: 30px; }
.footer__sns a { color: var(--c-ink); }
.footer__nav { display: flex; flex-wrap: wrap; justify-content: center; margin-bottom: 26px; }
.footer__nav a { font-size: 12.5px; letter-spacing: .12em; padding: 4px 14px; border-right: 1px solid #c8c8c8; }
.footer__nav a:first-child { border-left: 1px solid #c8c8c8; }
.footer__nav a:hover { opacity: .6; }
.footer__copy { font-size: 10.5px; color: #666; letter-spacing: .14em; }

/* =========================================================
   Responsive
========================================================= */
.pc { display: inline; }
@media (max-width: 1100px) {
  .header__btn { width: 120px; font-size: 10.5px; }
}
@media (min-width: 601px) and (max-width: 900px) {
  .exp__cards { grid-template-columns: repeat(2, 1fr); }
  .exp__card, .exp__card--lg { grid-column: auto; }
}
@media (max-width: 900px) {
  :root { --header-h: 64px; }
  .pc { display: none; }
  .header { padding-left: 14px; }
  .header__logo { gap: 8px; min-width: 0; }
  .header__logo img { width: 40px; height: 40px; flex-shrink: 0; }
  .header__logo-txt { font-size: 13px; letter-spacing: .06em; white-space: nowrap; }
  .header__logo-txt small { display: none; }
  .header__sns { display: none; }
  .header .header__btn { display: none; }
  .sp-reserve { display: grid; grid-template-columns: 1fr 1fr; }
  .sp-reserve .header__btn { display: flex; width: 100%; height: 58px; font-size: 11px; }
  .hero { height: 72vh; border-width: 16px; }
  .hero__dots { right: 20px; bottom: 12px; }
  .book__inner { grid-template-columns: 1fr; gap: 14px; padding: 22px 20px; }
  .book__label { flex-direction: row; justify-content: center; }
  .book__form { flex-direction: column; align-items: stretch; gap: 16px; }
  .book__field { max-width: none; flex: none; }
  .book__search { width: 100%; }
  .book__tel { margin: 4px auto 0; font-size: 12px; text-align: center; }
  .plan__list { grid-template-columns: 1fr; gap: 40px; }
  .feat__inner, .feat--rev .feat__inner { grid-template-columns: 1fr; gap: 40px; }
  .feat--rev .feat__txt { order: 2; }
  .feat--rev .feat__photos { order: 1; }
  .news__list li { flex-direction: column; align-items: flex-start; gap: 8px; }
  .bnr-line__inner { flex-wrap: wrap; }
  .bnr-pink__inner { flex-direction: column; text-align: center; gap: 10px; }
  .local__inner { grid-template-columns: 1fr; }
  .local__photo { min-height: 200px; max-height: 260px; overflow: hidden; }
  .access { grid-template-columns: 1fr; padding: 0; }
  .access__photo { min-height: 260px; }
  .band-dark p { font-size: 15px; }
}
@media (max-width: 600px) {
  .exp__cards { grid-template-columns: 1fr; }
  .exp__card, .exp__card--lg { grid-column: auto; }
}
@media (max-width: 520px) {
  .hero { border-width: 12px; }
  .book__tel .sp { display: inline; }
}

/* =========================================================
   WordPress: コラム（一覧・記事）
========================================================= */
.page-plain { display: block; }
.column-hero {
  background: var(--c-blue-pale);
  padding: calc(var(--header-h) + 56px) 5% 48px;
  text-align: center;
}
.column-hero .sec-title { margin-bottom: 14px; }
.column-hero__lead { font-size: 14px; letter-spacing: .1em; }
.column-archive { padding-top: 60px; }
.column-date { margin-top: 10px; font-size: 12px; color: #7b7b7b; font-family: var(--ff-en); letter-spacing: .1em; }
.column-cat {
  display: inline-block; margin-left: 12px; padding: 1px 10px;
  border: 1px solid var(--c-navy); color: var(--c-navy); font-family: var(--ff-jp); font-size: 11px;
}
.column-sec .plan__item h3 { text-decoration: none; }
.column-empty { text-align: center; padding: 40px 0 20px; }
.wp-pagination { margin-top: 48px; text-align: center; }
.wp-pagination .nav-links { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; }
.wp-pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 40px; height: 40px; padding: 0 10px;
  border: 1px solid var(--c-navy); color: var(--c-navy);
  font-family: var(--ff-en); font-size: 14px;
}
.wp-pagination .page-numbers.current { background: var(--c-navy); color: #fff; }
.wp-pagination .page-numbers:hover:not(.current) { background: var(--c-blue-pale); }

/* ---------- 記事ページ ---------- */
.entry { max-width: 760px; margin: 0 auto; padding: calc(var(--header-h) + 64px) 5% 90px; }
.entry__header { margin-bottom: 28px; }
.entry__meta { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.entry__date { font-family: var(--ff-en); font-size: 13px; color: #7b7b7b; letter-spacing: .12em; }
.entry__title { font-size: clamp(22px, 3.4vw, 30px); line-height: 1.6; letter-spacing: .06em; color: var(--c-ink); }
.entry__eyecatch { margin-bottom: 36px; }
.entry__eyecatch img { width: 100%; height: auto; }
.entry-content { font-size: 15px; line-height: 2.1; }
.entry-content > * + * { margin-top: 1.4em; }
.entry-content h2 {
  margin-top: 2.4em; padding: .5em .9em;
  background: var(--c-blue-pale); border-left: 4px solid var(--c-navy);
  font-size: 20px; letter-spacing: .06em; line-height: 1.6;
}
.entry-content h3 {
  margin-top: 2em; padding-bottom: .35em;
  border-bottom: 2px solid var(--c-blue-lt);
  font-size: 17.5px; letter-spacing: .06em;
}
.entry-content h4 { margin-top: 1.8em; font-size: 15.5px; color: var(--c-navy); }
.entry-content ul, .entry-content ol { padding-left: 1.6em; }
.entry-content li + li { margin-top: .4em; }
.entry-content a { color: var(--c-blue); text-decoration: underline; text-underline-offset: 3px; }
.entry-content img { max-width: 100%; height: auto; }
.entry-content blockquote {
  padding: 1em 1.4em; background: var(--c-cream); border-left: 4px solid var(--c-cream-bd);
  font-size: 14px;
}
.entry-content table { border-collapse: collapse; width: 100%; }
.entry-content th, .entry-content td { border: 1px solid #d9d9d9; padding: .6em .8em; font-size: 14px; }
.entry-content th { background: var(--c-blue-pale); }
.entry__cta {
  margin-top: 56px; padding: 34px 24px;
  background: var(--c-cream); border-radius: .7em; text-align: center;
  position: relative;
}
.entry__cta::before {
  content: ""; position: absolute; inset: .7em;
  border: 1px solid var(--c-cream-bd); border-radius: .7em; pointer-events: none;
}
.entry__cta-copy { margin-bottom: 18px; font-size: 15px; letter-spacing: .08em; }
.entry__cta .btn-pink { position: relative; }
.entry__nav {
  display: flex; justify-content: space-between; gap: 20px;
  margin-top: 44px; padding-top: 24px; border-top: 1px solid #dbe0d2;
  font-size: 13px;
}
.entry__nav a { color: var(--c-navy); }
.entry__nav a:hover { text-decoration: underline; }
.entry__nav-next { text-align: right; }
.entry__back { margin-top: 36px; text-align: center; }
.entry__back .btn-navy { margin: 0 auto; }
@media (max-width: 600px) {
  .entry__nav { flex-direction: column; }
  .entry__nav-next { text-align: left; }
}

/* =========================================================
   WordPress 運用パーツ（パンくず・目次・カテゴリー・お知らせ）
========================================================= */
/* ---------- パンくずリスト ---------- */
.breadcrumbs { max-width: 1000px; margin: 0 auto; padding: 18px 5% 0; }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; font-size: 11.5px; color: #7b7b7b; }
.breadcrumbs li + li::before { content: "›"; margin-right: 6px; color: #b5b5b5; }
.breadcrumbs a { color: var(--c-navy); }
.breadcrumbs a:hover { text-decoration: underline; }
.page-plain .breadcrumbs { padding-top: calc(var(--header-h) + 18px); }
.page-plain .column-hero + .breadcrumbs { padding-top: 18px; }

/* ---------- カテゴリーナビ ---------- */
.cat-nav {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  max-width: 1000px; margin: 26px auto 0; padding: 0 5%;
}
.cat-nav__item {
  display: inline-flex; align-items: center; padding: 7px 18px;
  border: 1px solid var(--c-blue-lt); border-radius: 999px;
  font-size: 12.5px; letter-spacing: .06em; color: var(--c-navy); transition: .2s;
}
.cat-nav__item:hover { background: var(--c-blue-pale); }
.cat-nav__item.is-current { background: var(--c-navy); border-color: var(--c-navy); color: #fff; }

/* ---------- 記事の目次 ---------- */
.toc {
  max-width: 760px; margin: 0 auto 36px; padding: 22px 26px;
  background: var(--c-cream); border: 1px solid var(--c-cream-bd); border-radius: .6em;
}
.toc__title {
  font-family: var(--ff-en); font-size: 15px; font-weight: 700; letter-spacing: .12em;
  color: var(--c-navy); margin-bottom: 10px; padding-bottom: 8px;
  border-bottom: 1px solid var(--c-cream-bd);
}
.toc ol { list-style: none; counter-reset: toc; }
.toc li { font-size: 13.5px; line-height: 1.9; }
.toc .toc__lv2 { counter-increment: toc; }
.toc .toc__lv2::before { content: counter(toc) ". "; color: var(--c-blue); font-family: var(--ff-en); }
.toc .toc__lv3 { padding-left: 1.4em; font-size: 12.5px; }
.toc .toc__lv3::before { content: "– "; color: #a9b39c; }
.toc a { color: var(--c-ink); }
.toc a:hover { color: var(--c-navy); text-decoration: underline; }

/* ---------- 記事メタ ---------- */
.entry__updated { font-size: 11.5px; color: #8f8f8f; }
.entry__meta a.news__chip { text-decoration: none; }
.entry__meta a.news__chip:hover { background: var(--c-blue-pale); }
.entry__tags { margin-top: 26px; font-size: 12px; color: #7b7b7b; }
.entry__tags a { color: var(--c-navy); border-bottom: 1px solid currentColor; margin-right: 8px; }
.entry--news .entry-content { font-size: 15px; }

/* 記事内のポイント囲み（ブロックパターン） */
.entry-content .ymc-point {
  background: var(--c-blue-pale); border-radius: .6em; padding: 20px 24px;
}
.entry-content .ymc-point__title {
  font-weight: 700; color: var(--c-navy); font-size: 15px; margin-bottom: .4em;
}
.entry-content .ymc-point__title::before { content: "✓ "; }

/* ---------- 一覧の抜粋 ---------- */
.column-excerpt { margin-top: 8px; font-size: 12.5px; color: #6b6b6b; line-height: 1.8; }
.column-hero__lead { max-width: 720px; margin: 0 auto; }

/* ---------- お知らせ一覧 ---------- */
.news__list li { position: relative; }
.news__list li p { flex: 1; }
.news__list li p a { color: var(--c-ink); }
.news__list li p a:hover { color: var(--c-navy); text-decoration: underline; }
.news__date { flex-shrink: 0; font-family: var(--ff-en); font-size: 12px; color: #8f8f8f; letter-spacing: .08em; }
.news-archive { padding-top: 40px; }
.related { padding-top: 20px; padding-bottom: 60px; }
.related .sec-title { margin-bottom: 36px; }

/* ---------- フッター住所 ---------- */
.footer__addr { font-size: 11.5px; color: #666; margin: -18px 0 22px; }

@media (max-width: 900px) {
  .news__list li { flex-direction: row; flex-wrap: wrap; align-items: center; }
  .news__list li p { flex-basis: 100%; order: 3; }
  .toc { padding: 18px 20px; }
}
