/* === General Reset & Base === */
body {
  margin: 0;
  padding: 0;
  font-family: 'Noto Serif JP', serif;
  background-color: #f9f7f4;
  color: #1e1e1e;
  line-height: 1.6;
}

html,
body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  position: relative;
}

* {
  box-sizing: border-box;
}


/* フルブリード専用ユーティリティ */
.full-bleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  /* セクション自体が横に溢れないように */
  overflow-x: hidden;
}

img,
video,
iframe {
  max-width: 100%;
  height: auto;
}

.swiper,
.swiper-wrapper,
.swiper-slide {
  max-width: 100%;
}

.swiper-container {
  min-height: 100vh;
  height: 100dvh;
  /* iOS Safari対応用：2023年以降の安全な指定 */
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  margin-bottom: 1.5em;
}

h1,
h2 {
  font-family: 'Playfair Display', serif;
  margin-top: 20px;
}

h1,
h2,
h3 {

  font-weight: 700;
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 0.5px;
}

section {
  padding: 80px 0;
}

/* === Section Title === */
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  margin-bottom: 2rem;
  color: #3b2f27;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, #c5a100, #d0b660);
  margin: 0.5em auto 0;
  border-radius: 1px;
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
  }
}

/* === Hero Section === */
.hero {
  background-image: url("../img/splende_wide_view_nightwalk.jpg");
  /* ← 差し替え可 */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  height: 95vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: white;
  text-align: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 960px;
  padding: 80px 20px;
  margin: 0 auto;
  text-align: center;

}

.hero-inner p {
  line-height: 1.8;
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}


.hero h1 {
  font-size: clamp(1.5rem, 5vw, 3.6rem);
  margin-bottom: 1rem;
}

.hero .lead,
.hero .sublead {
  font-size: 1.1rem;
  margin: 0.5rem 0;
  opacity: 0.9;
}

/* モバイルで背景固定を解除 */
@media (max-width: 768px) {
  .hero {
    background-attachment: scroll;
  }

  .ribbon {
    left: 0;
  }
}

.btn-hero {
  display: inline-block;
  margin-top: 2rem;
  padding: 12px 28px;
  background: linear-gradient(145deg, #c5a100, #d4af37);
  color: white;
  border-radius: 999px;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-hero:hover {
  background: linear-gradient(145deg, #d4af37, #c5a100);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* === Chef / Message Section === */
.hozumi {
  padding: 80px 0px;
  background-color: #f7f4ef;

}

.hozumi-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
}


.hozumi-photo {
  max-width: 600px;
  margin-bottom: 2rem;
}

.hozumi-caption {
  font-size: 1rem;
  font-style: italic;
  margin-bottom: 1rem;
  color: #555;
}

.hozumi-sub {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4e443c;
  line-height: 1.8;
  font-family: 'Noto Serif JP', serif;
  margin-top: 1.5rem;
  text-align: left;
}

@media (max-width: 768px) {
  .hero-inner {
    padding: 60px 20px;
  }

  .hero h1 {
    font-size: 1.5rem;
    line-height: 1.6;
  }

  .lead,
  .sublead {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1rem;
  }

  .btn-hero {
    margin-top: 2rem;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
  }

}

@media (min-width: 768px) {
  .hozumi-inner {
    text-align: left;
    align-items: flex-start;
  }

  .hozumi-caption {
    font-size: 16px;
    font-style: italic;
    margin-bottom: 1rem;
    color: #555;
  }
}

@media (max-width: 768px) {
  .hozumi .row {
    flex-direction: column;
    text-align: center;
    padding: 0 16px;
  }

  .hozumi .col-md-6 {
    width: 100%;
    margin-bottom: 2rem;
  }

  .hozumi-sub {
    font-size: 0.95rem;
    padding: 0 1rem;
    line-height: 1.9;
    text-align: center;
  }

  .hozumi-sub br {
    display: none;
  }

  .section-title {
    font-size: 1.4rem;
  }
}


/* === Menu Swiper Section === */
.menu-section {
  padding: 80px 0px;
  background-color: #f9f7f4;

}

.menu-section .swiper-slide {
  text-align: center;
  padding: 20px 12px;
}

.menu-section .caption {
  margin-top: 0.8em;
  font-size: 0.95rem;
  color: #555;
}

.menu .swiper-slide {
  display: flex;
  height: 100%;
  padding: 20px 12px;
}

.menu-card {
  background-color: #fbf8f4;
  /* box-shadow: 0 2px 6px rgba(0,0,0,0.04); */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(180, 160, 130, 0.08);
  border-radius: 12px;

}

.menu-card .card-img-top {
  object-fit: cover;
  height: 200px;
  width: 100%;
}

.menu-card .card-body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
}

.menu-card,
.course-card {
  max-width: 600px;
  margin: 0 auto;
}

.menu-card img,
.course-card img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  object-fit: cover;
}


@media (max-width: 768px) {
  .menu-card {
    max-height: 400px;
    overflow: hidden;
    margin-bottom: 1.5rem;
  }

  .card-img-top {
    height: 140px;
  }

  .card-title {
    font-size: 1rem;
  }

  .card-text {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .fw-bold {
    font-size: 0.8rem;
  }
}


/* === カード全体を aタグで囲んだときの基本リセット === */
a.menu-card {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 0.75rem;
  overflow: hidden;
}

a.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.10);
}

/* === メニュー画像 === */
.card-img-top {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0.5rem 0.5rem 0 0;
}

/* === カード内部のボディ === */
.card-body {
  padding: 1.25rem 1.5rem;
  background-color: #fffdfb;
}

.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  font-weight: 600;
  color: #3b2f27;
}

.card-text {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #574c45;
}

.menu-card {
  background-color: #fbf8f4;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.fw-bold {
  color: #9c782d;
  font-weight: 500;
  font-size: 0.85rem;
}

.ribbon {
  position: absolute;
  top: 10px;
  left: -10px;
  background: crimson;
  color: white;
  padding: 5px 15px;
  transform: rotate(-45deg);
  font-size: 0.8rem;
  font-weight: bold;
  z-index: 999;
}

@media (max-width: 768px) {
  .menu-section {
    padding: 60px 0;
  }

  .menu-card {
    margin-bottom: 1.2rem;
  }

  .card-img-top {
    height: 140px;
  }

  .card-title {
    font-size: 1rem;
  }

  .card-text {
    font-size: 0.85rem;
  }
}

/* === GLightbox 拡大画像のサイズ制限 === */
.glightbox-container .gslide-image img {
  max-width: 90vw;
  /* 横幅は画面の90%まで */
  max-height: 70vh;
  /* 高さは画面の70%まで */
  object-fit: contain;
  margin: 0 auto;
  margin-top: 1rem;
}

/* GLightbox のキャプションを画像の外に出すスタイル */
.glightbox-container .gdesc-inner {
  background: rgba(0, 0, 0, 0.85);
  padding: 1rem;
  max-height: 50vh;
  overflow-y: auto;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0 auto;
  color: #fff;
  max-height: 50vh;
  /* ビューポートの半分くらいを限界にする */
  box-sizing: border-box;
}

.glightbox-clean .gslide-title {
  color: #fff;
}


/* ====== デフォルト（PC用）====== */
.glightbox-container .gdesc {
  position: static;
  width: 100%;
  margin-top: 1rem;
  box-sizing: border-box;
  padding: 0 1rem;
}

.glightbox-container .gdesc-inner {
  background: #111;
  /* 真っ黒にしすぎない */
  padding: 1.25rem;
  color: #fff;
  border-radius: 8px;
  line-height: 1.7;
  max-height: 40vh;
  overflow-y: auto;
  box-sizing: border-box;
}

/* モバイルでキャプションの位置を調整（下に固定） */
@media (max-width: 768px) {
  .glightbox-container .gdesc {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    padding: 0 1rem 1rem 1rem;
    background: transparent;
  }

  .glightbox-container .gdesc-inner {
    max-height: 25vh;
    overflow-y: scroll;
    background: rgba(0, 0, 0, 0.9);
    padding: 0.75rem;
  }

}

.swiper {
  width: 100%;
  padding: 1rem 0;
}

.swiper-wrapper {
  align-items: stretch !important;
}

.swiper-slide {
  flex-shrink: 0;
  min-width: 240px;
  height: auto !important;
  box-sizing: border-box;
  padding: 20px 8px;
}

@media (max-width: 768px) {
  .swiper-slide {
    transform: scale(0.98);
    transition: transform 0.3s ease;
  }

  .swiper-slide.swiper-slide-active {
    transform: scale(1);
  }
}

@media (max-width: 767px) {
  .swiper-slide {
    width: 100% !important;
    max-width: 100% !important;
  }
}

/* === レスポンシブ調整 === */
@media (max-width: 768px) {
  .card-img-top {
    height: 160px;
  }

  .card-body {
    padding: 0.75rem;
  }
}

@media screen and (max-width: 767px) {
  .no-break-mobile br {
    display: none;
  }

  .container,
  .text-container,
  /* 必要に応じて追加 */
  .section .container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .no-break-mobile {
    font-size: 1rem;
    /* 少し大きめの文字 */
    line-height: 1.8;
    /* ゆとりのある行間 */
    letter-spacing: 0.02em;
    /* わずかに文字間調整（日本語対応） */
    text-align: left;
    padding-left: 12px !important;
    padding-right: 12px !important;
    /* 左寄せで読みやすく */
  }
}

/* === ドリンクアコーディオン=== */

#drink-section {
  padding: 80px 0;
  background-color: #f7f4ef;
  /* 静かな温度をもつベージュ */
}

/* === ドリンクアコーディオン セクション === */
#drink-section {
  padding: 80px 0;
  background-color: #f7f4ef;
}

/* アコーディオン本体 */
.accordion {
  max-width: 760px;
  margin: 0 auto;
}


.accordion-button {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.05rem;
  font-weight: 500;
  background-color: #f8f5f0;
  color: #3b2f27;
  padding: 1.4rem 1.5rem;
  border-bottom: 1px solid #e5ded5;
  transition: background-color 0.3s ease;
}

.accordion-button:hover {
  background-color: #ece9e3;
}


.accordion-button::after {
  filter: grayscale(100%) brightness(70%);
}


.accordion-body {
  font-size: 0.95rem;
  line-height: 1.8;
  padding: 1.75rem;
  background-color: #fffdf9;
  color: #4e443c;
  border-left: 4px solid #d9cbaa;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}


.accordion-collapse {
  transition: all 0.4s ease;
}


.accordion-body .text-muted.small {
  font-size: 0.85rem;
  color: #a3927c;
  margin-top: 0.75rem;
}

/* ジャンルごとのAOS間隔（推奨） */
[data-aos][data-aos-delay="100"] {
  margin-bottom: 24px;
}

[data-aos][data-aos-delay="200"] {
  margin-bottom: 24px;
}

[data-aos][data-aos-delay="300"] {
  margin-bottom: 24px;
}

[data-aos][data-aos-delay="400"] {
  margin-bottom: 24px;
}

[data-aos][data-aos-delay="500"] {
  margin-bottom: 24px;
}

#drink-intro {
  padding: 80px 0;
  background-color: #f7f4ef;
}

#drink-intro h2.section-title {
  font-size: 1.75rem;
  font-family: 'Playfair Display', serif;
  color: #3b2f27;
  margin-bottom: 1rem;
  position: relative;
}

#drink-intro h2.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: #c5a100;
  margin: 0.5em auto 0;
  border-radius: 1px;
}

#drink-intro p.text-muted {
  font-size: 1rem;
  line-height: 1.8;
  color: #4e443c;
}

.text-block {
  text-align: center;
  margin: auto;
}

.btn-outline-dark {
  border-color: #8B6F47;
  color: #8B6F47;
  font-weight: 600;
}

.btn-outline-dark:hover {
  background-color: #bb9560;
  color: white;
}

.section-title {
  font-size: 2rem;
  position: relative;
}

.section-title::after {
  content: "";
  width: 60px;
  height: 2px;
  background-color: #D4AF37;
  /* 控えめなゴールド */
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

/* === Course Section === */

.splende-dinner-hero {
  background-color: #1f1f1f;
  color: #fff;
  text-align: center;
  padding: 4rem 1rem;
}

.splende-dinner-hero .container {
  max-width: 960px !important;
  margin: 0 auto;
}

.hero-fire {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  margin: 0 auto;
}

.splende-dinner-hero h2 {
  font-size: 2rem;
  margin-top: 2rem;
}

.splende-dinner-hero p {
  font-size: 1rem;
  margin-top: 1rem;
}


/* .section {
  padding: 60px 20px;
} */

.bg-light {
  background-color: #f3f0e8;
}

.section-title {
  font-size: 1.6rem;
  margin-bottom: 2rem;
}

/* === Reservation Section === */
#reserve {
  background: #fff;
  padding: 60px 20px;
}

#reserve .container {
  max-width: 720px;
  margin: 0 auto;
}

.btn-gold {
  background: linear-gradient(145deg, #c5a100, #d4af37);
  color: white;
  border: none;
  padding: 14px 28px;
  font-size: 1rem;
  border-radius: 999px;
  cursor: pointer;
  transition: 0.3s ease;
  text-decoration: none;
}

.btn-gold:hover {
  background: linear-gradient(145deg, #d4af37, #c5a100);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

#reserve {
  background: #fdfaf5;
  padding: 80px 20px;
  text-align: center;
}

#reserve .section-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: #5b4b2c;
}

#reserve p {
  font-size: 1rem;
  color: #444;
}

#reserve .btn-gold {
  margin-top: 1.5rem;
}

/* アコーディオン全体 */
.accordion-qa {
  max-width: 720px;
  margin: 0 auto;
}

/* アコーディオンアイテム */
.accordion-item-qa {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-bottom: 16px;
  background-color: #fff;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* ヘッダー（ボタン） */
.accordion-button-qa {
  background-color: #f9f9f9;
  font-weight: 600;
  font-size: 1rem;
  padding: 1rem 1.25rem;
  border: none;
  width: 100%;
  text-align: left;
  transition: background-color 0.2s ease;
}

.accordion-button-qa:not(.collapsed) {
  background-color: #eee;
}

/* コンテンツ */
.accordion-body-qa {
  padding: 1rem 1.25rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333;
}

/* モバイル対策 */
@media (max-width: 576px) {

  .accordion-button-qa,
  .accordion-body-qa {
    font-size: 0.95rem;
    padding: 0.75rem 1rem;
  }
}

.map-thumbnail img {
  border: 2px solid goldenrod;
  border-radius: 18px;
  transition: transform 0.3s ease;
  max-width: 800px;
}

.map-thumbnail img:hover {
  transform: scale(1.02);
}

.border-gold {
  border: 3px solid goldenrod;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.map-thumbnail:hover .border-gold {
  transform: scale(1.03);
  box-shadow: 0 0 20px rgba(218, 165, 32, 0.5);
}

.border-gold {
  border: 4px solid gold;
}

/* === Footer === */
.footer {
  background-color: #333;
  color: white;
  padding: 40px 0;
}

.footer-nav a,
.footer-nav a:hover {
  text-decoration: none;
}

/* 個別スタイル */
.footer-sns a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin: 0 8px;
  border-radius: 50%;
  font-size: 1.4rem;
  color: white;
  transition: all 0.3s ease;
  text-decoration: none;
}

/* 個別スタイル */
.footer-sns a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 42px;
  /* ちょい小さめ。元が48pxとかなら */
  height: 42px;
  border-radius: 50%;
  font-size: 1.2rem;
  /* アイコンの中身の大きさも縮小 */
  color: white;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-sns a.instagram {
  background: radial-gradient(circle at 30% 30%, #feda75, #d62976, #962fbf);
}

.footer-sns a.facebook {
  background-color: #1877F2;
}

.footer-sns a.x {
  background-color: #000;
}

.footer-sns a.tiktok {
  background: linear-gradient(135deg, #69C9D0 0%, #EE1D52 100%);
}

/* Hover Effects */
.footer-sns a:hover {
  transform: scale(1.1);
  opacity: 0.9;
}

.footer-logo img {
  max-height: 80px;
  object-fit: contain;
  margin: 0 auto;
  display: block;
}

.cta-fixed {
  position: fixed;
  bottom: -100px;
  /* 初期状態は画面外 */
  left: 0;
  width: 100%;
  background: linear-gradient(145deg, #c5a100, #d4af37);
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  opacity: 0.95;
  transition: all 0.5s ease;
}

.cta-fixed.show {
  bottom: 0;
  /* 表示時にスライドアップ */
}

.cta-fixed-btn {
  display: block;
  padding: 14px 0;
  color: white;
  text-align: center;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  letter-spacing: 1px;
}

.cta-fixed-btn:hover {
  background: linear-gradient(145deg, #d4af37, #c5a100);
  opacity: 1;
}

/* === Responsive === */
@media screen and (max-width: 768px) {
  .hero {
    height: auto;
    background-attachment: scroll;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .btn-hero {
    font-size: 0.9rem;
    padding: 10px 20px;
  }

  .hozumi-inner {
    flex-direction: column;
  }
}

iframe {
  height: 360px !important;
  width: 100% !important;
  border-radius: 12px !important;
}

.border-gold {
  border: 2px solid gold !important;
}

/* モーダル閉じるボタンのデザイン */
.btn-close {
  top: 12px;
  right: 12px;
  z-index: 1055;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  padding: 0.6rem;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
}

/* モバイルで少し大きく押しやすく */
@media (max-width: 576px) {
  .btn-close {
    top: 8px;
    right: 8px;
    padding: 0.9rem;
  }
}

/* モーダルの外枠を高級感ある角丸と影で演出 */
.modal-content {
  border-radius: 16px;
  overflow: hidden;
  border: none;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* ボタンセクションの配置と余白 */
.return-to-top {
  text-align: center;
  margin: 80px 0 60px;
}

/* 戻るボタンデザイン */
.return-button {
  display: inline-block;
  padding: 14px 38px;
  font-size: 1.1rem;
  font-family: 'Playfair Display', serif;
  color: #333;
  background-color: #fdfdfc;
  border: 2px solid gold;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* ホバー時：ゴールドグラデーション＋白抜き文字 */
.return-button:hover {
  background: linear-gradient(to right, #d1a954, #e6c68a);
  color: white;
  border-color: transparent;
  transform: translateY(-2px);
}

.review-swiper {
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  padding: 0 1rem;
}

.review-swiper .swiper-wrapper {
  display: flex;
  align-items: stretch;
  /* カード高さを揃える */
}

.review-swiper .swiper-slide {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* カード全体 */
.review-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  background-color: #fffdf8;
  /* 少しだけ暖かみのある白 */
  border-radius: 16px;
  padding: 24px;
  box-sizing: border-box;
  border: 1px solid #eee;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  font-family: 'Noto Serif JP', serif;
  color: #2a2a2a;
  font-size: 0.95rem;
  letter-spacing: 0.015em;
  line-height: 1.8;
  overflow-y: auto;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE・Edge */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: linear-gradient(to bottom right, #fff, #fdfdfd);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Webkit系スクロールバー非表示 */
.review-card::-webkit-scrollbar {
  display: none;
}

/* ホバーで浮き上がり効果 */
@media (hover: hover) and (pointer: fine) {
  .review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    background-color: #ffffff;
  }
}

/* 名前（強調） */
.review-card .author {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: #111;
}

/* 評価（星） */
.review-card .rating {
  display: flex;
  gap: 0.1rem;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #f5b50a;
  letter-spacing: 0.05em;
}

/* 投稿日 */
.review-card .time {
  font-size: 0.82rem;
  color: #888;
  margin-bottom: 0.7rem;
}

/* コメント本文 */
.review-card .comment {
  flex-grow: 1;
  font-size: 0.95rem;
  font-weight: 400;
  color: #333;
}

/* 「続きを読む」リンク */
.review-card .read-more {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: #6a5acd;
  text-decoration: none;
  border-top: 1px dotted #ccc;
  padding-top: 1rem;
  display: inline-block;
  transition: color 0.3s ease;
}

.review-card .read-more:hover {
  color: #483d8b;
  text-decoration: underline;
}

.review-card a {
  color: #6c5ce7;
  font-weight: 500;
  text-decoration: none;
  position: relative;
}

.review-card a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 1px;
  background-color: #6c5ce7;
  transition: width 0.3s ease;
}

.review-card a:hover::after {
  width: 100%;
}

/* スワイパーのページネーション位置調整 */
.swiper-pagination {
  position: absolute;
  bottom: -30px !important;
  text-align: center;
  width: 100%;
}

/* セクション説明文 */
.voice-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2rem auto;
  color: #444;
  font-size: 1rem;
  line-height: 1.8;
}

/* スマホでは左寄せに */
@media screen and (max-width: 768px) {
  .voice-description {
    text-align: left;
  }
}

/* ===== Brand Proof（薄くならない・フェード壊さない版） ===== */

/* 余白・枠 */
#brand-proof {
  padding: 48px 0 56px;
  background: transparent;
}

#brand-proof .bp-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* 見出し */
#brand-proof .bp-title {
  margin: 0 0 18px;
  font-size: clamp(1.25rem, 1.8vw, 1.5rem);
  letter-spacing: .04em;
  color: #3b2f27;
  font-weight: 700;
  text-align: center;
}

/* Swiper（fade安全セット） */
#bp-swiper {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#bp-swiper .swiper-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

#bp-swiper .swiper-slide {
  width: 100% !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

/* ← フェードは .swiper-slide の opacity を使うため触らない！
   代わりに“中身だけ”を常に不透明＆フィルタ無しにする */
#bp-swiper .swiper-slide>a,
#bp-swiper .swiper-slide>a * {
  opacity: 1 !important;
  filter: none !important;
  mix-blend-mode: normal !important;
  text-shadow: none !important;
}

/* カード見た目（白・影・内側余白UP） */
#bp-swiper .swiper-slide>a {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 24px 30px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .12);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .14);
  text-decoration: none;
}

/* ロゴ（くっきり・サイズ指定） */
#bp-swiper .swiper-slide:first-child img {
  /* 食べログ */
  height: 96px;
  width: auto;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

#bp-swiper .swiper-slide:nth-child(2) img {
  /* ぐるなび */
  height: 90px;
  width: auto;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

/* キャプション */
#bp-swiper .swiper-slide>a span {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  letter-spacing: .02em;
  white-space: nowrap;
}

/* 備考テキスト */
#brand-proof .bp-note {
  margin-top: 14px;
  font-size: 13px;
  color: #666;
  text-align: center;
}

/* モバイル調整 */
@media (max-width:768px) {
  #brand-proof {
    padding: 36px 0 40px;
  }

  #bp-swiper {
    height: 160px;
  }

  #bp-swiper .swiper-slide>a {
    padding: 18px 22px;
    border-radius: 16px;
  }

  #bp-swiper .swiper-slide:first-child img {
    height: 72px;
  }

  #bp-swiper .swiper-slide:nth-child(2) img {
    height: 68px;
  }

  #bp-swiper .swiper-slide>a span {
    font-size: 16px;
  }
}

/* ===== くっきり固定：フェードを壊さず、薄さを根絶 ===== */

/* スライドの重ねとトランジション（fade前提） */
#bp-swiper .swiper-slide {
  width: 100% !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  transition: opacity .6s ease;
  /* 何かに付けられたフィルタを無効化（opacityは触らない） */
  filter: none !important;
  mix-blend-mode: normal !important;
}

/* アクティブだけは必ず100%不透明・フィルタ無し */
#bp-swiper .swiper-slide.swiper-slide-active {
  opacity: 1 !important;
  filter: none !important;
}

/* 非アクティブは完全に0（にじみ防止） */
#bp-swiper .swiper-slide:not(.swiper-slide-active) {
  opacity: 0 !important;
}

/* 中身（カード＆その子）は常にくっきり。フェードはスライド側で担保 */
#bp-swiper .swiper-slide>a,
#bp-swiper .swiper-slide>a * {
  opacity: 1 !important;
  filter: none !important;
  mix-blend-mode: normal !important;
  text-shadow: none !important;
}

/* カードの見た目（白ベタ＆影） */
#bp-swiper .swiper-slide>a {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 24px 30px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .12);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .14);
  text-decoration: none;
}

/* ロゴのサイズ（Retinaでも滲みにくい） */
#bp-swiper .swiper-slide:first-child img {
  height: 96px;
  width: auto;
  object-fit: contain;
}

#bp-swiper .swiper-slide:nth-child(2) img {
  height: 90px;
  width: auto;
  object-fit: contain;
}

/* キャプション（濃いめ） */
#bp-swiper .swiper-slide>a span {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  letter-spacing: .02em;
  white-space: nowrap;
}

/* モバイル縮小 */
@media (max-width:768px) {
  #bp-swiper .swiper-slide>a {
    padding: 18px 22px;
    border-radius: 16px;
  }

  #bp-swiper .swiper-slide:first-child img {
    height: 72px;
  }

  #bp-swiper .swiper-slide:nth-child(2) img {
    height: 68px;
  }

  #bp-swiper .swiper-slide>a span {
    font-size: 16px;
  }
}