/* ============================================================
   UTILITY CENTER OGIMI — v6
   Compact spacing (merhalsa/maruai balance),
   Outline buttons/tags (transparent bg + colored border),
   Blue #00a1af accent, small text is dark & bold.
   ============================================================ */

:root {
  --bg:         #fbfaf7;
  --bg-alt:     #f3f1ec;
  --white:      #ffffff;

  /* text — darker, bolder tone */
  --ink:        #14100c;    /* near black, warm */
  --ink-2:      #2a2724;    /* small text stays dark */
  --mute:       #6b6560;

  --line:       rgba(20, 16, 12, 0.12);
  --line-soft:  rgba(20, 16, 12, 0.06);
  --shadow-sm:  rgba(20, 16, 12, 0.05);
  --shadow-md:  rgba(20, 16, 12, 0.09);

  /* Utility Center BLUE */
  --accent:      #00a1af;
  --accent-2:    #33b5c0;
  --accent-dark: #007986;
  --accent-wash: #eaf7f8;

  /* colorful tag borders */
  --tg-blue:   #00a1af;
  --tg-red:    #d15a3a;
  --tg-orange: #d68a1a;
  --tg-purple: #7a3a9a;
  --tg-green:  #4a9d5a;
  --tg-yellow: #b8862a;

  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "游ゴシック", "Yu Gothic", Meiryo, system-ui, sans-serif;

  --container: 1180px;
  --gutter:    clamp(16px, 3vw, 40px);
  --r-btn:     4px;
  --r-card:    8px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.7;
  letter-spacing: 0;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
* { font-weight: 600 !important; }
h1, h2, h3, h4 { font-weight: 700 !important; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color .2s; }
ul, ol { list-style: none; padding: 0; margin: 0; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
em, i { font-style: normal; }

.skip {
  position: absolute; left: -999px; top: 0;
  background: var(--accent); color: #fff; padding: 6px 12px; z-index: 100;
}
.skip:focus { left: 12px; top: 12px; }

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ===== section defaults — compact ===== */
.section {
  padding: 64px 0 56px;
  background: var(--bg);
}
.section--alt { background: var(--bg-alt); }

@media (min-width: 900px) {
  .section { padding: 88px 0 72px; }
}

/* ===== section head ===== */
.sh {
  text-align: center;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* Order: JAPANESE first, ENGLISH second, LEAD third */
.sh__ja {
  order: 1;
  margin: 0 0 6px;
  font-size: 22px;
  letter-spacing: 0.06em;
  color: var(--ink);
}
.sh__en {
  order: 2;
  margin: 0 0 16px;
  font-size: 14px;
  letter-spacing: 0.24em;
  color: var(--accent);
  text-transform: uppercase;
}
.sh__en em { font-weight: 800 !important; }
.sh__navtag {                 /* セクション見出し上のナビ対応タグ（青枠・最上部） */
  order: 0;
  display: inline-block;
  margin: 0 0 12px;
  padding: 2px 13px;
  border: 1px solid var(--accent);
  border-radius: 4px;
  color: var(--accent);
  font-size: 11px;
  letter-spacing: 0.1em;
}
.sh__lead {
  order: 3;
  max-width: 560px;
  margin: 0 auto;
  font-size: 13.5px;
  line-height: 1.85;
  color: var(--ink-2);
  text-wrap: balance;
}
@media (min-width: 900px) {
  .sh { margin-bottom: 40px; }
  .sh__ja { font-size: 26px; }
  .sh__lead { font-size: 14px; }
}

/* ===== outline buttons (transparent bg + colored border) ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  border-radius: var(--r-btn);
  border: 1.5px solid var(--accent);
  background: transparent;
  color: var(--accent);
  font-size: 13px;
  letter-spacing: 0.06em;
  transition: background .2s, color .2s, border-color .2s;
}
.btn:hover { background: var(--accent); color: #fff; }
.btn--sm  { padding: 8px 14px;  font-size: 12px; }
.btn--lg  { padding: 14px 28px; font-size: 14px; }
.btn--fill { background: var(--accent); color: #fff; border-color: var(--accent); }  /* 塗りボタン(青背景・白文字) */
.btn--fill:hover { background: #008a96; border-color: #008a96; color: #fff; }

/* generic tag (outline chip) */
.chip {
  display: inline-block;
  padding: 3px 10px;
  border-radius: var(--r-btn);
  border: 1.5px solid var(--accent);
  background: transparent;
  color: var(--accent);
  font-size: 11px;
  letter-spacing: 0.1em;
}

/* =====================================================================
   HEADER
   ===================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s;
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: var(--line);
}
.site-header__inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex; align-items: center; gap: 28px;
}

.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); }
.brand__mark { color: var(--accent); }
.brand__text { display: inline-flex; flex-direction: column; align-items: flex-start; text-align: left; line-height: 1.15; }
.brand__ja { font-size: 14px; letter-spacing: 0.04em; color: var(--ink); white-space: nowrap; }
.brand__en { font-size: 10px; letter-spacing: 0.2em; color: var(--mute); margin-top: 3px; }
.brand__tag { font-size: 10px; letter-spacing: 0.18em; color: var(--mute); margin: 0 0 3px; }

.site-nav { margin-left: auto; }
.site-nav ul { display: flex; gap: clamp(10px, 1.2vw, 20px); }
.site-nav a {
  font-size: 12px;   /* 2026-08-21 中西さん指示: ヘッダーリンク1段小さく(13→12) */
  letter-spacing: 0.06em;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
  white-space: nowrap;    /* メニュー項目は折り返さない */
}
.site-nav a::after {
  content: "";
  position: absolute; left: 50%; right: 50%; bottom: 0;
  height: 2px;
  background: var(--accent);
  transition: left .3s var(--ease), right .3s var(--ease);
}
.site-nav a:hover { color: var(--accent); }
.site-nav a:hover::after { left: 0; right: 0; }

/* ===== ドロップダウン式ナビ（4グループ・2026-08-19） ===== */
.nav-group { position: relative; }
.nav-group__btn {
  font-size: 12px;   /* 2026-08-21 中西さん指示: ヘッダーリンク1段小さく(13→12) */
  letter-spacing: 0.06em;
  color: var(--ink);
  padding: 8px 2px;
  white-space: nowrap;
  display: inline-flex; align-items: center; gap: 4px;
}
.nav-group__caret { font-size: 9px; color: var(--accent); transition: transform .2s; }
.nav-group:hover .nav-group__btn,
.nav-group.is-open .nav-group__btn { color: var(--accent); }
.nav-group:hover .nav-group__caret,
.nav-group.is-open .nav-group__caret { transform: rotate(180deg); }
.nav-drop {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 200px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  box-shadow: 0 10px 30px var(--shadow-md);
  padding: 6px 0;
  display: flex; flex-direction: column; gap: 0;
  opacity: 0; visibility: hidden;
  transition: opacity .18s, transform .18s, visibility .18s;
}
.nav-group:hover .nav-drop,
.nav-group:focus-within .nav-drop,
.nav-group.is-open .nav-drop {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-drop a {
  display: block;
  padding: 0 18px;
  font-size: 11.5px;           /* 2026-08-21 1段小さく(12.5→11.5。旧: フッターと同寸) */
  line-height: 1.7;            /* フッターと同じ行の高さ */
  letter-spacing: 0;           /* 字間もフッターと同じゼロに（共通メニューの0.06emを打ち消す） */
  text-align: center;
  white-space: nowrap;
}
.nav-drop a::after { display: none; }   /* 下線アニメはドロップ内では使わない */
.nav-drop a:hover { background: var(--accent-wash); color: var(--accent); }
ul.nav-drop { gap: 7px; }   /* フッター(li間7px)と同じ行間。共通ulのgap(約14px)を上書き */

.site-header__tools { display: inline-flex; align-items: center; gap: 10px; }
.site-header__tools .btn { white-space: nowrap; }   /* 予約ボタンは折り返さない */
.hamburger { display: none; width: 32px; height: 32px; position: relative; color: var(--ink); }
.hamburger span {
  position: absolute; left: 4px; right: 4px; height: 2px;
  background: currentColor; border-radius: 2px; transition: .3s;
}
.hamburger span:nth-child(1) { top: 10px; }
.hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.hamburger span:nth-child(3) { bottom: 10px; }
.hamburger[aria-expanded="true"] span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

@media (max-width: 1180px) {
  .site-nav { display: none; }
  .site-nav.is-open {
    display: block;
    position: fixed; top: 60px; left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,0.98);
    padding: 32px var(--gutter);
    overflow-y: auto;
  }
  .site-nav.is-open > ul { flex-direction: column; gap: 22px; }
  .site-nav.is-open .nav-group__btn { font-size: 12px; color: var(--accent); pointer-events: none; }
  .site-nav.is-open .nav-group__caret { display: none; }
  .site-nav.is-open .nav-drop {
    position: static; transform: none; opacity: 1; visibility: visible;
    border: 0; box-shadow: none; background: transparent; padding: 4px 0 0 6px;
  }
  .site-nav.is-open .nav-drop a { font-size: 15px; padding: 7px 0; }
  .site-header__tools .btn { display: none; }
  .hamburger { display: block; margin-left: auto; }
}

/* =====================================================================
   HERO — photo background (compact)
   ===================================================================== */
.hero {
  position: relative;
  min-height: 82vh;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  padding: 120px var(--gutter) 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.hero__photo {
  position: absolute; inset: 0; z-index: -2;
  background-image: url("photos/named/hero-umi.jpg?v=1");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  animation: heroZoom 20s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.02); }
  to   { transform: scale(1.10); }
}
.hero__overlay {
  position: absolute; inset: 0; z-index: -1;
  background: none;   /* 暗いグラデなし・画像をそのまま表示（中西さん指示） */
}
/* 海のキラキラ＋波打つ輝き（海の領域=下部に、テキストの背面で） */
.hero__shimmer {
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 52%; z-index: 0; pointer-events: none;
  background:
    radial-gradient(1.5px 1.5px at 12% 34%, rgba(255,255,255,.95), transparent 60%),
    radial-gradient(2px 2px at 28% 60%, rgba(255,255,255,.7), transparent 60%),
    radial-gradient(1.5px 1.5px at 44% 44%, rgba(255,255,255,.9), transparent 60%),
    radial-gradient(2px 2px at 60% 66%, rgba(255,255,255,.7), transparent 60%),
    radial-gradient(1.5px 1.5px at 74% 40%, rgba(255,255,255,.9), transparent 60%),
    radial-gradient(2px 2px at 86% 62%, rgba(255,255,255,.75), transparent 60%),
    radial-gradient(1.5px 1.5px at 94% 48%, rgba(255,255,255,.9), transparent 60%);
  mix-blend-mode: screen;
  animation: sea-sparkle 4.5s ease-in-out infinite;
}
.hero__shimmer::after {   /* 波打つ光の帯が横にゆっくり流れる */
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 42%, rgba(255,255,255,.13) 50%, transparent 58%);
  animation: sea-wave 8s linear infinite;
}
@keyframes sea-sparkle { 0%,100% { opacity: .4; } 50% { opacity: .95; } }
@keyframes sea-wave { 0% { transform: translateX(-22%); } 100% { transform: translateX(22%); } }
@media (prefers-reduced-motion: reduce) {
  .hero__shimmer, .hero__shimmer::after { animation: none; }
}
.hero__inner { max-width: 780px; margin: 0 auto; }
.hero__eyebrow em {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.32em;
  color: #fff;
  margin: 0 0 18px;
  padding: 5px 12px;
  border: 1.5px solid rgba(255,255,255,0.9);
  border-radius: var(--r-btn);
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}
.hero__motto {
  margin: 0 0 24px;
  font-size: clamp(28px, 4.5vw, 52px);
  line-height: 1.15;
  letter-spacing: 0.08em;
  display: inline-flex;
  gap: clamp(14px, 2vw, 30px);
  align-items: center;
  justify-content: center;
  color: #fff;
  text-shadow: 0 4px 20px rgba(0,0,0,0.4);
  flex-wrap: wrap;
}
/* 各語＝上に大きな語、下に小さなサブラベルを縦に重ねる */
.hero__motto span {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}
.hero__motto span em {
  margin-top: clamp(6px, 0.8vw, 12px);
  font-size: clamp(12px, 1.3vw, 17px);
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.18em;
  opacity: 0.92;
}
.hero__motto i {
  width: 5px; height: 5px;
  background: #fff;
  border-radius: 50%;
  display: inline-block;
  opacity: 0.9;
}
.hero__lead {
  max-width: 600px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.95;
  color: #fff;
}
/* 3行それぞれに、文字サイズにフィットした半透明ダークグラデのカード */
.hero__lead-line {
  display: block;
  width: fit-content;
  margin: 6px auto;
  padding: 1px 2px 1px 4px;  /* 右は約物のアキ分を見込んで更に詰める(左4px/右2px) */
  line-height: 1.3;          /* 縦を文字に密着 */
  font-feature-settings: "palt"; /* 句点・カギ括弧の右アキを詰める */
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(6,10,14,0.34) 0%, rgba(6,10,14,0.52) 100%);
}
.hero__scroll {
  position: absolute; left: 50%; bottom: 14px;
  transform: translateX(-50%);
  z-index: 2;
  display: inline-flex; flex-direction: column; align-items: center; gap: 8px;
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.32em;
}
.hero__scroll span {
  width: 1px; height: 34px;
  background: rgba(255,255,255,0.6);
  position: relative;
  overflow: hidden;
}
.hero__scroll span::after {
  content: ""; position: absolute; inset: -50% 0 auto 0;
  height: 50%;
  background: #fff;
  animation: dropAnim 2.4s var(--ease) infinite;
}
@keyframes dropAnim {
  0% { top: -100%; }
  100% { top: 100%; }
}

/* =====================================================================
   3. HISTORY (horizontal timeline — always scrolls, even on narrow screens)
   ===================================================================== */
.tline {
  display: flex;
  gap: 0;
  padding: 8px 0 20px;
  margin: 0 -8px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  position: relative;
}
.tline::-webkit-scrollbar { display: none; }

.tline li {
  flex: 0 0 clamp(140px, 18vw, 200px);
  scroll-snap-align: start;
  padding: 0 8px 0;      /* 年号→◯→小見出し→文章 の順（年号が最上部） */
  text-align: center;
  position: relative;
}
/* horizontal connecting line — inside each li, spans full width at marker row */
.tline li::before {
  content: "";
  position: absolute;
  top: 30px;              /* marker center y（年号の下） */
  transform: translateY(-50%); /* 線の中心をマーカー丸の中心に合わせる */
  left: 0; right: 0;
  height: 1.5px;
  background: var(--accent);
  opacity: 0.35;
  z-index: 0;
}
.tline li:first-child::before { left: 50%; }
.tline li:last-child::before  { right: 50%; }
/* marker dot */
.tline li::after {
  content: "";
  position: absolute;
  top: 24px;              /* marker top so center = 30（年号の下） */
  left: 50%;
  transform: translateX(-50%);
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--bg-alt);
  border: 2px solid var(--accent);
  z-index: 1;
}
.tline__year {
  display: block;
  font-size: 17px;
  color: var(--ink);
  letter-spacing: 0.02em;
  margin: 0 0 26px;      /* 年号の下に◯の分の余白 */
  line-height: 1;
}
.tline__body h4 {
  font-size: 13px;
  margin: 0 0 6px;
  color: var(--ink);
  letter-spacing: 0.03em;
}
.tline__body p {
  font-size: 11.5px;
  line-height: 1.65;
  color: var(--ink-2);
  margin: 0;
  text-align: left;        /* タイトルは中央・文章は左詰め */
}
.tline__hint {
  display: none;
  text-align: center;
  margin: 10px 0 0;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--accent);
  opacity: 0.75;
}
@media (max-width: 760px) {
  .tline__hint { display: block; }
}

/* --- 3層タイムライン：文章・丸は全区分で統一、区分の違いはタグの色だけで表す --- */
.tline__year { font-size: 14px; white-space: nowrap; }
/* 丸は全区分とも青で統一 */
.tline li::after { background: var(--accent); border-color: var(--accent); }
/* 区分タグ（テキスト＋色）＝学校:青ベタ／現在:青枠／塩屋:緑／沖縄:橙／日本:グレー */
.tline__tag {
  display: inline-block;
  font-size: 10px;
  line-height: 1.5;
  padding: 0 7px;
  margin: 0 0 7px;
  border-radius: 4px;
  letter-spacing: 0.06em;
  border: 1px solid var(--accent);
  color: var(--accent);
  background: transparent;
}
.tline__tag--school  { color: #fff;          background: var(--accent); border-color: var(--accent); }
.tline__tag--now     { color: var(--accent); background: transparent;   border-color: var(--accent); }
.tline__tag--shioya  { color: #2e9e6b; border-color: #2e9e6b; }
.tline__tag--okinawa { color: #e2952f; border-color: #e2952f; }
.tline__tag--japan   { color: #8a8780; border-color: #b7b4ad; }

/* =====================================================================
   4. SERVICES — 4 compact cards
   ===================================================================== */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (min-width: 900px) {
  .svc-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
}
.svc {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px 20px 24px;
  background: var(--white);
  border-radius: var(--r-card);
  border: 1px solid var(--line);
  color: var(--ink);
  transition: transform .25s var(--ease), border-color .25s, box-shadow .25s;
}
.svc:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: 0 10px 24px -16px var(--shadow-md);
}
.svc__icon {
  width: 56px;
  height: 56px;
  color: var(--accent);
  margin: 0 auto 14px;
}
.svc__icon svg { width: 100%; height: 100%; }
.svc__no {
  font-size: 15px;
  color: var(--accent);
  margin: 0 0 4px;
  letter-spacing: 0.02em;
  line-height: 1;
}
.svc p.svc__en {
  font-size: 11px;
  line-height: 1.4;
  letter-spacing: 0.22em;
  color: var(--accent);
  margin: 0 0 12px;
  max-width: none;
}
.svc h3 {
  font-size: 16px;
  margin: 0 0 5px;
  color: var(--ink);
  letter-spacing: 0.03em;
}
.svc p {
  font-size: 12.5px;
  line-height: 1.75;
  color: var(--ink-2);
  margin: 0 0 14px;
  max-width: 220px;
  text-wrap: balance;
}
.svc__more {
  display: inline-block;
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.08em;
}

/* =====================================================================
   5. TOPICS — horizontal slider
   ===================================================================== */
.topics { overflow: hidden; }
.tp-scroller {
  display: flex;
  gap: 14px;
  padding: 8px 0 20px;
  margin: 0 -8px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.tp-scroller::-webkit-scrollbar { display: none; }
.tp-card {
  flex: 0 0 220px;
  scroll-snap-align: start;
  padding: 24px 16px 16px;
  background: transparent;
  border: none;
  border-radius: 0;
  text-align: center;
  transition: transform .3s var(--ease);
}
@media (min-width: 600px) { .tp-card { flex-basis: 240px; } }
.tp-card:hover { transform: translateY(-6px); }
.tp-card__no {
  font-size: 40px;
  color: var(--accent);
  margin: 0 0 6px;
  letter-spacing: 0;
  line-height: 1;
}
.tp-card__cat {
  font-size: 10.5px;
  letter-spacing: 0.22em;
  color: var(--accent);
  margin: 0 auto 14px;
  padding-bottom: 10px;
  border-bottom: 1.5px solid var(--accent);
  display: inline-block;
}
.tp-card h3 {
  font-size: 15.5px;
  line-height: 1.55;
  margin: 0 0 10px;
  color: var(--ink);
  letter-spacing: 0.03em;
}
.tp-card__year {
  font-size: 12px;
  color: var(--accent);
  margin: 0 0 8px;
  letter-spacing: 0.06em;
}
.tp-card__desc {
  font-size: 12px;
  line-height: 1.75;
  color: var(--ink-2);
  margin: 0;
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}
.tp-nav {
  display: flex; align-items: center; gap: 14px;
  max-width: 420px;
  margin: 12px auto 0;
}
.tp-nav__btn {
  width: 36px; height: 36px;
  border-radius: var(--r-btn);
  border: 1.5px solid var(--accent);
  color: var(--accent);
  background: transparent;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .2s, color .2s;
}
.tp-nav__btn:hover { background: var(--accent); color: #fff; }
.tp-progress {
  flex: 1;
  height: 2px;
  background: var(--line);
  position: relative;
  overflow: hidden;
}
.tp-progress span {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 20%;
  background: var(--accent);
  transition: width .3s var(--ease), left .3s var(--ease);
}

/* =====================================================================
   6. ROOMS — compact grid
   ===================================================================== */
.room-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 900px) {
  .room-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .room--wide { grid-column: span 3; }
  .room--wide .room__media { aspect-ratio: 21 / 9; }
}
.room {
  background: var(--white);
  border-radius: var(--r-card);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform .25s var(--ease), border-color .25s, box-shadow .25s;
}
.room:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: 0 10px 24px -16px var(--shadow-md);
}
.room__media {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-alt);
  position: relative;
}
.room__no {
  position: absolute;
  top: 10px; left: 10px;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: #fff;
  padding: 3px 8px;
  background: rgba(0, 121, 134, 0.85);
  border-radius: var(--r-btn);
}
.room__media--soon {
  display: flex; align-items: center; justify-content: center;
  background-color: #eceae4;
  background-image: repeating-linear-gradient(45deg, rgba(20,16,12,0.035) 0 10px, transparent 10px 20px);
}
.room__soon {
  text-align: center; font-size: 12px; line-height: 1.7;
  color: var(--ink-2); letter-spacing: 0.03em; padding: 12px;
}
.room__soon svg { width: 28px; height: 28px; display: block; margin: 0 auto 8px; color: var(--mute); opacity: 0.75; }
.room__soon em { display: block; margin-top: 6px; font-size: 9.5px; font-style: normal; letter-spacing: 0.22em; color: var(--mute); }
.room__body { padding: 14px 16px 16px; }
.room__body p.room__en {
  font-size: 11px;
  line-height: 1.4;
  letter-spacing: 0.22em;
  color: var(--accent);
  margin: 0 0 10px;
  max-width: none;
}
.room__body h3 {
  font-size: 15px;
  margin: 0 0 4px;
  color: var(--ink);
  letter-spacing: 0.03em;
}
.room__body p {
  font-size: 12.5px;
  line-height: 1.75;
  color: var(--ink-2);
  margin: 0;
  text-wrap: balance;
}
.rooms__note {
  text-align: center;
  font-size: 12px;
  color: var(--ink-2);
  margin: 24px 0 0;
  letter-spacing: 0.03em;
}

/* =====================================================================
   7. EVENTS & SCHOOL — inline tags list
   ===================================================================== */
.ev-list {
  display: flex; flex-wrap: wrap; gap: 8px;
  justify-content: center;
  margin: 0 auto;
  max-width: 900px;
}
.ev-list li {
  padding: 8px 14px;
  border: 1.5px solid var(--accent);
  border-radius: var(--r-btn);
  background: transparent;
  color: var(--accent);
  font-size: 13px;
  letter-spacing: 0.04em;
  transition: background .2s, color .2s;
}
.ev-list li:hover { background: var(--accent); color: #fff; }
.ev-cta { text-align: center; margin-top: 24px; }

/* =====================================================================
   8. REGIONAL CALENDAR — horizontal month timeline
      Current month centered on load, scroll left = past, right = future
   ===================================================================== */
.calx { position: relative; overflow: hidden; }
.calx__scroller {
  display: flex;
  gap: 14px;
  padding: 6px 0 24px;
  margin: 0 -8px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.calx__scroller::-webkit-scrollbar { display: none; }

.calx-slot {
  flex: 0 0 240px;
  scroll-snap-align: center;
  padding: 18px 18px 16px;
  background: var(--white);
  border-radius: var(--r-card);
  border: 1px solid var(--line);
  transition: border-color .25s, box-shadow .25s, transform .25s var(--ease);
}
.calx-slot:hover { border-color: var(--accent); transform: translateY(-2px); }
.calx-slot--current {
  border: 2px solid var(--accent);
  box-shadow: 0 10px 28px -14px var(--shadow-md);
}

.calx-slot__head {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding-bottom: 10px;
  margin-bottom: 12px;
  border-bottom: 1.5px solid var(--line);
}
.calx-slot__month {
  font-size: 22px;
  color: var(--ink);
  letter-spacing: 0.04em;
  line-height: 1;
}
.calx-slot--current .calx-slot__month { color: var(--accent); }
.calx-slot__year {
  font-size: 11px;
  color: var(--mute);
  letter-spacing: 0.14em;
}
.calx-slot__now {
  margin-left: auto;
  font-size: 10px;
  letter-spacing: 0.2em;
  padding: 2px 8px;
  border: 1.5px solid var(--accent);
  color: var(--accent);
  border-radius: var(--r-btn);
}

.calx-slot__events { display: flex; flex-direction: column; gap: 12px; }
.calx-slot__events > li {
  padding-bottom: 10px;
  border-bottom: 1px dashed var(--line-soft);
}
.calx-slot__events > li:last-child { border-bottom: 0; padding-bottom: 0; }
.calx-slot__events h4 {
  font-size: 13.5px;
  margin: 0 0 4px;
  color: var(--ink);
  letter-spacing: 0.02em;
  display: flex; align-items: baseline; gap: 6px;
  flex-wrap: wrap;
}
.calx-slot__events h4 em {
  font-size: 10px;
  color: var(--accent);
  letter-spacing: 0.16em;
  padding: 1px 6px;
  border: 1px solid var(--accent);
  border-radius: 3px;
}
.calx-slot__events p {
  font-size: 11.5px;
  color: var(--ink-2);
  margin: 0;
  line-height: 1.55;
  letter-spacing: 0.02em;
}

.calx-nav {
  display: flex; align-items: center; gap: 14px;
  max-width: 480px;
  margin: 6px auto 0;
}
.calx-nav__btn {
  width: 36px; height: 36px;
  border-radius: var(--r-btn);
  border: 1.5px solid var(--accent);
  color: var(--accent);
  background: transparent;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .2s, color .2s;
}
.calx-nav__btn:hover { background: var(--accent); color: #fff; }
.calx-progress {
  flex: 1;
  height: 2px;
  background: var(--line);
  position: relative;
  overflow: hidden;
}
.calx-progress span {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 20%;
  background: var(--accent);
  transition: width .3s var(--ease), left .3s var(--ease);
}

/* =====================================================================
   9. EXPERIENCES — compact grid
   ===================================================================== */
.ex-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 720px) { .ex-list { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .ex-list { grid-template-columns: repeat(4, 1fr); } }
.ex-list li {
  padding: 14px 16px;
  background: var(--white);
  border-radius: var(--r-card);
  border: 1px solid transparent;
  transition: border-color .2s, transform .25s var(--ease);
}
.ex-list li:hover { border-color: var(--accent); transform: translateY(-2px); }
.ex-list__en {
  font-size: 10.5px;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin: 0 0 4px;
}
.ex-list h4 {
  font-size: 13.5px;
  line-height: 1.4;
  margin: 0 0 6px;
  color: var(--ink);
  letter-spacing: -0.02em;   /* 長い施設名を少し詰める */
  display: flex; align-items: baseline; gap: 6px;
  flex-wrap: wrap;
}
.ex-list__ours {
  font-size: 9.5px;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 1px 5px;
  border-radius: 3px;
  letter-spacing: 0.14em;
}
.ex-list__meta {
  font-size: 11px;
  color: var(--ink-2);
  margin: 0;
  letter-spacing: 0.02em;
}
.ex-list__contact {           /* 住所・電話（各カードに） */
  font-size: 10.5px;
  color: var(--ink-2);
  margin: 5px 0 0;
  padding-top: 5px;
  border-top: 1px solid var(--line);
  line-height: 1.5;
  opacity: 0.85;
}
.tel-link { color: var(--accent); text-decoration: none; }  /* 電話番号＝青・タップで発信 */
.tel-link:hover { text-decoration: underline; }
/* 統一カード：店名の下に「ラベル：値」を1行ずつ */
.mrow {
  display: flex;
  gap: 8px;
  font-size: 11.5px;
  line-height: 1.5;
  margin: 3px 0;
  color: var(--ink-2);
}
.mlabel {                 /* 項目ラベル（内容/住所/電話）は非表示・値だけ表示 */
  display: none;
}
.mrow--time .mlabel {     /* 営業時間・定休日だけラベルを表示（値と同じ色・太さ・大きさ） */
  display: inline;
  color: var(--ink-2);
  font-weight: 400;
  min-width: 0;
  margin-right: 5px;
}
.mrow--genre {           /* 内容欄は2行で固定（3行目は隠す）→ 営業・定休が上に詰まり、区切り線が全カード同位置に */
  min-height: 3em;
  max-height: 3em;
  overflow: hidden;
  align-items: flex-start;
}
.ex-tag {                 /* カード内の種別タグ（体験/見学/ガイド/総合案内）＝青枠 */
  display: inline-block;
  margin: 0 0 8px;
  padding: 2px 11px;
  border: 1px solid var(--accent);
  border-radius: 4px;
  color: var(--accent);
  font-size: 10.5px;
  letter-spacing: 0.08em;
}
.mrow--sep {              /* 店名の前の区切り線（上段=内容・営業・定休 / 下段=店名・住所・電話 を分ける） */
  border-top: 1px solid var(--line);
  margin-top: 10px;
  padding-top: 10px;
}
.ex-list .mrow:not(.mrow--genre),
.eats-list .mrow:not(.mrow--genre),
.lod-list .mrow:not(.mrow--genre) {  /* 内容以外の行は1行固定（折り返しで区切り線がズレないように） */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.eats-list > li > h4, .lod-list > li > h4, .ex-list > li > h4 {
  min-height: 2.9em; max-height: 2.9em; overflow: hidden;  /* 店名を2行分で固定（2行目も完全に表示）→ 区切り線を全カードで揃える */
}
@media (max-width: 719px) {   /* 狭い画面はカードが細く長い名前が3行になる → 隠さず3行まで見せる（高さは全カード共通なので線は揃ったまま） */
  .eats-list > li > h4, .lod-list > li > h4, .ex-list > li > h4 {
    min-height: 4.35em; max-height: 4.35em;
  }
  .ex-list .mrow--genre, .eats-list .mrow--genre, .lod-list .mrow--genre {
    min-height: 4.5em; max-height: 4.5em;
  }
}

/* =====================================================================
   10. LODGING — same style as ex-list
   ===================================================================== */
.lod-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 720px) { .lod-list { grid-template-columns: repeat(3, 1fr); } }
.lod-list li {
  padding: 14px 16px;
  background: var(--white);
  border-radius: var(--r-card);
  border: 1px solid transparent;
  transition: border-color .2s, transform .25s var(--ease);
}
.lod-list li:hover { border-color: var(--accent); transform: translateY(-2px); }
.lod-list__en {
  font-size: 10.5px;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin: 0 0 4px;
}
.lod-list h4 {
  font-size: 13.5px;
  margin: 0 0 6px;
  color: var(--ink);
  letter-spacing: 0.03em;
}
.lod-list__meta {
  font-size: 11px;
  color: var(--ink-2);
  margin: 0;
  letter-spacing: 0.02em;
}
.lodging__note {
  text-align: center;
  font-size: 11.5px;
  color: var(--ink-2);
  margin: 20px 0 0;
}

/* =====================================================================
   11. LOCAL EATS
   ===================================================================== */
.eats-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 720px) { .eats-list { grid-template-columns: repeat(4, 1fr); } }
.eats-list li {
  padding: 14px 16px;
  background: var(--white);
  border-radius: var(--r-card);
  border: 1px solid transparent;
  transition: border-color .2s, transform .25s var(--ease);
}
.eats-list li:hover { border-color: var(--accent); transform: translateY(-2px); }
.eats-list__area {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin: 0 0 4px;
}
.eats-list h4 {
  font-size: 13.5px;
  margin: 0 0 6px;
  color: var(--ink);
  letter-spacing: 0.03em;
}
.eats-list__meta {
  font-size: 11px;
  color: var(--ink-2);
  margin: 0;
  letter-spacing: 0.02em;
  line-height: 1.6;
}
.restaurant__note {
  text-align: center;
  font-size: 11.5px;
  color: var(--ink-2);
  margin: 20px 0 0;
}

/* =====================================================================
   13. ACCESS
   ===================================================================== */
.acc {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
}
@media (min-width: 900px) { .acc { grid-template-columns: 1fr 1fr; gap: 32px; } }

.acc__info dl { margin: 0; }
.acc__info dl > div {
  display: grid;
  grid-template-columns: 120px 1fr;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
  align-items: baseline;
  gap: 12px;
}
.acc__info dt {
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.16em;
  margin: 0;
}
.acc__info dd {
  font-size: 13px;
  color: var(--ink-2);
  margin: 0;
  line-height: 1.7;
}
.acc__cta { margin-top: 20px; }

.acc__map {
  aspect-ratio: 4 / 3;
  background: #dfe7ea;
  border: 1.5px solid var(--accent);   /* 2026-08-26 中西さん指示：地図のまわりもサイトの青の枠に */
  border-radius: var(--r-card);
  position: relative;
  overflow: hidden;
}
.acc__map iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0; display: block;
}

/* =====================================================================
   14. INFORMATION
   ===================================================================== */
.info-block { margin-bottom: 32px; }
.info-block:last-child { margin-bottom: 0; }
.info-block__h {
  font-size: 15px;
  color: var(--ink);
  letter-spacing: 0.06em;
  margin: 0 0 14px;
  padding-bottom: 8px;
  border-bottom: 1.5px solid var(--accent);
  max-width: fit-content;
}

/* お知らせ */
.info-news { max-width: 820px; margin: 0 auto; }
.info-news li {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 14px;
  padding: 10px 4px;
  border-bottom: 1px dashed var(--line);
  align-items: center;
}
.info-news time { font-size: 12.5px; color: var(--accent); letter-spacing: 0.02em; }
.info-news a, .info-news span { font-size: 13px; color: var(--ink); }  /* リンク先ができるまでは span で掲載 */
.info-news a:hover { color: var(--accent); }

/* お知らせ & ニュース（2カラム） */
.news-cols { display: grid; grid-template-columns: 1fr; gap: 28px; }
@media (min-width: 800px) { .news-cols { grid-template-columns: 1fr; gap: 40px; max-width: 820px; margin: 0 auto; } }  /* 2026-08-21 中西さん指示: お知らせ/ニュースを同じひな形で上下に */
.news-col__h {
  font-size: 15px; color: var(--ink); letter-spacing: .06em;
  margin: 0 0 14px; padding-bottom: 8px;
  border-bottom: 1.5px solid var(--accent); max-width: fit-content;
}
.news-col .info-news { max-width: none; }
.news-col .section-wip { margin: 0; text-align: left; max-width: none; }
.news-col__intro { margin: 0 0 12px; font-size: 13px; line-height: 1.7; color: var(--ink-2); }
.news-preview { list-style: none; margin: 0 0 4px; padding: 0; }
.news-preview li {
  position: relative; padding: 8px 4px 8px 18px;
  font-size: 13px; line-height: 1.6; color: var(--ink);
  border-bottom: 1px dashed var(--line);
}
.news-preview li::before {
  content: ""; position: absolute; left: 2px; top: 15px;
  width: 5px; height: 5px; border-radius: 50%; background: var(--accent);
}
.news-col .feature__note { text-align: left; }

/* 準備中セクションの「見える化」カード（投票 / Bunagaya Club 共通） */
.feature { max-width: 900px; margin: 0 auto; }
.feature__lead { margin: 0 0 24px; text-align: center; font-size: 15px; line-height: 1.9; color: var(--ink); }
.feature-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 720px) { .feature-list { grid-template-columns: repeat(3, 1fr); } }
.feature-list li {
  background: var(--white); border: 1px solid rgba(20,16,12,.08);
  border-radius: var(--r-card); padding: 18px 18px 16px;
}
.feature-list h4 {
  margin: 0 0 8px; font-size: 14px; font-weight: 700; color: var(--accent);
  padding-left: 14px; position: relative;
}
.feature-list h4::before {
  content: ""; position: absolute; left: 0; top: 6px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
}
.feature-list p { margin: 0; font-size: 12.5px; line-height: 1.7; color: var(--ink-2); }
.feature__note { margin: 22px 0 0; text-align: center; font-size: 12px; color: var(--ink-2); opacity: .8; }

/* 生活情報バッジ */
.info-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
@media (min-width: 600px) { .info-badges { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .info-badges { grid-template-columns: repeat(5, 1fr); max-width: 922px; margin-left: auto; margin-right: auto; } }  /* 2026-08-21 中西さん指示: PCは横6→5列。幅は「自動車・民間車検場」が1行で収まる最小(1枚178px×5+隙間8×4=922px) */
.info-badges li {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  background: var(--white);
  border-radius: var(--r-card);
  border: 1px solid transparent;
  transition: border-color .2s, transform .2s;
}
.info-badges li:hover { border-color: var(--accent); transform: translateY(-2px); }
.info-badges .badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
  flex-shrink: 0;
  color: var(--accent);
  background: var(--accent-wash);
  border-radius: var(--r-btn);
}
.info-badges .badge svg { width: 18px; height: 18px; }
.info-badges a, .info-badges .badge-txt { font-size: 12.5px; color: var(--ink); }  /* リンク先ページができるまでは .badge-txt(span) で表示 */
.info-badges a:hover { color: var(--accent); }

/* =====================================================================
   16. CONTACT
   ===================================================================== */
.ctc {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}
@media (min-width: 900px) { .ctc { grid-template-columns: 2fr 1fr; gap: 40px; } }

.ctc__form { display: flex; flex-direction: column; gap: 14px; }
.ctc__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 720px) { .ctc__row { grid-template-columns: 1fr 1fr; } }

.ctc__form label {
  display: flex; flex-direction: column; gap: 6px;
  font-size: 12.5px;
  color: var(--ink);
  letter-spacing: 0.03em;
}
.ctc__full { grid-column: 1 / -1; }
.ctc__req {
  display: inline-block;
  margin-left: 8px;
  padding: 1px 6px;
  font-size: 10px;
  background: var(--accent);
  color: #fff;
  border-radius: 3px;
  letter-spacing: 0.1em;
}
.ctc__form input,
.ctc__form select,
.ctc__form textarea {
  padding: 10px 12px;
  font: inherit;
  font-size: 13px;
  color: var(--ink);
  background: var(--white);
  border: 1.5px solid var(--accent);   /* 2026-08-26 中西さん指示：入力欄の枠を薄グレー→サイトの青に */
  border-radius: var(--r-btn);
  transition: border-color .2s, box-shadow .2s;
  font-weight: 600;
}
/* 高さ合わせ：select はブラウザが line-height を無視するので、入力欄と同じ計算式で高さを与える
   （行の高さ 1.7em ＋ 上下パディング20px ＋ 上下枠3px。2026-08-26 中西さん指摘「お問い合わせ内容だけ狭い」） */
.ctc__form input,
.ctc__form select {
  height: calc(1.7em + 23px);
}
.ctc__form input:focus,
.ctc__form select:focus,
.ctc__form textarea:focus {
  outline: 0;
  border-color: var(--accent-dark);    /* 枠が最初から青になったので、入力中は濃い青＋淡い輪で区別する */
  box-shadow: 0 0 0 3px var(--accent-wash);
}
.ctc__actions { margin-top: 8px; }
.ctc__note { font-size: 11px; color: var(--ink-2); margin: 8px 0 0; }  /* 送信＝メールソフトが開く説明 */

.ctc__side { display: flex; flex-direction: column; gap: 20px; }
/* PC：右の2枚のカードの上端を、左の「ご連絡先メール」の入力欄の上端にそろえる
   （2026-08-26 中西さん指示）。27px＝ラベル1行 12.5px×1.7≒21px ＋ ラベルと入力欄のすき間 6px */
@media (min-width: 900px) { .ctc__side { margin-top: 27px; } }
.ctc__side-item {
  padding: 16px 18px;
  background: var(--white);
  border-radius: var(--r-card);
  border: 1.5px solid var(--accent);   /* 2026-08-26 中西さん指示：電話・Emailのカードも青枠に（入力欄と同じ1.5px） */
}
.ctc__label {
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin: 0 0 6px;
}
.ctc__phone {
  display: inline-block;
  font-size: 15px;                 /* 2026-08-26 中西さん指示：電話番号を小さく＝メールアドレスと同じ大きさに */
  color: var(--ink);
  margin: 0 0 4px;
  letter-spacing: 0.02em;
}
.ctc__phone--sm { font-size: 15px; }
.ctc__phone:hover { color: var(--accent); }
.ctc__hours {
  font-size: 11.5px;
  color: var(--ink-2);
  margin: 0;
}

/* =====================================================================
   FOOTER (blue background, all white)
   ===================================================================== */
.site-footer {
  background: var(--accent);
  color: #fff;
  padding-top: 56px;
}
.site-footer,
.site-footer *,
.site-footer a { color: #fff; }
.site-footer a:hover { opacity: 0.72; }

.site-footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 40px;
}
@media (min-width: 900px) {
  .site-footer__top { grid-template-columns: 1.2fr 2.2fr; gap: 48px; }
}

/* フッターのブランド＝ヘッダーと同じ構成・サイズ、色だけ白（中西さん指定 2026-08-19） */
/* フッターのマーク：ヘッダーと同じ高さに置く（2026-08-26 中西さん指示）。
   .brand は align-items:center なので、フッターだけ3行目のアルファベットの分だけマークが下がっていた。
   マークの下に「アルファベット行 11.5px ＋ その上の余白 3px」を足すと、中心が 7.25px 上がり、
   ヘッダーと同じ「社名2行に対する中央」の位置になる＝アルファベットを無視した位置。 */
.brand--footer .brand__mark { color: #fff; margin-bottom: 14.5px; }
.brand--footer .brand__tag { color: rgba(255,255,255,0.8) !important; font-size: 10px; }
.brand--footer .brand__ja { color: #fff !important; font-size: 14px; }
.brand--footer .brand__en { color: rgba(255,255,255,0.75); }

.site-footer__motto {          /* 社名「大宜味ユーティリティーセンター」と、始まりも終わりも同じ位置に揃える
                                  （2026-08-25 中西さん指示）。左端38px＝マーク28px＋すき間10px、
                                  幅218px＝社名の幅そのまま。よって右端256pxも社名と一致する */
  width: 218px;
  font-size: 12.5px;
  letter-spacing: 0.2em;
  color: #fff;
  margin: 14px 0 14px 38px;    /* 左38px＝マーク28px＋すき間10px。社名の始まりと同じ位置 */
  text-align: justify;
  text-align-last: justify;
}
.site-footer__addr {
  font-size: 12.5px;
  line-height: 1.9;
  color: #fff;
  font-style: normal;
  margin: 0 0 20px 38px;   /* 左38px＝マーク28px＋すき間10px。社名・モットーと始まりをそろえる
                              （2026-08-25 中西さん指示。列幅372に対し一番長い行は285なので折り返さない） */
}
.sns { display: flex; gap: 14px; flex-wrap: wrap; }
.sns a {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #fff;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(255,255,255,0.6);
}

.site-footer__nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (min-width: 720px) { .site-footer__nav { grid-template-columns: repeat(4, 1fr); } }
.site-footer__nav h4 {
  font-size: 13px;
  letter-spacing: 0.16em;
  color: #fff;
  margin: 0 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.4);
}
.site-footer__nav li { margin-bottom: 7px; }
.site-footer__nav a { font-size: 11.5px; color: #fff; }   /* 2026-08-21 中西さん指示: リンク文字だけ1pt小さく(12.5→11.5) */

.site-footer__family {          /* 上段(ブランド+ナビ4列)と同じ骨格にして列の左端を揃える */
  border-top: 1px solid rgba(255,255,255,0.4);
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding: 40px var(--gutter);   /* .wrapの左右余白を保つ（0にすると上段と幅がズレる） */
}
.family-spacer { display: none; }
.family-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (min-width: 720px) { .family-cols { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 900px) {
  .site-footer__family { grid-template-columns: 1.2fr 2.2fr; gap: 48px; }
  .family-spacer { display: block; }
}
.family-label em {              /* 1段目(サイトマップ)の見出しh4と完全に同寸 */
  display: block;
  font-size: 13px;
  font-weight: 700 !important;
  letter-spacing: 0.16em;
  color: #fff;
  margin: 0 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.4);
}
.site-footer__family ul li { margin-bottom: 7px; }
.site-footer__family ul a { font-size: 11.5px; color: #fff; }   /* 2026-08-21 同上 */

.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.4);
  padding: 16px var(--gutter);
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  font-size: 11.5px;
  color: #fff;
  max-width: 1500px;
  margin: 0 auto;
}
.site-footer__bottom ul { display: flex; gap: 20px; flex-wrap: wrap; }

/* ---------- reveal ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: none; }

/* ===== COMPANY 運営法人・許認可 ===== */
.company__grid { display: grid; gap: 28px; }
@media (min-width: 800px) {
  .company__grid { grid-template-columns: 1.15fr 1fr; gap: 44px; align-items: start; }
}
.company__profile { margin: 0; }
.company__profile > div {
  display: grid; grid-template-columns: 88px 1fr; gap: 14px;
  padding: 12px 0; border-bottom: 1px solid rgba(20,16,12,.08);
}
.company__profile > div:first-child { padding-top: 0; }
.company__profile dt { font-size: 12.5px; font-weight: 700; color: var(--accent); padding-top: 2px; }
.company__profile dd { margin: 0; font-size: 14px; line-height: 1.65; color: var(--ink); }
.company__license-h { font-size: 15px; margin: 0 0 14px; color: var(--ink); }
.license-list { list-style: none; margin: 0; padding: 0; }
.license-list li {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 18px; background: var(--white);
  border: 1px solid rgba(20,16,12,.08); border-radius: var(--r-card);
}
.license__badge {
  flex-shrink: 0; align-self: flex-start;
  font-size: 12px; font-weight: 700; color: var(--accent); white-space: nowrap;
  border: 1px solid var(--accent); border-radius: var(--r-btn);
  padding: 4px 10px;
}
.license__name { margin: 0 0 6px; font-size: 14.5px; font-weight: 700; color: var(--ink); }
.license__meta { margin: 0; font-size: 12.5px; line-height: 1.8; color: var(--ink-2); }

/* ===== DISTRICTS 大宜味村の地区 ===== */
.district-grid {
  list-style: none; margin: 0 auto; padding: 0;
  max-width: 900px;         /* カードの横幅を絞って正方形に近づける */
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
}
@media (min-width: 600px) { .district-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 920px) { .district-grid { grid-template-columns: repeat(4, 1fr); } }
.district {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  aspect-ratio: 1 / 1;      /* カードを正方形に（中身が超える場合は下のmin-heightで縦に伸びて文字切れを防ぐ） */
  background: var(--white);
  border: 1px solid rgba(20,16,12,.08);
  border-radius: var(--r-card);
  padding: 14px 16px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.district__no {
  position: absolute; top: 4px; right: 12px;
  font-size: 36px; font-weight: 800; font-style: italic; line-height: 1;
  color: var(--accent); opacity: .12; letter-spacing: -.02em;
  pointer-events: none;
}
.district:hover .district__no { opacity: .22; }
.district:hover {
  border-color: var(--accent); transform: translateY(-2px);
  box-shadow: 0 10px 24px -16px var(--shadow-md);
}
.district h3 {
  margin: 0; font-size: 17px; font-weight: 700; color: var(--ink);
  display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap;
}
.district h3 span {
  font-size: 11px; font-weight: 600; color: var(--accent); letter-spacing: .05em;
}
.district__note {
  margin: 8px 0 0; font-size: 12.5px; line-height: 1.6; color: var(--ink-2);
}
.district__hall {
  margin: auto 0 0; padding-top: 9px;   /* 公民館情報はカード下端に固定（正方形の余白を上下で活かす） */
  border-top: 1px dashed rgba(20,16,12,.14);
  font-size: 12px; line-height: 1.5; color: var(--ink);
}
.district__hall-addr {
  display: block; margin-top: 3px;
  font-size: 11px; color: var(--ink-2); line-height: 1.4;
}
.district__hall-tel {
  display: block; margin-top: 1px;
  font-size: 11px; color: var(--accent);
  font-variant-numeric: tabular-nums; letter-spacing: .02em;
}

/* ===== 準備中セクション（プレースホルダー） ===== */
.section-wip {
  max-width: 640px; margin: 0 auto; text-align: center;
  padding: 28px 22px; color: var(--ink-2); font-size: 13.5px; line-height: 1.85;
  background: var(--white); border: 1px dashed rgba(20,16,12,.18);
  border-radius: var(--r-card);
}
.districts__foot {
  margin: 22px 0 0; text-align: center; font-size: 12.5px; color: var(--ink-2); opacity: .8;
}

/* ===== 数字で見る大宜味村（統計タイル） ===== */
.stat-grid {
  list-style: none; margin: 0 auto; padding: 0;
  max-width: 900px;         /* タイルを一回り小さく（地区カードと同じ絞り幅） */
  /* minmax(0,1fr)＝中身が入りきらなくても列を広げない。ただの1frだと
     中身の長い列だけ膨らんで、左右の幅がズレる（2026-08-25 中西さん指摘・スマホで25pxズレていた） */
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px;
}
@media (min-width: 720px) { .stat-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.stat {
  background: var(--white);
  border: 1px solid rgba(20,16,12,.08);
  border-radius: var(--r-card);
  padding: 16px 14px 13px;
  text-align: center;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.stat:hover {
  border-color: var(--accent); transform: translateY(-2px);
  box-shadow: 0 10px 24px -16px var(--shadow-md);
}
.stat--accent {
  background: rgba(0,161,175,.06);
  border-color: rgba(0,161,175,.28);
}
.stat__num {
  margin: 0; color: var(--accent);
  font-size: 33px; font-weight: 800; line-height: 1; letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
}
.stat__unit {
  margin-left: 3px; font-size: 14px; font-weight: 700; letter-spacing: 0;
}
.stat__label {
  margin: 12px 0 0; font-size: 13px; font-weight: 700; color: var(--ink);
}
.stat__meta {
  margin: 6px 0 0; font-size: 10.5px; line-height: 1.5; color: var(--ink-2); opacity: .85;
}
.stat-soon {
  max-width: 720px; margin: 26px auto 0; text-align: center;
}
.stat-soon__title {
  margin: 0; font-size: 12px; font-weight: 700; color: var(--accent);
  letter-spacing: .04em;
}
.stat-soon__chips {
  list-style: none; margin: 14px 0 0; padding: 0;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px;
}
.stat-soon__chips li {
  font-size: 12px; color: var(--ink-2);
  padding: 5px 12px; border-radius: 4px;
  border: 1px solid rgba(0,161,175,.35);
}
.stat-soon__note {
  margin: 16px 0 0; font-size: 12.5px; line-height: 1.7; color: var(--ink-2); opacity: .85;
}

/* ===== アンケート・投票BOX（vbox）— コンパクト版：バーはボタンの背景に ===== */
.vbox-grid {
  display: grid; grid-template-columns: 1fr; gap: 14px;
  max-width: 1100px; margin: 0 auto;
}
@media (min-width: 900px) { .vbox-grid { grid-template-columns: repeat(3, 1fr); max-width: 720px; } }  /* 2026-08-21 中西さん指示: 投票カードを半分ぐらいに(1100→680px)。2026-08-25に680→720へ：票数が0票から3桁(116票など)になった分ラベルが圧迫され、「体育館から見る塩屋湾」が2行になったため。1行に必要な125pxに対し、720なら約132px確保できる */
@media (max-width: 899px) { .vbox-grid { max-width: 360px; } }  /* 2026-08-21 中西さん指示: 縦1列になった時にカードが画面いっぱいにならないよう上限360px(中央寄せ) */
.vbox {
  background: var(--white);
  border: 1px solid rgba(20,16,12,.08);
  border-radius: var(--r-card);
  padding: 16px 16px 10px;
}
.vbox__q { margin: 0 0 12px; font-size: 13.5px; text-align: center; color: var(--ink); }
.vbox__opts { display: grid; gap: 7px; }
.vbox__opt {
  position: relative; overflow: hidden;
  display: flex; align-items: center; gap: 8px;
  width: 100%; text-align: left;
  padding: 7px 10px;
  border: 1.5px solid var(--accent); border-radius: var(--r-btn);
  color: var(--ink); background: transparent;
  transition: transform .15s;
}
.vbox__opt:hover { border-color: var(--accent-dark); }
.vbox__opt:active { transform: scale(0.98); }
.vbox__label { position: relative; z-index: 1; flex: 1; font-size: 12.5px; line-height: 1.4; }
.vbox__count { position: relative; z-index: 1; font-size: 11.5px; color: var(--accent); font-variant-numeric: tabular-nums; white-space: nowrap; }
.vbox__bar { position: absolute; inset: 0; z-index: 0; display: block; }   /* バーはボタン全面の背景レイヤー */
.vbox__fill {
  display: block; height: 100%; width: 0%;
  background: rgba(0, 161, 175, 0.15);
  transition: width .6s var(--ease);
}
.vbox.is-voted .vbox__opt { pointer-events: none; }
.vbox.is-voted .vbox__opt--mine { border-color: var(--accent-dark); box-shadow: inset 0 0 0 1px var(--accent-dark); }
.vbox__done { margin: 10px 0 0; text-align: center; font-size: 11.5px; color: var(--accent); }
.acc--single { grid-template-columns: 1fr; max-width: 620px; }   /* 運営者セクション=1カラム中央 */
.acc--maponly { max-width: 900px; }                     /* マップセクション=地図を広めに */
.acc--maponly .acc__map iframe { min-height: 380px; }

/* ===== カード内リンクボタン（公式サイト/Googleビジネス/Googleマップ） =====
   体験・飲食・宿泊の全カード、区切り線のすぐ上。26px角・隙間10px。
   記号の視覚サイズは3つとも15pxに統一（地球儀=線込み直径/G=全面/ピン=高さ） */
.card-links { display: flex; gap: 10px; margin-top: 10px; }
.card-links .unit { display: flex; flex-direction: column; align-items: center; gap: 3px; width: 26px; }
.card-links .unit > span:last-child {
  font-size: 8px; color: #8a867e; letter-spacing: 0; line-height: 1; white-space: nowrap;
  transform: scaleX(0.89); transform-origin: center; /* 「Google」6文字を箱幅26pxに収める */
}
.card-links a {
  display: flex; align-items: center; justify-content: center;
  width: 26px; height: 26px;
  border: 1px solid var(--accent); border-radius: 4px;
  color: var(--accent);
  text-decoration: none; transition: background .15s;
}
.card-links a:hover { background: rgba(0, 161, 175, 0.08); }
.card-links a svg.ic-globe { width: 18.5px; height: 18.5px; display: block; }
.card-links a svg.ic-g     { width: 15px;   height: 15px;   display: block; }
.card-links a svg.ic-pin   { width: 17px;   height: 17px;   display: block; }

/* スマホではリンクボタンを指で押しやすく拡大（PCは26pxのまま） */
@media (max-width: 719px) {
  .card-links { gap: 12px; }
  .card-links .unit { width: 34px; }
  .card-links a { width: 34px; height: 34px; }
  .card-links a svg.ic-globe { width: 24px; height: 24px; }
  .card-links a svg.ic-g     { width: 20px; height: 20px; }
  .card-links a svg.ic-pin   { width: 22px; height: 22px; }
  .card-links .unit > span:last-child { font-size: 9px; }
}

/* ===== 暮らしの情報：ポップアップ（リンク付き電話帳） ===== */
.info-badges > li.badge--tap { cursor: pointer; transition: transform .15s; }
.info-badges > li.badge--tap:hover { transform: translateY(-1px); }
.info-badges > li.badge--tap:hover .badge { border-color: var(--accent); box-shadow: 0 2px 8px rgba(0,161,175,0.15); }
.lm-back {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(20, 16, 12, 0.45);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.lm {
  background: #fff; border-radius: 10px;
  width: 100%; max-width: 420px; max-height: 72vh;
  overflow-y: auto; padding: 18px 20px 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}
.lm__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.lm__tag {
  display: inline-block; padding: 3px 12px;
  border: 1px solid var(--accent); border-radius: 4px;
  color: var(--accent); font-size: 12px; font-weight: 700; letter-spacing: 0.06em;
}
.lm__x {
  background: none; border: none; cursor: pointer;
  font-size: 15px; color: #8a867e; padding: 4px 6px; line-height: 1;
}
.lm__list { list-style: none; margin: 0; padding: 0; }
.lm__list li {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 10px 2px; border-bottom: 1px solid var(--line);
}
.lm__list li:last-child { border-bottom: none; }
.lm__name { font-size: 12.5px; font-weight: 600; color: #14100c; line-height: 1.4; }
.lm__acts { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.lm__acts .tel-link { font-size: 12.5px; white-space: nowrap; }
.lm__g {
  display: flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
  border: 1px solid var(--accent); border-radius: 4px;
  transition: background .15s;
}
.lm__g:hover { background: rgba(0,161,175,0.08); }
.lm__note { margin: 12px 0 0; font-size: 10.5px; color: #8a867e; }
.lm__empty { margin: 8px 0 6px; font-size: 12.5px; color: #6b675f; line-height: 1.8; }

/* ===== スマホ版 文字拡大＋カード1列化（2026-08-20 中西さん指示） =====
   大=セクション見出し / 中=カード・年表の小見出し / 小=本文 を一括で大きく。
   バランス調整はこのブロックの数値をいじるだけでOK */
@media (max-width: 719px) {
  /* --- ヒーロー --- */
  .hero__motto { font-size: clamp(34px, 9vw, 44px); }
  .hero__motto span em { font-size: clamp(13px, 3.4vw, 16px); }
  .hero__lead-line { font-size: 17.5px; }

  /* --- 大：セクション見出し（全セクション共通） --- */
  .sh__ja { font-size: 27px; }
  .sh__lead { font-size: 15.5px; }
  .sh__navtag { font-size: 12px; }

  /* --- 歩み（タイムライン） --- */
  .tline__year { font-size: 16px; }
  .tline__tag { font-size: 11.5px; }
  .tline__body h4 { font-size: 15.5px; }
  .tline__body p { font-size: 14px; }

  /* --- カード類は1列表示に --- */
  .ex-list, .eats-list, .lod-list, .svc-grid, .room-grid { grid-template-columns: 1fr; }

  /* --- 中・小：カードの見出しと本文 --- */
  .ex-list h4, .eats-list > li > h4, .lod-list > li > h4 { font-size: 16.5px; }
  .ex-tag { font-size: 12px; }
  .ex-list .mrow, .eats-list .mrow, .lod-list .mrow { font-size: 13.5px; }
  .ex-list__en { font-size: 12px; }

  /* --- サービス・お部屋 --- */
  .svc h3 { font-size: 18px; }
  .svc p { font-size: 14.5px; }
  .svc p.svc__en { font-size: 12px; }
  .room__body h3 { font-size: 17px; }
  .room__body p { font-size: 14px; }
  .room__body p.room__en { font-size: 12px; }

  /* --- 暮らしバッジ・統計 --- */
  .badge-txt { font-size: 13.5px; }
  .stat__label { font-size: 12px; }

  /* --- ボタン --- */
  .btn { font-size: 14.5px; }
}

/* ===== スマホ版 文字階級の完全統一（実測スキャンで15px未満を洗い出して修正） =====
   階級: 大27 / 中17 / 小15 / 極小12 / 豆キャプション10.5 */
@media (max-width: 719px) {
  /* --- 小=15px（読ませる文字すべて） --- */
  .ex-list .mrow, .eats-list .mrow, .lod-list .mrow,
  .ex-list .mrow .mlabel, .eats-list .mrow .mlabel, .lod-list .mrow .mlabel,
  .ex-list .tel-link, .eats-list .tel-link, .lod-list .tel-link { font-size: 15px; }
  .tline__body p { font-size: 15px; }
  .room__body p { font-size: 15px; }
  .svc p { font-size: 15px; }
  .calx-slot__events h4 { font-size: 15px; }
  .calx-slot__events p { font-size: 15px; }
  .ev-list > li { font-size: 15px; }
  .company dd, #company dd, #company .tel-link { font-size: 15px; }
  .ctc select, .ctc option, .ctc input, .ctc textarea { font-size: 15px; }
  .district__note { font-size: 15px; }
  .info-badges .badge-txt { font-size: 15px; }
  .vbox__q { font-size: 15px; }
  .vbox__opt .vbox__label { font-size: 15px; }
  .news-preview li, .news-col__intro, .info-news span { font-size: 15px; }
  .feature p { font-size: 15px; }
  .lm__name, .lm__acts .tel-link, .lm__empty { font-size: 15px; }

  /* --- 中=17px（名前・小見出しの追加分） --- */
  .feature h4 { font-size: 17px; }
  .tline__body h4 { font-size: 17px; }

  /* --- 準・小=13.5px（コンパクトなタイル内の情報） --- */
  .district__hall-addr, .district__hall .tel-link { font-size: 13.5px; }
  .stat__label { font-size: 13.5px; }
  .vbox__count { font-size: 13px; }
  .ctc__hours, .svc__more, footer .site-footer__nav a { font-size: 13.5px; }
  time { font-size: 13px; }

  /* --- 極小=12px（ラベル・注記・タグ） --- */
  .tline__tag, .ex-tag, .sh__navtag { font-size: 12px; }
  #company dt { font-size: 12px; }
  .ctc__label, .ctc__note, .ctc__req { font-size: 12px; }
  .feature__note, .restaurant__note, .lodging__note, .stat-soon__title,
  .tline__hint, .calx-slot__year, .vbox__done, .districts__foot { font-size: 12px; }

  /* --- 豆キャプション=10.5px（リンクボタンの下だけ・特例） --- */
  .card-links .unit > span:last-child { font-size: 10.5px; }
}

/* スマホ統一・最終調整 */
@media (max-width: 719px) {
  .district-grid h3 span { font-size: 12px; }   /* 地区のローマ字よみ=極小 */
  #news time { font-size: 13px; }
  .btn { font-size: 15px; }                      /* ボタンも小=15に */
}

/* ===== スマホ版 全数調査後の階級収容（はぐれ文字の統一） ===== */
@media (max-width: 719px) {
  /* 中=17に統一 */
  .ex-list h4, .eats-list > li > h4, .lod-list > li > h4 { font-size: 17px; }
  .svc h3 { font-size: 17px; }
  .tline__year { font-size: 17px; }
  /* 小=15に統一 */
  .sh__lead { font-size: 15px; }
  .ctc label, .ctc .ctc__full { font-size: 15px; }
  /* 準小=13.5 */
  .district__hall-tel { font-size: 13.5px; }
  /* 極小=12 */
  .sh__en, .sh__en em { font-size: 12px; }
  .stat-soon__note { font-size: 12px; }
  /* フッターのリンク統一 */
  .site-footer a { font-size: 13.5px; }
  .site-footer .legal a, .site-footer a[href*="privacy"] { font-size: 12px; }
}

/* ===== スマホ版 階級一括+2px（2026-08-20 中西さん指示・特例除く） =====
   大29 / 準大24 / 中19 / 小17 / 準小15.5 / 極小14 / 豆10.5(据置) */
@media (max-width: 719px) {
  /* 特大 */
  .hero__motto { font-size: clamp(36px, 9.5vw, 46px); }
  .hero__lead-line { font-size: 19px; }
  /* 大 */
  .sh__ja { font-size: 29px; }
  /* 準大 */
  .calx-slot__month { font-size: 24px; }
  .ctc__phone { font-size: 24px; }
  /* 中 */
  .ex-list h4, .eats-list > li > h4, .lod-list > li > h4 { font-size: 19px; }
  .svc h3, .room__body h3, .district-grid h3, .feature h4,
  .tline__year, .tline__body h4 { font-size: 19px; }
  /* 小 */
  .sh__lead { font-size: 17px; }
  .ex-list .mrow, .eats-list .mrow, .lod-list .mrow,
  .ex-list .mrow .mlabel, .eats-list .mrow .mlabel, .lod-list .mrow .mlabel,
  .ex-list .tel-link, .eats-list .tel-link, .lod-list .tel-link { font-size: 17px; }
  .tline__body p, .room__body p, .svc p { font-size: 17px; }
  .calx-slot__events h4, .calx-slot__events p { font-size: 17px; }
  .ev-list > li { font-size: 17px; }
  #company dd, #company .tel-link { font-size: 17px; }
  .ctc select, .ctc option, .ctc input, .ctc textarea, .ctc label, .ctc .ctc__full { font-size: 17px; }
  .district__note { font-size: 17px; }
  .info-badges .badge-txt { font-size: 17px; }
  .vbox__q, .vbox__opt .vbox__label { font-size: 17px; }
  .news-preview li, .news-col__intro, .info-news span { font-size: 17px; }
  .feature p { font-size: 17px; }
  .lm__name, .lm__acts .tel-link, .lm__empty { font-size: 17px; }
  .btn { font-size: 17px; }
  /* 準小 */
  .district__hall-addr, .district__hall .tel-link, .district__hall-tel { font-size: 15.5px; }
  .stat__label, .ctc__hours, .svc__more { font-size: 15.5px; }
  .site-footer a, footer .site-footer__nav a, .site-footer__family ul a { font-size: 15.5px; }
  .site-footer__nav h4, .site-footer__family h4, .site-footer .family-label em { font-size: 15.5px; }
  .vbox__count, #news time { font-size: 15px; }
  /* 極小 */
  .tline__tag, .ex-tag, .sh__navtag { font-size: 14px; }
  #company dt, .ctc__label, .ctc__note, .ctc__req { font-size: 14px; }
  .feature__note, .restaurant__note, .lodging__note, .stat-soon__title,
  .tline__hint, .calx-slot__year, .vbox__done, .districts__foot, .stat-soon__note,
  .stat-soon__chips li { font-size: 14px; }
  .sh__en, .sh__en em { font-size: 14px; }
  .district-grid h3 span { font-size: 14px; }
  .svc p.svc__en, .room__body p.room__en, .ex-list__en { font-size: 14px; }
  .site-footer .legal a, .site-footer a[href*="privacy"] { font-size: 14px; }
  /* 文字拡大に伴い、1行固定の情報行はスマホでは折り返し許可（線ズレはスマホ1列なので無害） */
  .ex-list .mrow:not(.mrow--genre), .eats-list .mrow:not(.mrow--genre), .lod-list .mrow:not(.mrow--genre) {
    white-space: normal; overflow: visible; text-overflow: unset; height: auto;
  }
  .eats-list > li > h4, .lod-list > li > h4, .ex-list > li > h4 { height: auto; min-height: 0; }
  .mrow--genre { height: auto; max-height: none; }
}

/* スマホ版：中=20pxに変更（2026-08-20） */
@media (max-width: 719px) {
  .ex-list h4, .eats-list > li > h4, .lod-list > li > h4,
  .svc h3, .room__body h3, .district-grid h3, .feature h4,
  .tline__year, .tline__body h4 { font-size: 20px; }
}

/* スマホ版：モットーを3行の縦積みに（体験する／宿泊する／記憶する） */
@media (max-width: 719px) {
  .hero__motto { display: flex; flex-direction: column; align-items: center; gap: 10px; }
}

/* ヒーロー文字の可読性：明るい水面写真でも読めるように影を強化（PC/スマホ共通） */
.hero__motto span {
  text-shadow: 0 1px 3px rgba(6,10,14,0.55), 0 4px 20px rgba(6,10,14,0.5), 0 0 40px rgba(6,10,14,0.35);
}

/* スマホ版：歩みタイムラインの各年表の間隔を1.5倍に（140px→210px） */
@media (max-width: 719px) {
  .tline li { flex: 0 0 210px; }
}

/* スマホ版：モットーにもリード行と同じ半透明ダークカードを敷く（明るい水面対策） */
@media (max-width: 719px) {
  .hero__motto span {
    display: block;
    width: fit-content;
    margin: 0 auto;
    padding: 3px 16px;
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(6,10,14,0.34) 0%, rgba(6,10,14,0.52) 100%);
  }
}

/* スマホ版：サービスカードの説明文を1行13文字で統一（中央揃えのまま） */
@media (max-width: 719px) {
  .svc p:not(.svc__en) {
    max-width: 13em;      /* 文字サイズ基準で13文字ぶんの幅 */
    margin-left: auto;
    margin-right: auto;
  }
}

/* スマホ版：歩みの隣り合う文章の間隔を2文字分に（片側17px×2＝34px。文章幅は維持するため枠も拡大） */
@media (max-width: 719px) {
  .tline li { flex: 0 0 228px; padding: 0 17px; }
}

/* スマホ版：モットーのダークカードを文字ギリギリ幅に */
@media (max-width: 719px) {
  .hero__motto span { padding: 2px 5px; }
}

/* スマホ版：リード行末の句点の右アキを打ち消してカードを文字ギリギリに */
.hero__lead-line .cpunct { font-style: normal; }
@media (max-width: 719px) {
  .hero__lead-line { padding: 2px 5px 2px 7px; }
  .hero__lead-line .cpunct { margin-right: -0.48em; padding-right: 0; }
}

/* スマホ版：サービス説明文は13em枠の中で両端揃え＝全カードの見た目幅を統一 */
@media (max-width: 719px) {
  .svc p:not(.svc__en) {
    text-align: justify;
    text-justify: inter-character;
  }
}

/* スマホ版：ダークカードの左右バランス補正 */
@media (max-width: 719px) {
  /* モットー：末尾文字の後ろに付く字間(0.08em)ぶん右paddingを減らして左右対称に */
  .hero__motto span { padding: 2px calc(5px - 0.08em) 2px 5px; }
  /* リード行：左右の余白を同じ5pxに（行末の。は詰め済みなので左右対称になる） */
  .hero__lead-line { padding: 2px 5px; }
}

/* スマホ版：リード3行は折り返さず1行に収める（18pxなら最長行も375px内に収まる） */
@media (max-width: 719px) {
  .hero__lead-line { font-size: 18px; white-space: nowrap; }
}

/* スマホ版：ダークカードのミリ単位追い込み */
.hero__motto .mend { font-style: normal; }
@media (max-width: 719px) {
  /* 上3行：右端を約2mm(7px)内側へ（末尾の字間2.9px+4px切り込み） */
  .hero__motto span { padding: 2px 0 2px 5px; }
  .hero__motto .mend { margin-right: calc(-0.08em - 4px); }
  /* 下3行：左の出っ張り(丸1個分)を回収 */
  .hero__lead-line { padding: 2px 5px 2px 1px; }
}

/* スマホ版：モットー右詰めを戻して0.2mm(1px)だけ詰め直し */
@media (max-width: 719px) {
  .hero__motto span { padding: 2px 4px 2px 5px; }   /* 右4px＝元の5pxから1px詰め */
  .hero__motto .mend { margin-right: -0.08em; }      /* 末尾の字間だけ打ち消し（切り込みなし） */
}

/* スマホ版：モットーを「2mm詰め」前の状態に戻す（z75の左右対称補正へ復帰） */
@media (max-width: 719px) {
  .hero__motto span { padding: 2px calc(5px - 0.08em) 2px 5px; }
  .hero__motto .mend { margin-right: 0; }
}

/* ===== スマホ版モットー 作り直し（2026-08-20・実機検証後のリセット） =====
   影・切り込み・fit-contentを全部やめて、Safariで確実な display:table 方式に */
@media (max-width: 719px) {
  .hero__motto { display: block; text-align: center; }
  .hero__motto span {
    display: table;               /* 中身ぴったり幅の確実な方法 */
    margin: 0 auto 10px;
    padding: 3px 12px;
    background: rgba(6, 10, 14, 0.45);
    border-radius: 8px;
    letter-spacing: 0.08em;
    white-space: nowrap;
    text-shadow: none;            /* まだらに見えた影は撤去 */
    width: auto;
  }
  .hero__motto .mend { margin-right: -0.08em; }  /* 末尾の字間ぶんだけ右を詰める */
  .hero__shimmer { display: none; }               /* 白い点の正体＝キラキラ演出を停止 */
}

/* ===== モットー最終構造（全ブラウザ共通で確実に中央になる教科書方式） =====
   スマホ: 行(span)=ブロック＋text-align:center / カード(b)=inline-block */
.hero__motto .m-card { font-weight: inherit; font-style: normal; }
@media (max-width: 719px) {
  .hero__motto { display: block; text-align: center; }
  .hero__motto span {
    display: block; width: auto; margin: 0 0 10px; padding: 0;
    background: none; border-radius: 0; white-space: normal; letter-spacing: normal;
  }
  .hero__motto .m-card {
    display: inline-block;
    letter-spacing: 0;                 /* 見えない字間ゼロ＝左右完全対称 */
    padding: 3px 12px;
    background: rgba(6, 10, 14, 0.45);
    border-radius: 8px;
    text-shadow: none;
  }
}

/* スマホ版：モットーの文字影も完全オフ（カードがあるので不要） */
@media (max-width: 719px) {
  .hero__motto span, .hero__motto .m-card { text-shadow: none; }
}

/* スマホ版：モットーカードの左右余白を絞る（12px→4px・中央寄せ維持） */
@media (max-width: 719px) {
  .hero__motto .m-card { padding: 3px 4px; }
}

/* スマホ版：体験カード＝タイトルと説明文の間に1行分の空き */
@media (max-width: 719px) {
  .ex-list .mrow--genre { margin-top: 1.5em; }
}

/* スマホ版：飲食・宿泊カードも体験と同じくタイトル下に1行分の空き（統一） */
@media (max-width: 719px) {
  .eats-list .mrow--genre, .lod-list .mrow--genre { margin-top: 1.5em; }
}

/* スマホ版：カードの縁をセンターブルーで囲む（境目を見やすく・2026-08-20 中西さん指示）
   対象＝体験・飲食・宿泊・地区・暮らしバッジ・統計タイル */
@media (max-width: 719px) {
  .ex-list li,
  .eats-list > li,
  .lod-list > li,
  .district,
  .info-badges > li,
  .stat {
    border: 1px solid var(--accent);
  }
}

/* スマホ版：サービス・お部屋のカードにも青い縁取り（統一） */
@media (max-width: 719px) {
  .svc, .room { border: 1px solid var(--accent); }
}

/* スマホ版：地区カードは正方形をやめて中身全部（電話番号まで）が入る高さに */
@media (max-width: 719px) {
  .district { aspect-ratio: auto; height: auto; overflow: visible; }
}

/* 地区カード：TEL文字→電話マーク（1行に収める） */
.district__hall-tel { display: flex; align-items: center; gap: 5px; white-space: nowrap; }
.district__hall-tel .tel-ic { width: 13px; height: 13px; flex: 0 0 auto; color: var(--accent); }
@media (max-width: 719px) {
  .district__hall-tel .tel-ic { width: 15px; height: 15px; }
}

/* フッター最下段：準備中項目（非リンク・淡色） */
.site-footer__bottom .ft-soon { color: rgba(255,255,255,0.55); font-size: 12.5px; cursor: default; }
@media (max-width: 719px) { .site-footer__bottom .ft-soon { font-size: 14px; } }

/* 必須チップの引き伸ばし解消（2026-08-21）：flex縦積みのラベル内でチップが幅いっぱいに伸びていた→ラベル文字の右横の小チップに */
.ctc__form label { display: block; }
.ctc__form input, .ctc__form select, .ctc__form textarea { width: 100%; margin-top: 6px; }
/* スマホは行の高さが 1.8 なので、入力欄と select の高さもその式に合わせる（PCは 1.7em） */
@media (max-width: 719px) {
  .ctc__form input, .ctc__form select { height: calc(1.8em + 23px); }
}


/* ===== お知らせ：スマホ版を merhalsa-hd.jp 型に（2026-08-21 中西さん指示）
   1件＝「日付＋カテゴリータグ」の行 → 「タイトル」の行。薄いグレー線で区切り。PCは従来の2列のまま ===== */
.ntag, .ntime { display: none; }               /* PCでは出さない */
@media (max-width: 719px) {
  .news-col__h { display: block; font-size: 20px; }   /* 小見出し「お知らせ」「ニュース」 */
  .news-cols { gap: 30px; }
  .news-col .info-news li {
    display: block; padding: 16px 2px 18px;
    border-top: 1px solid rgba(20,16,12,.14); border-bottom: 0;
  }
  .news-col .info-news li:last-child { border-bottom: 1px solid rgba(20,16,12,.14); }
  .info-news time, .ntime {
    display: inline-block; vertical-align: middle;
    font-size: 15.5px; font-weight: 700; color: var(--accent); letter-spacing: .02em; margin-right: 14px;
  }
  .ntag, .info-news .ntag, .news-col__intro .ntag {   /* .info-news span{17px}より強く */
    display: inline-block; vertical-align: middle;
    min-width: 108px; padding: 4px 14px; text-align: center;
    font-size: 14px; font-weight: 700; color: #fff; background: var(--accent); border-radius: 2px;
  }
  .ntag--mura, .info-news .ntag--mura, .news-col__intro .ntag--mura { background: #3f9b5b; }
  .info-news .nt, .news-col__intro .nt {
    display: block; margin-top: 10px; font-size: 17px; line-height: 1.6; color: var(--ink);
  }
  .nt-pc { display: none; }                     /* 「たとえば——」はPC用 */
  .news-col__intro { margin: 0; padding: 16px 2px 18px; border-top: 1px solid rgba(20,16,12,.14); }
  /* 話題の予定リスト → 小さなチップ */
  .news-preview { display: flex; flex-wrap: wrap; gap: 6px; margin: 12px 0 0; }
  .news-preview li { padding: 4px 10px; border: 1px solid rgba(0,161,175,.35); border-radius: 4px; font-size: 13.5px; line-height: 1.5; }
  .news-preview li::before { display: none; }
  .news-col .feature__note { margin: 10px 0 0; }
}


/* ===== 運営者：スマホ版を merhalsa-hd.jp 会社概要型に（2026-08-21 中西さん指示）
   項目名＝幅いっぱいの薄い色帯（青太字）→ その下に内容。横2列をやめて縦積み ===== */
@media (max-width: 719px) {
  #company .acc__info dl > div { display: block; padding: 0; border-bottom: 0; }
  #company .acc__info dt {
    display: block; margin: 0; padding: 11px 14px;
    background: rgba(0,161,175,.09); border-radius: 2px;
    color: var(--accent); font-weight: 700; font-size: 15.5px; letter-spacing: .04em;
  }
  #company .acc__info dd {
    display: block; margin: 0; padding: 12px 14px 20px;
    font-size: 17px; line-height: 1.7; color: var(--ink);
  }
}


/* ===== 試験：スマホ版の本文を標準の太さ400・行間1.8に（merhalsa型のメリハリ。まず運営者＋お知らせのみ／2026-08-21 中西さん了承） ===== */
@media (max-width: 719px) {
  #company .sh__lead, #company .acc__info dd,
  #news .sh__lead, #news .info-news .nt, #news .news-col__intro .nt, #news .news-preview li, #news .feature__note {
    font-weight: 400 !important; line-height: 1.8;   /* 61行目の「* {font-weight:600 !important}」に勝つため */
  }
  /* 見出し・項目名・タグ・日付は太いまま（メリハリ担当） */
  #news .ntag { font-weight: 700 !important; }
  /* 運営者：項目名(青)も標準の太さ・電話番号は黒の標準文字（2026-08-21 中西さん指示） */
  #company .acc__info dt { font-weight: 400 !important; }
  #company .acc__info dd, #company .acc__info dd * { font-weight: 400 !important; }
  #company .acc__info .tel-link { color: var(--ink) !important; text-decoration: none; }
  #news .info-news time, #news .ntime { font-weight: 400 !important; }   /* 日付は標準の太さ（2026-08-21 中西さん指示） */
}


/* ===== お知らせ／ニュース 共通ひな形（PC）：日付｜タグ｜タイトル を1行に。スマホは上の規則で2段組 ===== */
.news-sub { margin: -8px 0 12px; font-size: 12.5px; color: var(--ink-2); }
@media (min-width: 720px) {
  .info-news li { grid-template-columns: 118px 92px 1fr; gap: 14px;   /* 日付=2026年08月21日 形式 */ padding: 12px 4px; border-bottom: 1px solid rgba(20,16,12,.14); }
  .ntag {
    display: inline-block; text-align: center; padding: 2px 8px; border-radius: 2px;
    font-size: 11.5px; color: #fff; background: var(--accent); letter-spacing: .06em;
  }
  .ntag--mura, .info-news .ntag--mura { background: #3f9b5b; }
}
@media (max-width: 719px) {
  .news-sub { margin: -4px 0 12px; font-size: 14px; }
}


/* ===== お知らせ/ニュースのタグ＝セクション見出しの青枠タグ(.sh__navtag)と同じ見た目に（2026-08-21 中西さん指示） ===== */
.ntag, .info-news .ntag, .news-col__intro .ntag,
.ntag--mura, .info-news .ntag--mura, .news-col__intro .ntag--mura {
  background: transparent !important;
  border: 1px solid var(--accent);
  border-radius: 4px;
  color: var(--accent) !important;
  letter-spacing: .1em;
}
@media (min-width: 720px) { .ntag { font-size: 11px; padding: 2px 13px; } }
@media (max-width: 719px) { .ntag, .info-news .ntag { font-size: 14px; padding: 3px 14px; min-width: 0; } }


/* ===== スマホ版 全セクション統一：本文は標準の太さ400・行間1.8、太字は見出し・タグ・数字だけ
   （2026-08-21 中西さん決定「お知らせ・運営者の読みやすさに全体を合わせる」。61行目の全体600!importantをスマホで上書き） ===== */
@media (max-width: 719px) {
  * { font-weight: 400 !important; }
  p, li, dd, dt, td, th, .nt, .sh__lead, .mrow, .stat__label, .stat__meta, .badge-txt, .lm__name, .ctc label { line-height: 1.8; }
  /* 太字担当（メリハリ） */
  h1, h2, h3, h4, .sh__ja, .news-col__h, .site-footer h4, .family-label em,
  .sh__navtag, .ntag, .tline__tag, .ex-tag, .stat-soon__title,
  .hero__motto, .hero__motto span, .brand__ja, .brand--footer .brand__ja,
  .stat__num, .vbox__count, .calx-slot__month, .calx-slot__year, .tline__year,
  .nav-group__btn, .site-nav.is-open .nav-group__btn, .btn, .lm__tag,
  .fold__sum, .fold__close { font-weight: 700 !important; }
  .sh__en, .sh__en em { font-weight: 800 !important; }   /* 英字見出しは元の800を維持 */
}


/* ===== スマホ専用の改行 <br class="sp">：PCでは無効・スマホのみ改行（中西さんが1か所ずつ指定） ===== */
br.sp { display: none; }
@media (max-width: 719px) { br.sp { display: inline; } }


/* ===== スマホ：お部屋の説明文は行長の自動そろえ(balance)をやめ、願いの浜辺と同じく幅いっぱいに流す（2026-08-21 中西さん指示） ===== */
@media (max-width: 719px) { .room__body p { text-wrap: wrap; max-width: none; } }


/* ===== スマホ改行・指定分（2026-08-21 中西さん口頭指定） ===== */
@media (max-width: 719px) {
  .pc-only { display: none; }                       /* 「／」はスマホでは改行に置き換え */
  .district-grid h3, .district h3 { display: block; }
  .district-grid h3 span, .district h3 span { display: block; margin: 2px 0 0; }   /* 地区名のアルファベットを2行目に（見出しのflexを解除） */
}


/* ===== スマホ：フッターのモットーは字間なし・左詰め（2026-08-21 中西さん指示。PCは両端揃え256pxのまま） ===== */
@media (max-width: 719px) {
  .site-footer__motto { width: auto; letter-spacing: 0; text-align: left; text-align-last: left; word-spacing: 0.5em; }
}


/* ===== スマホ：フッターの列見出しとリンクを1段小さく（2026-08-21 中西さん指示）15.5→14px ===== */
@media (max-width: 719px) {
  .site-footer__nav h4, .site-footer__family h4, .site-footer .family-label em { font-size: 14px; letter-spacing: .04em; }
  .site-footer a, footer .site-footer__nav a, .site-footer__family ul a { font-size: 13px; }   /* 見出し14はそのまま・リンクだけもう1pt小さく（中西さん指示） */
  .site-footer .legal a, .site-footer a[href*="privacy"] { font-size: 12.5px; }
}


/* ===== スマホ：フッター上段と下段を仕切る水平線を外す（2026-08-21 中西さん指示。PCは線あり） ===== */
@media (max-width: 719px) { .site-footer__family { border-top: 0; padding-top: 0; } }


/* ===== カード幅を必ず等幅に（2026-08-23 中西さん指示：店名が2行になってもよいので幅を統一）
   1fr は「中の一番長い語」より狭くならない仕様＝OKINAWA CACAO / シークヮーサーパーク が列を押し広げていた。
   minmax(0,1fr) で押し広げを止め、長い店名は折り返す ===== */
@media (min-width: 720px) {
  .eats-list { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lod-list  { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .ex-list   { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 1000px) { .ex-list { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.eats-list > li, .lod-list > li, .ex-list > li { min-width: 0; }
.eats-list > li > h4, .lod-list > li > h4, .ex-list > li > h4 { overflow-wrap: anywhere; }


/* ===== ヒーロー直下のテロップ（2026-08-23）：右から左へ流れるお知らせ帯。
   同じ文を2つ並べて片方を隠し、-50%まで動かすことで切れ目なくループ ===== */
.ticker {
  background: var(--accent);
  overflow: hidden;
  position: relative;
}
.ticker__track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 46s linear infinite;
}
.ticker__item {
  display: block;
  padding: 11px 0;
  padding-right: 4em;
  white-space: nowrap;
  color: #fff;
  font-size: 13.5px;
  letter-spacing: .04em;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker:hover .ticker__track { animation-play-state: paused; }   /* マウスを乗せると止まる */
@media (max-width: 719px) {
  .ticker__item { font-size: 15px; padding: 12px 0; padding-right: 3em; }
  .ticker__track { animation-duration: 38s; }
}
@media (prefers-reduced-motion: reduce) {                        /* 動きが苦手な人の設定を尊重 */
  .ticker__track { animation: none; }
  .ticker { overflow-x: auto; }
}


/* テロップ内の強調（2026-08-23 中西さん指示：見学できる曜日・時間を目立たせる） */
.ticker__em {
  font-weight: 700 !important;
  font-size: 1.18em;
  color: #fff;
  border-bottom: 2px solid rgba(255,255,255,.85);
  padding-bottom: 1px;
  letter-spacing: .06em;
}


/* お知らせ本文の強調（テロップと同じ内容を目立たせる・2026-08-23） */
.nt-em { font-weight: 700 !important; border-bottom: 2px solid var(--accent); padding-bottom: 1px; }


/* ===== ヒーローの「OUR MOTTO」バッジ（2026-08-24 中西さん指示）
   細く小さくて読めない→枠幅を下の「体験する」と同じ152pxに広げ、中の文字も枠いっぱいに拡大＋太字 ===== */
.hero__eyebrow em {
  display: inline-block;
  box-sizing: border-box;
  width: 152px;
  padding: 8px 4px;
  font-size: 18px;
  font-weight: 700 !important;
  font-style: normal;
  letter-spacing: .12em;
  text-indent: .12em;          /* 字間ぶんの右アキを打ち消して中央に */
  text-align: center;
  border-width: 2px;
}

/* サービスカード：営業時間の1行（キッチンカー）
   ─ 文字サイズは本文と同じ（PC12.5px／スマホ17px＝小）。青字で区別するだけ。
     スマホの「13em幅＋両端揃え」ルールの対象外にして1行に収める */
.svc p.svc__hours {
  color: var(--accent);
  margin: -8px 0 12px;
  max-width: none;
  text-wrap: wrap;
}
@media (max-width: 719px) {
  .svc p.svc__hours {
    max-width: none;
    text-align: center;
    margin: -6px 0 12px;
  }
}

/* サービスカード：「詳しく見る →」を4枚とも下端に揃える
   （キッチンカーだけ本文が長く、リンクの高さがズレていたため） */
.svc .svc__more { margin-top: auto; }

/* 体験・飲食・宿泊カード：区切り線から下（店名・住所・TEL）をカードの下端に揃える。
   ─ もともとは「内容欄を2行で固定して、はみ出しを隠す」やり方で線を揃えていたが、
     それだと長い説明が切れてしまう（サバニの「天候により中止」等が消えていた）。
     下端揃えにすれば、説明が何行でも切らずに、線は揃ったままになる（2026-08-25） */
.ex-list li, .eats-list li, .lod-list li { display: flex; flex-direction: column; }
.ex-list li .mrow--sep, .eats-list li .mrow--sep, .lod-list li .mrow--sep { margin-top: auto; }
/* flexの中では inline-block が block に変換されて幅いっぱいに伸びる。
   タグとリンクボタンだけは文字ぴったりに戻す（2026-08-25 中西さん指摘） */
.ex-list li > .ex-tag, .eats-list li > .ex-tag, .lod-list li > .ex-tag,
.ex-list li > .card-links, .eats-list li > .card-links, .lod-list li > .card-links { align-self: flex-start; }
/* 内容欄の高さ固定をやめる（切らずに全部見せる） */
.mrow--genre,
.ex-list .mrow--genre, .eats-list .mrow--genre, .lod-list .mrow--genre {
  min-height: 0; max-height: none; overflow: visible;
}

/* PC版：サービスカード4枚の説明文の幅を「施設案内」の文字幅（212px）で統一
   ─ text-wrap:balance が文ごとに幅を詰めていて、実測161/212/162pxとバラついていた。
     balanceを外して幅を固定し、両端揃えで行末をそろえる（スマホの13em統一と同じ考え方） */
@media (min-width: 720px) {
  .svc p:not(.svc__en):not(.svc__hours) {
    width: 212px;
    max-width: 212px;
    text-wrap: wrap;
    text-align: justify;
    text-justify: inter-character;
  }
}

/* お知らせ・ニュースの本文：英数字が長く続くと折り返せず横にはみ出すので、
   必要なときだけ途中で折り返す（2026-08-25 キッチンカーの「11:00-16:00OPEN」で発生） */
.info-news .nt { overflow-wrap: anywhere; }

/* 投票BOX：回答人数の表示（紙アンケート＋ウェブの合計。2026-08-25 中西さん指示） */
.vbox__total {
  margin: 10px 0 0;
  font-size: 11.5px;
  color: var(--mute);
  letter-spacing: 0.04em;
  text-align: right;
}
.vote__since {                 /* セクション下：8月8日からの累計 */
  margin: 18px 0 6px;
  text-align: center;
  font-size: 12.5px;
  color: var(--ink-2);
  letter-spacing: 0.04em;
}
.vote__since b { color: var(--accent); font-size: 15px; }
@media (max-width: 719px) {
  .vbox__total { font-size: 14px; }
  .vote__since { font-size: 15px; }
  .vote__since b { font-size: 18px; }
}


/* ===== セクションの折りたたみ（2026-08-26 中西さん決定：最初は中身を見せず、ボタンで全部出す／全部しまう）
   対象＝アクティビティー／飲食／宿泊／お部屋／地区の5セクション。
   JavaScriptなしでも開閉できるよう <details>/<summary> の標準機能を使っている。 ===== */
.fold { margin: 0; }
.fold > summary { list-style: none; }
.fold > summary::-webkit-details-marker { display: none; }

.fold__sum {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  min-width: 260px;
  margin: 4px auto 0;
  padding: 12px 30px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: var(--white);
  color: var(--accent-dark);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background .2s, box-shadow .2s;
}
.fold__sum:hover { background: var(--accent-wash); }
.fold__sum:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* 開いた／閉じたで文言を入れ替える */
.fold__lbl--hide { display: none; }
.fold[open] > .fold__sum .fold__lbl--show { display: none; }
.fold[open] > .fold__sum .fold__lbl--hide { display: inline; }

/* 件数（閉じているときだけ出る小さな数字） */
.fold__n {
  margin-left: 8px;
  font-size: 12px;
  font-weight: 400;
  color: var(--mute);
}

/* 下向きの山かた（開くと上向き）。中心を合わせるため 1px 上げてある＝視覚調整 */
.fold__ic {
  width: 7px; height: 7px;
  margin-top: -3px;
  border-right: 1.6px solid currentColor;
  border-bottom: 1.6px solid currentColor;
  transform: rotate(45deg);
  transition: transform .2s;
}
.fold[open] > .fold__sum .fold__ic { margin-top: 3px; transform: rotate(-135deg); }

.fold__body { padding-top: 28px; }

/* 中身の最後に置く「折りたたむ」＝長い一覧を見終わった人が上へ戻らずに閉じられる */
.fold__foot { margin: 34px 0 0; text-align: center; }
.fold__close {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 26px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--ink-2);
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: border-color .2s, color .2s, background .2s;
}
.fold__close::before {
  content: "";
  width: 7px; height: 7px;
  margin-top: 3px;
  border-right: 1.6px solid currentColor;
  border-bottom: 1.6px solid currentColor;
  transform: rotate(-135deg);
}
.fold__close:hover { border-color: var(--accent); color: var(--accent-dark); background: var(--accent-wash); }
.fold__close:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

@media (max-width: 719px) {
  .fold__sum {
    width: 100%;
    min-width: 0;
    padding: 14px 20px;
    font-size: 17px;
    font-weight: 700 !important;
  }
  .fold__n { font-size: 14px; font-weight: 400 !important; }
  .fold__ic { width: 8px; height: 8px; }
  .fold__body { padding-top: 24px; }
  .fold__close { font-size: 15px; font-weight: 700 !important; padding: 12px 24px; }
}


/* ===== ニュース（大宜味村と周辺のできごと）の日付だけ緑に（2026-08-26 中西さん指示）
   お知らせ（施設）の日付は青のまま。PC・スマホ共通。
   経緯＝#3f9b5b（タグの緑）→「もう少し濃く」→「エメラルドグリーンのような」#0a7d59
   →明るい緑 #78F98F は薄すぎ、見本の #336B3E は「ちょっと暗すぎ」→
   **#0a7d59（深いエメラルドグリーン＝あいが選んだ色）で確定**（2026-08-26 中西さん）。
   少し青に寄せた緑で、サイトの青 #00a1af と同じ family。
   背景(#f3f1ec)とのコントラストは 4.6 で、小さい文字の基準(4.5)を満たす。
   見比べページ＝_greencheck.html（本番非搭載） ===== */
.news-col--mura .info-news time,
.news-col--mura .ntime { color: #0a7d59; }


/* =====================================================================
   シークヮーサー仙人（2026-08-26 中西さん演出指示）
   ふだん＝右下に常時表示 ／ タップ＝頭の上に吹き出し＋全体を暗転＋中央にフォーム
   ★仙人と吹き出しだけは暗転の「上」に明るいまま残す（仙人が話しかけている感じを消さないため）
   ===================================================================== */

/* --- ふだんの姿（右下・固定） --- */
.sennin {
  position: fixed;
  right: 24px; bottom: 24px;
  z-index: 90;                  /* ヘッダー(60)より上・スマホメニュー(100)より下 */
  display: flex; flex-direction: column; align-items: flex-end; gap: 8px;
}
.sennin__btn {
  /* 2026-08-27 中西さん決定：丸いボタンをやめ、**仙人が右下に立っている**形にした（全身をそのまま表示） */
  display: block;
  padding: 0; border: 0; background: none;
  cursor: pointer;
  filter: drop-shadow(0 4px 10px rgba(20,16,12,.22));
  transition: transform .18s, filter .18s;
}
.sennin__btn:hover { transform: translateY(-3px); filter: drop-shadow(0 8px 16px rgba(20,16,12,.3)); }
.sennin__btn:active { transform: translateY(0); }
.sennin__btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; border-radius: 10px; }
.sennin__btn img { display: block; width: auto; height: 86px; }

/* --- 頭の上の吹き出し --- */
.sennin__bubble {
  max-width: 220px;
  margin-right: 4px;
  padding: 9px 15px;
  border: 1.5px solid var(--accent);
  border-radius: 14px;
  background: var(--white);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(20,16,12,.16);
  opacity: 0; transform: translateY(6px) scale(.94);
  transition: opacity .22s, transform .22s;
  pointer-events: none;
}
.sennin__bubble::after {          /* しっぽ（仙人の頭を指す） */
  content: "";
  position: absolute; right: 34px; bottom: -7px;
  width: 12px; height: 12px;
  background: var(--white);
  border-right: 1.5px solid var(--accent);
  border-bottom: 1.5px solid var(--accent);
  transform: rotate(45deg);
}
.sennin__bubble { position: relative; }
.sennin.is-open .sennin__bubble { opacity: 1; transform: translateY(0) scale(1); }

/* 開いている間、仙人は暗転より前に出て明るいまま */
.sennin.is-open { z-index: 230; }
.sennin.is-open .sennin__btn { filter: drop-shadow(0 0 10px rgba(255,255,255,.55)) drop-shadow(0 8px 20px rgba(0,0,0,.45)); }

/* --- 暗転 --- */
.sennin-back {
  /* ★iPhone対策：キーボードが出てもページの高さは縮まないので、inset:0 だと
     「見えている範囲」からはみ出す。visualViewport の高さと位置を JS から受け取り、
     この覆いを“いま見えている範囲”にぴったり合わせる（--vv-h / --vv-top）。 */
  position: fixed;
  left: 0; right: 0;
  top: var(--vv-top, 0px);
  height: var(--vv-h, 100dvh);
  z-index: 220;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  background: rgba(20,16,12,.74);
  -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity .24s;
}
.sennin-back.is-shown { opacity: 1; }
.sennin-back[hidden] { display: none; }

/* --- 中央のパネル --- */
.sennin-panel {
  position: relative;
  width: 100%; max-width: 560px;
  max-height: 100%;
  display: flex; flex-direction: column;
  padding: 26px 24px 22px;
  background: var(--white);
  border: 1.5px solid var(--accent);
  border-radius: 16px;
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
  transform: translateY(14px) scale(.97);
  transition: transform .26s cubic-bezier(.2,.9,.3,1);
}
.sennin-back.is-shown .sennin-panel { transform: translateY(0) scale(1); }
.sennin-panel__x {
  position: absolute; top: 10px; right: 12px;
  width: 34px; height: 34px;
  padding: 0; border: 0; background: transparent;
  color: var(--mute); font-size: 26px; line-height: 1;
  cursor: pointer; border-radius: 50%;
}
.sennin-panel__x:hover { background: var(--accent-wash); color: var(--accent-dark); }
.sennin-panel__title {
  margin: 0 0 2px;
  font-size: 12px; font-weight: 700; letter-spacing: .16em; color: var(--accent);
}
.sennin-panel__lead { margin: 0 0 16px; font-size: 14px; color: var(--ink-2); }

/* --- やりとりの記録 --- */
.sennin-log { flex: 1 1 auto; overflow-y: auto; margin: 0 0 14px; }
.sennin-log:empty { display: none; }
.sennin-log__q,
.sennin-log__a { margin: 0 0 14px; font-size: 14.5px; line-height: 1.8; }
.sennin-log__q {
  padding: 9px 14px; border-radius: 12px 12px 4px 12px;
  background: var(--accent-wash); color: var(--ink);
  margin-left: auto; width: fit-content; max-width: 86%;
}
.sennin-log__a { color: var(--ink); }
.sennin-log__a b { color: var(--accent-dark); }
.sennin-log__hit {
  display: block; margin-top: 8px; padding: 10px 13px;
  border: 1px solid var(--line); border-radius: 10px;
  font-size: 13.5px; line-height: 1.7;
}
.sennin-log__hit strong { display: block; font-size: 14.5px; }
.sennin-log__hit span { color: var(--ink-2); }
.sennin-log__hit a { color: var(--accent-dark); }
.sennin-log__src { display: block; margin-top: 6px; font-size: 11.5px; color: var(--mute); }

/* --- 入力 --- */
.sennin-form { flex: 0 0 auto; display: flex; flex-direction: column; gap: 10px; }
.sennin-form textarea {
  width: 100%; padding: 11px 13px;
  font: inherit; font-size: 15px; line-height: 1.6; color: var(--ink);
  background: var(--white);
  border: 1.5px solid var(--accent); border-radius: 10px;
  resize: none;
}
.sennin-form textarea:focus {
  outline: 0; border-color: var(--accent-dark); box-shadow: 0 0 0 3px var(--accent-wash);
}
.sennin-form__send {
  align-self: center;
  min-width: 180px; padding: 12px 28px;
  font: inherit; font-size: 15px; font-weight: 700; letter-spacing: .06em;
  color: #fff; background: var(--accent);
  border: 0; border-radius: 999px; cursor: pointer;
  transition: background .2s;
}
.sennin-form__send:hover { background: var(--accent-dark); }
.sennin-form__send:disabled { background: #b9c3c4; cursor: default; }

/* --- スマホ --- */
@media (max-width: 719px) {
  .sennin { right: 20px; bottom: 26px; gap: 6px; }   /* スマホ：右下に寄りすぎていたので少し左上へ */
  .sennin__btn img { height: 88px; }
  .sennin__bubble { font-size: 14px; padding: 8px 14px; font-weight: 700 !important; }
  .sennin__bubble::after { right: 28px; }

  .sennin-back { padding: 14px; align-items: center; }
  .sennin-panel { max-height: 100%; padding: 22px 18px 18px; border-radius: 14px; }
  .sennin-panel__lead { font-size: 15px; }
  .sennin-log__q, .sennin-log__a { font-size: 16px; }
  .sennin-log__hit { font-size: 15px; }
  .sennin-log__hit strong { font-size: 16px; }
  .sennin-log__src { font-size: 12.5px; }
  .sennin-form textarea { font-size: 16px; }   /* 16px未満だとiPhoneが勝手に拡大する */
  .sennin-form__send { font-size: 16px; font-weight: 700 !important; width: 100%; }

  /* キーボードが出ているあいだは、覆いが見えている範囲と同じ大きさになる（JSが高さを渡す）。
     パネルはその中でいっぱいまで縮み、やりとりの記録のほうが先に縮むので、
     入力欄と送信ボタンは必ず見えたまま残る。 */
  .sennin-back.is-kb { padding: 10px; }
  .sennin-back.is-kb .sennin-panel { max-height: 100%; padding: 16px 16px 14px; }
  .sennin-back.is-kb .sennin-panel__lead { display: none; }   /* 狭いときは説明文を隠して入力欄に場所をゆずる */
}

/* 印刷とアニメーション苦手な方への配慮 */
@media (prefers-reduced-motion: reduce) {
  .sennin__bubble, .sennin-back, .sennin-panel { transition: none; }
}
