/* ======================================================================
   minpaku/assets/css/public.css
   公開HP用スタイル(navy/teal/gold 系の落ち着いた配色)
   ====================================================================== */

:root {
  --mp-bg:        #faf8f3;
  --mp-surface:   #ffffff;
  --mp-surface2:  #f5f2ea;
  --mp-border:    #e7e2d3;
  --mp-text:      #1f2933;
  --mp-text-sub:  #5a6573;
  --mp-text-dim:  #8a93a0;

  --mp-navy:      #1f3a5c;
  --mp-navy-soft: #e7edf4;
  --mp-teal:      #4ab5a8;
  --mp-teal-dark: #369488;
  --mp-teal-soft: #e4f4f2;
  --mp-gold:      #c8a35c;
  --mp-gold-soft: #f7eed9;

  --mp-radius:    14px;
  --mp-radius-sm: 8px;
  --mp-shadow:    0 2px 12px rgba(31,58,92,.07);
  --mp-shadow-lg: 0 12px 40px rgba(31,58,92,.12);

  --mp-header-h:  64px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Zen Kaku Gothic New','Noto Sans JP','Noto Sans SC','Noto Sans KR',system-ui,sans-serif;
  background: var(--mp-bg);
  color: var(--mp-text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--mp-teal-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── ヘッダー ── */
.mp-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(160%) blur(8px);
  -webkit-backdrop-filter: saturate(160%) blur(8px);
  border-bottom: 1px solid var(--mp-border);
}
.mp-header-inner {
  max-width: 1100px; margin: 0 auto; padding: 12px 20px;
  display: flex; align-items: center; gap: 18px; min-height: var(--mp-header-h);
}
.mp-logo {
  font-size: 18px; font-weight: 900; color: var(--mp-navy);
  display: flex; align-items: center; gap: 8px; text-decoration: none;
  letter-spacing: .03em;
}
.mp-logo:hover { text-decoration: none; color: var(--mp-navy); }
.mp-logo .ico { font-size: 22px; }

.mp-nav { display: flex; gap: 6px; margin-left: auto; align-items: center; flex-wrap: wrap; }
.mp-nav a {
  padding: 7px 14px; border-radius: 999px; font-size: 13px; font-weight: 700;
  color: var(--mp-text); text-decoration: none; transition: background .12s;
}
.mp-nav a:hover { background: var(--mp-teal-soft); color: var(--mp-teal-dark); text-decoration: none; }
.mp-nav a.cta {
  background: var(--mp-teal); color: #fff; padding: 8px 18px;
}
.mp-nav a.cta:hover { background: var(--mp-teal-dark); color: #fff; }

/* 言語切替 */
.mp-lang-switcher {
  display: inline-flex; gap: 0; border: 1.5px solid var(--mp-border);
  border-radius: 999px; overflow: hidden; background: #fff;
}
.mp-lang-link {
  padding: 5px 11px; font-size: 11.5px; font-weight: 700;
  color: var(--mp-text-sub); text-decoration: none;
  border-right: 1px solid var(--mp-border);
  transition: background .12s, color .12s;
}
.mp-lang-link:last-child { border-right: 0; }
.mp-lang-link:hover { background: var(--mp-bg); color: var(--mp-text); text-decoration: none; }
.mp-lang-link.active { background: var(--mp-navy); color: #fff; }

/* ハンバーガー(SP) */
.mp-burger { display: none; }

/* ── ヒーロー ── */
.mp-hero {
  background:
    linear-gradient(135deg, rgba(31,58,92,.65) 0%, rgba(74,181,168,.55) 100%),
    url('https://images.unsplash.com/photo-1522708323590-d24dbb6b0267?auto=format&fit=crop&w=1600&q=70') center/cover no-repeat;
  color: #fff;
  padding: 86px 20px 96px;
  text-align: center;
}
.mp-hero h1 {
  font-size: 38px; font-weight: 900; margin: 0 0 12px;
  letter-spacing: .04em; line-height: 1.35;
  text-shadow: 0 2px 12px rgba(0,0,0,.18);
}
.mp-hero p {
  font-size: 16px; max-width: 620px; margin: 0 auto 24px;
  text-shadow: 0 1px 6px rgba(0,0,0,.18);
}
.mp-hero .cta-row { display: inline-flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.mp-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 12px 28px; border-radius: 999px;
  background: var(--mp-teal); color: #fff;
  font-weight: 700; font-size: 14px; text-decoration: none;
  border: none; cursor: pointer; transition: transform .15s, filter .15s, background .15s;
  font-family: inherit;
}
.mp-btn:hover { background: var(--mp-teal-dark); color: #fff; text-decoration: none; transform: translateY(-1px); filter: brightness(1.05); }
.mp-btn.gold     { background: var(--mp-gold); color: #fff; }
.mp-btn.gold:hover { background: #ad8b46; }
.mp-btn.outline  { background: transparent; color: #fff; border: 1.5px solid #fff; }
.mp-btn.outline:hover { background: rgba(255,255,255,.12); color: #fff; transform: none; }
.mp-btn.ghost    { background: transparent; color: var(--mp-text-sub); border: 1.5px solid var(--mp-border); }
.mp-btn.ghost:hover { background: var(--mp-surface); color: var(--mp-text); }

/* ── セクション ── */
.mp-section { max-width: 1100px; margin: 0 auto; padding: 64px 20px; }
.mp-section h2 {
  font-size: 26px; font-weight: 900; margin: 0 0 8px; color: var(--mp-navy);
  letter-spacing: .03em;
}
.mp-section .lead { color: var(--mp-text-sub); font-size: 14px; margin: 0 0 28px; }

.mp-features {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px; margin-top: 8px;
}
.mp-feature {
  background: var(--mp-surface); border: 1px solid var(--mp-border);
  border-radius: var(--mp-radius); padding: 22px 20px;
  box-shadow: var(--mp-shadow);
  transition: transform .18s, box-shadow .18s;
}
.mp-feature:hover { transform: translateY(-2px); box-shadow: var(--mp-shadow-lg); }
.mp-feature .ico {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: var(--mp-teal-soft); color: var(--mp-teal-dark);
  font-size: 22px; margin-bottom: 14px;
}
.mp-feature .ttl { font-weight: 900; font-size: 15px; color: var(--mp-text); margin-bottom: 4px; }
.mp-feature .desc { font-size: 13px; color: var(--mp-text-sub); }

/* ── 物件カード ── */
.mp-property-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.mp-property {
  background: var(--mp-surface); border: 1px solid var(--mp-border);
  border-radius: var(--mp-radius); overflow: hidden;
  text-decoration: none; color: inherit; display: flex; flex-direction: column;
  box-shadow: var(--mp-shadow);
  transition: transform .18s, box-shadow .18s;
}
.mp-property:hover { transform: translateY(-3px); box-shadow: var(--mp-shadow-lg); text-decoration: none; color: inherit; }
.mp-property .img {
  aspect-ratio: 16/10; background: var(--mp-surface2) center/cover no-repeat;
  border-bottom: 1px solid var(--mp-border);
}
.mp-property .body { padding: 16px 18px 20px; flex: 1; display: flex; flex-direction: column; }
.mp-property .name { font-size: 16px; font-weight: 800; color: var(--mp-text); margin: 0 0 6px; line-height: 1.4; }
.mp-property .meta { font-size: 12px; color: var(--mp-text-sub); margin-bottom: 10px; }
.mp-property .desc { font-size: 13px; color: var(--mp-text-sub); flex: 1; line-height: 1.7;
  display: -webkit-box; -webkit-box-orient: vertical; overflow: hidden; -webkit-line-clamp: 3; }
.mp-property .price {
  margin-top: 12px; font-weight: 900; color: var(--mp-navy); font-size: 17px;
}
.mp-property .price small { font-weight: 600; color: var(--mp-text-sub); font-size: 11px; margin-left: 4px; }

/* ── フォーム ── */
.mp-form { display: grid; gap: 14px; max-width: 580px; margin: 0 auto; }
.mp-form label { font-size: 13px; font-weight: 700; color: var(--mp-text); display: block; margin-bottom: 4px; }
.mp-form .req { color: var(--mp-gold); font-size: 11px; margin-left: 4px; }
.mp-form input[type=text],
.mp-form input[type=email],
.mp-form input[type=tel],
.mp-form input[type=password],
.mp-form input[type=number],
.mp-form input[type=date],
.mp-form input[type=search],
.mp-form select,
.mp-form textarea {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--mp-border); border-radius: var(--mp-radius-sm);
  font-size: 14px; background: #fff; color: var(--mp-text); font-family: inherit;
  transition: border-color .12s, box-shadow .12s;
}
.mp-form input:focus, .mp-form select:focus, .mp-form textarea:focus {
  outline: 0; border-color: var(--mp-teal);
  box-shadow: 0 0 0 3px rgba(74,181,168,.18);
}
.mp-form textarea { resize: vertical; min-height: 130px; }
.mp-form .actions { display: flex; gap: 10px; justify-content: center; margin-top: 8px; }

/* ── アラート ── */
.mp-alert { padding: 14px 18px; border-radius: var(--mp-radius); font-size: 14px; line-height: 1.7; margin-bottom: 16px; }
.mp-alert.success { background: var(--mp-teal-soft);  color: var(--mp-teal-dark); border: 1.5px solid var(--mp-teal); }
.mp-alert.error   { background: #fdecea; color: #991b1b; border: 1.5px solid #d94830; }
.mp-alert.info    { background: var(--mp-navy-soft);  color: var(--mp-navy);      border: 1.5px solid var(--mp-navy); }

/* ── フッター ── */
.mp-footer {
  background: var(--mp-navy); color: #fff;
  padding: 36px 20px 24px; margin-top: 64px;
}
.mp-footer-inner { max-width: 1100px; margin: 0 auto; }
.mp-footer-cols {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 28px; padding-bottom: 24px;
}
.mp-footer h4 { font-size: 13px; margin: 0 0 10px; color: #fff; opacity: .7; letter-spacing: .08em; text-transform: uppercase; }
.mp-footer ul { list-style: none; padding: 0; margin: 0; font-size: 13px; line-height: 2; }
.mp-footer ul a { color: #fff; opacity: .85; }
.mp-footer ul a:hover { opacity: 1; }
.mp-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 18px;
  font-size: 12px; opacity: .65;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
}

/* ============================================================
   v2 ホームページ — 浄心1棟5室コンセプト用 リッチデザイン
   ============================================================ */

html { scroll-behavior: smooth; }

/* ── 出現アニメーション(IntersectionObserver で .visible 付与) ── */
.h2-reveal { opacity: 0; transform: translateY(30px); transition: opacity .9s cubic-bezier(.22,1,.36,1), transform .9s cubic-bezier(.22,1,.36,1); }
.h2-reveal.visible { opacity: 1; transform: translateY(0); }
.h2-reveal[data-delay="1"] { transition-delay: .15s; }
.h2-reveal[data-delay="2"] { transition-delay: .3s;  }
.h2-reveal[data-delay="3"] { transition-delay: .45s; }
.h2-reveal[data-delay="4"] { transition-delay: .6s;  }

/* ── スクロール進行バー ── */
.h2-progress {
  position: fixed; top: 0; left: 0; height: 3px; z-index: 200;
  background: linear-gradient(90deg, var(--mp-teal) 0%, var(--mp-gold) 100%);
  width: 0%; transition: width .12s linear;
  box-shadow: 0 0 12px rgba(200,163,92,.6);
}

/* ── HERO v3: 100vh + 画像クロスフェード回転 ── */
.h2-hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}
.h2-hero-bg { position: absolute; inset: 0; z-index: -2; }
.h2-hero-bg .img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
  animation: heroBgCycle 28s infinite;
}
.h2-hero-bg .img:nth-child(1) { animation-delay: 0s; }
.h2-hero-bg .img:nth-child(2) { animation-delay: 7s; }
.h2-hero-bg .img:nth-child(3) { animation-delay: 14s; }
.h2-hero-bg .img:nth-child(4) { animation-delay: 21s; }
@keyframes heroBgCycle {
  0%, 4%   { opacity: 0; transform: scale(1.0); }
  6%, 22%  { opacity: 1; transform: scale(1.08); }
  25%, 100%{ opacity: 0; transform: scale(1.12); }
}
.h2-hero::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(31,58,92,.55), rgba(0,0,0,.35) 60%),
    linear-gradient(180deg, rgba(0,0,0,.25) 0%, rgba(0,0,0,.65) 100%);
}
/* 装飾的なグラデオーブ */
.h2-hero-orb {
  position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none;
  z-index: -1; opacity: .55; mix-blend-mode: screen;
}
.h2-hero-orb.o1 { width: 380px; height: 380px; background: var(--mp-teal); top: 12%; left: -80px; animation: orbFloat1 18s infinite ease-in-out; }
.h2-hero-orb.o2 { width: 520px; height: 520px; background: var(--mp-gold); bottom: -120px; right: -100px; animation: orbFloat2 22s infinite ease-in-out; }
@keyframes orbFloat1 { 0%,100%{transform:translate(0,0);} 50%{transform:translate(60px,40px);} }
@keyframes orbFloat2 { 0%,100%{transform:translate(0,0);} 50%{transform:translate(-40px,-60px);} }
.h2-hero-inner { max-width: 920px; padding: 80px 20px; position: relative; }
.h2-hero-badge {
  display: inline-block; padding: 6px 14px; border-radius: 999px;
  background: rgba(255,255,255,.18); backdrop-filter: blur(8px);
  font-size: 12px; font-weight: 700; letter-spacing: .1em;
  border: 1px solid rgba(255,255,255,.32);
  margin-bottom: 18px;
  animation: fadeInUp .8s .1s ease both;
}
.h2-hero h1 {
  font-size: 68px; font-weight: 900; line-height: 1.18;
  letter-spacing: .04em; margin: 0 0 22px;
  text-shadow: 0 4px 28px rgba(0,0,0,.45);
  animation: fadeInUp .9s .25s ease both;
}
.h2-hero h1 .accent {
  background: linear-gradient(120deg, #ffd97a 0%, #c8a35c 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.h2-hero p {
  font-size: 17px; max-width: 600px; margin: 0 auto 28px;
  text-shadow: 0 2px 10px rgba(0,0,0,.3);
  animation: fadeInUp 1s .45s ease both;
}
.h2-hero-cta {
  display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center;
  animation: fadeInUp 1.1s .65s ease both;
}
.h2-hero-cta .mp-btn { padding: 15px 32px; font-size: 15px; box-shadow: 0 8px 24px rgba(0,0,0,.25); }
.h2-scroll-cue {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  font-size: 22px; opacity: .65; animation: bounceY 2s ease-in-out infinite;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounceY {
  0%, 100% { transform: translate(-50%, 0); }
  50%      { transform: translate(-50%, 8px); }
}

/* ── 数値カウンタ帯 ── */
.h2-stats-bar {
  background: var(--mp-navy);
  color: #fff;
  padding: 28px 20px;
}
.h2-stats-bar-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; text-align: center;
}
.h2-stat .num { font-size: 40px; font-weight: 900; color: var(--mp-gold); line-height: 1; letter-spacing: -.02em; }
.h2-stat .num small { font-size: 18px; color: #fff; opacity: .85; margin-left: 2px; }
.h2-stat .label { font-size: 11.5px; opacity: .82; margin-top: 6px; letter-spacing: .08em; text-transform: uppercase; }

/* ── 共通: kicker 見出し ── */
.h2-section { max-width: 1100px; margin: 0 auto; padding: 90px 20px; }
.h2-kicker {
  display: inline-block; font-size: 11.5px; font-weight: 800;
  letter-spacing: .2em; color: var(--mp-gold);
  padding: 4px 12px; border: 1px solid var(--mp-gold);
  border-radius: 999px; margin-bottom: 14px;
}
.h2-section h2 {
  font-size: 32px; font-weight: 900; margin: 0 0 12px;
  color: var(--mp-navy); letter-spacing: .04em; line-height: 1.4;
}
.h2-section h2 .accent { color: var(--mp-teal-dark); }
.h2-section .lead { color: var(--mp-text-sub); font-size: 15px; max-width: 720px; line-height: 1.85; margin: 0 0 36px; }

/* ── コンセプト 4特徴 ── */
.h2-concept-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px; margin-top: 16px;
}
.h2-concept-card {
  background: var(--mp-surface); padding: 30px 24px;
  border-radius: var(--mp-radius); border: 1px solid var(--mp-border);
  box-shadow: var(--mp-shadow); transition: transform .3s, box-shadow .3s;
}
.h2-concept-card:hover { transform: translateY(-6px); box-shadow: var(--mp-shadow-lg); }
.h2-concept-card .ico {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  background: linear-gradient(135deg, var(--mp-teal-soft), var(--mp-gold-soft));
  margin-bottom: 16px;
}
.h2-concept-card h3 { font-size: 17px; font-weight: 900; color: var(--mp-navy); margin: 0 0 8px; }
.h2-concept-card p { font-size: 13.5px; color: var(--mp-text-sub); margin: 0; line-height: 1.8; }

/* ── ROOMS ショーケース ── */
.h2-rooms-bg { background: linear-gradient(180deg, #fff 0%, var(--mp-surface2) 100%); padding: 90px 0; }
.h2-rooms-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 24px;
}
.h2-room-card {
  background: var(--mp-surface);
  border-radius: var(--mp-radius); overflow: hidden;
  box-shadow: var(--mp-shadow); border: 1px solid var(--mp-border);
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
  transition: transform .35s, box-shadow .35s;
}
.h2-room-card:hover { transform: translateY(-6px); box-shadow: var(--mp-shadow-lg); color: inherit; text-decoration: none; }
.h2-room-img-wrap { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--mp-surface2); }
.h2-room-img { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .8s ease; }
.h2-room-card:hover .h2-room-img { transform: scale(1.08); }
.h2-room-tag {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: rgba(31,58,92,.92); color: #fff;
  padding: 5px 12px; border-radius: 999px;
  font-size: 11.5px; font-weight: 700;
  backdrop-filter: blur(6px);
}
.h2-room-tag.gold { background: rgba(200,163,92,.95); }
.h2-room-tag.teal { background: rgba(74,181,168,.95); }
.h2-room-floor {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  background: rgba(255,255,255,.95); color: var(--mp-navy);
  padding: 4px 10px; border-radius: 6px;
  font-size: 11px; font-weight: 800;
}
.h2-room-body { padding: 18px 20px 22px; flex: 1; display: flex; flex-direction: column; }
.h2-room-body h3 { font-size: 17px; font-weight: 900; color: var(--mp-navy); margin: 0 0 6px; }
.h2-room-body .meta { font-size: 12px; color: var(--mp-text-sub); margin-bottom: 10px; }
.h2-room-body .desc { font-size: 13px; color: var(--mp-text-sub); flex: 1; line-height: 1.75;
  display: -webkit-box; -webkit-box-orient: vertical; overflow: hidden; -webkit-line-clamp: 3; }
.h2-room-foot { display: flex; justify-content: space-between; align-items: center; margin-top: 14px; padding-top: 12px; border-top: 1px dashed var(--mp-border); }
.h2-room-price { font-size: 18px; font-weight: 900; color: var(--mp-navy); }
.h2-room-price small { font-size: 11px; color: var(--mp-text-sub); margin-left: 2px; font-weight: 600; }
.h2-room-link { font-size: 12px; font-weight: 800; color: var(--mp-teal-dark); }

/* ── LOCATION ── */
.h2-loc-bg { background: var(--mp-navy); color: #fff; padding: 80px 20px; }
.h2-loc-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.h2-loc-bg .h2-kicker { color: var(--mp-gold); border-color: var(--mp-gold); }
.h2-loc-bg h2 { color: #fff; }
.h2-loc-bg .lead { color: rgba(255,255,255,.78); }
.h2-loc-list { list-style: none; padding: 0; margin: 18px 0; }
.h2-loc-list li {
  display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.13);
  font-size: 14px;
}
.h2-loc-list li .num { font-size: 22px; font-weight: 900; color: var(--mp-gold); min-width: 60px; line-height: 1; }
.h2-loc-list li .num small { font-size: 11px; color: rgba(255,255,255,.7); margin-left: 2px; font-weight: 600; }
.h2-loc-list li .text { font-size: 13.5px; color: rgba(255,255,255,.9); align-self: center; }
.h2-loc-map {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--mp-radius);
  overflow: hidden;
  box-shadow: 0 12px 50px rgba(0,0,0,.4);
  background: #e7edf4;
}
.h2-loc-map iframe { width: 100%; height: 100%; border: 0; display: block; }
.h2-loc-map .h2-loc-map-link {
  position: absolute; bottom: 12px; right: 12px;
  background: rgba(255,255,255,.95); color: var(--mp-navy);
  padding: 6px 12px; border-radius: 999px;
  font-size: 11.5px; font-weight: 800; text-decoration: none;
  box-shadow: 0 2px 10px rgba(0,0,0,.18);
}
.h2-loc-map .h2-loc-map-link:hover { background: #fff; text-decoration: none; }

/* ── 周辺観光 ── */
.h2-attractions-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.h2-attr {
  display: block; text-decoration: none; color: inherit;
  border-radius: var(--mp-radius); overflow: hidden; position: relative;
  aspect-ratio: 4/5;
  box-shadow: var(--mp-shadow);
  transition: transform .3s;
}
.h2-attr:hover { transform: translateY(-4px); color: inherit; text-decoration: none; }
.h2-attr-img { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .6s; }
.h2-attr:hover .h2-attr-img { transform: scale(1.08); }
.h2-attr::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.78) 100%);
  z-index: 1;
}
.h2-attr-text {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  padding: 16px 18px; color: #fff;
}
.h2-attr-text .name { font-size: 16px; font-weight: 900; margin-bottom: 4px; }
.h2-attr-text .meta { font-size: 11.5px; opacity: .9; }
.h2-attr-text .meta::before { content: '🚶 '; }

/* ── ギャラリー(Masonry風) ── */
.h2-gallery {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
  grid-auto-flow: dense;
}
.h2-gallery .pic {
  background-size: cover; background-position: center;
  border-radius: 8px;
  aspect-ratio: 1/1;
  transition: transform .3s, filter .3s;
  cursor: zoom-in;
}
.h2-gallery .pic:hover { transform: scale(1.03); filter: brightness(1.06); }
.h2-gallery .pic.wide  { grid-column: span 2; }
.h2-gallery .pic.tall  { grid-row: span 2; aspect-ratio: 1/2; }
.h2-gallery .pic.big   { grid-column: span 2; grid-row: span 2; aspect-ratio: 1/1; }

/* ── レビュー ── */
.h2-reviews-bg { background: linear-gradient(180deg, var(--mp-surface2) 0%, #fff 100%); padding: 90px 0; }
.h2-review-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.h2-review {
  background: #fff; border: 1px solid var(--mp-border);
  border-radius: var(--mp-radius); padding: 24px;
  box-shadow: var(--mp-shadow);
  transition: transform .3s, box-shadow .3s;
  display: flex; flex-direction: column;
}
.h2-review:hover { transform: translateY(-4px); box-shadow: var(--mp-shadow-lg); }
.h2-review .stars { color: #fbbf24; font-size: 16px; letter-spacing: 2px; margin-bottom: 8px; }
.h2-review .body { font-size: 13.5px; color: var(--mp-text); line-height: 1.85; flex: 1; margin: 0 0 16px; }
.h2-review .who { font-size: 12px; color: var(--mp-text-sub); display: flex; align-items: center; gap: 8px; padding-top: 12px; border-top: 1px dashed var(--mp-border); }
.h2-review .who .avatar { width: 32px; height: 32px; border-radius: 50%;
  background: linear-gradient(135deg, var(--mp-navy), var(--mp-teal-dark));
  color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 13px; }

/* ── 最終CTA ── */
.h2-cta-bg {
  background:
    linear-gradient(135deg, rgba(31,58,92,.92), rgba(74,181,168,.85)),
    url('https://images.unsplash.com/photo-1542051841857-5f90071e7989?auto=format&fit=crop&w=1600&q=75') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 96px 20px;
}
.h2-cta-bg h2 { color: #fff; font-size: 32px; font-weight: 900; margin: 0 0 12px; letter-spacing: .04em; }
.h2-cta-bg p { color: rgba(255,255,255,.9); font-size: 15px; max-width: 540px; margin: 0 auto 28px; line-height: 1.85; }
.h2-cta-bg .mp-btn { padding: 16px 36px; font-size: 16px; }

/* ── SVG セクション区切り ── */
.h2-divider { display: block; width: 100%; height: 80px; }
.h2-divider svg { display: block; width: 100%; height: 100%; }
.h2-divider.flip svg { transform: scaleY(-1); }

/* ── ナンバー付き巨大コンセプトカード ── */
.h2-concept-card .num-tag {
  display: inline-block; font-size: 11px; font-weight: 900; letter-spacing: .15em;
  color: var(--mp-gold); margin-bottom: 10px; text-transform: uppercase;
}
.h2-concept-card { position: relative; overflow: hidden; }
.h2-concept-card::after {
  content: attr(data-num);
  position: absolute; top: -22px; right: -10px;
  font-size: 130px; font-weight: 900; color: rgba(31,58,92,.05);
  line-height: 1; pointer-events: none;
}

/* ── ROOMS: 大型ファーストカード(Featured) ── */
.h2-rooms-grid > .h2-room-card.featured {
  grid-column: span 2;
}
.h2-rooms-grid > .h2-room-card.featured .h2-room-img-wrap { aspect-ratio: 16/9; }
.h2-rooms-grid > .h2-room-card.featured .h2-room-body { padding: 28px 32px 32px; }
.h2-rooms-grid > .h2-room-card.featured h3 { font-size: 22px; }
.h2-rooms-grid > .h2-room-card.featured .desc { -webkit-line-clamp: 4; }
.h2-rooms-grid > .h2-room-card.featured .h2-room-tag { font-size: 13px; padding: 7px 16px; }

/* ── ROOMS: 交互全幅レイアウト ── */
.h2-room-strip { padding: 60px 0; background: linear-gradient(180deg, var(--mp-surface2) 0%, #fff 100%); }
.h2-room-strip + .h2-room-strip { background: linear-gradient(180deg, #fff 0%, var(--mp-surface2) 100%); }
.h2-room-strip-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 20px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
}
.h2-room-strip.reverse .h2-room-strip-inner { direction: rtl; }
.h2-room-strip.reverse .h2-room-strip-inner > * { direction: ltr; }
.h2-room-strip-img {
  aspect-ratio: 4/3; border-radius: var(--mp-radius); overflow: hidden;
  background-size: cover; background-position: center;
  box-shadow: 0 24px 60px rgba(0,0,0,.18);
  transition: transform .6s, box-shadow .6s;
}
.h2-room-strip-img:hover { transform: scale(1.02); box-shadow: 0 30px 80px rgba(0,0,0,.25); }
.h2-room-strip-text .badge {
  display: inline-block; padding: 5px 14px; border-radius: 999px;
  background: var(--mp-navy-soft); color: var(--mp-navy);
  font-size: 11.5px; font-weight: 800; margin-bottom: 14px;
}
.h2-room-strip-text h3 { font-size: 28px; font-weight: 900; color: var(--mp-navy); margin: 0 0 12px; line-height: 1.4; }
.h2-room-strip-text p { font-size: 14.5px; color: var(--mp-text-sub); line-height: 1.95; margin: 0 0 18px; }
.h2-room-strip-text .meta-line { display: flex; gap: 18px; margin-bottom: 18px; flex-wrap: wrap; font-size: 13px; color: var(--mp-text-sub); }
.h2-room-strip-text .meta-line strong { color: var(--mp-navy); font-weight: 900; }
.h2-room-strip-text .price-big {
  font-size: 32px; font-weight: 900; color: var(--mp-navy);
  display: inline-flex; align-items: baseline; gap: 6px; margin-bottom: 18px;
}
.h2-room-strip-text .price-big small { font-size: 13px; color: var(--mp-text-sub); font-weight: 600; }

/* ── ライトボックス ── */
.h2-lb {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,.92); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  animation: lbIn .25s ease;
}
@keyframes lbIn { from { opacity: 0; } to { opacity: 1; } }
.h2-lb img {
  max-width: 92vw; max-height: 88vh; object-fit: contain;
  border-radius: 8px; box-shadow: 0 20px 80px rgba(0,0,0,.6);
  animation: lbZoom .35s cubic-bezier(.18,.89,.32,1.28);
}
@keyframes lbZoom { from { transform: scale(.85); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.h2-lb-close, .h2-lb-prev, .h2-lb-next {
  position: absolute; background: rgba(255,255,255,.12); color: #fff;
  border: 1.5px solid rgba(255,255,255,.3); cursor: pointer;
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 700; transition: background .15s, transform .15s;
  font-family: inherit;
}
.h2-lb-close:hover, .h2-lb-prev:hover, .h2-lb-next:hover { background: rgba(255,255,255,.25); transform: scale(1.1); }
.h2-lb-close { top: 24px; right: 24px; }
.h2-lb-prev  { left: 24px; top: 50%; transform: translateY(-50%); }
.h2-lb-next  { right: 24px; top: 50%; transform: translateY(-50%); }
.h2-lb-prev:hover, .h2-lb-next:hover { transform: translateY(-50%) scale(1.1); }
.h2-lb-counter {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  background: rgba(0,0,0,.45); color: #fff; padding: 7px 18px; border-radius: 999px;
  font-size: 12px; font-weight: 700; letter-spacing: .1em;
}

/* ── レスポンシブ(v2) ── */
@media (max-width: 768px) {
  .h2-hero { min-height: 90vh; }
  .h2-hero h1 { font-size: 36px; }
  .h2-hero p { font-size: 14px; }
  .h2-rooms-grid > .h2-room-card.featured { grid-column: span 1; }
  .h2-rooms-grid > .h2-room-card.featured .h2-room-body { padding: 18px 20px 22px; }
  .h2-rooms-grid > .h2-room-card.featured h3 { font-size: 17px; }
  .h2-room-strip-inner { grid-template-columns: 1fr; gap: 24px; }
  .h2-room-strip.reverse .h2-room-strip-inner { direction: ltr; }
  .h2-room-strip-text h3 { font-size: 22px; }
  .h2-room-strip-text .price-big { font-size: 26px; }
  .h2-divider { height: 50px; }
  .h2-lb-prev, .h2-lb-next { width: 44px; height: 44px; }
  .h2-hero-cta .mp-btn { padding: 12px 22px; font-size: 13.5px; }
  .h2-stats-bar-inner { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .h2-stat .num { font-size: 32px; }
  .h2-section { padding: 56px 18px; }
  .h2-section h2 { font-size: 24px; }
  .h2-loc-inner { grid-template-columns: 1fr; gap: 28px; }
  .h2-loc-bg { padding: 56px 18px; }
  .h2-gallery { grid-template-columns: repeat(2, 1fr); }
  .h2-gallery .pic.tall { grid-row: span 1; aspect-ratio: 1/1; }
  .h2-cta-bg { padding: 72px 18px; }
  .h2-cta-bg h2 { font-size: 24px; }
}

/* ── レスポンシブ ── */
@media (max-width: 768px) {
  .mp-burger {
    display: inline-flex; align-items: center; justify-content: center;
    width: 38px; height: 38px; border-radius: 8px;
    border: 1.5px solid var(--mp-border); background: #fff;
    font-size: 18px; color: var(--mp-text); cursor: pointer; margin-left: auto;
  }
  .mp-nav {
    display: none; position: absolute; top: 100%; right: 12px; left: 12px;
    background: #fff; border: 1px solid var(--mp-border);
    border-radius: var(--mp-radius); padding: 12px;
    flex-direction: column; align-items: stretch; gap: 4px;
    box-shadow: var(--mp-shadow-lg); margin: 8px 0 0;
  }
  .mp-nav.open { display: flex; }
  .mp-nav a { width: 100%; }

  .mp-hero { padding: 56px 20px 64px; }
  .mp-hero h1 { font-size: 26px; }
  .mp-hero p { font-size: 14px; }

  .mp-section { padding: 40px 18px; }
  .mp-section h2 { font-size: 21px; }

  .mp-footer-cols { grid-template-columns: 1fr; gap: 18px; }
}
