@charset "UTF-8";

/* ==================================================
   archive.css - 店舗一覧・詳細・検索機能
   ================================================== */

/* --- アーカイブページ全体 --- */
.archive-main {
  padding-top: 100px; /* ヘッダーとの被り防止 */
  background-color: #0f0f0f;
  min-height: 100vh;
}

/* ページタイトルエリア */
.archive-header {
  padding: 80px 20px;
  text-align: center;
  /* 背景を暗くして文字を見やすく */
  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../images/hero-bg.jpg") no-repeat center center;
  background-size: cover;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(193, 155, 75, 0.3);
}

.archive-title {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #fff;
  text-shadow:
    2px 2px 0px #000000,
    0 0 20px rgba(0, 0, 0, 0.8);
}

/* 店舗グリッドレイアウト */
.archive-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px 80px;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.no-posts {
  grid-column: 1 / -1;
  text-align: center;
  padding: 50px 0;
  color: #ccc;
}

.btn-back {
  display: inline-block;
  margin-top: 20px;
  color: #c19b4b;
  text-decoration: none;
  border: 1px solid #c19b4b;
  padding: 8px 20px;
  border-radius: 5px;
  transition: 0.3s;
}
.btn-back:hover {
  background: #c19b4b;
  color: #fff;
}

/* 店舗カードのデザイン */
.shop-card {
  background: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #333; /* 境界線を薄く追加 */
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.shop-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
  border-color: #c19b4b; /* ホバー時に枠線をゴールドに */
}

.shop-card a {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* 画像エリア */
.shop-thumbnail {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.shop-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.shop-card:hover .shop-thumbnail img {
  transform: scale(1.05);
}

/* 情報エリア */
.shop-info {
  padding: 15px 20px; /* パディング調整 */
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

/* --- タグ（ラベル）エリア：店名の上に配置 --- */
.card-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px; /* 店名との余白 */
  pointer-events: auto;
}

/* カテゴリラベル */
.shop-category {
  position: static; /* 絶対配置を解除 */
  background: transparent;
  border: 1px solid #c19b4b;
  color: #c19b4b;
  font-size: 0.7rem;
  padding: 3px 10px;
  border-radius: 4px;
  font-weight: 700;
  line-height: 1;
}

/* インボイス対応ラベル */
.archive-invoice-label {
  position: static; /* 絶対配置を解除 */
  background: linear-gradient(135deg, #00695c, #003d33);
  border: none;
  color: #fff;
  font-size: 0.7rem;
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 700;
  line-height: 1;
  pointer-events: auto;
}

/* 店名 */
.shop-name {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #fff;
  line-height: 1.4;
  font-weight: 700;
}

/* メタ情報（エリア・価格） */
.shop-meta {
  display: flex;
  gap: 15px;
  font-size: 0.85rem;
  color: #ccc;
  margin-top: auto; /* 下揃えにする */
}

.shop-meta i {
  color: #c19b4b;
  margin-right: 4px;
}

.shop-excerpt {
  display: none; /* 一覧では抜粋を非表示にしてスッキリさせる */
}


/* --- レスポンシブ調整（スマホ：リスト型表示） --- */
/* ==================================================
   archive.css - スマホレスポンシブ修正（1行強制表示）
   ================================================== */

@media (max-width: 768px) {
  /* グリッドの隙間調整 */
  .shop-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  /* カードを横並びレイアウトに変更 */
  .shop-card a {
    flex-direction: row; /* 横並び */
    align-items: stretch;
    min-height: 110px; /* 少し高さを抑えて引き締める */
  }

  /* 左側：画像 */
  .shop-thumbnail {
    width: 35%;
    max-width: 120px; /* 画像幅を固定気味にして右側のスペースを確保 */
    aspect-ratio: 1 / 1;
    border-right: 1px solid #333;
    flex-shrink: 0;
  }

  /* 右側：情報 */
  .shop-info {
    width: 65%; /* 画像以外のスペース */
    padding: 10px 12px; /* 余白を少し詰める */
    justify-content: center;
    overflow: hidden; /* はみ出し防止 */
  }

  /* スマホでの店名サイズ */
  .shop-name {
    font-size: 0.95rem; /* 長い店名でも入りやすく */
    margin-bottom: 6px;
    white-space: nowrap; /* ★店名も1行にする */
    overflow: hidden;
    text-overflow: ellipsis; /* はみ出たら... */
  }

  /* スマホでのラベル調整 */
  .card-labels {
    gap: 4px;
    margin-bottom: 6px;
    flex-wrap: nowrap; /* ラベルも1行に並べる */
    overflow: hidden;
  }
  .shop-category,
  .archive-invoice-label {
    font-size: 0.6rem;
    padding: 2px 6px;
    white-space: nowrap; /* 折り返し禁止 */
  }

  /* ▼▼▼ 今回の修正箇所：エリアと予算を1行にする ▼▼▼ */
  .shop-meta {
    font-size: 0.7rem; /* 文字サイズを少し小さく */
    gap: 10px;         /* 間隔調整 */
    flex-wrap: nowrap; /* ★絶対に折り返さない */
    display: flex;
    align-items: center;
    width: 100%;       /* 横幅いっぱい使う */
    min-width: 0;      /* Flexアイテム内での省略表示に必須 */
  }

  .shop-meta span {
    white-space: nowrap; /* ★文字の折り返しを禁止 */
    display: inline-flex;
    align-items: center;
  }

  /* エリア情報は短めなので縮めない */
  .shop-area {
    flex-shrink: 0; 
  }

  /* 価格情報は長い場合があるので、必要なら...にする */
  .shop-price {
    flex-shrink: 1;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  /* ▲▲▲ 修正ここまで ▲▲▲ */
}
/* =========================================
   店舗詳細ページ (single-shop)
   ========================================= */
.single-shop-main {
  padding-top: 80px;
  background-color: #000;
}

/* --- シネマティック・ヒーローエリア --- */
.shop-hero.cinematic-mode {
  position: relative;
  width: 100%;
  height: 60vh; /* PCでの高さ */
  min-height: 450px;
  background: #000;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 背景（ぼかし・暗く） */
.shop-hero-bg-blur {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.shop-hero-bg-blur img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* ▼▼▼ 修正：brightnessを 0.4 から 0.7 に変更（明るくする） ▼▼▼ */
  filter: blur(15px) brightness(0.7);
  /* ▲▲▲ 修正ここまで ▲▲▲ */
  transform: scale(1.1);
}

/* 前景（ポスター風・くっきり） */
.shop-hero-poster {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 60px;
}

.shop-hero-poster img {
  max-width: 90%;
  max-height: 85%;
  width: auto;
  height: auto;
  object-fit: contain;
  /* ▼▼▼ 修正：影を少し薄くして自然にする（0.6 → 0.4） ▼▼▼ */
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  /* ▲▲▲ 修正ここまで ▲▲▲ */
  border-radius: 4px;
}

/* グラデーション（文字背景） */
.shop-hero-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.6) 40%,
    transparent 100%
  );
  z-index: 3;
  pointer-events: none;
}

/* コンテンツ（店名など） */
.shop-hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 4;
  padding-bottom: 40px;
  text-align: center;
}

.shop-detail-name {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 20px;
  color: #fff;
  letter-spacing: 0.1em;
}

/* ▼▼▼ 【修正】タグエリアのレイアウト崩れ防止 ▼▼▼ */
.shop-detail-tags {
  display: flex; /* Flexboxを有効化 */
  flex-wrap: wrap; /* 入り切らない場合は折り返す */
  justify-content: center; /* 中央揃え */
  align-items: center; /* 上下中央揃え */
  gap: 10px; /* タグ同士の隙間（上下左右） */
  margin-top: 15px;
  width: 100%;
}

/* 個別のタグ */
.shop-detail-tags .tag {
  background: #c19b4b;
  color: #fff;
  padding: 6px 16px;
  border-radius: 50px; /* ピル型 */
  font-size: 0.8rem;
  font-weight: 700;
  margin: 0; /* gapで管理するため0 */
  white-space: nowrap; /* 文字の折り返し禁止 */
  line-height: 1.2;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* インボイス対応タグ（詳細ページ・一覧共通） */
.tag.invoice-tag,
.shop-invoice-label {
  background: linear-gradient(135deg, #00695c, #003d33) !important;
  border: 1px solid #4db6ac !important;
  box-shadow: 0 2px 10px rgba(0, 105, 92, 0.5) !important;
  color: #fff !important;
  font-weight: 700;
}
/* ▲▲▲ 修正ここまで ▲▲▲ */

/* スマホ表示の調整 */
@media (max-width: 768px) {
  .shop-hero.cinematic-mode {
    height: 50vh;
    min-height: 400px;
  }
  .shop-hero-poster img {
    max-width: 95%;
    max-height: 75%;
  }
  .shop-hero-content {
    padding-bottom: 30px;
  }
  .shop-detail-name {
    font-size: 2rem;
  }
}

.shop-content-container {
  max-width: 800px;
  margin: -50px auto 80px;
  background: #111;
  padding: 50px;
  border-radius: 15px;
  position: relative;
  z-index: 3;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* 共通ユーティリティ */
.section-margin {
  margin-bottom: 60px;
}
.section-title {
  font-size: 1.5rem;
  color: #c19b4b;
  margin-bottom: 15px;
  border-left: 4px solid #c19b4b;
  padding-left: 15px;
}
.en {
  font-family: "Montserrat", sans-serif;
  font-size: 0.75em;
  font-weight: 500;
  letter-spacing: 0.05em;
  opacity: 0.7;
  margin-left: 8px;
}
.section-title .en {
  font-size: 0.6em;
  letter-spacing: 0.1em;
  color: #c19b4b;
  opacity: 1;
  display: inline;
}

/* お店の紹介文 */
.shop-description {
  margin-bottom: 30px;
}

/* 1. クイック情報バー */
.shop-quick-info-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  align-items: stretch;
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid rgba(193, 155, 75, 0.3);
  padding: 15px 0;
  border-radius: 16px;
  margin-bottom: 60px;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.quick-info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: flex-start;
  gap: 15px;
  color: #fff;
  padding: 0 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.quick-info-item:last-child {
  border-right: none;
}
.quick-info-item i {
  font-size: 2rem;
  color: #c19b4b;
  margin-bottom: 5px;
  height: 40px;
  display: flex;
  align-items: center;
}
.quick-info-item > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
}
.quick-info-item .label {
  font-size: 0.8rem;
  color: #aaa;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.quick-info-item .value {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.4;
  overflow-wrap: break-word;
}

/* 2. リッチなタブボタン (glow-tabs) */
.shop-tabs-nav.glow-tabs {
  display: flex;
  gap: 20px;
  border-bottom: none;
  margin-bottom: 30px;
  justify-content: center;
}
.glow-tabs .tab-btn {
  background: linear-gradient(135deg, #333, #222);
  border: 1px solid #444;
  color: #aaa;
  padding: 15px 0;
  width: 48%;
  max-width: 240px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  line-height: 1.2;
}
.glow-tabs .tab-btn .en {
  margin-left: 0;
  margin-top: 2px;
}
.glow-tabs .tab-btn.is-active {
  color: #fff;
  border-color: #c19b4b;
  background: linear-gradient(135deg, #c19b4b, #a07e36);
  box-shadow:
    0 0 20px rgba(193, 155, 75, 0.5),
    0 5px 15px rgba(0, 0, 0, 0.5);
  transform: translateY(-2px);
}

.tab-panel {
  display: none;
  animation: tabFadeIn 0.5s ease;
}
.tab-panel.is-active {
  display: block;
}
@keyframes tabFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 3. メニュー・コース カード化 */
.shop-tabs-content.menu-card-style {
  background: #131313;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  border: 1px solid #222;
}
.menu-card-style .tab-panel-inner {
  padding: 0;
  font-size: 1rem;
  color: #eee;
}

/* メニューリスト整形 */
.menu-list-formatted {
  margin: 0;
  padding: 10px 0;
}
.menu-item-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}
.menu-item-row:last-child {
  border-bottom: none;
}
.menu-name {
  flex-grow: 1;
  font-weight: 500;
  display: flex;
  overflow: hidden;
}
.menu-name span {
  padding-right: 10px;
}
.menu-name::after {
  content: "";
  flex-grow: 1;
  border-bottom: 2px dotted rgba(193, 155, 75, 0.5);
  margin-bottom: 4px;
  opacity: 0.7;
}
.menu-price {
  margin: 0 0 0 15px;
  font-weight: 700;
  color: #c19b4b;
  white-space: nowrap;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.05em;
}

/* メニュー開閉機能 */
.menu-foldable {
  position: relative;
  max-height: 180px;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
}
.menu-foldable.is-open {
  max-height: none;
}
.menu-foldable::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(
    to bottom,
    rgba(19, 19, 19, 0) 0%,
    rgba(19, 19, 19, 1) 90%
  );
  pointer-events: none;
  transition: opacity 0.3s;
}
.menu-foldable.is-open::after {
  opacity: 0;
  pointer-events: none;
}
.menu-more-btn-container {
  text-align: center;
  margin-top: 20px;
  display: none;
}
.menu-more-btn-container.is-visible {
  display: block;
}
.btn-menu-more {
  background: rgba(193, 155, 75, 0.1);
  border: 1px solid #c19b4b;
  color: #c19b4b;
  padding: 10px 30px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-menu-more:hover {
  background: #c19b4b;
  color: #fff;
}
.btn-menu-more.is-active i {
  transform: rotate(180deg);
}

/* 税込価格注釈 */
.shop-tabs-tax-note {
  text-align: center;
  margin-bottom: 20px;
  font-size: 0.95rem;
  color: #ccc;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}
.shop-tabs-tax-note i {
  color: #c19b4b;
  margin-right: 8px;
  font-size: 1.1rem;
}

/* 4. 雑誌風ギャラリー */
.shop-gallery-section {
  margin-top: 60px;
  margin-bottom: 80px;
}
@media (min-width: 769px) {
  .magazine-gallery-grid {
    position: relative;
    height: 500px;
    margin-top: 40px;
  }
  .magazine-gallery-grid .gallery-img {
    position: absolute;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    border: 2px solid #222;
    transition: all 0.5s ease;
  }
  .magazine-gallery-grid .gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .magazine-gallery-grid .item-1 {
    width: 65%;
    height: 450px;
    top: 0;
    left: 0;
    z-index: 3;
    border-color: #c19b4b;
  }
  .magazine-gallery-grid .item-2 {
    width: 45%;
    height: 300px;
    top: 30px;
    right: 0;
    z-index: 2;
    opacity: 0.8;
  }
  .magazine-gallery-grid .item-3 {
    width: 40%;
    height: 250px;
    bottom: 0;
    right: 50px;
    z-index: 1;
    opacity: 0.6;
  }
  .magazine-gallery-grid .gallery-img:hover {
    z-index: 10;
    opacity: 1;
    transform: scale(1.02);
    border-color: #c19b4b;
  }
}
@media (max-width: 768px) {
  .magazine-gallery-grid {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 20px;
    margin-top: 20px;
    scroll-snap-type: x mandatory;
  }
  .magazine-gallery-grid .gallery-img {
    flex: 0 0 85%;
    height: 250px;
    border-radius: 16px;
    overflow: hidden;
    scroll-snap-align: center;
    border: 1px solid #333;
  }
  .magazine-gallery-grid .gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.gallery-img-hidden {
  display: none;
}
.gallery-more-container {
  text-align: center;
  margin-top: 20px;
}
.btn-gallery-more {
  background: transparent;
  border: 1px solid #c19b4b;
  color: #c19b4b;
  padding: 12px 30px;
  border-radius: 5px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}
.btn-gallery-more:hover {
  background: #c19b4b;
  color: #fff;
}

/* ライトボックス */
.lb-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.lb-overlay.is-active {
  display: flex;
  opacity: 1;
}
.lb-content {
  max-width: 90%;
  max-height: 85%;
  position: relative;
}
.lb-image {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border: 3px solid #333;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}
.lb-close {
  position: absolute;
  top: -50px;
  right: 0;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}
.lb-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 20px;
  pointer-events: none;
}
.lb-arrow {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  transition: 0.3s;
}
.lb-arrow:hover {
  background: rgba(193, 155, 75, 0.8);
}
.lb-counter {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  color: #aaa;
  font-size: 0.9rem;
}

/* 5. 店舗情報リストカード */
.shop-info-list-wrapper {
  background: #131313;
  border-radius: 24px;
  padding: 50px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  border: 1px solid #222;
}
.shop-info-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.shop-info-list li {
  padding: 20px 0;
  border-bottom: 1px solid #2a2a2a;
  font-size: 1rem;
  color: #eee;
}
.shop-info-list li:last-child {
  border-bottom: none;
}
.shop-info-list li.detail-row {
  display: flex;
  align-items: flex-start;
  gap: 25px;
}
.shop-info-list li.detail-row .label {
  font-size: 0.9rem;
  color: #aaa;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  width: 150px;
  flex-shrink: 0;
}
.shop-info-list li.detail-row .label i {
  font-size: 1.2rem;
  color: #c19b4b;
  width: 24px;
  text-align: center;
  margin-right: 12px;
  filter: drop-shadow(0 1px 3px rgba(193, 155, 75, 0.3));
}
.shop-info-list li.detail-row .value {
  flex-grow: 1;
  line-height: 1.6;
  font-weight: 500;
}
/* ▼▼▼ 修正：詳細リストのリンク（電話番号など） ▼▼▼ */
/* セレクタを詳細化(.detail-rowを追加)して優先度を高めています */
.shop-info-list li.detail-row a.value {
  color: #eee;
  text-decoration: none;
  transition: 0.3s;
  border-bottom: 1px solid transparent;
  
  /* 幅を強制的に文字数に合わせる設定 */
  flex-grow: 0;       
  width: fit-content; 
}

.shop-info-list li.detail-row a.value:hover {
  color: #c19b4b;
  border-bottom-color: #c19b4b;
}

/* マップ */
.shop-map-wrapper {
  margin-top: 50px;
}
.shop-map {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #333;
  filter: grayscale(1) invert(1) contrast(0.9);
  opacity: 0.8;
  transition: 0.3s;
}
.shop-map:hover {
  filter: none;
  opacity: 1;
}
.shop-map iframe {
  display: block;
}

/* 詳細に戻るボタン */
.back-to-list {
  margin-top: 50px;
  text-align: center;
}

/* =========================================
   お知らせ (News) 関連スタイル
   ========================================= */
.news-list-container {
  max-width: 800px;
  margin: 0 auto;
  background: #131313;
  border-radius: 12px;
  border: 1px solid #222;
  overflow: hidden;
}
.news-list-item a {
  display: flex;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #2a2a2a;
  text-decoration: none;
  color: #fff;
  transition: 0.3s;
}
.news-list-item a:hover {
  background: rgba(255, 255, 255, 0.05);
  padding-left: 25px;
}
.news-list-item:last-child a {
  border-bottom: none;
}
.news-meta {
  display: flex;
  flex-direction: column;
  min-width: 100px;
  margin-right: 20px;
  font-size: 0.85rem;
}
.news-date {
  color: #888;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 5px;
}
.news-cat {
  display: inline-block;
  background: #c19b4b;
  color: #fff;
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 4px;
  text-align: center;
  width: fit-content;
}
.news-list-item .news-title {
  flex-grow: 1;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}
.arrow-icon {
  color: #c19b4b;
  font-size: 0.9rem;
  margin-left: 15px;
}
.news-header {
  margin-bottom: 40px;
  border-bottom: 1px solid #333;
  padding-bottom: 20px;
}
.single-main .news-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-top: 15px;
  line-height: 1.4;
}
.news-thumbnail {
  margin-bottom: 40px;
}
.news-thumbnail img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.news-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid #333;
}
.news-navigation a {
  color: #aaa;
  text-decoration: none;
  transition: 0.3s;
}
.news-navigation a:hover {
  color: #c19b4b;
}

/* =========================================
   【拡張性対応】水平フィルターバー ＆ モーダル
   ========================================= */

/* --- フィルター全体の枠 --- */
.shop-filter-wrapper {
  margin-bottom: 50px;
  position: relative;
  z-index: 100;
}

/* フォーム本体（PC：パネルデザイン） */
.shop-filter-form {
  background: rgba(19, 19, 19, 0.95);
  border: 1px solid #333;
  border-radius: 12px;
  padding: 25px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
}

/* --- 上段：メイン条件（エリア・予算） --- */
.filter-section-primary {
  display: flex;
  align-items: flex-end; /* 下揃え */
  gap: 30px;
  flex-wrap: wrap;
}

.filter-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.filter-label {
  color: #c19b4b;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.filter-control select {
  background: #000;
  border: 1px solid #444;
  color: #fff;
  padding: 10px 15px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.95rem;
  min-width: 160px;
}

/* 予算グループ（セレクトボックス2つ並び） */
.budget-group {
  display: flex;
  align-items: center;
  gap: 10px;
}
.budget-group select {
  min-width: 110px; /* 少し狭く */
}
.range-sep {
  color: #666;
  font-weight: bold;
}

/* 検索ボタン（PC） */
.pc-submit-area {
  margin-left: auto; /* 右端に寄せる */
}

.btn-filter-submit {
  background: linear-gradient(135deg, #c19b4b, #a07e36);
  border: none;
  color: #fff;
  padding: 12px 40px;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
  font-size: 1rem;
  white-space: nowrap;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
.btn-filter-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(193, 155, 75, 0.4);
}

/* --- 区切り線 --- */
.filter-divider {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 20px 0;
}

/* --- 下段：こだわりタグ --- */
.filter-section-secondary {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.filter-tags-wrapper {
  display: flex;
  flex-wrap: wrap; /* 折り返しを許可 */
  gap: 10px;
}

/* チェックボックス（ピル型） */
.checkbox-pill {
  position: relative;
  cursor: pointer;
}
.checkbox-pill input {
  display: none;
}
.checkbox-pill span {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid #444;
  background: #111;
  border-radius: 50px;
  color: #aaa;
  font-size: 0.85rem;
  transition: 0.3s;
}
.checkbox-pill input:checked + span {
  background: #c19b4b;
  color: #fff;
  border-color: #c19b4b;
  font-weight: 700;
}

/* PCではスマホ用パーツ非表示 */
.filter-header-mobile,
.shop-filter-overlay,
.mobile-submit-area {
  display: none;
}

/* --- スマホ詳細ページ ＆ フィルターレスポンシブ --- */
@media (max-width: 768px) {
  /* 詳細ページ全般 */
  .shop-info-table th,
  .shop-info-table td {
    font-size: 0.65rem;
    font-weight: 600;
  }
  .shop-info-table td a {
    font-size: 0.7rem;
  }
  .shop-hero {
    height: 300px;
  }
  .shop-content-container {
    padding: 30px 20px;
    margin-top: 0;
  }
  .section-title {
    font-size: 1.2rem;
    padding-left: 10px;
  }

  .section-title .en {
    display: block;
    margin-top: 2px;
    margin-left: 0;
  }
  .entry-content p {
    font-size: 0.8rem;
  }

  /* クイック情報バー（縦積み） */
  .shop-quick-info-bar {
    display: flex;
    flex-direction: column;
    padding: 5px 10px;
  }
  .quick-info-item {
    flex-direction: row;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 10px;
    align-items: center;
    text-align: left;
  }
  .quick-info-item:last-child {
    border-bottom: none;
  }
  .quick-info-item i {
    margin-bottom: 0;
    font-size: 1.4rem;
    width: 30px;
    text-align: center;
  }
  .quick-info-item > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
    line-height: 1.2;
  }
  .quick-info-item .label {
    font-size: 0.7rem;
  }
  .quick-info-item .value {
    font-size: 0.9rem;
  }

  /* タブ */
  .shop-tabs-nav.glow-tabs {
    gap: 10px;
  }
  .glow-tabs .tab-btn {
    font-size: 0.9rem;
    padding: 4px 0;
  }

  /* メニューカード・注釈 */
  .shop-tabs-content.menu-card-style {
    padding: 30px 20px;
    border-radius: 20px;
  }
  .menu-card-style .tab-panel-inner {
    font-size: 0.95rem;
    line-height: 2;
  }
  .menu-item-row {
    padding: 10px 0;
  }
  .menu-name {
    font-size: 0.95rem;
  }
  .menu-price {
    font-size: 1rem;
  }
  .shop-tabs-tax-note {
    font-size: 0.75rem;
    margin-bottom: 15px;
  }

  /* 店舗情報リスト（縦積み） */
  .shop-info-list-wrapper {
    padding: 30px 20px;
    border-radius: 20px;
  }
  .shop-info-list li {
    padding: 15px 0;
    font-size: 0.95rem;
  }
  .shop-info-list li.detail-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .shop-info-list li.detail-row .label {
    width: 100%;
    font-size: 0.8rem;
  }
  /* ▼▼▼ 修正：スマホ時のインデント方法を変更 ▼▼▼ */
  .shop-info-list li.detail-row .value {
    padding-left: 0;      /* パディングを解除（下線に含まれないようにする） */
    margin-left: 36px;    /* マージンで位置調整を行う */
    width: fit-content;   /* 幅を文字数に合わせる */
    font-size: 0.85rem;
  }

  /* マップ */
  .shop-map iframe {
    height: 300px;
  }

  /* ニュース */
  .news-list-item a {
    flex-direction: column;
    align-items: flex-start;
  }
  .news-meta {
    flex-direction: row;
    align-items: center;
    margin-bottom: 10px;
    gap: 10px;
  }
  .arrow-icon {
    display: none;
  }

  /* =========================================
     【スマホ版】フィルターモーダル
     ========================================= */
  .shop-filter-wrapper {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%; /* 全画面を覆う */
    z-index: 99999;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
    margin-bottom: 0;
    pointer-events: none; /* 閉じている時はクリック無効 */
  }

  .shop-filter-wrapper.is-active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .shop-filter-overlay {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
  }

  /* フォーム本体 */
  .shop-filter-form {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    /* ★重要：画面の85%までの高さにし、中身が多い場合はスクロールさせる */
    max-height: 85vh;
    overflow-y: auto; /* 縦スクロール有効 */

    background: #1a1a1a;
    border-radius: 20px 20px 0 0;

    /* ★フッターボタン被り対策の余白 (100px) */
    padding: 20px 20px 100px;

    transform: translateY(100%);
    transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: block; /* フレックス解除 */
    border: none;
    border-top: 1px solid #333;
  }

  .shop-filter-wrapper.is-active .shop-filter-form {
    transform: translateY(0);
  }

  /* モーダルヘッダー */
  .filter-header-mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #333;
    padding-bottom: 15px;
    margin-bottom: 20px;
    position: sticky; /* スクロールしても上に張り付く */
    top: -20px; /* padding分相殺 */
    background: #1a1a1a;
    z-index: 10;
    padding-top: 10px;
  }
  .filter-title {
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
  }
  .filter-close-btn {
    background: #333;
    border: none;
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
  }

  /* スマホでのレイアウト調整 */
  .filter-section-primary {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }

  .filter-control select,
  .budget-group select {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
  }

  .budget-group {
    gap: 10px;
  }

  /* PCのボタンは隠す */
  .pc-submit-area {
    display: none;
  }

  /* スマホ用ボタンを表示 */
  .mobile-submit-area {
    display: block;
    margin-top: 40px;
  }
  .btn-filter-submit.full-width {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
  }
}

/* =========================================
   店舗詳細：もっと見るボタンのスタイル復旧
========================================= */
.btn-detail-more {
  width: 100%;
  background: rgba(193, 155, 75, 0.1); /* 薄いゴールド背景 */
  border: 1px solid #c19b4b; /* ゴールド枠 */
  color: #c19b4b; /* ゴールド文字 */
  padding: 15px;
  margin: 20px auto;
  cursor: pointer;
  font-weight: 700;
  transition: 0.3s;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}

.btn-detail-more:hover {
  background: #c19b4b;
  color: #fff;
}

.btn-detail-more i {
  transition: transform 0.3s;
}

/* ボタンが開いた時のアイコン回転 */
.btn-detail-more.is-active i {
  transform: rotate(180deg);
}
@media (max-width: 768px) {
  .btn-detail-more {
    width: 70%;
    font-size: 0.9rem;
    padding: 9px;
  }
}

/* =========================================
   カテゴリ切り替えタブ
========================================= */
.category-switch-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.cat-tab-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  background: #111;
  color: #aaa;
  border: 1px solid #444;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 700;
  transition: all 0.3s ease;
  min-width: 120px;
}

.cat-tab-item i {
  font-size: 1.1rem;
}

.cat-tab-item:hover {
  background: #222;
  color: #c19b4b;
  border-color: #c19b4b;
}

/* 選択中のタブ（ゴールドに光る） */
.cat-tab-item.is-active {
  background: linear-gradient(135deg, #c19b4b, #a07e36);
  color: #fff;
  border-color: #c19b4b;
  box-shadow: 0 0 15px rgba(193, 155, 75, 0.4);
  transform: translateY(-2px);
}
.cat-tab-item.is-active:hover {
  color: #fff; /* ホバーしても白文字のまま */
}

/* スマホ表示調整（横並び維持・コンパクト版） */
@media (max-width: 768px) {
  .category-switch-tabs {
    gap: 6px; /* ボタン同士の間隔を詰める */
    margin-bottom: 25px;
    flex-wrap: nowrap; /* ★1行に収める（あふれる場合はスクロールさせたい場合は overflow-x: auto を追加）*/
    /* もし2行に折り返しても良い場合は flex-wrap: wrap; にしてください */
    flex-wrap: wrap;
  }

  .cat-tab-item {
    /* アイコンと文字を横並びのままにする */
    flex-direction: row;
    align-items: center;
    justify-content: center;

    /* 余白と文字サイズを極限まで絞る */
    padding: 10px 2px;
    gap: 3px;
    font-size: 0.7rem; /* 文字を小さく */

    /* 4つ並んでも入るように幅を調整 */
    flex: 1 0 22%; /* 幅22%確保して伸縮させる */
    min-width: auto; /* PC用の最小幅解除 */

    border-radius: 30px;
  }

  .cat-tab-item i {
    font-size: 0.9rem; /* アイコンも少し小さく */
  }

  /* テキストの調整 */
  .cat-tab-item .jp {
    display: inline-block;
    line-height: 1;
    white-space: nowrap;
    transform: translateY(1px); /* 微調整 */
  }
}

/* =========================================
   検索フィルターのレイアウト崩れ修正
========================================= */

/* PC表示でのフィルターセクション */
@media (min-width: 769px) {
  .shop-filter-form .filter-section-primary {
    display: flex; /* Flexboxで横並びにする */
    flex-wrap: nowrap !important; /* ★重要：絶対に折り返さない設定 */
    justify-content: flex-start; /* 左詰めで配置 */
    align-items: flex-end; /* 下揃えにして高さを合わせる */
    gap: 20px; /* 項目間の隙間 */
    width: 100%;
    padding-bottom: 0; /* 余計な下余白を削除 */
  }

  /* 各入力項目の入れ物 */
  .shop-filter-form .filter-section-primary .filter-item {
    flex: 1 1 auto; /* 幅を自動で伸縮させる */
    min-width: 140px; /* 最小幅を確保して潰れないようにする */
    margin-bottom: 0 !important; /* 余計な下余白を削除 */
  }

  /* 絞り込みボタンのエリア */
  .shop-filter-form .filter-section-primary .pc-submit-area {
    flex: 0 0 auto; /* ボタンの幅は伸縮させない（固定） */
    margin-left: auto !important; /* ★重要：左側に自動で余白を入れて右寄せにする */
    width: auto; /* 幅を中身に合わせる */
  }
}

/* =========================================
   「条件のクリア」ボタンと送信エリアのレイアウト
========================================= */

/* --- PC表示 --- */
@media (min-width: 769px) {
  /* ボタンエリアを縦積みに変更 */
  .shop-filter-form .filter-section-primary .pc-submit-area {
    display: flex;
    flex-direction: column; /* 縦に並べる */
    align-items: center; /* 中央揃え */
    justify-content: flex-end;
    gap: 8px; /* 上の文字とボタンの隙間 */
    margin-left: auto !important; /* 右端に寄せる */
    min-width: 200px; /* 幅を確保して中央揃えを安定させる */
    padding-bottom: 0;
  }

  /* クリアボタン（テキストリンク） */
  .btn-filter-reset {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    color: #888;
    font-size: 0.8rem; /* 少し小さく控えめに */
    font-weight: 500;
    margin-right: 0; /* 右余白削除 */
    transition: 0.3s;
    line-height: 1;
  }

  .btn-filter-reset:hover {
    color: #fff;
    text-decoration: underline;
  }
}

/* --- スマホ表示 --- */
@media (max-width: 768px) {
  /* スマホのボタンエリアも縦積み・中央揃え */
  .mobile-submit-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px; /* 文字とボタンの隙間 */
    margin-top: 30px;
  }

  /* スマホ用クリアボタン（テキストリンク） */
  .btn-filter-reset-mobile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: auto; /* 横幅いっぱいにしない */
    text-decoration: none;
    color: #999;
    border: none; /* 枠線なし */
    background: transparent; /* 背景なし */
    padding: 0;
    margin-bottom: 0;
    font-weight: 500;
    font-size: 0.85rem;
  }

  .btn-filter-reset-mobile:hover {
    color: #fff;
    background: transparent;
  }
}

/* =========================================
   マップ検索ページ用スタイル
========================================= */

/* 地図を表示するコンテナ */
.map-container-wrapper {
  width: 100%;
  height: 80vh;
  min-height: 500px;
  position: relative;
  background: #000;
}

/* Leafletの地図本体 */
#shop-map-canvas {
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* 現在地ボタン */
.btn-map-current {
  position: absolute;
  bottom: 30px;
  right: 20px;
  z-index: 999;

  background: #fff;
  color: #333;
  border: 1px solid #ccc;
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s;

  display: flex;
  align-items: center;
  gap: 8px;
}
.btn-map-current i {
  color: #c19b4b;
  font-size: 1.1rem;
}
.btn-map-current:hover {
  background: #f9f9f9;
  transform: translateY(-2px);
}

/* --- 地図上のポップアップ（吹き出し）のデザイン --- */
/* ★修正：!important をつけて、Leafletの標準スタイルに絶対に負けないようにします */
.leaflet-popup-content-wrapper {
  background: #1a1a1a !important; /* 背景色：黒系 */
  color: #fff !important;
  border-radius: 8px !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5) !important;
  padding: 0 !important; /* 余白をゼロにして画像を端まで表示 */
  overflow: hidden !important;
  border: 1px solid #333;
}

.leaflet-popup-content {
  margin: 0 !important;
  width: 260px !important; /* 幅を固定 */
  line-height: 1.4 !important;
}

/* 吹き出しの三角部分 */
.leaflet-popup-tip {
  background: #1a1a1a !important;
}

/* ×ボタン */
.leaflet-container a.leaflet-popup-close-button {
  color: #fff !important;
  font-size: 18px !important;
  font-weight: bold !important;

  /* 位置を少し内側にずらす */
  top: 8px !important;
  right: 8px !important;

  /* 丸いボタンの形にする */
  width: 30px !important;
  height: 30px !important;
  line-height: 30px !important;
  padding: 0 !important;
  text-align: center;

  /* 背景をつけて見やすく */
  background: rgba(0, 0, 0, 0.6) !important;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  text-shadow: none !important;
  z-index: 20;
  transition: 0.3s;
}

/* ホバー時の動き */
.leaflet-container a.leaflet-popup-close-button:hover {
  background: #c19b4b !important; /* ゴールド */
  color: #fff !important;
}

/* ポップアップの中身 */
.map-popup-content a {
  display: block;
  text-decoration: none;
  color: #fff !important;
}

.popup-thumb {
  width: 100%;
  height: 180px; /* 写真エリアの高さを指定 */
  background: #000; /* 写真の周囲（余白）を黒くする */
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 写真本体の表示設定 */
.popup-thumb img {
  width: 100%;
  height: 100%;
  /* 重要：比率を保ったまま、全体が収まるように表示する */
  object-fit: contain;
}

/* 画像の上に薄い影を落として×ボタンを見やすくする */
.popup-thumb::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), transparent);
}

.popup-info {
  padding: 15px;
}

.popup-cat {
  display: inline-block;
  background: #c19b4b;
  color: #fff;
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 8px;
  font-weight: bold;
}

.popup-title {
  font-size: 16px;
  font-weight: bold;
  margin: 0 0 10px;
  line-height: 1.4;
  color: #fff;
}

.popup-link {
  font-size: 12px;
  color: #ccc;
  display: block;
  text-align: right;
}

.map-popup-content a:hover .popup-title {
  color: #c19b4b;
}

/* =========================================
   掲載案内ページ (page-partners.php)
   ========================================= */

/* 背景設定 */
.partners-main {
  padding-top: 90px;
  background-color: #000;
  color: #fff;
  min-height: 100vh;
}

/* 1. ヒーローエリア */
.partners-hero {
  position: relative;
  height: 60vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url("../images/hero-bg.jpg") no-repeat center center/cover;
  margin-bottom: 80px;
}
.partners-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(3px);
}
.partners-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 20px;
}
.partners-title {
  margin-bottom: 20px;
}
.partners-lead {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 40px;
  color: #ddd;
}

/* ヒーローエリアのボタン */
.btn-partners-hero {
  display: inline-block;
  background: linear-gradient(135deg, #c19b4b, #a07e36);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 13px 50px;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: 0 10px 25px rgba(193, 155, 75, 0.4);
}
.btn-partners-hero:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(193, 155, 75, 0.6);
}

/* ヒーローエリアの文字装飾 */
.partners-hero-sub {
  color: #000;
  font-weight: 800;
  background: #c19b4b;
  padding: 4px 15px;
  display: inline-block;
  border-radius: 4px;
  margin-bottom: 15px;
  letter-spacing: 0.05em;
  font-size: 1.2rem;
}
.partners-hero-main {
  display: block;
  font-size: 3.5rem;
  letter-spacing: 3px;
  line-height: 1.2;
  margin-top: 15px;
}
.text-gold {
  color: #c19b4b;
  font-size: 4.5rem;
  display: inline-block;
  margin-top: 20px;
}
.text-gold-border {
  color: #c19b4b;
  font-weight: bold;
  border-bottom: 1px solid #c19b4b;
}

/* コンテナ */
.partners-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px 100px;
}
.partners-section {
  margin-bottom: 100px;
}

/* 2. メリットカード */
.merit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.merit-card {
  background: #111;
  border: 1px solid #333;
  padding: 25px 30px;
  border-radius: 12px;
  text-align: center;
  transition: 0.3s;
}
.merit-card:hover {
  border-color: #c19b4b;
  transform: translateY(-5px);
}
.merit-icon {
  font-size: 3rem;
  color: #c19b4b;
  margin-bottom: 20px;
}
.merit-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 700;
  letter-spacing: 1px;
}
.merit-card p {
  font-size: 0.95rem;
  color: #aaa;
  line-height: 1.8;
  text-align: left;
}

/* 3. プラン比較テーブル (Grid) */
.comparison-grid {
  display: flex;
  justify-content: center;
  align-items: stretch; /* 高さを揃える */
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

/* 共通カード */
.plan-card {
  flex: 1;
  min-width: 300px;
  max-width: 450px;
  background: #1a1a1a;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  border: 3px solid #333;
  display: flex;
  flex-direction: column;
}

/* ヘッダー統一 */
.plan-header {
  height: 240px; /* 高さ固定 */
  padding: 70px 20px 30px;
  text-align: center;
  background: #222;
  border-bottom: 1px solid #333;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.plan-header h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  color: #888;
  margin: 0 0 5px 0;
}
.plan-header .plan-name {
  display: block;
  font-size: 1rem;
  color: #aaa;
  margin-bottom: auto;
}
.plan-header .plan-price {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-top: 15px;
}
.plan-header .unit {
  font-size: 1rem;
  font-weight: 400;
  margin-left: 5px;
}

/* フリープラン (Free) */
.plan-card.plan-free {
  border-color: #444;
  border-top: 5px solid #666;
}
.plan-card.plan-free .plan-header h3 {
  color: #999;
}
.plan-card.plan-free .plan-price {
  font-size: 2.5rem;
}

/* プレミアムプラン (Premium) */
.plan-card.plan-premium {
  border: 3px solid #c19b4b;
  z-index: 10;
  box-shadow: 0 10px 40px rgba(193, 155, 75, 0.2);
  background: #151515;
}
.plan-card.plan-premium .plan-header {
  background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
}
.plan-card.plan-premium h3 {
  color: #c19b4b;
  text-shadow: 0 0 10px rgba(193, 155, 75, 0.3);
}
.plan-card.plan-premium .plan-price {
  color: #c19b4b;
}

/* バッジ */
.plan-card.plan-premium .plan-badge {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  line-height: 40px;
  background: #c19b4b;
  color: #000;
  font-weight: 800;
  text-align: center;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  z-index: 2;
}

/* 特徴リスト */
.plan-features {
  padding: 0;
  margin: 0;
  list-style: none;
  flex-grow: 1;
  background: #1a1a1a;
}
.plan-features li {
  font-size: 0.9rem;
  height: 60px; /* 高さ固定 */
  padding: 0 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.plan-features li:last-child {
  border-bottom: none;
}
.plan-features li i {
  width: 25px;
  text-align: center;
  margin-right: 10px;
  flex-shrink: 0;
  color: #c19b4b;
}

/* 制限・強調・不可のスタイル */
.plan-features li.limit {
  color: #aaa;
}
.plan-features li.limit strong {
  color: #fff;
  margin-left: auto;
  background: #444;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
}
.plan-features li.highlight {
  color: #fff;
  background: rgba(193, 155, 75, 0.05);
}
.plan-features li.highlight i {
  color: #c19b4b;
}
.plan-features li.highlight strong {
  color: #000;
  margin-left: auto;
  background: #c19b4b;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
}
.plan-features li.unavailable {
  color: #555;
  text-decoration: line-through;
}
.plan-features li.unavailable i {
  color: #555;
}

/* 価格打ち消し線 */
.price-strike {
  display: block;
  font-size: 1rem;
  text-decoration: line-through;
  color: #888;
  margin-bottom: 5px;
}

/* 注意書き */
.plan-note {
  background: #222;
  padding: 30px; /* 余白を少し広げてリッチに */
  text-align: center;
  font-size: 0.9rem; /* 文字を少し大きく */
  color: #ccc;
  line-height: 1.8;

  /* ▼▼▼ 追加：横幅を制限して中央寄せにする ▼▼▼ */
  max-width: 680px; /* 横幅を程よいサイズに制限 */
  margin: 40px auto 0; /* 上に余白、左右は自動（中央寄せ） */
  border-radius: 10px; /* 角を少し丸くして柔らかく */
  border: 1px solid #333; /* 薄い枠線で輪郭をはっきりさせる */
}
.note-title {
  margin-bottom: 15px;
  color: #fff;
  font-size: 1.1rem;
}
.note-title i {
  color: #c19b4b;
}
/* 左のアイコン */
.note-title i:first-child {
  margin-right: 8px;
}
/* 右のアイコン */
.note-title i:last-child {
  margin-left: 8px;
}
/* 4. 流れ */
.flow-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}
.flow-step {
  display: flex;
  align-items: center;
  background: #111;
  border: 1px solid #333;
  padding: 30px;
  border-radius: 12px;
}
.step-num {
  font-family: "Montserrat", sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: #c19b4b;
  opacity: 0.3;
  margin-right: 30px;
  line-height: 1;
}
.step-content h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.step-content p {
  color: #aaa;
  font-size: 0.95rem;
  margin: 0;
}
/* ステップ内の注釈 */
.step-note {
  font-size: 0.85em;
  color: #999;
  display: block;
  margin-top: 8px;
  line-height: 1.6;
}

/* 5. CTA */
.partners-cta {
  background:
    linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url("../images/hero-bg.jpg") no-repeat center center/cover;
  padding: 80px 20px;
  text-align: center;
  border-radius: 20px;
  border: 1px solid #c19b4b;
}
.cta-inner h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
.cta-inner p {
  color: #ddd;
  margin-bottom: 40px;
}
.btn-cta-main {
  display: inline-block;
  background: #fff;
  color: #000;
  font-weight: 700;
  padding: 15px 60px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1rem;
  transition: 0.3s;
}
.btn-cta-main:hover {
  background: #c19b4b;
  color: #fff;
}

@media (max-width: 768px) {
  /* --- 基本設定の調整 --- */
  .partners-main {
    padding-top: 0;
  }
  .partners-hero {
    height: auto;
    min-height: 450px; /* 少し高さを抑える */
    padding: 60px 0;
  }
  .partners-hero-sub {
    margin-top: 60px;
    font-size: 0.8rem;
  }
  .partners-hero-main {
    font-size: 2.2rem; /* サイズ調整 */
    letter-spacing: 0.4px;
    margin-top: 20px;
  }

  .text-gold {
    font-size: 3.2rem;
    letter-spacing: 4px;
    margin-top: 15px;
  }

  /* --- ヒーローエリアのリード文 --- */
  .partners-lead {
    font-size: 0.9rem;
    line-height: 1.8;
    text-align: justify;
    padding: 0 15px;
    margin: 35px auto 60px;
    width: 70%;
    min-width: 330px;
  }
  .partners-lead br {
    display: none; /* スマホでは改行無効 */
  }

  /* ヒーローエリアのボタン調整 */
  .btn-partners-hero {
    padding: 12px 30px;
    font-size: 1rem;
  }

  /* --- プラン比較 --- */
  .comparison-grid {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .plan-card {
    width: 100%;
    max-width: 100%;
  }
  .plan-card.plan-premium {
    order: -1;
  }

  /* --- 1. 掲載までの流れ (Flow) --- */
  .flow-step {
    flex-direction: column;
    align-items: flex-start !important; /* 左端に合わせる */
    text-align: left !important; /* 文字を左揃えにする */
    padding: 30px 25px !important; /* 余白調整 */
  }

  .step-num {
    margin: 0 0 10px 0;
    text-align: left; /* 数字も左に */
    width: 100%;
    font-size: 2rem; /* 少し小さく調整 */
  }

  .step-content {
    width: 100%;
  }

  .step-content h3 {
    text-align: left; /* タイトルも左揃え */
    margin-bottom: 10px;
    font-size: 1.1rem;
  }

  .step-content p,
  .step-note {
    text-align: left !important;
    line-height: 1.8;
    display: block;
  }

  /* STEP03の注釈内の改行を無効化 */
  .step-note br {
    display: none;
  }

  /* --- 2. ご注意ください (Note) --- */
  .plan-note {
    padding: 25px 20px !important;
    text-align: left !important; /* 左揃え */
    margin: 30px auto 0 !important;
  }
  .plan-note br {
    display: none; /* 改行無効 */
  }
  .note-title {
    text-align: center; /* タイトルだけは真ん中でもOK */
    margin-bottom: 15px;
  }

  /* --- 3. CTA (お問い合わせ) --- */
  .partners-cta {
    padding: 60px 20px;
  }

  .cta-inner h2 {
    font-size: 1.3rem; /* サイズを下げて1行～2行に綺麗に収める */
    line-height: 1.5;
    margin-bottom: 15px;
    word-break: auto-phrase; /* 可能なブラウザで単語の区切りを綺麗に */
  }

  .cta-inner h2 .cta-br {
    display: inline !important;
  }

  .cta-inner p {
    text-align: left !important; /* 説明文は左揃えで読みやすく */
    line-height: 1.8;
    padding: 0 5px;
    margin-bottom: 30px;
  }

  .cta-inner br {
    display: none; /* 変な位置での改行を防ぐ */
  }

  .btn-cta-main {
    width: 100%;
    padding: 15px;
    font-size: 1rem;
    box-sizing: border-box; /* パディングを含めた幅計算 */
  }
}
.popup-actions a {
  flex: 1; /* 横幅を均等に */
  text-align: center;
  padding: 8px 0;
  border-radius: 4px;
  font-size: 0.8rem !important;
  font-weight: 700;
  text-decoration: none;
  display: block;
}

/* 詳細ボタン */
.btn-popup-detail {
  background: #333;
  border: 1px solid #555;
  color: #fff !important;
}

/* ルート案内ボタン */
.btn-popup-route {
  background: #c19b4b;
  border: 1px solid #c19b4b;
  color: #fff !important;
}

/* ポップアップ全体のリンク色リセット */
.map-popup-content a.popup-main-link {
  color: inherit;
  text-decoration: none;
}
/* =========================================
   クーポン機能 (Coupon Style)
   ========================================= */
.shop-coupon-wrapper {
  margin-bottom: 40px;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.5));
}

.coupon-ticket {
  display: flex;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  /* チケットのミシン目（擬似要素で表現） */
  mask-image: radial-gradient(
    circle at 12px 12px,
    transparent 12px,
    black 13px
  );
  mask-position: -12px -12px;
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
}

/* --- 左側（縦帯） --- */
.coupon-left {
  background: linear-gradient(135deg, #c19b4b, #a07e36);
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 2px dashed rgba(255, 255, 255, 0.3);
  position: relative;
}
.coupon-v-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.2em;
  font-size: 1.2rem;
  font-family: "Montserrat", sans-serif;
  transform: rotate(180deg); /* 下から上に読む場合 */
}

/* --- 右側（内容） --- */
.coupon-right {
  flex: 1;
  padding: 20px 25px;
  background: linear-gradient(to bottom, #fff 0%, #f9f9f9 100%);
  color: #333;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.coupon-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #c19b4b;
  margin: 0 0 5px;
  line-height: 1.3;
}

.coupon-note {
  font-size: 0.8rem;
  color: #888;
  margin: 0 0 15px;
}

/* --- アクションエリア --- */
.coupon-action-area {
  margin-top: 5px;
  margin-right: 10px;
}

/* 利用するボタン */
.btn-coupon-use {
  width: 100%;
  background: linear-gradient(135deg, #333, #000);
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.btn-coupon-use:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
  background: linear-gradient(135deg, #444, #111);
}
.btn-coupon-use i {
  color: #c19b4b;
}

/* 使用済み・タイマー表示 */
.coupon-timer-box {
  text-align: center;
  background: #f0f0f0;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ddd;
}
.coupon-status-used {
  font-weight: 900;
  color: #e53935; /* 赤色 */
  font-size: 1.2rem;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.timer-count {
  font-size: 0.9rem;
  color: #555;
  font-weight: 600;
  margin: 0;
}
.timer-count span {
  font-family: monospace; /* 数字の幅を揃える */
  font-size: 1.1rem;
  color: #333;
}

/* スマホ調整 */
@media (max-width: 768px) {
  .coupon-ticket {
    flex-direction: column;
  }
  .coupon-left {
    width: 100%;
    height: 40px;
    border-right: none;
    border-bottom: 2px dashed rgba(255, 255, 255, 0.3);
  }
  .coupon-v-text {
    writing-mode: horizontal-tb;
    transform: none;
    letter-spacing: 0.1em;
    font-size: 1rem;
  }
  .coupon-right {
    padding: 20px;
  }
  .coupon-title {
    font-size: 1.2rem;
  }
}

/* ==================================================
   特集ページ (Pickup Page) - インパクト強化版
   ================================================== */
.pickup-page-container {
  background-color: #000;
  min-height: 100vh;
  padding-bottom: 80px;
  color: #fff;
}

/* ヒーローヘッダー：よりダイナミックに */
.pickup-hero {
  position: relative;
  height: 380px; /* 高さを増やす */
  background: url("../images/hero-bg.jpg") no-repeat center center/cover;
  background-color: #050505;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}
.pickup-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* グラデーションを調整して文字を浮き立たせる */
  background: radial-gradient(
    circle,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.9) 100%
  );
}

.pickup-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  margin-top: 30px;
}

.pickup-hero-title {
  font-size: 3.5rem; /* 文字サイズアップ */
  font-weight: 900;
  color: #c19b4b; /* 完全なゴールド */
  letter-spacing: 0.15em;
  margin: 70px 0 10px;
  /* 強い光沢感のあるシャドウ */
  text-shadow:
    0 0 20px rgba(193, 155, 75, 0.6),
    2px 2px 0 #000;
  font-family: "Montserrat", sans-serif;
}
@media (max-width: 768px) {
  .pickup-hero-title {
    font-size: 2.2rem; /* スマホでのサイズ調整 */
    letter-spacing: 0.1em;
    margin: 50px 0 10px;
  }
}

.pickup-hero-sub {
  font-size: 1.2rem;
  color: #fff;
  letter-spacing: 0.3em;
  margin: 0;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}
@media (max-width: 768px) {
  .pickup-hero-sub {
    font-size: 0.9rem; /* スマホでのサイズ調整 */
    letter-spacing: 0.2em;
  }
}

.pickup-content-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 導入文：高級感を出す装飾 */
.pickup-intro {
  text-align: center;
  font-size: 1.05rem;
  line-height: 2.2;
  color: #eee;
  margin-bottom: 70px;
  padding: 30px 0;
  /* 上下に金のラインを引く */
  border-top: 1px solid rgba(193, 155, 75, 0.5);
  border-bottom: 1px solid rgba(193, 155, 75, 0.5);
  background: linear-gradient(
    to right,
    transparent,
    rgba(193, 155, 75, 0.05),
    transparent
  );
}

/* --- グリッドレイアウト --- */
.pickup-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.pickup-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #000; /* 画像ロード前用の黒背景 */
}

/* PCのみ：ホバーで少し浮く */
@media (min-width: 769px) {
  .pickup-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(193, 155, 75, 0.2);
  }
}

.pickup-card-link {
  display: block;
  text-decoration: none;
  color: #fff;
  position: relative;
  width: 100%;
  /* 縦長比率を維持（スマホは変更あり） */
  aspect-ratio: 3 / 4; 
}

/* 画像エリア（背景画像として表示） */
.pickup-card-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transition: transform 0.5s ease;
}

/* PCのみ：ホバーで画像ズーム */
.pickup-card:hover .pickup-card-image {
  transform: scale(1.05);
}

/* オーバーレイ（文字を読ませるためのグラデーション） */
.pickup-card-image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%; /* 下半分を中心に暗くする */
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.6) 50%,
    transparent 100%
  );
  z-index: 2;
}

/* --- ラベル類 --- */
.pickup-cat-label {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(193, 155, 75, 0.9); /* 少し透過 */
  color: #000;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 4px;
  z-index: 3;
  backdrop-filter: blur(4px);
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.pickup-invoice-label {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0, 105, 92, 0.9); /* 少し透過 */
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.2);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 5px;
  backdrop-filter: blur(4px);
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.pickup-invoice-label i {
    font-size: 0.8rem;
}

/* テキストエリア */
.pickup-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  z-index: 4; /* グラデーションより上 */
  box-sizing: border-box;
}

/* 店名 */
.pickup-card-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 10px;
  line-height: 1.3;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.8);
  /* 下線は削除し、文字の強さで勝負 */
  border-bottom: none; 
  padding-bottom: 0;
}

/* 予算・時間情報 */
.pickup-card-info {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
  color: #eee;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pickup-card-info li {
  display: flex;
  align-items: center;
  gap: 6px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.8);
}

.pickup-card-info li i {
  color: #c19b4b; /* アイコンはゴールド */
}

/* 詳細を見るボタン：金塊スタイル */
.btn-pickup-more {
  margin-top: auto;
  display: block;
  text-align: center;
  /* 常時ゴールドグラデーション */
  background: linear-gradient(135deg, #c19b4b 0%, #a37e36 100%);
  color: #fff;
  padding: 14px;
  border-radius: 50px; /* 丸みを強く */
  font-size: 1rem;
  font-weight: 700;
  border: none;
  transition: all 0.3s;
  letter-spacing: 0.1em;
  box-shadow: 0 4px 10px rgba(193, 155, 75, 0.3);
}

.pickup-card:hover .btn-pickup-more {
  transform: scale(1.05); /* 少し大きくなる */
  box-shadow: 0 6px 15px rgba(193, 155, 75, 0.5); /* 影を強調 */
  filter: brightness(1.1); /* 明るく */
}


/* 戻るリンク */
.pickup-back-link {
  text-align: center;
  margin-top: 80px;
  padding-bottom: 20px; /* 下に少し余白を確保 */
}

.pickup-back-link a {
  display: inline-block;          /* ボタンの形にする */
  background-color: transparent;  /* 背景透明 */
  border: 1px solid #c19b4b;      /* 金色の枠線 */
  color: #c19b4b;                 /* 金色の文字 */
  padding: 12px 40px;             /* ボタンの大きさ */
  border-radius: 50px;            /* 丸くする */
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: 0.05em;
}

/* ホバー時の動き */
.pickup-back-link a:hover {
  background-color: #c19b4b;      /* 背景を金に */
  color: #fff;                    /* 文字を白に */
  transform: translateY(-2px);    /* 少し浮き上がる */
  box-shadow: 0 5px 15px rgba(193, 155, 75, 0.4); /* 影をつける */
}
/* ==================================================
   スマホ調整 (max-width: 768px)
   ================================================== */
@media (max-width: 768px) {
  .pickup-hero {
    height: 280px;
    margin-bottom: 20px;
  }
  
  .pickup-intro {
    padding: 20px 0;
    margin-bottom: 40px;
    font-size: 0.95rem;
    line-height: 1.8;
  }
  .pickup-intro .pc-only { display: none; }

  /* スマホでのグリッド：1列表示 */
  .pickup-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* カードリンク：縦長比率を維持 */
  .pickup-card-link {
    aspect-ratio: 3 / 4; /* 縦長ポスターサイズ */
  }
  
  /* スマホでは文字サイズを調整 */
  .pickup-card-title {
    font-size: 1.5rem; /* 少し大きくしてインパクト重視 */
  }
  
  /* 営業時間はスマホでは非表示にしてスッキリさせる（PHPでクラス付与済み） */
  .pickup-card-info li.info-hours {
    display: none; 
  }

  .pickup-card-info {
    font-size: 0.85rem;
  }
}

/* ==================================================
   マップページ (Map Page)
   ================================================== */
.map-page-container {
  position: relative;
  width: 100%;
  /* PCでは画面いっぱい（ヘッダー分引く） */
  height: calc(100vh - 80px);
}

#shop-map-canvas {
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* 現在地ボタンのデザイン調整 */
.current-location-btn-wrapper {
  position: absolute;
  bottom: 30px;
  right: 20px;
  z-index: 1000; /* 地図より上に */
}

.btn-current-location {
  background: #fff;
  color: #333;
  border: 2px solid #ccc;
  border-radius: 50px;
  padding: 10px 20px;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-current-location:hover {
  background: #f0f0f0;
  color: #000;
}

/* ▼▼▼ スマホ調整（高さを抑える） ▼▼▼ */
@media (max-width: 768px) {
  .map-page-container {
    /* スマホでは画面の半分くらいの高さにする */
    height: 60vh;
    min-height: 400px; /* 小さくなりすぎないように最低ライン確保 */
  }

  .current-location-btn-wrapper {
    bottom: 80px; /* フッターメニューと被らないように少し上げる */
    right: 15px;
  }
}
/* ==================================================
   マップページ用ヒーローエリア修飾
   ================================================== */
.portal-hero {
  position: relative;
  background-color: #000;
  /* 背景画像があれば指定、なければ黒背景になります */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 100%;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* 少し暗くする */
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 0 15px;
}

.portal-title {
  margin: 0 0 10px;
  font-family: "Montserrat", sans-serif;
  line-height: 1;
}

.portal-title .title-top {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #c19b4b; /* ゴールド */
  letter-spacing: 0.1em;
  text-shadow: 0 0 10px rgba(193, 155, 75, 0.3);
}

.portal-sub {
  font-size: 0.85rem;
  color: #ddd;
  margin: 0;
  letter-spacing: 0.05em;
}

/* スマホ調整 */
@media (max-width: 768px) {
  .portal-title .title-top {
    font-size: 1.5rem;
  }
}

/* ==================================================
   マップ：現在地ポップアップの修正（最終版）
   ================================================== */

/* 外枠の幅をコンテンツに合わせる */
.user-popup-style {
  width: max-content !important;
}

/* 吹き出しの箱 */
.user-popup-style .leaflet-popup-content-wrapper {
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  border-radius: 4px;
  padding: 0; /* 内側の余白をゼロに */
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
  width: fit-content !important; /* CSSでも幅自動調整 */
}

/* テキスト部分 */
.user-popup-style .leaflet-popup-content {
  margin: 5px 10px !important; /* 必要最小限の余白 */
  width: max-content !important; /* 文字数に合わせる */
  min-width: unset !important;
  font-size: 0.8rem;
  font-weight: bold;
  line-height: 1.2;
  white-space: nowrap; /* 改行させない */
}

/* 三角部分 */
.user-popup-style .leaflet-popup-tip {
  background: rgba(0, 0, 0, 0.85);
}

/* 閉じるボタン非表示 */
.user-popup-style .leaflet-popup-close-button {
  display: none !important;
}

/* ==================================================
   マップ：有料店舗用ピンのデザイン
   ================================================== */
.premium-map-pin {
  background: transparent;
  border: none;
}

.premium-map-pin .pin-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 3px solid #c19b4b; /* ゴールドの枠線 */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); /* 影をつけて浮き上がらせる */
  position: relative;
  background-color: #000;
  transition: transform 0.3s ease;
}

/* ピンの下の三角（吹き出しのしっぽ） */
.premium-map-pin .pin-inner::after {
  content: "";
  position: absolute;
  bottom: -8px; /* 本体の下に配置 */
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 10px solid #c19b4b; /* ゴールドの三角 */
}

/* ホバー時に少し拡大 */
.premium-map-pin:hover .pin-inner {
  transform: scale(1.1);
  z-index: 9999;
  border-color: #e6c172; /* 枠を少し明るく */
}

/* ==================================================
   【スマホ用調整】マップのポップアップを小さくする
   ================================================== */
@media (max-width: 768px) {
  /* ポップアップ全体の幅を縮小 */
  .leaflet-popup-content {
    width: 220px !important; /* PC: 260px → スマホ: 220px */
  }

  /* 写真エリアの高さを縮小 */
  .popup-thumb {
    height: 130px !important; /* PC: 180px → スマホ: 130px */
  }

  /* 店名の文字サイズを少し小さく */
  .popup-title {
    font-size: 14px !important;
    margin-bottom: 5px !important;
  }

  /* カテゴリバッジも控えめに */
  .popup-cat {
    font-size: 9px !important;
    padding: 2px 6px !important;
    margin-bottom: 5px !important;
  }

  /* ボタンの余白を詰める */
  .popup-actions {
    padding: 0 10px 12px !important;
  }
  .popup-actions a {
    font-size: 0.7rem !important; /* 文字を少し小さく */
    padding: 6px 0 !important; /* ボタンの高さを低く */
  }

  /* 閉じるボタン(×)も少し小さくして邪魔にならないように */
  .leaflet-container a.leaflet-popup-close-button {
    width: 24px !important;
    height: 24px !important;
    line-height: 24px !important;
    font-size: 14px !important;
    top: 5px !important;
    right: 5px !important;
  }
}

/* ==================================================
   プラン比較テーブルのデザイン (Comparison Table) - 修正版
   ================================================== */

/* グリッドレイアウト */
.comparison-grid {
  display: flex;
  justify-content: center;
  align-items: stretch; /* カードの高さを揃える */
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

/* 共通カード設定 */
.plan-card {
  flex: 1;
  min-width: 300px;
  max-width: 450px;
  background: #1a1a1a;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  border: 3px solid #333; /* 枠線を統一 */
  display: flex;
  flex-direction: column;
}

/* --- ヘッダーの高さと位置を完全統一 --- */
.plan-header {
  height: 240px; /* ★重要：高さを固定 */
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* 上から順に並べる（中央寄せにしない） */
  align-items: center;
  box-sizing: border-box;
  background: #222;
  border-bottom: 1px solid #333;

  /* ★重要：バッジの有無に関わらず、上からの余白を統一して開始位置を揃える */
  padding-top: 70px;
  padding-bottom: 30px;
}

.plan-header h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  color: #888;
  margin: 0 0 5px 0;
  line-height: 1.2;
}

.plan-header .plan-name {
  display: block;
  font-size: 1rem;
  color: #aaa;
  margin-bottom: auto; /* 価格を下に押しやる */
}

.plan-header .plan-price {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-top: 15px; /* 名前との間隔 */
}

.plan-header .unit {
  font-size: 1rem;
  font-weight: 400;
  margin-left: 5px;
}

/* --- フリープラン (Free) --- */
.plan-card.plan-free {
  border-color: #444;
  border-top: 5px solid #666;
}
.plan-card.plan-free .plan-header h3 {
  color: #999;
}
.plan-card.plan-free .plan-price {
  color: #fff;
  font-size: 2.5rem; /* フリーは少し小さく */
}

/* --- プレミアムプラン (Premium) --- */
.plan-card.plan-premium {
  border: 3px solid #c19b4b; /* 全周ゴールド */
  transform: none;
  z-index: 10;
  box-shadow: 0 10px 40px rgba(193, 155, 75, 0.2);
  background: #151515;
}
.plan-card.plan-premium .plan-header {
  background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
  /* padding-topは共通設定(70px)を引き継ぐので記述不要 */
}
.plan-card.plan-premium h3 {
  color: #c19b4b;
  text-shadow: 0 0 10px rgba(193, 155, 75, 0.3);
}
.plan-card.plan-premium .plan-price {
  color: #c19b4b;
}

/* バッジ（プレミアムのみ） */
.plan-card.plan-premium .plan-badge {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px; /* 高さを明示 */
  line-height: 40px;
  background: #c19b4b;
  color: #000;
  font-weight: 800;
  text-align: center;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  z-index: 2;
}

/* --- リスト装飾（行揃え） --- */
.plan-features {
  padding: 0;
  margin: 0;
  list-style: none;
  flex-grow: 1;
  background: #1a1a1a;
}

.plan-features li {
  font-size: 0.9rem;
  height: 60px; /* ★行の高さを固定して左右のズレを防ぐ */
  padding: 0 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.plan-features li:last-child {
  border-bottom: none;
}

.plan-features li i {
  width: 25px;
  text-align: center;
  margin-right: 10px;
  flex-shrink: 0;
}

/* 制限ありの項目（Limit） */
.plan-features li.limit {
  color: #aaa;
}
.plan-features li.limit strong {
  color: #fff;
  margin-left: auto; /* 右寄せ */
  background: #444;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
}

/* 有料機能（Highlight） */
.plan-features li.highlight {
  color: #fff;
  background: rgba(193, 155, 75, 0.05);
}
.plan-features li.highlight i {
  color: #c19b4b;
}
.plan-features li.highlight strong {
  color: #000;
  margin-left: auto;
  background: #c19b4b;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
}

/* 利用不可（Unavailable） */
.plan-features li.unavailable {
  color: #555;
  text-decoration: line-through;
}
.plan-features li.unavailable i {
  color: #555;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .comparison-grid {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .plan-card {
    width: 100%;
    max-width: 100%;
  }
  .plan-card.plan-premium {
    order: -1;
  }
}
/* =========================================
   店舗検索バー (Keyword Search)
   ========================================= */
.shop-search-container {
    max-width: 600px;
    margin: 0 auto 40px; /* 下に余白 */
    padding: 0 20px;
    position: relative;
    z-index: 5;
}

.shop-search-form {
    display: flex;
    position: relative;
    width: 100%;
}

/* 入力フィールド */
.shop-search-form .search-field {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #444;
    border-radius: 50px;
    padding: 15px 60px 15px 25px; /* 右側はボタンの分空ける */
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.shop-search-form .search-field::placeholder {
    color: #888;
}

/* フォーカス時の光沢 */
.shop-search-form .search-field:focus {
    background: rgba(0, 0, 0, 0.8);
    border-color: #c19b4b;
    outline: none;
    box-shadow: 0 0 15px rgba(193, 155, 75, 0.3);
}

/* 検索ボタン（虫眼鏡） */
.shop-search-form .search-submit {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #c19b4b;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shop-search-form .search-submit:hover {
    color: #fff;
    background: #c19b4b;
    box-shadow: 0 0 10px rgba(193, 155, 75, 0.5);
}

/* スマホ調整 */
@media (max-width: 768px) {
    .shop-search-container {
        margin-bottom: 30px;
    }
    .shop-search-form .search-field {
        font-size: 0.9rem;
        padding: 12px 50px 12px 20px;
    }
}

/* ==================================================
   店舗カード改善：リスト型＆視認性向上
   ================================================== */

/* --- ラベル（タグ）の共通スタイル --- */
/* PC・スマホ共通で「情報エリア内」に配置するための設定 */
.card-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px; /* 店名との余白 */
  pointer-events: auto;
  position: static; /* 絶対配置を解除し、自然な流れで表示 */
}

/* 業態カテゴリ：ゴールド枠線 */
.shop-category {
  font-size: 0.7rem;
  padding: 3px 10px;
  border-radius: 4px;
  line-height: 1;
  display: inline-block;
  background: transparent;
  border: 1px solid #c19b4b;
  color: #c19b4b;
  font-weight: 500;
}

/* インボイス：視認性の高い緑グラデーション */
.archive-invoice-label {
  font-size: 0.7rem;
  padding: 3px 10px;
  border-radius: 4px;
  line-height: 1;
  display: inline-block;
  background: linear-gradient(135deg, #00695c, #003d33);
  border: none;
  color: #fff;
}


/* --- スマホ表示 (768px以下) --- */
/* 左：画像、右：情報のリスト形式 */
@media (max-width: 768px) {
  .shop-grid {
    gap: 15px;
  }

  .shop-card a {
    display: flex;
    align-items: stretch;
    background: #1a1a1a;
    min-height: 120px;
    border-radius: 4px;
    overflow: hidden;
  }

  /* サムネイル（左側） */
  .shop-thumbnail {
    width: 35%;         /* 画像エリアの幅 */
    max-width: 130px;
    flex-shrink: 0;
    aspect-ratio: 1 / 1;
    border-right: 1px solid #333;
  }
  
  .shop-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* 情報エリア（右側） */
  .shop-info {
    width: 65%;
    padding: 12px 15px;
    display: flex;
    flex-direction: column;
    justify-content: center; /* 垂直方向中央寄せ */
  }

  /* 店名 */
  .shop-name {
    font-size: 1rem;
    margin-bottom: 8px;
    line-height: 1.4;
    color: #c19b4b;
    font-weight: 700;
  }

  /* スマホでは抜粋文を非表示 */
  .shop-excerpt {
    display: none;
  }

  /* メタ情報 */
  .shop-meta {
    font-size: 0.75rem;
    gap: 10px;
  }
}


/* --- PC表示 (769px以上) --- */
/* 上：画像、下：情報のカード形式（タグは常時表示） */
@media (min-width: 769px) {
  .shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
  }

  .shop-card {
    background: #111; /* カード背景 */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #333; /* 境界線を薄く追加 */
  }

  .shop-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    border-color: #c19b4b; /* ホバー時に枠線をゴールドに */
  }

  .shop-thumbnail {
    width: 100%;
    aspect-ratio: 16 / 9; /* PCでは少しワイドに見せる */
    position: relative;
    overflow: hidden;
  }

  .shop-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .shop-card:hover .shop-thumbnail img {
    transform: scale(1.05); /* 画像のみズーム */
  }

  .shop-info {
    padding: 20px;
    background: #1a1a1a;
  }

  /* PCでのタグ配置調整 */
  .card-labels {
    margin-bottom: 12px;
    justify-content: flex-start; /* 左寄せ */
  }

  /* PCではタグを少しリッチに */
  .shop-category {
    background: rgba(193, 155, 75, 0.1); /* 薄いゴールド背景 */
  }
  
  .shop-name {
    font-size: 1.2rem;
    margin-bottom: 15px;
  }
}

/* ==================================================
   マップへのスムーズスクロール設定
   ================================================== */

/* ページ内リンクをクリックした際になめらかに動くようにする */
html {
  scroll-behavior: smooth;
}

/* マップエリアのスクロール位置調整（ヘッダー被り防止） */
#shop-access-map {
  /* 固定ヘッダーの高さ分（+少し余裕）だけ余白を持たせて止める */
  scroll-margin-top: 130px;
}

/* スマホ時はヘッダーが少し狭いので調整 */
@media (max-width: 768px) {
  #shop-access-map {
    scroll-margin-top: 90px;
  }
}

/* ==================================================
   【スマホ専用】没入型スクロールスナップ (他ページ干渉修正版)
   ================================================== */
@media (max-width: 768px) {
  
  /* --- 0. ベース設定（特集ページのみに適用） --- */
  /* 修正点：html, body への無条件適用をやめ、特集ページのbodyクラスに限定 */
  body.page-template-page-pickup {
    overscroll-behavior-y: none;
    height: 100%; 
    overflow: hidden; /* 特集ページ以外はスクロール可能に戻ります */
  }

  /* --- 1. スクロールコンテナ --- */
  .pickup-page-container {
    height: 100dvh;
    width: 100%;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scroll-behavior: auto;
    padding-bottom: 0 !important;
    background: #000;
    transform: none !important;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  
  .pickup-page-container::-webkit-scrollbar {
    display: none;
  }

  /* --- 2. 構造のフラット化 --- */
  .pickup-content-wrapper,
  .pickup-grid {
    display: contents;
  }

  /* --- 3. 各スライドの共通設定 --- */
  .pickup-hero,
  .pickup-card,
  .pickup-back-link {
    height: 100dvh !important;
    width: 100%;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    margin: 0 !important;
    border: none !important;
    border-radius: 0 !important;
    position: relative;
    box-shadow: none !important;
    overflow: hidden;
    background-color: #000;
    
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  /* --- 4. ヒーロー（表紙） --- */
  .pickup-hero {
    z-index: 1;
    background: url("../images/hero-bg.jpg") no-repeat center center/cover !important;
    background-attachment: scroll !important;
  }
  .pickup-hero-content {
    margin-top: 0;
    transform: translateY(-20px);
  }

  /* --- 5. 店舗カード --- */
  .pickup-card-link {
    height: 100%;
    width: 100%;
    display: block;
    aspect-ratio: auto !important;
  }

  .pickup-card-image {
    height: 100%;
    border-radius: 0;
    filter: none !important; 
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0); 
  }
  
  .pickup-card-image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.4) 0%,
      rgba(0, 0, 0, 0) 25%,
      rgba(0, 0, 0, 0.6) 70%,
      rgba(0, 0, 0, 0.95) 100%
    );
    z-index: 2;
  }

  /* --- 6. ラベル位置 --- */
  .pickup-card-image .pickup-cat-label {
    top: 50px !important;
    left: 20px !important;
    z-index: 10;
  }

  .pickup-card-image .pickup-invoice-label {
    top: 50px !important;
    right: 20px !important;
    z-index: 10;
  }

  /* --- 7. テキスト情報 --- */
  .pickup-card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 5;
    padding-bottom: 130px !important; 
    padding-left: 25px;
    padding-right: 25px;
    background: transparent;
    display: block !important;
  }

  .pickup-card-title {
    font-size: 2rem;
    margin-bottom: 5px;
    text-shadow: 0 2px 5px rgba(0,0,0,1);
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .pickup-card-info {
    font-size: 0.9rem;
    margin-bottom: 0;
  }

  /* --- 8. トップへ戻る画面 --- */
  .pickup-back-link {
    display: flex !important; 
    background: #000;
    padding-bottom: 60px; 
  }

  .pickup-back-link a {
    margin-top: 0;
    transform: scale(1.2);
    border-width: 2px;
  }

  /* --- 9. 標準フッター非表示（特集ページのみ） --- */
  body.page-template-page-pickup footer, 
  body.page-template-page-pickup .site-footer {
    display: none !important;
  }

  /* --- 10. ヘッダー透明化（特集ページのみ） --- */
  body.page-template-page-pickup header,
  body.page-template-page-pickup .header {
    background-color: transparent !important;
    border-bottom: none !important;
    box-shadow: none !important;
    position: absolute !important;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
  }
  
  body.page-template-page-pickup header .header-inner,
  body.page-template-page-pickup .header .header-inner {
    background-color: transparent !important;
  }

  /* 不要な要素 */
  .pickup-intro {
    display: none !important;
  }
}

/* --- PC (769px以上) ではスクロール誘導を非表示 --- */
@media (min-width: 769px) {
  .scroll-indicator {
    display: none !important;
  }
}

/* ==================================================
   スクロール誘導アニメーション (SCROLL Indicator)
   ================================================== */
.scroll-indicator {
  position: absolute;
  bottom: 90px; /* フッターナビ(約60px)より少し上に配置 */
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  text-align: center;
  opacity: 0.8;
}

/* "SCROLL" テキスト */
.scroll-text {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
  color: #fff;
  letter-spacing: 0.2em;
  margin-bottom: 10px;
  font-weight: 500;
  text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

/* 伸び縮みするライン */
.scroll-line {
  width: 1px;
  height: 60px; /* 線の長さ */
  margin: 0 auto;
  background: #c19b4b; /* ゴールド */
  position: relative;
  overflow: hidden;
}

/* 光が流れるようなアニメーション */
.scroll-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff; /* 白い光 */
  animation: scrollDown 1.5s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}

@keyframes scrollDown {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    transform: translateY(100%);
    opacity: 0;
  }
}

