/**
 * MIDORI HOTEL — Acme Outdoors inspired
 * Prefix: mdh-
 */
:root {
  --mdh-charcoal: #1a1a1a;
  --mdh-coral: #E85D4A;
  --mdh-coral-dark: #d04a38;
  --mdh-offwhite: #f5f5f0;
  --mdh-white: #ffffff;
  --mdh-gray: #6b6b6b;
  --mdh-gray-light: #e8e8e3;
  --mdh-font-display: 'Barlow Condensed', 'Noto Sans JP', sans-serif;
  --mdh-font-body: 'Noto Sans JP', sans-serif;
  --mdh-wrap: 1180px;
  --mdh-header-h: 72px;
  --mdh-announce-h: 36px;
  --mdh-radius: 4px;
  --mdh-radius-sm: 2px;
  --mdh-shadow: 0 8px 32px rgba(26, 26, 26, 0.12);
  --mdh-shadow-lg: 0 16px 48px rgba(26, 26, 26, 0.18);
  --mdh-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

:focus-visible {
  outline: 2px solid var(--mdh-coral);
  outline-offset: 2px;
}

.reduce-motion html { scroll-behavior: auto; }

body.site-midorihotel {
  margin: 0;
  font-family: var(--mdh-font-body);
  font-size: 15px;
  line-height: 1.75;
  color: var(--mdh-charcoal);
  background: var(--mdh-offwhite);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
address { font-style: normal; }
button { font: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4, p { margin: 0; }

.mdh-wrap {
  width: min(var(--mdh-wrap), calc(100% - 40px));
  margin-inline: auto;
}

.mdh-skip {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 9999;
  padding: 10px 16px;
  background: var(--mdh-coral);
  color: var(--mdh-white);
  font-weight: 600;
  border-radius: var(--mdh-radius);
}
.mdh-skip:focus { top: 16px; }

/* ── Announcement bar ── */
.mdh-announce {
  background: var(--mdh-coral);
  color: var(--mdh-white);
  font-size: 13px;
  position: relative;
  z-index: 200;
}
.mdh-announce__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: var(--mdh-announce-h);
  padding: 6px 0;
  flex-wrap: wrap;
  text-align: center;
}
.mdh-announce__tag {
  font-family: var(--mdh-font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
  padding: 2px 8px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 2px;
}
.mdh-announce a {
  color: var(--mdh-white);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.mdh-announce a:hover { opacity: 0.85; }

/* ── Header ── */
.mdh-header {
  position: sticky;
  top: 0;
  z-index: 150;
  background: rgba(245, 245, 240, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--mdh-gray-light);
  transition: background 0.3s var(--mdh-ease), box-shadow 0.3s var(--mdh-ease);
}
.mdh-header.is-scrolled {
  background: rgba(245, 245, 240, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 16px rgba(26,26,26,0.06);
}
.mdh-has-hero .mdh-header--hero {
  position: fixed;
  top: var(--mdh-announce-h);
  left: 0;
  right: 0;
  background: transparent;
  border-bottom-color: rgba(255,255,255,0.15);
}
.mdh-has-hero .mdh-header--hero .mdh-logo__en,
.mdh-has-hero .mdh-header--hero .mdh-logo__jp,
.mdh-has-hero .mdh-header--hero .mdh-nav__link { color: var(--mdh-white); }
.mdh-has-hero .mdh-header--hero.is-scrolled {
  background: rgba(26,26,26,0.92);
  border-bottom-color: transparent;
}
.mdh-header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: var(--mdh-header-h);
}
.mdh-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.mdh-logo__mark {
  width: 32px;
  height: 32px;
  background: var(--mdh-coral);
  clip-path: polygon(0 0, 100% 0, 100% 70%, 50% 100%, 0 70%);
}
.mdh-logo__text { display: flex; flex-direction: column; line-height: 1.2; }
.mdh-logo__en {
  font-family: var(--mdh-font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.06em;
}
.mdh-logo__jp { font-size: 11px; color: var(--mdh-gray); letter-spacing: 0.04em; }
.mdh-has-hero .mdh-header--hero .mdh-logo__jp { color: rgba(255,255,255,0.7); }

.mdh-nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.mdh-nav__link {
  font-family: var(--mdh-font-display);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
  position: relative;
  padding: 4px 0;
}
.mdh-nav__link:hover::after,
.mdh-nav__link[aria-current="page"]::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--mdh-coral);
}
.mdh-has-hero .mdh-header--hero .mdh-nav__link:hover::after,
.mdh-has-hero .mdh-header--hero .mdh-nav__link[aria-current="page"]::after {
  background: var(--mdh-white);
}

.mdh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--mdh-font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: var(--mdh-radius);
  transition: all 0.25s var(--mdh-ease);
  white-space: nowrap;
}
.mdh-btn--solid {
  background: var(--mdh-coral);
  color: var(--mdh-white);
  border: 2px solid var(--mdh-coral);
}
.mdh-btn--solid:hover {
  background: var(--mdh-coral-dark);
  border-color: var(--mdh-coral-dark);
}
.mdh-btn--ghost {
  background: transparent;
  color: var(--mdh-white);
  border: 2px solid rgba(255,255,255,0.8);
}
.mdh-btn--ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--mdh-white);
}
.mdh-section .mdh-btn--ghost,
.mdh-cta .mdh-btn--ghost {
  color: var(--mdh-white);
  border-color: rgba(255,255,255,0.7);
}
.mdh-btn--block { width: 100%; }
.mdh-header .mdh-btn--solid { flex-shrink: 0; }

.mdh-menu-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}
.mdh-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--mdh-charcoal);
  transition: transform 0.3s;
}
.mdh-has-hero .mdh-header--hero .mdh-menu-btn span { background: var(--mdh-white); }
body.mdh-nav-open .mdh-menu-btn span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
body.mdh-nav-open .mdh-menu-btn span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

/* ── Drawer ── */
.mdh-drawer {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(26,26,26,0.6);
  backdrop-filter: blur(4px);
}
.mdh-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(360px, 90vw);
  height: 100%;
  background: var(--mdh-charcoal);
  color: var(--mdh-white);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: mdhSlideIn 0.35s var(--mdh-ease);
}
@keyframes mdhSlideIn {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}
.reduce-motion .mdh-drawer__panel { animation: none; }
.mdh-drawer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mdh-drawer__close {
  color: var(--mdh-white);
  font-size: 14px;
  opacity: 0.7;
}
.mdh-drawer__nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mdh-drawer__nav a {
  font-family: var(--mdh-font-display);
  font-size: 22px;
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mdh-drawer__meta { font-size: 13px; opacity: 0.7; line-height: 1.8; }
.mdh-drawer__meta a { text-decoration: underline; }

/* ── Hero ── */
.mdh-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  color: var(--mdh-white);
  margin-top: calc(-1 * (var(--mdh-header-h) + var(--mdh-announce-h)));
  padding-top: calc(var(--mdh-header-h) + var(--mdh-announce-h));
}
.mdh-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.mdh-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,26,0.72) 0%, rgba(26,26,26,0.45) 50%, rgba(26,26,26,0.65) 100%);
  z-index: 1;
}
.mdh-hero__grid-bg {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.15;
  background-image:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: mdhGridMove 20s linear infinite;
}
@keyframes mdhGridMove {
  0% { background-position: 0 0; }
  100% { background-position: 60px 60px; }
}
.reduce-motion .mdh-hero__grid-bg { animation: none; }
.mdh-hero__content {
  position: relative;
  z-index: 3;
  padding: 80px 0 120px;
}
.mdh-hero__title {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.mdh-hero__title-jp {
  font-family: var(--mdh-font-display);
  font-size: clamp(48px, 8vw, 88px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.02em;
}
.mdh-hero__title-en {
  font-size: clamp(16px, 2.5vw, 22px);
  font-weight: 400;
  opacity: 0.9;
  letter-spacing: 0.08em;
}
.mdh-hero__lead {
  font-size: clamp(14px, 1.8vw, 17px);
  max-width: 520px;
  opacity: 0.88;
  margin-bottom: 36px;
  line-height: 1.9;
}
.mdh-hero__actions { display: flex; flex-wrap: wrap; gap: 16px; }
.mdh-hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-family: var(--mdh-font-display);
  font-size: 11px;
  letter-spacing: 0.2em;
  opacity: 0.6;
  animation: mdhBounce 2s ease-in-out infinite;
}
@keyframes mdhBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}
.reduce-motion .mdh-hero__scroll { animation: none; }

/* ── Page hero ── */
.mdh-page-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  color: var(--mdh-white);
  padding-bottom: 48px;
}
.mdh-page-hero--short { min-height: 300px; }
.mdh-page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.mdh-page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,26,0.85) 0%, rgba(26,26,26,0.4) 100%);
}
.mdh-page-hero__content { position: relative; z-index: 1; padding: 48px 0; }
.mdh-page-hero__title {
  font-family: var(--mdh-font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  margin: 8px 0 12px;
}
.mdh-page-hero__lead { opacity: 0.85; max-width: 480px; }

.mdh-crumb {
  font-size: 13px;
  margin-bottom: 16px;
  opacity: 0.7;
}
.mdh-crumb a:hover { text-decoration: underline; }
.mdh-crumb span { margin: 0 8px; }

/* ── Typography ── */
.mdh-kicker {
  font-family: var(--mdh-font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mdh-coral);
  margin-bottom: 12px;
}
.mdh-kicker--light { color: rgba(255,255,255,0.8); }
.mdh-section__title {
  font-family: var(--mdh-font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
}
.mdh-section__lead {
  color: var(--mdh-gray);
  max-width: 600px;
  line-height: 1.85;
}
.mdh-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mdh-font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mdh-coral);
  margin-top: 20px;
}
.mdh-link-arrow::after { content: '→'; transition: transform 0.25s; }
.mdh-link-arrow:hover::after { transform: translateX(4px); }

/* ── Sections ── */
.mdh-section { padding: 80px 0; }
.mdh-section__head { margin-bottom: 48px; }
.mdh-section__head--split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 16px;
}

/* ── Intro ── */
.mdh-intro__grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: end;
}
.mdh-intro__stats {
  display: flex;
  gap: 40px;
}
.mdh-stat { text-align: center; }
.mdh-stat__num {
  font-family: var(--mdh-font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--mdh-coral);
  line-height: 1;
  display: inline;
}
.mdh-stat__suffix {
  font-family: var(--mdh-font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--mdh-coral);
}
.mdh-stat__label {
  display: block;
  font-size: 12px;
  color: var(--mdh-gray);
  margin-top: 6px;
  letter-spacing: 0.06em;
}

/* ── Room cards ── */
.mdh-room-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.mdh-room-card {
  background: var(--mdh-white);
  border-radius: var(--mdh-radius);
  overflow: hidden;
  box-shadow: var(--mdh-shadow);
  transition: transform 0.3s var(--mdh-ease), box-shadow 0.3s var(--mdh-ease);
}
.mdh-room-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--mdh-shadow-lg);
}
.mdh-room-card__link { display: block; color: inherit; }
.mdh-room-card__media { aspect-ratio: 4/3; overflow: hidden; }
.mdh-room-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--mdh-ease); }
.mdh-room-card:hover .mdh-room-card__img { transform: scale(1.05); }
.mdh-room-card__body { padding: 24px; }
.mdh-room-card__meta {
  font-family: var(--mdh-font-display);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mdh-gray);
}
.mdh-room-card__title {
  font-family: var(--mdh-font-display);
  font-size: 22px;
  font-weight: 700;
  margin: 6px 0 10px;
}
.mdh-room-card__body p { font-size: 14px; color: var(--mdh-gray); margin-bottom: 12px; }
.mdh-room-card__price {
  font-family: var(--mdh-font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--mdh-coral);
}

/* ── Image band ── */
.mdh-band {
  position: relative;
  min-height: 480px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.mdh-band__media { position: relative; overflow: hidden; }
.mdh-band__img { width: 100%; height: 100%; object-fit: cover; min-height: 480px; }
.mdh-band__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,26,0.35);
}
.mdh-band__content {
  display: flex;
  align-items: center;
  background: var(--mdh-charcoal);
  color: var(--mdh-white);
  padding: 60px 0;
}
.mdh-band__inner { margin-left: auto; max-width: 480px; padding-right: 20px; }
.mdh-band--left .mdh-band__content { order: -1; }
.mdh-band--left .mdh-band__inner { margin-left: 0; margin-right: auto; padding-left: 20px; padding-right: 0; }
.mdh-band__title {
  font-family: var(--mdh-font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
}
.mdh-band__text { opacity: 0.85; line-height: 1.9; margin-bottom: 28px; }

/* ── Support cards (numbered dark) ── */
.mdh-support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.mdh-support-card {
  position: relative;
  background: var(--mdh-charcoal);
  color: var(--mdh-white);
  padding: 40px 28px 32px;
  border-radius: var(--mdh-radius);
  overflow: hidden;
}
.mdh-support-card__num {
  font-family: var(--mdh-font-display);
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
  opacity: 0.12;
  position: absolute;
  top: 12px;
  right: 16px;
}
.mdh-support-card__accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 48px;
  background: var(--mdh-coral);
}
.mdh-support-card__accent::after {
  content: '';
  position: absolute;
  top: 48px;
  left: 0;
  width: 48px;
  height: 4px;
  background: var(--mdh-coral);
}
.mdh-support-card__title {
  font-family: var(--mdh-font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}
.mdh-support-card p { font-size: 14px; opacity: 0.8; line-height: 1.8; }

/* ── Seasons swiper ── */
.mdh-season-swiper { overflow: visible; padding-bottom: 16px; }
.mdh-season-swiper .swiper-slide { width: 280px; }
.mdh-season-card {
  background: var(--mdh-white);
  border-radius: var(--mdh-radius);
  overflow: hidden;
  box-shadow: var(--mdh-shadow);
}
.mdh-season-card__media { aspect-ratio: 4/5; overflow: hidden; }
.mdh-season-card__img { width: 100%; height: 100%; object-fit: cover; }
.mdh-season-card__body { padding: 20px; }
.mdh-season-card__en {
  font-family: var(--mdh-font-display);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--mdh-coral);
}
.mdh-season-card__body h3 {
  font-family: var(--mdh-font-display);
  font-size: 24px;
  font-weight: 700;
  margin: 4px 0 6px;
}
.mdh-season-card__body p { font-size: 13px; color: var(--mdh-gray); }

/* ── Nearby ── */
.mdh-nearby-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.mdh-nearby-card { border-radius: var(--mdh-radius); overflow: hidden; background: var(--mdh-white); box-shadow: var(--mdh-shadow); }
.mdh-nearby-card__media { position: relative; aspect-ratio: 3/2; overflow: hidden; }
.mdh-nearby-card__img { width: 100%; height: 100%; object-fit: cover; }
.mdh-nearby-card__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--mdh-coral);
  color: var(--mdh-white);
  font-family: var(--mdh-font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 2px;
}
.mdh-nearby-card__body { padding: 16px; }
.mdh-nearby-card__body h3 {
  font-family: var(--mdh-font-display);
  font-size: 18px;
  font-weight: 700;
}
.mdh-nearby-card__body p { font-size: 13px; color: var(--mdh-gray); }

/* ── Voice swiper ── */
.mdh-voice-swiper .swiper-slide { width: min(420px, 85vw); }
.mdh-voice-card {
  background: var(--mdh-white);
  padding: 32px;
  border-radius: var(--mdh-radius);
  box-shadow: var(--mdh-shadow);
  border-left: 4px solid var(--mdh-coral);
}
.mdh-voice-card__quote { font-size: 15px; line-height: 1.85; margin-bottom: 20px; }
.mdh-voice-card footer { font-size: 13px; color: var(--mdh-gray); }
.mdh-voice-card cite { font-style: normal; font-weight: 600; color: var(--mdh-charcoal); display: block; }
.mdh-swiper-nav { display: flex; gap: 8px; margin-top: 20px; }
.mdh-swiper-btn {
  width: 44px;
  height: 44px;
  border: 2px solid var(--mdh-charcoal);
  border-radius: var(--mdh-radius);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
}
.mdh-swiper-btn:hover { background: var(--mdh-charcoal); color: var(--mdh-white); }

/* ── Journal ── */
.mdh-journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.mdh-journal-card {
  background: var(--mdh-white);
  border-radius: var(--mdh-radius);
  overflow: hidden;
  box-shadow: var(--mdh-shadow);
  transition: transform 0.3s var(--mdh-ease);
}
.mdh-journal-card:hover { transform: translateY(-4px); }
.mdh-journal-card a { display: block; color: inherit; }
.mdh-journal-card__media { aspect-ratio: 3/2; overflow: hidden; }
.mdh-journal-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.mdh-journal-card:hover .mdh-journal-card__img { transform: scale(1.04); }
.mdh-journal-card__body { padding: 20px; }
.mdh-journal-card__meta { font-size: 12px; color: var(--mdh-gray); margin-bottom: 8px; }
.mdh-journal-card__body h3 {
  font-family: var(--mdh-font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.4;
}
.mdh-journal-card__body p { font-size: 13px; color: var(--mdh-gray); }

/* ── FAQ ── */
.mdh-faq__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}
.mdh-faq-item { border-bottom: 1px solid var(--mdh-gray-light); }
.mdh-faq-item__btn {
  width: 100%;
  text-align: left;
  padding: 20px 36px 20px 0;
  font-family: var(--mdh-font-display);
  font-size: 16px;
  font-weight: 600;
  position: relative;
}
.mdh-faq-item__btn span {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
}
.mdh-faq-item__btn span::before,
.mdh-faq-item__btn span::after {
  content: '';
  position: absolute;
  background: var(--mdh-coral);
  transition: transform 0.3s;
}
.mdh-faq-item__btn span::before { width: 100%; height: 2px; top: 50%; transform: translateY(-50%); }
.mdh-faq-item__btn span::after { width: 2px; height: 100%; left: 50%; transform: translateX(-50%); }
.mdh-faq-item__btn[aria-expanded="true"] span::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.mdh-faq-item__panel { padding: 0 0 20px; }
.mdh-faq-item__panel p { font-size: 14px; color: var(--mdh-gray); line-height: 1.85; }

/* ── CTA ── */
.mdh-cta {
  position: relative;
  background: var(--mdh-charcoal);
  color: var(--mdh-white);
  padding: 80px 0;
  overflow: hidden;
}
.mdh-cta__grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: mdhGridMove 25s linear infinite;
}
.reduce-motion .mdh-cta__grid-bg { animation: none; }
.mdh-cta__inner { position: relative; text-align: center; }
.mdh-cta__title {
  font-family: var(--mdh-font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  margin-bottom: 16px;
}
.mdh-cta__text { opacity: 0.8; margin-bottom: 28px; max-width: 480px; margin-inline: auto; }
.mdh-cta__actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* ── About page ── */
.mdh-about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.mdh-about-intro__text p + p { margin-top: 16px; color: var(--mdh-gray); }
.mdh-about-intro__img { border-radius: var(--mdh-radius); box-shadow: var(--mdh-shadow-lg); }
.mdh-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.mdh-value-card {
  padding: 28px;
  background: var(--mdh-white);
  border-radius: var(--mdh-radius);
  border-top: 3px solid var(--mdh-coral);
  box-shadow: var(--mdh-shadow);
}
.mdh-value-card h3 {
  font-family: var(--mdh-font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.mdh-value-card p { font-size: 14px; color: var(--mdh-gray); }
.mdh-timeline { max-width: 640px; }
.mdh-timeline__item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--mdh-gray-light);
}
.mdh-timeline__year {
  font-family: var(--mdh-font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--mdh-coral);
}
.mdh-timeline__body h3 {
  font-family: var(--mdh-font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}
.mdh-timeline__body p { font-size: 14px; color: var(--mdh-gray); }

/* ── Services / Room detail ── */
.mdh-room-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--mdh-gray-light);
}
.mdh-room-detail:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.mdh-room-detail--reverse .mdh-room-detail__media { order: 2; }
.mdh-room-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.mdh-amenity-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  gap: 12px;
}
.mdh-amenity-list li {
  font-size: 14px;
  padding: 12px 16px;
  background: var(--mdh-offwhite);
  border: 1px solid var(--mdh-gray-light);
  border-radius: var(--mdh-radius-sm);
}
.mdh-amenity-list strong { display: block; font-weight: 600; margin-bottom: 2px; }
.mdh-arrivals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.mdh-arrival-card {
  background: var(--mdh-white);
  border-radius: var(--mdh-radius);
  overflow: hidden;
  box-shadow: var(--mdh-shadow);
}
.mdh-arrival-card__media { aspect-ratio: 4/5; overflow: hidden; }
.mdh-arrival-card__img { width: 100%; height: 100%; object-fit: cover; }
.mdh-arrival-card__body { padding: 16px; }
.mdh-arrival-card__body h3 {
  font-family: var(--mdh-font-display);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}
.mdh-arrival-card__body p { font-size: 13px; color: var(--mdh-gray); margin-bottom: 4px; }
.mdh-arrival-card__body span { font-size: 14px; font-weight: 600; color: var(--mdh-coral); }
.mdh-room-detail__img { border-radius: var(--mdh-radius); box-shadow: var(--mdh-shadow-lg); width: 100%; }
.mdh-room-detail__price {
  font-family: var(--mdh-font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--mdh-coral);
  margin-bottom: 8px;
  display: block;
}
.mdh-room-detail__title {
  font-family: var(--mdh-font-display);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
}
.mdh-room-detail__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 14px;
}
.mdh-room-detail__specs strong { color: var(--mdh-gray); font-weight: 500; }
.mdh-room-detail__body > p { color: var(--mdh-gray); margin-bottom: 16px; }
.mdh-room-detail__amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.mdh-room-detail__amenities li {
  font-size: 12px;
  padding: 4px 12px;
  background: var(--mdh-offwhite);
  border: 1px solid var(--mdh-gray-light);
  border-radius: 20px;
}
.mdh-onsen-visual { margin-top: 40px; border-radius: var(--mdh-radius); overflow: hidden; }
.mdh-onsen-visual__img { width: 100%; max-height: 400px; object-fit: cover; }
.mdh-walk-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.mdh-walk-card {
  background: var(--mdh-white);
  border-radius: var(--mdh-radius);
  overflow: hidden;
  box-shadow: var(--mdh-shadow);
}
.mdh-walk-card__media { aspect-ratio: 3/2; overflow: hidden; }
.mdh-walk-card__img { width: 100%; height: 100%; object-fit: cover; }
.mdh-walk-card__body { padding: 16px; }
.mdh-walk-card__body h3 {
  font-family: var(--mdh-font-display);
  font-size: 18px;
  font-weight: 700;
}
.mdh-walk-card__body p { font-size: 13px; color: var(--mdh-gray); }
.mdh-policy__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
}
.mdh-policy__list div {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--mdh-gray-light);
  font-size: 14px;
}
.mdh-policy__list dt { font-weight: 600; }

/* ── Articles ── */
.mdh-articles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.mdh-article-card {
  background: var(--mdh-white);
  border-radius: var(--mdh-radius);
  overflow: hidden;
  box-shadow: var(--mdh-shadow);
}
.mdh-article-card__media { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.mdh-article-card__img { width: 100%; height: 100%; object-fit: cover; }
.mdh-article-card__cat {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--mdh-coral);
  color: var(--mdh-white);
  font-family: var(--mdh-font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 2px;
}
.mdh-article-card__body { padding: 28px; }
.mdh-article-card__body time { font-size: 12px; color: var(--mdh-gray); }
.mdh-article-card__title {
  font-family: var(--mdh-font-display);
  font-size: 22px;
  font-weight: 700;
  margin: 8px 0 12px;
  line-height: 1.35;
}
.mdh-article-card__excerpt { font-size: 14px; color: var(--mdh-gray); margin-bottom: 12px; }
.mdh-article-card__full p { font-size: 14px; line-height: 1.85; color: var(--mdh-charcoal); }

/* ── Contact ── */
.mdh-contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.mdh-contact__hotel {
  font-family: var(--mdh-font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}
.mdh-contact__address { font-size: 14px; line-height: 1.9; margin: 24px 0; }
.mdh-contact__address a { color: var(--mdh-coral); text-decoration: underline; }
.mdh-mt { margin-top: 12px; }
.mdh-contact__note {
  margin-top: 32px;
  padding: 24px;
  background: var(--mdh-white);
  border-radius: var(--mdh-radius);
  border-left: 4px solid var(--mdh-coral);
}
.mdh-contact__note h3 {
  font-family: var(--mdh-font-display);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
}
.mdh-contact__note li {
  font-size: 14px;
  color: var(--mdh-gray);
  padding: 4px 0 4px 16px;
  position: relative;
}
.mdh-contact__note li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--mdh-coral);
  font-weight: 700;
}
.mdh-form {
  background: var(--mdh-white);
  padding: 32px;
  border-radius: var(--mdh-radius);
  box-shadow: var(--mdh-shadow);
}
.mdh-form__row { margin-bottom: 20px; }
.mdh-form__row--half { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.mdh-form__label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
}
.mdh-form__label span { color: var(--mdh-coral); }
.mdh-form__input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--mdh-gray-light);
  border-radius: var(--mdh-radius);
  font-family: var(--mdh-font-body);
  font-size: 14px;
  background: var(--mdh-offwhite);
  transition: border-color 0.25s;
}
.mdh-form__input:focus {
  outline: none;
  border-color: var(--mdh-coral);
  background: var(--mdh-white);
}
.mdh-form__textarea { resize: vertical; min-height: 120px; }
.mdh-form-error {
  background: #fef2f2;
  color: #b91c1c;
  padding: 12px 16px;
  border-radius: var(--mdh-radius);
  margin-bottom: 20px;
  font-size: 14px;
}
.mdh-form-success {
  background: var(--mdh-white);
  padding: 48px 32px;
  border-radius: var(--mdh-radius);
  box-shadow: var(--mdh-shadow);
  text-align: center;
}
.mdh-form-success h2 {
  font-family: var(--mdh-font-display);
  font-size: 24px;
  margin-bottom: 12px;
}
.mdh-form-success p { color: var(--mdh-gray); margin-bottom: 24px; }

/* ── Footer ── */
.mdh-footer {
  background: var(--mdh-charcoal);
  color: var(--mdh-white);
  padding-top: 64px;
}
.mdh-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.mdh-footer__name {
  font-family: var(--mdh-font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.mdh-footer__jp { font-size: 13px; opacity: 0.7; margin: 4px 0 12px; }
.mdh-footer__tag { font-size: 14px; opacity: 0.6; }
.mdh-footer__label {
  font-family: var(--mdh-font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mdh-coral);
  margin-bottom: 16px;
}
.mdh-footer__nav li { margin-bottom: 8px; }
.mdh-footer__nav a { font-size: 14px; opacity: 0.75; transition: opacity 0.25s; }
.mdh-footer__nav a:hover { opacity: 1; }
.mdh-footer__addr { font-size: 13px; line-height: 1.9; opacity: 0.75; }
.mdh-footer__addr a { text-decoration: underline; }
.mdh-footer__bar {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
}
.mdh-footer__bar-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  opacity: 0.5;
}

/* ── Reveal animation ── */
.js [data-mdh-reveal] {
  opacity: 1;
  transform: translateY(16px);
  transition: transform 0.7s var(--mdh-ease);
  transition-delay: var(--mdh-delay, 0ms);
}
.js [data-mdh-reveal].is-in {
  transform: translateY(0);
}
html:not(.js) [data-mdh-reveal],
.reduce-motion [data-mdh-reveal] { opacity: 1; transform: none; transition: none; }

body.mdh-nav-open { overflow: hidden; }

/* ── Journal list (articles page) ── */
.mdh-journal-list {
  display: grid;
  gap: 48px;
}
.mdh-journal-article {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--mdh-gray-light);
}
.mdh-journal-article:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.mdh-journal-article__media {
  border-radius: var(--mdh-radius);
  overflow: hidden;
}
.mdh-journal-article__img {
  width: 100%;
  height: auto;
  display: block;
}
.mdh-journal-article__body h2 {
  font-family: var(--mdh-font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 8px 0 12px;
}
.mdh-journal-article__excerpt {
  font-weight: 600;
  margin-bottom: 12px;
}

/* ── About access ── */
.mdh-about-access {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.mdh-about-access address {
  font-style: normal;
  margin: 16px 0 24px;
  line-height: 1.8;
}
.mdh-mt { margin-top: 24px; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .mdh-room-grid,
  .mdh-support-grid,
  .mdh-nearby-grid { grid-template-columns: repeat(2, 1fr); }
  .mdh-values-grid { grid-template-columns: repeat(2, 1fr); }
  .mdh-band { grid-template-columns: 1fr; }
  .mdh-band__img { min-height: 320px; }
  .mdh-band__inner,
  .mdh-band--left .mdh-band__inner { margin: 0; padding: 0 20px; max-width: none; }
  .mdh-intro__grid { grid-template-columns: 1fr; }
  .mdh-intro__stats { justify-content: flex-start; }
  .mdh-about-intro { grid-template-columns: 1fr; }
  .mdh-room-detail,
  .mdh-room-detail--reverse,
  .mdh-room-detail__grid { grid-template-columns: 1fr; }
  .mdh-arrivals-grid { grid-template-columns: repeat(2, 1fr); }
  .mdh-room-detail--reverse .mdh-room-detail__media { order: 0; }
}

@media (max-width: 768px) {
  .mdh-nav,
  .mdh-header .mdh-btn--solid { display: none; }
  .mdh-menu-btn { display: flex; }
  .mdh-arrivals-grid { grid-template-columns: 1fr; }
  .mdh-section { padding: 56px 0; }
  .mdh-room-grid,
  .mdh-journal-grid,
  .mdh-walk-grid,
  .mdh-articles-grid,
  .mdh-contact__grid,
  .mdh-faq__grid,
  .mdh-policy__grid { grid-template-columns: 1fr; }
  .mdh-support-grid,
  .mdh-nearby-grid,
  .mdh-values-grid { grid-template-columns: 1fr; }
  .mdh-hero__actions { flex-direction: column; align-items: flex-start; }
  .mdh-form__row--half { grid-template-columns: 1fr; }
  .mdh-footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .mdh-intro__stats { gap: 24px; }
  .mdh-stat__num { font-size: 36px; }
  .mdh-announce__inner { font-size: 12px; }
  .mdh-journal-article,
  .mdh-about-access { grid-template-columns: 1fr; }
}

/* Local + mobile width fixes */
html { width: 100%; max-width: 100%; overflow-x: hidden; }
body.site-midorihotel { width: 100%; max-width: 100%; min-width: 0; }
.mdh-wrap {
  width: min(calc(100% - 40px), 1180px);
  max-width: 100%;
  margin-inline: auto;
}
.mdh-header__inner,
.mdh-hero__inner,
.mdh-section > .mdh-wrap { min-width: 0; }
