@charset "UTF-8";

/* ============================================================
   shop.css
   店舗案内ページ専用スタイル
   common.css / global-menu.css は別ファイルで共通管理
============================================================ */

.shop-page { padding-bottom: 80px; }

/* ============================================================
   ページ上部：3店舗一覧ナビゲーション
============================================================ */
.shop-overview {
  padding: 60px 0 70px;
  text-align: center;
}
.shop-eyebrow {
  font-family: var(--font-mincho);   /* v17：ゴシック→明朝 */
  font-style: normal;              /* v17：斜体をやめた */
  font-size: 0.97rem;
  letter-spacing: 0.22em;
  color: var(--color-mauve-light);  /* v17：#0065B0 → #18BFD7 */
  margin: 0 0 4px;                 /* v17：h1との間隔を 8px→4px に */
}
.shop-page-title {
  font-family: var(--font-mincho);
  font-size: 1.8rem;
  font-weight: 400;   /* v17：PCを一段階太く（300→400）。SPは768px以下で700に上書き */
  color: var(--text-heading);
  margin: 0 0 14px;
  letter-spacing: 0.08em;
}
.shop-page-lead {
  font-size: 1.0rem;
  color: var(--text-light);
  line-height: 1.8;
  margin: 0 0 50px;
}
@media screen and (max-width: 768px) {
  /* v17：SPのページタイトルを統一（明朝700 / 27px / 字間0.04em）。
     font-family は上のベース宣言（var(--font-mincho)）を継承。
     1rem＝18px なので 1.5rem＝27px。ウェイトは 300/500 → 700 に上げる。 */
  .shop-page-title {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.04em;
  }
}

/* 3店舗サムネイルカード */
.shop-thumb-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.shop-thumb-card {
  display: block;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(34, 34, 34, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  color: var(--text-main);
}
.shop-thumb-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(34, 34, 34, 0.12);
  opacity: 1;
}
.shop-thumb-img-wrap {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}
.shop-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.shop-thumb-card:hover .shop-thumb-img {
  transform: scale(1.04);
}
.shop-thumb-logo {
  position: absolute;
  top: 12px;
  left: 12px;
  max-width: 80px;
  height: auto;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.3));
}
.shop-thumb-info {
  padding: 18px 20px;
}
.shop-thumb-name {
  font-family: var(--font-mincho);
  font-size: 1.04rem;
  font-weight: 500;
  color: var(--text-main);
  line-height: 1.5;
  margin: 0 0 6px;
}
/* 種別は .store-type-tag（common.css）に統一。
   サイズ・色・地はそちらで持つので、ここは配置だけ */
.shop-thumb-type {
  margin: 0;
}
@media screen and (max-width: 768px) {
  .shop-thumb-nav { grid-template-columns: 1fr; gap: 16px; }
}

/* ============================================================
   各店舗セクション共通
============================================================ */
.shop-section {
  border-top: 4px solid var(--color-pink-pale);
  padding-bottom: 80px;
  scroll-margin-top: 90px; /* ヘッダー分のオフセット */
}

/* セクションヘッダー（店名・業態） */
.shop-section-header {
  background: var(--gradient-blue);
  padding: 40px 0;
  margin-bottom: 0;
}
/* 店舗帯：v12 で全店舗を --gradient-blue に統一（旧：店舗ごとに色分け）。
   v16：-3beplus / -2weeksplus / -2weekscolor の background 上書きは
   すべて基底 .shop-section-header と同値だったため削除した。
   店舗ごとに色を戻す場合はここに書き足すこと（後段にも同名の上書きを作らない）。 */
.shop-section-header-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.shop-section-sns {
  margin-left: auto;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.shop-section-sns a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: opacity 0.25s ease, transform 0.2s ease;
}
.shop-section-sns a:hover {
  background: #fff;
  opacity: 0.85;
  transform: translateY(-2px);
}
.shop-section-sns img {
  width: 22px;
  height: 22px;
}
/* ※ SPの .shop-section-sns（margin-left:0 ＋ 絶対配置）は、
   下の 768px 以下ブロックにまとめてある */
.shop-section-logo {
  max-width: 120px;
  height: auto;
  flex-shrink: 0;
  background: #fff;
  border-radius: 10px;
  padding: 10px 14px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}
.shop-section-label {
  font-family: var(--font-gothic);
  font-size: 0.89rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 6px;
  letter-spacing: 0.06em;
}
.shop-section-name {
  font-family: var(--font-mincho);
  font-size: 1.5rem;
  font-weight: 300;
  color: #fff;
  margin: 0;
  letter-spacing: 0.06em;
  line-height: 1.4;
}
/* ラベル＋楕円バッジ＋店名の並び
   PC：ラベルの横にバッジ（＝店名の上）／SP：店名の下にバッジ */
.shop-section-headings {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 14px;
  row-gap: 4px;
}
.shop-section-headings .shop-section-label { margin: 0; order: 1; }
.shop-section-badge { order: 2; }
.shop-section-headings .shop-section-name { flex-basis: 100%; order: 3; }
.shop-section-badge {
  display: inline-block;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 4px 14px;
  font-family: var(--font-gothic);
  font-size: 0.85rem;
  color: var(--color-blue-ink);
  background: #fff;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .shop-section-header-inner { flex-direction: column; align-items: flex-start; gap: 14px; position: relative; }
  .shop-section-name { font-size: 1.23rem; }
  .shop-section-sns { position: absolute; top: 0; right: 20px; margin-left: 0; }
  .shop-section-headings { display: block; }
  .shop-section-badge { margin-top: 10px; white-space: normal; line-height: 1.5; }
}

/* メインビジュアル（動画） */
.shop-mv-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 6;
  overflow: hidden;
  background: var(--text-heading); /* 動画のレターボックス */
}
.shop-mv-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}
.shop-mv-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.shop-mv-catch {
  font-family: var(--font-mincho);
  font-size: 2.0rem;
  font-weight: 300;
  color: #fff;
  letter-spacing: 0.15em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
  margin: 0;
}
@media screen and (max-width: 768px) {
  .shop-mv-wrap { aspect-ratio: 4 / 3; }
  .shop-mv-catch { font-size: 1.33rem; }
}

/* キャッチコピーエリア（ニュースの下に配置：角丸パネル） */
.shop-intro {
  background: var(--color-champagne);
  padding: 28px 24px;
  text-align: center;
  border-radius: 14px;
  margin-bottom: 50px;
}
.shop-intro-badge {
  display: inline-block;
  padding: 5px 18px;
  font-family: var(--font-gothic);
  font-size: 0.93rem;
  margin-bottom: 12px;
  border-radius: 6px;
  background: #fff;
  border: 1px solid var(--color-mauve);
  color: var(--color-blue-ink);
}
.shop-intro-catch {
  font-family: var(--font-mincho);
  font-size: 1.13rem;
  color: var(--text-heading);
  line-height: 1.7;
  margin: 0;
}

/* 店舗内ナビ（アンカーリンク）
   ・ヒーロー画像の直下に配置。固定せず通常フローで一緒にスクロールする
   ・上下のヘアライン＋ホバーで水色→ピンクのグラデ下線が伸びる意匠 */
.shop-inner-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2px 4px;
  margin: 0 0 44px;
  padding: 4px 8px 0;
  background: var(--color-champagne);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}
.shop-inner-nav a {
  position: relative;
  padding: 14px 18px;
  font-family: var(--font-gothic);
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  color: var(--text-light);
  transition: color 0.2s ease;
  white-space: nowrap;
}
.shop-inner-nav a::after {
  content: '';
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 8px;
  height: 2px;
  border-radius: 2px;
  background: var(--gradient-blue);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}
.shop-inner-nav a:hover {
  color: var(--color-blue-ink);
  opacity: 1;
}
.shop-inner-nav a:hover::after { transform: scaleX(1); }
@media screen and (max-width: 640px) {
  .shop-inner-nav { gap: 0 2px; padding: 2px 4px 0; margin-bottom: 32px; }
  .shop-inner-nav a { padding: 12px 12px; font-size: 0.9rem; }
  .shop-inner-nav a::after { left: 10px; right: 10px; bottom: 6px; }
}

/* ============================================================
   NEWS
============================================================ */
/* お知らせ全体を1枚の白い角丸カードに */
.shop-news {
  margin-bottom: 50px;
  padding: 8px 28px;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  box-shadow: 0 2px 14px rgba(150, 200, 215, 0.14);
}
.shop-news-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 4px;
}
.shop-news-list li { border-bottom: 1px solid var(--border-color); }
/* 最後の項目（＝お知らせが1件だけの時も含む）の下線は非表示 */
.shop-news-list li:last-child,
.shop-news .news-list li:last-child { border-bottom: none; }
.shop-news-list a {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 4px;
  transition: opacity 0.25s ease;
}
.shop-news-list a:hover { opacity: 0.7; }
.shop-news-list .news-thumb {
  width: 100px;
  aspect-ratio: 16/9;
  flex-shrink: 0;
  border-radius: 6px;
  overflow: hidden;
}
.shop-news-list .news-thumb img { width: 100%; height: 100%; object-fit: cover; }
.shop-news-list .news-body { flex: 1; font-family: var(--font-gothic); }
.shop-news-list .news-meta { display: flex; gap: 10px; align-items: center; margin-bottom: 4px; }
.shop-news-list .news-date { font-size: 0.9rem; color: var(--text-light); }
.shop-news-list .news-cat {
  border: 1px solid var(--text-light);
  border-radius: 20px;
  padding: 2px 10px;
  font-size: 0.85rem;
  color: var(--text-main);
}
.shop-news-list .news-text { font-size: 0.97rem; color: var(--text-main); margin: 0; }
@media screen and (max-width: 640px) {
  .shop-news { padding: 4px 16px; margin-bottom: 40px; }
}

/* ============================================================
   コンテンツセクション共通
============================================================ */
.shop-content-section {
  margin-bottom: 60px;
  scroll-margin-top: 140px;
}
.shop-content-section-bg {
  background: var(--color-champagne);
  margin-left: -20px;
  margin-right: -20px;
  padding: 40px 20px;
}
.shop-section-title {
  font-family: var(--font-mincho);
  font-size: 1.33rem;
  font-weight: 300;
  color: var(--text-heading);
  margin: 0 0 30px;
  letter-spacing: 0.12em;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-color);
}
.shop-section-title .ja {
  font-size: 0.97rem;
  color: var(--text-light);
  font-family: var(--font-gothic);
  letter-spacing: 0.05em;
  margin-left: 12px;
}

/* ============================================================
   オーガニックエキス紹介エリア（ローズマリー背景＋ローズのアクセント）
============================================================ */
.organic-showcase {
  position: relative;
  margin-top: 20px;
  padding: 44px 36px;
  border-radius: 18px;
  overflow: hidden;
  background-color: var(--color-champagne);
  isolation: isolate;
}
.organic-showcase-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/shop/rosemary.jpg');
  background-size: cover;
  background-position: center 35%;
  z-index: 0;
}
.organic-showcase-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(237, 248, 254, 0.45) 0%, rgba(237, 248, 254, 0.82) 40%, rgba(237, 248, 254, 0.92) 100%);
}
.organic-showcase-rose {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(34, 34, 34, 0.12);
  border: 6px solid #fff;
  z-index: 1;
  opacity: 0.92;
}
.organic-showcase-rose img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.organic-showcase-content {
  position: relative;
  z-index: 2;
}
.organic-showcase-intro-title {
  font-family: var(--font-mincho);
  font-size: 1.18rem;
  font-weight: 500;
  color: var(--text-heading);
  margin: 0 0 10px;
  line-height: 1.6;
  max-width: 70%;
}
.organic-showcase-intro-desc {
  font-size: 0.97rem;
  color: var(--text-light);
  line-height: 1.8;
  margin: 0 0 28px;
  max-width: 70%;
}
.organic-extract-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 32px;
}
.organic-extract-item {
  background: rgba(255, 255, 255, 0.72);
  border-radius: 10px;
  padding: 16px 20px;
  backdrop-filter: blur(2px);
}
.organic-extract-item.is-full { grid-column: 1 / -1; }
.organic-extract-name {
  font-family: var(--font-mincho);
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--color-blue-ink);
  margin: 0 0 6px;
}
.organic-extract-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}

@media screen and (max-width: 640px) {
  .organic-showcase { padding: 32px 22px; border-radius: 14px; }
  .organic-showcase-rose { width: 130px; height: 130px; top: -16px; right: -16px; }
  .organic-showcase-intro-title, .organic-showcase-intro-desc { max-width: 100%; }
  .organic-extract-grid { grid-template-columns: 1fr; gap: 14px; }
}

/* ============================================================
   特長（feature block）
============================================================ */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 50px;
}
.feature-block-reverse { direction: rtl; }
.feature-block-reverse > * { direction: ltr; }
.feature-img { width: 100%; border-radius: 10px; display: block; }
.feature-title {
  font-family: var(--font-mincho);
  font-size: 1.18rem;
  font-weight: 500;
  color: var(--text-heading);
  margin-bottom: 16px;
  line-height: 1.6;
}
.feature-desc {
  font-size: 1.0rem;
  color: var(--text-main);
  line-height: 1.9;
  margin-bottom: 12px;
}
.feature-note {
  font-size: 0.89rem;
  color: var(--text-light);
  line-height: 1.7;
  border-left: 2px solid var(--border-color);
  padding-left: 12px;
  margin: 0;
}

/* オプションアイコングリッド */
.option-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  background: var(--color-champagne);
  border-radius: 12px;
  padding: 30px;
  margin-top: 30px;
}
.option-item { text-align: center; flex: 1; }
.option-label {
  display: block;
  font-family: var(--font-gothic);
  font-size: 0.89rem;
  color: var(--text-light);
  margin-bottom: 6px;
}
.option-name {
  display: block;
  font-family: var(--font-mincho);
  font-size: 1.13rem;
  font-weight: 500;
  color: var(--color-blue-ink);
  margin-bottom: 8px;
}
.option-desc {
  font-size: 0.93rem;
  color: var(--text-main);
  line-height: 1.7;
  margin: 0;
}
.option-circle {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--color-blue-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.circle-main {
  font-family: var(--font-gothic);
  font-size: 0.89rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .feature-block { grid-template-columns: 1fr; gap: 20px; }
  .feature-block-reverse { direction: ltr; }
  .option-grid { flex-direction: column; gap: 20px; }
}

/* ============================================================
   メニュー・料金
============================================================ */
.menu-header-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 10px;
}
.menu-banner-inline {
  display: inline-block;
  padding: 6px 18px;
  font-family: var(--font-gothic);
  font-size: 0.93rem;
  font-weight: 700;
  margin-bottom: 20px;
  border-radius: 6px;
  background: #fff;
  border: 1px solid var(--color-blue-ink);
  color: var(--color-blue-ink);
}
.menu-category-title {
  font-size: 1.04rem;
  font-weight: 500;
  color: var(--color-blue-ink);
  margin: 30px 0 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-pink-pale);
  font-family: var(--font-gothic);
  letter-spacing: 0.08em;
}
.menu-category-title .ja {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-left: 8px;
  letter-spacing: 0;
}

/* カラーメニュー行 */
.menu-items { display: grid; gap: 20px; }
.menu-item-row {
  display: flex;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px dashed var(--border-color);
}
.menu-item-row:last-child { border-bottom: none; }
.menu-name-wrap { flex-shrink: 0; width: 170px; }
.badge-popular {
  display: inline-block;
  background: var(--color-pink-bright);
  color: #fff;
  font-family: var(--font-gothic);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  margin-bottom: 6px;
}
.menu-name {
  font-family: var(--font-mincho);
  font-size: 1.04rem;
  font-weight: 500;
  color: var(--text-main);
  line-height: 1.5;
  margin: 0 0 8px;
}
.menu-item-img {
  width: 100%;
  border-radius: 6px;
  margin-top: 8px;
}
.menu-details-wrap { flex: 1; }
.menu-price-area { margin-bottom: 10px; }
.price-line {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 4px;
}
.price-label {
  font-family: var(--font-gothic);
  font-size: 0.9rem;
  color: var(--color-blue-ink);
  font-weight: 500;
  min-width: 80px;
}
.price-value {
  font-family: var(--font-mincho);
  font-size: 1.23rem;
  color: var(--text-main);
}
.price-highlight { color: var(--color-blue-ink); }
.menu-desc {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}

/* 注記 */
.menu-notes {
  background: var(--color-champagne);
  border-radius: 8px;
  padding: 16px 20px;
  margin: 16px 0 0;
}
.menu-notes dt {
  font-family: var(--font-gothic);
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--text-main);
  margin-bottom: 4px;
}
.menu-notes dd {
  font-size: 0.93rem;
  color: var(--text-light);
  margin: 0 0 10px;
  line-height: 1.6;
}
.menu-notes dd:last-child { margin-bottom: 0; }

/* その他メニューリスト */
.extra-menu-list { display: grid; gap: 12px; margin-bottom: 10px; }
.extra-menu-list-shaded .extra-item {
  background: var(--color-champagne);
}
.extra-item {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 14px 18px;
}
.extra-item-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 4px;
}
.extra-item-name {
  font-family: var(--font-gothic);
  font-size: 1.0rem;
  font-weight: 500;
  color: var(--text-main);
  margin: 0;
  flex: 1;
}
.extra-item-price {
  font-family: var(--font-mincho);
  font-size: 1.09rem;
  color: var(--color-blue-ink);
  font-weight: 500;
  flex-shrink: 0;
  margin: 0;
}
.extra-item-desc {
  font-size: 0.93rem;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}

@media screen and (max-width: 640px) {
  .menu-item-row { flex-direction: column; }
  .menu-name-wrap { width: 100%; }
}

/* ============================================================
   スタッフグリッド
============================================================ */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.staff-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}
.staff-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 12px;
}
.staff-img-empty {
  /* 写真がまだ無いスタッフ用。画像ファイルを増やさずに円だけ置き、
     グリッド内で写真ありのカードと高さを揃える。
     （以前は images/staff/placeholder.png を参照していたが、実体が無く404だった） */
  display: block;
  background: var(--color-champagne);
  border: 1px dashed var(--border-color);
  box-sizing: border-box;
}
.staff-role {
  font-family: var(--font-gothic);
  font-size: 0.89rem;
  color: var(--color-blue-ink);
  margin: 0 0 4px;
}
.staff-name {
  font-family: var(--font-mincho);
  font-size: 1.01rem;
  font-weight: 500;
  color: var(--text-main);
  margin: 0 0 10px;
}
.staff-comment {
  font-size: 0.93rem;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .staff-grid { grid-template-columns: repeat(2, 1fr); }
}
@media screen and (max-width: 480px) {
  .staff-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   施術の流れ（タイムライン）
============================================================ */
.flow-timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}
.flow-timeline::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gradient-blue);
}
.timeline-item {
  display: flex;
  gap: 20px;
  padding-bottom: 32px;
  position: relative;
}
.timeline-item:last-child { padding-bottom: 0; }
.tl-marker {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--color-blue-ink);
  position: relative;
  z-index: 1;
  margin-top: 2px;
}
.tl-content { flex: 1; }
.tl-step {
  font-family: var(--font-gothic);
  font-size: 0.9rem;
  color: var(--color-blue-ink);
  font-weight: 700;
  margin: 0 0 6px;
  letter-spacing: 0.05em;
}
.tl-title {
  font-family: var(--font-mincho);
  font-size: 1.04rem;
  color: var(--text-heading);
  font-weight: 500;
  margin-left: 8px;
}
.tl-text {
  font-size: 0.97rem;
  color: var(--text-light);
  line-height: 1.8;
  margin: 0;
}
.tl-body-with-img {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.tl-img {
  width: 140px;
  flex-shrink: 0;
  border-radius: 6px;
}
@media screen and (max-width: 480px) {
  .tl-body-with-img { flex-direction: column; }
  .tl-img { width: 100%; }
}

/* ============================================================
   アクセス
============================================================ */
.access-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.access-store-name {
  font-family: var(--font-mincho);
  font-size: 1.13rem;
  font-weight: 500;
  color: var(--text-main);
  margin: 0 0 12px;
}
.access-address {
  font-size: 1.0rem;
  color: var(--text-main);
  line-height: 1.8;
  margin: 0 0 8px;
}
.access-tel {
  font-size: 1.13rem;
  font-weight: 500;
  margin: 0 0 18px;
}
.access-tel a { color: var(--color-blue-ink); }
.access-info-list {
  font-size: 0.97rem;
  margin: 0 0 24px;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 8px 12px;
}
.access-info-list dt { color: var(--color-blue-ink); font-weight: 500; font-family: var(--font-gothic); }
.access-info-list dd { margin: 0; color: var(--text-main); }
.access-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.access-btn {
  display: inline-block;
  padding: 11px 20px;
  font-family: var(--font-gothic);
  font-weight: 700;
  font-size: 0.97rem;
  text-align: center;
  transition: opacity 0.2s ease;
  border-radius: 999px;
  background: var(--gradient-blue);
  color: #fff;
  border: 0;
}
.access-btn:hover { opacity: 0.75; }
.access-btn-reserve {
  border-radius: 999px;
  background: var(--gradient-blue);
  color: #fff;
  border: 0;
}
.access-btn-tel {
  border-radius: 999px;
  background: var(--gradient-blue);
  color: #fff;
  border: 0;
}
.access-map { border-radius: 10px; overflow: hidden; border: 1px solid var(--border-color); }
.access-map iframe { display: block; }

@media screen and (max-width: 768px) {
  .access-box { grid-template-columns: 1fr; }
}

/* ============================================================
   Instagram フィード（自動反映ウィジェット埋め込み枠）
============================================================ */
.insta-feed-lead {
  text-align: center;
  font-size: 0.97rem;
  color: var(--text-light);
  margin: 0 0 28px;
}
.insta-feed-lead a {
  color: var(--color-blue-ink);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.insta-feed-embed {
  min-height: 120px;
}
/* ウィジェット未連携時のプレースホルダー（投稿10枚ぶんのダミーグリッド） */
.insta-feed-placeholder-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}
.insta-feed-placeholder-tile {
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  background: var(--color-champagne);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 1.4rem;
  opacity: 0.6;
}
.insta-feed-placeholder {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-light);
  background: var(--color-champagne);
  border: 1px dashed var(--border-color);
  border-radius: 10px;
  padding: 18px;
  margin: 0;
}
@media screen and (max-width: 640px) {
  .insta-feed-placeholder-grid { grid-template-columns: repeat(3, 1fr); }
}

/* 求人リンク */
.shop-recruit-link {
  margin-top: 40px;
  text-align: center;
  padding: 30px;
  background: var(--color-pink-pale);
  border-radius: 12px;
}
.shop-recruit-text {
  font-family: var(--font-gothic);
  font-size: 1.0rem;
  color: var(--text-light);
  margin: 0 0 14px;
}
.shop-recruit-btn {
  display: inline-block;
  padding: 13px 30px;
  font-family: var(--font-gothic);
  font-weight: 700;
  font-size: 1.0rem;
  transition: opacity 0.2s ease;
  border-radius: 999px;
  background: var(--gradient-blue);
  color: #fff;
  border: 0;
}
.shop-recruit-btn:hover { opacity: 0.8; }

/* ============================================================
   メニュー・料金（シンプル箇条書き／カテゴリごとの白枠カード）
============================================================ */
.menu-simple-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.menu-simple-box {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 24px 26px;
}
.menu-simple-box-title {
  font-family: var(--font-mincho);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--color-blue-ink);
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-pink-pale);
}
.menu-simple-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.menu-simple-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-main);
  line-height: 1.6;
  padding-bottom: 10px;
  border-bottom: 1px dashed var(--border-color);
}
.menu-simple-list li:last-child { border-bottom: none; padding-bottom: 0; }
.menu-simple-name { flex: 1; }
.menu-simple-price {
  flex-shrink: 0;
  font-family: var(--font-gothic);
  font-weight: 500;
  color: var(--color-blue-ink);
  white-space: nowrap;
}

@media screen and (max-width: 640px) {
  .menu-simple-grid { grid-template-columns: 1fr; gap: 14px; }
  .menu-simple-box { padding: 20px; }
}

/* ============================================================
   店舗2・3：準備中プレースホルダー
============================================================ */
.shop-section-placeholder {
  background: var(--color-champagne);
  border-top: 4px solid var(--border-color);
}
.shop-placeholder-inner {
  padding: 70px 20px;
  text-align: center;
}
.shop-placeholder-logo {
  max-width: 140px;
  height: auto;
  margin-bottom: 20px;
  opacity: 0.7;
}
.shop-placeholder-name {
  font-family: var(--font-mincho);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--text-main);
  margin: 0 0 18px;
}
.shop-placeholder-text {
  font-size: 1.0rem;
  color: var(--text-light);
  line-height: 1.8;
  margin: 0 0 28px;
}
.shop-placeholder-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

/* ============================================================
   2Weeks plus 西泉店ページ専用スタイル
   （2weeksplus.html：2部門併設・予約ドア2つ・区分別メニュー）
============================================================ */

/* --- 店名帯：v12 で基底と同色。background の上書きは v16 で削除 --- */
.shop-section-header-2weeksplus .shop-section-name,
.shop-section-header-2weeksplus .shop-section-label {
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}

/* --- 下部固定メニュー内「クーポン」：小さく・太く・赤字 --- */
.store-detail .floating-nav .fn-coupon {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-pink-text);
}
/* 「ウェブ」ラベル：SPは「ウェブ予約」と続けて表示。PCは予約の上に小さな横書き（下の769px+で調整） */
.store-detail .floating-nav .fn-web {
  display: inline-block;
  writing-mode: horizontal-tb;
}
.store-detail .floating-nav .fn-main { white-space: nowrap; } /* 予約ラベルは内部で折り返さない */
/* 店舗ページの固定メニューは項目が多め・ラベルが長めなので少し詰める */
@media screen and (max-width: 768px) {
  .store-detail .floating-nav a { font-size: 0.95rem; padding: 8px 3px 14px; line-height: 1.3; }
  .store-detail .floating-nav .fn-coupon { font-size: 0.78rem; }
  .store-detail .floating-nav .fn-web { font-size: 0.78rem; } /* ウェブは小さめ */
}
/* PC：予約関連の固定ボタン（左の縦バー）
   ①スクロール後に出現（JSが .is-visible を付与）／②「電話する」は非表示／③項目間の余白を広げて見やすく */
@media screen and (min-width: 769px) {
  .store-detail .floating-nav {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-50%) translateX(-12px);
    transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s;
  }
  .store-detail .floating-nav.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(-50%) translateX(0);
  }
  .store-detail .floating-nav a[href^="tel:"] { display: none; }
  .store-detail .floating-nav a { padding: 30px 15px; }
  .store-detail .floating-nav .fn-coupon { font-size: 0.83rem; }
  .store-detail .floating-nav .fn-web { font-size: 0.67rem; margin-bottom: 5px; letter-spacing: 0.08em; color: var(--text-light); }
}

/* --- 右下「上へ」ボタン（floating-wrap 内・スクロールで出現） --- */
.back-to-top {
  width: 48px;
  height: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  font-family: var(--font-gothic);
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
  box-shadow: 0 3px 10px rgba(34, 34, 34, 0.16);
  opacity: 0.92;
  transition: opacity 0.2s ease, transform 0.2s ease;
  border-radius: 50%;
  background: var(--gradient-blue);
  color: #fff;
  border: 0;
}
.back-to-top:hover { opacity: 1; transform: translateY(-2px); }
.back-to-top .btt-arrow { font-size: 1rem; line-height: 1; }
@media screen and (max-width: 768px) {
  .back-to-top { width: 44px; height: 44px; font-size: 0.67rem; }
}

/* --- メニュー：区分ごとに1枚の白背景でまとめる --- */
.menu-group {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(34, 34, 34, 0.05);
  padding: 8px 26px 20px;
  margin-bottom: 22px;
}
.menu-group .menu-category-title { margin-top: 18px; }
.menu-group-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu-group-item {
  padding: 16px 0;
  border-bottom: 1px solid var(--border-color);
}
.menu-group-item:last-child { border-bottom: none; padding-bottom: 4px; }
.menu-group-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 4px;
}
.menu-group-name {
  font-family: var(--font-gothic);
  font-size: 1.0rem;
  font-weight: 500;
  color: var(--text-main);
  margin: 0;
  flex: 1;
}
.menu-group-price {
  font-family: var(--font-mincho);
  font-size: 1.09rem;
  color: var(--color-blue-ink);
  font-weight: 500;
  flex-shrink: 0;
  margin: 0;
}
.menu-group-desc {
  font-size: 0.93rem;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}

/* --- 2部門のご案内カード --- */
.dept-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 24px;
}
.dept-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(34, 34, 34, 0.05);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
}
.dept-tag {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--font-gothic);
  font-size: 0.83rem;
  letter-spacing: 0.08em;
  padding: 4px 14px;
  margin: 0 0 14px;
  border-radius: 6px;
  background: #fff;
  border: 1px solid var(--border-color);
  color: var(--color-blue-ink);
}
.dept-card-color .dept-tag {
  background: var(--gradient-blue);
}
.dept-title {
  font-family: var(--font-mincho);
  font-weight: 500;
  font-size: 1.35rem;
  color: var(--text-heading);
  margin: 0 0 10px;
  line-height: 1.5;
}
.dept-desc {
  font-family: var(--font-gothic);
  font-size: 0.97rem;
  line-height: 1.9;
  color: var(--text-main);
  margin: 0 0 14px;
}
.dept-point-list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  font-family: var(--font-gothic);
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-light);
}
.dept-point-list li {
  padding-left: 1.2em;
  position: relative;
}
.dept-point-list li::before {
  content: '✿';
  position: absolute;
  left: 0;
  color: var(--color-pink-bright);
  font-size: 0.8em;
}
.dept-btns {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .dept-grid { grid-template-columns: 1fr; }
}

/* --- 各メニュー末尾の予約CTA --- */
.menu-reserve-cta {
  margin-top: 30px;
  text-align: center;
  background: var(--color-champagne);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 26px 20px;
}
.menu-reserve-cta p {
  font-family: var(--font-gothic);
  font-size: 1.0rem;
  color: var(--text-main);
  margin: 0 0 14px;
}

/* ============================================================
   2WeeksColor 御経塚店ページ専用スタイル
   （2weekscolor.html：カラー専門店・EPARK予約ドア1つ）
============================================================ */

/* --- 店名帯：v12 で基底と同色になったため background の上書きは v16 で削除 --- */
.shop-section-header-2weekscolor .shop-section-name,
.shop-section-header-2weekscolor .shop-section-label {
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}

/* ============================================================
   店舗詳細ページ SP専用導線（body.store-detail 限定）
   PC＝従来の floating-nav（左レール）維持。SP＝左タブ予約＋下部バー(アクセス/電話)
============================================================ */
.store-sp-cta { display: none; }
@media screen and (max-width: 768px) {
  .store-detail .floating-nav { display: none; }
  .store-sp-cta { display: block; }
  .store-reserve-wrap {
    position: fixed;
    left: 0;
    bottom: 150px;
    z-index: 600;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .store-reserve-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    background: var(--color-pink-text);
    color: #fff;
    font-family: var(--font-gothic);
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    padding: 11px 8px;
    border-radius: 0 14px 14px 0;
    box-shadow: 2px 2px 8px rgba(34, 34, 34, 0.16);
  }
  .store-bottom-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 600;
    display: flex;
    height: 52px;
    background: var(--color-blue-ink);
  }
  .store-bottom-bar a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: var(--font-gothic);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.22);
  }
  .store-bottom-bar a:first-child {
    border-right: 1px solid rgba(255, 255, 255, 0.4);
  }
  .store-detail .floating-wrap {
    left: auto;
    right: 15px;
    bottom: 62px;
  }
  .store-detail .back-to-top {
    position: static;
    margin-bottom: 0;
  }
}


/* PCヘッダーが2段になり約120pxになったため、アンカー着地位置を40px下げる（SPは従来どおり） */
@media screen and (min-width: 769px) {
  .shop-section { scroll-margin-top: 105px; }
  .shop-content-section { scroll-margin-top: 155px; }
}
