@charset "UTF-8";
/* ==========================================================================
   HSJAPAN Corporate Site
   assets/css/style.css
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design tokens
   -------------------------------------------------------------------------- */
:root {
  /* 大阪・心斎橋の「都会の中の庭園オアシス」をイメージしたパレット
     deep  = 植栽の深い緑（信頼感・落ち着き）
     brass = 真鍮のアクセント（ホスピタリティ）
     cream = 生成りの余白
     いずれも本文サイズで WCAG AA（4.5:1）を満たす値を選んでいる。 */
  --deep-900: #0F1A15;
  --deep-800: #16281F;
  --deep-700: #1F3A2C;
  --deep-600: #2C5340;
  --deep-100: #DCE7DF;

  --brass-600: #6E4C13;
  --brass-500: #94681F;
  --brass-400: #E0BE80;
  --brass-100: #F3E8D2;

  --cream-50:  #FBF9F4;
  --cream-100: #F4EFE4;
  --cream-200: #E8E1D2;
  --cream-300: #D5CBB6;

  --ink:      #18211D;
  --ink-70:   #4E5A53;
  --ink-45:   #7F8A83;

  /* 未確定項目のマーカー専用色（パレットから独立させて目立たせる） */
  --alert:    #A6421B;
  --alert-bg: #FAE6DC;

  --white: #FFFFFF;

  --font-sans:  "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  --font-serif: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;

  --container: 1140px;
  --gutter: clamp(20px, 5vw, 40px);
  --header-h: 76px;

  --radius: 4px;
  --radius-lg: 10px;

  --shadow-sm: 0 1px 2px rgba(7, 31, 51, .06), 0 2px 8px rgba(7, 31, 51, .05);
  --shadow-md: 0 6px 24px rgba(7, 31, 51, .10);

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* --------------------------------------------------------------------------
   2. Reset / base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.9;
  color: var(--ink);
  background: var(--cream-50);
  letter-spacing: .02em;
  overflow-wrap: break-word;
}

img, svg, video { max-width: 100%; height: auto; display: block; }

a { color: var(--deep-600); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--brass-500); }

h1, h2, h3, h4 { margin: 0; font-weight: 600; line-height: 1.45; letter-spacing: .01em; }
p  { margin: 0; }
ul, ol { margin: 0; padding: 0; }
li { list-style: none; }

button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

:focus-visible {
  outline: 2px solid var(--brass-500);
  outline-offset: 3px;
}

/* --------------------------------------------------------------------------
   3. Layout helpers
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: 840px; }

.section { padding-block: clamp(64px, 9vw, 112px); }
.section--cream  { background: var(--cream-100); }
.section--white { background: var(--white); }
.section--deep  { background: var(--deep-800); color: var(--deep-100); }
.section--deep h2, .section--deep h3 { color: var(--white); }

.skip-link {
  position: absolute;
  left: 12px; top: -60px;
  z-index: 200;
  padding: 10px 18px;
  background: var(--deep-800);
  color: var(--white);
  border-radius: var(--radius);
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; color: var(--white); }

/* --------------------------------------------------------------------------
   4. Section heading
   -------------------------------------------------------------------------- */
.sec-head { margin-bottom: clamp(32px, 5vw, 56px); }
.sec-head--center { text-align: center; }

.sec-head__en {
  display: block;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--brass-500);
  margin-bottom: 14px;
}
.section--deep .sec-head__en { color: var(--brass-400); }

.sec-head__ja {
  font-family: var(--font-serif);
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 600;
  line-height: 1.4;
  color: var(--deep-900);
}
.section--deep .sec-head__ja { color: var(--white); }

.sec-head__lead {
  margin-top: 20px;
  max-width: 40em;
  color: var(--ink-70);
}
.sec-head--center .sec-head__lead { margin-inline: auto; }
.section--deep .sec-head__lead { color: var(--deep-100); }

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 30px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .06em;
  border-radius: var(--radius);
  transition: background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.btn__arrow { transition: transform .25s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(4px); }

.btn--primary { background: var(--brass-500); color: var(--white); }
.btn--primary:hover { background: var(--brass-600); color: var(--white); }

.btn--deep { background: var(--deep-800); color: var(--white); }
.btn--deep:hover { background: var(--deep-700); color: var(--white); }

.btn--ghost {
  border: 1px solid var(--cream-300);
  color: var(--deep-800);
  background: var(--white);
}
.btn--ghost:hover { border-color: var(--deep-600); color: var(--deep-700); }

.btn--on-deep {
  border: 1px solid rgba(255, 255, 255, .45);
  color: var(--white);
}
.btn--on-deep:hover { background: var(--white); color: var(--deep-800); border-color: var(--white); }

.btn-row { display: flex; flex-wrap: wrap; gap: 16px; }
.btn-row--center { justify-content: center; }

/* --------------------------------------------------------------------------
   6. Header
   -------------------------------------------------------------------------- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background-color .3s var(--ease), box-shadow .3s var(--ease);
}
.header__inner {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* ヒーローに重なる状態（トップページのみ） */
.header--transparent { background: transparent; }
.header--transparent .logo__text,
.header--transparent .logo__sub,
.header--transparent .gnav__link { color: var(--white); }
.header--transparent .burger__bar { background: var(--white); }

/* スクロール後 / 下層ページ */
.header--solid {
  background: rgba(252, 250, 246, .94);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--cream-200);
}

.logo { display: flex; align-items: baseline; gap: 10px; }
.logo__text {
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--deep-900);
  transition: color .3s var(--ease);
}
.logo__sub {
  font-size: 11px;
  letter-spacing: .1em;
  color: var(--ink-45);
  transition: color .3s var(--ease);
}

.gnav__list { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 34px); }
.gnav__link {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: var(--deep-900);
  padding-block: 6px;
  transition: color .3s var(--ease);
}
.gnav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.gnav__link:hover::after,
.gnav__link[aria-current="page"]::after { transform: scaleX(1); }
.gnav__link:hover { color: var(--brass-500); }
.gnav__item--cta .gnav__link {
  padding: 11px 22px;
  background: var(--brass-500);
  color: var(--white);
  border-radius: var(--radius);
}
.gnav__item--cta .gnav__link::after { display: none; }
.gnav__item--cta .gnav__link:hover { background: var(--brass-600); color: var(--white); }
.header--transparent .gnav__item--cta .gnav__link { color: var(--white); }

/* ハンバーガー */
.burger {
  display: none;
  width: 44px; height: 44px;
  position: relative;
  z-index: 120;
}
.burger__bar {
  position: absolute;
  left: 11px;
  width: 22px; height: 1.5px;
  background: var(--deep-900);
  transition: transform .3s var(--ease), opacity .2s var(--ease), background-color .3s var(--ease);
}
.burger__bar:nth-child(1) { top: 16px; }
.burger__bar:nth-child(2) { top: 22px; }
.burger__bar:nth-child(3) { top: 28px; }
.burger[aria-expanded="true"] .burger__bar { background: var(--deep-900); }
.burger[aria-expanded="true"] .burger__bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] .burger__bar:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] .burger__bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 900px) {
  .burger { display: block; }
  .gnav {
    position: fixed;
    inset: 0;
    background: var(--cream-50);
    padding: calc(var(--header-h) + 24px) var(--gutter) 40px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .28s var(--ease), transform .28s var(--ease), visibility .28s;
    overflow-y: auto;
  }
  .gnav.is-open { opacity: 1; visibility: visible; transform: none; }
  .gnav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .gnav__item { border-bottom: 1px solid var(--cream-200); }
  .gnav__link,
  .header--transparent .gnav__link {
    display: block;
    padding: 20px 4px;
    font-size: 16px;
    color: var(--deep-900);
  }
  .gnav__link::after { display: none; }
  .gnav__item--cta { border-bottom: 0; margin-top: 26px; }
  .gnav__item--cta .gnav__link,
  .header--transparent .gnav__item--cta .gnav__link {
    text-align: center;
    color: var(--white);
    padding: 17px;
  }
}

/* --------------------------------------------------------------------------
   7. Hero（トップページ）
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: min(88vh, 780px);
  display: flex;
  align-items: flex-end;
  padding-top: var(--header-h);
  overflow: hidden;
  background: var(--deep-900);
}
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,31,51,.55) 0%, rgba(7,31,51,.20) 36%, rgba(7,31,51,.60) 64%, rgba(7,31,51,.88) 100%);
}
.hero__inner {
  position: relative;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding: 0 var(--gutter) clamp(56px, 9vw, 104px);
  color: var(--white);
}
.hero__en {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--brass-100);
  margin-bottom: 22px;
}
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(30px, 6vw, 60px);
  font-weight: 600;
  line-height: 1.32;
  color: var(--white);
  text-shadow: 0 2px 24px rgba(7, 31, 51, .3);
}
.hero__lead {
  margin-top: 26px;
  max-width: 34em;
  font-size: clamp(14px, 1.6vw, 16px);
  color: rgba(255, 255, 255, .92);
}
.hero__actions { margin-top: 38px; }

.hero__scroll {
  position: absolute;
  right: var(--gutter);
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: .2em;
  color: rgba(255, 255, 255, .75);
  writing-mode: vertical-rl;
}
.hero__scroll::after {
  content: "";
  width: 1px; height: 64px;
  background: linear-gradient(180deg, rgba(255,255,255,.7), rgba(255,255,255,0));
}
@media (max-width: 900px) { .hero__scroll { display: none; } }

/* --------------------------------------------------------------------------
   8. Page hero（下層ページ）
   -------------------------------------------------------------------------- */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + clamp(48px, 8vw, 90px)) 0 clamp(44px, 7vw, 80px);
  background: var(--deep-800);
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 90% at 88% 8%, rgba(224, 106, 63, .30) 0%, rgba(224, 106, 63, 0) 60%),
    radial-gradient(90% 80% at 4% 100%, rgba(27, 88, 133, .55) 0%, rgba(27, 88, 133, 0) 62%);
}
.page-hero__inner { position: relative; }
.page-hero__en {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--brass-400);
  margin-bottom: 14px;
}
.page-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4.6vw, 44px);
  color: var(--white);
}
.page-hero__lead {
  margin-top: 18px;
  max-width: 40em;
  color: rgba(255, 255, 255, .86);
  font-size: 15px;
}

/* パンくず */
.breadcrumb { background: var(--white); border-bottom: 1px solid var(--cream-200); }
.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding-block: 14px;
  font-size: 12px;
  color: var(--ink-45);
}
.breadcrumb__list li::after { content: "／"; margin-left: 10px; color: var(--cream-300); }
.breadcrumb__list li:last-child::after { content: none; }

/* --------------------------------------------------------------------------
   9. 汎用パーツ
   -------------------------------------------------------------------------- */
/* 2カラム（画像＋テキスト） */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.split--reverse .split__media { order: 2; }
.split__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.split__body p + p { margin-top: 1.4em; }
@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
}

/* カードグリッド */
.grid { display: grid; gap: clamp(20px, 3vw, 32px); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) {
  .grid--2, .grid--3 { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border: 1px solid var(--cream-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.card__media { aspect-ratio: 16 / 10; background: var(--cream-200); }
.card__media img { width: 100%; height: 100%; object-fit: cover; }
.card__body { padding: 26px 26px 30px; }
.card__no {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  color: var(--brass-500);
  margin-bottom: 12px;
}
.card__title {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--deep-900);
  margin-bottom: 12px;
}
.card__text { font-size: 14.5px; color: var(--ink-70); }
a.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

/* 機能・特徴リスト */
.feature { }
.feature__icon {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--brass-100);
  color: var(--brass-600);
  margin-bottom: 18px;
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 600;
}
.feature__title {
  font-size: 17px;
  color: var(--deep-900);
  margin-bottom: 10px;
}
.feature__text { font-size: 14.5px; color: var(--ink-70); }

/* 定義テーブル（会社概要・施設概要） */
.spec { width: 100%; border-collapse: collapse; }
.spec th, .spec td {
  padding: 20px 4px;
  border-bottom: 1px solid var(--cream-200);
  font-size: 15px;
  text-align: left;
  vertical-align: top;
}
.spec th {
  width: 190px;
  font-weight: 500;
  color: var(--deep-800);
  white-space: nowrap;
}
.spec td { color: var(--ink-70); }
@media (max-width: 640px) {
  .spec th, .spec td { display: block; width: auto; }
  .spec th { border-bottom: 0; padding-bottom: 4px; }
  .spec td { padding-top: 0; }
}

/* 沿革 */
.timeline { border-left: 1px solid var(--cream-300); padding-left: clamp(20px, 3vw, 36px); }
.timeline__item { position: relative; padding-bottom: 34px; }
.timeline__item:last-child { padding-bottom: 0; }
.timeline__item::before {
  content: "";
  position: absolute;
  left: calc(clamp(20px, 3vw, 36px) * -1 - 4.5px);
  top: 10px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--brass-500);
}
.timeline__date {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--brass-600);
  margin-bottom: 6px;
}
.timeline__text { font-size: 15px; color: var(--ink-70); }

/* ニュース一覧 */
.news-list { border-top: 1px solid var(--cream-200); }
.news-item {
  display: grid;
  grid-template-columns: 120px 108px 1fr;
  gap: 22px;
  align-items: center;
  padding: 24px 4px;
  border-bottom: 1px solid var(--cream-200);
  transition: background-color .25s var(--ease);
}
.news-item:hover { background: var(--cream-100); }
.news-item__date { font-size: 13px; letter-spacing: .06em; color: var(--ink-45); }
.news-item__tag {
  display: inline-block;
  padding: 4px 12px;
  font-size: 11px;
  letter-spacing: .08em;
  text-align: center;
  border: 1px solid var(--deep-100);
  border-radius: 999px;
  color: var(--deep-600);
  background: var(--white);
}
.news-item__title { font-size: 15.5px; color: var(--ink); font-weight: 500; }
@media (max-width: 700px) {
  .news-item { grid-template-columns: auto 1fr; gap: 8px 16px; }
  .news-item__title { grid-column: 1 / -1; }
}

/* 採用：募集要項 */
.job {
  background: var(--white);
  border: 1px solid var(--cream-200);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 40px);
}
.job + .job { margin-top: 24px; }
.job__title {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--deep-900);
  padding-bottom: 18px;
  margin-bottom: 6px;
  border-bottom: 1px solid var(--cream-200);
}

/* お問い合わせ情報 */
.info-list { display: grid; gap: 2px; }
.info-list__row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--cream-200);
}
.info-list__label { font-size: 14px; font-weight: 500; color: var(--deep-800); }
.info-list__value { font-size: 15px; color: var(--ink-70); }
@media (max-width: 560px) {
  .info-list__row { grid-template-columns: 1fr; gap: 4px; }
}

/* フォーム */
.form { display: grid; gap: 26px; }
.field { display: grid; gap: 9px; }
.field__label { font-size: 14px; font-weight: 500; color: var(--deep-800); }
.field__req {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  font-size: 10px;
  letter-spacing: .06em;
  color: var(--white);
  background: var(--brass-500);
  border-radius: 2px;
  vertical-align: 2px;
}
.field__note { font-size: 12.5px; color: var(--ink-45); }
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--cream-300);
  border-radius: var(--radius);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { min-height: 168px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0;
  border-color: var(--deep-600);
  box-shadow: 0 0 0 3px rgba(27, 88, 133, .12);
}
.form__consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--ink-70);
}
.form__consent input { margin-top: 6px; flex: none; }
.form__submit { justify-self: start; }
.form__note {
  padding: 16px 20px;
  background: var(--cream-100);
  border-left: 3px solid var(--brass-500);
  font-size: 13.5px;
  color: var(--ink-70);
}

/* 記事本文（プライバシーポリシー等） */
.prose h2 {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--deep-900);
  margin-top: 52px;
  margin-bottom: 16px;
}
.prose h2:first-child { margin-top: 0; }
.prose p { margin-bottom: 1.2em; color: var(--ink-70); }
.prose ul { margin: 0 0 1.4em; padding-left: 1.3em; }
.prose li { list-style: disc; color: var(--ink-70); margin-bottom: .5em; }

/* CTA 帯 */
.cta {
  position: relative;
  padding-block: clamp(56px, 8vw, 96px);
  background: var(--deep-800);
  overflow: hidden;
  text-align: center;
}
.cta::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(80% 120% at 50% 0%, rgba(224, 106, 63, .28), rgba(224, 106, 63, 0) 65%);
}
.cta__inner { position: relative; }
.cta__title {
  font-family: var(--font-serif);
  font-size: clamp(23px, 3.4vw, 32px);
  color: var(--white);
  margin-bottom: 16px;
}
.cta__text { color: rgba(255, 255, 255, .82); max-width: 38em; margin: 0 auto 32px; font-size: 15px; }

/* 注記（要確認プレースホルダ） */
.tbd {
  display: inline-block;
  padding: 1px 7px;
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--alert);
  background: var(--alert-bg);
  border-radius: 2px;
}
.notice {
  margin-top: 40px;
  padding: 18px 22px;
  border: 1px dashed var(--cream-300);
  border-radius: var(--radius);
  background: var(--white);
  font-size: 13px;
  line-height: 1.85;
  color: var(--ink-45);
}

/* --------------------------------------------------------------------------
   10. Footer
   -------------------------------------------------------------------------- */
.footer { background: var(--deep-900); color: rgba(255, 255, 255, .72); }
.footer__main {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  padding-block: clamp(48px, 7vw, 76px);
}
@media (max-width: 820px) { .footer__main { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__main { grid-template-columns: 1fr; } }

.footer__logo {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--white);
  margin-bottom: 14px;
}
.footer__address { font-size: 13.5px; line-height: 2; font-style: normal; }
.footer__heading {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--brass-400);
  margin-bottom: 18px;
}
.footer__links li { margin-bottom: 12px; }
.footer__links a { font-size: 14px; color: rgba(255, 255, 255, .78); }
.footer__links a:hover { color: var(--white); }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  align-items: center;
  justify-content: space-between;
  padding-block: 22px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: 12px;
}
.footer__bottom a { color: rgba(255, 255, 255, .7); }
.footer__bottom a:hover { color: var(--white); }

/* トップへ戻る */
.to-top {
  position: fixed;
  right: 20px; bottom: 20px;
  z-index: 90;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  background: var(--deep-800);
  color: var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s, background-color .25s var(--ease);
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--brass-500); color: var(--white); }

/* --------------------------------------------------------------------------
   11. スクロール表示アニメーション
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal--d1 { transition-delay: .1s; }
.reveal--d2 { transition-delay: .2s; }
.reveal--d3 { transition-delay: .3s; }

body.nav-open { overflow: hidden; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   12. 印刷
   -------------------------------------------------------------------------- */
@media print {
  .header, .footer, .to-top, .hero__scroll, .cta { display: none !important; }
  body { background: #fff; color: #000; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* フッターの小見出し（運営施設ラベル） */
.footer__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  color: var(--brass-400);
  margin-bottom: 8px;
}

/* 客室カードの料金表記 */
.card__price {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--cream-200);
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--brass-500);
}
.card__price span {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  color: var(--ink-45);
  letter-spacing: .04em;
}

/* お問い合わせページの窓口見出し */
.contact-group__title {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--deep-800);
  padding-bottom: 12px;
  margin-bottom: 4px;
  border-bottom: 2px solid var(--brass-500);
}
