@charset "UTF-8";
/* ── CSS Variables ───────────────────────────────── */
:root {
  --merle-dark: #085041;
  --merle-mid: #0F6E56;
  --merle-accent: #1D9E75;
  --merle-light: #9FE1CB;
  --merle-pale: #E1F5EE;
  --merle-beige: #F5F0E8;
  --merle-beige2: #EBE6DC;
  --merle-text: #3D3D3A;
  --merle-muted: #5F5E5A;
}

/* ── Reset & Base ────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: var(--merle-text);
  background: var(--merle-beige);
  line-height: 1.75;
  font-size: 16px;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

/* ── Typography ──────────────────────────────────── */
h1,
h2,
h3,
h4 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0.07em;
  line-height: 1.35;
}

/* ── Scroll Reveal ───────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

.reveal-delay-5 {
  transition-delay: 0.5s;
}

.reveal-delay-6 {
  transition-delay: 0.6s;
}

/* ── Layout Helpers ──────────────────────────────── */
.container {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-wide {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Header ──────────────────────────────────────── */
#site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(245, 240, 232, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--merle-beige2);
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.header-logo-svg {
  width: 44px;
  height: auto;
  flex-shrink: 0;
}

.header-logo-name {
  font-family: Georgia, serif;
  font-size: 1.25rem;
  letter-spacing: 0.2em;
  color: var(--merle-dark);
  display: block;
  line-height: 1.1;
}

.header-logo-sub {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.62rem;
  color: var(--merle-muted);
  letter-spacing: 0.1em;
  display: block;
}

.header-nav {
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn-tel-sm {
  color: var(--merle-dark);
  font-size: 0.8rem;
  text-decoration: none;
  border: 1px solid var(--merle-dark);
  padding: 7px 16px;
  border-radius: 24px;
  letter-spacing: 0.04em;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.btn-tel-sm:hover {
  background: var(--merle-dark);
  color: white;
}

.btn-line-sm {
  background: #06C755;
  color: white;
  font-size: 0.8rem;
  font-weight: 500;
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 24px;
  letter-spacing: 0.04em;
  transition: opacity 0.2s, transform 0.2s;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-line-sm:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

/* ── Hero / FV（背景スライダー型）──────────────────── */
#hero {
  position: relative;
  overflow: hidden;
  min-height: 100svh;
  min-height: 100vh;
  /* フォールバック */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 背景スライダー */
.swiper-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
@media (max-width: 640px) {
  .swiper-hero-bg {
    display: none !important;
  }
}

.swiper-hero-bg .swiper-slide {
  overflow: hidden;
}

.swiper-hero-bg .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
  /* 上品なフィルター：少しトーンダウンしてエディトリアルな質感に */
  filter: brightness(0.94) saturate(0.82) contrast(0.96);
}

/* スライドごとの被写体位置調整（顔がロゴと重ならないように） */
/* top1: 少年が画像中央〜やや右下。下寄りに表示して被写体を viewport 下半分へ */
.hero-slide-1 img {
  -o-object-position: 58% 78%;
     object-position: 58% 78%;
}

/* top2: 親子の顔が画像上半分。画像の上を見せて顔を viewport 下方向へ押し下げ */
.hero-slide-2 img {
  -o-object-position: 50% 22%;
     object-position: 50% 22%;
}

/* top3: 少年の顔が画像上1/4。画像の上を見せて顔を viewport 中下に */
.hero-slide-3 img {
  -o-object-position: 50% 8%;
     object-position: 50% 8%;
}

@media (max-width: 640px) {
  .hero-slide-1 img {
    -o-object-position: 62% 65%;
       object-position: 62% 65%;
  }
  .hero-slide-2 img {
    -o-object-position: 60% 30%;
       object-position: 60% 30%;
  }
  .hero-slide-3 img {
    -o-object-position: 50% 15%;
       object-position: 50% 15%;
  }
}
/* 上品なオーバーレイ：縦方向のグラデで上部を少し濃く、文字エリアを読みやすく */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 30, 22, 0.42) 0%, rgba(5, 30, 22, 0.3) 40%, rgba(5, 30, 22, 0.45) 100%);
  z-index: 1;
}

/* ロゴ位置に柔らかな光（ラジアルグロー）でロゴを際立たせる */
.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(circle 280px at 50% 38%, rgba(255, 252, 240, 0.32) 0%, rgba(255, 252, 240, 0.16) 35%, rgba(255, 252, 240, 0) 70%);
  mix-blend-mode: screen;
}

@media (max-width: 640px) {
  .hero-glow {
    background: radial-gradient(circle 200px at 50% 32%, rgba(255, 252, 240, 0.28) 0%, rgba(255, 252, 240, 0) 70%);
  }
}
/* ドット（画像の上、下部中央） */
.swiper-hero-bg .swiper-pagination {
  bottom: 28px;
  z-index: 2;
}

.swiper-hero-bg .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.55);
  opacity: 1;
  width: 8px;
  height: 8px;
  transition: width 0.3s, background 0.3s;
}

.swiper-hero-bg .swiper-pagination-bullet-active {
  background: white;
  width: 28px;
  border-radius: 4px;
}

/* 前面コンテンツ（ロゴ・テキスト・CTA） */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 100px 24px 120px;
  width: 100%;
}

.hero-bird-wrap {
  margin: 0 auto 28px;
  width: 156px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 50%;
  padding: 18px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.5), 0 0 32px rgba(255, 252, 240, 0.55), 0 12px 36px rgba(8, 80, 65, 0.18);
  backdrop-filter: blur(2px);
  animation: heroLogoBreathe 4.2s ease-in-out infinite;
}

@keyframes heroLogoBreathe {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.5), 0 0 32px rgba(255, 252, 240, 0.55), 0 12px 36px rgba(8, 80, 65, 0.18);
  }
  50% {
    transform: scale(1.035);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.6), 0 0 44px rgba(255, 252, 240, 0.75), 0 14px 44px rgba(8, 80, 65, 0.22);
  }
}
/* 背景画像の上では multiply を外す */
.hero-bird-wrap .logo-img {
  mix-blend-mode: normal;
  filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.18));
}

.hero-store-name {
  font-family: Georgia, serif;
  font-size: clamp(2.8rem, 7vw, 4.4rem);
  letter-spacing: 0.3em;
  color: white;
  margin-bottom: 4px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

.hero-store-kana {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 40px;
}

.hero-divider {
  width: 40px;
  height: 1px;
  background: rgba(255, 255, 255, 0.45);
  margin: 0 auto 32px;
}

.hero-catch {
  font-size: clamp(1.35rem, 3.8vw, 2.1rem);
  color: white;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  line-height: 1.55;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.3);
}

.hero-lead {
  font-size: 0.91rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 460px;
  margin: 0 auto 44px;
  line-height: 2;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── CTA Buttons (large) ─────────────────────────── */
.cta-line-lg {
  background: #06C755;
  color: white;
  padding: 17px 40px;
  border-radius: 36px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: opacity 0.2s, transform 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  box-shadow: 0 4px 20px rgba(6, 199, 85, 0.3);
}

.cta-line-lg:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}

.cta-tel-lg {
  background: transparent;
  color: white;
  padding: 16px 40px;
  border-radius: 36px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border: 1.5px solid rgba(255, 255, 255, 0.65);
  transition: all 0.2s;
}

.cta-tel-lg:hover {
  background: white;
  color: var(--merle-dark);
  transform: translateY(-2px);
}

/* ── Hero クイックリンク ───────────────────────── */
.hero-quicklinks {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.hero-quicklink {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.12);
  color: white;
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(4px);
  transition: background 0.2s, transform 0.15s, border-color 0.2s;
}

.hero-quicklink:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.55);
  transform: translateY(-1px);
}

.hero-quicklink-icon {
  font-size: 0.95rem;
  line-height: 1;
}

@media (max-width: 540px) {
  .hero-quicklinks {
    gap: 6px;
    margin-top: 22px;
  }
  .hero-quicklink {
    font-size: 0.72rem;
    padding: 7px 13px;
  }
}
/* ── Section Commons ─────────────────────────────── */
.section-block {
  padding: 96px 0;
}

.section-block-alt {
  background: var(--merle-pale);
  padding: 96px 0;
}

.section-block-beige2 {
  background: var(--merle-beige2);
  padding: 96px 0;
}

.section-block-dark {
  background: var(--merle-dark);
  padding: 96px 0;
}

/* スクロール時、固定ヘッダーで隠れないよう余白を確保 */
.section-anchor,
#reserve {
  scroll-margin-top: 80px;
}

/* ── アニメーション抑制（OS設定の尊重）─────────── */
@media (prefers-reduced-motion: reduce) {
  .hero-bird-wrap {
    animation: none !important;
  }
  .about-photo,
  .about-photo-wrap,
  .section-title::after,
  .reveal {
    transition: none !important;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}
/* ── スクロール進捗バー ──────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--merle-accent), var(--merle-dark));
  z-index: 999;
  transition: width 0.08s linear;
  pointer-events: none;
}

/* ── 戻る↑ボタン ─────────────────────────────── */
.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--merle-dark);
  border: 1px solid var(--merle-beige2);
  box-shadow: 0 4px 16px rgba(8, 80, 65, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s, color 0.2s;
  z-index: 150;
}

.back-to-top.is-visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--merle-dark);
  color: white;
  transform: translateY(-2px);
}

.back-to-top svg {
  width: 16px;
  height: 16px;
}

/* モバイル固定CTAと被らないよう位置調整 */
@media (max-width: 768px) {
  .back-to-top {
    right: 16px;
    bottom: 84px;
    width: 40px;
    height: 40px;
  }
}
.section-eyebrow {
  font-family: Georgia, serif;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  color: var(--merle-accent);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-block-dark .section-eyebrow {
  color: var(--merle-light);
}

.section-title {
  font-size: clamp(1.55rem, 3.2vw, 2.1rem);
  color: var(--merle-dark);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  padding-bottom: 14px;
}

.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 56px;
  height: 1.5px;
  background: var(--merle-accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.9s cubic-bezier(0.25, 0.1, 0.25, 1) 0.2s;
  border-radius: 2px;
}

.section-title.visible::after {
  transform: scaleX(1);
}

/* 中央寄せセクション用：line をタイトル中央下に */
.section-block-dark .section-title,
#reserve .section-title {
  color: white;
}

#hero .section-title::after,
#reserve .section-title::after,
.section-block-dark .section-title::after {
  background: var(--merle-light);
}

.section-lead {
  font-size: 0.91rem;
  color: var(--merle-muted);
  line-height: 2;
  max-width: 580px;
}

.section-block-dark .section-lead {
  color: var(--merle-light);
}

.section-rule {
  width: 36px;
  height: 1px;
  background: var(--merle-light);
  margin: 24px 0;
}

/* ── About ───────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  margin-top: 56px;
}

.about-text p {
  font-size: 0.92rem;
  color: var(--merle-text);
  line-height: 2;
  margin-bottom: 18px;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.about-illus {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 32px;
  background: var(--merle-beige2);
  border-radius: 20px;
  position: relative;
}

.about-illus::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 12px;
  border: 1px solid var(--merle-light);
  opacity: 0.5;
}

/* ── Features (1行4列のミニマルカード) ─────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 56px;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.feature-card {
  position: relative;
  background: transparent;
  padding: 24px 6px 0;
  transition: transform 0.25s;
  border-top: 1px solid var(--merle-light);
}

.feature-card:hover {
  transform: translateY(-3px);
}

.feature-num {
  position: absolute;
  top: -14px;
  left: 0;
  font-family: Georgia, serif;
  font-size: 1.1rem;
  color: var(--merle-dark);
  letter-spacing: 0.1em;
  line-height: 1;
  background: var(--merle-beige);
  padding-right: 10px;
}

.section-block-alt .feature-num {
  background: var(--merle-pale);
}

.feature-card h3 {
  font-size: 0.92rem;
  color: var(--merle-dark);
  margin: 4px 0 12px;
  letter-spacing: 0.04em;
  line-height: 1.55;
  min-height: 2.8em;
}

.feature-card p {
  font-size: 0.78rem;
  color: var(--merle-muted);
  line-height: 1.85;
}

@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 18px;
  }
}
@media (max-width: 540px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 26px;
    max-width: 360px;
  }
  .feature-card h3 {
    min-height: 0;
  }
}
/* ── Brands ──────────────────────────────────────── */
/* ── Brands Swiper ───────────────────────────────── */
.brands-swiper {
  margin-top: 56px;
  padding: 8px 4px 56px;
  overflow: visible;
}

.brands-swiper .swiper-slide {
  height: auto;
  display: flex;
}

.brands-swiper .swiper-slide > .brand-card {
  width: 100%;
}

.brands-swiper .swiper-pagination {
  bottom: 16px !important;
}

.brands-swiper .swiper-pagination-bullet {
  background: var(--merle-dark);
  opacity: 0.25;
  width: 8px;
  height: 8px;
  transition: opacity 0.2s, transform 0.2s;
}

.brands-swiper .swiper-pagination-bullet-active {
  opacity: 1;
  transform: scale(1.2);
}

.brands-swiper-nav {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: -34px;
  position: relative;
  z-index: 2;
}

.brands-swiper-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--merle-beige2);
  background: white;
  color: var(--merle-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
}

.brands-swiper-btn:hover {
  background: var(--merle-dark);
  color: white;
  border-color: var(--merle-dark);
  transform: translateY(-1px);
}

.brands-swiper-btn.swiper-button-disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.brands-swiper-btn svg {
  width: 14px;
  height: 14px;
}

.brand-card {
  position: relative;
  background: white;
  border: 1px solid var(--merle-beige2);
  border-radius: 18px;
  padding: 28px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
  isolation: isolate;
}

.brand-card::before,
.brand-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.brand-card > * {
  position: relative;
  z-index: 1;
}

.brand-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(8, 80, 65, 0.09);
}

/* bcpc kids — 福井鯖江・洗練のニュアンスベージュ＋細線 */
.brand-bcpc {
  background: linear-gradient(135deg, #ffffff 0%, #faf3ef 100%);
}

.brand-bcpc::before {
  inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(212, 168, 157, 0.22), transparent 55%), repeating-linear-gradient(45deg, transparent 0 14px, rgba(180, 130, 115, 0.05) 14px 15px);
}

.brand-bcpc .brand-tag {
  background: #f6e7e0;
  color: #a86857;
}

/* gosh — 色遊び・パステルマルチドット */
.brand-gosh {
  background: linear-gradient(135deg, #ffffff 0%, #fdf5f9 100%);
}

.brand-gosh::before {
  inset: 0;
  background: radial-gradient(circle at 12% 14%, rgba(255, 180, 120, 0.35) 0 5px, transparent 6px), radial-gradient(circle at 88% 18%, rgba(180, 140, 220, 0.32) 0 6px, transparent 7px), radial-gradient(circle at 22% 88%, rgba(120, 200, 180, 0.32) 0 5px, transparent 6px), radial-gradient(circle at 86% 78%, rgba(240, 160, 180, 0.32) 0 6px, transparent 7px), radial-gradient(circle at 50% 50%, rgba(255, 225, 140, 0.18) 0 8px, transparent 9px);
}

.brand-gosh .brand-tag {
  background: #fae8f1;
  color: #b85890;
}

/* KOOKI — 老舗の紺×和紙テクスチャ */
.brand-kooki {
  background: linear-gradient(135deg, #ffffff 0%, #f3f5f9 100%);
}

.brand-kooki::before {
  inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(58, 74, 107, 0.18), transparent 60%), repeating-linear-gradient(0deg, transparent 0 22px, rgba(58, 74, 107, 0.04) 22px 23px), repeating-linear-gradient(90deg, transparent 0 22px, rgba(58, 74, 107, 0.04) 22px 23px);
}

.brand-kooki .brand-name {
  color: #2a3a5b;
}

.brand-kooki .brand-tag {
  background: #e4e8f1;
  color: #3a4a6b;
}

/* tomato glasses — 韓国発・淡いトマトレッド */
.brand-tomato {
  background: linear-gradient(135deg, #ffffff 0%, #fdf2f0 100%);
}

.brand-tomato::before {
  inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(217, 114, 100, 0.25), transparent 55%), radial-gradient(circle at 14% 88%, rgba(140, 180, 90, 0.18), transparent 35%);
}

.brand-tomato::after {
  top: 14px;
  right: 14px;
  width: 28px;
  height: 28px;
  background: radial-gradient(circle at 50% 55%, #e07568 0 38%, transparent 39%), radial-gradient(ellipse at 50% 22%, #8cb45a 0 18%, transparent 19%);
  opacity: 0.32;
  border-radius: 50%;
}

.brand-tomato .brand-tag {
  background: #fae3df;
  color: #b85040;
}

/* グラシックジュニア — 医療系クリーンミント */
.brand-glassic {
  background: linear-gradient(135deg, #ffffff 0%, #f0f8f5 100%);
}

.brand-glassic::before {
  inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(109, 184, 154, 0.22), transparent 55%);
}

.brand-glassic::after {
  top: 18px;
  right: 18px;
  width: 22px;
  height: 22px;
  border: 1.5px solid #6db89a;
  border-radius: 50%;
  opacity: 0.32;
  box-shadow: inset 0 0 0 5px rgba(109, 184, 154, 0.15);
}

.brand-glassic .brand-tag {
  background: #def0e6;
  color: #3f8866;
}

/* eyecloud — 雲・軽量のライトスカイ */
.brand-eyecloud {
  background: linear-gradient(135deg, #ffffff 0%, #eef5fa 100%);
}

.brand-eyecloud::before {
  inset: 0;
  background: radial-gradient(ellipse 80px 35px at 80% 18%, rgba(140, 180, 212, 0.32), transparent 70%), radial-gradient(ellipse 60px 26px at 20% 38%, rgba(180, 210, 230, 0.28), transparent 70%), radial-gradient(ellipse 70px 30px at 70% 78%, rgba(160, 195, 220, 0.22), transparent 70%);
}

.brand-eyecloud .brand-tag {
  background: #dde9f4;
  color: #436a8e;
}

/* rec specs — スポーツのダイナミックオレンジ斜線 */
.brand-recspecs {
  background: linear-gradient(135deg, #ffffff 0%, #fdf3eb 100%);
}

.brand-recspecs::before {
  inset: 0;
  background: linear-gradient(115deg, transparent 0 60%, rgba(224, 136, 88, 0.22) 60% 64%, transparent 64% 72%, rgba(224, 136, 88, 0.14) 72% 75%, transparent 75%), radial-gradient(circle at 100% 0%, rgba(224, 136, 88, 0.18), transparent 55%);
}

.brand-recspecs .brand-tag {
  background: #f8e2d0;
  color: #a85a2c;
}

.brand-name {
  font-family: Georgia, serif;
  font-size: 1rem;
  color: var(--merle-dark);
  letter-spacing: 0.06em;
  line-height: 1.3;
}

.brand-name span {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.7rem;
  color: var(--merle-muted);
  letter-spacing: 0.08em;
  margin-top: 3px;
}

.brand-tag {
  display: inline-block;
  font-size: 0.68rem;
  color: var(--merle-accent);
  background: var(--merle-pale);
  border-radius: 20px;
  padding: 3px 10px;
  letter-spacing: 0.04em;
  align-self: flex-start;
}

.brand-desc {
  font-size: 0.83rem;
  color: var(--merle-muted);
  line-height: 1.85;
  flex: 1;
}

.brand-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.brand-features li {
  font-size: 0.78rem;
  color: var(--merle-text);
  padding-left: 14px;
  position: relative;
  line-height: 1.6;
}

.brand-features li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--merle-light);
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.74rem;
  color: var(--merle-accent);
  text-decoration: none;
  letter-spacing: 0.04em;
  margin-top: 4px;
  transition: color 0.2s;
}

.brand-link:hover {
  color: var(--merle-dark);
}

.brand-link svg {
  flex-shrink: 0;
}

@media (max-width: 540px) {
  .brands-swiper-nav {
    margin-top: -28px;
  }
  .brands-swiper-btn {
    width: 34px;
    height: 34px;
  }
}
/* ── Flow ────────────────────────────────────────── */
.flow-list {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.flow-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 28px;
  align-items: start;
  padding-bottom: 40px;
  position: relative;
}

.flow-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 35px;
  top: 56px;
  bottom: 4px;
  width: 1px;
  background: var(--merle-light);
}

.flow-num-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--merle-dark);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Georgia, serif;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.flow-body {
  padding-top: 18px;
}

.flow-body h3 {
  font-size: 1.03rem;
  color: var(--merle-dark);
  margin-bottom: 8px;
}

.flow-body p {
  font-size: 0.86rem;
  color: var(--merle-muted);
  line-height: 1.9;
}

/* ── FAQ ─────────────────────────────────────────── */
.faq-list {
  margin-top: 56px;
}

.faq-item {
  border-bottom: 1px solid var(--merle-beige2);
}

.faq-btn {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.93rem;
  color: var(--merle-text);
  font-weight: 500;
  transition: color 0.2s;
}

.faq-btn:hover {
  color: var(--merle-dark);
}

.faq-q-mark {
  font-family: Georgia, serif;
  font-size: 1.05rem;
  color: var(--merle-accent);
  margin-right: 10px;
  flex-shrink: 0;
}

.faq-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--merle-beige2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.15rem;
  color: var(--merle-muted);
  transition: transform 0.25s, background 0.2s, border-color 0.2s, color 0.2s;
  line-height: 1;
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
  background: var(--merle-pale);
  border-color: var(--merle-light);
  color: var(--merle-dark);
}

.faq-panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}

.faq-item.is-open .faq-panel {
  max-height: 400px;
}

.faq-panel-inner {
  padding: 0 0 22px 38px;
  font-size: 0.87rem;
  color: var(--merle-muted);
  line-height: 2;
}

/* ── 助成金シミュレーター ──────────────────────── */
.faq-item.faq-sim .faq-q-mark {
  color: var(--merle-dark);
}

.faq-item.is-open.faq-sim .faq-panel {
  max-height: 1400px;
}

.sim-wrap {
  margin: 12px 0 6px;
  padding: 22px 22px 24px;
  background: linear-gradient(145deg, #ffffff 0%, #f7fcf9 100%);
  border: 1px solid var(--merle-light);
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(8, 80, 65, 0.05);
}

.sim-lead {
  font-size: 0.82rem;
  color: var(--merle-text);
  line-height: 1.85;
  margin-bottom: 18px;
}

.sim-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 18px;
  margin-bottom: 18px;
}

.sim-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sim-field label {
  font-size: 0.74rem;
  color: var(--merle-dark);
  letter-spacing: 0.04em;
  font-weight: 500;
}

.sim-field label .sim-optional {
  font-size: 0.66rem;
  color: var(--merle-muted);
  margin-left: 4px;
  font-weight: 400;
}

.sim-field input,
.sim-field select {
  font-family: inherit;
  font-size: 0.88rem;
  color: var(--merle-text);
  padding: 9px 12px;
  border: 1px solid var(--merle-beige2);
  border-radius: 8px;
  background: white;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.sim-field input:focus,
.sim-field select:focus {
  border-color: var(--merle-accent);
  box-shadow: 0 0 0 3px rgba(29, 158, 117, 0.12);
}

.sim-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.sim-btn {
  font-family: inherit;
  font-size: 0.82rem;
  padding: 10px 22px;
  border-radius: 24px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.05em;
  transition: background 0.2s, transform 0.15s;
}

.sim-btn-primary {
  background: var(--merle-dark);
  color: white;
}

.sim-btn-primary:hover {
  background: var(--merle-mid);
  transform: translateY(-1px);
}

.sim-btn-reset {
  background: transparent;
  color: var(--merle-muted);
  border: 1px solid var(--merle-beige2);
}

.sim-btn-reset:hover {
  color: var(--merle-dark);
  border-color: var(--merle-light);
}

.sim-result {
  margin-top: 18px;
  padding: 20px;
  background: var(--merle-pale);
  border-radius: 12px;
  border-left: 3px solid var(--merle-accent);
  display: none;
}

.sim-result.is-active {
  display: block;
}

.sim-result.is-warn {
  background: #fff5e6;
  border-left-color: #d4862e;
}

.sim-result-title {
  font-family: Georgia, serif;
  font-size: 0.95rem;
  color: var(--merle-dark);
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}

.sim-row {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.82rem;
  line-height: 1.7;
  border-top: 1px solid rgba(8, 80, 65, 0.08);
}

.sim-row:first-of-type {
  border-top: none;
  padding-top: 0;
}

.sim-row-icon {
  font-size: 1rem;
  text-align: center;
  line-height: 1.7;
}

.sim-row-key {
  color: var(--merle-muted);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  display: block;
}

.sim-row-val {
  color: var(--merle-text);
  font-weight: 500;
}

.sim-row-val strong {
  color: var(--merle-dark);
  font-weight: 600;
}

/* 重要なお知らせボックス（結果カード上部に表示） */
.sim-disclaimer {
  margin: 0 0 18px;
  padding: 12px 14px;
  background: #fff8ec;
  border: 1px solid #f0d49c;
  border-left: 3px solid #d4862e;
  border-radius: 8px;
  font-size: 0.78rem;
  line-height: 1.75;
  color: var(--merle-text);
}

.sim-disclaimer strong {
  color: #a66416;
  display: block;
  margin-bottom: 4px;
  font-size: 0.82rem;
}

.sim-note {
  margin-top: 14px;
  font-size: 0.72rem;
  color: var(--merle-muted);
  line-height: 1.75;
  padding-top: 12px;
  border-top: 1px dashed rgba(8, 80, 65, 0.15);
}

.sim-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  padding: 9px 18px;
  background: var(--merle-dark);
  color: white;
  text-decoration: none;
  border-radius: 22px;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  transition: background 0.2s;
}

.sim-cta:hover {
  background: var(--merle-mid);
}

@media (max-width: 540px) {
  .sim-form {
    grid-template-columns: 1fr;
  }
  .sim-wrap {
    padding: 18px 16px 20px;
  }
}
/* ── Prep Checklist ──────────────────────────────── */
.prep-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 56px;
  align-items: start;
}

.prep-note {
  font-size: 0.83rem;
  color: var(--merle-muted);
  line-height: 1.9;
  background: white;
  border-radius: 16px;
  padding: 28px 24px;
  border: 1px solid var(--merle-beige2);
}

.prep-note-title {
  font-size: 0.72rem;
  color: var(--merle-accent);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 16px;
}

.prep-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.prep-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--merle-text);
  line-height: 1.6;
}

.prep-checklist li::before {
  content: "";
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--merle-light);
  border-radius: 4px;
  margin-top: 1px;
  background: var(--merle-pale);
}

.prep-checklist li.required::before {
  background: var(--merle-dark);
  border-color: var(--merle-dark);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Cpath d='M4 9l3.5 3.5L14 6' stroke='white' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.prep-req-badge {
  font-size: 0.6rem;
  background: var(--merle-dark);
  color: white;
  border-radius: 3px;
  padding: 1px 5px;
  letter-spacing: 0.04em;
  flex-shrink: 0;
  align-self: center;
}

/* ── Instagram Banner ────────────────────────────── */
.insta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
  border-radius: 20px;
  padding: 28px 36px;
  text-decoration: none;
  margin-top: 56px;
  transition: opacity 0.2s, transform 0.2s;
}

.insta-banner:hover {
  opacity: 0.92;
  transform: translateY(-2px);
}

.insta-banner-text {
  color: white;
}

.insta-banner-text p:first-child {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  opacity: 0.82;
  margin-bottom: 6px;
}

.insta-banner-text p:last-child {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.insta-banner-icon {
  flex-shrink: 0;
  opacity: 0.9;
}

/* ── SNS Share ───────────────────────────────────── */
.share-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 36px 0 16px;
  flex-wrap: wrap;
}

.share-label {
  font-size: 0.72rem;
  color: var(--merle-muted);
  letter-spacing: 0.14em;
  margin-right: 4px;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: 24px;
  font-size: 0.78rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: opacity 0.2s, transform 0.2s;
  border: none;
  cursor: pointer;
}

.share-btn:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.share-btn-line {
  background: #06C755;
  color: white;
}

.share-btn-x {
  background: #000;
  color: white;
}

.share-btn-copy {
  background: var(--merle-beige2);
  color: var(--merle-text);
}

.share-btn-copy.copied {
  background: var(--merle-pale);
  color: var(--merle-dark);
}

/* ── Mobile Fixed CTA ────────────────────────────── */
#mobile-cta {
  display: none;
}

@media (max-width: 768px) {
  #mobile-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 150;
    background: rgba(245, 240, 232, 0.97);
    backdrop-filter: blur(8px);
    border-top: 1px solid var(--merle-beige2);
    padding: 10px 16px 14px;
    gap: 10px;
    box-shadow: 0 -4px 20px rgba(8, 80, 65, 0.08);
  }
  #mobile-cta a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 13px 8px;
    border-radius: 14px;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.04em;
  }
  .mcta-line {
    background: #06C755;
    color: white;
  }
  .mcta-tel {
    background: var(--merle-dark);
    color: white;
  }
  /* フッター等に固定バーの高さ分余白を追加 */
  body {
    padding-bottom: 72px;
  }
}
@media (max-width: 768px) {
  .prep-grid {
    grid-template-columns: 1fr;
  }
  .insta-banner {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
  }
}
/* ── Warranty ───────────────────────────────────── */
.warranty-wrap {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 28px;
  margin-top: 56px;
  align-items: start;
}

.warranty-box {
  border-radius: 18px;
  padding: 28px 24px;
}

.warranty-box-std {
  background: var(--merle-pale);
  border: 1px solid var(--merle-light);
}

.warranty-box-ext {
  background: white;
  border: 1px solid var(--merle-beige2);
}

.warranty-box-title {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--merle-accent);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 14px;
}

.warranty-box h3 {
  font-size: 1rem;
  color: var(--merle-dark);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}

.warranty-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--merle-beige2);
  font-size: 0.86rem;
}

.warranty-row:last-of-type {
  border-bottom: none;
}

.warranty-period {
  font-size: 0.75rem;
  color: var(--merle-accent);
  font-weight: 500;
  white-space: nowrap;
  min-width: 96px;
}

.warranty-desc {
  color: var(--merle-text);
  line-height: 1.65;
}

.warranty-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.plan-card {
  border: 1px solid var(--merle-beige2);
  border-radius: 14px;
  padding: 18px 12px;
  text-align: center;
}

.plan-card.featured {
  border-color: var(--merle-accent);
  background: var(--merle-pale);
}

.plan-fee {
  font-family: Georgia, serif;
  font-size: 1.35rem;
  color: var(--merle-dark);
  line-height: 1.1;
}

.plan-fee small {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.65rem;
  color: var(--merle-muted);
}

.plan-limit {
  font-size: 0.74rem;
  color: var(--merle-accent);
  font-weight: 500;
  margin: 7px 0 4px;
}

.plan-meta {
  font-size: 0.7rem;
  color: var(--merle-muted);
  line-height: 1.65;
}

.warranty-note {
  font-size: 0.76rem;
  color: var(--merle-muted);
  margin-top: 14px;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .warranty-wrap {
    grid-template-columns: 1fr;
  }
  .warranty-plans {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
}
@media (max-width: 420px) {
  .warranty-plans {
    grid-template-columns: 1fr;
  }
}
/* ── Subsidy ─────────────────────────────────────── */
.subsidy-toggle {
  width: 100%;
  background: none;
  border: 1.5px solid var(--merle-light);
  border-radius: 14px;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--merle-dark);
  letter-spacing: 0.04em;
  margin-top: 44px;
  background: var(--merle-pale);
  transition: background 0.2s;
  text-align: left;
}

.subsidy-toggle:hover {
  background: var(--merle-beige2);
}

.subsidy-icon-btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--merle-dark);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: transform 0.25s;
  line-height: 1;
}

.subsidy-toggle.is-open .subsidy-icon-btn {
  transform: rotate(45deg);
}

.subsidy-panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.45s ease;
}

.subsidy-panel.is-open {
  max-height: 1200px;
}

/* シミュレーターは結果まで含めるとさらに大きくなるので余裕を持たせる */
.sim-panel.is-open {
  max-height: 2400px;
}

.subsidy-inner {
  padding: 28px 4px 8px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.subsidy-card {
  background: white;
  border: 1px solid var(--merle-beige2);
  border-radius: 14px;
  padding: 22px 18px;
}

.subsidy-card-title {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--merle-accent);
  font-weight: 500;
  margin-bottom: 10px;
}

.subsidy-card h4 {
  font-size: 0.93rem;
  color: var(--merle-dark);
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}

.subsidy-list {
  list-style: none;
  font-size: 0.82rem;
  color: var(--merle-text);
  line-height: 1.85;
}

.subsidy-list li {
  padding-left: 12px;
  position: relative;
  margin-bottom: 4px;
}

.subsidy-list li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--merle-light);
}

.subsidy-flow {
  grid-column: 1/-1;
  background: var(--merle-pale);
  border-radius: 14px;
  padding: 22px 18px;
}

.subsidy-flow-title {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--merle-accent);
  font-weight: 500;
  margin-bottom: 14px;
}

.subsidy-steps {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
}
@media (max-width: 640px) {
  .subsidy-steps {
    flex-direction: column;
  }
}

.subsidy-step {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex: 1;
  min-width: 140px;
}

.subsidy-step-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--merle-dark);
  color: white;
  font-family: Georgia, serif;
  font-size: 0.72rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.subsidy-step p {
  font-size: 0.78rem;
  color: var(--merle-text);
  line-height: 1.7;
}

.subsidy-caution {
  grid-column: 1/-1;
  font-size: 0.76rem;
  color: var(--merle-muted);
  line-height: 1.85;
  border-left: 3px solid var(--merle-light);
  padding-left: 14px;
  margin-top: 4px;
}

@media (max-width: 768px) {
  .subsidy-inner {
    grid-template-columns: 1fr;
  }
  .subsidy-flow {
    grid-column: 1;
  }
  .subsidy-caution {
    grid-column: 1;
  }
}
/* ── Reserve CTA ─────────────────────────────────── */
#reserve .section-eyebrow {
  color: var(--merle-light);
}

#reserve .section-title {
  color: white;
}

#reserve .section-lead {
  color: rgba(255, 255, 255, 0.78);
}

#reserve {
  background: var(--merle-dark);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#reserve::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(159, 225, 203, 0.08), transparent 65%);
  top: -200px;
  right: -100px;
}

.reserve-cta-wrap {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 40px 0 28px;
}

.cta-line-reserve {
  background: #06C755;
  color: white;
  padding: 18px 52px;
  border-radius: 38px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: opacity 0.2s, transform 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.cta-line-reserve:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}

.cta-tel-reserve {
  background: transparent;
  color: white;
  padding: 17px 52px;
  border-radius: 38px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  transition: all 0.2s;
}

.cta-tel-reserve:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  transform: translateY(-2px);
}

.reserve-note {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.42);
  letter-spacing: 0.08em;
}

/* ── Access ──────────────────────────────────────── */
.access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-top: 56px;
  align-items: start;
}

.access-dl dt {
  font-size: 0.68rem;
  color: var(--merle-accent);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 4px;
}

.access-dl dd {
  font-size: 0.91rem;
  color: var(--merle-text);
  margin-bottom: 22px;
  line-height: 1.7;
}

.access-dl dd a {
  text-decoration: none;
  color: var(--merle-dark);
}

.access-dl dd a:hover {
  text-decoration: underline;
}

.access-map-placeholder {
  background: var(--merle-pale);
  border: 1px solid var(--merle-light);
  border-radius: 16px;
  height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--merle-muted);
  font-size: 0.84rem;
  letter-spacing: 0.06em;
}

.access-map-placeholder svg {
  stroke: var(--merle-accent);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── Footer ──────────────────────────────────────── */
footer {
  background: #052e25;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  padding: 52px 24px 36px;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  line-height: 1.9;
}

footer .foot-logo-name {
  font-family: Georgia, serif;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.25em;
  display: block;
  margin: 14px 0 4px;
}

footer .foot-bird {
  opacity: 0.82;
  margin: 0 auto;
  display: block;
  filter: brightness(0) invert(1);
}

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 768px) {
  .about-grid,
  .access-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .header-nav .btn-tel-sm {
    display: none;
  }
  .about-illus {
    order: -1;
  }
}
@media (max-width: 540px) {
  .section-block,
  .section-block-alt,
  .section-block-beige2,
  .section-block-dark,
  #reserve {
    padding: 72px 0;
  }
  #hero {
    padding: 72px 20px 88px;
  }
  .hero-bird-wrap {
    width: 150px;
  }
  .flow-item {
    grid-template-columns: 56px 1fr;
    gap: 18px;
  }
  .flow-num-circle {
    width: 56px;
    height: 56px;
    font-size: 0.95rem;
  }
  .flow-item:not(:last-child)::after {
    left: 27px;
    top: 44px;
  }
}
/* ── Section Decorations ─────────────────────────── */
.deco-wrap {
  position: relative;
  overflow: hidden;
}

.deco {
  position: absolute;
  pointer-events: none;
  opacity: 0.45;
  z-index: 0;
}

@media (max-width: 540px) {
  .deco {
    opacity: 0.35;
  }
}
.deco-wrap > .container,
.deco-wrap > .container-wide {
  position: relative;
  z-index: 1;
}

.deco-tr {
  top: 0;
  right: 0;
}

.deco-bl {
  bottom: 0;
  left: 0;
}

.deco-br {
  bottom: 0;
  right: 0;
}

.deco-tl {
  top: 0;
  left: 0;
}

/* ── Page Loader ─────────────────────────────────── */
#page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--merle-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

#page-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-logo-wrap {
  width: 110px;
  height: 110px;
  background: rgba(255, 255, 255, 0.88);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  animation: loader-breathe 2s ease-in-out infinite;
}

.loader-logo-wrap img {
  width: 78px;
  height: auto;
  display: block;
}

@keyframes loader-breathe {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(159, 225, 203, 0);
  }
  50% {
    transform: scale(1.04);
    box-shadow: 0 0 28px rgba(159, 225, 203, 0.35);
  }
}
.loader-dots {
  display: flex;
  gap: 10px;
}

.loader-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--merle-light);
  animation: loader-dot 1.2s ease-in-out infinite;
}

.loader-dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.loader-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes loader-dot {
  0%, 80%, 100% {
    transform: scale(0.5);
    opacity: 0.3;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}
/* ── Logo image (背景透過 CSS trick) ─────────────── */
.logo-img {
  mix-blend-mode: multiply;
  /* 白・薄色が透過して見える */
  display: block;
}

/* ── FV image ────────────────────────────────────── */
.hero-fv-wrap {
  margin: 52px auto 0;
  max-width: 840px;
  padding: 0 24px;
}

.hero-fv-img {
  width: 100%;
  height: clamp(220px, 45vw, 460px);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 30%;
     object-position: center 30%;
  border-radius: 20px;
  display: block;
  box-shadow: 0 12px 48px rgba(8, 80, 65, 0.12);
}

/* ── About photo ─────────────────────────────────── */
.about-photo-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(8, 80, 65, 0.1);
  transition: box-shadow 0.5s ease;
}

.about-photo-wrap:hover {
  box-shadow: 0 14px 44px rgba(8, 80, 65, 0.18);
}

.about-photo {
  width: 100%;
  height: 380px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
  display: block;
  transition: transform 0.7s cubic-bezier(0.25, 0.1, 0.25, 1), filter 0.5s ease;
}

.about-photo-wrap:hover .about-photo {
  transform: scale(1.06);
  filter: brightness(1.04) saturate(1.05);
}

@media (max-width: 768px) {
  .about-photo {
    height: 260px;
  }
}/*# sourceMappingURL=mirume.css.map */