/* ============================================================
   page.css — and-A Group
   HERO: 全画面動画 / 左下キャッチ / 右下お知らせ
   ============================================================ */

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 620px;
  overflow: hidden;
  margin-top: 0;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.72) 0%,
      rgba(0, 0, 0, 0.30) 45%,
      rgba(0, 0, 0, 0.10) 100%
    ),
    linear-gradient(
      to right,
      rgba(0, 0, 0, 0.35) 0%,
      rgba(0, 0, 0, 0.00) 60%
    );
}

.hero-content {
  position: absolute;
  bottom: clamp(48px, 7vh, 88px);
  left: clamp(32px, 5vw, 88px);
  z-index: 2;
  max-width: 770px;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 64px);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.08em;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  animation: fade-up 1s var(--ease-out) 0.3s forwards;
}

.hero-catch-jp {
  font-family: var(--font-serif-jp);
  font-size: clamp(11px, 1.1vw, 14px);
  font-weight: 200;
  letter-spacing: 0.18em;
  line-height: 2.0;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(16px);
  animation: fade-up 1s var(--ease-out) 0.55s forwards;
}

.hero-lead-en {
  font-family: var(--font-display);
  font-size: clamp(10px, 0.9vw, 12px);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.50);
  opacity: 0;
  animation: fade-up 1s var(--ease-out) 0.75s forwards;
}

@keyframes fade-up {
  to { opacity: 1; transform: translateY(0); }
}

.hero-news {
  position: absolute;
  bottom: clamp(48px, 7vh, 88px);
  right: clamp(32px, 4vw, 72px);
  z-index: 2;
  width: clamp(260px, 28vw, 360px);
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  padding: 28px 28px 24px;
  opacity: 0;
  animation: fade-up 1s var(--ease-out) 0.9s forwards;
}

.hero-news-label {
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.28em;
  color: #800000;
}

.hero-news-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.hero-news-item {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: opacity 0.2s;
}

.hero-news-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.hero-news-item:hover { opacity: 0.75; }

.hero-news-date {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.40);
}

.hero-news-text {
  font-family: var(--font-serif-jp);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.08em;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
}

.hero-news-more {
  display: flex;
  justify-content: flex-end;
  margin-top: 16px;
}

.hero-news-more a {
  font-family: var(--font-display);
  font-size: 9px;
  font-style: italic;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.40);
  transition: color 0.2s;
}

.hero-news-more a:hover { color: rgba(255, 255, 255, 0.8); }

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fade-up 1s var(--ease-out) 1.2s forwards;
}

.scroll-line {
  display: block;
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.45));
  animation: scroll-drop 2.4s ease-in-out 1.5s infinite;
}

@keyframes scroll-drop {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

.scroll-label {
  font-family: var(--font-display);
  font-size: 8px;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.35);
}

/* ============================================================
   RECRUIT BANNER
   ============================================================ */
.recruit-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #1a1a1a;
  border-left: 3px solid var(--color-accent);
  padding: 15px 32px;
  text-decoration: none;
  transition: background 0.25s var(--ease-smooth);
}

.recruit-banner:hover { background: #2d2d2d; }

.recruit-banner-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.recruit-banner-tag {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
  padding: 3px 9px;
  flex-shrink: 0;
}

.recruit-banner-text {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #fff;
}

.recruit-banner-arrow {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  transition: transform 0.25s var(--ease-smooth), color 0.25s;
  flex-shrink: 0;
}

.recruit-banner:hover .recruit-banner-arrow {
  transform: translateX(4px);
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================================
   BEAUTY SECTION
   ============================================================ */
.beauty-section {
  padding: clamp(64px, 8vw, 112px) 0;
  background: var(--color-bg);
}

.beauty-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--side-pad);
}

/* ---------- セクションヘッダー（共通） ---------- */
.section-head {
  text-align: center;
  margin-bottom: clamp(32px, 4vw, 52px);
}

.section-en {
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--color-text);
  font-style: italic;
}

.section-jp {
  font-family: var(--font-serif-jp);
  font-size: 11px;
  font-weight: 200;
  letter-spacing: 0.28em;
  color: var(--color-accent);
}

.section-rule {
  display: block;
  width: 32px;
  height: 1px;
  background: #800000;
  margin: 10px auto 0;
}

/* ---------- グリッド ---------- */
.beauty-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr;
  grid-template-rows: auto;
  gap: 6px;
}

/* ---------- セルラッパー（画像＋リンクをまとめる） ---------- */
.beauty-cell-wrap {
  display: flex;
  flex-direction: column;
}

/* 大セル: 左列2行分 */
.beauty-cell-wrap--big {
  grid-row: 1 / 3;
}

/* ---------- 各セル ---------- */
.beauty-cell {
  position: relative;
  overflow: hidden;
  display: block;
  background: var(--color-surface);
  cursor: pointer;
  flex: 1;
  min-height: clamp(160px, 20vw, 280px);
}

.beauty-cell--big {
  min-height: clamp(320px, 40vw, 560px);
}

/* ---------- セル下リンクリスト ---------- */
.beauty-cell-links {
  list-style: none;
  padding: 8px 0 4px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.beauty-cell-links li a {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--color-text-sub);
  text-decoration: none;
  display: block;
  padding: 3px 2px;
  transition: color 0.2s;
  line-height: 1.5;
}

.beauty-cell-links li a:hover {
  color: #800000;
}

.beauty-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s var(--ease-smooth);
}

.beauty-cell:hover img { transform: scale(1.05); }

/* グラデーションオーバーレイ */
.beauty-cell::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.52) 0%,
    rgba(0, 0, 0, 0.10) 45%,
    transparent 100%
  );
  transition: opacity 0.4s;
}

.beauty-cell:hover::after { opacity: 0.85; }

/* テキストラベル */
.beauty-cell-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 16px 16px;
  z-index: 1;
}

.beauty-cell-en {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(14px, 1.6vw, 20px);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.08em;
  color: #fff;
  line-height: 1.1;
}

.beauty-cell--big .beauty-cell-en {
  font-size: clamp(22px, 2.8vw, 36px);
}

.beauty-cell-jp {
  display: block;
  font-family: var(--font-serif-jp);
  font-size: clamp(9px, 0.8vw, 11px);
  font-weight: 200;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 4px;
}

/* アクセントライン（ホバー） */
.beauty-cell::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #800000;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-smooth);
  z-index: 2;
}

.beauty-cell:hover::before { transform: scaleX(1); }

/* ---------- レスポンシブ ---------- */
@media (max-width: 768px) {
  .beauty-grid {
    grid-template-columns: 1fr 1fr;
  }

  .beauty-cell-wrap--big {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
  }

  .beauty-cell--big {
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  .beauty-grid {
    grid-template-columns: 1fr 1fr;
  }

  .beauty-cell {
    min-height: 120px;
  }
}

/* ============================================================
   LIFE SECTION
   ============================================================ */
.life-section {
  padding: clamp(64px, 8vw, 112px) 0;
  background: #1a1a1a;
}

.life-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--side-pad);
}

.life-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.life-card {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  overflow: hidden;
  border: 1px solid #333;
  background: #222;
  transition: border-color 0.25s var(--ease-smooth),
              box-shadow 0.25s var(--ease-smooth);
  text-decoration: none;
}

.life-card:hover {
  border-color: #800000;
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}

.life-card-img {
  overflow: hidden;
  aspect-ratio: 4/3;
}

.life-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease-smooth);
}

.life-card:hover .life-card-img img { transform: scale(1.05); }

.life-card-body {
  padding: 20px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.life-card-en {
  display: block;
  font-family: var(--font-serif-jp);
  font-size: clamp(15px, 1.5vw, 20px);
  font-weight: 300;
  letter-spacing: 0.14em;
  color: #fff;
}

.life-card-jp {
  display: block;
  font-family: var(--font-display);
  font-size: 11px;
  font-style: italic;
  letter-spacing: 0.18em;
  color: #800000;
}

.life-card-arr {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #666;
  margin-top: 10px;
  transition: color 0.2s, letter-spacing 0.2s;
}

.life-card:hover .life-card-arr {
  color: #800000;
  letter-spacing: 0.14em;
}

/* ============================================================
   GUIDE MENU カルーセル
   ============================================================ */
.guide-section {
  padding: clamp(64px, 8vw, 112px) 0 clamp(48px, 6vw, 80px);
  background: var(--color-bg);
  overflow: hidden;
}

.guide-desc {
  font-family: var(--font-serif-jp);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--color-text);
  text-align: center;
  margin: 0 auto clamp(28px, 4vw, 44px);
  padding-inline: var(--side-pad);
  max-width: 680px;
  line-height: 2;
}

.guide-carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.guide-carousel {
  display: flex;
  overflow: hidden;
  width: 100%;
  gap: 0;
}

.guide-slide {
  flex: 0 0 25%;
  min-width: 25%;
  padding: 0 6px;
  transition: opacity 0.3s;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .guide-slide {
    flex: 0 0 50%;
    min-width: 50%;
  }
}

@media (max-width: 480px) {
  .guide-slide {
    flex: 0 0 100%;
    min-width: 100%;
  }
}

.guide-slide img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s;
}

.guide-slide img:hover { opacity: 0.88; }
.guide-slide a { display: block; }

.guide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  font-size: 22px;
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  line-height: 1;
}

.guide-btn:hover {
  background: #fff;
  border-color: #800000;
  color: #800000;
}

.guide-btn--prev { left: 8px; }
.guide-btn--next { right: 8px; }

.guide-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.guide-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-border-dk);
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
  border: none;
  padding: 0;
}

.guide-dot.is-active {
  background: #800000;
  transform: scale(1.3);
}

/* ============================================================
   STYLES SECTION
   ============================================================ */
.styles-section {
  padding: clamp(64px, 8vw, 112px) 0;
  background: var(--color-bg);
}

.styles-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--side-pad);
}

.styles-desc {
  font-family: var(--font-serif-jp);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--color-text);
  text-align: center;
  margin: 0 auto clamp(28px, 4vw, 44px);
  padding-inline: var(--side-pad);
  max-width: 680px;
  line-height: 2;
}

.styles-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px 14px;
}

.style-card {
  display: block;
  text-decoration: none;
  cursor: pointer;
}

.style-card--hidden { display: none; }

.style-card--hidden.is-visible {
  display: block;
  animation: card-fade-in 0.5s var(--ease-out) both;
}

@keyframes card-fade-in {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.style-card-img {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--color-surface);
}

.style-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease-smooth);
}

.style-card:hover .style-card-img img { transform: scale(1.04); }

.style-card-body { padding: 10px 0 0; }

.style-card-title {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.6;
  color: var(--color-text);
}

.style-card-rule {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--color-border);
  margin: 8px 0 6px;
}

.style-card-staff {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--color-accent);
}

.style-card-role {
  display: block;
  font-family: var(--font-display);
  font-size: 9px;
  font-style: italic;
  letter-spacing: 0.12em;
  color: var(--color-muted);
  margin-top: 2px;
}

.styles-more-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: clamp(36px, 5vw, 56px);
}

.styles-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #fff;
  border: 1px solid #1a1a1a;
  padding: 13px 40px;
  background: #1a1a1a;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s;
}

.styles-more-btn:hover {
  background: #800000;
  border-color: #800000;
}

.styles-more-icon {
  font-size: 14px;
  line-height: 1;
  transition: transform 0.3s var(--ease-smooth);
}

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

.styles-all-link {
  font-family: var(--font-display);
  font-size: 11px;
  font-style: italic;
  letter-spacing: 0.2em;
  color: var(--color-muted);
  transition: color 0.2s;
}

.styles-all-link:hover { color: var(--color-text); }

/* ============================================================
   STAFF SECTION
   ============================================================ */
.staff-section {
  padding: clamp(64px, 8vw, 112px) 0;
  background: var(--color-surface);
}

.staff-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--side-pad);
}

.staff-desc {
  font-family: var(--font-serif-jp);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--color-text);
  text-align: center;
  margin: 0 auto clamp(28px, 4vw, 44px);
  padding-inline: var(--side-pad);
  max-width: 680px;
  line-height: 2;
}

.staff-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px 14px;
}

.staff-card {
  display: block;
  text-decoration: none;
  cursor: pointer;
}

.staff-card--hidden { display: none; }

.staff-card--hidden.is-visible {
  display: block;
  animation: card-fade-in 0.5s var(--ease-out) both;
}

.staff-card-img {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--color-bg);
  position: relative;
}

.staff-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s var(--ease-smooth);
}

.staff-card:hover .staff-card-img img { transform: scale(1.04); }

.staff-card-salon {
  position: absolute;
  bottom: 0;
  left: 0;
  font-family: var(--font-body);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
  background: rgba(26, 26, 26, 0.78);
  padding: 4px 8px;
}

.staff-card-body { padding: 10px 0 0; }

.staff-card-name {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(14px, 1.3vw, 17px);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.1em;
  color: var(--color-text);
}

.staff-card-role {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--color-accent);
  margin-top: 3px;
}

.staff-card-line {
  width: 0;
  height: 1px;
  background: #800000;
  margin-top: 8px;
  transition: width 0.4s var(--ease-smooth);
}

.staff-card:hover .staff-card-line { width: 100%; }

.staff-note {
  font-family: var(--font-serif-jp);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--color-text);
  text-align: center;
  margin: clamp(40px, 5vw, 60px) auto 24px;
  padding-inline: var(--side-pad);
  max-width: 680px;
  line-height: 2;
}

.staff-more-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}

.staff-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #fff;
  border: 1px solid #1a1a1a;
  padding: 13px 40px;
  background: #1a1a1a;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s;
}

.staff-more-btn:hover {
  background: #800000;
  border-color: #800000;
}

.staff-more-icon {
  font-size: 14px;
  line-height: 1;
  transition: transform 0.3s var(--ease-smooth);
}

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

.staff-all-link {
  font-family: var(--font-display);
  font-size: 11px;
  font-style: italic;
  letter-spacing: 0.2em;
  color: var(--color-muted);
  transition: color 0.2s;
}

.staff-all-link:hover { color: var(--color-text); }

/* ============================================================
   SALON & SHOP SECTION
   ============================================================ */
.stores-section {
  background: var(--color-bg);
  padding-bottom: clamp(64px, 8vw, 112px);
}

.stores-head { padding-top: clamp(64px, 8vw, 112px); }

.stores-category { margin-top: 0; }

.stores-category-label {
  background: #1a1a1a;
  padding: 14px var(--side-pad);
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 16px;
}

.stores-category-label span {
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: #fff;
  text-transform: uppercase;
  white-space: nowrap;
}

.stores-category-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #800000;
}

.stores-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-left: 1px solid var(--color-border);
}

.store-card {
  border-right: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
  transition: background 0.2s;
}

.store-card:hover { background: var(--color-surface); }

.store-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--color-surface);
}

.store-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease-smooth);
}

.store-card:hover .store-card-img img { transform: scale(1.04); }

.store-card-body { padding: 16px 18px 18px; }

.store-card-name {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--color-text);
  line-height: 1.4;
}

.store-card-name-en {
  font-family: var(--font-display);
  font-size: 11px;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: #800000;
  margin-bottom: 3px;
}

.store-card-addr {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--color-text-sub);
  margin-top: 5px;
  line-height: 1.6;
}

.store-card-hours {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--color-muted);
  margin-top: 4px;
  line-height: 1.6;
}

.store-card-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-top: 12px;
}

/* ボタンが1つの場合 */
.store-card-btns:has(.store-btn:only-child) {
  grid-template-columns: 1fr;
}

/* 詳細ボタンは常に全幅 */
.store-btn--detail {
  grid-column: 1 / -1;
}

.store-btn {
  display: block;
  text-align: center;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 8px 4px;
  text-decoration: none;
  transition: opacity 0.2s;
  cursor: pointer;
}

.store-btn:hover { opacity: 0.75; }

.store-btn--rsv {
  background: #800000;
  color: #fff;
}

.store-btn--detail {
  background: #1a1a1a;
  color: #fff;
}

.store-btn--tel {
  background: #fff;
  color: var(--color-text);
  border: 1px solid #d0cbc4;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .stores-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .styles-grid { grid-template-columns: repeat(3, 1fr); }
  .staff-grid  { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .hero-news    { display: none; }
  .hero-content { left: 24px; right: 24px; max-width: 100%; }
  .hero-scroll  { display: none; }

  .life-grid    { grid-template-columns: 1fr; }
  .guide-slide  { flex: 0 0 50%; }
  .stores-grid  { grid-template-columns: repeat(2, 1fr); }

  .beauty-grid {
    grid-template-columns: 1fr 1fr;
  }

  .beauty-cell-wrap--big {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
  }

  .beauty-cell--big { min-height: 200px; }
}

@media (max-width: 560px) {
  .styles-grid { grid-template-columns: repeat(2, 1fr); gap: 14px 10px; }
  .staff-grid  { grid-template-columns: repeat(2, 1fr); gap: 14px 10px; }
}

@media (max-width: 480px) {
  .life-card    { grid-template-columns: 1fr 1.4fr; }
  .guide-slide  { flex: 0 0 100%; }
  .guide-btn    { width: 36px; height: 36px; font-size: 18px; }
  .stores-grid  { grid-template-columns: 1fr; border-left: none; }
  .store-card   { border-right: none; border-left: 1px solid var(--color-border); }
  .beauty-cell  { min-height: 120px; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}