/* ================================================================
   Ha-na — ロミロミボディ＆ヘッドスパ
   思想: エディトリアル・ミニマリズム × 非対称レイヤード・デプス
   質感: オーガニック・テクスチャ + フィルム・グレイン
   ================================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; background: none; border: none; }

.demo-hana {
  font-family: 'Noto Sans JP', sans-serif;
  background: var(--ha-cream);
  color: var(--ha-text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ---------------------------------------------------------------
   Placeholder
--------------------------------------------------------------- */
.ha-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--ha-warm);
  padding: 16px;
  text-align: center;
}
.ha-placeholder--dark {
  background: var(--ha-forest);
  color: var(--ha-cream);
}
.ha-placeholder__num {
  font-family: 'DM Serif Display', serif;
  font-size: 2.8rem;
  opacity: 0.25;
  line-height: 1;
  color: var(--ha-cream);
}
.ha-placeholder--dark .ha-placeholder__num { color: var(--ha-mint); opacity: 0.4; }
.ha-placeholder:not(.ha-placeholder--dark) .ha-placeholder__num { color: var(--ha-sage); }
.ha-placeholder__label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.6;
}
.ha-placeholder__text {
  font-size: 0.62rem;
  line-height: 1.6;
  opacity: 0.45;
  max-width: 220px;
}

/* ---------------------------------------------------------------
   Header
--------------------------------------------------------------- */
.ha-header {
  position: fixed;
  top: 40px;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.35s, box-shadow 0.35s;
}
.ha-header.is-scrolled {
  background: rgba(248, 244, 238, 0.94);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(42, 68, 56, 0.08);
}
.ha-header__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  height: 72px;
}
.ha-header__logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  margin-right: auto;
}
.ha-header__logo-main {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  color: var(--ha-forest);
  letter-spacing: 0.04em;
}
.ha-header__logo-sub {
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ha-sage);
}
.ha-header__nav { display: none; }
@media (min-width: 1024px) { .ha-header__nav { display: block; } }
.ha-header__list {
  display: flex;
  gap: 28px;
}
.ha-header__list a {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ha-text);
  opacity: 0.65;
  transition: opacity 0.2s;
}
.ha-header__list a:hover { opacity: 1; }
.ha-header__cta {
  display: none;
  padding: 9px 22px;
  background: var(--ha-forest);
  color: var(--ha-cream);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  border-radius: 50px;
  transition: background 0.2s;
  white-space: nowrap;
}
.ha-header__cta:hover { background: var(--ha-sage); }
@media (min-width: 768px) { .ha-header__cta { display: block; } }
.ha-header__burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
@media (min-width: 1024px) { .ha-header__burger { display: none; } }
.ha-header__burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ha-text);
  transition: transform 0.25s, opacity 0.25s;
}
.ha-header__burger.is-active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.ha-header__burger.is-active span:nth-child(2) { opacity: 0; }
.ha-header__burger.is-active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---------------------------------------------------------------
   Drawer
--------------------------------------------------------------- */
.ha-drawer {
  position: fixed;
  top: 112px;
  right: -100%;
  width: min(320px, 90vw);
  height: calc(100vh - 112px);
  background: var(--ha-cream);
  z-index: 99;
  padding: 40px 32px;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}
.ha-drawer.is-open { right: 0; }
.ha-drawer__list { display: flex; flex-direction: column; }
.ha-drawer__list li { border-bottom: 1px solid var(--ha-rule); }
.ha-drawer__list a {
  display: block;
  padding: 16px 0;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ha-text);
}
.ha-drawer__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(24, 27, 23, 0.45);
  z-index: 98;
}
.ha-drawer__overlay.is-visible { display: block; }

/* ---------------------------------------------------------------
   Hero — スリット（2分割）
--------------------------------------------------------------- */
.ha-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 112px;
  overflow: hidden;
}

/* 背景グリッド */
.ha-hero__grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 60fr 40fr;
}
.ha-hero__slit {
  position: relative;
  overflow: hidden;
}
.ha-hero__slit::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.ha-hero__slit--l::after {
  background: linear-gradient(
    150deg,
    rgba(24, 27, 23, 0.72) 0%,
    rgba(24, 27, 23, 0.35) 55%,
    rgba(24, 27, 23, 0.55) 100%
  );
}
.ha-hero__slit--r::after {
  background: linear-gradient(
    210deg,
    rgba(24, 27, 23, 0.5) 0%,
    rgba(24, 27, 23, 0.15) 60%,
    rgba(42, 68, 56, 0.4) 100%
  );
}
.ha-hero__slit img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 縦区切り線 */
.ha-hero__grid::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(60% - 1px);
  width: 1px;
  background: rgba(150, 186, 168, 0.3);
  z-index: 2;
  pointer-events: none;
}

/* コンテンツ */
.ha-hero__content {
  position: relative;
  z-index: 5;
  padding: 0 48px 44px;
  max-width: 680px;
}
.ha-hero__label {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ha-mint);
  margin-bottom: 18px;
}
.ha-hero__title { margin-bottom: 16px; }
.ha-hero__title-en {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: clamp(4rem, 10vw, 8.5rem);
  color: var(--ha-cream);
  line-height: 0.88;
  letter-spacing: -0.02em;
}
.ha-hero__title-ja {
  display: block;
  font-family: 'Noto Serif JP', serif;
  font-weight: 300;
  font-size: clamp(1.05rem, 2.2vw, 1.55rem);
  color: rgba(248, 244, 238, 0.88);
  margin-top: 14px;
  line-height: 1.8;
}
.ha-hero__sub {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  color: rgba(150, 186, 168, 0.85);
  margin-bottom: 30px;
}
.ha-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  background: var(--ha-mint);
  color: var(--ha-black);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  border-radius: 50px;
  transition: background 0.2s;
}
.ha-hero__cta:hover { background: var(--ha-cream); }

/* バッジバー */
.ha-hero__bar {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 18px 48px;
  background: rgba(24, 27, 23, 0.65);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(150, 186, 168, 0.15);
}
.ha-hero__bar-item {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  color: var(--ha-cream);
}
.ha-hero__bar-sep { color: var(--ha-mint); opacity: 0.6; }

@media (max-width: 768px) {
  .ha-hero__grid { grid-template-columns: 1fr; }
  .ha-hero__slit--r { display: none; }
  .ha-hero__grid::after { display: none; }
  .ha-hero__content { padding: 0 24px 32px; }
  .ha-hero__bar { padding: 14px 24px; gap: 12px; flex-wrap: wrap; }
}

/* ---------------------------------------------------------------
   Marquee
--------------------------------------------------------------- */
.ha-marquee {
  overflow: hidden;
  background: var(--ha-forest);
  padding: 13px 0;
}
.ha-marquee__track {
  display: flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
  animation: haMarquee 24s linear infinite;
  width: max-content;
}
.ha-marquee__track span {
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ha-mint);
}
.ha-marquee__dot {
  color: var(--ha-earth) !important;
  font-size: 0.55rem !important;
  letter-spacing: 0 !important;
}

@keyframes haMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------------------------------------------------------------
   Concept
--------------------------------------------------------------- */
.ha-concept {
  position: relative;
  overflow: hidden;
  padding: 120px 0 140px;
  background: var(--ha-cream);
}

/* パララックス "ALOHA" */
.ha-concept__parallax {
  position: absolute;
  top: 50%;
  left: -4%;
  transform: translateY(-50%);
  font-family: 'DM Serif Display', serif;
  font-size: clamp(8rem, 22vw, 20rem);
  color: var(--ha-sage);
  opacity: 0.055;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  line-height: 1;
  will-change: transform;
}

.ha-concept__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}
.ha-concept__label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ha-sage);
  margin-bottom: 16px;
}
.ha-concept__title {
  font-family: 'Noto Serif JP', serif;
  font-weight: 300;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.45;
  margin-bottom: 32px;
  color: var(--ha-black);
}
.ha-concept__title em {
  font-style: italic;
  color: var(--ha-sage);
  font-family: 'Cormorant Garamond', serif;
}
.ha-concept__milestone {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.ha-concept__milestone-num {
  font-family: 'DM Serif Display', serif;
  font-size: 4.5rem;
  color: var(--ha-sage);
  line-height: 1;
  letter-spacing: -0.02em;
}
.ha-concept__milestone-unit {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ha-sage);
}
.ha-concept__milestone-desc {
  font-size: 0.75rem;
  color: var(--ha-sub);
  margin-top: 3px;
  line-height: 1.5;
}
.ha-concept__body {
  font-size: 0.88rem;
  line-height: 2.1;
  color: var(--ha-sub);
  margin-bottom: 24px;
}
.ha-concept__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ha-concept__tags li {
  padding: 4px 14px;
  border: 1px solid var(--ha-mint);
  border-radius: 50px;
  font-size: 0.7rem;
  color: var(--ha-sage);
  letter-spacing: 0.06em;
}

/* 写真ブロック */
.ha-concept__photo-wrap { position: relative; padding-bottom: 32px; }
.ha-concept__photo-main {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 6px;
}
.ha-concept__photo-main img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ha-concept__photo-circle {
  position: absolute;
  bottom: -8px;
  left: -28px;
  width: 168px;
  height: 168px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid var(--ha-cream);
  box-shadow: 0 8px 32px rgba(24, 27, 23, 0.18);
}
.ha-concept__photo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .ha-concept__inner { grid-template-columns: 1fr; gap: 56px; padding: 0 24px; }
  .ha-concept { padding: 80px 0 100px; }
  .ha-concept__photo-circle { width: 120px; height: 120px; left: -12px; bottom: -12px; }
  .ha-concept__photo-wrap { order: -1; }
}

/* ---------------------------------------------------------------
   Journey — 施術の流れ
--------------------------------------------------------------- */
.ha-journey {
  position: relative;
  padding: 120px 0;
  background: var(--ha-warm);
  overflow: hidden;
}
/* オーガニックテクスチャ */
.ha-journey::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.42' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23g)' opacity='0.5'/%3E%3C/svg%3E");
  background-size: 300px 300px;
  pointer-events: none;
}
.ha-journey__inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
}
.ha-journey__head { margin-bottom: 80px; }
.ha-journey__label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ha-sage);
  margin-bottom: 12px;
}
.ha-journey__title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  color: var(--ha-black);
  letter-spacing: -0.01em;
}

/* ステップ */
.ha-journey__step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  margin-bottom: 100px;
}
.ha-journey__step:last-child { margin-bottom: 0; }
.ha-journey__step--rev { direction: rtl; }
.ha-journey__step--rev > * { direction: ltr; }

.ha-journey__step-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 6px;
}
.ha-journey__step-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ha-journey__step-body { position: relative; padding: 8px 0; }
.ha-journey__step-bg {
  position: absolute;
  top: -28px;
  right: -12px;
  font-family: 'DM Serif Display', serif;
  font-size: clamp(9rem, 18vw, 16rem);
  color: var(--ha-sage);
  opacity: 0.07;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.ha-journey__step--rev .ha-journey__step-bg { right: auto; left: -12px; }

.ha-journey__step-en {
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ha-sage);
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}
.ha-journey__step-ja {
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  color: var(--ha-black);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  line-height: 1.4;
}
.ha-journey__step-text {
  font-size: 0.86rem;
  line-height: 2.05;
  color: var(--ha-sub);
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .ha-journey { padding: 80px 0; }
  .ha-journey__inner { padding: 0 24px; }
  .ha-journey__head { margin-bottom: 48px; }
  .ha-journey__step {
    grid-template-columns: 1fr;
    gap: 28px;
    direction: ltr;
    margin-bottom: 64px;
  }
  .ha-journey__step--rev { direction: ltr; }
  .ha-journey__step-bg { font-size: clamp(6rem, 28vw, 10rem); top: -12px; right: -6px; }
}

/* ---------------------------------------------------------------
   Menu — エディトリアルリスト（ダーク背景）
--------------------------------------------------------------- */
.ha-menu {
  position: relative;
  padding: 120px 0;
  background: var(--ha-black);
  overflow: hidden;
}
/* フィルムグレイン */
.ha-menu::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.042;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23g)' opacity='0.4'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
}
.ha-menu__inner {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 48px;
}
.ha-menu__head { margin-bottom: 56px; }
.ha-menu__label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ha-mint);
  margin-bottom: 12px;
}
.ha-menu__title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--ha-cream);
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.ha-menu__sub {
  font-size: 0.78rem;
  color: rgba(150, 186, 168, 0.65);
  letter-spacing: 0.04em;
  line-height: 1.7;
}
.ha-menu__list { border-top: 1px solid rgba(150, 186, 168, 0.12); }
.ha-menu__item {
  padding: 36px 0;
  border-bottom: 1px solid rgba(150, 186, 168, 0.12);
}
.ha-menu__item-top {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.ha-menu__item-no {
  font-family: 'DM Serif Display', serif;
  font-size: 1.9rem;
  color: var(--ha-sage);
  opacity: 0.55;
  min-width: 38px;
  line-height: 1;
}
.ha-menu__item-name-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  flex-wrap: wrap;
}
.ha-menu__item-name {
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--ha-cream);
}
.ha-menu__item-badge {
  padding: 3px 11px;
  border: 1px solid rgba(150, 186, 168, 0.5);
  border-radius: 50px;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: var(--ha-mint);
  white-space: nowrap;
}
.ha-menu__item-time {
  font-size: 0.75rem;
  color: rgba(150, 186, 168, 0.65);
  letter-spacing: 0.06em;
  margin-left: auto;
}
.ha-menu__item-price {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  color: var(--ha-cream);
  letter-spacing: -0.01em;
}
.ha-menu__item-desc {
  font-size: 0.83rem;
  line-height: 1.95;
  color: rgba(248, 244, 238, 0.45);
  padding-left: 56px;
}
.ha-menu__cta-wrap { margin-top: 52px; text-align: center; }
.ha-menu__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 38px;
  border: 1px solid rgba(150, 186, 168, 0.5);
  color: var(--ha-mint);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  border-radius: 50px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.ha-menu__cta:hover {
  background: var(--ha-mint);
  color: var(--ha-black);
  border-color: var(--ha-mint);
}

@media (max-width: 768px) {
  .ha-menu { padding: 80px 0; }
  .ha-menu__inner { padding: 0 24px; }
  .ha-menu__item-desc { padding-left: 0; margin-top: 4px; }
  .ha-menu__item-time { margin-left: 0; }
  .ha-menu__item-top { gap: 10px; }
}

/* ---------------------------------------------------------------
   Trust — スタッフ + 口コミ（ベントー）
--------------------------------------------------------------- */
.ha-trust {
  padding: 120px 0;
  background: var(--ha-cream);
}
.ha-trust__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}
.ha-trust__head { margin-bottom: 64px; }
.ha-trust__label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ha-sage);
  margin-bottom: 12px;
}
.ha-trust__title {
  font-family: 'Noto Serif JP', serif;
  font-weight: 300;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.55;
  color: var(--ha-black);
}
.ha-trust__bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* スタッフ列 */
.ha-trust__staff-col { display: flex; flex-direction: column; gap: 24px; }
.ha-trust__staff-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px 24px;
  background: var(--ha-warm);
  border-radius: 16px;
}
.ha-trust__staff-photo {
  flex-shrink: 0;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  border: 3px solid var(--ha-cream);
  box-shadow: 0 4px 16px rgba(42, 68, 56, 0.12);
}
.ha-trust__staff-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.ha-trust__staff-body { flex: 1; min-width: 0; }
.ha-trust__staff-role {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ha-sage);
  margin-bottom: 4px;
}
.ha-trust__staff-name-en {
  font-family: 'DM Serif Display', serif;
  font-size: 1.35rem;
  color: var(--ha-black);
  line-height: 1.1;
}
.ha-trust__staff-name-ja {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.82rem;
  color: var(--ha-sub);
  margin-bottom: 4px;
}
.ha-trust__staff-career {
  font-size: 0.7rem;
  color: var(--ha-sage);
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.ha-trust__staff-msg {
  font-size: 0.78rem;
  line-height: 1.95;
  color: var(--ha-sub);
  border-left: 2px solid var(--ha-mint);
  padding-left: 10px;
}

/* 口コミ 2×2 */
.ha-trust__voice-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.ha-trust__voice {
  padding: 22px;
  background: var(--ha-warm);
  border-radius: 14px;
}
.ha-trust__voice-stars {
  font-size: 0.6rem;
  color: var(--ha-earth);
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.ha-trust__voice-text {
  font-size: 0.78rem;
  line-height: 1.95;
  color: var(--ha-text);
  margin-bottom: 14px;
}
.ha-trust__voice-foot {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-top: 1px solid var(--ha-rule);
  padding-top: 10px;
}
.ha-trust__voice-name {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--ha-black);
}
.ha-trust__voice-attr {
  font-size: 0.65rem;
  color: var(--ha-sub);
}
.ha-trust__voice-menu {
  font-size: 0.62rem;
  color: var(--ha-sage);
  letter-spacing: 0.04em;
}

@media (max-width: 1024px) {
  .ha-trust__bento { grid-template-columns: 1fr; }
  .ha-trust__voice-col { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .ha-trust { padding: 80px 0; }
  .ha-trust__inner { padding: 0 24px; }
  .ha-trust__voice-col { grid-template-columns: 1fr; }
  .ha-trust__staff-card { flex-direction: column; align-items: center; text-align: center; }
  .ha-trust__staff-msg { text-align: left; }
}

/* ---------------------------------------------------------------
   Access
--------------------------------------------------------------- */
.ha-access {
  padding: 120px 0;
  background: var(--ha-warm);
  position: relative;
  overflow: hidden;
}
.ha-access::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.42' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23g)' opacity='0.5'/%3E%3C/svg%3E");
  background-size: 300px 300px;
  pointer-events: none;
}
.ha-access__inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
}
.ha-access__head { margin-bottom: 56px; }
.ha-access__label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ha-sage);
  margin-bottom: 12px;
}
.ha-access__title {
  font-family: 'Noto Serif JP', serif;
  font-weight: 300;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.55;
  color: var(--ha-black);
}
.ha-access__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.ha-access__photo {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 8px;
}
.ha-access__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ha-access__dl { display: flex; flex-direction: column; }
.ha-access__dl > div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--ha-rule);
}
.ha-access__dl > div:first-child { border-top: 1px solid var(--ha-rule); }
.ha-access__dl dt {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--ha-sage);
  padding-top: 2px;
}
.ha-access__dl dd {
  font-size: 0.84rem;
  line-height: 1.85;
  color: var(--ha-text);
}
.ha-access__note {
  font-size: 0.7rem;
  color: var(--ha-sub);
  margin-left: 6px;
}
.ha-access__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  padding: 14px 32px;
  background: var(--ha-forest);
  color: var(--ha-cream);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  border-radius: 50px;
  transition: background 0.2s;
}
.ha-access__cta:hover { background: var(--ha-sage); }

@media (max-width: 768px) {
  .ha-access { padding: 80px 0; }
  .ha-access__inner { padding: 0 24px; }
  .ha-access__body { grid-template-columns: 1fr; gap: 36px; }
}

/* ---------------------------------------------------------------
   Footer
--------------------------------------------------------------- */
.ha-footer {
  padding: 52px 0 44px;
  background: var(--ha-black);
  text-align: center;
}
.ha-footer__inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.ha-footer__logo {
  font-family: 'DM Serif Display', serif;
  font-size: 2.2rem;
  color: var(--ha-cream);
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.ha-footer__sub {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ha-sage);
  margin-bottom: 20px;
}
.ha-footer__copy {
  font-size: 0.62rem;
  color: rgba(248, 244, 238, 0.25);
  letter-spacing: 0.06em;
}

/* ---------------------------------------------------------------
   Fade アニメーション
--------------------------------------------------------------- */
.ha-fade {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.ha-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------------------------------------------------------------
   磁石ホバー
--------------------------------------------------------------- */
.ha-magnetic { transition: transform 0.15s ease; }
