@charset "UTF-8";

/* ============================================
   変数・ベース
============================================ */
:root {
  --color-primary: #1f5d8c;
  --color-green: #68b88a;
  --color-blue: #7fc0e4;
  --color-red: #d6453b;
  --color-text: #2e2e2e;
  --color-text-sub: #737373;
  --color-text-answer: #4d4d4d;
  --color-background-light: #eff7fb;
  --color-background-gray: #eef1f3;
  --color-tile: #e8f3f9;
  --color-border: #dfe1e2;
  --color-footer: #1b2b3a;
  --header-height: 84px;
  --font-sans: "Noto Sans JP", sans-serif;
  --font-serif: "Noto Serif JP", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  padding-top: var(--header-height);
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--color-text);
  background-color: #fff;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity .25s ease;
}

a:hover {
  opacity: .75;
}

ul, ol, dl, dd {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

p, h1, h2, h3, dt {
  margin: 0;
}


/* ============================================
   ユーティリティ
============================================ */
/* SPでのみ有効にする改行 */
.sp-only {
  display: none;
}


/* ============================================
   共通パーツ / 出現アニメーション
============================================ */
.js-fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}

.js-fade-in.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .js-fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
}


/* ============================================
   共通パーツ / セクション見出し
============================================ */
.section-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.section-title__english {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.82px;
  color: var(--color-primary);
  line-height: 1.2;
}

.section-title__japanese {
  font-size: 30px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.2;
}

.section-title__line {
  display: block;
  width: 40px;
  height: 3px;
  border-radius: 2px;
  background-color: var(--color-primary);
}


/* ============================================
   共通パーツ / LINEボタン
============================================ */
.line-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  color: #fff;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

.line-button--green {
  background-color: var(--color-green);
}

.line-button--blue {
  background-color: var(--color-blue);
}

.line-button__mark {
  position: absolute;
  left: 0;
  display: inline-flex;
  align-items: center;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, .12);
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1.4;
}

.line-button--green .line-button__mark {
  color: var(--color-green);
}

.line-button--blue .line-button__mark {
  color: var(--color-blue);
}

/* サイズ：ヘッダー用（ビューポート幅に応じて縮小） */
.line-button--small {
  padding: clamp(9px, .9vw, 13px) clamp(12px, 1.53vw, 22px);
  font-size: clamp(12px, .97vw, 14px);
  white-space: nowrap;
}

.line-button--small .line-button__mark {
  top: -9px;
  padding: 2px clamp(7px, .76vw, 11px);
  border-radius: 7px;
  font-size: clamp(11px, .83vw, 12px);
}

/* サイズ：CTA用 */
.line-button--medium {
  padding: 16px 30px;
  font-size: 16px;
  filter: drop-shadow(0 3px 5px rgba(0, 0, 0, .14));
}

.line-button--medium .line-button__mark {
  top: -12px;
  padding: 3px 13px;
  font-size: 14px;
}

/* サイズ：Hero用 */
.line-button--large {
  padding: 18px 34px;
  font-size: 17px;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, .18));
}

.line-button--large .line-button__mark {
  top: -12px;
  padding: 3px 14px;
  font-size: 15px;
}

/* サイズ：固定CTAバー用（SP） */
.line-button--fixed {
  flex: 1 1 0;
  min-width: 0;
  padding: 12px 8px;
  font-size: 13px;
  white-space: nowrap;
  filter: drop-shadow(0 3px 5px rgba(0, 0, 0, .14));
}

.line-button--fixed .line-button__mark {
  top: -9px;
  left: 10px;
  padding: 2px 10px;
  border-radius: 6px;
  font-size: 11px;
}


/* ============================================
   共通パーツ / 矢印付きボタン
============================================ */
.arrow-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 16px 30px;
  border-radius: 28px;
  background-color: var(--color-green);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  filter: drop-shadow(0 3px 5px rgba(0, 0, 0, .14));
}

.arrow-button img {
  width: 8px;
  height: 14px;
}


/* ============================================
   Header（スクロール追随）
============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: var(--header-height);
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, .06);
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.7vw, 24px);
  height: 100%;
  padding: 0 clamp(16px, 2.8vw, 40px);
  width: 1480px;
  margin: auto;
  max-width: 100%;
}

.site-logo {
  order: 0;
  display: flex;
  align-items: flex-end;
  gap: clamp(7px, .84vw, 12px);
  flex-shrink: 0;
}

.site-logo__mark {
  width: clamp(34px, 3.7vw, 53px);
  height: auto;
}

.site-logo__text {
  width: clamp(140px, 15.2vw, 219px);
  height: auto;
}

/* PCではラッパーを解除し、ロゴ／ナビ／LINEボタン／TELを1列に並べる */
.site-header__body {
  display: contents;
}

.global-navigation {
  order: 1;
  margin-left: auto;
}

.global-navigation__list {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.53vw, 22px);
}

.global-navigation__list a {
  font-size: clamp(12px, .9vw, 13px);
  font-weight: 500;
  white-space: nowrap;
}

.site-header__quick {
  order: 2;
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.25vw, 18px);
}

.tel-button {
  order: 3;
  display: inline-flex;
  align-items: center;
  gap: clamp(5px, .56vw, 8px);
  height: clamp(36px, 3vw, 43px);
  padding: 8px clamp(10px, 1.1vw, 16px) 8px clamp(9px, .97vw, 14px);
  border: 1.5px solid var(--color-primary);
  border-radius: 24px;
  color: var(--color-primary);
  font-size: clamp(14px, 1.25vw, 18px);
  font-weight: 700;
  white-space: nowrap;
}

.tel-button img {
  width: clamp(14px, 1.25vw, 18px);
  height: auto;
}

/* ハンバーガーボタン（PCでは非表示） */
.menu-button {
  order: 4;
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}

.menu-button__bar {
  display: block;
  width: 26px;
  height: 2px;
  margin: 0 auto;
  background-color: var(--color-primary);
  transition: transform .3s ease, opacity .3s ease;
}


/* ============================================
   Hero
============================================ */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 26px;
  height: 620px;
  padding: 0 40px 0 90px;
  overflow: hidden;
}

.hero__background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__background::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, .62);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
  width: 1180px;
  margin: auto;
  max-width: 100%;
}

.hero__lead {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: #415565;
  line-height: 1.4;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 700;
  letter-spacing: 2.08px;
  line-height: 1.5;
  color: #1a2b3a;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero__badge {
  padding: 8px 16px;
  border-radius: 18px;
  background-color: rgba(255, 255, 255, .95);
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}


/* ============================================
   Access
============================================ */
.access {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 44px;
  padding: 80px 40px;
  background-color: var(--color-background-light);
}

.access__body {
  display: flex;
  align-items: stretch;
  gap: 32px;
  width: 100%;
  max-width: 1152px;
}

.access__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  width: 420px;
  flex-shrink: 0;
  padding: 36px;
  border-radius: 16px;
  background-color: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .05);
}

.access__name {
  font-size: 18px;
  font-weight: 700;
}

.access__address {
  font-size: 15px;
  line-height: 1.7;
}

.access__route {
  font-size: 14px;
  line-height: 1.9;
  color: var(--color-text-sub);
}

.access__map-button {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  border-radius: 24px;
  background-color: var(--color-blue);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.access__map {
  flex: 1;
  min-width: 0;
  min-height: 360px;
  border-radius: 16px;
  overflow: hidden;
}

.access__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}


/* ============================================
   Facility（駐車場・客室）
============================================ */
.facility {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  padding: 80px 40px;
  background-color: #fff;
}

.facility__parking,
.facility__rooms {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.facility__photo {
  border-radius: 14px;
  overflow: hidden;
}

.facility__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.facility__photo--wide {
  width: 100%;
  max-width: 1160px;
  height: 360px;
}

.facility__caption {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.facility__caption-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-primary);
}

.facility__caption-note {
  font-size: 14px;
  color: var(--color-text-sub);
}

.facility__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 370px));
  gap: 24px;
  justify-content: center;
  width: 100%;
}

.facility__grid .facility__photo {
  height: 260px;
}

.facility__note {
  font-size: 15px;
  font-weight: 700;
  text-align: center;
}


/* ============================================
   Food（お食事）
============================================ */
.food {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  padding: 80px 40px;
  background-color: var(--color-background-light);
}

.food__lead {
  max-width: 476px;
  font-size: 17px;
  font-weight: 500;
  text-align: center;
}

.food__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 370px));
  gap: 24px;
  justify-content: center;
  width: 100%;
}

.food__photo {
  height: 260px;
  border-radius: 14px;
  overflow: hidden;
}

.food__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.food__note {
  font-size: 14px;
  color: var(--color-text-sub);
  text-align: center;
}


/* ============================================
   Plan（宿泊料金プラン）
============================================ */
.plan {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 80px 40px;
  background-color: #fff;
}

.plan__banner {
  max-width: 100%;
  padding: 14px 32px;
  border-radius: 28px;
  background-color: var(--color-green);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}

.plan__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 480px));
  gap: 28px;
  justify-content: center;
  align-items: start;
  width: 100%;
}

.plan-card {
  display: flex;
  flex-direction: column;
  border: 1.5px solid #d0d3d5;
  border-radius: 16px;
  background-color: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .06);
  overflow: hidden;
}

.plan-card--featured {
  border: 2px solid var(--color-primary);
}

.plan-card__head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  background-color: var(--color-background-light);
}

.plan-card--featured .plan-card__head {
  background-color: var(--color-primary);
}

.plan-card__name {
  font-size: 19px;
  font-weight: 700;
}

.plan-card--featured .plan-card__name {
  color: #fff;
}

.plan-card__badge {
  padding: 3px 10px;
  border-radius: 12px;
  background-color: #fff;
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  white-space: nowrap;
}

.plan-card__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 28px 32px;
}

.plan-card__price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  color: var(--color-red);
  line-height: 1.4;
}

.plan-card__price-label {
  font-size: 14px;
  font-weight: 500;
}

.plan-card__price-number {
  font-size: 32px;
  font-weight: 700;
}

.plan-card__price-unit {
  font-size: 13px;
  font-weight: 500;
}

.plan-card__front {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

.plan-card__front-price {
  color: var(--color-red);
}

.plan-card__highlight {
  padding: 9px 18px;
  border-radius: 8px;
  background-color: #fff2d5;
  color: var(--color-red);
  font-size: 15px;
  font-weight: 700;
  line-height: 20px;
  text-align: center;
}

.plan__note {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
  max-width: 988px;
  padding: 22px 32px;
  border-radius: 12px;
  background-color: var(--color-background-light);
}

.plan__note-title {
  font-size: 15px;
  font-weight: 700;
}

.plan__note-text {
  font-size: 13px;
  line-height: 1.75;
  color: var(--color-text-sub);
}


/* ============================================
   Guide（ご利用について）
============================================ */
.guide {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 44px;
  padding: 80px 40px;
  background-color: var(--color-background-light);
}

.guide__table {
  width: 100%;
  max-width: 1000px;
  border: 1px solid #dadcdd;
  border-radius: 14px;
  background-color: #fff;
  overflow: hidden;
}

.guide__row {
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid var(--color-border);
}

.guide__row:last-child {
  border-bottom: 0;
}

.guide__label {
  width: 230px;
  flex-shrink: 0;
  padding: 18px 12px 18px 24px;
  background-color: var(--color-primary);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

.guide__value {
  flex: 1;
  min-width: 0;
  padding: 18px 24px;
  font-size: 14px;
  line-height: 1.75;
}


/* ============================================
   Amenity（館内設備・アメニティ）
============================================ */
.amenity {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 44px;
  padding: 80px 40px;
  background-color: #fff;
}

.amenity__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px 16px;
  width: 100%;
  max-width: 966px;
}

.amenity__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 168px;
  height: 134px;
  padding: 16px 8px;
  border-radius: 12px;
  background-color: var(--color-tile);
}

.amenity__icon {
  width: 84px;
  height: 84px;
}

.amenity__label {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
}


/* ============================================
   FAQ（よくあるご質問）
============================================ */
.faq {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 44px;
  padding: 80px 40px;
  background-color: var(--color-background-light);
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 900px;
}

.faq__item {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px 28px;
  border-radius: 12px;
  background-color: #fff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, .04);
}

.faq__question,
.faq__answer {
  display: flex;
  gap: 14px;
}

.faq__question {
  align-items: center;
}

.faq__answer {
  align-items: flex-start;
}

.faq__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border-radius: 50%;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}

.faq__badge--question {
  background-color: var(--color-primary);
}

.faq__badge--answer {
  background-color: var(--color-green);
}

.faq__question-text {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

.faq__answer-text {
  font-size: 14px;
  line-height: 1.85;
  color: var(--color-text-answer);
}


/* ============================================
   CTA（ご予約・お問い合わせ）
============================================ */
.contact-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 70px 40px;
  background-color: var(--color-background-gray);
}

.contact-cta__title {
  font-size: 26px;
  font-weight: 700;
  text-align: center;
}

.contact-cta__lead {
  font-size: 14px;
  color: var(--color-text-sub);
  text-align: center;
}

.contact-cta__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.contact-cta__tel {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  color: var(--color-primary);
  font-weight: 700;
  line-height: 1.2;
}

.contact-cta__tel-label {
  font-size: 18px;
}

.contact-cta__tel-number {
  font-size: 40px;
}

/* Googleフォーム埋め込み（corporate ページのみ）
   フォーム本体は640pxが上限。710pxで本体が最大幅になる
   別ドメインのため高さは自動調整できず固定値で指定する
   高さは必須エラー5件が表示された状態を基準にしている */
.contact-cta__form {
  width: 710px;
  max-width: 100%;
}

.contact-cta__form-frame {
  display: block;
  width: 100%;
  height: 2460px;
  border: 0;
}


/* ============================================
   Footer
============================================ */
.site-footer {
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding: 56px 120px 28px;
  background-color: var(--color-footer);
  color: #fff;
}

.site-footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  width: 1480px;
  max-width: 100%;
  margin: auto;
  padding: 0 40px;
}

.site-footer__profile {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-footer__name {
  font-size: 20px;
  font-weight: 700;
}

.site-footer__address {
  font-size: 13px;
  line-height: 1.8;
  color: #dee4e8;
}

.site-footer__navigation ul {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}

.site-footer__navigation a {
  font-size: 13px;
  font-weight: 500;
  color: #f2f5f7;
}

.site-footer__line {
  width: 100%;
  height: 1px;
  margin: 0;
  border: 0;
  background-color: rgba(255, 255, 255, .18);
}

.site-footer__copyright {
  font-size: 12px;
  color: #c7d1d8;
  text-align: center;
}


/* ============================================
   下層ページ共通 / ページタイトル
============================================ */
.page-title {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 240px;
  padding: 40px 20px;
  overflow: hidden;
}

.page-title__background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-title__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-title__background::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(170deg, rgba(88, 99, 108, .42) 14%, rgba(51, 60, 68, .42) 54%, rgba(26, 33, 40, .42) 86%),
    linear-gradient(rgba(28, 38, 51, .42), rgba(28, 38, 51, .42));
}

.page-title__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.page-title__english {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.82px;
  color: #cbdbe8;
  line-height: 1.2;
}

.page-title__japanese {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 700;
  letter-spacing: 2.28px;
  color: #fff;
  line-height: 1.4;
}

.page-title__breadcrumb {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  opacity: .65;
}


/* ============================================
   下層ページ共通 / 項目テーブル
============================================ */
.info-table {
  width: 100%;
  max-width: 1000px;
  border: 1px solid #dadcdd;
  border-radius: 14px;
  background-color: #fff;
  overflow: hidden;
}

.info-table__row {
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid var(--color-border);
}

.info-table__row:last-child {
  border-bottom: 0;
}

.info-table__label {
  width: 230px;
  flex-shrink: 0;
  padding: 18px 12px 18px 24px;
  background-color: var(--color-primary);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

.info-table__value {
  flex: 1;
  min-width: 0;
  padding: 18px 24px;
  font-size: 14px;
  line-height: 1.75;
}


/* ============================================
   会社概要（company.html）
============================================ */
.company {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 44px;
  padding: 80px 40px 100px;
  background-color: #fff;
}


/* ============================================
   施設紹介（facility.html）/ アクセス
============================================ */
.facility-access {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  padding: 80px 40px;
  background-color: var(--color-background-light);
}

.facility-access__address {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.facility-access__address-main {
  font-size: 16px;
  font-weight: 500;
}

.facility-access__address-tel {
  font-size: 14px;
  color: var(--color-text-sub);
}

.facility-access__stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  width: 100%;
}

.access-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 300px;
  padding: 24px 12px;
  border-radius: 14px;
  background-color: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .05);
}

.access-stat__label {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-sub);
}

.access-stat__number {
  display: flex;
  align-items: baseline;
  gap: 2px;
  color: var(--color-primary);
  font-weight: 700;
  line-height: 1.2;
}

.access-stat__number-prefix {
  font-size: 14px;
}

.access-stat__number-value {
  font-family: var(--font-serif);
  font-size: 40px;
}

.facility-access__map {
  width: 100%;
  max-width: 1160px;
  height: 420px;
  border-radius: 16px;
  overflow: hidden;
}

.facility-access__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.facility-access__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.nearby-chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.nearby-chips__label {
  font-size: 13px;
  font-weight: 700;
}

.nearby-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: 1px solid #dfe5ea;
  border-radius: 18px;
  background-color: #fff;
}

.nearby-chip__name {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-primary);
}

.nearby-chip__time {
  font-size: 12px;
  font-weight: 500;
  color: var(--color-text-sub);
}

.map-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 26px;
  border-radius: 22px;
  background-color: var(--color-primary);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}


/* ============================================
   施設紹介（facility.html）/ ご挨拶
============================================ */
.greeting {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  padding: 80px 40px;
  background-color: var(--color-blue);
  color: #fff;
  text-align: center;
}

.greeting .section-title__english,
.greeting .section-title__japanese {
  color: #fff;
}

.greeting .section-title__line {
  background-color: #fff;
}

.greeting__catch {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1.56px;
  line-height: 1.4;
}

.greeting__text {
  max-width: 916px;
  font-size: 15px;
  line-height: 2.1;
}


/* ============================================
   施設紹介（facility.html）/ 施設の紹介
============================================ */
.facility-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 90px;
  padding: 80px 40px 100px;
  background-color: #fff;
}

.facility-intro__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.facility-intro__lead {
  max-width: 689px;
  font-size: 15px;
  color: var(--color-text-sub);
  text-align: center;
}

.facility-intro__blocks {
  display: flex;
  flex-direction: column;
  gap: 90px;
  width: 100%;
  max-width: 1160px;
}

/* --- ブロック（テキスト＋写真） --- */
.facility-block {
  display: flex;
  align-items: center;
  gap: 56px;
}

.facility-block--reverse {
  flex-direction: row-reverse;
}

.facility-block--full {
  flex-direction: column;
  align-items: stretch;
  gap: 24px;
}

.facility-block__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  flex: 1;
  min-width: 0;
}

.facility-block--full .facility-block__text {
  gap: 24px;
}

.facility-block__number {
  display: flex;
  align-items: baseline;
  gap: 12px;
  color: var(--color-primary);
  font-weight: 700;
  line-height: 1.2;
}

.facility-block__number-value {
  font-family: var(--font-serif);
  font-size: 38px;
}

.facility-block__number-label {
  font-size: 13px;
  letter-spacing: 1.82px;
}

.facility-block__title {
  font-size: 25px;
  font-weight: 700;
  line-height: 1.5;
}

.facility-block__body {
  font-size: 15px;
  line-height: 1.9;
  color: var(--color-text-answer);
}

.facility-block__note {
  font-size: 13px;
  color: var(--color-text-sub);
}

.facility-block__link {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: underline;
}

.facility-check {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  font-weight: 700;
  line-height: 2;
  color: var(--color-primary);
}

.facility-check li {
  display: flex;
  gap: 6px;
}

.facility-check li::before {
  content: "✓";
  flex-shrink: 0;
}

/* --- 写真（2カラムブロック用） --- */
.facility-block__photos {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 560px;
  flex-shrink: 0;
}

.facility-photo {
  border-radius: 14px;
  overflow: hidden;
}

.facility-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.facility-photo--main {
  height: 350px;
}

.facility-photo-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.facility-photo-pair .facility-photo {
  height: 160px;
}

/* --- ギャラリー（お食事ブロック用） --- */
.facility-gallery {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.facility-gallery__group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.facility-gallery__heading {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}

.facility-gallery__heading::before {
  content: "";
  display: block;
  width: 4px;
  height: 18px;
  flex-shrink: 0;
  border-radius: 2px;
  background-color: var(--color-primary);
}

.facility-gallery__heading-english {
  font-size: 12px;
  letter-spacing: 1.68px;
  color: var(--color-primary);
}

.facility-gallery__photos {
  display: grid;
  gap: 12px;
}

.facility-gallery__photos--dinner {
  grid-template-columns: 2fr 1fr;
}

.facility-gallery__photos--dinner .facility-photo {
  height: 420px;
}

.facility-gallery__photos--breakfast {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.facility-gallery__photos--breakfast .facility-photo {
  height: 300px;
}


/* ============================================
   法人団体様ご案内（corporate.html）/ お困りごと
============================================ */
.issues {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  padding: 90px 40px;
  background-color: #fff;
}

.issues__bubbles {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 42px;
}

.issue-bubble {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 220px;
  flex-shrink: 0;
  padding: 0 20px;
  border-radius: 50%;
  background-color: #5184ab;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.7;
  text-align: center;
}

/* 吹き出しのしっぽ（右下）: 底辺を円に隠した三角形 */
.issue-bubble::before {
  content: "";
  position: absolute;
  right: 9.1%;
  bottom: 3.6%;
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 32px solid #5184ab;
  transform: rotate(-45deg);
  transform-origin: 50% 0;
}

/* 背面の「?」 */
.issue-bubble::after {
  content: "?";
  position: absolute;
  top: 32px;
  left: 50%;
  font-size: 120px;
  font-weight: 700;
  line-height: 1;
  color: rgba(255, 255, 255, .28);
  transform: translateX(-50%);
}

.issue-bubble__text {
  position: relative;
  z-index: 1;
}

.issues__chevron {
  width: 64px;
  height: 54px;
}

.issues__consult {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 40px 0;
  text-align: center;
}

.issues__consult-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
}

.issues__consult-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}

.issues__consult-line {
  font-size: 16px;
  line-height: 1.6;
}

.issues__marker {
  padding: 2px 4px;
  background-color: #ceefff;
  font-weight: 700;
}


/* ============================================
   法人団体様ご案内（corporate.html）/ 選ばれる理由
============================================ */
.benefits {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 40px 100px;
  background-color: var(--color-background-light);
}

.benefits__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 980px;
  max-width: 100%;
}

.benefits__lead {
  font-size: 16px;
  line-height: 2;
  color: var(--color-text-answer);
  text-align: center;
}

.benefits__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.benefits__note {
  font-size: 15px;
  color: var(--color-text-sub);
  text-align: center;
}

/* --- 目玉の特典カード --- */
.benefit-hero {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 32px 36px;
  border-radius: 18px;
  background-color: var(--color-footer);
}

.benefit-hero__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: #2a3d4e;
}

.benefit-hero__icon img {
  width: 40px;
  height: 40px;
}

.benefit-hero__text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  min-width: 0;
}

.benefit-hero__label {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.82px;
  color: #f2a213;
}

.benefit-hero__title {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
}

.benefit-hero__body {
  font-size: 16px;
  line-height: 1.8;
  color: #f3f5f7;
}

.benefit-hero__mark {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  color: #f2a213;
  font-weight: 700;
  line-height: 1.2;
}

.benefit-hero__mark-value {
  font-family: var(--font-serif);
  font-size: 52px;
}

.benefit-hero__mark-unit {
  font-size: 18px;
  letter-spacing: 3.6px;
}

/* --- 通常の特典カード --- */
.benefit-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 26px;
  border-radius: 16px;
  background-color: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .06);
}

.benefit-card--wide {
  grid-column: 1 / -1;
}

.benefit-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 12px;
  background-color: #f2f5f8;
}

.benefit-card__icon img {
  width: 30px;
  height: 30px;
}

.benefit-card__text {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  min-width: 0;
}

.benefit-card__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}

.benefit-card__number {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--color-primary);
}

.benefit-card__body {
  font-size: 15px;
  line-height: 1.78;
  color: #525252;
}

.benefit-card__note {
  font-size: 14px;
  color: #8c8c8c;
}


/* ============================================
   法人団体様ご案内（corporate.html）/ 割引料金
============================================ */
.price-benefit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 90px 40px;
  background-color: #fff;
}

.price-benefit__lead {
  max-width: 830px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  text-align: center;
}

.price-benefit__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 460px));
  gap: 28px;
  justify-content: center;
  width: 100%;
}

.price-plan {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  background-color: #fff;
  overflow: hidden;
}

.price-plan__head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 16px;
  background-color: #6b7066;
  color: #fff;
  font-size: 19px;
  font-weight: 700;
  text-align: center;
}

.price-plan--featured .price-plan__head {
  background-color: var(--color-footer);
}

.price-plan__badge {
  padding: 3px 10px;
  border-radius: 10px;
  background-color: var(--color-green);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.price-plan__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 28px;
}

.price-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.price-row__label {
  font-size: 15px;
  font-weight: 500;
  color: #8c8c8c;
}

.price-row__numbers {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  line-height: 1.4;
}

.price-row__before {
  font-size: 16px;
  font-weight: 500;
  color: #8c8c8c;
  text-decoration: line-through;
}

.price-row__arrow {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-primary);
}

.price-row__after {
  font-size: 26px;
  font-weight: 700;
  color: var(--color-red);
}

.price-row__unit {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-red);
  position: relative;
  top:2px;
}

.price-benefit__note {
  max-width: 980px;
  font-size: 15px;
  line-height: 1.75;
  color: #8c8c8c;
  text-align: center;
}

.price-benefit__consult {
  width: 980px;
  max-width: 100%;
  padding: 24px 32px;
  border-radius: 12px;
  background-color: var(--color-background-light);
  text-align: center;
}

.price-benefit__consult-text {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--color-primary);
}


/* ============================================
   法人団体様ご案内（corporate.html）/ ご予約の流れ
============================================ */
.flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  padding: 90px 40px;
  background-color: var(--color-background-light);
}

.flow__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 1124px;
}

/* --- 矢印型のSTEPタブ --- */
.flow__steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.flow-step-column {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
}

/* タブは上下の枠線のみ。右端の矢印キャップが次のステップの左辺も兼ねる */
.flow-step {
  position: relative;
  height: 132px;
  flex-shrink: 0;
  background-color: #fff;
  border-top: 1.5px solid var(--color-primary);
  border-bottom: 1.5px solid var(--color-primary);
}

/* 矢印の周り（ステップ間の隙間）は白で埋めて帯をつなげる */
.flow-step::after {
  content: "";
  position: absolute;
  z-index: 3;
  top: -1.5px;
  right: -22px;
  width: 22px;
  height: calc(100% + 3px);
  background:
    url(../images/icons/step-cap-right.svg) no-repeat 50% 50%/100% 100%,
    linear-gradient(#fff, #fff) no-repeat 0 0/12px 100%;
}

/* 最後のステップは右に続きがないので白の帯は敷かない */
.flow-step-column:last-child .flow-step::after {
  background: url(../images/icons/step-cap-right.svg) no-repeat 50% 50%/100% 100%;
}

.flow-step__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  height: 100%;
  padding: 0 26px 0 34px;
  color: var(--color-primary);
}

.flow-step-column:first-child .flow-step__inner {
  padding-left: 26px;
}

.flow-step__number {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--font-serif);
  font-weight: 700;
}

.flow-step__number-label {
  font-size: 16px;
  letter-spacing: 1.2px;
}

.flow-step__number-value {
  font-size: 30px;
}

.flow-step__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

/* --- 説明文と写真 --- */
.flow-detail__text {
  flex: 1;
  min-height: 110px;
  padding: 14px 20px 30px;
  font-size: 16px;
  line-height: 1.75;
  color: #525252;
}

.flow-step-column:not(:first-child) .flow-detail__text {
  border-left: 1px dashed rgba(31, 93, 140, .6);
}

.flow-detail__photo {
  height: 160px;
  overflow: hidden;
}

.flow-detail__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Point帯 --- */
.flow-point {
  display: flex;
  align-items: stretch;
  width: 100%;
  max-width: 1044px;
  background-color: #fff;
  overflow: hidden;
}

.flow-point__highlight {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 565px;
  flex-shrink: 0;
  padding: 24px 70px 24px 32px;
  background-color: var(--color-footer);
  clip-path: polygon(0 0, 100% 0, calc(100% - 40px) 100%, 0 100%);
}

.flow-point__label {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1.8px;
  color: #f2f5f8;
  line-height: 1.2;
}

.flow-point__catch {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.65;
  color: #fff;
}

.flow-point__text {
  flex: 1;
  min-width: 0;
  align-self: center;
  padding: 22px 20px 22px 20px;
  font-size: 18px;
  line-height: 1.75;
  color: #525252;
}


/* ============================================
   規約系ページ（privacy-policy.html / terms.html）
============================================ */
.policy {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 40px 100px;
  background-color: #fff;
}

.policy__inner {
  display: flex;
  flex-direction: column;
  gap: 36px;
  width: 880px;
  max-width: 100%;
}

.policy__lead {
  font-size: 14px;
  line-height: 2;
  color: var(--color-text-answer);
}

.policy__article {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.policy__heading {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.4;
}

.policy__heading::before {
  content: "";
  display: block;
  width: 4px;
  height: 20px;
  flex-shrink: 0;
  border-radius: 2px;
  background-color: var(--color-primary);
}

.policy__text {
  font-size: 14px;
  line-height: 1.95;
  color: var(--color-text-answer);
}

.policy__list {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  line-height: 1.95;
  color: var(--color-text-answer);
}

.policy__list li {
  display: flex;
  gap: 4px;
}

.policy__list li::before {
  content: "・";
  flex-shrink: 0;
}

.policy__list--numbered li::before {
  content: counter(policy-item) ".";
  width: 1.6em;
}

.policy__list--numbered {
  counter-reset: policy-item;
}

.policy__list--numbered li {
  counter-increment: policy-item;
  gap: 6px;
}

.policy__contact {
  font-size: 14px;
  line-height: 1.95;
  color: var(--color-text-answer);
  font-style: normal;
}

.policy__date {
  font-size: 13px;
  color: var(--color-text-sub);
  text-align: right;
}


/* ============================================
   固定CTAバー（SPのみ表示・実際の表示制御はSPの記述とJS）
============================================ */
.fixed-cta {
  display: none;
}


/* ============================================
   タブレット〜小さめPC（〜1200px）
============================================ */
@media screen and (max-width: 1200px) {
  /* ヘッダーは clamp で連続的に縮小するため、ここでの上書きは行わない */

  .hero {
    padding: 0 40px;
  }

  .facility__grid,
  .food__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .plan__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


/* ============================================
   PCヘッダーの下限帯（1281〜1400px）
   タブレット切り替え直前でも詰まらないよう左右余白を詰める
============================================ */
@media screen and (min-width: 1281px) and (max-width: 1400px) {
  .site-header__inner {
    padding-left: 24px;
    padding-right: 24px;
  }
}


/* ============================================
   タブレット（〜1280px）
   ヘッダーをハンバーガーメニューに切り替える
   LINEボタン2つはドロワーに入れず、ハンバーガーの左に置く
============================================ */
@media screen and (max-width: 1280px) {

  /* --- ヘッダー --- */
  .site-logo__mark {
    width: 45px;
  }

  .site-logo__text {
    width: 186px;
  }

  .menu-button {
    display: flex;
    margin-left: auto;
  }

  /* ナビとTELはドロワーに格納する */
  .site-header__body {
    position: fixed;
    z-index: 1;
    top: var(--header-height);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 28px;
    width: min(420px, 100%);
    height: calc(100vh - var(--header-height));
    padding: 32px 24px 48px;
    background-color: #fff;
    box-shadow: -4px 0 16px rgba(0, 0, 0, .08);
    overflow-y: auto;
    /* transform を使うと中の position: fixed が効かなくなるため right で開閉する */
    right: calc(-1 * min(420px, 100%));
    transition: right .3s ease;
  }

  .site-header__body.is-open {
    right: 0;
  }

  .global-navigation {
    margin-left: 0;
  }

  .global-navigation__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .global-navigation__list li {
    border-bottom: 1px solid var(--color-border);
  }

  .global-navigation__list a {
    display: block;
    padding: 16px 4px;
    font-size: 15px;
  }

  /* LINEボタンはドロワーから出して、バー内・ハンバーガーの左に固定する */
  .site-header__quick {
    position: fixed;
    z-index: 2;
    top: 0;
    right: calc(clamp(16px, 2.8vw, 40px) + 56px);
    height: var(--header-height);
    margin-left: 0;
    gap: 8px;
  }

  .site-header__quick .line-button {
    padding: 10px 14px;
    font-size: 12px;
  }

  .site-header__quick .line-button__mark {
    top: -8px;
    left: 10px;
    padding: 2px 8px;
    border-radius: 5px;
    font-size: 10px;
  }

  .tel-button {
    justify-content: center;
    height: 54px;
    font-size: 21px;
  }

  .tel-button img {
    width: 20px;
  }

  /* ハンバーガー開閉 */
  .menu-button.is-open .menu-button__bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-button.is-open .menu-button__bar:nth-child(2) {
    opacity: 0;
  }

  .menu-button.is-open .menu-button__bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* --- Hero --- */
  .hero {
    height: 520px;
    padding: 0 40px;
  }

  .hero__title {
    font-size: 42px;
  }

  /* --- Access：カードと地図を縦積みにして地図を大きく見せる --- */
  .access__body {
    flex-direction: column;
    align-items: stretch;
  }

  .access__card {
    width: 100%;
    height: auto;
  }

  .access__map,
  .access__map iframe {
    min-height: 320px;
  }

  /* --- Facility / Food：3枚並びは維持し、高さだけ抑える --- */
  .facility__photo--wide {
    height: 300px;
  }

  .facility__grid .facility__photo,
  .food__photo {
    height: 210px;
  }

  /* --- Plan：カードを1列に --- */
  .plan__grid {
    grid-template-columns: minmax(0, 1fr);
    max-width: 620px;
    gap: 24px;
  }

  .plan__banner {
    text-align: center;
  }

  /* --- 下層ページ共通 --- */
  .page-title {
    min-height: 200px;
  }

  .page-title__japanese {
    font-size: 32px;
  }

  /* --- 施設紹介 --- */
  .facility-access__map {
    height: 340px;
  }

  .facility-intro,
  .facility-intro__blocks {
    gap: 64px;
  }

  .facility-block,
  .facility-block--reverse {
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
  }

  .facility-block__photos {
    width: 100%;
  }

  .facility-photo--main {
    height: 320px;
  }

  .facility-photo-pair .facility-photo {
    height: 180px;
  }

  .facility-gallery__photos--dinner .facility-photo,
  .facility-gallery__photos--breakfast .facility-photo {
    height: 280px;
  }

  /* --- 法人団体様ご案内 --- */
  .issues__consult-title {
    font-size: 20px;
  }

  .benefit-hero__title {
    font-size: 20px;
  }

  .benefit-hero__mark-value {
    font-size: 42px;
  }

  .flow-step {
    height: 120px;
  }

  .flow-step__inner {
    gap: 4px;
    padding: 0 20px 0 26px;
  }

  .flow-step__number-value {
    font-size: 26px;
  }

  .flow-step__title {
    font-size: 16px;
  }

  .flow-detail__text {
    min-height: 120px;
    padding: 12px 14px 10px;
    font-size: 16px;
  }

  .flow-detail__photo {
    height: 130px;
  }

  .flow-point__highlight {
    width: 54%;
    gap: 16px;
    padding: 24px 56px 24px 26px;
  }

  .flow-point__label {
    font-size: 24px;
  }

  .flow-point__catch {
    font-size: 16px;
  }

  .flow-point__text {
    padding: 18px 18px 18px 10px;
    font-size: 16px;
  }
}


/* ============================================
   SP（〜767px）
============================================ */
@media screen and (max-width: 767px) {
  :root {
    --header-height: 64px;
  }

  body {
    line-height: 1.8;
  }

  .sp-only {
    display: inline;
  }

  /* --- 見出し --- */
  .section-title__japanese {
    font-size: 24px;
    text-align: center;
  }

  /* --- ヘッダー --- */
  .site-header__inner {
    padding: 0 16px;
  }

  .site-logo__mark {
    width: 38px;
  }

  .site-logo__text {
    width: 150px;
  }

  .site-header__body {
    width: 100%;
    padding: 32px 20px 48px;
  }

  /* SPは幅が足りないため、LINEボタンはバーに出さずドロワー内に置く */
  .site-header__quick {
    position: static;
    height: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 26px;
  }

  .site-header__quick .line-button {
    width: 100%;
    padding: 14px 16px;
    font-size: 14px;
  }

  .site-header__quick .line-button__mark {
    top: -10px;
    left: 10px;
    padding: 2px 12px;
    border-radius: 7px;
    font-size: 12px;
  }

  .tel-button {
    height: 52px;
    font-size: 20px;
  }

  /* --- Hero --- */
  .hero {
    height: auto;
    padding: 56px 20px;
    gap: 20px;
  }

  .hero__inner {
    gap: 20px;
  }

  .hero__lead {
    font-size: 13px;
  }

  .hero__title {
    font-size: 32px;
    letter-spacing: 1.2px;
  }

  .hero__badge {
    font-size: 12px;
    padding: 6px 12px;
  }

  .hero__actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }

  .hero__actions .line-button {
    width: 100%;
    padding: 16px 12px;
    font-size: 15px;
  }

  /* --- 各セクション共通の余白 --- */
  .access,
  .facility,
  .food,
  .plan,
  .guide,
  .amenity,
  .faq {
    gap: 28px;
    padding: 56px 20px;
  }

  /* --- Access --- */
  .access__body {
    flex-direction: column;
    gap: 20px;
  }

  .access__card {
    width: 100%;
    padding: 24px 20px;
    gap: 14px;
  }

  .access__name {
    font-size: 16px;
  }

  .access__map,
  .access__map iframe {
    min-height: 260px;
  }

  .access__map-button {
    width: 100%;
    justify-content: center;
  }

  /* --- Facility --- */
  .facility__photo--wide {
    height: 220px;
  }

  .facility__grid,
  .food__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }

  .facility__grid .facility__photo,
  .food__photo {
    height: 220px;
  }

  .facility__caption-title {
    font-size: 18px;
  }

  .facility__caption-note,
  .facility__note {
    font-size: 13px;
  }

  /* --- Food --- */
  .food__lead {
    font-size: 15px;
  }

  /* --- Plan --- */
  .plan__banner {
    padding: 14px 20px;
    border-radius: 16px;
    font-size: 14px;
    text-align: left;
  }

  .plan__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }

  .plan-card__head {
    flex-wrap: wrap;
    padding: 14px 16px;
  }

  .plan-card__name {
    font-size: 17px;
  }

  .plan-card__body {
    padding: 22px 4px;
  }

  .plan-card__price {
    gap: 6px;
  }

  .plan-card__price-number {
    font-size: 28px;
  }

  .plan-card__highlight {
    font-size: 14px;
    padding: 9px;
  }

  .plan__note {
    padding: 20px;
  }

  .arrow-button {
    width: 100%;
    padding: 16px 20px;
    font-size: 15px;
  }

  /* --- Guide --- */
  .guide__row {
    flex-direction: column;
  }

  .guide__label {
    width: 100%;
    padding: 12px 16px;
  }

  .guide__value {
    padding: 16px;
  }

  /* --- Amenity --- */
  .amenity__grid {
    gap: 12px;
  }

  .amenity__item {
    width: calc((100% - 12px) / 2);
    height: auto;
    padding: 16px 8px;
  }

  .amenity__icon {
    width: 64px;
    height: 64px;
  }

  .amenity__label {
    font-size: 12px;
  }

  /* --- FAQ --- */
  .faq__item {
    padding: 20px 16px;
  }

  .faq__question-text {
    font-size: 15px;
  }

  .faq__answer-text {
    font-size: 13px;
  }

  /* --- CTA --- */
  .contact-cta {
    padding: 48px 20px;
    gap: 20px;
  }

  .contact-cta__title {
    font-size: 20px;
  }

  .contact-cta__row {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 26px;
  }

  .contact-cta__tel {
    justify-content: center;
  }

  .contact-cta__tel-number {
    font-size: 32px;
  }

  .contact-cta__row .line-button {
    width: 100%;
    padding: 16px 12px;
    font-size: 15px;
  }

  .contact-cta__form-frame {
    height: 2800px;
  }

  /* --- Footer --- */
  .site-footer {
    gap: 28px;
    padding: 40px 20px 24px;
  }

  .site-footer__top {
    flex-direction: column;
    gap: 28px;
    padding: 0;
  }

  .site-footer__name {
    font-size: 17px;
  }

  .site-footer__navigation ul {
    align-items: flex-start;
    gap: 12px;
  }

  /* --- 下層ページ共通 --- */
  .page-title {
    min-height: 180px;
    padding: 32px 20px;
  }

  .page-title__english {
    font-size: 12px;
  }

  .page-title__japanese {
    font-size: 24px;
    letter-spacing: 1.2px;
  }

  .info-table__row {
    flex-direction: column;
  }

  .info-table__label {
    width: 100%;
    padding: 12px 16px;
  }

  .info-table__value {
    padding: 16px;
  }

  /* --- 会社概要 --- */
  .company {
    gap: 28px;
    padding: 48px 20px 56px;
  }

  /* --- 施設紹介 / アクセス --- */
  .facility-access {
    gap: 28px;
    padding: 48px 20px;
  }

  .facility-access__address-main {
    font-size: 15px;
  }

  .facility-access__address-tel {
    font-size: 13px;
  }

  .facility-access__stats {
    gap: 12px;
  }

  .access-stat {
    width: 100%;
    padding: 18px 12px;
  }

  .access-stat__number-value {
    font-size: 34px;
  }

  .facility-access__map {
    height: 260px;
    border-radius: 12px;
  }

  .facility-access__bottom {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }

  .nearby-chips {
    justify-content: center;
    gap: 8px;
  }

  .nearby-chips__label {
    width: 100%;
    text-align: center;
  }

  .map-button {
    width: 100%;
    padding: 14px 20px;
    font-size: 14px;
  }

  /* --- 施設紹介 / ご挨拶 --- */
  .greeting {
    gap: 20px;
    padding: 48px 20px;
  }

  .greeting__catch {
    font-size: 20px;
    letter-spacing: .8px;
  }

  .greeting__text {
    font-size: 14px;
    line-height: 2;
    text-align: left;
  }

  /* --- 施設紹介 / 施設の紹介 --- */
  .facility-intro {
    gap: 48px;
    padding: 48px 20px 56px;
  }

  .facility-intro__lead {
    font-size: 14px;
    text-align: left;
  }

  .facility-intro__blocks {
    gap: 48px;
  }

  .facility-block,
  .facility-block--reverse,
  .facility-block--full {
    gap: 20px;
  }

  .facility-block__text,
  .facility-block--full .facility-block__text {
    gap: 16px;
  }

  .facility-block__number-value {
    font-size: 32px;
  }

  .facility-block__title {
    font-size: 20px;
  }

  .facility-block__body {
    font-size: 14px;
  }

  .facility-check {
    font-size: 13px;
    line-height: 1.9;
  }

  .facility-photo--main {
    height: 220px;
  }

  .facility-photo-pair .facility-photo {
    height: 120px;
  }

  .facility-gallery {
    gap: 28px;
  }

  .facility-gallery__heading {
    font-size: 16px;
  }

  .facility-gallery__photos--dinner,
  .facility-gallery__photos--breakfast {
    grid-template-columns: minmax(0, 1fr);
  }

  .facility-gallery__photos--dinner .facility-photo,
  .facility-gallery__photos--breakfast .facility-photo {
    height: 200px;
  }

  /* --- 法人団体様ご案内 / お困りごと --- */
  .issues {
    gap: 32px;
    padding: 48px 20px;
  }

  .issues__bubbles {
    gap: 14px;
  }

  .issue-bubble {
    width: calc((100% - 14px) / 2);
    max-width: 220px;
    height: auto;
    aspect-ratio: 1;
    padding: 0 12px;
    font-size: 16px;
  }

  .issue-bubble::before {
    border-left-width: 15px;
    border-right-width: 15px;
    border-top-width: 24px;
  }

  .issue-bubble::after {
    top: 18px;
    font-size: 88px;
  }

  .issues__consult {
    gap: 14px;
    padding: 8px 0 0;
  }

  .issues__consult-title {
    flex-direction: column;
    gap: 10px;
    font-size: 18px;
  }

  .issues__consult-line {
    font-size: 16px;
    text-align: left;
  }

  /* --- 法人団体様ご案内 / 選ばれる理由 --- */
  .benefits {
    padding: 48px 20px 56px;
  }

  .benefits__inner {
    gap: 28px;
  }

  .benefits__lead {
    font-size: 15px;
    text-align: left;
  }

  .benefits__list,
  .benefits__grid {
    gap: 14px;
  }

  .benefits__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .benefit-hero {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 20px;
  }

  .benefit-hero__title {
    font-size: 19px;
  }

  .benefit-hero__mark {
    flex-direction: row;
    align-items: baseline;
    gap: 8px;
  }

  .benefit-hero__mark-value {
    font-size: 38px;
  }

  .benefit-card {
    gap: 14px;
    padding: 20px 16px;
  }

  .benefit-card__icon {
    width: 48px;
    height: 48px;
  }

  .benefit-card__icon img {
    width: 26px;
    height: 26px;
  }

  .benefit-card__title {
    font-size: 16px;
  }

  /* --- 法人団体様ご案内 / 割引料金 --- */
  .price-benefit {
    gap: 24px;
    padding: 48px 20px 56px;
  }

  .price-benefit__lead {
    font-size: 16px;
    text-align: left;
  }

  .price-benefit__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }

  .price-plan__head {
    flex-wrap: wrap;
    padding: 14px 16px;
    font-size: 17px;
  }

  .price-plan__body {
    padding: 22px 18px;
  }

  .price-row__after {
    font-size: 24px;
  }

  .price-benefit__note {
    font-size: 14px;
    text-align: left;
  }

  .price-benefit__consult {
    padding: 20px 16px;
  }

  .price-benefit__consult-text {
    font-size: 16px;
  }

  /* --- 法人団体様ご案内 / ご予約の流れ --- */
  .flow {
    gap: 28px;
    padding: 48px 20px 56px;
  }

  /* 縦積み：左に下向きシェブロンのSTEPタブ、右に説明文＋写真 */
  .flow__steps {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
  }

  .flow-step-column {
    display: grid;
    grid-template-columns: 40.1% minmax(0, 1fr);
    grid-template-rows: auto 1fr;
    row-gap: 10px;
    column-gap: 4.1%;
  }

  /* タブは左右の枠線のみ。下端のV字は次のステップの上辺も兼ねる */
  .flow-step,
  .flow-step-column:first-child .flow-step {
    grid-row: 1 / 3;
    height: auto;
    min-height: 110px;
    background-color: #fff;
    border-top: 0;
    border-bottom: 0;
    border-left: 1.5px solid var(--color-primary);
    border-right: 1.5px solid var(--color-primary);
    clip-path: none;
  }

  /* V字の周り（ステップ間の隙間）は白で埋めて帯をつなげる */
  .flow-step::after {
    content: "";
    position: absolute;
    z-index: 2;
    top: 100%;
    left: -1.5px;
    right: -1.5px;
    width: auto;
    height: 30px;
    background:
      url(../images/icons/step-cap.svg) no-repeat 50% 0/100% 100%,
      linear-gradient(#fff, #fff) no-repeat 50% 0/100% 15px;
  }

  /* 最後のステップは下に続きがないので白の帯は敷かない */
  .flow-step-column:last-child .flow-step::after {
    background: url(../images/icons/step-cap.svg) no-repeat 50% 0/100% 100%;
  }

  .flow-step__inner,
  .flow-step-column:first-child .flow-step__inner {
    position: static;
    align-items: center;
    gap: 10px;
    height: 100%;
    padding: 12px 10px 15px;
    background: none;
    text-align: center;
    clip-path: none;
  }

  .flow-step__number {
    justify-content: center;
  }

  .flow-step__number-value {
    font-size: 24px;
  }

  .flow-step__title {
    font-size: 15px;
    line-height: 1.6;
  }

  .flow-detail__text,
  .flow-step-column:not(:first-child) .flow-detail__text {
    grid-column: 2;
    min-height: 0;
    padding: 0;
    border-left: 0;
    font-size: 15px;
    line-height: 1.8;
    letter-spacing: .04em;
    text-align: justify;
  }

  .flow-detail__photo {
    grid-column: 2;
    height: auto;
    aspect-ratio: 385 / 180;
  }

  .flow-point {
    flex-direction: column;
    margin-top: 40px;
  }

  .flow-point__highlight {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 8px;
    padding: 26px 20px 34px;
    text-align: center;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16px), 0 100%);
  }

  .flow-point__label {
    font-size: 22px;
  }

  .flow-point__catch {
    font-size: 17px;
  }

  .flow-point__text {
    padding: 20px;
    font-size: 16px;
  }

  /* --- 規約系ページ --- */
  .policy {
    padding: 48px 20px 56px;
  }

  .policy__inner {
    gap: 28px;
  }

  .policy__heading {
    font-size: 16px;
  }

  .policy__lead,
  .policy__text,
  .policy__list,
  .policy__contact {
    font-size: 13px;
  }

  /* --- 固定CTAバー --- */
  .fixed-cta {
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 90;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 18px 12px calc(12px + env(safe-area-inset-bottom));
    background-color: rgba(255, 255, 255, .96);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, .1);
    opacity: 0;
    transform: translateY(110%);
    pointer-events: none;
    transition: transform .3s ease, opacity .3s ease;
  }

  .fixed-cta.is-visible {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
}


/* ============================================
   固定CTAバー：モーション設定に配慮
============================================ */
@media (prefers-reduced-motion: reduce) {
  .fixed-cta {
    transition: none;
  }
}
