/* ===== Self-hosted fonts (Google Fonts からローカル配置へ変更) ===== */
@font-face{
  font-family:'Shippori Mincho';
  font-style:normal;
  font-weight:400;
  font-display:swap;
  src:url('../fonts/ShipporiMincho-Regular.woff2') format('woff2');
}
@font-face{
  font-family:'Noto Sans JP';
  font-style:normal;
  font-weight:100 900;
  font-display:swap;
  src:url('../fonts/NotoSansJP-Variable.woff2') format('woff2-variations');
}
@font-face{
  font-family:'Great Vibes';
  font-style:normal;
  font-weight:400;
  font-display:swap;
  src:url('../fonts/GreatVibes-Regular.woff2') format('woff2');
}

:root {
  --hydrangea-deep:  #4A3B6E;
  --hydrangea-mid:   #7B6BA0;
  --hydrangea-light: #C3B4DC;
  --hydrangea-pale:  #EDE8F5;
  --rain-blue:       #5B8CB5;
  --rain-mist:       #D6E6F2;
  --moss-green:      #4A6741;
  --cream:           #FAF8F3;
  --warm-white:      #FDFCFA;
  --spice-bg:        #F7F0EB;
  --spice-red:       #9B3A2A;
  --text-dark:       #2C2835;
  --text-mid:        #5C5569;
  --text-light:      #9990AA;
  --gold:            #B8963E;

  --font-serif: 'Shippori Mincho', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
  --font-sans:  'Noto Sans JP', 'Hiragino Sans', 'Yu Gothic', sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: clip; }

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

img { display: block; max-width: 100%; height: auto; }

a { color: inherit; }

:focus-visible {
  outline: 2px solid var(--hydrangea-mid);
  outline-offset: 3px;
}
:focus:not(:focus-visible) { outline: none; }

.hero,
.rain-line,
.hero-circle,
.fade-in,
.scroll-line {
  will-change: transform, opacity;
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* 日本語テキストの改行バランス改善（1文字落ち・語中での不自然な改行を防止） */
h1, h2, h3, h4,
.hero-title, .section-tag,
[id$="-title"] {
  text-wrap: balance;
  word-break: auto-phrase;
  line-break: strict;
}
p, dd, li,
.hero-subtitle, .sec-body, .ws-desc {
  text-wrap: pretty;
  word-break: auto-phrase;
  line-break: strict;
}

@media (min-width: 769px) {
.sp{display: none}
}


.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 0 48px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  background: rgba(43, 32, 64, 0.86);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.14);

  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

/* ヘッダー左上のロゴ帯（白抜きロゴが見えるよう背景を暗色に） */
.header-logos {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.header-logo-sphr {
  height: 56px;
  width: auto;
  max-height: 56px;
  max-width: 80px;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
}
.header-logo-pgr {
  height: 25px;
  width: auto;
  max-height: 25px;
  max-width: 240px;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
}
.header-logo-divider {
  width: 1px;
  height: 44px;
  background: rgba(255, 255, 255, 0.32);
}
/* ナビゲーションを右揃え */
.header-nav-wrap {
  margin-left: auto;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.header-logo-img {
  height: 28px;
  width: auto;
}

.header-logo-text {
  font-family: var(--font-serif);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--hydrangea-deep);
  line-height: 1.55;
  border-left: 0.5px solid rgba(74,59,110,0.25);
  padding-left: 14px;
}
.header-logo-text small {
  display: block;
  font-family: var(--font-sans);
  font-size: 10px;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

.header-nav {
  display: flex;
  gap: 28px;
  list-style: none;
}
.header-nav a {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
}
.header-nav li { white-space: nowrap; }
.header-nav a:hover { color: #fff; }

/* 横幅が足りない環境ではハンバーガーメニューへ切替（ナビ折返し防止） */
@media (max-width: 1024px) {
  .header-nav-wrap, .header-cta { display: none; }
  .site-header .header-menu-btn { display: flex; margin-left: auto; }
  .site-header { height: 80px; }
  .header-logo-sphr { height: 48px; max-height: 48px; }
  .header-logo-pgr  { height: 22px; max-height: 22px; }
  .header-logo-divider { height: 38px; }
  .mobile-nav-overlay { top: 80px; }
}

.header-cta {
  background: var(--hydrangea-deep);
  color: #fff;
  padding: 9px 22px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.35);
  transition: background 0.2s, border-color 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.header-cta:hover { background: var(--hydrangea-mid); border-color: rgba(255, 255, 255, 0.6); }

.hero {
  min-height: 100vh;

  min-height: -webkit-fill-available;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  padding: 0 48px 80px;
  background: linear-gradient(
    160deg,
    #2B2040 0%, #3D3060 35%,
    #5B4A7A 60%, #7B6BA0 80%,
    #C3B4DC 100%
  );
  padding-top: 64px;
}

.hero-rain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.rain-line {
  position: absolute;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(180, 200, 230, 0.28),
    transparent
  );
  animation: rain-fall linear infinite;
}

@keyframes rain-fall {
  0%   { transform: translate3d(0, -100vh, 0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.6; }
  100% { transform: translate3d(20px, 100vh, 0); opacity: 0; }
}

.hero-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(195, 180, 220, 0.18);
  animation: pulse-circle 8s ease-in-out infinite;
}
@keyframes pulse-circle {
  0%, 100% { transform: scale3d(1, 1, 1);    opacity: 0.4; }
  50%       { transform: scale3d(1.05, 1.05, 1); opacity: 0.7; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--hydrangea-light);
  margin-bottom: 28px;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.4;
  color: #fff;
  margin-bottom: 24px;
}
.hero-title em {
  font-style: normal;
  color: var(--hydrangea-light);
}

.hero-subtitle {
  font-size: 15px;
  line-height: 2;
  color: rgba(255,255,255,0.72);
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-meta {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-meta-item {
  border-left: 1px solid rgba(195,180,220,0.5);
  padding-left: 16px;
}
.hero-meta-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--hydrangea-light);
  margin-bottom: 4px;
}
.hero-meta-value {
  font-family: var(--font-serif);
  font-size: 14px;
  color: #fff;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  background: #fff;
  color: var(--hydrangea-deep);
  padding: 13px 34px;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-decoration: none;
  font-family: var(--font-sans);
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--hydrangea-pale); }

.btn-outline {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.5);
  color: #fff;
  padding: 13px 34px;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-decoration: none;
  font-family: var(--font-sans);
  transition: background 0.2s;
}
.btn-outline:hover { background: rgba(255,255,255,0.1); }

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  right: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 10px;
  letter-spacing: 0.2em;
  pointer-events: none;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scroll-anim 2s ease-in-out infinite;
}
@keyframes scroll-anim {
  0%   { transform: scaleY(0); transform-origin: top; }
  49%  { transform: scaleY(1); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

.intro-band {
  background: var(--hydrangea-pale);
  padding: 80px 48px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 80px;
  align-items: start;
}

.intro-label {
  font-family: var(--font-serif);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--hydrangea-mid);
  writing-mode: vertical-rl;
  margin-top: 8px;
}

.intro-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 400;
  line-height: 1.8;
  color: var(--hydrangea-deep);
  margin-bottom: 28px;
}
.intro-text p {
  font-size: 14px;
  line-height: 2.2;
  color: var(--text-mid);
  margin-bottom: 16px;
}

.intro-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 0.5px solid rgba(74,59,110,0.2);
}
.stat-num {
  font-family: var(--font-serif);
  font-size: 36px;
  color: var(--hydrangea-deep);
  display: block;
}
.stat-unit { font-size: 14px; color: var(--hydrangea-mid); margin-left: 4px; }
.stat-desc { font-size: 11px; color: var(--text-light); margin-top: 6px; letter-spacing: 0.05em; }

.section { padding: 100px 48px; }

.section-tag {
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--hydrangea-mid);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-dark);
}
.section-subtitle {
  font-size: 14px;
  line-height: 2;
  color: var(--text-mid);
  margin-top: 16px;
  max-width: 600px;
}

.bg-white  { background: var(--warm-white); }
.bg-cream  { background: var(--cream); }
.bg-pale   { background: var(--hydrangea-pale); }
.bg-spice  { background: var(--spice-bg); }
.bg-rain   { background: var(--rain-mist); }
.bg-green  { background: var(--moss-green); }
.bg-deep   { background: var(--hydrangea-deep); }
.bg-dark   { background: #2A2035; }

.feature-layout,
.feature-layout-rev {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.feature-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.feature-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-badge {
  position: absolute;
  top: 24px;
  right: -16px;
  background: var(--hydrangea-deep);
  color: #fff;
  padding: 12px 20px;
  font-size: 11px;
  letter-spacing: 0.15em;
  writing-mode: vertical-rl;
}

.feature-info h3 {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 400;
  line-height: 1.7;
  color: var(--hydrangea-deep);
  margin-bottom: 20px;
}
.feature-info p {
  font-size: 14px;
  line-height: 2.2;
  color: var(--text-mid);
  margin-bottom: 16px;
}

.feature-detail {
  background: var(--hydrangea-pale);
  padding: 24px;
  margin-top: 24px;
}
.detail-row {
  display: flex;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 0.5px solid rgba(74,59,110,0.12);
  font-size: 13px;
}
.detail-row:last-child { border-bottom: none; }
.detail-label {
  color: var(--hydrangea-mid);
  min-width: 64px;
  font-weight: 500;
  flex-shrink: 0;
}
.detail-value { color: var(--text-dark); line-height: 1.8; }

.sustainable-tag {
  display: inline-block;
  background: var(--moss-green);
  color: #fff;
  font-size: 10px;
  padding: 3px 8px;
  letter-spacing: 0.1em;
  margin-left: 8px;
  vertical-align: middle;
}

.sub-photo { margin-top: 20px; overflow: hidden; max-height: 210px; }
.sub-photo img { width: 100%; object-fit: cover; object-position: center 30%; }

.lunch-highlight {
  background: #fff;
  border-left: 3px solid var(--spice-red);
  padding: 26px 30px;
  margin-top: 28px;
}
.lunch-highlight h4 {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 400;
  color: var(--spice-red);
  margin-bottom: 10px;
}
.lunch-highlight p { font-size: 13px; line-height: 2; color: var(--text-mid); }
.price-tag-main {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--spice-red);
  margin-top: 8px;
}

.rain-pass-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.rain-pass-inner h2 {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 400;
  line-height: 1.7;
  color: var(--rain-blue);
  margin-bottom: 20px;
}
.rain-pass-inner p {
  font-size: 14px;
  line-height: 2.2;
  color: var(--text-mid);
  margin-bottom: 14px;
}

.price-table { background: #fff; padding: 26px; margin-top: 22px; }
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 0.5px solid rgba(91,140,181,0.15);
  font-size: 14px;
  gap: 12px;
}
.price-row:last-child { border-bottom: none; }
.price-type  { color: var(--text-mid); }
.price-amount { font-family: var(--font-serif); font-size: 20px; color: var(--rain-blue); white-space: nowrap; }
.price-tax   { font-size: 11px; color: var(--text-light); margin-left: 4px; }

.rain-visual { aspect-ratio: 4/3; overflow: hidden; }
.rain-visual img { width: 100%; height: 100%; object-fit: cover; }

.workshop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.ws-card {
  background: #fff;
  border: 0.5px solid rgba(74,59,110,0.15);
  padding: 32px 24px;
  text-align: center;
}
.ws-icon  { font-size: 32px; margin-bottom: 14px; display: block; }
.ws-title { font-family: var(--font-serif); font-size: 16px; color: var(--hydrangea-deep); margin-bottom: 10px; font-weight: 400; }
.ws-desc  { font-size: 12px; color: var(--text-mid); line-height: 1.9; }

.ws-detail { background: var(--hydrangea-pale); padding: 24px; margin-top: 36px; }

.sustain-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 80px;
  align-items: center;
}
.sustain-label {
  font-family: var(--font-serif);
  font-size: 13px;
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
  color: rgba(255,255,255,0.55);
}
.sustain-text h2 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #fff;
}
.sustain-text p { font-size: 14px; line-height: 2.2; color: rgba(255,255,255,0.75); }

.sustain-pills { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.sustain-pill {
  border: 0.5px solid rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.85);
  font-size: 11px;
  padding: 8px 18px;
  letter-spacing: 0.1em;
}

.spa-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.spa-visual { aspect-ratio: 3/4; overflow: hidden; }
.spa-visual img { width: 100%; height: 100%; object-fit: cover; }

.spa-section h2 {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.5vw, 36px);
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 24px;
  color: #fff;
}
.spa-section p { font-size: 14px; line-height: 2.2; color: rgba(255,255,255,0.65); margin-bottom: 14px; }

.herb-tags { display: flex; gap: 8px; flex-wrap: wrap; margin: 24px 0; }
.herb-tag {
  border: 0.5px solid rgba(195,180,220,0.4);
  color: var(--hydrangea-light);
  font-size: 11px;
  padding: 6px 14px;
  letter-spacing: 0.1em;
}

.spa-detail { background: rgba(255,255,255,0.05); padding: 24px; margin-top: 24px; border-left: 2px solid var(--hydrangea-mid); }
.spa-detail-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 13px;
  border-bottom: 0.5px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
  gap: 6px;
}
.spa-detail-row:last-child { border-bottom: none; }
.spa-detail-label { color: rgba(255,255,255,0.5); flex-shrink: 0; }
.spa-detail-val   { color: rgba(255,255,255,0.85); text-align: right; }

.cta-section {
  padding: 100px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  border: 0.5px solid rgba(195,180,220,0.12);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute;
  width: 900px; height: 900px;
  border-radius: 50%;
  border: 0.5px solid rgba(195,180,220,0.07);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-content { position: relative; z-index: 2; }
.cta-section h2 {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 44px);
  font-weight: 400;
  line-height: 1.7;
  color: #fff;
  margin-bottom: 16px;
}
.cta-section > .cta-content > p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 2;
  margin-bottom: 48px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-period  { margin-top: 40px; font-size: 12px; color: rgba(255,255,255,0.4); letter-spacing: 0.15em; }

footer {
  background: var(--text-dark);
  padding: 60px 48px 40px;
  color: rgba(255,255,255,0.5);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 0.5px solid rgba(255,255,255,0.08);
}

.footer-brand {}
.footer-brand-logo { height: 24px; width: auto; margin-bottom: 16px; opacity: 0.7; }
.footer-brand-name {
  font-family: var(--font-serif);
  font-size: 13px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
}
.footer-brand-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  margin-top: 4px;
}

.footer-nav-title {
  font-size: 10px;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-nav-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-nav-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.footer-nav-links a:hover { color: rgba(255,255,255,0.85); }

.footer-social {}
.footer-social-title {
  font-size: 10px;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-sns-links { display: flex; gap: 14px; flex-wrap: wrap; }
.footer-sns-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
  padding: 8px 0;
}
.footer-sns-link:hover { color: rgba(255,255,255,0.9); }
.footer-sns-icon {
  width: 20px; height: 20px;
  fill: currentColor;
  flex-shrink: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: rgba(255,255,255,0.28);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-notes { font-size: 11px; color: rgba(255,255,255,0.35); line-height: 1.9; margin-bottom: 24px; }

.fade-in {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  padding: 10px 20px;
  background: var(--hydrangea-deep);
  color: #fff;
  font-size: 13px;
  text-decoration: none;
  z-index: 1000;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

@media (max-width: 1024px) {
  .site-header    { padding: 0 32px; }
  .header-nav     { gap: 20px; }
  .hero           { padding: 64px 32px 64px; }
  .intro-band     { padding: 64px 32px; gap: 48px; }
  .section        { padding: 80px 32px; }
  .feature-layout,
  .feature-layout-rev { gap: 48px; }
  .spa-section    { gap: 64px; }
  .rain-pass-inner { gap: 48px; }
  .footer-top     { padding: 48px 32px 40px; }
  footer          { padding: 48px 32px 32px; }
}

@media (max-width: 768px) {

  .site-header    { padding: 0 20px; height: 68px; }
  .header-nav     { display: none; }
  .header-logo-text { display: none; }
  .header-logos   { gap: 12px; }
  .header-logo-sphr { height: 42px; max-height: 42px; }
  .header-logo-pgr  { height: 19px; max-height: 19px; }
  .header-logo-divider { height: 32px; }
  .mobile-nav-overlay { top: 68px; }


  .hero {
    min-height: 100svh;
    min-height: -webkit-fill-available;
    padding: 56px 24px 56px;
    align-items: flex-end;
  }


  .intro-band {
    grid-template-columns: 1fr;
    padding: 56px 24px;
    gap: 24px;
  }
  .intro-label { writing-mode: horizontal-tb; }
  .intro-stats { gap: 28px; }


  .section { padding: 60px 24px; }


  .feature-layout,
  .feature-layout-rev { grid-template-columns: 1fr; gap: 36px; }


  .feature-layout-rev .feature-info { order: 1; }
  .feature-layout-rev .feature-visual { order: 0; }


  .rain-pass-inner { grid-template-columns: 1fr; gap: 36px; }


  .workshop-grid { grid-template-columns: 1fr; gap: 16px; }


  .spa-section { grid-template-columns: 1fr; gap: 40px; }


  .sustain-inner { grid-template-columns: 1fr; gap: 24px; }
  .sustain-label { writing-mode: horizontal-tb; }


  .cta-section { padding: 64px 24px; }


  footer { padding: 48px 24px 32px; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }


  .scroll-indicator { right: 24px; }
}

@media (max-width: 400px) {
    .hero-buttons { flex-direction: column; }
  .btn-primary, .btn-outline { text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  .rain-line, .hero-circle, .scroll-line { animation: none; }
  .fade-in { opacity: 1; transform: none; transition: none; }
}

body                  { font-size: 24px; }
.hero-eyebrow         { font-size: 16.5px; }
.hero-subtitle        { font-size: 22.5px; }
.hero-meta-label      { font-size: 15px; }
.hero-meta-value      { font-size: 21px; }
.btn-primary,
.btn-outline          { font-size: 19.5px; padding: calc(13px * 1.2) calc(34px * 1.2); }
.intro-text h2        { font-size: clamp(33px, 3.5vw, 60px); }
.intro-text p         { font-size: 21px; }
.stat-num             { font-size: 60px; }
.stat-unit            { font-size: 24px; }
.stat-desc            { font-size: 18px; }
.section-tag          { font-size: 15px; }
.section-title        { font-size: clamp(36px, 4vw, 72px); }
.section-subtitle     { font-size: 21px; }
.feature-info h2,
.feature-info h3      { font-size: clamp(30px, 2.5vw, 48px); }
.feature-info p       { font-size: 21px; }
.detail-row           { font-size: 19.5px; }
.detail-label         { font-size: 19.5px; }
.lunch-highlight h3,
.lunch-highlight h4   { font-size: 27px; }
.lunch-highlight p    { font-size: 19.5px; }
.price-tag-main       { font-size: 36px; }
.price-row            { font-size: 21px; }
.price-amount         { font-size: 33px; }
.ws-title             { font-size: 25.5px; }
.ws-desc              { font-size: 19.5px; }
.rain-pass-inner h2   { font-size: clamp(33px, 3.5vw, 60px); }
.rain-pass-inner p    { font-size: 21px; }
.sustain-text h2      { font-size: 42px; }
.sustain-text p       { font-size: 21px; }
.sustain-pill         { font-size: 18px; }
.spa-section h2       { font-size: clamp(33px, 3.5vw, 60px); }
.spa-section p        { font-size: 21px; }
.spa-detail-row       { font-size: 19.5px; }
.herb-tag             { font-size: 18px; }
.cta-section h2       { font-size: clamp(36px, 4vw, 75px); }
.cta-section p        { font-size: 21px; }
.footer-brand-name    { font-size: 21px; }
.footer-nav-links a   { font-size: 19.5px; }
.footer-sns-link      { font-size: 19.5px; }
.footer-bottom        { font-size: 18px; }
.footer-notes         { font-size: 18px; }
.header-nav a         { font-size: 18px; }
.header-cta           { font-size: 18px; }

.section-tag {
  font-family: 'Great Vibes', cursive !important;
  font-size: clamp(28px, 3.5vw, 48px) !important;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--hydrangea-mid);
  display: block;
  margin-bottom: 10px;
  line-height: 1.2;
}
.bg-dark .section-tag,
.bg-deep .section-tag { color: var(--hydrangea-light) !important; }
.bg-rain .section-tag { color: var(--rain-blue) !important; }

.hero {
  background: none;
  position: relative;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/hero-01.jpg');
  background-size: cover;
  background-position: center 40%;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg,
    rgba(30,20,55,0.82) 0%,
    rgba(50,35,85,0.70) 40%,
    rgba(80,60,110,0.50) 70%,
    rgba(120,90,150,0.30) 100%
  );
}

.hero-logos {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 40px;
}
.hero-logo-sphr {
  height: 80px;
  width: auto;
  filter: brightness(0) invert(1);
}
.hero-logo-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.3);
}
.hero-logo-pgr {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
}

.ws-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.ws-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.ws-card-body {
  padding: 28px 24px 32px;
  flex: 1;
}

.teru-visual-wrap {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
}
.teru-visual-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.activity-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.activity-list li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 0.5px solid rgba(91,140,181,0.15);
  font-size: 19.5px;
  color: var(--text-mid);
  line-height: 1.6;
}
.activity-list li:last-child { border-bottom: none; }
.activity-list li::before {
  content: '—';
  color: var(--rain-blue);
  flex-shrink: 0;
  font-size: 0.8em;
}

.footer-logo-sphr {
  height: 80px;
  width: auto;
  opacity: 0.85;
  margin-bottom: 20px;
}

@media(max-width:768px) {
  body { font-size: 21px; }
  .hero-logo-sphr { height: 56px; }
  .hero-logo-pgr  { height: 24px; }
  .section-tag    { font-size: clamp(22px, 5vw, 36px) !important; }
}


.hero-meta-bubbles {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-meta-bubble {
  background: rgba(123, 107, 160, 0.45);
  border: 1px solid rgba(195, 180, 220, 0.4);
  border-radius: 50%;
  width: 160px;
  height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.hero-meta-bubble .hero-meta-label {
  font-size: 15px;
  letter-spacing: 0.15em;
  color: var(--hydrangea-light);
  margin-bottom: 8px;
  line-height: 1.4;
}
.hero-meta-bubble .hero-meta-value {
  font-family: var(--font-serif);
  font-size: 19.5px;
  color: #fff;
  line-height: 1.4;
}
.hero-meta-bubble .hero-meta-value small {
  display: block;
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  margin-top: 4px;
  letter-spacing: 0;
}

.sustain-pills { list-style: none; }
.sustain-pill::before,
.herb-tag::before { content: none; }

.spa-detail-row { flex-direction: column; }
.spa-detail-val { text-align: left; }

.footer-bottom { color: #fff; }
.footer-bottom span { color: #fff; }
.copy-break { display: none; }

.header-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 300;
}
.header-menu-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.header-menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header-menu-btn.open span:nth-child(2) { opacity: 0; }
.header-menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 56px; left: 0; right: 0; bottom: 0;
  background: rgba(250,248,243,0.97);
  z-index: 199;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.mobile-nav-overlay.open { display: flex; }
.mobile-nav-overlay a {
  display: block;
  width: 100%;
  text-align: center;
  padding: 20px 24px;
  font-size: 24px;
  letter-spacing: 0.08em;
  color: var(--hydrangea-deep);
  text-decoration: none;
  border-bottom: 0.5px solid rgba(74,59,110,0.1);
  font-family: var(--font-sans);
}
.mobile-nav-overlay a:last-child { border-bottom: none; }

@media (max-width: 768px) {
  .header-nav { display: none; }
  .header-cta  { display: none; }
  .header-menu-btn { display: flex; }
  .copy-break { display: block; }
  .hero-meta-bubble {
    width: 130px;
    height: 130px;
  }
}

.hero {
  min-height: 91vh !important;
  min-height: min(91vh, 91svh) !important;
}

.hero-title {
  white-space: nowrap;
  font-size: clamp(20px, 3.2vw, 56px) !important;
}
.hero-title em { font-style: normal; color: var(--hydrangea-light); }
.hero-subtitle {
  white-space: nowrap;
  font-size: clamp(10px, 1.4vw, 22px) !important;
  max-width: none !important;
}

@media (max-width: 900px) {
  .hero-title    { white-space: normal !important; font-size: clamp(22px, 5vw, 42px) !important; }
  .hero-subtitle { white-space: normal !important; font-size: clamp(11px, 3.5vw, 18px) !important; }
}

.hero-meta-bubbles { gap: 16px; margin-bottom: 32px; }
.hero-meta-bubble {
  width: 150px !important;
  height: 150px !important;
  padding: 12px !important;
}
.hero-meta-bubble .hero-meta-label {
  font-size: 11px !important;
  letter-spacing: 0.08em;
  line-height: 1.4;
  margin-bottom: 6px;
}
.hero-meta-bubble .hero-meta-value {
  font-size: 17px !important;
  line-height: 1.3;
}
.hero-meta-bubble .hero-meta-value small {
  font-size: 11px !important;
  margin-top: 4px;
}
@media (max-width: 768px) {
  .hero-meta-bubble { width: 120px !important; height: 120px !important; }
  .hero-meta-bubble .hero-meta-label { font-size: 10px !important; }
  .hero-meta-bubble .hero-meta-value { font-size: 14px !important; }
  .hero-meta-bubble .hero-meta-value small { font-size: 9px !important; }
}

@media (min-width: 769px) {
  .rain-pass-inner h2 { white-space: nowrap; font-size: clamp(18px, 2.2vw, 34px) !important; }
}

@media (min-width: 769px) {
  #workshop .section-subtitle { white-space: nowrap; }
}

.herb-tags { list-style: none !important; padding: 0 !important; }
.herb-tags li::before { content: none !important; }
.herb-tag::before { content: none !important; }
ul.herb-tags { list-style: none !important; }

.footer-bottom { justify-content: center !important; text-align: center; }

.hotel-cta-section {
  padding: 80px 48px;
  background: var(--warm-white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hotel-cta-visual {
  overflow: hidden;
  aspect-ratio: 3/2;
}
.hotel-cta-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.hotel-cta-visual:hover img { transform: scale(1.03); }
.hotel-cta-content {}
.hotel-cta-eyebrow {
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--hydrangea-mid);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}
.hotel-cta-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 2.5vw, 42px);
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-dark);
  margin-bottom: 20px;
}
.hotel-cta-desc {
  font-size: 21px;
  line-height: 2.2;
  color: var(--text-mid);
  margin-bottom: 36px;
}
.btn-hotel {
  display: inline-block;
  background: var(--hydrangea-deep);
  color: #fff;
  padding: 16px 40px;
  font-size: 19.5px;
  letter-spacing: 0.1em;
  text-decoration: none;
  font-family: var(--font-sans);
  transition: background 0.2s;
}
.btn-hotel:hover { background: var(--hydrangea-mid); }
@media (max-width: 768px) {
  .hotel-cta-section {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 60px 24px;
  }
}

.footer-notes{font-size:13px!important;line-height:1.9;color:rgba(255,255,255,0.85)!important;}

.hotel-cta-content{text-align:center;}
.hotel-cta-desc{text-align:left;}

.footer-bottom{justify-content:center!important;text-align:center;width:100%;}
.footer-bottom span{display:block;width:100%;text-align:center;color:#fff;}

.hero-slider { position:absolute; inset:0; overflow:hidden; }
.hero-slide {
  position:absolute; inset:0;
  background-size:cover; background-position:center 40%;
  opacity:0; transition:opacity 1s ease;
}
.hero-slide::after {
  content:''; position:absolute; inset:0;
  background:linear-gradient(160deg,rgba(30,20,55,.82) 0%,rgba(50,35,85,.70) 40%,rgba(80,60,110,.50) 70%,rgba(120,90,150,.30) 100%);
}
.hero-slide.active { opacity:1; }

.hero-dots {
  position:absolute; bottom:24px; left:50%; transform:translateX(-50%);
  display:flex; gap:10px; z-index:10;
}
.hero-dot {
  width:8px; height:8px; border-radius:50%;
  border:1.5px solid rgba(255,255,255,.6);
  background:transparent; cursor:pointer;
  transition:background .3s;
}
.hero-dot.active { background:rgba(255,255,255,.9); }

.hero-arrow {
  position:absolute; top:50%; transform:translateY(-50%);
  z-index:10; background:rgba(255,255,255,.15);
  border:none; color:#fff; width:44px; height:44px;
  border-radius:50%; cursor:pointer; font-size:20px;
  display:flex; align-items:center; justify-content:center;
  transition:background .2s;
}
.hero-arrow:hover { background:rgba(255,255,255,.3); }
.hero-arrow.prev { left:20px; }
.hero-arrow.next { right:20px; }

.hero-meta-bubble {
  width:170px!important; height:170px!important;
  padding:14px!important;
}
.hero-meta-bubble .hero-meta-label {
  font-size:13px!important; font-weight:400;
}
.hero-meta-bubble .hero-meta-value {
  font-size:22px!important; font-weight:500;
}
.hero-meta-bubble .hero-meta-value small {
  font-size:12px!important;
}
@media(max-width:768px){
  .hero-meta-bubble{width:130px!important;height:130px!important;}
  .hero-meta-bubble .hero-meta-label{font-size:10px!important;}
  .hero-meta-bubble .hero-meta-value{font-size:16px!important;}
  .hero-meta-bubble .hero-meta-value small{font-size:9px!important;}
}

.img-slider { position:relative; overflow:hidden; }
.img-slider-track { display:flex; transition:transform .5s ease; }
.img-slider-track img { min-width:100%; object-fit:cover; }
.img-slider-dots {
  position:absolute; bottom:12px; left:50%; transform:translateX(-50%);
  display:flex; gap:8px;
}
.img-slider-dot {
  width:7px; height:7px; border-radius:50%;
  background:rgba(255,255,255,.5); cursor:pointer;
  transition:background .3s; border:none;
}
.img-slider-dot.active { background:#fff; }

.rain-pass-inner { grid-template-columns:1fr 1.2fr!important; }
.rain-visual { aspect-ratio:unset!important; min-height:400px; }

.sub-photo { max-height:280px!important; }

.float-cta {
  position:fixed; bottom:28px; right:28px; z-index:500;
  background:var(--hydrangea-deep);
  color:#fff; padding:14px 24px;
  font-family:var(--font-sans);
  font-size:18px; letter-spacing:.08em;
  text-decoration:none; border-radius:2px;
  box-shadow:0 4px 20px rgba(74,59,110,.45);
  transition:background .2s, box-shadow .2s;
  display:flex; align-items:center;
  white-space:nowrap;
}
.float-cta:hover { background:var(--hydrangea-mid); box-shadow:0 6px 28px rgba(74,59,110,.55); }
.float-cta::before { content: none; display: none; }
@media(max-width:768px){
  .float-cta { bottom:16px; right:16px; padding:12px 18px; font-size:16.5px; }
}

.section-tag { font-family:'Great Vibes',cursive!important; }

@media (max-width: 768px) {
  .hero-slider .hero-slide:nth-child(2),
  .hero-slider .hero-slide:nth-child(4) {
    background-position: 80% 0;
  }
}

@media (max-width: 768px) {
  footer {
    padding-bottom: 88px !important;
  }
  .footer-bottom {
    padding-bottom: 8px;
  }
}

@media (max-width: 768px) {
  .hero {
    align-items: stretch !important;
    padding-top: 80px !important;
    padding-bottom: 60px !important;
    min-height: 100svh !important;
  }
  .hero-content {
    padding-top: 16px;
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  /* サブテキスト＋ボタンを下方へまとめて送る（中央の人物・顔に文字を重ねない） */
  .hero-subtitle { margin-top: auto; }
  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }
  .hero-buttons .btn-primary,
  .hero-buttons .btn-outline {
    display: block;
    text-align: center;
    width: 100%;
    padding: 16px 20px !important;
    font-size: calc(13px * 1.3) !important;
    box-sizing: border-box;
  }
  .hero-title {
    font-size: clamp(24px, 6vw, 40px) !important;
    white-space: normal !important;
    margin-bottom: 16px !important;
  }
  .hero-subtitle {
    font-size: clamp(12px, 3.5vw, 16px) !important;
    white-space: normal !important;
    margin-bottom: 28px !important;
  }
  .hero-logos {
    margin-bottom: 24px;
  }
  .hero-eyebrow {
    margin-bottom: 16px;
  }
}

.footer-brand-name,
.footer-brand-sub,
.footer-nav-title,
.footer-nav-links a,
.footer-sns-link,
.footer-bottom,
.footer-bottom span,
.footer-social-title { color: #fff !important; }
.footer-nav-links a:hover { color: rgba(255,255,255,0.7) !important; }
.footer-sns-link:hover  { color: rgba(255,255,255,0.7) !important; }

/* ── Copyright: no wrap on mobile ─────────────────── */
@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }
  .footer-bottom span {
    font-size: 10px !important;
    letter-spacing: 0.02em;
    display: block;
    text-align: center;
  }
  .copy-break { display: none !important; }
}
