/* Mieわんこ撮影会 プレミアムデザインシステム v3 (Stylish & Comfort) */

:root {
  /* カラーパレット - Refined & Natural */
  /* メイン: 落ち着いたコーラルピンク (Adult Cute) */
  --primary-color: #E69A8D;
  --primary-dark: #C56D5F;
  --primary-light: #F9EBEA;

  /* サブ: ナチュラルオリーブ/セージ */
  --secondary-color: #B2C2A3;
  --secondary-dark: #849E78;
  --secondary-light: #EDF2EA;

  /* アクセント */
  --accent-gold: #D4AF37;
  --accent-sand: #F5E6CA;
  --cream-light: #FFFBE5;

  /* テキスト */
  --text-color: #4A4A4A;
  /* チャコールグレーで引き締め */
  --text-light: #7A7A7A;
  --text-muted: #999999;

  /* 背景 */
  --bg-color: #FFFAFA;
  /* スノーホワイトに近い暖色 */
  --card-bg: #FFFFFF;

  /* フォント */
  --font-heading: 'M PLUS Rounded 1c', sans-serif;
  --font-body: 'M PLUS Rounded 1c', sans-serif;
  --font-en: 'Varela Round', sans-serif;
  /* 英語番号用 */

  /* シャドウ - 上品に */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.08);

  /* 角丸 - 少し控えめに */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 100px;
  /* Pill shape */
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.8;
  letter-spacing: 0.04em;
  background-image: none;
  /* シンプルに */
  overflow-x: hidden;
  /* Bootstrapの.rowの負マージンによる横はみ出し防止 */
}


h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-color);
  letter-spacing: 0.08em;
  line-height: 1.4;
}

/* リンク */
a {
  color: var(--primary-dark);
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: var(--primary-color);
}

/* ユーティリティ */
.text-primary-custom {
  color: var(--primary-dark) !important;
}

.text-secondary-custom {
  color: var(--secondary-dark) !important;
}

.bg-primary-soft {
  background-color: var(--primary-light) !important;
}

/* アイコン背景円を正丸に固定（width/height明示で確実に） */
.bg-primary-soft.rounded-circle {
  width: 2.75rem !important;
  height: 2.75rem !important;
  padding: 0 !important;
  flex-shrink: 0;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
}


.bg-primary-custom {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)) !important;
}

.bg-success-soft {
  background-color: #E8F5E9 !important;
  color: #2E7D32 !important;
}

.bg-gray-soft {
  background-color: #F5F5F5 !important;
  color: #757575 !important;
}

.bg-cream-custom {
  background-color: var(--cream-light) !important;
}

.text-orange {
  color: #f57c00 !important;
}

.text-purple {
  color: #7b1fa2 !important;
}

.text-pink {
  color: #d81b60 !important;
}


/* シネマスターイル 予約スロットカード */
.cinema-slot-card {
  background: #fff;
  border: 2px solid #E6D5B8;
  /* ベージュ系のソフトな境界線 */
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.cinema-slot-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(212, 162, 118, 0.15);
  border-color: var(--primary-color);
}

.cinema-slot-card.is-available {
  border-color: #E6D5B8;
}

.cinema-slot-card.is-full {
  background-color: #F5F5F5;
  border-color: #E0E0E0;
  opacity: 0.65;
}

.is-full .cinema-slot-time {
  color: #BBB;
}

.is-full .cinema-slot-range {
  color: #CCC;
}

/* カード上部：時間（センタリング） */
.cinema-slot-header {
  padding: 1.25rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #F1F1F1;
  flex-grow: 1;
}

.cinema-slot-time-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cinema-slot-time {
  font-size: 1.5rem;
  font-weight: 800;
  color: #4A4A4A;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.cinema-slot-range {
  font-size: 0.75rem;
  color: #999;
  font-weight: 600;
}

.cinema-slot-status-badge {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  border: 1px solid currentColor;
}

.is-available .cinema-slot-status-badge {
  color: #2E7D32;
  background-color: #E8F5E9;
  border-color: #C8E6C9;
}

.is-full .cinema-slot-status-badge {
  color: #757575;
  background-color: #F5F5F5;
  border-color: #E0E0E0;
}

/* カード下部：ボタン/アクションエリア */
.cinema-slot-footer {
  padding: 1rem;
  text-align: center;
  background-color: #fff;
}

.cinema-slot-action {
  color: var(--primary-dark);
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.cinema-slot-action i {
  font-size: 1.1rem;
}

.is-full .cinema-slot-footer {
  background-color: #F8F9FA;
}

.is-full .cinema-slot-action {
  color: #999;
}

/* モバイル向け 2列表示の調整 */
@media (max-width: 576px) {
  .cinema-slot-time {
    font-size: 1.25rem;
  }

  .cinema-slot-header {
    padding: 1rem 0.75rem;
  }

  .cinema-slot-footer {
    padding: 0.75rem;
  }
}

.modal-title {
  color: #fff;
}

.font-rounded {
  font-family: var(--font-heading);
}

.font-number {
  font-family: var(--font-number);
}

/* ボタン - ぷくい */
.btn {
  border-radius: var(--radius-xl);
  font-weight: 700;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  /* バウンス */
  border: none;
}

.btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-md);
}

.btn:active {
  transform: translateY(-1px) scale(0.98);
}

.btn-primary-custom {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
}

.btn-primary-custom:hover {
  color: white;
  opacity: 0.9;
}

.btn-outline-primary-custom {
  background: white;
  border: 2px solid var(--primary-color);
  color: var(--primary-dark);
  white-space: nowrap;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-outline-primary-custom:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.btn-camel {
  background-color: #D4A276;
  color: white;
  border: none;
}

.btn-camel:hover {
  background-color: #C18F63;
  color: white;
}

.btn-instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white;
}

.btn-instagram:hover {
  color: white;
  opacity: 0.9;
}

/* カード - ふわっと */
.card {
  border: none;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  background: var(--card-bg);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

/* ナビゲーション */
.navbar {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  padding: 1rem 0;
  position: sticky !important;
  top: 0 !important;
  z-index: 1050;
}

/* メインコンテンツエリア：上下左右15pxのpadding */
.site-main {
  padding: 15px;
}

/* ヘッダーレスポンシブ：スマホ幅に合わせてタイトルとボタンを縮小 */
@media (max-width: 480px) {
  .navbar-brand {
    font-size: 1.05rem;
  }

  .navbar-brand .bi-camera-fill {
    font-size: 1.1rem !important;
  }

  .header-container-custom .btn {
    font-size: 0.8rem;
    padding: 0.28rem 0.65rem;
  }
}

@media (max-width: 380px) {
  .navbar-brand {
    font-size: 0.95rem;
  }

  .navbar-brand .bi-camera-fill {
    font-size: 1rem !important;
  }

  .header-container-custom .btn {
    font-size: 0.72rem;
    padding: 0.22rem 0.5rem;
  }

  /* アイコンを非表示にしてテキストだけ残す */
  .header-container-custom .btn .bi {
    display: none;
  }
}


.navbar-brand {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--text-color) !important;
  font-size: 1.25rem;
}

.navbar-brand .bi-camera-fill {
  font-size: 1.35rem !important;
}

/* ヘッダー：ロゴテキスト + By わんこぐらし。 */
.header-logo-text {
  display: flex;
  flex-wrap: wrap;
}

/* モバイル：カメラアイコンをロゴテキスト上端に揃える */
.navbar-brand.header-logo-area {
  align-items: flex-start;
}

.header-by-text {
  font-size: 0.75rem;
  font-weight: 600;
  color: #999;
  white-space: nowrap;
  width: 100%;
  margin-top: -5px;
}

@media (min-width: 992px) {
  .navbar-brand.header-logo-area {
    align-items: center; /* PCはロゴとby-textが横並びなので上下中央でOK */
  }

  .navbar-brand {
    font-size: 1.5rem;
  }

  .navbar-brand .bi-camera-fill {
    font-size: 1.6rem !important;
  }

  .header-logo-text {
    flex-wrap: nowrap;
    align-items: baseline;
  }

  .header-by-text {
    font-size: 0.85rem;
    width: auto;
    margin-top: 0;
    margin-left: 15px;
  }
}

/* ヘッダー：ロゴとボタンを50%ずつ均等配置 */
.header-logo-area {
  flex: 0 0 50%;
  min-width: 0;
}

.header-btn-area {
  flex: 0 0 50%;
  min-width: 0;
  padding-right: 0.5rem;
  /* 右端から少し内側に */
}

.header-btn-area .btn {
  font-size: 1.3rem;
  padding-top: 0.55rem;
  padding-bottom: 0.55rem;
}

.header-mypage-btn {
  padding-left: 1.3rem !important;
  padding-right: 1.3rem !important;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
}

.header-mypage-notification {
  font-size: 0.6rem;
  font-weight: 600;
  color: #fff;
  background-color: #dc3545;
  border-radius: 10px;
  padding: 0.1rem 0.45rem;
  white-space: nowrap;
  line-height: 1.3;
}

@media (max-width: 575.98px) {
  .header-btn-area .btn {
    font-size: 0.95rem;
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
  }
  .header-mypage-btn {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}

@media (min-width: 576px) and (max-width: 767.98px) {
  .header-btn-area .btn {
    font-size: 1.1rem;
  }
}


/* PC用：ヘッダーの共通エリア幅制限 (800px) */
.header-container-custom {
  max-width: 100% !important;
  /* スマホでは全幅 */
  padding-left: 1rem;
  padding-right: 1rem;
  display: flex;
  flex-wrap: wrap;
}

@media (min-width: 992px) {
  .header-container-custom {
    max-width: 800px !important;
    margin: 0 auto;
    flex-direction: column !important;
    align-items: center !important;
  }

  .navbar {
    padding-top: 1.5rem;
    padding-bottom: 0.5rem;
  }

  /* ナビゲーションメニューの削除 (ヒーロー下へ移動したため) */
  /* 管理用ボタンなどのために表示自体は維持 */
  .navbar-nav {
    display: flex !important;
    gap: 0.5rem;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
  }


  .btn-xs {
    padding: 0.1rem 0.5rem;
    font-size: 0.75rem;
  }
}

/* ヒーローセクション用 */
.hero-icon {
  font-size: 4rem;
  animation: float 3s ease-in-out infinite;
  display: inline-block;
}

/* ヒーロー下ナビゲーション (PC & Mobile) */
.hero-nav-outer {
  background-color: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.hero-nav-wrapper {
  overflow: hidden;
  padding: 1.5rem 0;
}

.hero-nav-scroll {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 1.5rem;
}

.hero-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--text-color);
  min-width: 80px;
  transition: all 0.3s ease;
}

.hero-nav-item:hover {
  color: var(--primary-color);
  transform: translateY(-3px);
}

.hero-nav-icon {
  width: 50px;
  height: 50px;
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
  background-color: var(--primary-light);
  color: var(--primary-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.hero-nav-item:hover .hero-nav-icon {
  background-color: var(--primary-color);
  color: #fff;
  box-shadow: 0 4px 12px rgba(230, 154, 141, 0.3);
}

.hero-nav-text {
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
}

/* モバイル対応：横スクロール */
@media (max-width: 991.98px) {
  .hero-nav-scroll {
    overflow-x: auto;
    justify-content: flex-start;
    padding-left: 1rem;
    padding-right: 1rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
  }

  .hero-nav-scroll::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
  }

  .hero-nav-item {
    min-width: 85px;
  }
}

/* ギャラリースタイル */
.gallery-item-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  background-color: #f8f9fa;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.gallery-item-wrapper:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item-wrapper:hover .gallery-img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-overlay i {
  color: white;
  font-size: 1.5rem;
}

.gallery-item-wrapper:hover .gallery-overlay {
  opacity: 1;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* スティッキーボタン (スマホ用) */
.sticky-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  padding: 0;
  display: none;
  transition: opacity 0.3s, transform 0.3s;
}

@media (max-width: 768px) {
  .sticky-bottom-bar {
    display: block;
  }
}

.sticky-bottom-bar.is-hidden {
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translateY(100%);
}

.sticky-bottom-btn {
  border-radius: 20px 20px 0 0 !important;
  padding: 16px 20px calc(16px + env(safe-area-inset-bottom)) !important;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.15);
}

.sticky-bottom-btn .bi-chevron-down {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  -webkit-text-stroke: 1px currentColor;
}

/* ステータスバッジ - 上品に */
.badge-status {
  padding: 0.6em 1.2em;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

.badge-status-published {
  background-color: var(--secondary-light);
  color: var(--secondary-dark);
}

.badge-status-full {
  background-color: var(--primary-light);
  color: var(--primary-dark);
}

.badge-status-ended {
  background-color: #F0F0F0;
  color: #999;
}

.badge-reservation {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: rgba(212, 162, 118, 0.85);
  /* Camel with alpha */
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.25rem;
  z-index: 10;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* アニメーション */
.animate-fade-in,
.fade-in-up {
  animation: fadeIn 0.8s ease-out forwards;
}

.hover-translate-up {
  transition: transform 0.3s ease;
}

.hover-translate-up:hover {
  transform: translateY(-5px);
}

.hover-scale {
  transition: transform 0.2s;
}

.hover-scale:hover {
  transform: scale(1.1);
}

/* 上品なセクション見出し */
.section-title-stylish {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  position: relative;
  color: var(--text-color);
  letter-spacing: 0.1em;
  text-align: center;
}

.section-title-stylish::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
  margin: 1rem auto 0;
  border-radius: 2px;
}

.section-subtitle {
  display: block;
  font-size: 0.9rem;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
  font-family: var(--font-en);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section-title-premium .icon-left,
.section-title-premium .icon-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
}

.section-title-premium .icon-left {
  left: -10px;
}

.section-title-premium .icon-right {
  right: -10px;
}

/* 波線セパレーター */
.wavy-top {
  position: relative;
  padding-top: 4rem;
}

.wavy-top::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z' fill='%23FFF9FA'/%3E%3C/svg%3E");
  background-size: cover;
  transform: scaleY(-1);
}

.bg-dot-pattern {
  background-color: #fff;
  background-image: radial-gradient(var(--primary-light) 2px, transparent 2px);
  background-size: 20px 20px;
}

.bg-soft-gradient {
  background: linear-gradient(180deg, var(--bg-color) 0%, var(--primary-light) 100%);
}

/* お客様の声：エレガントなカード */
.voice-card-stylish {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.voice-card-stylish:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.voice-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  gap: 15px;
}

.voice-avatar {
  width: 48px;
  height: 48px;
  background-color: var(--secondary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--secondary-dark);
}

.voice-info h4 {
  font-size: 1rem;
  margin: 0;
  color: var(--text-color);
}

.voice-info span {
  font-size: 0.8rem;
  color: var(--text-light);
}

.voice-body {
  font-size: 0.95rem;
  color: var(--text-color);
  line-height: 1.8;
}

/* 料金プラン：シンプル＆比較 */
.plan-card-stylish {
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.plan-card-stylish:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.plan-card-featured {
  border: 2px solid var(--primary-color);
  position: relative;
}

.plan-card-featured::before {
  content: "RECOMMEND";
  position: absolute;
  top: 12px;
  right: -30px;
  background: var(--primary-color);
  color: #fff;
  padding: 4px 30px;
  transform: rotate(45deg);
  font-size: 0.7rem;
  font-weight: bold;
  letter-spacing: 0.1em;
}

.plan-header {
  padding: 2rem 1.5rem;
  text-align: center;
  background-color: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.plan-title {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.plan-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-dark);
  font-family: var(--font-en);
}

.plan-unit {
  font-size: 0.9rem;
  color: var(--text-light);
}

.plan-features {
  padding: 2rem 1.5rem;
}

.plan-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.plan-features li {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-color);
}

.plan-features i {
  color: var(--secondary-dark);
  margin-top: 4px;
}

/* スタッフ紹介：クリーンカード */
.staff-card-stylish {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  height: 100%;
  padding: 0;
  /* Padding removed for full-width image */
}

.staff-card-stylish:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.staff-img-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1/1;
  /* Ensure square */
}

@media (max-width: 768px) {
  .staff-img-wrapper {
    aspect-ratio: 3/2 !important;
  }
}

.staff-img-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.staff-info {
  padding: 1.5rem;
  text-align: center;
}

.staff-card-content {
  padding: 1.5rem;
}

.staff-name {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.staff-role {
  font-size: 0.8rem;
  color: var(--primary-dark);
  margin-bottom: 1rem;
  display: inline-block;
  background: var(--primary-light);
  padding: 0.2rem 0.8rem;
  border-radius: 20px;
}

.staff-text {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  text-align: left;
}

.text-camel {
  color: #D4A276 !important;
}

/* About Section Scrolling */
.scrolling-wrapper-container {
  overflow: hidden;
  position: relative;
}

.scrolling-wrapper {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  gap: 1rem;
  padding-bottom: 1rem;
  scrollbar-width: none;
  /* Hide scrollbar Firefox */
}

.scrolling-wrapper::-webkit-scrollbar {
  display: none;
  /* Hide scrollbar Chrome/Safari */
}

.scrolling-card {
  flex: 0 0 auto;
  width: 200px;
  height: 200px;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

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

.scrolling-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scrolling-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 撮影プラン：リッチリスト */
.feature-box {
  background-color: #fff;
  border: 1px solid #f0f0f0;
  border-radius: var(--radius-md);
  padding: 1rem;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  text-align: left;
  transition: all 0.3s ease;
}

.feature-box:hover {
  border-color: var(--primary-color);
  background-color: #fffdf9;
  /* Very light cream/camel tint */
  transform: translateX(3px);
}

.feature-icon {
  flex: 0 0 50px;
  height: 50px;
  background: var(--primary-light);
  color: var(--primary-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-right: 1rem;
}

.feature-text {
  flex: 1;
  font-size: 0.95rem;
  color: var(--text-color);
  line-height: 1.4;
}

.option-box {
  background-color: var(--gray-soft);
  border-radius: var(--radius-md);
  padding: 1rem;
  margin-bottom: 0.5rem;
}

/* 汎用的なぷにぷにホバー */
.btn-squishy {
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-squishy:hover {
  transform: scale(1.1);
}

.btn-squishy:active {
  transform: scale(0.9);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==============================================
   統合注意事項 - 5ブロック要素
   エディタ(.ql-editor)と公開ページ(.trix-content)両対応
   ============================================== */

/* 1. お知らせ欄（notice）= blockquote */
.ql-editor blockquote,
.trix-content blockquote {
  border-left: 4px solid #E69A8D;
  background-color: #FFF8F0;
  padding: 1em 1.2em;
  margin: 1.2em 0;
  border-radius: 0 8px 8px 0;
  font-size: 0.95em;
  line-height: 1.8;
  color: var(--text-color);
}

/* 2. 小見出し = h2 */
.ql-editor h2,
.trix-content h2 {
  font-size: 1.15em;
  font-weight: 700;
  color: var(--text-color);
  border-left: 4px solid var(--primary-color);
  padding-left: 0.7em;
  margin-top: 1.8em;
  margin-bottom: 0.8em;
  line-height: 1.5;
}

/* 3. 緑チェックマーク付きリスト = ul > li */
.ql-editor ul {
  padding-left: 1.8em;
  list-style: none;
  margin-top: 0.8em;
}

.trix-content ul {
  padding-left: 0;
  list-style: none;
  margin-top: 0.8em;
}

.ql-editor li,
.trix-content li {
  position: relative;
  margin-bottom: 0.8em;
  line-height: 1.8;
  color: var(--text-color);
  padding-left: 1.8em;
}

.ql-editor li::before,
.trix-content li::before {
  content: "" !important;
  position: absolute;
  left: 0;
  top: 0.3em;
  width: 1.1em;
  height: 1.1em;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z' fill='%234CAF50'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* 4. 補足欄 = div.supplement-box（エディタ）/ div.supplement-box or pre（公開ページ） */
.ql-editor .supplement-box,
.trix-content .supplement-box {
  background-color: #F7F7F7;
  border-left: 1px solid #E8E8E8;
  border-right: 1px solid #E8E8E8;
  padding: 0.3em 1.2em;
  margin: 0;
  font-family: var(--font-body), sans-serif !important;
  font-size: 0.85em;
  line-height: 1.7;
  color: #333;
}

.trix-content pre {
  background-color: #F7F7F7;
  border-left: 1px solid #E8E8E8;
  border-right: 1px solid #E8E8E8;
  padding: 0.3em 1.2em;
  margin: 0;
  font-family: var(--font-body), sans-serif !important;
  font-size: 0.85em;
  line-height: 1.7;
  color: #333;
  white-space: pre-wrap;
  word-wrap: break-word;
}

/* 補足欄グループ先頭 */
.ql-editor .supplement-box:not(.supplement-box + .supplement-box),
.trix-content .supplement-box:not(.supplement-box + .supplement-box),
.trix-content pre {
  border-top: 1px solid #E8E8E8;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  margin-top: 1em;
  padding-top: 0.8em;
}

/* 補足欄グループ末尾 */
.ql-editor .supplement-box:not(:has(+ .supplement-box)),
.trix-content .supplement-box:not(:has(+ .supplement-box)),
.trix-content pre {
  border-bottom: 1px solid #E8E8E8;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  margin-bottom: 1em;
  padding-bottom: 0.8em;
}

/* 補足欄グループ中間（先頭でも末尾でもない） */
.ql-editor .supplement-box + .supplement-box,
.trix-content .supplement-box + .supplement-box {
  padding-top: 0;
}

/* Quillデフォルトのcode-blockスタイルを完全上書き */
.ql-editor pre,
.ql-editor pre.ql-syntax,
.ql-snow .ql-editor pre,
.ql-snow .ql-editor pre.ql-syntax {
  background-color: #F7F7F7 !important;
  border: 1px solid #E8E8E8 !important;
  border-radius: 12px !important;
  padding: 1em 1.2em !important;
  margin: 1em 0 !important;
  font-family: var(--font-body), sans-serif !important;
  font-size: 0.85em !important;
  line-height: 1.7 !important;
  color: #333 !important;
  white-space: pre-wrap !important;
  word-wrap: break-word !important;
}

/* 5. 区切り線 = hr（破線） */
.ql-editor hr,
.trix-content hr {
  border: none;
  border-top: 2px dashed #D0D0D0;
  margin: 2em 0;
}

.ql-editor hr {
  cursor: pointer;
  height: 0;
}

/* Quillエディタの装飾 */
.quill-editor-wrapper {
  border: 2px solid #f0f0f0;
  border-radius: 12px;
  background-color: #fff;
  overflow: hidden;
}

.ql-container.ql-snow {
  border: 1px solid #e0e0e0 !important;
  border-top: none !important;
  border-radius: 0 0 8px 8px !important;
}

.ql-editor {
  padding: 12px 20px !important;
  border: none !important;
  max-height: 500px;
  overflow-y: auto;
}

.ql-toolbar.ql-snow {
  border: 1px solid #e0e0e0 !important;
  border-bottom: 2px solid #e0e0e0 !important;
  border-radius: 8px 8px 0 0 !important;
  background-color: #fafafa;
}

/* ツールバーのカスタムボタン */
.ql-toolbar .ql-divider,
.ql-toolbar .ql-supplement {
  width: auto !important;
  padding: 0 8px !important;
  font-size: 12px;
  display: inline-flex !important;
  align-items: center !important;
  vertical-align: middle !important;
}

.ql-toolbar .ql-caution-label {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  color: #666;
  padding: 0 4px;
  pointer-events: none;
}

.hover-bg-primary-light:hover {
  background-color: var(--primary-light) !important;
  color: var(--primary-dark) !important;
  transition: all 0.3s ease;
}

/* 管理画面用のかわいいテーブル */
.table-cute {
  border-collapse: separate;
  border-spacing: 0 10px;
}

.table-cute thead th {
  border: none;
  background-color: transparent;
  color: var(--text-color);
  font-weight: 700;
  padding: 10px 15px;
  font-size: 0.9rem;
}

.table-cute tbody tr {
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
  transition: all 0.2s ease;
}

.table-cute tbody tr:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 182, 193, 0.2);
}

.table-cute tbody td {
  border: none;
  padding: 15px;
  vertical-align: middle;
}

.table-cute tbody td:first-child {
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}

.table-cute tbody td:last-child {
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}

/* 管理画面用のかわいいカード */
.card-cute {
  border: none;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  background-color: #fff;
  overflow: hidden;
}

.card-cute .card-header {
  background-color: #fff;
  border-bottom: 2px solid var(--primary-light);
  padding: 20px;
}

.card-cute .card-body {
  padding: 25px;
}

/* 予約フォームのカウンター調整 */
.dog-count-input {
  max-width: 70px !important;
  text-align: center;
  padding: 5px !important;
  font-size: 1.2rem !important;
  color: var(--text-color) !important;
  border-left: none;
  border-right: none;
  background-color: #fff !important;
}

.count-btn {
  width: 42px !important;
  height: 42px !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.2rem !important;
}

/* Customer Voices */
.voice-card {
  background: #fff;
  border-radius: 20px;
  padding: 2rem 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  border: 2px solid #fff;
  transition: transform 0.3s ease;
  margin-bottom: 1rem;
}

.voice-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-light);
}

.voice-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: var(--primary-light);
  font-family: serif;
  opacity: 0.5;
  line-height: 1;
}

.voice-content {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #555;
  white-space: pre-wrap;
  /* To handle newlines in text */
  margin-top: 1rem;
}

/* Staff Sections */
.staff-section-title {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary-dark);
  padding: 0.5rem 2rem;
  border-radius: 50px;
  font-weight: bold;
  margin-bottom: 2rem;
  box-shadow: 0 4px 10px rgba(255, 158, 170, 0.3);
  font-size: 1.1rem;
  border: 2px solid #fff;
}

.human-staff-card,
.dog-staff-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.human-staff-card:hover,
.dog-staff-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08) !important;
}

.staff-role-badge {
  background: var(--primary-light);
  color: var(--primary-dark);
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
  letter-spacing: 0.05em;
}

.staff-description {
  text-align: left;
  font-size: 0.9rem;
  color: #666;
  line-height: 1.8;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px dashed #eee;
}

/* Global Footer */
.footer-stylish {
  background-color: #4A4A4A;
  color: white;
  position: relative;
  overflow: hidden;
}

.footer-stylish::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-sand));
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s;
  font-size: 0.9rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.social-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  font-size: 1.2rem;
  transition: all 0.3s;
}

.social-icon-link:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-3px);
}

.border-white-10 {
  border-color: rgba(255, 255, 255, 0.1) !important;
}

/* FAQ Accordion */
.accordion-stylish .accordion-item {
  border: none;
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
  background-color: transparent;
}

.accordion-stylish .accordion-button {
  border-radius: var(--radius-md) !important;
  font-weight: bold;
  color: var(--text-color);
  background-color: #fff;
  box-shadow: none;
  padding: 1.2rem 1.5rem;
}

.accordion-stylish .accordion-button:not(.collapsed) {
  background-color: var(--primary-light);
  color: var(--primary-dark);
  box-shadow: none;
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.accordion-stylish .accordion-button:focus {
  box-shadow: none;
  border-color: rgba(0, 0, 0, 0.1);
}

.accordion-stylish .accordion-body {
  background-color: #fff;
  border-bottom-left-radius: var(--radius-md);
  border-bottom-right-radius: var(--radius-md);
  padding: 1.5rem;
  color: var(--text-color);
  line-height: 1.8;
  font-size: 0.95rem;
}

.accordion-stylish .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23C56D5F'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* Access Map */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid #fff;
}

.access-info-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.access-item {
  display: flex;
  margin-bottom: 1.5rem;
}

.access-icon {
  width: 40px;
  height: 40px;
  background-color: var(--primary-light);
  color: var(--primary-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-right: 15px;
}

/* セクションのパディング */
.section-padding {
  padding-top: 2rem;
  padding-bottom: 2rem;
}


/* ─── 予約フロー専用コンポーネント ──────────────────────────────── */

/* ページ骨格 */
.booking-flow-page .navbar,
.booking-flow-page footer { display: none !important; }
.booking-flow-page main   { background-color: var(--bg-color) !important; padding: 0 !important; }
.booking-flow-wrapper     { max-width: 480px; }

/* タイマーバー */
.booking-timer-bar        { background-color: var(--primary-color); }
.booking-timer-bar.urgent { background-color: #dc3545 !important; }

/* カード（accent 上ライン付き） */
.booking-card {
  background: var(--card-bg);
  border: 1px solid #E8E0D5;
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
}
.booking-card-accent {
  position: absolute; top: 0; left: 0; right: 0; height: 6px;
}

/* わんちゃん行 */
.dog-entry { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.75rem; }
.dog-entry .form-control   { flex: 1; }
.btn-remove-dog { color: #e74c3c; padding: 0.5rem; }
.btn-remove-dog:hover { color: #c0392b; }

/* 追加ボタン（破線） */
.btn-add-dog {
  width: 100%; padding: 0.75rem 1rem;
  border: 2px dashed #E8E0D5; border-radius: var(--radius-sm);
  background: transparent; color: var(--text-muted); font-weight: 700;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 0.4rem;
  transition: background-color 0.2s;
}
.btn-add-dog:hover { background-color: var(--accent-sand); }

/* 多頭飼い注記 */
.multi-dog-note {
  font-size: 0.78rem; color: var(--text-muted);
  background: var(--accent-sand);
  padding: 0.6rem 0.75rem; border-radius: var(--radius-sm);
  border: 1px solid #E8E0D5;
}

/* 料金サマリー */
.price-summary {
  background-color: var(--primary-light);
  border: 1px solid #E8E0D5;
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: flex; justify-content: space-between; align-items: center;
}

/* badge-required（必須ラベル） */
.badge-required {
  background-color: var(--primary-color); color: white;
  font-size: 0.7rem; padding: 0.15rem 0.5rem;
  border-radius: 999px; margin-left: 0.5rem; font-weight: 500;
}

/* hr 破線 */
.hr-dashed { border-style: dashed !important; border-color: #E8E0D5 !important; }

/* セクションブロック（飼い主情報 / わんちゃん情報 / オプション情報） */
.booking-section {
  background: var(--card-bg);
  border: 1px solid #E8E0D5;
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-bottom: 0.75rem;
}

/* セクションラベル（小見出し） */
.booking-section-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  margin-bottom: 0.85rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #E8E0D5;
}

/* 日時カード（ヘッダーの日時表示エリア） */
.booking-datetime-card {
  background-color: var(--primary-light);
  border: 1px solid #F0C0BA;
  border-radius: var(--radius-sm);
  padding: 0.55rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-dark);
}

/* badge-optional（任意・お持ちの場合ラベル） */
.badge-optional {
  background-color: var(--secondary-color);
  color: white;
  font-size: 0.7rem;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  margin-left: 0.5rem;
  font-weight: 500;
}


/* ─── モーダル ──────────────────────────────────────────────── */
.modal-content {
  border: none;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.modal-header {
  border-bottom: 1px solid var(--primary-light);
  padding: 1.25rem 1.5rem 1rem;
}
.modal-title {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-color);
  font-size: 1rem;
  line-height: 1.4;
}
.modal-footer {
  border-top: 1px solid #E8E0D5;
  padding: 1rem 1.5rem;
}


/* ─── ボトムシートモーダル ──────────────────────────────────────────────── */
/* モバイル: 画面下端に固定→スライドアップ */
.modal-sheet .modal-dialog {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0;
  width: 100%;
  max-width: 100%;
}
.modal-sheet .modal-content {
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  max-height: 90dvh;
  overflow-y: auto;
}
/* スライドアップアニメーション */
.modal-sheet.fade .modal-dialog {
  transform: translateY(100%);
  transition: transform 0.38s cubic-bezier(0.32, 0.72, 0, 1) !important;
}
.modal-sheet.show .modal-dialog {
  transform: translateY(0) !important;
}
/* デスクトップ: センター表示・全角丸（modal-dialog-centered は JS で付与） */
@media (min-width: 768px) {
  .modal-sheet .modal-dialog {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    margin: 1.75rem auto;
    max-width: 480px;
    width: 100%;
    min-height: calc(100% - 3.5rem);
  }
  .modal-sheet .modal-content {
    border-radius: var(--radius-lg);
    max-height: 90dvh;
    width: 100%;
  }
  .modal-sheet .sheet-handle {
    display: none;
  }
  .modal-sheet.fade .modal-dialog {
    transform: translate(0, -30px);
    transition: transform 0.25s ease-out !important;
  }
  .modal-sheet.show .modal-dialog {
    transform: none !important;
  }
}
/* ドラッグハンドル */
.sheet-handle {
  width: 40px;
  height: 5px;
  border-radius: 999px;
  background-color: #D0C8C0;
  margin: 0.75rem auto 0;
}
/* 「メールがない方」chevron 回転 */
.no-mail-chevron {
  transition: transform 0.2s ease;
  display: inline-block;
}
.no-mail-chevron.rotated {
  transform: rotate(180deg);
}
/* ボトムシート内 セクション区切り */
.sheet-section-label {
  font-weight: 700;
  font-size: 0.875rem;
  text-align: center;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
}

/* ─── Flash メッセージ ─────────────────────────────────────── */
.flash-notice.alert {
  background-color: var(--secondary-light);
  border: 1px solid #C8D9BE;
  border-left: 4px solid var(--secondary-dark);
  color: #355C2B;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
}
.flash-alert.alert {
  background-color: var(--primary-light);
  border: 1px solid #F0C0BA;
  border-left: 4px solid var(--primary-color);
  color: var(--primary-dark);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
}
.flash-notice .btn-close {
  filter: invert(28%) sepia(25%) saturate(600%) hue-rotate(75deg) brightness(0.65);
  opacity: 0.55;
}
.flash-notice .btn-close:hover { opacity: 0.9; }
.flash-alert .btn-close {
  filter: invert(35%) sepia(35%) saturate(500%) hue-rotate(320deg) brightness(0.65);
  opacity: 0.55;
}
.flash-alert .btn-close:hover { opacity: 0.9; }

/* ─── マイページ固定フッターナビ（スマホ専用） ──────────────── */
.mypage-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  background: #fff;
  border-top: 1px solid #eee;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
.mypage-bottom-nav-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: clamp(64px, 20vw, 84px);
}
.mypage-bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  height: 100%;
  text-decoration: none !important;
  color: #999;
  gap: 6px;
  -webkit-tap-highlight-color: transparent;
  /* hover アニメーション無効化（フッターナビはスマホ専用） */
  transform: none !important;
  box-shadow: none !important;
}
.mypage-bottom-nav-item i {
  font-size: clamp(24px, 7vw, 30px);
  line-height: 1;
}
.mypage-bottom-nav-item span {
  font-size: clamp(11px, 3.5vw, 14px);
  font-weight: 600;
  white-space: nowrap;
  line-height: 1;
}
.mypage-bottom-nav-item.is-active {
  color: var(--primary-color);
}
/* お知らせアイコン+バッジラッパー */
.mypage-bottom-nav-icon-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.mypage-bottom-nav-badge {
  position: absolute;
  top: -4px;
  right: -10px;
  background: #dc3545;
  color: #fff;
  font-size: clamp(7px, 2vw, 9px);
  font-weight: 700;
  min-width: 14px;
  height: 14px;
  line-height: 14px;
  text-align: center;
  border-radius: 999px;
  padding: 0 3px;
}

/* フッターナビ表示時のコンテンツ下部余白 */
.mypage-has-bottom-nav main {
  padding-bottom: 0;
}
/* 予約フローではフッターナビ非表示 */
.booking-flow-page .mypage-bottom-nav { display: none !important; }
.booking-flow-page.mypage-has-bottom-nav main { padding-bottom: 0; }
/* PC では非表示 */
@media (min-width: 992px) {
  .mypage-bottom-nav { display: none !important; }
  .mypage-has-bottom-nav main { padding-bottom: 0; }
}

/* ─── ホバーリフト ──────────────────────────────────────────── */
.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-lift:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* ─── パンくずリスト ─────────────────────────────────────────── */
.breadcrumb {
  background: transparent;
  padding: 0;
  font-weight: 500;
}

.breadcrumb-item a {
  color: var(--primary-color);
  text-decoration: none;
}

.breadcrumb-item a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.breadcrumb-item.active {
  color: var(--text-light);
}

.breadcrumb-item + .breadcrumb-item::before {
  color: var(--text-muted);
}

/* ─── ドロップゾーン ──────────────────────────────────────────── */
.dropzone {
  border: 2px dashed var(--primary-color);
  border-radius: var(--radius-md);
  background: var(--primary-light);
  padding: 2.5rem 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.dropzone:hover,
.dropzone.dragover {
  background: #F2DAD6;
  border-color: var(--primary-dark);
}
.dropzone .dropzone-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}
.dropzone .dropzone-text {
  color: var(--text-light);
  font-weight: 600;
  font-size: 0.95rem;
}
.dropzone .dropzone-hint {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: 0.25rem;
}

/* ─── ソータブルグリッド ──────────────────────────────────────── */
.sortable-grid .sortable-ghost {
  opacity: 0.4;
  box-shadow: var(--shadow-lg);
}
.sortable-grid .sortable-chosen {
  cursor: grabbing;
}
.drag-handle {
  cursor: grab;
  color: var(--text-muted);
  transition: color 0.2s ease;
}
.drag-handle:hover {
  color: var(--primary-dark);
}
.drag-handle:active {
  cursor: grabbing;
}

/* ─── 電話ボタン ───────────────────────────────────── */
.btn-phone {
  background: linear-gradient(135deg, #4CAF50, #388E3C);
  color: white;
  border: none;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: all 0.3s ease;
}
.btn-phone:hover {
  background: linear-gradient(135deg, #388E3C, #2E7D32);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-phone:active {
  transform: translateY(0);
}

/* ─── 会員カード ─────────────────────────────────────── */
.member-card {
  position: relative;
  width: 100%;
  border-radius: 1.25rem;
  padding: 1.25rem;
  color: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
@media (min-width: 576px) {
  .member-card { max-width: none; }
}
/* ノイズテクスチャ（紙のような質感） */
.member-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E") repeat;
  opacity: 0.15;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 0;
}
.member-card > * { position: relative; z-index: 1; }

/* ランク別背景 */
.member-card.card-none {
  background: linear-gradient(135deg, #C5C0BB 0%, #A8A3A0 100%);
  box-shadow: 0 10px 25px -5px rgba(168, 163, 160, 0.4), 0 8px 10px -6px rgba(168, 163, 160, 0.2);
}
.member-card.card-bronze {
  background: linear-gradient(135deg, #C5A392 0%, #B87D71 100%);
  box-shadow: 0 10px 25px -5px rgba(180, 140, 120, 0.4), 0 8px 10px -6px rgba(180, 140, 120, 0.2);
}
.member-card.card-silver {
  background: linear-gradient(135deg, #C2C8D1 0%, #959FA9 100%);
  box-shadow: 0 10px 25px -5px rgba(149, 159, 169, 0.4), 0 8px 10px -6px rgba(149, 159, 169, 0.2);
}
.member-card.card-gold {
  background: linear-gradient(135deg, #E2C98A 0%, #C59C3D 100%);
  box-shadow: 0 10px 25px -5px rgba(197, 156, 61, 0.4), 0 8px 10px -6px rgba(197, 156, 61, 0.2);
}
.member-card.card-platinum {
  background: linear-gradient(135deg, #B8A9C9 0%, #8B7D9B 100%);
  box-shadow: 0 10px 25px -5px rgba(139, 125, 155, 0.4), 0 8px 10px -6px rgba(139, 125, 155, 0.2);
}

/* キラキラエフェクト（シルバー以上） */
@keyframes sparkle-drift {
  0%   { background-position: 0% 0%, 100% 100%, 50% 50%; }
  50%  { background-position: 100% 50%, 0% 50%, 80% 20%; }
  100% { background-position: 0% 0%, 100% 100%, 50% 50%; }
}
.member-card.card-silver::after,
.member-card.card-gold::after,
.member-card.card-platinum::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: soft-light;
  animation: sparkle-drift 6s ease-in-out infinite;
}
/* シルバー: ほんのり控えめ */
.member-card.card-silver::after {
  background:
    radial-gradient(1.5px 1.5px at 20% 30%, rgba(255,255,255,0.8) 50%, transparent 100%),
    radial-gradient(1px 1px at 75% 65%, rgba(255,255,255,0.6) 50%, transparent 100%),
    radial-gradient(1.5px 1.5px at 45% 80%, rgba(255,255,255,0.5) 50%, transparent 100%);
  background-size: 120% 120%;
  opacity: 0.5;
}
/* ゴールド: やや華やか */
.member-card.card-gold::after {
  background:
    radial-gradient(2px 2px at 15% 25%, rgba(255,255,255,0.9) 50%, transparent 100%),
    radial-gradient(1.5px 1.5px at 70% 20%, rgba(255,248,220,0.8) 50%, transparent 100%),
    radial-gradient(2px 2px at 50% 70%, rgba(255,255,255,0.7) 50%, transparent 100%),
    radial-gradient(1px 1px at 85% 55%, rgba(255,248,220,0.6) 50%, transparent 100%);
  background-size: 130% 130%;
  opacity: 0.6;
}
/* プラチナ: キラッキラ */
@keyframes sparkle-intense {
  0%   { background-position: 0% 0%, 100% 100%, 30% 70%, 70% 30%, 50% 50%; opacity: 0.7; }
  25%  { background-position: 50% 20%, 20% 80%, 80% 40%, 40% 60%, 10% 90%; opacity: 0.9; }
  50%  { background-position: 100% 50%, 0% 50%, 60% 10%, 10% 90%, 90% 10%; opacity: 0.7; }
  75%  { background-position: 30% 80%, 80% 20%, 20% 50%, 90% 70%, 50% 30%; opacity: 0.9; }
  100% { background-position: 0% 0%, 100% 100%, 30% 70%, 70% 30%, 50% 50%; opacity: 0.7; }
}
.member-card.card-platinum::after {
  background:
    radial-gradient(2.5px 2.5px at 10% 20%, rgba(255,255,255,1) 50%, transparent 100%),
    radial-gradient(2px 2px at 80% 15%, rgba(230,220,255,0.9) 50%, transparent 100%),
    radial-gradient(2.5px 2.5px at 25% 75%, rgba(255,255,255,0.9) 50%, transparent 100%),
    radial-gradient(1.5px 1.5px at 65% 60%, rgba(230,220,255,0.8) 50%, transparent 100%),
    radial-gradient(2px 2px at 45% 40%, rgba(255,255,255,0.85) 50%, transparent 100%);
  background-size: 150% 150%;
  opacity: 0.7;
  animation: sparkle-intense 4s ease-in-out infinite;
}

/* ヘッダー */
.member-card-header {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}
.member-card-header i { font-size: 0.9rem; }
@media (min-width: 576px) {
  .member-card-header { font-size: 0.7rem; }
}

/* ボディ */
.member-card-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.member-card-info {
  flex: 1;
  min-width: 0;
}

/* 名前 */
.member-card-name {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  margin-bottom: 0.625rem;
}
.member-card-honorific {
  font-size: 0.75rem;
  font-weight: 700;
  margin-left: 0.375rem;
  color: rgba(255, 255, 255, 0.9);
}

/* 愛犬ボックス */
.member-card-dog-box {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.3);
  padding: 0.5rem 0.75rem;
  border-radius: 0.75rem;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  margin-top: 0.25rem;
  max-width: 100%;
}
.member-card-dog-box i {
  flex-shrink: 0;
  margin-right: 0.375rem;
}
.member-card-dog-box span {
  line-height: 1.4;
  word-break: break-word;
}

/* バッジエリア */
.member-card-badge-area {
  width: 6rem;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-left: 0.75rem;
}
@media (min-width: 576px) {
  .member-card-badge-area { width: 7rem; }
}

/* メダルバッジ */
.member-card-rank-badge {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
  position: relative;
}
.member-card-rank-badge i {
  font-size: 2rem;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}
@media (min-width: 576px) {
  .member-card-rank-badge { width: 5rem; height: 5rem; }
  .member-card-rank-badge i { font-size: 2.5rem; }
}

/* バッジ ランク別色 */
.member-card-rank-badge.badge-none {
  background: linear-gradient(to bottom right, #F0F0F0, #D5D5D5);
}
.member-card-rank-badge.badge-none i { color: #999; }
.member-card-rank-badge.badge-bronze {
  background: linear-gradient(to bottom right, #FDF0E1, #E3AC85);
}
.member-card-rank-badge.badge-bronze i { color: #9A6237; }
.member-card-rank-badge.badge-silver {
  background: linear-gradient(to bottom right, #F8F9FA, #C8D0D8);
}
.member-card-rank-badge.badge-silver i { color: #6C7A89; }
.member-card-rank-badge.badge-gold {
  background: linear-gradient(to bottom right, #FFF8E7, #F1D58A);
}
.member-card-rank-badge.badge-gold i { color: #B08025; }
.member-card-rank-badge.badge-platinum {
  background: linear-gradient(to bottom right, #F0EBF5, #C4B5D8);
}
.member-card-rank-badge.badge-platinum i { color: #6B5B7B; }

/* ランク名 */
.member-card-rank-name {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}
@media (min-width: 576px) {
  .member-card-rank-name { font-size: 0.85rem; }
}

/* フッター（グラデーションバナー） */
.member-card-footer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: auto -1.25rem -1.25rem;
  padding: 0.625rem 1.25rem;
  background: rgba(0, 0, 0, 0.12);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0 0 1.25rem 1.25rem;
}
@media (min-width: 576px) {
  .member-card-footer {
    margin: auto -1.5rem -1.5rem;
    padding: 0.75rem 1.5rem;
  }
}
.member-card-footer-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
}
.member-card-footer-icon {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.member-card-footer-label {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.05em;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.member-card-footer-value {
  font-family: var(--font-en);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

/* ─── スタンプカード ────────────────────────────────── */
.stamp-card {
  background: #FFFDF7;
  border-radius: 1.25rem;
  box-shadow: var(--shadow-sm);
  border: 2px solid #E8E0D5;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  height: 100%;
}
@media (min-width: 576px) {
  .stamp-card { padding: 1.5rem; }
}

/* ヘッダー */
.stamp-card-header {
  color: #8B7E6A;
}
.stamp-card-count {
  font-family: var(--font-en);
  font-size: 1.1rem;
  font-weight: 700;
}

/* スタンプ枠共通 */
.stamp-slot {
  position: relative;
  flex-shrink: 0;
}

/* 済スタンプ */
.stamp-done {
  position: relative;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  border: 3px solid rgba(212, 163, 115, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FAF6F0;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
}
@media (min-width: 576px) {
  .stamp-done { width: 5rem; height: 5rem; }
}
.stamp-done .stamp-paw {
  font-size: 1.875rem;
  color: #D4A373;
  opacity: 0.6;
  margin-top: 0.25rem;
  transform: rotate(-6deg);
}
@media (min-width: 576px) {
  .stamp-done .stamp-paw { font-size: 2.25rem; }
}
.stamp-seal {
  position: absolute;
  right: -0.75rem;
  bottom: -0.5rem;
  transform: rotate(-12deg);
  border: 3px solid #D0645A;
  color: #D0645A;
  font-weight: 900;
  font-size: 1.25rem;
  padding: 0.125rem 0.625rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
  mix-blend-mode: multiply;
  letter-spacing: 0.1em;
  z-index: 20;
}
@media (min-width: 576px) {
  .stamp-seal { font-size: 1.5rem; }
}

/* 未スタンプ */
.stamp-empty {
  position: relative;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  border: 3px dashed #E8E0D5;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
}
@media (min-width: 576px) {
  .stamp-empty { width: 5rem; height: 5rem; }
}
.stamp-empty .stamp-paw {
  font-size: 1.875rem;
  opacity: 0.05;
  filter: grayscale(100%);
  margin-top: 0.25rem;
}
@media (min-width: 576px) {
  .stamp-empty .stamp-paw { font-size: 2.25rem; }
}

/* 接続線 */
.stamp-line {
  flex: 1;
  height: 0;
  border-top: 2px dashed #E8E0D5;
  margin: 0 0.25rem;
}

/* メダルバッジ（小） */
.stamp-badge {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 10;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.8);
}
.stamp-badge i {
  font-size: 1rem;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}
.stamp-badge-start { top: -0.625rem; left: -0.5rem; }
.stamp-badge-goal  { top: -0.625rem; right: -0.75rem; }

/* バッジ ランク別色 */
.stamp-badge.badge-none     { background: linear-gradient(to bottom right, #F0F0F0, #D5D5D5); }
.stamp-badge.badge-none i   { color: #999; }
.stamp-badge.badge-bronze   { background: linear-gradient(to bottom right, #FDF0E1, #E3AC85); }
.stamp-badge.badge-bronze i { color: #9A6237; }
.stamp-badge.badge-silver   { background: linear-gradient(to bottom right, #F8F9FA, #C8D0D8); }
.stamp-badge.badge-silver i { color: #6C7A89; }
.stamp-badge.badge-gold     { background: linear-gradient(to bottom right, #FFF8E7, #F1D58A); }
.stamp-badge.badge-gold i   { color: #B08025; }
.stamp-badge.badge-platinum { background: linear-gradient(to bottom right, #F0EBF5, #C4B5D8); }
.stamp-badge.badge-platinum i { color: #6B5B7B; }

/* 特典メッセージ */
.stamp-benefit {
  background: white;
  border-radius: 0 0 calc(1.25rem - 2px) calc(1.25rem - 2px);
  padding: 0.75rem 1.25rem;
  border-top: 1px solid #F0E8DD;
  border-left: none;
  border-right: none;
  border-bottom: none;
  margin: auto -1.25rem -1.25rem;
}
@media (min-width: 576px) {
  .stamp-benefit {
    margin: auto -1.5rem -1.5rem;
    padding: 0.75rem 1.5rem;
  }
}

/* About セクション リッチテキスト */
.about-richtext h3,
.about-richtext h4 {
  font-weight: 700;
  color: var(--dark-brown);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}
.about-richtext h3:first-of-type,
.about-richtext h4:first-of-type {
  margin-top: 0;
}
.about-richtext ul {
  padding-left: 1.2rem;
}
.about-richtext li {
  margin-bottom: 0.3rem;
}

/* 撮影の流れ */
.flow-step-body p {
  margin-bottom: 0.5rem;
}
.flow-step-body p:last-child {
  margin-bottom: 0;
}