/*
 * Photo Studio Custom Styles
 * フォトスタジオ lifestudio-banana.com 向けデザイン追加CSS
 *
 * カラーパレット:
 *   モカムース (Pantone 2025):  #A47864
 *   ライトモカ:                 #C49882
 *   クリームホワイト:           #FFF9F4
 *   オフホワイト:               #FFF0E8
 *   ベージュ:                   #EEDCB3
 *   ピーチ:                     #F5C6B0
 *   コーラル:                   #E2725B
 *   セージグリーン:             #8FAF8F
 *   ダークブラウン:             #3E3331
 *
 * フォント:
 *   日本語: Noto Serif JP (d--notoserif)
 *   英語:   Josefin Slab (d--josefin-slab)
 */

/* =============================================
   1. BASE TYPOGRAPHY
   ============================================= */

/* 見出し：細めのウェイトで上品な印象 */
.d--notoserif h1,
.d--notoserif h2,
.d--notoserif h3,
.d--notoserif h4,
.d--notoserif h5,
.d--notoserif h6 {
  font-weight: 400;
  letter-spacing: 0.08em;
}

/* 英語見出し：Josefin Slabの軽やかさを活かす */
.d--josefin-slab .p--header-logo-text,
.d--josefin-slab .c--site-title {
  letter-spacing: 0.15em;
  font-weight: 300;
}

/* 本文：読みやすい行間と文字間隔 */
body {
  line-height: 1.9;
  letter-spacing: 0.04em;
}

/* =============================================
   2. HEADER REFINEMENT
   ============================================= */

/* ヘッダー：温かみあるクリームに柔らかいボーダー */
#p--header {
  border-bottom: 1px solid rgba(164, 120, 100, 0.15);
}

/* ナビゲーション：ホバー時にモカカラーのアンダーライン */
.p--global-navi a::after {
  background-color: #A47864;
}

/* =============================================
   3. MAIN VISUAL OVERLAY
   ============================================= */

/* MV オーバーレイ：暖色の深みあるダークブラウン系 */
.d--stillimage-overlay-simple::after {
  background: linear-gradient(
    to bottom,
    rgba(30, 15, 10, 0.3) 0%,
    rgba(30, 15, 10, 0.6) 100%
  );
}

/* MV コピーテキスト：読みやすく */
.p--stillimage-maincopy {
  font-weight: 300;
  letter-spacing: 0.2em;
  text-shadow: 0 2px 20px rgba(30, 15, 10, 0.4);
}

.p--stillimage-subcopy {
  letter-spacing: 0.12em;
  opacity: 0.9;
}

/* =============================================
   3.3 BOKEH BACKGROUND ANIMATION
   ============================================= */

/* キャンバス：サイト全体の固定背景として配置 */
#banana-bokeh {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;            /* bodyのbg-colorより前面 */
  pointer-events: none;  /* クリックを通過させる */
  display: block;
}

/* wrapper はキャンバスより前面に */
body:not(.wp-admin) #wrapper {
  position: relative;
  z-index: 2;
}

/* body の背景色を透明にしてキャンバスを見せる
   （背景画像はwrapperに残るため影響なし） */
body:not(.wp-admin) {
  background-color: transparent !important;
}

/* セクションの白背景を半透明にしてキャンバスを透過させる */
body:not(.wp-admin) .a--background-color {
  background: rgba(255, 249, 244, 0.82) !important;
}

/* mainContent / homeArticle の白背景を透明にする */
body:not(.wp-admin) #mainContent,
body:not(.wp-admin) #homeArticle,
body:not(.wp-admin) #bananaArticle {
  background-color: transparent !important;
}

/* =============================================
   3.5 MAIN VISUAL - KEN BURNS EFFECT
   ============================================= */

/* ケンバーンズ keyframes：ズーム＋パンを往復 */
@keyframes kenburns-1 {
  0%   { transform: scale(1)    translateX(0%)    translateY(0%); }
  100% { transform: scale(1.08) translateX(-1.5%) translateY(-1%); }
}

@keyframes kenburns-2 {
  0%   { transform: scale(1.08) translateX(-1.5%) translateY(-1%); }
  100% { transform: scale(1)    translateX(1%)    translateY(0.5%); }
}

/* ① c--stillimage の overflow:hidden を上書きして
      拡大した背景がクリップされないようにする         */
.o--banana-stillimage .c--stillimage {
  overflow: visible;
}

/* ② o--banana-stillimage 自体でクリップを受け持つ
      （position:relative は既にstyle.cssにある）       */
.o--banana-stillimage {
  overflow: hidden;
}

/* ③ a--stillimage にアニメーション適用 */
.o--banana-stillimage .a--stillimage {
  animation: kenburns-1 12s ease-in-out infinite alternate;
  transform-origin: center center;
  will-change: transform;
}

/* オーバーレイを前面に固定（アニメーションに巻き込まれない） */
.o--banana-stillimage .a--stillimage-overlay {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

/* テキストを最前面に固定（position:absoluteはstyle.cssのまま維持） */
.o--banana-stillimage .c--stillimage-contents {
  z-index: 2;
}

/* スライダーMVには適用しない */
.o--banana-imageslider .a--stillimage {
  animation: none;
}

/* =============================================
   4. CARDS & ARTICLE THUMBNAILS
   ============================================= */

/* カード：サムネイル画像のズームホバーエフェクト */
.p--card-wrap .p--thumbnail-img,
.p--archive-article .p--thumbnail-img {
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
}

.p--card-wrap:hover .p--thumbnail-img img,
.p--archive-article:hover .p--thumbnail-img img {
  transform: scale(1.04);
}

/* カード：温かみあるシャドウ */
.p--card-wrap {
  box-shadow: 0 4px 20px rgba(62, 51, 49, 0.06);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  border-radius: 8px;
  overflow: hidden;
}

.p--card-wrap:hover {
  box-shadow: 0 8px 32px rgba(62, 51, 49, 0.12);
  transform: translateY(-3px);
}

/* =============================================
   5. SECTION DESIGN
   ============================================= */

/* セクション区切り：細いモカボーダー */
.c--section-title::before {
  background-color: #A47864;
}

/* ページ内セクションの余白 */
.p--contents-inner section {
  padding-top: 2rem;
}

/* =============================================
   6. BUTTONS
   ============================================= */

/* プライマリボタン：温かみある角丸 */
.c--button-01 {
  background-color: #A47864;
  border-color: #A47864;
  color: #ffffff;
  border-radius: 60px;
  letter-spacing: 0.1em;
  transition: background-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.c--button-01:hover {
  background-color: #C49882;
  border-color: #C49882;
  box-shadow: 0 6px 20px rgba(164, 120, 100, 0.3);
  transform: translateY(-2px);
}

/* アウトラインボタン */
.c--button-04 {
  border-color: #A47864;
  color: #A47864;
  border-radius: 60px;
  letter-spacing: 0.1em;
  transition: all 0.25s ease;
}

.c--button-04:hover {
  background-color: #A47864;
  color: #ffffff;
}

/* =============================================
   7. FOOTER
   ============================================= */

/* フッター：温かみのある濃色 */
#p--footer {
  background-color: #3E3331;
  color: #F5EDE6;
}

#p--footer a {
  color: #C49882;
  transition: color 0.2s ease;
}

#p--footer a:hover {
  color: #EEDCB3;
}

/* フッタータイトル・ウィジェット見出し */
#p--footer .widget-title,
#p--footer .p--widgettitle {
  color: #EEDCB3;
  border-color: #A47864;
  letter-spacing: 0.1em;
}

/* =============================================
   8. GALLERY / IMAGE SECTIONS
   ============================================= */

/* ギャラリー画像：微細なフェードイン効果 */
.p--gallery-item img,
.wp-block-image img {
  transition: opacity 0.4s ease;
}

.p--gallery-item:hover img {
  opacity: 0.92;
}

/* 画像キャプション */
figcaption,
.wp-element-caption {
  font-size: 0.82em;
  color: #A47864;
  letter-spacing: 0.05em;
  margin-top: 0.4em;
}

/* =============================================
   9. BLOCKQUOTE & SPECIAL BOXES
   ============================================= */

/* 引用ブロック：温かみあるボーダー */
blockquote {
  border-left-color: #C49882;
  background-color: #FFF0E8;
}

/* インフォメーションバー */
.p--information-bar {
  background-color: #FFF0E8;
  border-color: #C49882;
  color: #3E3331;
}

/* =============================================
   10. CUSTOMIZER PREVIEW - PHOTO STUDIO THEME
   ============================================= */

/* アイコンボックス：ナチュラルアクセント */
.c--simple-iconbox .p--iconbox-icon {
  transition: transform 0.3s ease;
}

.c--simple-iconbox:hover .p--iconbox-icon {
  transform: scale(1.1) rotate(-3deg);
}

/* ボックス内見出し：セリフ体の優雅さ */
.c--heading-box .p--heading-box-title {
  letter-spacing: 0.08em;
}

/* =============================================
   10.5 TIMELINE BLOCK - FLOW SECTION
   ============================================= */

/* タイムライン縦線：モカカラー */
.b--banana-timeline.d--timeline-design1 .o--timeline-list::before {
  background-color: #C49882;
}

/* ステップ番号バッジ：モカカラー塗り */
.b--banana-timeline .a--timeline-step {
  background-color: #A47864;
  border-color: #A47864;
  color: #ffffff;
}

/* ステップ番号テキスト（STEP + 数字） */
.b--banana-timeline .a--timeline-step-text,
.b--banana-timeline .a--timeline-step-text::before {
  color: #ffffff;
}

/* ラベル（タイトル）：モカカラー */
.b--banana-timeline .a--timeline-label {
  color: #A47864;
  letter-spacing: 0.08em;
}

/* 本文テキスト */
.b--banana-timeline .a--timeline-text {
  color: #3E3331;
  line-height: 1.8;
}

/* 各アイテムの区切り線：ベージュ */
.b--banana-timeline .c--timeline-item + .c--timeline-item {
  border-top-color: rgba(164, 120, 100, 0.15);
}

/* Design2（中央蛇行ライン）にも適用 */
.b--banana-timeline.d--timeline-design2 .o--timeline-list::before,
.b--banana-timeline.d--timeline-design2 .o--timeline-list::after {
  background-color: #C49882;
}

/* =============================================
   11. SCROLL ANIMATION ENHANCEMENT
   ============================================= */

/* フェードイン：よりなめらかに */
.t--column-animation-fadeslidebyone .p--card-wrap {
  animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* =============================================
   12. RESPONSIVE ADJUSTMENTS
   ============================================= */

@media (max-width: 767px) {
  /* SP：見出しの文字間隔を広げて読みやすく */
  h2, h3 {
    letter-spacing: 0.06em;
  }

  /* SP：ボタンの余白調整 */
  .c--button-01,
  .c--button-04 {
    padding-left: 1.5em;
    padding-right: 1.5em;
  }
}

/* =============================================
   HERO SLIDESHOW
   ============================================= */

/* スライドショー時の section 本体：高さを .a--stillimage と同じ基準に */
.o--banana-stillimage:has(.hero-swiper),
.o--banana-stillimage.has-hero-slideshow {
  position: relative;
  height: 100vh;
  max-height: 1200px;
  overflow: hidden;
  /* t--main-width による横幅制限を解除して全幅表示 */
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

@media (max-width: 551px) {
  .o--banana-stillimage:has(.hero-swiper),
  .o--banana-stillimage.has-hero-slideshow {
    height: calc(100vh - 60px);
  }
}

/* Swiper ラッパーを section に全面展開 */
.o--banana-stillimage .hero-swiper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

/* 各スライド */
.hero-swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
}

/* 背景画像（Ken Burns ズーム） */
.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  transform: scale(1.06);
  transition: transform 7s ease;
}

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

/* オーバーレイ */
.hero-swiper-slide .a--stillimage-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-color: #1a0f0c;
  opacity: 0.35;
  pointer-events: none;
}

/* コピーテキスト：スライダーより手前に、中央配置 */
.o--banana-stillimage:has(.hero-swiper) .c--stillimage-contents,
.o--banana-stillimage.has-hero-slideshow .c--stillimage-contents {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 100%;
  pointer-events: none;
}

.o--banana-stillimage:has(.hero-swiper) .c--stillimage-contents *,
.o--banana-stillimage.has-hero-slideshow .c--stillimage-contents * {
  pointer-events: auto;
}

/* ページネーション（ドット） */
.hero-swiper-pagination {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  z-index: 20;
  text-align: center;
}

.hero-swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.6);
  opacity: 1;
  margin: 0 4px;
  transition: transform 0.3s, background 0.3s;
}

.hero-swiper-pagination .swiper-pagination-bullet-active {
  background: #ffffff;
  transform: scale(1.3);
}

@media (max-width: 551px) {
  .hero-swiper-pagination {
    bottom: 12px;
  }
}
/* ============================================
   スマホ固定フッターバー（電話・LINE）
   ============================================ */

/* PC・タブレットでは非表示 */
#sp-cta-bar {
  display: none;
}

/* スマホのみ表示（551px以下） */
@media (max-width: 551px) {
  #sp-cta-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.12);
    /* Safe area対応（ホームバーのある端末） */
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }

  .sp-cta-btn {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 8px;
    color: #fff;
    text-decoration: none;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    line-height: 1.3;
    transition: opacity 0.2s ease;
    -webkit-tap-highlight-color: transparent;
  }

  .sp-cta-btn:active {
    opacity: 0.8;
  }

  /* ボタンが1つだけのとき（電話のみ or LINEのみ）は全幅 */
  #sp-cta-bar .sp-cta-btn:only-child {
    flex-direction: row;
    gap: 8px;
    font-size: 0.85rem;
  }

  /* ボタンが2つのとき：中央に区切り線 */
  #sp-cta-bar .sp-cta-btn + .sp-cta-btn {
    border-left: 1px solid rgba(255, 255, 255, 0.3);
  }

  .sp-cta-btn i {
    font-size: 1.3rem;
    margin-bottom: 3px;
    line-height: 1;
  }

  .sp-cta-btn span {
    display: block;
    white-space: nowrap;
  }

  /* 既存CVボタンとの共存：CVボタンがある場合は sp-cta-bar を少し上げる */
  #cvButton.js--cvb-active ~ #sp-cta-bar,
  body.has-cv-button #sp-cta-bar {
    bottom: 60px;
  }

  /* ページ下部のコンテンツがバーに隠れないよう余白を追加 */
  body.has-sp-cta-bar #wrapper {
    padding-bottom: 60px;
  }
}
/* ============================================================
   ファーストビュー CTA ボタン & スクロール追従バー
   Lifestudio Banana
   ============================================================ */

/* ----------------------------------------------------------
   1. ファーストビュー CTA ボタン群
   ---------------------------------------------------------- */
#banana-hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 36px;
}

.banana-cta-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-width: 180px;
  padding: 14px 28px;
  border-radius: 60px;
  text-decoration: none !important;
  font-family: 'Noto Serif JP', serif;
  letter-spacing: 0.06em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.2s ease;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.banana-cta-btn i {
  font-size: 1.1rem;
}

.banana-cta-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.2;
}

.banana-cta-sub {
  display: block;
  font-size: 0.72rem;
  opacity: 0.85;
  letter-spacing: 0.08em;
  font-weight: 400;
}

/* 電話ボタン */
.banana-cta-tel {
  background-color: #A47864;
  color: #fff !important;
  box-shadow: 0 6px 20px rgba(164, 120, 100, 0.45);
}

.banana-cta-tel:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(164, 120, 100, 0.5);
}

/* LINEボタン */
.banana-cta-line {
  background-color: #06C755;
  color: #fff !important;
  box-shadow: 0 6px 20px rgba(6, 199, 85, 0.4);
}

.banana-cta-line:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(6, 199, 85, 0.45);
}

/* ----------------------------------------------------------
   アニメーション：ふわっと点滅（pulse）
   ---------------------------------------------------------- */
@keyframes ctaPulse {
  0%   { box-shadow: 0 6px 20px rgba(164, 120, 100, 0.45); }
  50%  { box-shadow: 0 6px 28px rgba(164, 120, 100, 0.75), 0 0 0 6px rgba(164, 120, 100, 0.12); }
  100% { box-shadow: 0 6px 20px rgba(164, 120, 100, 0.45); }
}

@keyframes ctaPulseLine {
  0%   { box-shadow: 0 6px 20px rgba(6, 199, 85, 0.4); }
  50%  { box-shadow: 0 6px 28px rgba(6, 199, 85, 0.65), 0 0 0 6px rgba(6, 199, 85, 0.12); }
  100% { box-shadow: 0 6px 20px rgba(6, 199, 85, 0.4); }
}

/* ページ読み込み後少し待ってからアニメーション開始 */
.banana-cta-tel {
  animation: ctaPulse 2.4s ease-in-out 1.5s infinite;
}

.banana-cta-line {
  animation: ctaPulseLine 2.4s ease-in-out 1.8s infinite;
}

/* ホバー中はアニメーションを止める */
.banana-cta-tel:hover,
.banana-cta-line:hover {
  animation-play-state: paused;
}

/* SP調整 */
@media (max-width: 551px) {
  #banana-hero-cta {
    gap: 10px;
    margin-top: 24px;
    flex-direction: column;  /* 縦並びに */
    align-items: stretch;    /* 左右いっぱいに引き延ばす */
    padding: 0 16px;         /* 左右の余白 */
  }

  .banana-cta-btn {
    min-width: unset;
    width: 100%;             /* 全幅 */
    flex-direction: row;     /* アイコンとテキストを横並びに */
    justify-content: center;
    padding: 16px 20px;      /* タップ領域を縦に広げる */
    border-radius: 14px;     /* 全幅のときは角丸を小さく */
    gap: 10px;
  }

  .banana-cta-btn i {
    font-size: 1.3rem;       /* アイコン少し大きく */
  }

  .banana-cta-label {
    font-size: 1rem;         /* 文字を大きく */
    font-weight: 700;
  }

  .banana-cta-sub {
    font-size: 0.75rem;
  }
}

/* ----------------------------------------------------------
   2. スクロール追従 CTA バー
   ---------------------------------------------------------- */
#banana-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9990;
  background: rgba(62, 51, 49, 0.96);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 -3px 16px rgba(0, 0, 0, 0.18);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  /* Safe area（ホームバー） */
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

#banana-sticky-cta.is-visible {
  transform: translateY(0);
}

.banana-sticky-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
  padding: 14px 24px;
  flex-wrap: wrap;
}

.banana-sticky-msg {
  color: #FFF9F4;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  margin: 0;
  opacity: 0.9;
}

.banana-sticky-btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.banana-sticky-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: 60px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none !important;
  white-space: nowrap;
  transition: opacity 0.2s ease, transform 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.banana-sticky-btn:active {
  opacity: 0.8;
  transform: scale(0.97);
}

.banana-sticky-tel {
  background-color: #A47864;
  color: #fff !important;
}

.banana-sticky-line {
  background-color: #06C755;
  color: #fff !important;
}

/* SP: sp-cta-bar と重複するため非表示 */
@media (max-width: 551px) {
  #banana-sticky-cta {
    display: none !important;
  }
}

/* ============================================
   アクセスセクション（トップページ）
   左：店舗情報 / 右：Googleマップ（横並び）
   ============================================ */

#banana-access {
  background-color: rgba(255, 249, 244, 0.88);
  padding: 80px 0;
  position: relative;
  z-index: 2;
}

.banana-access-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
  align-items: center;
}

/* ---- 左カラム：店舗情報 ---- */
.banana-access-label {
  font-family: 'Josefin Slab', serif;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: #A47864;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.banana-access-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #3E3331;
  margin: 0 0 28px;
  padding: 0;
  border: none;
}

/* WordPress テーマのh2スタイルを上書き */
#banana-access .banana-access-title::before,
#banana-access .banana-access-title::after {
  display: none !important;
}

.banana-access-dl {
  margin: 0 0 28px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 16px;
  align-items: baseline;
}

.banana-access-dl dt {
  font-size: 0.82rem;
  color: #A47864;
  font-weight: 600;
  white-space: nowrap;
  letter-spacing: 0.05em;
}

.banana-access-dl dt i {
  margin-right: 4px;
}

.banana-access-dl dd {
  font-size: 0.9rem;
  color: #3E3331;
  line-height: 1.7;
  margin: 0;
}

.banana-access-dl dd a {
  color: #A47864;
  text-decoration: none;
  font-weight: 600;
}

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

.banana-access-map-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: #A47864;
  border: 1px solid #A47864;
  padding: 8px 20px;
  border-radius: 60px;
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.banana-access-map-link:hover {
  background-color: #A47864;
  color: #fff;
}

/* ---- 右カラム：マップ ---- */
.banana-access-map {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(62, 51, 49, 0.12);
}

.banana-access-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* SP：縦並び */
@media (max-width: 767px) {
  #banana-access {
    padding: 60px 0;
  }

  .banana-access-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 20px;
  }

  .banana-access-map {
    aspect-ratio: 4 / 3;
  }
}

/* ============================================
   口コミ・レビューセクション
   ============================================ */

#banana-reviews {
  background: linear-gradient(135deg, rgba(255, 240, 232, 0.88) 0%, rgba(255, 249, 244, 0.88) 60%, rgba(245, 237, 230, 0.88) 100%);
  padding: 80px 0 100px;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.banana-reviews-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}

.banana-reviews-label {
  font-family: 'Josefin Slab', serif;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: #A47864;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.banana-reviews-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #3E3331;
  margin: 0 0 12px;
  padding: 0;
  border: none;
}

#banana-reviews .banana-reviews-title::before,
#banana-reviews .banana-reviews-title::after {
  display: none !important;
}

.banana-reviews-sub {
  font-size: 0.85rem;
  color: #C49882;
  letter-spacing: 0.08em;
  margin: 0 0 48px;
}

/* ---- Swiper コンテナ ---- */
.banana-reviews-swiper {
  position: relative;
  padding-bottom: 48px; /* ページネーション分 */
  overflow: visible;
}

/* ---- カード ---- */
.banana-review-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px 28px;
  box-shadow: 0 4px 24px rgba(62, 51, 49, 0.08);
  text-align: left;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.banana-review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 36px rgba(62, 51, 49, 0.13);
}

/* 星 */
.banana-review-stars {
  color: #F5CC1A;
  font-size: 1rem;
  letter-spacing: 2px;
}

/* 本文 */
.banana-review-text {
  font-size: 0.9rem;
  color: #3E3331;
  line-height: 1.9;
  letter-spacing: 0.04em;
  margin: 0;
  flex: 1;
}

/* 投稿者 */
.banana-review-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}

.banana-review-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: #A47864;
  letter-spacing: 0.06em;
}

.banana-review-tag {
  font-size: 0.72rem;
  background: #FFF0E8;
  color: #A47864;
  border: 1px solid rgba(164, 120, 100, 0.3);
  border-radius: 60px;
  padding: 2px 10px;
  letter-spacing: 0.05em;
}

/* ---- ナビゲーションボタン ---- */
.banana-reviews-prev,
.banana-reviews-next {
  position: absolute;
  top: 50%;
  transform: translateY(-60%);
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 12px rgba(62, 51, 49, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #A47864;
  font-size: 0.85rem;
  transition: background 0.2s ease, color 0.2s ease;
}

.banana-reviews-prev { left: -8px; }
.banana-reviews-next { right: -8px; }

.banana-reviews-prev:hover,
.banana-reviews-next:hover {
  background: #A47864;
  color: #fff;
}

/* ---- ページネーション ---- */
.banana-reviews-pagination {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
}

.banana-reviews-pagination .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  background: #C49882;
  opacity: 0.4;
  margin: 0 4px;
}

.banana-reviews-pagination .swiper-pagination-bullet-active {
  background: #A47864;
  opacity: 1;
  transform: scale(1.3);
}

/* SP */
@media (max-width: 551px) {
  #banana-reviews {
    padding: 60px 0 80px;
  }

  .banana-reviews-inner {
    padding: 0 16px;
  }

  .banana-review-card {
    padding: 24px 20px 20px;
  }

  .banana-reviews-prev { left: 0; }
  .banana-reviews-next { right: 0; }
}

/* =============================================
   PRICE SECTION（料金・プラン）
   ============================================= */
#banana-price {
  padding: 80px 0 90px;
  background: rgba(255, 249, 244, 0.88);
}

.banana-price-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.banana-price-label {
  font-family: 'Josefin Slab', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: #C49882;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.banana-price-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 400;
  color: #3E3331;
  letter-spacing: 0.12em;
  margin: 0 0 10px;
}

.banana-price-sub {
  font-size: 0.85rem;
  color: #A47864;
  letter-spacing: 0.06em;
  margin: 0 0 40px;
}

/* ---- メイン料金カード ---- */
.banana-price-main {
  margin-bottom: 40px;
}

.banana-price-card--main {
  background: #fff;
  border: 1.5px solid #EEDCB3;
  border-radius: 16px;
  padding: 36px 40px 30px;
  box-shadow: 0 4px 20px rgba(164, 120, 100, 0.08);
  text-align: left;
  max-width: 600px;
  margin: 0 auto;
}

.banana-price-plan-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: #3E3331;
  letter-spacing: 0.08em;
  margin: 0 0 6px;
}

.banana-price-plan-desc {
  font-size: 0.82rem;
  color: #A47864;
  letter-spacing: 0.05em;
  margin: 0 0 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #EEDCB3;
}

.banana-price-card-body {
  margin-bottom: 20px;
}

.banana-price-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px dashed #EEDCB3;
}

.banana-price-row:last-child {
  border-bottom: none;
}

.banana-price-day {
  font-size: 0.8rem;
  color: #A47864;
  letter-spacing: 0.06em;
  min-width: 52px;
  background: #FFF0E8;
  border-radius: 4px;
  padding: 2px 10px;
  text-align: center;
}

.banana-price-row--holiday .banana-price-day {
  background: #EEDCB3;
  color: #7A5C46;
}

.banana-price-amount {
  font-family: 'Josefin Slab', sans-serif;
  font-size: 1.55rem;
  font-weight: 600;
  color: #3E3331;
  letter-spacing: 0.03em;
}

.banana-price-amount small {
  font-size: 0.72rem;
  font-weight: 400;
  color: #A47864;
  margin-left: 6px;
  font-family: 'Noto Serif JP', serif;
  letter-spacing: 0.04em;
}

/* 含まれる内容チェックリスト */
.banana-price-includes {
  list-style: none;
  padding: 0;
  margin: 18px 0 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}

.banana-price-includes li {
  font-size: 0.82rem;
  color: #5C4A40;
  letter-spacing: 0.04em;
}

.banana-price-includes li .fa-circle-check {
  color: #8FAF8F;
  margin-right: 4px;
}

.banana-price-note {
  font-size: 0.75rem;
  color: #C49882;
  line-height: 1.7;
  letter-spacing: 0.03em;
  margin: 12px 0 0;
  padding-top: 14px;
  border-top: 1px solid #EEDCB3;
}

/* ---- オプションカード ---- */
.banana-price-option-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 1rem;
  font-weight: 400;
  color: #3E3331;
  letter-spacing: 0.1em;
  margin: 0 0 20px;
}

.banana-price-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.banana-price-option-card {
  background: #fff;
  border: 1px solid #EEDCB3;
  border-radius: 12px;
  padding: 22px 20px 20px;
  text-align: left;
  box-shadow: 0 2px 10px rgba(164, 120, 100, 0.06);
}

.banana-price-option-head {
  font-size: 0.85rem;
  font-weight: 600;
  color: #A47864;
  letter-spacing: 0.06em;
  margin: 0 0 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid #EEDCB3;
}

.banana-price-option-head .fa-shirt,
.banana-price-option-head .fa-wand-sparkles {
  margin-right: 5px;
}

.banana-price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8rem;
}

.banana-price-table td {
  padding: 6px 4px;
  color: #5C4A40;
  vertical-align: middle;
  border-bottom: 1px dashed #EEDCB3;
  line-height: 1.4;
}

.banana-price-table tr:last-child td {
  border-bottom: none;
}

.banana-price-table td:last-child {
  text-align: right;
  font-family: 'Josefin Slab', sans-serif;
  font-size: 0.88rem;
  white-space: nowrap;
}

.banana-price-table td:last-child small {
  font-size: 0.68rem;
  color: #A47864;
  font-family: 'Noto Serif JP', serif;
}

.banana-price-option-note {
  font-size: 0.7rem;
  color: #C49882;
  margin: 10px 0 0;
  letter-spacing: 0.02em;
}

/* ---- 料金セクションCTA ---- */
.banana-price-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.banana-price-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.banana-price-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.banana-price-cta-line {
  background: #06C755;
  color: #fff;
  box-shadow: 0 4px 14px rgba(6, 199, 85, 0.3);
}

.banana-price-cta-tel {
  background: #fff;
  color: #A47864;
  border: 1.5px solid #C49882;
  box-shadow: 0 4px 14px rgba(164, 120, 100, 0.12);
}

/* --line / --tel / --outline（キャンペーンボタン用エイリアス） */
.banana-price-cta-btn--line {
  background: #06C755;
  color: #fff;
  box-shadow: 0 4px 14px rgba(6, 199, 85, 0.3);
}

.banana-price-cta-btn--tel {
  background: #A47864;
  color: #fff;
  border: none;
  box-shadow: 0 4px 14px rgba(164, 120, 100, 0.35);
}

.banana-price-cta-btn--tel:hover {
  background: #8B6353;
  box-shadow: 0 6px 20px rgba(164, 120, 100, 0.4);
}

.banana-price-cta-btn--outline {
  background: transparent;
  color: #A47864;
  border: 1.5px solid #A47864;
}

.banana-price-cta-btn--outline:hover {
  background: #A47864;
  color: #fff;
  box-shadow: none;
}

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

@media (max-width: 551px) {
  #banana-price {
    padding: 60px 0 70px;
  }

  .banana-price-inner {
    padding: 0 16px;
  }

  .banana-price-card--main {
    padding: 26px 22px 22px;
  }

  .banana-price-amount {
    font-size: 1.3rem;
  }

  .banana-price-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .banana-price-cta-btn {
    justify-content: center;
    padding: 15px 20px;
  }
}

/* =============================================
   FAQ SECTION（よくある質問）
   トップページ簡易版 ＋ 専用FAQページ共通
   ============================================= */
#banana-faq,
.banana-faq-page {
  padding: 80px 0 90px;
  background: rgba(255, 255, 255, 0.88);
}

.banana-faq-inner,
.banana-faq-page-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 40px;
}

.banana-faq-label {
  font-family: 'Josefin Slab', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: #C49882;
  margin: 0 0 10px;
  text-transform: uppercase;
  text-align: center;
}

.banana-faq-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  color: #3E3331;
  letter-spacing: 0.12em;
  margin: 0 0 10px;
  text-align: center;
}

.banana-faq-sub {
  font-size: 0.85rem;
  color: #A47864;
  letter-spacing: 0.06em;
  margin: 0 0 40px;
  text-align: center;
}

/* ---- アコーディオン本体 ---- */
.banana-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid #EEDCB3;
}

.banana-faq-item {
  border-bottom: 1px solid #EEDCB3;
}

/* 質問ボタン */
.banana-faq-q {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  cursor: pointer;
  text-align: left;
  font-family: 'Noto Serif JP', serif;
  font-size: 1.05rem;
  color: #3E3331;
  letter-spacing: 0.05em;
  line-height: 1.6;
  transition: color 0.2s ease;
}

.banana-faq-q:hover {
  color: #A47864;
}

.banana-faq-q-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: #A47864;
  color: #fff;
  border-radius: 50%;
  font-family: 'Josefin Slab', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0;
}

.banana-faq-q-text {
  flex: 1;
}

.banana-faq-q-arrow {
  flex-shrink: 0;
  color: #C49882;
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

/* 開いている状態 */
.banana-faq-q[aria-expanded="true"] .banana-faq-q-arrow {
  transform: rotate(180deg);
}

.banana-faq-q[aria-expanded="true"] {
  color: #A47864;
}

/* 回答エリア */
.banana-faq-a {
  padding: 0 0 24px 50px;
}

.banana-faq-a p {
  font-size: 0.95rem;
  color: #5C4A40;
  line-height: 1.9;
  letter-spacing: 0.04em;
  margin: 0;
}

/* アニメーション用 */
.banana-faq-a[data-animating] {
  overflow: hidden;
  transition: height 0.3s ease;
}

/* ---- 「もっと見る」リンク ---- */
.banana-faq-more {
  margin-top: 36px;
  text-align: center;
}

.banana-faq-more-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: #A47864;
  letter-spacing: 0.06em;
  text-decoration: none;
  border-bottom: 1px solid #C49882;
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.banana-faq-more-link:hover {
  color: #7A5C46;
  border-color: #A47864;
}

/* ---- FAQページ用カテゴリーヘッダー ---- */
.banana-faq-category-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 1rem;
  font-weight: 400;
  color: #3E3331;
  letter-spacing: 0.1em;
  margin: 48px 0 16px;
  padding-left: 12px;
  border-left: 3px solid #A47864;
}

.banana-faq-category-title:first-child {
  margin-top: 0;
}

/* ---- FAQページのCTA ---- */
.banana-faq-page-cta {
  margin-top: 56px;
  background: #FFF0E8;
  border-radius: 16px;
  padding: 36px 32px;
  text-align: center;
}

.banana-faq-page-cta p {
  font-size: 0.9rem;
  color: #5C4A40;
  letter-spacing: 0.05em;
  line-height: 1.8;
  margin: 0 0 24px;
}

.banana-faq-page-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* SP */
@media (max-width: 551px) {
  #banana-faq,
  .banana-faq-page {
    padding: 60px 0 70px;
  }

  .banana-faq-inner,
  .banana-faq-page-inner {
    padding: 0 16px;
  }

  .banana-faq-q {
    padding: 16px 0;
    font-size: 0.88rem;
  }

  .banana-faq-a {
    padding: 0 0 16px 42px;
  }

  .banana-faq-page-cta {
    padding: 28px 20px;
  }

  .banana-faq-page-cta-btns {
    flex-direction: column;
    align-items: stretch;
  }
}

/* =============================================
   FLOW SECTION（撮影の流れ）
   縦ステップライン型
   ============================================= */
#banana-flow {
  padding: 88px 0 96px;
  background: rgba(255, 249, 244, 0.88);
  position: relative;
  overflow: hidden;
}

/* 背景装飾 */
#banana-flow::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(238,220,179,0.2) 0%, transparent 65%);
  pointer-events: none;
}

.banana-flow-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ---- セクションヘッダー ---- */
.banana-flow-label {
  font-family: 'Josefin Slab', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  color: #C49882;
  margin: 0 0 12px;
  text-transform: uppercase;
  text-align: center;
}

.banana-flow-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 400;
  color: #3E3331;
  letter-spacing: 0.1em;
  text-align: center;
  margin: 0 0 12px;
}

.banana-flow-sub {
  font-size: clamp(0.875rem, 1.5vw, 0.95rem);
  color: #7A6057;
  text-align: center;
  letter-spacing: 0.06em;
  margin: 0 0 60px;
}

/* ---- ステップリスト ---- */
.banana-flow-list {
  list-style: none;
  margin: 0 0 60px;
  padding: 0;
  position: relative;
}

/* 縦ライン */
.banana-flow-list::before {
  content: '';
  position: absolute;
  top: 32px;
  bottom: 32px;
  left: 31px;
  width: 2px;
  background: linear-gradient(180deg, #EEDCB3 0%, #C49882 50%, #EEDCB3 100%);
}

/* ---- 各ステップ ---- */
.banana-flow-item {
  display: grid;
  grid-template-columns: 64px 52px 1fr;
  align-items: flex-start;
  gap: 0 16px;
  margin-bottom: 40px;
  position: relative;
}

.banana-flow-item:last-child {
  margin-bottom: 0;
}

/* 番号 */
.banana-flow-num {
  font-family: 'Josefin Slab', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: #C49882;
  text-align: center;
  padding-top: 20px;
  line-height: 1;
}

/* アイコン円 */
.banana-flow-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFF0E8 0%, #EEDCB3 100%);
  border: 2px solid #fff;
  box-shadow: 0 2px 12px rgba(164,120,100,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #A47864;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

/* テキスト本体 */
.banana-flow-body {
  padding-top: 8px;
  padding-bottom: 8px;
}

.banana-flow-step-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: #3E3331;
  letter-spacing: 0.08em;
  margin: 0 0 8px;
  line-height: 1.5;
}

.banana-flow-step-desc {
  font-size: 0.88rem;
  color: #7A6057;
  line-height: 1.9;
  letter-spacing: 0.04em;
  margin: 0;
}

/* ---- CTA ---- */
.banana-flow-cta {
  text-align: center;
  background: linear-gradient(135deg, #FFF0E8 0%, #EEDCB3 100%);
  border-radius: 20px;
  padding: 40px 32px;
}

.banana-flow-cta-lead {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  color: #3E3331;
  letter-spacing: 0.08em;
  margin: 0 0 24px;
}

.banana-flow-cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- レスポンシブ ---- */
@media (max-width: 551px) {
  #banana-flow {
    padding: 64px 0 72px;
  }

  .banana-flow-inner {
    padding: 0 16px;
  }

  .banana-flow-sub {
    margin-bottom: 44px;
  }

  .banana-flow-list::before {
    left: 27px;
  }

  .banana-flow-item {
    grid-template-columns: 56px 44px 1fr;
    gap: 0 12px;
    margin-bottom: 32px;
  }

  .banana-flow-icon {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }

  .banana-flow-cta {
    padding: 30px 20px;
  }

  .banana-flow-cta-btns {
    flex-direction: column;
    align-items: stretch;
  }

  .banana-flow-cta-btns .banana-price-cta-btn {
    justify-content: center;
  }
}

/* =============================================
   STAFF SECTION（スタッフ紹介）
   ============================================= */
#banana-staff {
  padding: 80px 0 90px;
  background: rgba(255, 249, 244, 0.88);
}

.banana-staff-inner {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}

.banana-staff-label {
  font-family: 'Josefin Slab', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: #C49882;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.banana-staff-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  color: #3E3331;
  letter-spacing: 0.12em;
  margin: 0 0 10px;
}

.banana-staff-sub {
  font-size: 0.85rem;
  color: #A47864;
  letter-spacing: 0.06em;
  margin: 0 0 48px;
}

/* ---- グリッド ---- */
.banana-staff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* 5枚目は中央寄せ（3列の場合） */
.banana-staff-card:nth-child(4),
.banana-staff-card:nth-child(5) {
  /* 最終行が2枚のとき中央揃え */
}
.banana-staff-grid:has(.banana-staff-card:nth-child(5):last-child) {
  /* 5枚配置のとき最終行を中央揃え */
}

/* カード */
.banana-staff-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(164, 120, 100, 0.08);
  border: 1px solid #F0E0D0;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-align: center;
}

.banana-staff-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(164, 120, 100, 0.14);
}

/* 写真エリア */
.banana-staff-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, #EEDCB3 0%, #F5C6B0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: #fff;
}

/* 写真を実際の画像に差し替える場合 */
.banana-staff-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 情報エリア */
.banana-staff-info {
  padding: 22px 20px 24px;
}

.banana-staff-role {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: #C49882;
  background: #FFF0E8;
  display: inline-block;
  padding: 3px 12px;
  border-radius: 20px;
  margin: 0 0 10px;
}

.banana-staff-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: #3E3331;
  letter-spacing: 0.08em;
  margin: 0 0 12px;
}

.banana-staff-name span {
  font-size: 0.72rem;
  color: #C49882;
  font-weight: 400;
  margin-left: 4px;
  font-family: sans-serif;
}

.banana-staff-msg {
  font-size: 0.82rem;
  color: #7A6057;
  line-height: 1.85;
  letter-spacing: 0.04em;
  margin: 0;
  text-align: left;
}

/* ---- レスポンシブ ---- */
@media (max-width: 900px) {
  .banana-staff-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 551px) {
  #banana-staff {
    padding: 60px 0 70px;
  }

  .banana-staff-inner {
    padding: 0 16px;
  }

  .banana-staff-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .banana-staff-photo {
    aspect-ratio: 3 / 2;
    font-size: 3rem;
  }
}

/* =============================================
   CAMPAIGN SECTION（About直下・複数カード対応）
   1件：ダーク帯型 / 2〜3件：カードグリッド
   ============================================= */
#banana-campaign {
  background: linear-gradient(135deg, #3E3331 0%, #5E4E47 60%, #A47864 100%);
  padding: 72px 0 80px;
  position: relative;
  overflow: hidden;
}

/* 背景装飾 */
#banana-campaign::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 10% 50%, rgba(245,198,176,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 90% 30%, rgba(238,220,179,0.1) 0%, transparent 50%);
  pointer-events: none;
}

#banana-campaign::after {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.06);
  pointer-events: none;
}

/* ---- ラッパー ---- */
.banana-campaign-wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

/* ---- セクションヘッダー ---- */
.banana-campaign-header {
  text-align: center;
  margin-bottom: 44px;
}

.banana-campaign-section-label {
  font-family: 'Josefin Slab', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.4em;
  color: rgba(255,255,255,0.5);
  margin: 0 0 10px;
  text-transform: uppercase;
}

.banana-campaign-section-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.1em;
  margin: 0;
}

/* ---- カードリスト（件数別レイアウト） ---- */
.banana-campaign-list {
  display: grid;
  gap: 28px;
}

.banana-campaign-list--1 {
  grid-template-columns: 1fr;
  max-width: 800px;
  margin: 0 auto;
}

.banana-campaign-list--2 {
  grid-template-columns: repeat(2, 1fr);
}

.banana-campaign-list--3 {
  grid-template-columns: repeat(3, 1fr);
}

/* ---- カード共通 ---- */
.banana-campaign-card {
  background: rgba(255,255,255,0.92);
  border: none;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.banana-campaign-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 52px rgba(0,0,0,0.24);
}

/* ---- 画像エリア ---- */
.banana-campaign-card-img {
  width: 100%;
  overflow: hidden;
  /* 画像の縦幅に合わせて自然に表示（切れない） */
  max-height: 340px;
}

.banana-campaign-card-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.banana-campaign-card:hover .banana-campaign-card-img img {
  transform: scale(1.02);
}

/* 1件・画像あり → 左右2カラム */
.banana-campaign-list--1 .banana-campaign-card--has-image {
  flex-direction: row;
}

.banana-campaign-list--1 .banana-campaign-card--has-image .banana-campaign-card-img {
  width: 48%;
  max-height: none;
  flex-shrink: 0;
  overflow: hidden;
}

.banana-campaign-list--1 .banana-campaign-card--has-image .banana-campaign-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banana-campaign-list--1 .banana-campaign-card--has-image .banana-campaign-card-body {
  flex: 1;
}

/* ---- カード本文エリア ---- */
.banana-campaign-card-body {
  padding: 32px 32px 36px;
  display: flex;
  flex-direction: column;
}

/* ---- バッジ ---- */
.banana-campaign-badge {
  display: inline-block;
  align-self: flex-start;
  background: #E2725B;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  padding: 4px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
  box-shadow: 0 2px 10px rgba(226,114,91,0.4);
}

/* ---- タイトル ---- */
.banana-campaign-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.15rem, 2.5vw, 1.55rem);
  font-weight: 400;
  color: #3E3331;
  letter-spacing: 0.08em;
  line-height: 1.5;
  margin: 0 0 16px;
}

/* ---- リード文 ---- */
.banana-campaign-lead {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: #5E4E47;
  line-height: 1.85;
  letter-spacing: 0.04em;
  margin: 0 0 24px;
}

.banana-campaign-lead strong {
  color: #A47864;
  font-size: 1.15em;
  font-weight: 700;
}

/* ---- 条件リスト ---- */
.banana-campaign-terms {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.banana-campaign-terms li {
  font-size: 0.84rem;
  color: #7A6057;
  letter-spacing: 0.03em;
  line-height: 1.65;
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.banana-campaign-terms li .fa-calendar-check,
.banana-campaign-terms li .fa-circle-check {
  color: #A47864;
  margin-top: 3px;
  flex-shrink: 0;
}

.banana-campaign-terms li .fa-triangle-exclamation {
  color: #C49882;
  margin-top: 3px;
  flex-shrink: 0;
}

/* ---- CTA ---- */
.banana-campaign-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: auto;
}

/* ---- レスポンシブ ---- */
@media (max-width: 900px) {
  .banana-campaign-list--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .banana-campaign-list--2,
  .banana-campaign-list--3 {
    grid-template-columns: 1fr;
  }

  /* 1件・画像あり → SP では縦積みに戻す */
  .banana-campaign-list--1 .banana-campaign-card--has-image {
    flex-direction: column;
  }

  .banana-campaign-list--1 .banana-campaign-card--has-image .banana-campaign-card-img {
    width: 100%;
    aspect-ratio: 16 / 7;
  }
}

@media (max-width: 551px) {
  #banana-campaign {
    padding: 56px 0 64px;
  }

  .banana-campaign-wrap {
    padding: 0 20px;
  }

  .banana-campaign-header {
    margin-bottom: 32px;
  }

  .banana-campaign-card-body {
    padding: 24px 22px 28px;
  }

  .banana-campaign-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .banana-campaign-cta .banana-price-cta-btn {
    justify-content: center;
  }
}

/* =============================================
   ABOUT SECTION（ヒーロー直下・シンプル版）
   ラベル → タイトル → リード → ページリンクボタン
   ============================================= */
#banana-about {
  padding: 80px 0 88px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 249, 244, 0.88) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* 背景装飾サークル */
#banana-about::before,
#banana-about::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
#banana-about::before {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245,198,176,0.18) 0%, transparent 70%);
  top: -120px;
  left: -100px;
}
#banana-about::after {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(143,175,143,0.12) 0%, transparent 70%);
  bottom: -80px;
  right: -80px;
}

.banana-about-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

/* ---- ラベル ---- */
.banana-about-label {
  font-family: 'Josefin Slab', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  color: #C49882;
  margin: 0 0 12px;
  text-transform: uppercase;
}

/* ---- タイトル ---- */
.banana-about-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 400;
  color: #3E3331;
  letter-spacing: 0.1em;
  line-height: 1.5;
  margin: 0 0 24px;
}

/* ---- リード文 ---- */
.banana-about-lead {
  font-size: clamp(0.9rem, 1.6vw, 1.05rem);
  color: #7A6057;
  line-height: 2;
  letter-spacing: 0.06em;
  margin: 0 0 40px;
}

/* ---- ページリンクボタン ---- */
.banana-about-more {
  display: flex;
  justify-content: center;
}

.banana-about-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  border: 1.5px solid #A47864;
  border-radius: 40px;
  color: #A47864;
  font-family: 'Noto Serif JP', serif;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: background 0.22s ease, color 0.22s ease;
  background: transparent;
}

.banana-about-more-btn:hover {
  background: #A47864;
  color: #fff;
  text-decoration: none;
}

.banana-about-more-btn .fa-arrow-right {
  font-size: 0.8rem;
  transition: transform 0.22s ease;
}

.banana-about-more-btn:hover .fa-arrow-right {
  transform: translateX(4px);
}

/* ---- レスポンシブ ---- */
@media (max-width: 551px) {
  #banana-about {
    padding: 60px 0 68px;
  }

  .banana-about-inner {
    padding: 0 16px;
  }

  .banana-about-more-btn {
    padding: 13px 28px;
    font-size: 0.9rem;
  }
}

/* =============================================
   ABOUT PAGE（page-about.php 専用スタイル）
   ============================================= */
.banana-about-page {
  padding: 72px 0 96px;
}

.banana-about-page-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ---- ページヘッダー ---- */
.banana-about-page-label {
  font-family: 'Josefin Slab', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  color: #C49882;
  margin: 0 0 12px;
  text-transform: uppercase;
  text-align: center;
}

.banana-about-page-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 400;
  color: #3E3331;
  letter-spacing: 0.1em;
  line-height: 1.5;
  margin: 0 0 24px;
  text-align: center;
}

.banana-about-page-lead {
  font-size: clamp(0.95rem, 1.7vw, 1.08rem);
  color: #7A6057;
  line-height: 2;
  letter-spacing: 0.06em;
  margin: 0;
  text-align: center;
}

.banana-about-page-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #C49882, transparent);
  margin: 48px auto;
}

/* ---- 3特徴グリッド ---- */
.banana-about-page-features {
  margin-bottom: 72px;
}

.banana-about-page-features-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 400;
  color: #3E3331;
  letter-spacing: 0.1em;
  text-align: center;
  margin: 0 0 40px;
}

.banana-about-page-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.banana-about-page-feature {
  background: #fff;
  border-radius: 20px;
  padding: 36px 24px 32px;
  box-shadow: 0 4px 24px rgba(164, 120, 100, 0.08);
  border: 1px solid rgba(238, 220, 179, 0.6);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-align: center;
}

.banana-about-page-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(164, 120, 100, 0.14);
}

.banana-about-page-feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFF0E8 0%, #EEDCB3 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
  color: #A47864;
}

.banana-about-page-feature-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: #3E3331;
  letter-spacing: 0.08em;
  line-height: 1.6;
  margin: 0 0 14px;
}

.banana-about-page-feature-desc {
  font-size: 0.875rem;
  color: #7A6057;
  line-height: 1.85;
  letter-spacing: 0.04em;
  margin: 0;
  text-align: left;
}

/* ---- スタジオ紹介文 ---- */
.banana-about-page-studio {
  background: #FFF9F4;
  border-radius: 20px;
  padding: 48px 52px;
  margin-bottom: 64px;
  border: 1px solid rgba(238, 220, 179, 0.5);
}

.banana-about-page-studio-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  font-weight: 400;
  color: #3E3331;
  letter-spacing: 0.1em;
  margin: 0 0 28px;
  text-align: center;
}

.banana-about-page-studio-text {
  font-size: 0.95rem;
  color: #5E4E47;
  line-height: 2;
  letter-spacing: 0.05em;
  margin: 0 0 20px;
}

.banana-about-page-studio-text:last-child {
  margin-bottom: 0;
}

/* ---- 基本情報テーブル ---- */
.banana-about-page-info {
  margin-bottom: 64px;
}

.banana-about-page-info-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  font-weight: 400;
  color: #3E3331;
  letter-spacing: 0.1em;
  margin: 0 0 28px;
  text-align: center;
}

.banana-about-page-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.banana-about-page-table th,
.banana-about-page-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(238, 220, 179, 0.6);
  line-height: 1.8;
}

.banana-about-page-table th {
  width: 30%;
  color: #A47864;
  font-weight: 500;
  letter-spacing: 0.05em;
  background: #FFFAF6;
  white-space: nowrap;
}

.banana-about-page-table td {
  color: #3E3331;
}

.banana-about-page-tel-link {
  color: #3E3331;
  text-decoration: none;
  font-weight: 500;
}

.banana-about-page-tel-link:hover {
  color: #A47864;
}

/* ---- CTA ---- */
.banana-about-page-cta {
  text-align: center;
  background: linear-gradient(135deg, #FFF0E8 0%, #EEDCB3 100%);
  border-radius: 24px;
  padding: 48px 32px;
}

.banana-about-page-cta-lead {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #3E3331;
  letter-spacing: 0.08em;
  margin: 0 0 28px;
}

.banana-about-page-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- レスポンシブ ---- */
@media (max-width: 767px) {
  .banana-about-page-feature-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .banana-about-page-studio {
    padding: 36px 28px;
  }
}

@media (max-width: 551px) {
  .banana-about-page {
    padding: 48px 0 72px;
  }

  .banana-about-page-inner {
    padding: 0 16px;
  }

  .banana-about-page-feature {
    padding: 28px 20px 26px;
  }

  .banana-about-page-studio {
    padding: 28px 20px;
  }

  .banana-about-page-table th {
    width: 38%;
    padding: 12px 12px;
  }

  .banana-about-page-table td {
    padding: 12px 12px;
  }

  .banana-about-page-cta {
    padding: 36px 20px;
  }

  .banana-about-page-cta-btns {
    flex-direction: column;
    align-items: stretch;
  }

  .banana-about-page-cta-btns .banana-price-cta-btn {
    justify-content: center;
  }

}


/* =============================================
   HOW TO BOOK セクション（予約方法）
   ============================================= */

#banana-howtobook {
  padding: 88px 0 96px;
  background: #fff;
  position: relative;
  overflow: hidden;
}

/* 背景装飾 */
#banana-howtobook::before {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,152,130,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.banana-howtobook-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ---- セクションヘッダー ---- */
.banana-howtobook-label {
  font-family: 'Josefin Slab', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  color: #C49882;
  margin: 0 0 12px;
  text-transform: uppercase;
  text-align: center;
}

.banana-howtobook-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 400;
  color: #3E3331;
  letter-spacing: 0.1em;
  text-align: center;
  margin: 0 0 12px;
}

.banana-howtobook-sub {
  font-size: clamp(0.875rem, 1.5vw, 0.95rem);
  color: #7A6057;
  text-align: center;
  letter-spacing: 0.06em;
  margin: 0 0 60px;
}

/* ---- ステップリスト ---- */
.banana-howtobook-list {
  list-style: none;
  margin: 0 0 60px;
  padding: 0;
  position: relative;
}

/* 縦ライン */
.banana-howtobook-list::before {
  content: '';
  position: absolute;
  top: 32px;
  bottom: 32px;
  left: 31px;
  width: 2px;
  background: linear-gradient(180deg, #EEDCB3 0%, #C49882 50%, #EEDCB3 100%);
}

/* ---- 各ステップ ---- */
.banana-howtobook-item {
  display: grid;
  grid-template-columns: 64px 52px 1fr;
  align-items: flex-start;
  gap: 0 16px;
  margin-bottom: 40px;
  position: relative;
}

.banana-howtobook-item:last-child {
  margin-bottom: 0;
}

/* 番号 */
.banana-howtobook-num {
  font-family: 'Josefin Slab', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: #C49882;
  text-align: center;
  padding-top: 20px;
  line-height: 1;
}

/* アイコン円 */
.banana-howtobook-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFF0E8 0%, #EEDCB3 100%);
  border: 2px solid #fff;
  box-shadow: 0 2px 12px rgba(164,120,100,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #A47864;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

/* テキスト本体 */
.banana-howtobook-body {
  padding-top: 8px;
}

.banana-howtobook-step-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 500;
  color: #3E3331;
  letter-spacing: 0.06em;
  margin: 0 0 8px;
  line-height: 1.4;
}

.banana-howtobook-step-desc {
  font-size: clamp(0.85rem, 1.5vw, 0.92rem);
  color: #5E4E47;
  line-height: 1.85;
  margin: 0;
}

/* ---- CTA ---- */
.banana-howtobook-cta {
  text-align: center;
  padding-top: 56px;
  border-top: 1px solid rgba(196,152,130,0.2);
  margin-top: 60px;
}

.banana-howtobook-cta-lead {
  font-size: clamp(0.875rem, 1.5vw, 0.95rem);
  color: #7A6057;
  margin: 0 0 24px;
  letter-spacing: 0.06em;
}

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

/* ---- スマホ対応 ---- */
@media (max-width: 767px) {
  #banana-howtobook {
    padding: 64px 0 72px;
  }

  .banana-howtobook-inner {
    padding: 0 20px;
  }

  .banana-howtobook-sub {
    margin-bottom: 44px;
  }

  .banana-howtobook-item {
    grid-template-columns: 48px 44px 1fr;
    gap: 0 12px;
    margin-bottom: 32px;
  }

  .banana-howtobook-list::before {
    left: 23px;
  }

  .banana-howtobook-icon {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }

  .banana-howtobook-num {
    padding-top: 14px;
  }

  .banana-howtobook-cta-btns {
    flex-direction: column;
    align-items: stretch;
  }

  .banana-howtobook-cta-btns .banana-price-cta-btn {
    justify-content: center;
  }
}


/* =============================================
   予約方法ページ（page-howtobook.php）
   ============================================= */

.banana-howtobook-page {
  padding: 72px 0 96px;
}

.banana-howtobook-page-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ---- ページヘッダー ---- */
.banana-howtobook-page-label {
  font-family: 'Josefin Slab', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  color: #C49882;
  margin: 0 0 12px;
  text-transform: uppercase;
  text-align: center;
}

.banana-howtobook-page-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 400;
  color: #3E3331;
  letter-spacing: 0.1em;
  line-height: 1.5;
  margin: 0 0 24px;
  text-align: center;
}

.banana-howtobook-page-lead {
  font-size: clamp(0.9rem, 1.8vw, 1rem);
  color: #5E4E47;
  line-height: 1.9;
  text-align: center;
  margin: 0 0 40px;
}

.banana-howtobook-page-line {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, #EEDCB3, #C49882);
  margin: 0 auto 60px;
  border-radius: 2px;
}

/* ---- ステップセクション ---- */
.banana-howtobook-page-steps {
  margin-bottom: 64px;
}

/* banana-howtobook-list / item / num / icon / body / step-title / step-desc は
   セクション用CSSと共用（上記 HOW TO BOOK セクションのスタイルを流用） */

/* ---- 注意事項 ---- */
.banana-howtobook-page-notes {
  background: #FFF9F4;
  border-radius: 20px;
  padding: 36px 40px;
  margin-bottom: 64px;
}

.banana-howtobook-page-notes-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 500;
  color: #3E3331;
  letter-spacing: 0.06em;
  margin: 0 0 20px;
}

.banana-howtobook-page-notes-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.banana-howtobook-page-notes-list li {
  font-size: clamp(0.85rem, 1.5vw, 0.92rem);
  color: #5E4E47;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.7;
}

.banana-howtobook-page-notes-list li .fa-circle-info {
  color: #C49882;
  margin-top: 3px;
  flex-shrink: 0;
}

/* ---- CTA ---- */
.banana-howtobook-page-cta {
  text-align: center;
  background: linear-gradient(135deg, #FFF0E8 0%, #EEDCB3 100%);
  border-radius: 24px;
  padding: 48px 32px;
}

.banana-howtobook-page-cta-lead {
  font-size: clamp(0.9rem, 1.8vw, 1rem);
  color: #5E4E47;
  margin: 0 0 24px;
  letter-spacing: 0.04em;
}

.banana-howtobook-page-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- スマホ対応 ---- */
@media (max-width: 551px) {
  .banana-howtobook-page {
    padding: 48px 0 72px;
  }

  .banana-howtobook-page-inner {
    padding: 0 16px;
  }

  .banana-howtobook-page-notes {
    padding: 28px 20px;
  }

  .banana-howtobook-page-cta {
    padding: 36px 20px;
  }

  .banana-howtobook-page-cta-btns {
    flex-direction: column;
    align-items: stretch;
  }

  .banana-howtobook-page-cta-btns .banana-price-cta-btn {
    justify-content: center;
  }
}


/* =============================================
   PLAN セクション（撮影プラン カード横並び）
   ============================================= */

#banana-plan {
  padding: 88px 0 96px;
  background: rgba(255, 249, 244, 0.88);
  position: relative;
  overflow: hidden;
}

#banana-plan::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(238,220,179,0.25) 0%, transparent 65%);
  pointer-events: none;
}

.banana-plan-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ---- セクションヘッダー ---- */
.banana-plan-label {
  font-family: 'Josefin Slab', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  color: #C49882;
  margin: 0 0 12px;
  text-transform: uppercase;
  text-align: center;
}

.banana-plan-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 400;
  color: #3E3331;
  letter-spacing: 0.1em;
  text-align: center;
  margin: 0 0 12px;
}

.banana-plan-sub {
  font-size: clamp(0.875rem, 1.5vw, 0.95rem);
  color: #7A6057;
  text-align: center;
  letter-spacing: 0.06em;
  margin: 0 0 56px;
}

/* ---- カードグリッド ---- */
.banana-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 56px;
}

/* ---- 各カード ---- */
.banana-plan-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(62,51,49,0.08);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.banana-plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(62,51,49,0.14);
}

/* アイコンエリア */
.banana-plan-card-icon {
  background: linear-gradient(135deg, #FFF0E8 0%, #EEDCB3 100%);
  padding: 36px 0 28px;
  text-align: center;
  font-size: 2.6rem;
  color: #A47864;
  flex-shrink: 0;
}

/* カード本文 */
.banana-plan-card-body {
  padding: 24px 28px 20px;
  flex: 1;
}

.banana-plan-card-tag {
  display: inline-block;
  font-family: 'Josefin Slab', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: #fff;
  background: #A47864;
  border-radius: 20px;
  padding: 3px 12px;
  margin: 0 0 14px;
}

.banana-plan-card-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 500;
  color: #3E3331;
  letter-spacing: 0.06em;
  margin: 0 0 12px;
  line-height: 1.4;
}

.banana-plan-card-desc {
  font-size: clamp(0.82rem, 1.4vw, 0.88rem);
  color: #5E4E47;
  line-height: 1.85;
  margin: 0 0 16px;
}

/* 特徴リスト */
.banana-plan-card-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.banana-plan-card-features li {
  font-size: clamp(0.8rem, 1.3vw, 0.85rem);
  color: #5E4E47;
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.5;
}

.banana-plan-card-features li .fa-circle-check {
  color: #A47864;
  flex-shrink: 0;
}

/* カードフッター */
.banana-plan-card-footer {
  padding: 20px 28px 24px;
  border-top: 1px solid rgba(196,152,130,0.15);
}

.banana-plan-card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: #A47864;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: gap 0.2s ease, color 0.2s ease;
}

.banana-plan-card-btn:hover {
  color: #7A5040;
  gap: 12px;
}

/* ---- CTA ---- */
.banana-plan-cta {
  text-align: center;
  padding-top: 16px;
}

.banana-plan-cta-lead {
  font-size: clamp(0.9rem, 1.6vw, 1rem);
  color: #5E4E47;
  margin: 0 0 24px;
  letter-spacing: 0.04em;
}

.banana-plan-cta-lead strong {
  color: #A47864;
  font-weight: 700;
}

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

/* ---- タブレット ---- */
@media (max-width: 900px) {
  .banana-plan-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .banana-plan-card-icon {
    padding: 28px 0 22px;
    font-size: 2.2rem;
  }
}

/* ---- スマホ ---- */
@media (max-width: 551px) {
  #banana-plan {
    padding: 64px 0 72px;
  }

  .banana-plan-inner {
    padding: 0 20px;
  }

  .banana-plan-sub {
    margin-bottom: 40px;
  }

  .banana-plan-cta-btns {
    flex-direction: column;
    align-items: stretch;
  }

  .banana-plan-cta-btns .banana-price-cta-btn {
    justify-content: center;
  }
}

/* =============================================
   SERVICE セクション
   ============================================= */

#banana-service {
  padding: 88px 0 96px;
  background: rgba(255, 255, 255, 0.88);
}

.banana-service-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 40px;
}

.banana-service-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #A47864;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 8px;
}

.banana-service-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  text-align: center;
  color: #3E3331;
  margin-bottom: 56px;
  letter-spacing: 0.05em;
}

/* 3列グリッド */
.banana-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* カード */
.banana-service-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(62, 51, 49, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.banana-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(62, 51, 49, 0.14);
}

/* 画像エリア（プレースホルダー） */
.banana-service-card-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.banana-service-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 画像が無い場合のプレースホルダー */
.banana-service-card-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #FFF0E8 0%, #EEDCB3 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: #A47864;
}

/* カード本文 */
.banana-service-card-body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.banana-service-card-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #A47864;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.banana-service-card-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: #3E3331;
  margin-bottom: 12px;
  line-height: 1.5;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

/* バッジ（きょうだい無料！など） */
.banana-service-card-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  background: #A47864;
  color: #fff;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.banana-service-card-desc {
  font-size: 0.9rem;
  line-height: 1.75;
  color: #5C4F4B;
  flex: 1;
  margin-bottom: 20px;
}

.banana-service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #A47864;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: gap 0.2s ease, color 0.2s ease;
}

.banana-service-card-link:hover {
  color: #C49882;
  gap: 10px;
}

/* ---- タブレット ---- */
@media (max-width: 900px) {
  #banana-service {
    padding: 64px 0 72px;
  }

  .banana-service-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .banana-service-card {
    flex-direction: row;
    border-radius: 16px;
  }

  .banana-service-card-img-wrap {
    width: 200px;
    min-width: 200px;
    aspect-ratio: auto;
  }
}

/* ---- スマホ ---- */
@media (max-width: 551px) {
  .banana-service-inner {
    padding: 0 20px;
  }

  .banana-service-title {
    margin-bottom: 40px;
  }

  .banana-service-card {
    flex-direction: column;
  }

  .banana-service-card-img-wrap {
    width: 100%;
    aspect-ratio: 4 / 3;
  }

  .banana-service-card-body {
    padding: 20px 20px 24px;
  }
}

/* =============================================
   オンライン予約ボタン共通スタイル
   ============================================= */

/* ---- CTAエリア内の予約ボタン ---- */
.banana-price-cta-btn--reserve {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 40px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  background: linear-gradient(135deg, #3E3331 0%, #5C4F4B 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(62, 51, 49, 0.3);
}

.banana-price-cta-btn--reserve:hover {
  opacity: 0.88;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(62, 51, 49, 0.35);
  color: #fff;
}

/* ---- HOW TO BOOK ページ ステップ内ボタン ---- */
.banana-howtobook-reserve-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 12px 24px;
  border-radius: 40px;
  background: linear-gradient(135deg, #3E3331 0%, #5C4F4B 100%);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 14px rgba(62, 51, 49, 0.25);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.banana-howtobook-reserve-btn:hover {
  opacity: 0.88;
  transform: translateY(-2px);
  color: #fff;
}

/* ---- ヘッダー オンライン予約ボタン（PC） ---- */
#header-reserve-btn-wrap {
  display: flex;
  align-items: center;
  margin-left: 16px;
  flex-shrink: 0;
}

.header-reserve-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: 40px;
  background: linear-gradient(135deg, #3E3331 0%, #5C4F4B 100%);
  color: #fff !important;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none !important;
  white-space: nowrap;
  box-shadow: 0 3px 10px rgba(62, 51, 49, 0.25);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.header-reserve-btn:hover {
  opacity: 0.85;
  transform: translateY(-1px);
  color: #fff !important;
}

/* タブレット・ハンバーガーメニュー時は非表示 */
@media (max-width: 900px) {
  #header-reserve-btn-wrap {
    display: none;
  }
}

/* ---- SP 固定バー オンライン予約ボタン ---- */
.sp-cta-reserve {
  background-color: #3E3331 !important;
  color: #fff !important;
  text-decoration: none;
}

.sp-cta-reserve:hover {
  opacity: 0.88;
  color: #fff !important;
}
