/* ==========================================================================
   IRODORI resort-hotel (リゾートホテル) — style.css
   Resort-Luxury: 白 × サンドベージュ × トロピカルブルー × ターコイズ × 真鍮金
   Hero Z (横スク海面 + 予約バー) / Loader L26 (海面波紋)
   ========================================================================== */

/* ==========================================================================
   1. CSS VARIABLES
   ========================================================================== */
:root {
  --rh-white:        #FFFFFF;
  --rh-cream:        #FDF9F0;
  --rh-sand:         #E8DDC4;
  --rh-sand-deep:    #C9B89B;
  --rh-sand-soft:    #F4EEDF;
  --rh-blue:         #2A8FAB;
  --rh-blue-deep:    #1A6F87;
  --rh-blue-soft:    #87C0D2;
  --rh-blue-pale:    #E0F0F5;
  --rh-turquoise:    #5BC0BE;
  --rh-turquoise-l:  #A0D8D5;
  --rh-brass:        #C9A961;
  --rh-brass-deep:   #A88840;
  --rh-brass-soft:   #E5D5A8;
  --rh-ink:          #1A2A30;
  --rh-ink-soft:     #2C3D44;
  --rh-stone:        #6B7682;
  --rh-stone-l:      #9BA3AE;
  --rh-line:         #DCE3EA;
  --rh-line-soft:    #ECF1F5;

  --rh-font-jp: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  --rh-font-jp-serif: "Noto Serif JP", "Hiragino Mincho ProN", "YuMincho", serif;
  --rh-font-en-serif: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --rh-font-en-sans: "Quicksand", -apple-system, BlinkMacSystemFont, sans-serif;

  --rh-size-1: 0.75rem;
  --rh-size-2: 0.875rem;
  --rh-size-3: 1rem;
  --rh-size-4: 1.125rem;
  --rh-size-5: 1.25rem;
  --rh-size-6: 1.5rem;
  --rh-size-7: 1.875rem;
  --rh-size-8: 2.25rem;
  --rh-size-9: 3rem;
  --rh-size-10: 3.75rem;
  --rh-size-11: 4.5rem;
  --rh-size-12: 6rem;

  --rh-space-1: 4px;
  --rh-space-2: 8px;
  --rh-space-3: 12px;
  --rh-space-4: 16px;
  --rh-space-5: 24px;
  --rh-space-6: 32px;
  --rh-space-7: 48px;
  --rh-space-8: 64px;
  --rh-space-9: 96px;
  --rh-space-10: 128px;

  --rh-container: 1240px;
  --rh-container-wide: 1440px;
  --rh-radius-sm: 4px;
  --rh-radius-md: 8px;
  --rh-radius-lg: 16px;
  --rh-radius-xl: 24px;
  --rh-radius-pill: 999px;

  --rh-shadow-sm: 0 1px 2px rgba(26, 42, 48, 0.06);
  --rh-shadow-md: 0 4px 16px rgba(26, 42, 48, 0.1);
  --rh-shadow-lg: 0 12px 32px rgba(26, 42, 48, 0.14);
  --rh-shadow-xl: 0 24px 64px rgba(26, 42, 48, 0.18);
  --rh-glow-blue: 0 0 32px rgba(42, 143, 171, 0.3);

  --rh-trans-fast: 0.2s ease;
  --rh-trans: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --rh-trans-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);

  --rh-z-loader: 9999;
  --rh-z-header: 100;
  --rh-z-modal: 200;
  --rh-z-float: 90;
}

/* ==========================================================================
   2. RESET / BASE
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  margin: 0;
  font-family: var(--rh-font-jp);
  font-size: var(--rh-size-3);
  line-height: 1.85;
  color: var(--rh-ink);
  background: var(--rh-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, picture, video, svg { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; padding: 0; color: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; }
a { color: var(--rh-blue); text-decoration: none; transition: color var(--rh-trans-fast); }
a:hover { color: var(--rh-blue-deep); }
ul, ol { padding: 0; margin: 0; list-style: none; }
table { border-collapse: collapse; width: 100%; }

.rh-body { overflow-x: hidden; }

.rh-container {
  max-width: var(--rh-container);
  margin: 0 auto;
  padding-left: var(--rh-space-5);
  padding-right: var(--rh-space-5);
}

.rh-section { padding: var(--rh-space-9) 0; }

@media (max-width: 768px) {
  .rh-section { padding: var(--rh-space-7) 0; }
}

/* word-break safety net */
.rh-hero__title,
.rh-about__title,
.rh-rooms__title,
.rh-act__title,
.rh-dining__title,
.rh-plans__title,
.rh-gallery__title,
.rh-access__title,
.rh-staff__title,
.rh-news__title,
.rh-cta__title,
.rh-page-hero__title,
.rh-page-cta__title {
  word-break: keep-all;
  overflow-wrap: break-word;
}

/* ==========================================================================
   3. TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  line-height: 1.4;
  font-weight: 700;
  color: var(--rh-ink);
  font-family: var(--rh-font-jp-serif);
  letter-spacing: 0.04em;
}
p { margin: 0; }

.rh-eyebrow {
  display: inline-block;
  font-family: var(--rh-font-en-serif);
  font-size: var(--rh-size-3);
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.24em;
  color: var(--rh-brass);
  margin-bottom: var(--rh-space-3);
}

.rh-eyebrow::before {
  content: "—";
  margin-right: var(--rh-space-2);
  color: var(--rh-brass);
}

.rh-h2 {
  font-family: var(--rh-font-jp-serif);
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.5;
  color: var(--rh-blue-deep);
}

.rh-h2 em {
  font-style: normal;
  color: var(--rh-brass);
}

.rh-lead {
  font-size: var(--rh-size-4);
  line-height: 2;
  color: var(--rh-stone);
  max-width: 720px;
}

.rh-num {
  font-family: var(--rh-font-en-sans);
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ==========================================================================
   4. LOADER L26 — 海面波紋 (新)
   ========================================================================== */
.rh-loader {
  position: fixed;
  inset: 0;
  z-index: var(--rh-z-loader);
  background: var(--rh-blue-pale);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--rh-space-5);
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.rh-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.rh-loader__ripple {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rh-loader__circle {
  position: absolute;
  border-radius: 50%;
  border: 2px solid var(--rh-blue);
  opacity: 0;
}

.rh-loader__circle--1 {
  width: 100%;
  height: 100%;
  animation: rh-ripple 3s cubic-bezier(0.4, 0, 0.6, 1) 0s infinite;
}

.rh-loader__circle--2 {
  width: 100%;
  height: 100%;
  animation: rh-ripple 3s cubic-bezier(0.4, 0, 0.6, 1) 1s infinite;
}

.rh-loader__circle--3 {
  width: 100%;
  height: 100%;
  animation: rh-ripple 3s cubic-bezier(0.4, 0, 0.6, 1) 2s infinite;
}

.rh-loader__center {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--rh-brass);
  box-shadow: 0 0 24px rgba(201, 169, 97, 0.6);
  z-index: 1;
}

.rh-loader__name {
  font-family: var(--rh-font-jp-serif);
  font-size: var(--rh-size-5);
  font-weight: 700;
  color: var(--rh-blue-deep);
  letter-spacing: 0.16em;
  opacity: 0;
  animation: rh-fade-up 0.8s ease 1.2s forwards;
}

.rh-loader__sub {
  font-family: var(--rh-font-en-serif);
  font-size: var(--rh-size-2);
  font-weight: 500;
  font-style: italic;
  color: var(--rh-brass);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  opacity: 0;
  animation: rh-fade-up 0.8s ease 1.4s forwards;
}

@keyframes rh-ripple {
  0% { transform: scale(0.2); opacity: 0.8; border-width: 3px; }
  100% { transform: scale(1); opacity: 0; border-width: 1px; }
}

@keyframes rh-fade-up {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   5. HEADER — transparent → glass
   ========================================================================== */
.rh-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--rh-z-header);
  background: transparent;
  transition: background var(--rh-trans), backdrop-filter var(--rh-trans), border-color var(--rh-trans);
  border-bottom: 1px solid transparent;
}

.rh-header.is-scrolled {
  background: rgba(253, 249, 240, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--rh-line-soft);
}

.rh-header__inner {
  max-width: var(--rh-container-wide);
  margin: 0 auto;
  padding: var(--rh-space-3) var(--rh-space-5);
  display: flex;
  align-items: center;
  gap: var(--rh-space-5);
  min-height: 76px;
}

.rh-header__logo {
  display: flex;
  align-items: center;
  gap: var(--rh-space-3);
  flex-shrink: 0;
  text-decoration: none;
  color: var(--rh-white);
  transition: color var(--rh-trans);
}

.rh-header.is-scrolled .rh-header__logo,
.rh-header.is-scrolled .rh-header__nav-list a {
  color: var(--rh-ink);
}

.rh-header__logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--rh-brass);
  color: var(--rh-white);
  display: grid;
  place-items: center;
  font-family: var(--rh-font-en-serif);
  font-size: var(--rh-size-5);
  font-weight: 700;
  font-style: italic;
}

.rh-header__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.rh-header__logo-jp {
  font-family: var(--rh-font-jp-serif);
  font-size: var(--rh-size-3);
  font-weight: 700;
  letter-spacing: 0.06em;
}

.rh-header__logo-en {
  font-family: var(--rh-font-en-serif);
  font-style: italic;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--rh-brass-soft);
  letter-spacing: 0.24em;
  margin-top: 2px;
}

.rh-header.is-scrolled .rh-header__logo-en { color: var(--rh-brass); }

.rh-header__nav { margin-left: auto; }

.rh-header__nav-list {
  display: flex;
  gap: var(--rh-space-5);
  white-space: nowrap;
}

.rh-header__nav-list a {
  font-size: var(--rh-size-2);
  font-weight: 500;
  color: var(--rh-white);
  letter-spacing: 0.06em;
  position: relative;
  padding: var(--rh-space-2) 0;
  flex-shrink: 0;
  transition: color var(--rh-trans);
}

.rh-header__nav-list a::after {
  content: "";
  position: absolute;
  inset: auto 0 -2px;
  height: 1px;
  background: var(--rh-brass);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--rh-trans);
}

.rh-header__nav-list a:hover::after,
.rh-header__nav-list a[aria-current="page"]::after { transform: scaleX(1); }

.rh-header__actions {
  display: flex;
  align-items: center;
  gap: var(--rh-space-3);
  flex-shrink: 0;
}

.rh-header__lang {
  font-family: var(--rh-font-en-sans);
  font-size: var(--rh-size-1);
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--rh-white);
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--rh-radius-sm);
  transition: color var(--rh-trans), border-color var(--rh-trans);
}

.rh-header.is-scrolled .rh-header__lang {
  color: var(--rh-stone);
  border-color: var(--rh-line);
}

.rh-header__lang:hover { color: var(--rh-brass); border-color: var(--rh-brass); }

.rh-header__cta {
  background: var(--rh-brass);
  color: var(--rh-white);
  padding: 12px 24px;
  border-radius: var(--rh-radius-pill);
  font-family: var(--rh-font-jp-serif);
  font-size: var(--rh-size-2);
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: background var(--rh-trans-fast), transform var(--rh-trans-fast);
}

.rh-header__cta:hover {
  background: var(--rh-brass-deep);
  color: var(--rh-white);
  transform: translateY(-1px);
}

.rh-header__menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  position: relative;
}

.rh-header.is-scrolled .rh-header__menu-btn { background: var(--rh-sand-soft); }

.rh-header__menu-btn span {
  position: absolute;
  left: 50%;
  width: 18px;
  height: 1.5px;
  background: var(--rh-white);
  transform: translateX(-50%);
}

.rh-header.is-scrolled .rh-header__menu-btn span { background: var(--rh-ink); }

.rh-header__menu-btn span:nth-child(1) { top: 16px; }
.rh-header__menu-btn span:nth-child(2) { top: 21px; }
.rh-header__menu-btn span:nth-child(3) { top: 26px; }

@media (max-width: 1024px) {
  .rh-header__nav,
  .rh-header__lang { display: none; }
  .rh-header__menu-btn { display: block; }
}

/* Drawer */
.rh-drawer {
  position: fixed;
  inset: 76px 0 0;
  z-index: 95;
  background: var(--rh-cream);
  padding: var(--rh-space-7) var(--rh-space-5);
  transform: translateX(100%);
  transition: transform var(--rh-trans);
  overflow-y: auto;
  display: none;
}

.rh-drawer.is-open {
  transform: translateX(0);
  display: block;
}

.rh-drawer__nav a {
  display: block;
  padding: var(--rh-space-4) 0;
  font-family: var(--rh-font-jp-serif);
  font-size: var(--rh-size-5);
  font-weight: 700;
  color: var(--rh-blue-deep);
  border-bottom: 1px solid var(--rh-line);
}

/* ==========================================================================
   6. HERO Z — 横スク海面パノラマ + 大判タイポ + 予約バー (新)
   ========================================================================== */
.rh-hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
  background: var(--rh-blue-deep);
}

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

.rh-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: rh-hero-pan 30s ease-in-out infinite alternate;
}

.rh-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 42, 48, 0.2) 0%, rgba(26, 42, 48, 0.55) 100%);
}

@keyframes rh-hero-pan {
  0% { transform: scale(1.05) translateX(0); }
  100% { transform: scale(1.12) translateX(-2%); }
}

.rh-hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--rh-container);
  margin: 0 auto;
  padding: 0 var(--rh-space-5);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--rh-white);
}

.rh-hero__eyebrow {
  display: inline-block;
  font-family: var(--rh-font-en-serif);
  font-style: italic;
  font-size: var(--rh-size-3);
  font-weight: 500;
  letter-spacing: 0.32em;
  color: var(--rh-brass-soft);
  margin-bottom: var(--rh-space-5);
  padding-bottom: var(--rh-space-3);
  border-bottom: 1px solid var(--rh-brass-soft);
  align-self: flex-start;
}

.rh-hero__title {
  font-family: var(--rh-font-jp-serif);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 700;
  line-height: 1.4;
  color: var(--rh-white);
  letter-spacing: 0.06em;
  margin-bottom: var(--rh-space-5);
  max-width: 800px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
}

.rh-hero__title em {
  font-style: normal;
  color: var(--rh-brass-soft);
  display: block;
  margin-top: var(--rh-space-3);
}

.rh-hero__sub {
  font-size: var(--rh-size-4);
  line-height: 2;
  color: var(--rh-white);
  opacity: 0.92;
  margin-bottom: var(--rh-space-7);
  max-width: 640px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.rh-hero__sub strong { color: var(--rh-brass-soft); font-weight: 600; }

/* Booking bar */
.rh-hero__bar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--rh-radius-lg);
  padding: var(--rh-space-3);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr auto;
  gap: var(--rh-space-2);
  align-items: end;
  max-width: 920px;
  box-shadow: var(--rh-shadow-xl);
}

.rh-hero__bar-field {
  display: flex;
  flex-direction: column;
  padding: 8px 12px;
  border-right: 1px solid var(--rh-line-soft);
}

.rh-hero__bar-field:last-of-type { border-right: 0; }

.rh-hero__bar-label {
  font-family: var(--rh-font-en-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--rh-stone);
  text-transform: uppercase;
}

.rh-hero__bar-input,
.rh-hero__bar-select {
  background: transparent;
  border: 0;
  padding: 4px 0;
  font-family: var(--rh-font-jp-serif);
  font-size: var(--rh-size-3);
  font-weight: 700;
  color: var(--rh-ink);
  width: 100%;
  outline: none;
}

.rh-hero__bar-btn {
  background: var(--rh-brass);
  color: var(--rh-white);
  padding: 14px 28px;
  border-radius: var(--rh-radius-md);
  font-family: var(--rh-font-jp-serif);
  font-size: var(--rh-size-3);
  font-weight: 700;
  letter-spacing: 0.08em;
  white-space: nowrap;
  transition: background var(--rh-trans-fast), transform var(--rh-trans-fast);
}

.rh-hero__bar-btn:hover {
  background: var(--rh-brass-deep);
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .rh-hero__bar {
    grid-template-columns: 1fr 1fr;
    gap: var(--rh-space-3);
  }
  .rh-hero__bar-field { border-right: 0; border-bottom: 1px solid var(--rh-line-soft); padding-bottom: var(--rh-space-3); }
  .rh-hero__bar-btn { grid-column: 1 / -1; }
}

/* Buttons */
.rh-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--rh-space-2);
  padding: 14px 32px;
  border-radius: var(--rh-radius-pill);
  font-family: var(--rh-font-jp-serif);
  font-size: var(--rh-size-3);
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: transform var(--rh-trans-fast), box-shadow var(--rh-trans-fast), background var(--rh-trans-fast);
  white-space: nowrap;
  border: 1px solid transparent;
}

.rh-btn--primary {
  background: var(--rh-brass);
  color: var(--rh-white);
}

.rh-btn--primary:hover {
  background: var(--rh-brass-deep);
  color: var(--rh-white);
  transform: translateY(-2px);
}

.rh-btn--blue {
  background: var(--rh-blue);
  color: var(--rh-white);
}

.rh-btn--blue:hover {
  background: var(--rh-blue-deep);
  color: var(--rh-white);
  transform: translateY(-2px);
}

.rh-btn--ghost {
  background: transparent;
  color: var(--rh-blue);
  border-color: var(--rh-blue);
}

.rh-btn--ghost:hover {
  background: var(--rh-blue);
  color: var(--rh-white);
  transform: translateY(-2px);
}

.rh-btn--white {
  background: var(--rh-white);
  color: var(--rh-blue-deep);
}

.rh-btn--white:hover {
  background: var(--rh-cream);
  color: var(--rh-blue-deep);
  transform: translateY(-2px);
}

.rh-btn__arrow { display: inline-block; transition: transform var(--rh-trans-fast); }
.rh-btn:hover .rh-btn__arrow { transform: translateX(4px); }

/* ==========================================================================
   7. ABOUT — リゾート理念
   ========================================================================== */
.rh-about {
  background: var(--rh-cream);
}

.rh-about__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--rh-space-9);
  align-items: center;
}

.rh-about__media {
  position: relative;
  border-radius: var(--rh-radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--rh-shadow-lg);
}

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

.rh-about__media-frame {
  position: absolute;
  inset: -16px -16px auto auto;
  width: 80%;
  height: 80%;
  border: 1px solid var(--rh-brass);
  border-radius: var(--rh-radius-xl);
  z-index: -1;
}

.rh-about__title {
  font-family: var(--rh-font-jp-serif);
  font-size: clamp(1.875rem, 4.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.55;
  color: var(--rh-blue-deep);
  margin-bottom: var(--rh-space-5);
  letter-spacing: 0.04em;
}

.rh-about__title em {
  font-style: normal;
  color: var(--rh-brass);
  display: block;
  margin-top: var(--rh-space-3);
  font-size: 0.85em;
}

.rh-about__text {
  font-size: var(--rh-size-3);
  line-height: 2.1;
  color: var(--rh-stone);
  margin-bottom: var(--rh-space-5);
}

.rh-about__text strong { color: var(--rh-blue-deep); font-weight: 700; }

.rh-about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--rh-space-4);
  margin-top: var(--rh-space-6);
  padding-top: var(--rh-space-5);
  border-top: 1px solid var(--rh-line);
}

.rh-about__stat-num {
  font-family: var(--rh-font-en-serif);
  font-size: var(--rh-size-8);
  font-weight: 700;
  font-style: italic;
  color: var(--rh-brass);
  line-height: 1;
}

.rh-about__stat-num small {
  font-size: 0.4em;
  font-weight: 600;
  margin-left: 2px;
  color: var(--rh-stone);
}

.rh-about__stat-label {
  font-family: var(--rh-font-en-sans);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: var(--rh-stone);
  text-transform: uppercase;
  margin-top: var(--rh-space-2);
}

@media (max-width: 900px) {
  .rh-about__inner { grid-template-columns: 1fr; gap: var(--rh-space-6); }
}

/* ==========================================================================
   8. ROOMS — 客室 4 タイプ
   ========================================================================== */
.rh-rooms {
  background: var(--rh-blue-pale);
  position: relative;
}

.rh-rooms__head {
  text-align: center;
  margin-bottom: var(--rh-space-7);
}

.rh-rooms__title {
  font-family: var(--rh-font-jp-serif);
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--rh-blue-deep);
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.rh-rooms__title em { font-style: normal; color: var(--rh-brass); }

.rh-rooms__lead {
  font-size: var(--rh-size-4);
  line-height: 2;
  color: var(--rh-stone);
  margin-top: var(--rh-space-4);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.rh-rooms__tabs {
  display: flex;
  gap: var(--rh-space-2);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--rh-space-7);
}

.rh-rooms__tab {
  padding: 10px 24px;
  border-radius: var(--rh-radius-pill);
  background: var(--rh-white);
  border: 1px solid var(--rh-line);
  font-family: var(--rh-font-jp-serif);
  font-size: var(--rh-size-3);
  font-weight: 700;
  color: var(--rh-stone);
  letter-spacing: 0.08em;
  transition: background var(--rh-trans-fast), color var(--rh-trans-fast), border var(--rh-trans-fast);
}

.rh-rooms__tab.is-active,
.rh-rooms__tab:hover {
  background: var(--rh-blue);
  color: var(--rh-white);
  border-color: var(--rh-blue);
}

.rh-rooms__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--rh-space-5);
}

.rh-room {
  background: var(--rh-white);
  border-radius: var(--rh-radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--rh-trans), box-shadow var(--rh-trans);
  box-shadow: var(--rh-shadow-sm);
}

.rh-room:hover {
  transform: translateY(-4px);
  box-shadow: var(--rh-shadow-lg);
}

.rh-room__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
}

.rh-room__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--rh-trans-slow);
}

.rh-room:hover .rh-room__media img {
  transform: scale(1.06);
}

.rh-room__tag {
  position: absolute;
  top: var(--rh-space-3);
  left: var(--rh-space-3);
  background: var(--rh-brass);
  color: var(--rh-white);
  padding: 4px 12px;
  border-radius: var(--rh-radius-pill);
  font-family: var(--rh-font-en-serif);
  font-style: italic;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.rh-room__body {
  padding: var(--rh-space-6);
  display: flex;
  flex-direction: column;
  gap: var(--rh-space-3);
  flex: 1;
}

.rh-room__title {
  font-family: var(--rh-font-jp-serif);
  font-size: var(--rh-size-6);
  font-weight: 700;
  color: var(--rh-blue-deep);
  line-height: 1.5;
}

.rh-room__text {
  font-size: var(--rh-size-2);
  line-height: 1.95;
  color: var(--rh-stone);
  flex: 1;
}

.rh-room__specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--rh-space-3);
  padding-top: var(--rh-space-3);
  border-top: 1px solid var(--rh-line-soft);
}

.rh-room__spec {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.rh-room__spec-label {
  font-family: var(--rh-font-en-sans);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: var(--rh-stone-l);
  text-transform: uppercase;
}

.rh-room__spec-val {
  font-family: var(--rh-font-jp-serif);
  font-size: var(--rh-size-3);
  font-weight: 700;
  color: var(--rh-blue-deep);
}

.rh-room__price {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: var(--rh-space-3);
  border-top: 1px solid var(--rh-line-soft);
  margin-top: auto;
}

.rh-room__price-from {
  font-family: var(--rh-font-en-sans);
  font-size: 0.7rem;
  color: var(--rh-stone);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.rh-room__price-num {
  font-family: var(--rh-font-en-serif);
  font-size: var(--rh-size-7);
  font-weight: 700;
  font-style: italic;
  color: var(--rh-brass);
  line-height: 1;
}

.rh-room__price-num small {
  font-size: 0.4em;
  font-weight: 600;
  margin-left: 4px;
  color: var(--rh-stone);
}

@media (max-width: 768px) {
  .rh-rooms__grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   9. ACTIVITIES — 6 アクティビティ
   ========================================================================== */
.rh-act {
  background: var(--rh-cream);
}

.rh-act__head {
  text-align: center;
  margin-bottom: var(--rh-space-7);
}

.rh-act__title {
  font-family: var(--rh-font-jp-serif);
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--rh-blue-deep);
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.rh-act__title em { font-style: normal; color: var(--rh-brass); }

.rh-act__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--rh-space-5);
}

.rh-act__card {
  background: var(--rh-white);
  border-radius: var(--rh-radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--rh-line-soft);
  transition: transform var(--rh-trans), border var(--rh-trans);
}

.rh-act__card:hover {
  transform: translateY(-3px);
  border-color: var(--rh-brass);
}

.rh-act__card-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.rh-act__card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--rh-trans-slow);
}

.rh-act__card:hover .rh-act__card-media img {
  transform: scale(1.06);
}

.rh-act__card-body {
  padding: var(--rh-space-5);
  display: flex;
  flex-direction: column;
  gap: var(--rh-space-2);
}

.rh-act__card-num {
  font-family: var(--rh-font-en-serif);
  font-style: italic;
  font-size: var(--rh-size-2);
  font-weight: 600;
  letter-spacing: 0.24em;
  color: var(--rh-brass);
  text-transform: uppercase;
}

.rh-act__card-title {
  font-family: var(--rh-font-jp-serif);
  font-size: var(--rh-size-5);
  font-weight: 700;
  color: var(--rh-blue-deep);
  line-height: 1.5;
}

.rh-act__card-text {
  font-size: var(--rh-size-2);
  color: var(--rh-stone);
  line-height: 1.85;
}

@media (max-width: 1024px) {
  .rh-act__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .rh-act__grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   10. DINING — レストラン
   ========================================================================== */
.rh-dining {
  background: var(--rh-blue-deep);
  color: var(--rh-white);
  position: relative;
  overflow: hidden;
}

.rh-dining::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(201, 169, 97, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.rh-dining__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--rh-space-9);
  align-items: center;
}

.rh-dining__media {
  border-radius: var(--rh-radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 2px solid var(--rh-brass);
}

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

.rh-dining__title {
  font-family: var(--rh-font-jp-serif);
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.5;
  color: var(--rh-white);
  margin-bottom: var(--rh-space-5);
  letter-spacing: 0.04em;
}

.rh-dining__title em { font-style: normal; color: var(--rh-brass-soft); }

.rh-dining__text {
  font-size: var(--rh-size-3);
  line-height: 2;
  color: var(--rh-white);
  opacity: 0.88;
  margin-bottom: var(--rh-space-6);
}

.rh-dining__list {
  display: flex;
  flex-direction: column;
  gap: var(--rh-space-4);
}

.rh-dining__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--rh-space-4);
  padding: var(--rh-space-4) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.rh-dining__item:last-child { border-bottom: 0; }

.rh-dining__item-num {
  font-family: var(--rh-font-en-serif);
  font-style: italic;
  font-size: var(--rh-size-7);
  font-weight: 700;
  color: var(--rh-brass-soft);
  line-height: 1;
}

.rh-dining__item-name {
  font-family: var(--rh-font-jp-serif);
  font-size: var(--rh-size-5);
  font-weight: 700;
  color: var(--rh-white);
  margin-bottom: 4px;
}

.rh-dining__item-text {
  font-size: var(--rh-size-2);
  color: var(--rh-white);
  opacity: 0.78;
  line-height: 1.85;
}

@media (max-width: 768px) {
  .rh-dining__inner { grid-template-columns: 1fr; }
}

/* ==========================================================================
   11. PLANS — 滞在プラン 3
   ========================================================================== */
.rh-plans {
  background: var(--rh-cream);
}

.rh-plans__head {
  text-align: center;
  margin-bottom: var(--rh-space-7);
}

.rh-plans__title {
  font-family: var(--rh-font-jp-serif);
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--rh-blue-deep);
  line-height: 1.5;
}

.rh-plans__title em { font-style: normal; color: var(--rh-brass); }

.rh-plans__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--rh-space-5);
}

.rh-plan {
  background: var(--rh-white);
  border: 1px solid var(--rh-line);
  border-radius: var(--rh-radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--rh-trans), border var(--rh-trans);
}

.rh-plan:hover {
  transform: translateY(-4px);
  border-color: var(--rh-brass);
}

.rh-plan__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.rh-plan__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--rh-trans-slow);
}

.rh-plan:hover .rh-plan__media img {
  transform: scale(1.05);
}

.rh-plan__body {
  padding: var(--rh-space-6);
  display: flex;
  flex-direction: column;
  gap: var(--rh-space-3);
  flex: 1;
}

.rh-plan__name {
  font-family: var(--rh-font-en-serif);
  font-style: italic;
  font-size: var(--rh-size-2);
  font-weight: 600;
  letter-spacing: 0.24em;
  color: var(--rh-brass);
  text-transform: uppercase;
}

.rh-plan__title {
  font-family: var(--rh-font-jp-serif);
  font-size: var(--rh-size-5);
  font-weight: 700;
  color: var(--rh-blue-deep);
  line-height: 1.5;
}

.rh-plan__text {
  font-size: var(--rh-size-2);
  line-height: 1.95;
  color: var(--rh-stone);
  flex: 1;
}

.rh-plan__includes {
  display: flex;
  flex-direction: column;
  gap: var(--rh-space-2);
  padding-top: var(--rh-space-4);
  border-top: 1px solid var(--rh-line-soft);
}

.rh-plan__include {
  display: flex;
  gap: var(--rh-space-3);
  align-items: flex-start;
  font-size: var(--rh-size-2);
  color: var(--rh-ink);
  line-height: 1.7;
}

.rh-plan__include::before {
  content: "✓";
  color: var(--rh-brass);
  font-weight: 700;
  flex-shrink: 0;
}

.rh-plan__price {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: var(--rh-space-4);
  border-top: 1px solid var(--rh-line-soft);
}

.rh-plan__price-from {
  font-family: var(--rh-font-en-sans);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  color: var(--rh-stone);
  text-transform: uppercase;
}

.rh-plan__price-num {
  font-family: var(--rh-font-en-serif);
  font-size: var(--rh-size-7);
  font-weight: 700;
  font-style: italic;
  color: var(--rh-brass);
  line-height: 1;
}

.rh-plan__price-num small {
  font-size: 0.4em;
  font-weight: 600;
  color: var(--rh-stone);
  margin-left: 4px;
}

@media (max-width: 900px) {
  .rh-plans__grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   12. GALLERY — 季節フォト 12
   ========================================================================== */
.rh-gallery {
  background: var(--rh-blue-pale);
}

.rh-gallery__head {
  text-align: center;
  margin-bottom: var(--rh-space-7);
}

.rh-gallery__title {
  font-family: var(--rh-font-jp-serif);
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--rh-blue-deep);
  line-height: 1.5;
}

.rh-gallery__title em { font-style: normal; color: var(--rh-brass); }

.rh-gallery__filter {
  display: flex;
  gap: var(--rh-space-2);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--rh-space-5);
}

.rh-gallery__filter-btn {
  padding: 8px 20px;
  border-radius: var(--rh-radius-pill);
  background: var(--rh-white);
  border: 1px solid var(--rh-line);
  font-family: var(--rh-font-jp-serif);
  font-size: var(--rh-size-2);
  font-weight: 700;
  color: var(--rh-stone);
  letter-spacing: 0.08em;
  transition: background var(--rh-trans-fast), color var(--rh-trans-fast), border var(--rh-trans-fast);
}

.rh-gallery__filter-btn.is-active,
.rh-gallery__filter-btn:hover {
  background: var(--rh-blue);
  color: var(--rh-white);
  border-color: var(--rh-blue);
}

.rh-gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-flow: dense;
  gap: var(--rh-space-3);
}

.rh-gallery__item {
  position: relative;
  border-radius: var(--rh-radius-md);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--rh-blue-deep);
}

.rh-gallery__item--wide { grid-column: span 2; aspect-ratio: 2 / 1; }
.rh-gallery__item--tall { grid-row: span 2; aspect-ratio: 1 / 2; }

.rh-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--rh-trans-slow);
}

.rh-gallery__item:hover img {
  transform: scale(1.06);
}

.rh-gallery__caption {
  position: absolute;
  inset: auto var(--rh-space-3) var(--rh-space-3);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  padding: 6px 12px;
  border-radius: var(--rh-radius-sm);
  font-family: var(--rh-font-en-serif);
  font-style: italic;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--rh-blue-deep);
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .rh-gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .rh-gallery__item--wide,
  .rh-gallery__item--tall { grid-column: auto; grid-row: auto; aspect-ratio: 1 / 1; }
}

/* ==========================================================================
   13. ACCESS — アクセス
   ========================================================================== */
.rh-access {
  background: var(--rh-cream);
}

.rh-access__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--rh-space-7);
  align-items: stretch;
}

.rh-access__media {
  aspect-ratio: 4 / 3;
  border-radius: var(--rh-radius-xl);
  overflow: hidden;
  box-shadow: var(--rh-shadow-md);
}

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

.rh-access__panel {
  background: var(--rh-white);
  padding: clamp(24px, 4vw, 48px);
  border: 1px solid var(--rh-line-soft);
  border-radius: var(--rh-radius-xl);
  box-shadow: var(--rh-shadow-md);
}

.rh-access__title {
  font-family: var(--rh-font-jp-serif);
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--rh-blue-deep);
  line-height: 1.5;
  margin-bottom: var(--rh-space-5);
  letter-spacing: 0.04em;
}

.rh-access__title em { font-style: normal; color: var(--rh-brass); }

.rh-access__list {
  display: flex;
  flex-direction: column;
  gap: var(--rh-space-4);
  margin-bottom: var(--rh-space-6);
}

.rh-access__row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: var(--rh-space-4);
  padding-bottom: var(--rh-space-3);
  border-bottom: 1px solid var(--rh-line);
  align-items: baseline;
}

.rh-access__row-label {
  font-family: var(--rh-font-en-serif);
  font-style: italic;
  font-size: var(--rh-size-2);
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--rh-brass);
}

.rh-access__row-val {
  font-family: var(--rh-font-jp);
  font-size: var(--rh-size-3);
  font-weight: 600;
  color: var(--rh-ink);
}

.rh-access__row-val small {
  font-weight: 400;
  color: var(--rh-stone);
  display: block;
  margin-top: 2px;
  font-size: var(--rh-size-2);
}

.rh-access__cta {
  display: flex;
  gap: var(--rh-space-3);
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .rh-access__inner { grid-template-columns: 1fr; }
}

/* ==========================================================================
   14. STAFF — スタッフ
   ========================================================================== */
.rh-staff {
  background: var(--rh-sand-soft);
}

.rh-staff__head {
  text-align: center;
  margin-bottom: var(--rh-space-7);
}

.rh-staff__title {
  font-family: var(--rh-font-jp-serif);
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--rh-blue-deep);
  line-height: 1.5;
}

.rh-staff__title em { font-style: normal; color: var(--rh-brass); }

.rh-staff__lead {
  font-size: var(--rh-size-4);
  line-height: 2;
  color: var(--rh-stone);
  max-width: 680px;
  margin: var(--rh-space-4) auto 0;
}

.rh-staff__media {
  aspect-ratio: 21 / 9;
  border-radius: var(--rh-radius-xl);
  overflow: hidden;
  box-shadow: var(--rh-shadow-md);
  margin-top: var(--rh-space-7);
}

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

@media (max-width: 768px) {
  .rh-staff__media { aspect-ratio: 4 / 3; }
}

/* ==========================================================================
   15. NEWS — 3 件
   ========================================================================== */
.rh-news {
  background: var(--rh-cream);
}

.rh-news__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--rh-space-7);
  gap: var(--rh-space-5);
  flex-wrap: wrap;
}

.rh-news__title {
  font-family: var(--rh-font-jp-serif);
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--rh-blue-deep);
  line-height: 1.5;
}

.rh-news__title em { font-style: normal; color: var(--rh-brass); }

.rh-news__more {
  font-family: var(--rh-font-en-serif);
  font-style: italic;
  font-size: var(--rh-size-2);
  font-weight: 600;
  color: var(--rh-brass);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: var(--rh-space-2);
}

.rh-news__more::after { content: "→"; transition: transform var(--rh-trans-fast); }
.rh-news__more:hover::after { transform: translateX(4px); }

.rh-news__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--rh-space-5);
}

.rh-news__item {
  background: var(--rh-white);
  border: 1px solid var(--rh-line-soft);
  border-radius: var(--rh-radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--rh-trans), box-shadow var(--rh-trans);
}

.rh-news__item:hover {
  transform: translateY(-3px);
  box-shadow: var(--rh-shadow-md);
}

.rh-news__item-meta {
  display: flex;
  align-items: center;
  gap: var(--rh-space-3);
  padding: var(--rh-space-4) var(--rh-space-5) 0;
  font-family: var(--rh-font-en-serif);
  font-size: 0.7rem;
  color: var(--rh-stone);
  letter-spacing: 0.08em;
}

.rh-news__item-cat {
  background: var(--rh-blue);
  color: var(--rh-white);
  padding: 3px 10px;
  font-style: italic;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: var(--rh-radius-pill);
}

.rh-news__item-cat--column { background: var(--rh-brass); }
.rh-news__item-cat--report { background: var(--rh-blue-deep); }

.rh-news__item-title {
  font-family: var(--rh-font-jp-serif);
  font-size: var(--rh-size-4);
  font-weight: 700;
  color: var(--rh-blue-deep);
  line-height: 1.65;
  padding: var(--rh-space-3) var(--rh-space-5) var(--rh-space-5);
}

@media (max-width: 900px) {
  .rh-news__list { grid-template-columns: 1fr; }
  .rh-news__head { flex-direction: column; align-items: flex-start; }
}

/* ==========================================================================
   16. CTA
   ========================================================================== */
.rh-cta {
  position: relative;
  overflow: hidden;
  color: var(--rh-white);
  background: var(--rh-blue-deep);
}

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

.rh-cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.rh-cta__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 111, 135, 0.85) 0%, rgba(26, 42, 48, 0.92) 100%);
}

.rh-cta__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}

.rh-cta__eyebrow {
  font-family: var(--rh-font-en-serif);
  font-style: italic;
  font-size: var(--rh-size-3);
  font-weight: 500;
  letter-spacing: 0.32em;
  color: var(--rh-brass-soft);
  margin-bottom: var(--rh-space-4);
}

.rh-cta__title {
  font-family: var(--rh-font-jp-serif);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.5;
  color: var(--rh-white);
  margin-bottom: var(--rh-space-5);
  letter-spacing: 0.06em;
}

.rh-cta__title em { font-style: normal; color: var(--rh-brass-soft); display: block; margin-top: var(--rh-space-2); }

.rh-cta__text {
  font-size: var(--rh-size-4);
  line-height: 2;
  color: var(--rh-white);
  opacity: 0.92;
  margin-bottom: var(--rh-space-7);
}

.rh-cta__actions {
  display: flex;
  gap: var(--rh-space-3);
  justify-content: center;
  flex-wrap: wrap;
}

/* ==========================================================================
   17. FOOTER
   ========================================================================== */
.rh-footer {
  background: var(--rh-ink);
  color: var(--rh-white);
  padding: var(--rh-space-9) 0 var(--rh-space-5);
}

.rh-footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--rh-space-7);
  margin-bottom: var(--rh-space-7);
}

.rh-footer__brand { display: flex; flex-direction: column; gap: var(--rh-space-3); }

.rh-footer__logo { display: flex; align-items: center; gap: var(--rh-space-3); }

.rh-footer__logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--rh-brass);
  color: var(--rh-white);
  display: grid;
  place-items: center;
  font-family: var(--rh-font-en-serif);
  font-size: var(--rh-size-5);
  font-weight: 700;
  font-style: italic;
}

.rh-footer__logo-text { display: flex; flex-direction: column; }

.rh-footer__logo-jp {
  font-family: var(--rh-font-jp-serif);
  font-size: var(--rh-size-4);
  font-weight: 700;
  color: var(--rh-white);
}

.rh-footer__logo-en {
  font-family: var(--rh-font-en-serif);
  font-style: italic;
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  color: var(--rh-brass-soft);
}

.rh-footer__addr {
  font-size: var(--rh-size-2);
  line-height: 1.95;
  color: var(--rh-white);
  opacity: 0.78;
}

.rh-footer__col-title {
  font-family: var(--rh-font-en-serif);
  font-style: italic;
  font-size: var(--rh-size-2);
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--rh-brass-soft);
  margin-bottom: var(--rh-space-4);
  text-transform: uppercase;
}

.rh-footer__list { display: flex; flex-direction: column; gap: var(--rh-space-3); }

.rh-footer__list a {
  font-size: var(--rh-size-2);
  color: var(--rh-white);
  opacity: 0.78;
  transition: opacity var(--rh-trans-fast), color var(--rh-trans-fast);
}

.rh-footer__list a:hover { opacity: 1; color: var(--rh-brass-soft); }

.rh-footer__lang {
  display: flex;
  gap: var(--rh-space-2);
  margin-top: var(--rh-space-4);
}

.rh-footer__lang-btn {
  font-family: var(--rh-font-en-sans);
  font-size: var(--rh-size-1);
  letter-spacing: 0.16em;
  color: var(--rh-white);
  opacity: 0.7;
  padding: 4px 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--rh-radius-sm);
  transition: opacity var(--rh-trans-fast), border-color var(--rh-trans-fast);
}

.rh-footer__lang-btn:hover {
  opacity: 1;
  border-color: var(--rh-brass-soft);
}

.rh-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: var(--rh-space-5);
  display: flex;
  justify-content: space-between;
  gap: var(--rh-space-5);
  flex-wrap: wrap;
}

.rh-footer__copy {
  font-family: var(--rh-font-en-serif);
  font-style: italic;
  font-size: var(--rh-size-1);
  letter-spacing: 0.16em;
  color: var(--rh-white);
  opacity: 0.6;
}

.rh-footer__license {
  font-size: var(--rh-size-1);
  letter-spacing: 0.04em;
  color: var(--rh-white);
  opacity: 0.6;
}

@media (max-width: 900px) { .rh-footer__inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .rh-footer__inner { grid-template-columns: 1fr; } }

/* ==========================================================================
   18. UTILITY
   ========================================================================== */
.rh-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: var(--rh-space-2);
  font-family: var(--rh-font-en-serif);
  font-style: italic;
  font-size: var(--rh-size-2);
  font-weight: 600;
  color: var(--rh-brass);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.rh-link-arrow::after { content: "→"; transition: transform var(--rh-trans-fast); }
.rh-link-arrow:hover { color: var(--rh-brass-deep); }
.rh-link-arrow:hover::after { transform: translateX(4px); }

.rh-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--rh-blue-pale);
  font-family: var(--rh-font-en-sans);
  font-size: var(--rh-size-1);
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--rh-blue-deep);
  border-radius: var(--rh-radius-pill);
}

.rh-divider {
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--rh-brass) 50%, transparent 100%);
  margin: var(--rh-space-7) 0;
  opacity: 0.5;
}

/* ==========================================================================
   19. ANIMATIONS / SCROLL FX
   ========================================================================== */
[data-anim] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-anim].is-in {
  opacity: 1;
  transform: translateY(0);
}

[data-anim="fade"] { transform: none; }

/* ==========================================================================
   20. REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ==========================================================================
   21. PRINT
   ========================================================================== */
@media print {
  .rh-loader, .rh-header__cta, .rh-cta { display: none; }
  body { background: white; color: black; }
  a { color: black; text-decoration: underline; }
}

/* ==========================================================================
   22. ACCESSIBILITY
   ========================================================================== */
.rh-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

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

/* ==========================================================================
   23. FLOAT CTA (mobile)
   ========================================================================== */
.rh-float {
  position: fixed;
  inset: auto var(--rh-space-4) var(--rh-space-4) var(--rh-space-4);
  z-index: var(--rh-z-float);
  background: var(--rh-brass);
  color: var(--rh-white);
  padding: 14px 20px;
  border-radius: var(--rh-radius-pill);
  box-shadow: var(--rh-shadow-lg);
  display: none;
  text-align: center;
  font-family: var(--rh-font-jp-serif);
  font-weight: 700;
  letter-spacing: 0.08em;
}

@media (max-width: 768px) {
  .rh-float { display: block; }
}

/* ==========================================================================
   24. END (TOP styles)
   ========================================================================== */

/* ==========================================================================
   25. SUB-PAGE COMPONENTS
   ========================================================================== */
.rh-page-hero {
  position: relative;
  overflow: hidden;
  color: var(--rh-white);
  background: var(--rh-blue-deep);
  padding: var(--rh-space-10) 0 var(--rh-space-7);
  margin-top: 76px;
}

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

.rh-page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.rh-page-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 111, 135, 0.7) 0%, rgba(26, 42, 48, 0.85) 100%);
}

.rh-page-hero__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--rh-space-5);
}

.rh-page-hero__eyebrow {
  font-family: var(--rh-font-en-serif);
  font-style: italic;
  font-size: var(--rh-size-3);
  font-weight: 500;
  letter-spacing: 0.32em;
  color: var(--rh-brass-soft);
  margin-bottom: var(--rh-space-4);
}

.rh-page-hero__title {
  font-family: var(--rh-font-jp-serif);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.5;
  color: var(--rh-white);
  letter-spacing: 0.06em;
  margin-bottom: var(--rh-space-4);
}

.rh-page-hero__sub {
  font-size: var(--rh-size-4);
  line-height: 2;
  color: var(--rh-white);
  opacity: 0.88;
}

/* Breadcrumb */
.rh-bread {
  background: var(--rh-cream);
  padding: var(--rh-space-3) 0;
  border-bottom: 1px solid var(--rh-line-soft);
}

.rh-bread__list {
  display: flex;
  align-items: center;
  gap: var(--rh-space-3);
  font-size: var(--rh-size-1);
  color: var(--rh-stone);
  flex-wrap: wrap;
}

.rh-bread__list a { color: var(--rh-stone); }
.rh-bread__list a:hover { color: var(--rh-brass); }
.rh-bread__sep { color: var(--rh-stone-l); }

/* Prose */
.rh-prose {
  font-size: var(--rh-size-3);
  line-height: 2.1;
  color: var(--rh-ink);
  max-width: 800px;
  margin: 0 auto;
}

.rh-prose h2 {
  font-family: var(--rh-font-jp-serif);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700;
  color: var(--rh-blue-deep);
  margin: var(--rh-space-8) 0 var(--rh-space-4);
  padding-left: var(--rh-space-4);
  border-left: 3px solid var(--rh-brass);
  line-height: 1.55;
  letter-spacing: 0.04em;
}

.rh-prose h3 {
  font-family: var(--rh-font-jp-serif);
  font-size: var(--rh-size-5);
  font-weight: 700;
  color: var(--rh-blue-deep);
  margin: var(--rh-space-6) 0 var(--rh-space-3);
}

.rh-prose p { margin: var(--rh-space-4) 0; color: var(--rh-stone); }

.rh-prose strong {
  font-weight: 700;
  color: var(--rh-blue-deep);
  background: linear-gradient(transparent 60%, rgba(201, 169, 97, 0.22) 60%);
  padding: 0 2px;
}

.rh-prose ul,
.rh-prose ol {
  margin: var(--rh-space-4) 0;
  padding-left: var(--rh-space-5);
  list-style: disc;
  color: var(--rh-stone);
}

.rh-prose ol { list-style: decimal; }

.rh-prose li {
  margin: var(--rh-space-2) 0;
  line-height: 1.95;
}

.rh-prose a {
  color: var(--rh-brass);
  border-bottom: 1px solid currentColor;
  font-weight: 600;
}

.rh-prose a:hover { color: var(--rh-brass-deep); }

.rh-prose blockquote {
  margin: var(--rh-space-5) 0;
  padding: var(--rh-space-5);
  background: var(--rh-blue-pale);
  border-left: 3px solid var(--rh-brass);
  border-radius: 0 var(--rh-radius-md) var(--rh-radius-md) 0;
  font-family: var(--rh-font-jp-serif);
  font-size: var(--rh-size-3);
  color: var(--rh-ink);
  line-height: 1.95;
}

.rh-prose blockquote cite {
  display: block;
  margin-top: var(--rh-space-3);
  font-family: var(--rh-font-en-serif);
  font-style: italic;
  font-size: var(--rh-size-2);
  color: var(--rh-brass);
  letter-spacing: 0.12em;
}

/* Tables */
.rh-table {
  margin: var(--rh-space-5) 0;
  border: 1px solid var(--rh-line);
  border-radius: var(--rh-radius-md);
  overflow: hidden;
  font-size: var(--rh-size-2);
}

.rh-table th {
  background: var(--rh-blue);
  color: var(--rh-white);
  padding: var(--rh-space-3) var(--rh-space-4);
  text-align: left;
  font-family: var(--rh-font-jp-serif);
  font-weight: 700;
  letter-spacing: 0.06em;
}

.rh-table td {
  padding: var(--rh-space-3) var(--rh-space-4);
  border-top: 1px solid var(--rh-line);
  color: var(--rh-ink);
}

.rh-table tr:nth-child(even) td {
  background: var(--rh-cream);
}

/* TOC */
.rh-toc {
  margin: var(--rh-space-5) 0;
  padding: var(--rh-space-5);
  background: var(--rh-blue-pale);
  border: 1px solid var(--rh-blue-soft);
  border-left: 3px solid var(--rh-brass);
  border-radius: var(--rh-radius-md);
}

.rh-toc__title {
  font-family: var(--rh-font-en-serif);
  font-style: italic;
  font-size: var(--rh-size-2);
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--rh-brass);
  margin-bottom: var(--rh-space-3);
  text-transform: uppercase;
}

.rh-toc__list { counter-reset: rh-toc; }

.rh-toc__list li {
  counter-increment: rh-toc;
  padding: 4px 0;
  padding-left: var(--rh-space-6);
  position: relative;
}

.rh-toc__list li::before {
  content: counter(rh-toc, decimal-leading-zero);
  position: absolute;
  left: 0;
  font-family: var(--rh-font-en-serif);
  font-style: italic;
  font-weight: 700;
  color: var(--rh-brass);
  font-size: var(--rh-size-2);
}

.rh-toc__list a {
  font-size: var(--rh-size-2);
  color: var(--rh-ink);
  font-weight: 500;
}

.rh-toc__list a:hover { color: var(--rh-brass); }

/* Form */
.rh-form {
  display: grid;
  gap: var(--rh-space-4);
  max-width: 720px;
  margin: 0 auto;
}

.rh-form__row { display: grid; gap: var(--rh-space-2); }
.rh-form__row--two { grid-template-columns: 1fr 1fr; }

@media (max-width: 600px) {
  .rh-form__row--two { grid-template-columns: 1fr; }
}

.rh-form__label {
  font-family: var(--rh-font-jp-serif);
  font-size: var(--rh-size-2);
  font-weight: 700;
  color: var(--rh-blue-deep);
  letter-spacing: 0.06em;
}

.rh-form__label-req {
  display: inline-block;
  margin-left: var(--rh-space-2);
  background: var(--rh-brass);
  color: var(--rh-white);
  font-size: 0.65rem;
  padding: 1px 8px;
  letter-spacing: 0.16em;
  border-radius: var(--rh-radius-sm);
}

.rh-form__input,
.rh-form__textarea,
.rh-form__select {
  padding: 12px 16px;
  border: 1px solid var(--rh-line);
  border-radius: var(--rh-radius-md);
  font-family: inherit;
  font-size: var(--rh-size-3);
  background: var(--rh-white);
  color: var(--rh-ink);
  outline: none;
  transition: border var(--rh-trans-fast);
}

.rh-form__input:focus,
.rh-form__textarea:focus,
.rh-form__select:focus {
  border-color: var(--rh-brass);
}

.rh-form__textarea { min-height: 160px; resize: vertical; }

.rh-form__check {
  display: flex;
  align-items: flex-start;
  gap: var(--rh-space-3);
  font-size: var(--rh-size-2);
  color: var(--rh-ink);
  line-height: 1.85;
}

.rh-form__submit {
  background: var(--rh-brass);
  color: var(--rh-white);
  padding: 16px 40px;
  border-radius: var(--rh-radius-pill);
  font-family: var(--rh-font-jp-serif);
  font-size: var(--rh-size-4);
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: background var(--rh-trans-fast), transform var(--rh-trans-fast);
  justify-self: center;
  min-width: 240px;
}

.rh-form__submit:hover {
  background: var(--rh-brass-deep);
  transform: translateY(-2px);
}

/* Page CTA */
.rh-page-cta {
  background: var(--rh-blue-pale);
  padding: var(--rh-space-7) var(--rh-space-5);
  border-radius: var(--rh-radius-xl);
  text-align: center;
  margin: var(--rh-space-9) 0;
}

.rh-page-cta__title {
  font-family: var(--rh-font-jp-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--rh-blue-deep);
  line-height: 1.55;
  margin-bottom: var(--rh-space-3);
}

.rh-page-cta__text {
  font-size: var(--rh-size-3);
  line-height: 2;
  color: var(--rh-stone);
  margin-bottom: var(--rh-space-5);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.rh-page-cta__btns {
  display: flex;
  gap: var(--rh-space-3);
  justify-content: center;
  flex-wrap: wrap;
}

.rh-page-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: var(--rh-space-2);
  padding: 14px 30px;
  border-radius: var(--rh-radius-pill);
  font-family: var(--rh-font-jp-serif);
  font-size: var(--rh-size-3);
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: transform var(--rh-trans-fast), background var(--rh-trans-fast);
}

.rh-page-cta__btn--primary {
  background: var(--rh-brass);
  color: var(--rh-white);
  border: 1px solid var(--rh-brass);
}

.rh-page-cta__btn--primary:hover {
  background: var(--rh-brass-deep);
  color: var(--rh-white);
  transform: translateY(-2px);
}

.rh-page-cta__btn--ghost {
  background: transparent;
  color: var(--rh-blue);
  border: 1px solid var(--rh-blue);
}

.rh-page-cta__btn--ghost:hover {
  background: var(--rh-blue);
  color: var(--rh-white);
  transform: translateY(-2px);
}

/* prose-a が btn を上書きする事故対策 */
.rh-prose .rh-page-cta__btn { border-bottom: 0; padding-bottom: 14px; }
.rh-prose .rh-page-cta__btn--primary { color: var(--rh-white); }
.rh-prose .rh-page-cta__btn--primary:hover { color: var(--rh-white); }
.rh-prose .rh-page-cta__btn--ghost { color: var(--rh-blue); }
.rh-prose .rh-page-cta__btn--ghost:hover { color: var(--rh-white); }

/* Generic Grid / Card */
.rh-grid { display: grid; gap: var(--rh-space-5); }
.rh-grid--2 { grid-template-columns: repeat(2, 1fr); }
.rh-grid--3 { grid-template-columns: repeat(3, 1fr); }
.rh-grid--4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 900px) {
  .rh-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .rh-grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .rh-grid--2,
  .rh-grid--3,
  .rh-grid--4 { grid-template-columns: 1fr; }
}

.rh-card {
  background: var(--rh-white);
  padding: var(--rh-space-5);
  border-radius: var(--rh-radius-lg);
  border: 1px solid var(--rh-line-soft);
  box-shadow: var(--rh-shadow-sm);
  transition: transform var(--rh-trans), box-shadow var(--rh-trans);
}

.rh-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--rh-shadow-md);
}

.rh-card__num {
  font-family: var(--rh-font-en-serif);
  font-style: italic;
  font-size: var(--rh-size-2);
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--rh-brass);
  display: block;
  margin-bottom: var(--rh-space-2);
  text-transform: uppercase;
}

.rh-card__title {
  font-family: var(--rh-font-jp-serif);
  font-size: var(--rh-size-5);
  font-weight: 700;
  color: var(--rh-blue-deep);
  margin-bottom: var(--rh-space-3);
  line-height: 1.55;
}

.rh-card__text {
  font-size: var(--rh-size-2);
  line-height: 1.95;
  color: var(--rh-stone);
}

/* FAQ */
.rh-faq {
  display: flex;
  flex-direction: column;
  gap: var(--rh-space-3);
  max-width: 880px;
  margin: 0 auto;
}

.rh-faq__item {
  border: 1px solid var(--rh-line);
  background: var(--rh-white);
  border-radius: var(--rh-radius-md);
  overflow: hidden;
}

.rh-faq__q {
  width: 100%;
  padding: var(--rh-space-4) var(--rh-space-5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--rh-space-4);
  font-family: var(--rh-font-jp-serif);
  font-size: var(--rh-size-3);
  font-weight: 700;
  color: var(--rh-blue-deep);
  text-align: left;
  letter-spacing: 0.04em;
  transition: background var(--rh-trans-fast);
}

.rh-faq__q:hover { background: var(--rh-blue-pale); }

.rh-faq__q::before {
  content: "Q";
  font-family: var(--rh-font-en-serif);
  font-style: italic;
  font-size: var(--rh-size-5);
  font-weight: 700;
  color: var(--rh-brass);
  flex-shrink: 0;
  width: 32px;
}

.rh-faq__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
  transition: transform var(--rh-trans);
}

.rh-faq__icon::before,
.rh-faq__icon::after {
  content: "";
  position: absolute;
  background: var(--rh-brass);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.rh-faq__icon::before { width: 12px; height: 1.5px; }
.rh-faq__icon::after { width: 1.5px; height: 12px; transition: transform var(--rh-trans); }

.rh-faq__item.is-open .rh-faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.rh-faq__a {
  display: none;
  padding: 0 var(--rh-space-5) var(--rh-space-5);
  font-size: var(--rh-size-2);
  line-height: 1.95;
  color: var(--rh-stone);
}

.rh-faq__a::before {
  content: "A";
  font-family: var(--rh-font-en-serif);
  font-style: italic;
  font-size: var(--rh-size-5);
  font-weight: 700;
  color: var(--rh-blue);
  display: inline-block;
  width: 32px;
  vertical-align: top;
}

.rh-faq__item.is-open .rh-faq__a {
  display: block;
}

/* Tabs */
.rh-tabs {
  display: flex;
  gap: var(--rh-space-2);
  margin-bottom: var(--rh-space-5);
  flex-wrap: wrap;
  justify-content: center;
}

.rh-tabs__btn {
  padding: 10px 24px;
  border-radius: var(--rh-radius-pill);
  background: var(--rh-cream);
  border: 1px solid var(--rh-line);
  font-family: var(--rh-font-jp-serif);
  font-size: var(--rh-size-2);
  font-weight: 700;
  color: var(--rh-stone);
  letter-spacing: 0.08em;
  transition: background var(--rh-trans-fast), color var(--rh-trans-fast), border var(--rh-trans-fast);
}

.rh-tabs__btn.is-active,
.rh-tabs__btn:hover {
  background: var(--rh-blue);
  color: var(--rh-white);
  border-color: var(--rh-blue);
}

/* ==========================================================================
   26. NEWS LIST / ARTICLE
   ========================================================================== */
.rh-news-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--rh-space-5);
}

@media (max-width: 900px) { .rh-news-list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .rh-news-list { grid-template-columns: 1fr; } }

.rh-news-list__item {
  background: var(--rh-white);
  border: 1px solid var(--rh-line-soft);
  border-radius: var(--rh-radius-lg);
  overflow: hidden;
  transition: transform var(--rh-trans), box-shadow var(--rh-trans);
  display: flex;
  flex-direction: column;
}

.rh-news-list__item:hover {
  transform: translateY(-3px);
  box-shadow: var(--rh-shadow-md);
}

.rh-news-list__body {
  padding: var(--rh-space-4);
  display: flex;
  flex-direction: column;
  gap: var(--rh-space-2);
  flex: 1;
}

.rh-news-list__meta {
  display: flex;
  gap: var(--rh-space-3);
  font-family: var(--rh-font-en-serif);
  font-size: 0.7rem;
  color: var(--rh-stone);
  letter-spacing: 0.08em;
}

.rh-news-list__cat {
  background: var(--rh-blue);
  color: var(--rh-white);
  padding: 2px 10px;
  font-style: italic;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: var(--rh-radius-pill);
}

.rh-news-list__title {
  font-family: var(--rh-font-jp-serif);
  font-size: var(--rh-size-3);
  font-weight: 700;
  color: var(--rh-blue-deep);
  line-height: 1.65;
}

/* Article */
.rh-article-hero {
  position: relative;
  background: var(--rh-blue-pale);
  color: var(--rh-blue-deep);
  padding: var(--rh-space-9) var(--rh-space-5);
  margin-bottom: var(--rh-space-7);
  text-align: center;
  border-radius: var(--rh-radius-xl);
  overflow: hidden;
}

.rh-article-hero__title {
  font-family: var(--rh-font-jp-serif);
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.04em;
  max-width: 800px;
  margin: 0 auto;
  word-break: keep-all;
}

.rh-article-meta {
  display: flex;
  gap: var(--rh-space-4);
  margin-bottom: var(--rh-space-5);
  font-family: var(--rh-font-en-serif);
  font-size: var(--rh-size-2);
  color: var(--rh-stone);
  flex-wrap: wrap;
}

.rh-article-meta__cat {
  background: var(--rh-blue);
  color: var(--rh-white);
  padding: 3px 12px;
  border-radius: var(--rh-radius-pill);
  font-style: italic;
  font-weight: 600;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  text-transform: uppercase;
}

.rh-callout {
  margin: var(--rh-space-5) 0;
  padding: var(--rh-space-5);
  background: var(--rh-blue-pale);
  border-left: 3px solid var(--rh-brass);
  border-radius: 0 var(--rh-radius-md) var(--rh-radius-md) 0;
  display: grid;
  gap: var(--rh-space-2);
}

.rh-callout__title {
  font-family: var(--rh-font-jp-serif);
  font-size: var(--rh-size-3);
  font-weight: 700;
  color: var(--rh-blue-deep);
}

.rh-callout__text {
  font-size: var(--rh-size-2);
  line-height: 1.95;
  color: var(--rh-ink);
}

.rh-related {
  margin-top: var(--rh-space-9);
  padding-top: var(--rh-space-7);
  border-top: 1px solid var(--rh-line);
}

.rh-related__title {
  font-family: var(--rh-font-jp-serif);
  font-size: var(--rh-size-5);
  font-weight: 700;
  color: var(--rh-blue-deep);
  margin-bottom: var(--rh-space-5);
}

.rh-prose-dropcap p:first-of-type::first-letter {
  font-family: var(--rh-font-en-serif);
  font-style: italic;
  font-size: 4rem;
  font-weight: 700;
  float: left;
  line-height: 0.9;
  margin: 6px 12px 0 0;
  color: var(--rh-brass);
}

/* ==========================================================================
   27. END
   ========================================================================== */

/* --------------------------------------------------------------------------
   MISSING SUBPAGE CLASSES (quality-gate patch)
   -------------------------------------------------------------------------- */
.rh-section-head { text-align: center; margin-bottom: 3rem; }
.rh-section-head__eyebrow { font-size: .75rem; letter-spacing: .2em; text-transform: uppercase; color: var(--rh-gold, #B89968); margin-bottom: .5rem; }
.rh-section-head__title { font-size: clamp(1.5rem, 3vw, 2.5rem); font-weight: 700; line-height: 1.3; }
.rh-section-head__lead { font-size: 1rem; color: var(--rh-text-sub, #888); margin-top: .75rem; line-height: 1.8; }

/* --------------------------------------------------------------------------
   27. WP Block FSE Header & Navigation
   -------------------------------------------------------------------------- */

html { overflow-x: hidden; }
.wp-site-blocks { overflow-x: hidden; }

.irodori-header {
  position: sticky;
  top: 0; left: 0; right: 0;
  width: 100%;
  z-index: 800;
  background: transparent;
  color: #fff;
  transition: background 0.4s ease, box-shadow 0.4s ease, color 0.4s ease;
}
.irodori-header.is-scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--rh-shadow-sm);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--rh-text);
}
.irodori-header__inner {
  height: 72px;
  padding: 0 clamp(20px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.irodori-header__logo .wp-block-site-logo img {
  max-height: 44px;
  width: auto;
}
.irodori-header .wp-block-navigation-item__content {
  color: inherit;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.06em;
  padding: 6px 10px;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.irodori-header .wp-block-navigation-item__content:hover { opacity: 0.7; }
.irodori-header .wp-block-navigation .wp-block-navigation-item { list-style: none; }
.irodori-header__cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  background: #1a5276;
  color: #fff !important;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  white-space: nowrap;
  text-decoration: none;
  transition: opacity 0.2s;
}
.irodori-header__cta-btn:hover { opacity: 0.85; }
.irodori-header .wp-block-navigation__responsive-container-open,
.irodori-header .wp-block-navigation__responsive-container-close { display: none !important; }
.irodori-header .wp-block-navigation__responsive-container {
  display: contents !important;
  background: none !important;
}
.wp-site-blocks > * + * { margin-block-start: 0 !important; }
footer .wp-block-navigation { flex-direction: column !important; }
.wp-block-group.irodori-section.is-layout-constrained > *,
.wp-block-group.irodori-section > * {
  max-width: 100% !important;
  width: 100%;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.wp-block-post-content > .wp-block-group.irodori-section,
.wp-block-post-content > .wp-block-group.irodori-section + .wp-block-group.irodori-section {
  margin-block: 0;
}
@media (max-width: 1100px) {
  .irodori-header__toggle {
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    gap: 6px; width: 34px; height: 34px; cursor: pointer; position: relative;
    z-index: 10001; flex-shrink: 0;
  }
  .irodori-header__toggle span {
    display: block; width: 22px; height: 1.8px;
    background: currentColor; transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .irodori-header__toggle-input { display: none; }
  .wp-block-group.irodori-header__nav {
    display: none; position: fixed; inset: 0;
    background: rgba(255,255,255,0.98); z-index: 10000;
    flex-direction: column; align-items: center; justify-content: center; padding: 40px;
  }
  #irodori-nav-toggle:checked ~ .wp-block-group.irodori-header__nav { display: flex; }
  #irodori-nav-toggle:checked ~ label.irodori-header__toggle span:nth-child(1) {
    transform: translateY(7.8px) rotate(45deg);
  }
  #irodori-nav-toggle:checked ~ label.irodori-header__toggle span:nth-child(2) { opacity: 0; }
  #irodori-nav-toggle:checked ~ label.irodori-header__toggle span:nth-child(3) {
    transform: translateY(-7.8px) rotate(-45deg);
  }
  .irodori-header--hamburger .irodori-header__nav .wp-block-navigation {
    display: flex !important; flex-direction: column; align-items: center; width: 100%;
  }
  .irodori-header--hamburger .irodori-header__nav .wp-block-navigation__container {
    display: flex; flex-direction: column; align-items: center;
    gap: 2rem; list-style: none; margin: 0; padding: 0;
  }
  .irodori-header--hamburger .irodori-header__nav .wp-block-navigation__container a {
    font-size: clamp(18px, 4vw, 24px); font-weight: 600; letter-spacing: 0.06em;
    color: var(--rh-text);
  }
  .irodori-header__cta { margin-top: 32px; }
}

/* ===== WP 7.0 Bug Fixes ===== */

/* ---------------------------------------------------------------
   WP 7.0 Fix: ナビゲーション デスクトップ表示強制
   親テーマ .irodori-header--hamburger が position:fixed/opacity:0 を
   全ブレークポイントに適用するため !important で解除
   --------------------------------------------------------------- */
@media (min-width: 1101px) {
  .irodori-header .wp-block-group.irodori-header__nav {
    position: relative !important;
    opacity: 1 !important;
    visibility: visible !important;
    inset: auto !important;
    background: none !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 24px !important;
    padding: 0 !important;
    z-index: auto !important;
  }
  .irodori-header__toggle {
    display: none !important;
  }
}

/* ---------------------------------------------------------------
   WP 7.0 Fix: ヒーロー背景 全幅解除
   WP is-layout-constrained が max-width:1280px/margin:auto を
   hero bg 要素に適用するため強制解除
   --------------------------------------------------------------- */
.is-layout-constrained > [class*="-hero__bg"],
.is-layout-constrained > [class*="-hero-bg"],
.is-layout-constrained > [class*="-hero__slide"],
.is-layout-constrained > [class*="-hero__image"],
.is-layout-constrained > [class*="-hero__visual"] {
  max-width: none !important;
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
