/* 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;
}

/* ヘッダー：ロゴとボタンを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.15rem;
  padding-top: 0.55rem;
  padding-bottom: 0.55rem;
}


/* 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: 1000px !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);
  margin-bottom: 2rem;
}

.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: white;
  padding: 12px 16px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom));
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.08);
  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 {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.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);
  }
}

/* 注意事項リストの装飾 */
.cute-list-wrapper ul,
.ql-editor ul {
  padding-left: 0;
  list-style: none;
  margin-top: 1em;
}

.cute-list-wrapper li,
.ql-editor li {
  position: relative;
  /* アイコンと文字の間隔をさらに狭く調整 */
  margin-bottom: 1em;
  line-height: 1.8;
  color: var(--text-color);
  margin-left: 1.5em;
}

.cute-list-wrapper li::before,
.ql-editor li::before {
  content: "✅️" !important;
  position: absolute;
  left: -1.4em;
  top: 0px;
  color: var(--primary-color);
  font-size: 1.1em;
}

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

.ql-container.ql-snow,
.ql-editor {
  padding: 12px 20px !important;
  border: none !important;
}

/* 記事内の見出し（小見出し） */
.ql-editor h3 {
  font-size: 1.1em;
  font-weight: 700;
  color: var(--text-color);
  border-bottom: 2px dashed var(--primary-color);
  padding-bottom: 0.3em;
  margin-top: 1.5em;
  margin-bottom: 0.8em;
}

.ql-toolbar.ql-snow {
  border: none !important;
  border-bottom: 2px solid #f0f0f0 !important;
  background-color: #fafafa;
}

.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: 3rem;
  padding-bottom: 3rem;
}

@media (max-width: 768px) {
  .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);
}
