/* =========================================================
   ビジネス旅館 丸進 本実装
   Design: 山下優美（Figma: ARxyfekhnjyaoBoTxx7fWa）
   Figmaのデザイントークンに忠実に実装すること。
   独自のデザイン変更は行わない。
   ========================================================= */

:root {
  /* Figma実測値 */
  --ink: #2a2a2a;            /* 本文 */
  --ink-sub: #6e6e6e;        /* サブテキスト */
  --green-deep: #2c4a3e;     /* 深緑（見出し） */
  --green: #2c9e87;          /* ティール緑（ヘッダー電話・バッジ・CTA） */
  --green-dusty: #567d75;    /* くすみ緑 */
  --terra: #df6344;          /* 明るい朱（ラベル・DISCOUNT地・数字） */
  --terra-deep: #c84b31;     /* 朱（強調・ロゴ） */
  --beige: #f5efe6;          /* ベージュ地 */
  --border: #d9cfc2;         /* 罫線 */
  --white: #ffffff;
  --black: #1a1a1a;          /* フッター */

  --serif: 'Noto Serif JP', serif;
  --sans: 'Noto Sans JP', sans-serif;
  --en: 'Inter', sans-serif;

  --container: 1120px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  font-family: var(--sans);
  color: var(--ink);
  line-height: 1.9;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

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

/* ===== 見出しの共通パーツ（Figma: 英字ラベル + マーカー付き明朝見出し） ===== */
.sec-label {
  font-family: var(--en);
  font-size: 0.8rem;
  letter-spacing: 0.35em;
  color: var(--terra);
  text-align: center;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.sec-title {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--ink);
  text-align: center;
  line-height: 1.7;
}
/* マーカー（見出し背後の帯）— Figmaの wave 形はborder-radiusで近似 */
.marker { position: relative; display: inline-block; padding: 0 .35em; z-index: 0; }
.marker::before {
  content: "";
  position: absolute; z-index: -1;
  left: -6px; right: -6px; top: 52%; transform: translateY(-50%);
  height: 1.15em;
  border-radius: 48% 52% 50% 50% / 55% 45% 55% 45%;
}
.marker--pink::before { background: #f2d5c9; }
.marker--mint::before { background: #bfe0d4; }
/* 複数行見出しを1塊で覆うマーカー */
.marker--block::before {
  top: 0; transform: none;
  height: 100%;
  border-radius: 26% 74% 40% 60% / 48% 52% 48% 52%;
}
/* ぼかし楕円（ABOUT US / OUR STYLE 見出し背後） */
.glow { position: relative; z-index: 0; }
.glow::before {
  content: "";
  position: absolute; z-index: -1;
  left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 130%; height: 150%;
  background: radial-gradient(ellipse at center, rgba(223,99,68,0.28) 0%, rgba(223,99,68,0) 68%);
  filter: blur(6px);
}

/* =========================================================
   Header
   ========================================================= */
.header {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(0,0,0,0.05);
}
.header__inner {
  display: flex; align-items: stretch; justify-content: space-between;
  max-width: 1440px; margin: 0 auto;
  padding-left: 40px;
}
.header__logo { display: flex; align-items: center; padding: 12px 0; }
.header__logo img { width: 58px; height: 58px; }
.header__nav {
  display: flex; align-items: center; gap: 38px;
  margin-left: auto; margin-right: 44px;
  font-size: 0.95rem; font-weight: 500;
}
.header__nav a { position: relative; padding: 6px 0; }
.header__nav a:hover { color: var(--terra); }
.header__tel {
  background: var(--green);
  color: var(--white);
  display: flex; flex-direction: column; justify-content: center;
  padding: 10px 34px;
  text-align: center;
}
.header__tel .cap { font-size: 0.7rem; letter-spacing: 0.18em; }
.header__tel .num { font-family: var(--serif); font-size: 1.35rem; font-weight: 700; letter-spacing: 0.04em; }

/* =========================================================
   Hero（縦書き）
   ========================================================= */
.hero {
  position: relative;
  /* 画面幅に対して常に横が埋まる高さを確保（画像比 2.31:1 / 2.80:1 に対応）
     どれだけワイドでも右端が欠けないよう vw ベースで算出 */
  height: clamp(600px, 43vw, 900px);
  background-color: #2a1e14;
  overflow: hidden;
}

/* --- 背景スライドショー（JS不要・CSSアニメーションのみ） --- */
.hero__slides { position: absolute; inset: 0; }
.hero__slide {
  position: absolute; inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  animation: heroFade 16s infinite;
}
.hero__slide--1 {
  background-image: url(../img/hero-teishoku.jpg);
  background-position: left center;
  animation-delay: 0s;
}
.hero__slide--2 {
  background-image: url(../img/hero-facade.jpg);
  animation-delay: 8s;
}
@keyframes heroFade {
  0%    { opacity: 0; }
  4%    { opacity: 1; }   /* フェードイン */
  46%   { opacity: 1; }   /* 表示キープ */
  50%   { opacity: 0; }   /* フェードアウト */
  100%  { opacity: 0; }
}
/* 視差効果を減らす設定の利用者にはアニメーションを止める */
@media (prefers-reduced-motion: reduce) {
  .hero__slide { animation: none; }
  .hero__slide--1 { opacity: 1; }
  .hero__slide--2 { opacity: 0; }
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  z-index: 1;                       /* スライドの上・テキストの下 */
  background: linear-gradient(90deg, rgba(42,30,20,0.15) 0%, rgba(42,30,20,0.52) 72%);
}
.hero__inner {
  position: relative;
  z-index: 2;                       /* 最前面（コピー・電話ボタン） */
  max-width: 1440px; margin: 0 auto; height: 100%;
}
/* 縦書きコピー群（右側）— vertical-rl の通常フローで右から左へ列が並ぶ */
.hero__copy {
  position: absolute; top: 64px; right: 110px;
  height: 560px;
  color: var(--white);
  writing-mode: vertical-rl;
  font-family: var(--serif);
}
.hero__copy * { white-space: nowrap; }
.hero__place {
  font-size: 0.85rem; letter-spacing: 0.42em; font-weight: 500;
  margin-left: 30px; margin-top: 4px;
}
.hero__lead { font-size: 1.9rem; font-weight: 700; letter-spacing: 0.22em; margin-left: 26px; }
.hero__terms { margin-left: 24px; }
.hero__term {
  display: block;
  width: max-content;
  background: var(--terra);
  color: var(--white);
  font-size: 2rem; font-weight: 700; letter-spacing: 0.16em;
  padding: 22px 8px 26px;
  line-height: 1.15;
  margin-top: 42px;
}
.hero__term + .hero__term { margin-right: 18px; margin-top: 96px; }
.hero__sub  { font-size: 1.35rem; font-weight: 600; letter-spacing: 0.3em; margin-left: 22px; margin-top: 14px; }
/* 電話カード（右下） */
.hero__cta {
  position: absolute; right: 120px; bottom: 118px;
  background: var(--white);
  padding: 20px 44px;
  text-align: center;
  box-shadow: 0 4px 18px rgba(0,0,0,0.18);
}
.hero__cta .num {
  display: block;
  font-family: var(--serif);
  color: var(--terra-deep);
  font-size: 1.75rem; font-weight: 700; letter-spacing: 0.03em;
  line-height: 1.4;
}
.hero__cta .cap { font-size: 0.78rem; font-weight: 700; color: var(--terra-deep); letter-spacing: 0.12em; }
.hero__note {
  position: absolute; right: 120px; bottom: 48px;
  color: var(--white);
  font-size: 0.88rem; text-align: right; line-height: 2;
}
/* インボイスバッジ（左下） */
.hero__badge {
  position: absolute; left: 90px; bottom: 52px;
  /* 元画像は400×366（横長）。height:auto にして比率を保つ
     （正方形の枠に入れると円が縦に潰れる） */
  width: 240px; height: auto;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.35));
}

/* =========================================================
   ABOUT US（円形カード）
   ========================================================= */
.about { background: var(--beige); padding: 96px 24px 110px; }
.about__cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 44px;
  max-width: var(--container); margin: 64px auto 0;
}
.about__card {
  background: var(--white);
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center;
  padding: 12% 11%;
}
.about__card h3 {
  font-family: var(--sans);
  font-size: 1.06rem; font-weight: 700;
  color: var(--ink);
  padding-bottom: 10px; margin-bottom: 16px;
  position: relative;
  white-space: nowrap;
}
.about__card h3::after {
  content: "";
  position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
  width: 100%; height: 3px;
  background: var(--terra-deep);
  border-radius: 2px;
}
.about__card p { font-size: 0.9rem; line-height: 2; color: var(--ink); }

/* =========================================================
   PLEASE NOTE（写真背景＋白カード）
   ========================================================= */
.note {
  position: relative;
  background: url(../img/room-washitsu.jpg) center/cover no-repeat;
  padding: 96px 24px;
}
.note::before { content: ""; position: absolute; inset: 0; background: rgba(255,255,255,0.42); }
.note__card {
  position: relative;
  max-width: 850px; margin: 0 auto;
  background: rgba(255,255,255,0.92);
  padding: 56px 64px;
}
.note__label { font-family: var(--en); font-size: 0.78rem; letter-spacing: 0.3em; color: var(--ink-sub); margin-bottom: 14px; }
.note__title {
  font-family: var(--serif);
  font-size: 1.55rem; font-weight: 700;
  color: var(--green);
  margin-bottom: 20px;
}
.note__card p { font-size: 0.95rem; margin-bottom: 12px; }
.note__card p strong { font-weight: 700; }
.note__card .small { font-size: 0.85rem; color: var(--ink-sub); margin-top: 16px; margin-bottom: 0; }

/* =========================================================
   DISCOUNT（朱ブロック）
   ========================================================= */
.discount { background: var(--beige); padding: 90px 24px; }
.discount__box {
  max-width: 930px; margin: 0 auto;
  background: var(--terra);
  color: var(--white);
  text-align: center;
  padding: 78px 48px 70px;
}
.discount__label { font-family: var(--en); font-size: 0.8rem; letter-spacing: 0.35em; margin-bottom: 18px; }
.discount__title {
  font-family: var(--serif); font-size: 1.7rem; font-weight: 600; line-height: 1.8;
}
.discount__title .marker--white { position: relative; padding: 0 .3em; z-index: 0; }
.discount__title .marker--white::before {
  content: ""; position: absolute; z-index: -1;
  left: -4px; right: -4px; top: 52%; transform: translateY(-50%);
  height: 1.2em;
  background: rgba(255,255,255,0.22);
  border-radius: 48% 52% 50% 50% / 55% 45% 55% 45%;
}
.discount__main {
  font-family: var(--serif); font-size: 2.1rem; font-weight: 700; line-height: 1.8;
  margin-top: 54px;
}
.discount__sub { font-size: 0.82rem; margin-top: 8px; opacity: 0.95; }
.discount__lead { font-size: 0.95rem; line-height: 2.1; margin-top: 46px; }
.discount__tel {
  display: inline-block;
  background: var(--white);
  color: var(--terra-deep);
  font-family: var(--serif); font-size: 1.6rem; font-weight: 700;
  letter-spacing: 0.03em;
  padding: 18px 88px;
  margin-top: 40px;
}
.discount__hours { font-size: 0.88rem; margin-top: 20px; }

/* =========================================================
   PRICE（料金表）
   ========================================================= */
.price { background: var(--white); padding: 100px 24px; }
.price__lead { text-align: center; font-size: 0.92rem; color: var(--ink); margin-top: 22px; line-height: 2.1; }
.price__table {
  width: 100%; max-width: 800px; margin: 46px auto 0;
  border-collapse: collapse;
  border: 1px solid var(--border);
}
.price__table th, .price__table td { padding: 18px 24px; border-bottom: 1px solid var(--border); }
.price__table thead tr { background: var(--beige); }
.price__table th {
  font-family: var(--sans); font-weight: 700; font-size: 0.92rem; color: var(--green-deep);
  text-align: left;
}
.price__table th.r, .price__table td.r { text-align: right; }
.price__table th .u { font-size: 0.72rem; font-weight: 400; display: block; }
.price__table td { font-size: 0.95rem; }
.price__table td.r { font-family: var(--serif); }
.price__note { max-width: 800px; margin: 12px auto 0; font-size: 0.8rem; color: var(--ink-sub); }

/* =========================================================
   THREE REASONS（波形区切り＋交互レイアウト）
   ========================================================= */
.reasons {
  position: relative;
  background: var(--beige);
  padding: 130px 24px 150px;
}
/* 波形（上：白→ベージュ / 下：ベージュ→白） */
.reasons::before, .reasons::after {
  content: ""; position: absolute; left: 0; right: 0; height: 90px;
  background: var(--white);
}
.reasons::before { top: 0; border-radius: 0 0 55% 55% / 0 0 100% 100%; }
.reasons::after  { bottom: 0; border-radius: 55% 55% 0 0 / 100% 100% 0 0; }
.reasons__list { max-width: var(--container); margin: 70px auto 0; position: relative; z-index: 1; }
.reason {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px;
  align-items: center;
  padding: 56px 0;
}
.reason + .reason { border-top: 1px solid var(--border); }
.reason--rev .reason__img { order: 2; }
.reason__img img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.reason__num {
  font-family: var(--serif);
  font-size: 3.4rem; color: #e8a996; line-height: 1;
  margin-bottom: 18px;
}
.reason__title {
  font-family: var(--serif);
  font-size: 1.5rem; font-weight: 600; color: var(--green-deep);
  line-height: 1.8; margin-bottom: 18px;
}
.reason__text { font-size: 0.95rem; line-height: 2.1; }
.reason__onsen { margin-top: 14px; font-size: 0.9rem; line-height: 2; }
.reason__onsen strong { color: var(--terra); font-weight: 700; }

/* =========================================================
   LIVING SUPPORT（6カード）
   ========================================================= */
.support { background: var(--white); padding: 40px 24px 110px; }
.support__lead { text-align: center; font-size: 0.92rem; margin-top: 20px; }
.support__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
  max-width: var(--container); margin: 56px auto 0;
}
.support__card { border: 1px solid var(--border); background: var(--white); }
.support__card .ph {
  width: 100%; aspect-ratio: 3 / 2; object-fit: cover; display: block;
}
.support__card .ph--empty {
  width: 100%; aspect-ratio: 3 / 2;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.support__body { padding: 20px 22px 24px; }
.support__body h3 { font-family: var(--sans); font-size: 1.05rem; font-weight: 700; color: var(--terra); margin-bottom: 8px; }
.support__body p { font-size: 0.88rem; line-height: 1.95; }
.support__closing {
  text-align: center; margin-top: 48px;
  color: var(--terra); font-size: 0.95rem;
}

/* =========================================================
   FOR GROUP / CASE
   ========================================================= */
.cases { background: var(--beige); padding: 110px 24px; }
.cases__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
  max-width: var(--container); margin: 64px auto 0;
}
.case {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 34px 30px 38px;
  overflow: hidden;
}
.case__label { font-family: var(--en); font-size: 0.78rem; letter-spacing: 0.28em; color: var(--ink); margin-bottom: 10px; }
.case__title { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; color: var(--green-deep); margin-bottom: 16px; }
.case__text { font-size: 0.9rem; line-height: 2; position: relative; z-index: 1; }
.case__icon {
  position: absolute; right: 18px; top: 44px;
  width: 120px; opacity: 0.5;
}
.cases__closing { text-align: center; margin-top: 44px; font-size: 0.92rem; }

/* =========================================================
   ROOM
   ========================================================= */
.rooms { background: var(--white); padding: 110px 24px; }
.rooms__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 30px;
  max-width: var(--container); margin: 60px auto 0;
}
.room { background: var(--beige); }
.room .ph { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; display: block; }
.room .ph--empty { width: 100%; aspect-ratio: 16 / 10; background: var(--beige); }
.room__body { padding: 26px 32px 32px; }
.room__body h3 { font-family: var(--serif); font-size: 1.2rem; font-weight: 600; color: var(--green-deep); margin-bottom: 10px; }
.room__body p { font-size: 0.9rem; line-height: 2; }
/* 寝具のこだわりカード（洋室枠を置き換え・雰囲気を変える） */
.room--feature {
  display: grid; place-items: center;
  background: var(--white);
  border: 1px solid var(--terra);
  outline: 1px solid var(--terra); outline-offset: -7px;
  text-align: center;
}
.room--feature .room__body { padding: 40px 44px; }
.room--feature h3 {
  font-family: var(--serif); font-size: 1.25rem; font-weight: 600;
  color: var(--green-deep); line-height: 1.9;
  margin-bottom: 14px;
}
.room--feature p:last-child { font-size: 0.92rem; line-height: 2.1; text-align: left; }
.rooms__mattress-label {
  display: inline-block;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.2em;
  color: var(--terra);
  border: 1px solid var(--terra);
  border-radius: 100px;
  padding: 2px 18px;
  margin-bottom: 18px;
}
.rooms__more { text-align: center; margin-top: 52px; }
.rooms__more a {
  color: var(--terra); font-size: 0.95rem; font-weight: 500;
  border-bottom: 1px solid var(--terra); padding-bottom: 3px;
}

/* =========================================================
   OUR STYLE
   ========================================================= */
.style-sec { background: var(--beige); padding: 130px 24px; text-align: center; }
.style-sec__text { max-width: 760px; margin: 44px auto 0; font-size: 0.98rem; line-height: 2.4; }
.style-sec__text strong { font-weight: 700; }

/* =========================================================
   CONTACT（緑CTA）
   ========================================================= */
.contact {
  background: var(--green);
  color: var(--white);
  text-align: center;
  padding: 100px 24px;
}
.contact__label { font-family: var(--en); font-size: 0.8rem; letter-spacing: 0.35em; margin-bottom: 20px; }
.contact__title { font-family: var(--serif); font-size: 1.75rem; font-weight: 600; line-height: 1.9; }
.contact__tel {
  display: inline-block;
  background: var(--white);
  color: var(--green);
  font-family: var(--serif); font-size: 1.7rem; font-weight: 700; letter-spacing: 0.03em;
  padding: 20px 92px;
  margin-top: 44px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.contact__note { font-size: 0.88rem; margin-top: 26px; }

/* =========================================================
   Footer
   ========================================================= */
.footer { background: var(--black); color: var(--white); padding: 70px 24px 30px; }
.footer__inner {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px;
}
.footer__brand img { width: 88px; margin-bottom: 10px; }
.footer__brand .en { font-family: var(--en); font-size: 0.72rem; letter-spacing: 0.3em; color: rgba(255,255,255,0.6); }
.footer__addr { font-size: 0.88rem; line-height: 2; opacity: 0.9; margin-top: 18px; }
.footer__head { font-family: var(--en); font-size: 0.8rem; letter-spacing: 0.3em; color: rgba(255,255,255,0.55); margin-bottom: 20px; }
.footer__nav a { display: block; font-size: 0.9rem; opacity: 0.9; margin-bottom: 12px; }
.footer__nav a:hover { color: var(--terra); opacity: 1; }
.footer__tel { font-family: var(--serif); font-size: 1.7rem; font-weight: 700; color: var(--terra); letter-spacing: 0.02em; }
.footer__hours { font-size: 0.85rem; opacity: 0.85; margin-top: 10px; line-height: 1.9; }
.footer__copy {
  text-align: center; font-size: 0.75rem; opacity: 0.5;
  margin-top: 54px; padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

/* =========================================================
   ページヒーロー（サブページ共通）
   ========================================================= */
.page-hero {
  position: relative;
  height: 290px;
  background-size: cover; background-position: center;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  color: var(--white);
}
.page-hero::before { content: ""; position: absolute; inset: 0; background: rgba(44,90,78,0.55); }
.page-hero .sec-label { position: relative; color: var(--white); opacity: 0.9; }
.page-hero h1 {
  position: relative;
  font-family: var(--serif); font-size: 2.1rem; font-weight: 600; letter-spacing: 0.1em;
}

/* =========================================================
   サブページ共通コンポーネント
   ========================================================= */
/* 写真＋テキスト 2カラム */
.duo {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center;
  max-width: var(--container); margin: 0 auto;
  padding: 100px 24px;
}
.duo__img img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.duo .sec-label { text-align: left; }
.duo .sec-title { text-align: left; }
.duo__text { font-size: 0.95rem; line-height: 2.2; margin-top: 26px; }
.duo__text + .duo__text { margin-top: 16px; }

/* 3カードグリッド（お食事スタイル） */
.trio { background: var(--beige); padding: 100px 24px; }
.trio__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
  max-width: var(--container); margin: 56px auto 0;
}

/* センターメッセージ */
.center-msg { background: var(--white); padding: 110px 24px; text-align: center; }
.center-msg__text { max-width: 780px; margin: 40px auto 0; font-size: 0.95rem; line-height: 2.3; }

/* 緑ボックス（団体ご利用など） */
.green-box-wrap { background: var(--beige); padding: 90px 24px; }
.green-box {
  max-width: 880px; margin: 0 auto;
  background: var(--green);
  color: var(--white);
  padding: 54px 60px;
  outline: 1px solid var(--green); outline-offset: 6px;
}
.green-box__label { font-family: var(--en); font-size: 0.78rem; letter-spacing: 0.3em; margin-bottom: 14px; }
.green-box__title { font-family: var(--serif); font-size: 1.5rem; font-weight: 700; margin-bottom: 20px; }
.green-box p { font-size: 0.95rem; line-height: 2.05; margin-bottom: 10px; }
.green-box p:last-child { margin-bottom: 0; }

/* 朱CTA帯 */
.cta-band {
  background: var(--terra);
  color: var(--white);
  text-align: center;
  padding: 90px 24px;
}
.cta-band__title { font-family: var(--serif); font-size: 1.7rem; font-weight: 600; line-height: 1.9; }
.cta-band__tel {
  display: inline-block;
  background: var(--white);
  color: var(--terra-deep);
  font-family: var(--serif); font-size: 1.6rem; font-weight: 700; letter-spacing: 0.03em;
  padding: 18px 84px;
  margin-top: 40px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.cta-band__note { font-size: 0.88rem; margin-top: 24px; }

/* 法人カード（緑左ボーダー） */
.corp { background: var(--beige); padding: 100px 24px; }
.corp__card {
  max-width: 800px; margin: 48px auto 0;
  background: var(--white);
  border-left: 4px solid var(--green);
  padding: 44px 52px;
}
.corp__card .lead { color: var(--green); font-weight: 700; font-size: 1rem; margin-bottom: 14px; }
.corp__card p { font-size: 0.95rem; line-height: 2.05; }

/* ご利用にあたって（情報テーブル） */
.info { background: var(--white); padding: 100px 24px; }
.info__table {
  max-width: 800px; margin: 52px auto 0;
  border: 1px solid var(--border);
}
.info__row {
  display: grid; grid-template-columns: 200px 1fr;
  padding: 22px 32px;
  border-bottom: 1px solid var(--border);
}
.info__row:last-child { border-bottom: none; }
.info__row:nth-child(even) { background: var(--beige); }
.info__row dt { font-weight: 700; color: var(--green-deep); font-size: 0.95rem; }
.info__row dd { font-size: 0.95rem; line-height: 1.95; }
.info__row dd .sub { font-size: 0.85rem; color: var(--ink-sub); display: block; }
.info__row dd strong { font-weight: 700; }

/* FAQ */
.faq { background: var(--beige); padding: 100px 24px; }
.faq__list { max-width: 800px; margin: 52px auto 0; }
.faq__item {
  background: var(--white);
  border-left: 3px solid var(--terra);
  padding: 34px 44px;
  margin-bottom: 20px;
}
.faq__q { font-family: var(--serif); font-size: 1.1rem; font-weight: 600; color: var(--terra); margin-bottom: 12px; }
.faq__a { font-size: 0.93rem; line-height: 2.05; }

/* アクセス */
.access-sec { background: var(--white); padding: 100px 24px; }
.access-sec__head {
  max-width: 800px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center; gap: 34px;
}
.access-sec__head img { width: 150px; }
.access-sec__table { max-width: 800px; margin: 44px auto 0; }
.access-sec__row {
  display: grid; grid-template-columns: 190px 1fr; gap: 12px;
  padding: 22px 8px;
  border-bottom: 1px solid var(--border);
}
.access-sec__row dt { font-weight: 700; color: var(--green-deep); font-size: 0.95rem; }
.access-sec__row dd { font-size: 0.95rem; line-height: 2; }
.access-sec__row dd .tel { font-family: var(--serif); font-size: 1.25rem; font-weight: 700; color: var(--terra-deep); }
.access-sec__row dd .sub { font-size: 0.82rem; color: var(--ink-sub); display: block; }
.map-wrap {
  max-width: var(--container); margin: 64px auto 0;
  position: relative; padding-bottom: 46%; height: 0;
  border: 1px solid var(--border);
}
.map-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* =========================================================
   館内施設ページ専用
   ========================================================= */
/* 客室スペック表（部屋タイプ・備品） */
.spec { max-width: 800px; margin: 48px auto 0; border: 1px solid var(--border); }
.spec__row {
  display: grid; grid-template-columns: 200px 1fr;
  padding: 22px 32px;
  border-bottom: 1px solid var(--border);
}
.spec__row:last-child { border-bottom: none; }
.spec__row:nth-child(even) { background: var(--beige); }
.spec__row dt { font-weight: 700; color: var(--green-deep); font-size: 0.95rem; }
.spec__row dd { font-size: 0.95rem; line-height: 1.95; }

/* 備品タグ */
.amenity { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.amenity li {
  list-style: none;
  font-size: 0.85rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 3px 14px;
}
.spec__row:nth-child(even) .amenity li { background: var(--white); }

/* 施設カード（写真なしでも成立する枠） */
.fac-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
  max-width: var(--container); margin: 56px auto 0;
}
.fac-note {
  text-align: center; margin-top: 44px;
  font-size: 0.92rem; color: var(--ink-sub);
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 960px) {
  html { scroll-padding-top: 70px; }
  .header__inner { padding-left: 16px; }
  .header__logo img { width: 44px; height: 44px; }
  .header__nav { display: none; }
  .header__tel { padding: 8px 18px; }
  .header__tel .num { font-size: 1.1rem; }

  /* ===== スマホのヒーロー =====
     縦書きコピーを横並びに畳み、写真エリアと情報エリアを上下に分けて
     全体が間延びしないようにする（縦長対策） */
  .hero {
    height: auto;                    /* 固定高さをやめる */
    padding-bottom: 0;
  }
  .hero__slides {
    position: relative;              /* 写真は上部の帯として置く */
    height: 46vh;
    min-height: 260px;
    max-height: 340px;
  }
  .hero::before { bottom: auto; height: 46vh; max-height: 340px; z-index: 1; }

  .hero__inner {
    position: static;
    padding: 0 20px 28px;
    background: var(--beige);        /* 写真の下は地色にして情報を読ませる */
  }

  /* 縦書き → 横書きに切り替え、写真の上に重ねる */
  .hero__copy {
    position: absolute; top: 46%; left: 50%;
    transform: translate(-50%,-50%);
    z-index: 2;
    writing-mode: horizontal-tb;
    height: auto; right: auto;
    width: calc(100% - 40px);
    text-align: center;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
  }
  .hero__place { font-size: 0.72rem; letter-spacing: 0.3em; margin: 0 0 10px; }
  .hero__lead  { font-size: 1.15rem; margin: 0 0 10px; letter-spacing: 0.08em; }
  .hero__terms {
    display: flex; justify-content: center; gap: 10px; margin: 0 0 12px;
  }
  .hero__term {
    display: inline-block; width: auto; margin: 0;
    font-size: 1.15rem; padding: 8px 16px; letter-spacing: 0.08em;
  }
  .hero__term + .hero__term { margin: 0; }
  .hero__sub { font-size: 1rem; margin: 0; letter-spacing: 0.08em; }

  /* バッジは写真の左下に小さく */
  .hero__badge {
    left: 14px; top: 14px; bottom: auto;
    width: 116px; height: auto; z-index: 2;   /* 比率維持（円が潰れないように） */
    filter: drop-shadow(0 3px 12px rgba(0,0,0,0.35));
  }

  /* 電話ボタン・注記は写真の下（静的配置）に積む */
  .hero__cta {
    position: static;
    display: block;
    margin: 18px auto 0;             /* 写真の下にきちんと置く */
    padding: 16px 20px;
    max-width: 420px;
    border-radius: 4px;
  }
  .hero__cta .num { font-size: 1.5rem; }
  .hero__note {
    position: static;
    margin: 14px auto 0;
    max-width: 420px;
    color: var(--ink);               /* 地色の上なので文字色を反転 */
    text-align: center; font-size: 0.82rem; line-height: 1.9;
  }

  .sec-title { font-size: 1.5rem; }
  .about { padding: 64px 20px 72px; }
  .about__cards { grid-template-columns: 1fr; gap: 24px; max-width: 420px; }
  .about__card { border-radius: 24px; aspect-ratio: auto; padding: 30px 26px; }

  .note { padding: 60px 20px; }
  .note__card { padding: 34px 26px; }

  .discount { padding: 60px 20px; }
  .discount__box { padding: 48px 24px; }
  .discount__title { font-size: 1.25rem; }
  .discount__main { font-size: 1.45rem; margin-top: 36px; }
  .discount__tel { padding: 14px 44px; font-size: 1.3rem; }

  .price { padding: 64px 20px; }
  .price__table th, .price__table td { padding: 12px 12px; font-size: 0.85rem; }

  .reasons { padding: 90px 20px 110px; }
  .reason { grid-template-columns: 1fr; gap: 26px; padding: 36px 0; }
  .reason--rev .reason__img { order: 0; }
  .reason__num { font-size: 2.4rem; }
  .reason__title { font-size: 1.25rem; }

  .support { padding: 20px 20px 70px; }
  .support__grid { grid-template-columns: 1fr; }
  .cases { padding: 70px 20px; }
  .cases__grid { grid-template-columns: 1fr; }
  .rooms { padding: 70px 20px; }
  .rooms__grid { grid-template-columns: 1fr; }
  .style-sec { padding: 80px 20px; }
  .style-sec__text { font-size: 0.92rem; }
  .contact { padding: 64px 20px; }
  .contact__title { font-size: 1.3rem; }
  .contact__tel { padding: 16px 44px; font-size: 1.3rem; }
  .footer__inner { grid-template-columns: 1fr; gap: 34px; }
  .page-hero { height: 210px; }
  .page-hero h1 { font-size: 1.5rem; }

  .duo { grid-template-columns: 1fr; gap: 30px; padding: 60px 20px; }
  .trio { padding: 64px 20px; }
  .trio__grid { grid-template-columns: 1fr; }
  .center-msg { padding: 70px 20px; }
  .green-box-wrap { padding: 60px 20px; }
  .green-box { padding: 34px 26px; }
  .cta-band { padding: 60px 20px; }
  .cta-band__title { font-size: 1.3rem; }
  .cta-band__tel { padding: 14px 44px; font-size: 1.3rem; }
  .corp { padding: 64px 20px; }
  .corp__card { padding: 30px 26px; }
  .info { padding: 64px 20px; }
  .info__row { grid-template-columns: 1fr; gap: 4px; padding: 16px 20px; }
  .faq { padding: 64px 20px; }
  .faq__item { padding: 24px 22px; }
  .access-sec { padding: 64px 20px; }
  .access-sec__head { flex-direction: column; gap: 20px; }
  .access-sec__row { grid-template-columns: 1fr; gap: 4px; padding: 16px 4px; }
  .map-wrap { padding-bottom: 80%; }

  .spec__row { grid-template-columns: 1fr; gap: 6px; padding: 16px 20px; }
  .fac-grid { grid-template-columns: 1fr; }
}
