* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  background: #ffffff;
  color: #7b6858;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  body {
    padding-bottom: 180px;
  }
}

.version-tag {
  margin: 0;
  padding: 4px 8px;
  background: #333;
  color: #fff;
  font-family: monospace;
  font-size: 12px;
  text-align: center;
  letter-spacing: 0.05em;
}

.page {
  width: min(100%, 640px);
  margin: 0 auto;
  background: #f7f2ec;
  padding: 18px;
  overflow-x: hidden;
}

.hero {
  background: #fffaf4;
  text-align: center;
}

.top-copy {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.08em;
}

.hero-image {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.55);
  opacity: 1;
  transition: opacity 3.5s ease;
  pointer-events: none;
  z-index: 1;
}

.hero-image.show::after {
  opacity: 0;
}

.hero-image img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 1;
  filter: none;
}

.hero-text {
  position: absolute;
  top: 28px;
  right: 28px;
  z-index: 2;
  color: #fff36a;
  font-size: 48px;
  font-weight: bold;
  line-height: 1.45;
  text-align: right;
  text-shadow: 0 3px 8px rgba(0,0,0,0.6);
}

.hero-text p {
  margin: 0;
  opacity: 0;
  animation: heroSlideIn 1.5s ease forwards;
}

/* 各行0.5秒ずつ遅れて右から入る（アニメーション自体は1.5秒） */
.hero-text p:nth-child(1) { animation-delay: 0s; }
.hero-text p:nth-child(2) { animation-delay: 0.5s; }
.hero-text p:nth-child(3) { animation-delay: 1s; }

@keyframes heroSlideIn {
  from { opacity: 0; transform: translateX(60px); }
  to   { opacity: 1; transform: none; }
}

/* 「安全・安心・快適」を1.5倍に */
.hero-key {
  font-size: 1.5em;
}

.hero h1 {
  margin: 18px 0 24px;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.5;
}

.reservation {
  display: none;
}

@media (max-width: 768px) {
  .reservation {
    display: none;
  }
}

.reservation h2 {
  margin: 0;
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 0.08em;
}

.memory h2,
.voice h2,
.free h2 {
  margin: 0 0 18px;
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 0.08em;
}

.button-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 10px 12px;
  text-decoration: none;
  border-radius: 14px;
  font-weight: bold;
}

.brown {
  background: #5a351f;
  color: #ffffff;
  font-size: 18px;
  font-family: inherit;
  text-align: center;
  line-height: 1.15;
  flex-direction: row;
  gap: 8px;
}

/* 当社サイトボタンのカレンダーアイコン（白背景のみ視覚的に除去） */
.btn-icon {
  display: block;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  color: #ffffff;
  fill: currentColor;
  stroke: none;
  background: transparent;
  filter: none;
  padding: 0;
  margin: 0;
}

.btn-icon,
.mobile-reservation-bar .btn {
  color: #fff;
}

.carstay {
  background: #dcecf6;
  border: 2px solid #99c7df;
  color: #10a8d4;
  flex-direction: row;
  justify-content: flex-start;
  gap: 6px;
}

.carstay img {
  width: 120px;
  max-width: 150%;
  height: auto;
  display: block;
}

.carstay-label {
  display: block;
  flex: 1;
  font-size: clamp(11px, 3.2vw, 16px);
  font-family: inherit;
  font-weight: bold;
  color: #10a8d4;
  line-height: 1.08;
  white-space: nowrap;
}

.mobile-reservation-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 1em;
  padding: 8px 1em calc(8px + env(safe-area-inset-bottom));
  background: rgba(243, 248, 223, 0.98);
  border-top: none;
  box-shadow: none;
}
.mobile-reservation-title {
  grid-column: 1 / -1;
  grid-row: 1;
  display: block;
  width: 100%;
  justify-self: stretch;
  margin: 0;
  padding: 6px 0 8px;
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 0.08em;
  color: #7b6858;
  line-height: 1.2;
}

.mobile-reservation-bar .brown {
  grid-column: 1;
  grid-row: 2;
}

.mobile-reservation-bar .carstay {
  grid-column: 2;
  grid-row: 2;
}
@media (max-width: 768px) {
  .mobile-reservation-bar {
     position: fixed;
     left: 0;
     right: 0;
     bottom: 0;
     z-index: 1000;
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 6px 1em;
     padding: 8px 1em calc(8px + env(safe-area-inset-bottom));
     background: rgba(243, 248, 223, 0.98);
     border-top: none;
     box-shadow: none;
  }
   .mobile-reservation-title {
   grid-column: 1 / -1;
   grid-row: 1;
   display: block;
   width: 100%;
   justify-self: stretch;
   margin: 0;
   padding: 6px 0 8px;
   text-align: center;
   font-size: 28px;
   font-weight: bold;
   letter-spacing: 0.08em;
   color: #7b6858;
   line-height: 1.2;
 }
 .mobile-reservation-bar .brown {
  grid-column: 1;
  grid-row: 2;
}

.mobile-reservation-bar .carstay {
  grid-column: 2;
  grid-row: 2;
}
  
.mobile-reservation-bar .btn {
  min-height: 44px;
  padding: 5px 8px;
  border-radius: 12px;
  transition: transform 0.15s ease, filter 0.15s ease;
  transform-origin: center;
  position: relative;
}

.mobile-reservation-bar .btn.is-hovered {
  transform: scale(1.2);
  filter: brightness(1.2);
  z-index: 2;
}

  .mobile-reservation-bar .btn-icon {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .mobile-reservation-bar .carstay img {
    width: 100px;
  }

  .mobile-reservation-bar .carstay-label {
     display: block;
  font-size: clamp(12px, 3.4vw, 16px);
  line-height: 1.12;
  text-align: center;
  white-space: nowrap;
   }
}

.access {
  text-align: center;
  padding: 20px 0;
}

.access h3 {
  margin: 0 0 14px;
  /* 見出しを現在の2倍（16px→32px）に */
  font-size: 32px;
  font-weight: normal;
}

.access-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  align-items: stretch;
}

.access-grid > div {
  position: relative;
  display: flex;
  flex-direction: column;
}

.access-grid img,
.map-embed-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.map-embed-wrap {
  position: relative;
  overflow: hidden;
  background: #f5f1e9;
}

.map-embed {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-address-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  margin: 0;
  padding: 4px 6px;
  background: rgba(0, 0, 0, 0.56);
  color: #fff;
  font-size: 11px;
  line-height: 1.3;
  text-align: left;
  pointer-events: none;
}

.station-photo {
  position: relative;
}

.station-caption {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0;
  padding: 4px 2px;
  text-align: center;
  font-size: 16.5px;
  font-weight: bold;
  line-height: 1.4;
  color: #fff;
  /* 文字が読みやすいよう半透明の暗い帯を敷く（典型的な対処法） */
  background: rgba(0, 0, 0, 0.45);
}

/* 写真の上に重ねる説明文（上部の空に配置） */
.overlay-photo {
  position: relative;
}

.overlay-caption {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0;
  padding: 5px 2px;
  text-align: center;
  font-size: 15.6px;
  font-weight: bold;
  line-height: 1.4;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.9);
}

.memory {
  background: #fff;
  padding: 24px 16px;
  text-align: center;
}

.menu-mark {
  margin: 0;
  text-align: left;
  font-size: 24px;
  color: #3a1f12;
}

.spot-area {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 18px;
  align-items: center;
}

.main-photo {
  width: 100%;
  border-radius: 12px;
}
.special-button-row {
  display: grid;
  gap: 10px;
  margin: 14px 0 18px;
}
.qa h2 {
  text-align: center;
}
.special-btn {
  display: block;
  padding: 12px 16px;
  background: #5a351f;
  color: #ffffff;
  text-decoration: none;
  border-radius: 12px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  line-height: 1.3;
  transition: transform 0.15s ease, filter 0.15s ease;
  transform-origin: center;
  position: relative;
}

.special-btn.is-hovered {
  transform: scale(1.1);
  filter: brightness(1.2);
  z-index: 2;
}

.special-btn:visited {
  color: #ffffff;
}

.special-btn:hover {
  filter: brightness(1.15);
}
.qa-text p {
  margin: 0 0 14px;
  font-size: 17px;
}

.mini-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.mini-photos img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
}

.voice {
  background: #fff;
  padding: 10px 16px 20px;
}

/* アンケート結果（順次右からスライドイン） */
.questionnaire-list {
  display: grid;
  gap: 14px;
  margin-bottom: 18px;
}

.questionnaire-list img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid #e6dccf;
}

.slide-in {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

/* セクションが画面に入ったら順番に表示 */
.is-visible .slide-in {
  opacity: 1;
  transform: none;
}

.is-visible .slide-in:nth-child(1) { transition-delay: 0.2s; }
.is-visible .slide-in:nth-child(2) { transition-delay: 1.0s; }
.is-visible .slide-in:nth-child(3) { transition-delay: 1.8s; }

.voice-box {
  display: block;
}

.voice-by {
  margin: 6px 0 0;
  text-align: right;
  font-size: 13px;
}

/* 証言の下に置く小さい予約ボタン（予約セクションと同じデザイン） */
.voice-cta {
  width: fit-content;
  margin: 12px auto 0;
  min-height: 0;
  padding: 8px 16px;
  border-radius: 10px;
}

.voice-cta img {
  width: 50px;
}

.voice-cta .carstay-label {
  font-size: 14px;
}

.circle {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: #3f79d8;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 12px;
}

.voice-box p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
}

.equipment {
  background: #b89072;
  padding: 14px 16px;
  text-align: center;
}

.eq-list {
  display: block;
  margin: 0 0 12px;
  text-align: left;
}

.eq-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 18px;
}

.eq-row:last-child {
  margin-bottom: 0;
}

/* ヒーロー上部の「どこよりも、安全」と同じフォント・色 */
.eq-label {
  flex-shrink: 0;
  font-size: 48px;
  font-weight: bold;
  line-height: 1.45;
  white-space: nowrap;
  color: #fff36a;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.6);
}

/* 項目はラベルの下・右詰めで1単語1行で表示 */
.eq-items {
  align-self: flex-end;
  margin-top: 4px;
  font-size: 17px;
  line-height: 1.6;
  text-align: right;
  color: #f7f2ec;
}

.equipment-photos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.equipment-photos img {
  width: 100%;
  height: 60px;
  object-fit: cover;
}

.free {
  background: #fffaf4;
  border: 1px solid #eadfd4;
  padding: 20px 16px;
  text-align: center;
}

.free-content {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 20px;
  align-items: center;
  text-align: left;
}

.free-content img {
  width: 100%;
  border-radius: 14px;
}

.free-content p {
  font-size: 14px;
  line-height: 1.8;
}

.free-offer {
  display: block;
  font-size: 48px;
  line-height: 1.3;
}

/* 「是非ご相談ください」は「明日から」と同じ大きさ */
.free-content .free-cta {
  margin: 0;
  font-size: 38.4px;
  font-weight: bold;
  line-height: 1.3;
  text-align: center;
}

.free-sub {
  display: block;
  margin-top: 6px;
  font-size: 19.8px;
  font-weight: normal;
}

.sns-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 18px 0;
}

.sns-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  border: 1px solid #e6cdb8;
  border-radius: 999px;
  background: #fff;
  color: #9b6a45;
  text-decoration: none;
}

.sns-btn svg {
  width: 22px;
  height: 22px;
  display: block;
  fill: currentColor;
}

.sns-btn.line {
  background: #06c755;
  color: #fff;
  border-color: #06c755;
}

.sns-btn.line svg {
  fill: currentColor;
}

.contact {
  display: block;
  background: #5a351f;
  color: #fff;
  text-decoration: none;
  padding: 12px;
  font-size: 16px;
}

@media (max-width: 600px) {
  body {
    padding-bottom: 88px;
  }

  .page {
    padding: 12px;
  }

  .top-copy {
    font-size: 18px;
  }

  .hero-text {
    top: 20px;
    right: 18px;
    font-size: 34px;
  }

  .hero h1 {
    font-size: 26px;
    line-height: 1.4;
  }

  .button-row {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .btn {
    min-height: 52px;
    border-radius: 12px;
  }

  .brown {
    font-size: 21.6px;
  }

  .btn-icon {
    width: 32px;
  }

  /* アクセス見出しはスマホでは少し抑える（PCの32pxに対して可読性優先） */
  .access h3 {
    font-size: 26px;
  }

  .carstay img {
    width: 103px;
  }

  .carstay-label {
    font-size: clamp(12px, 3.4vw, 16px);
  }

  .spot-area,
  .voice-box,
  .free-content {
    grid-template-columns: 1fr;
  }

  .access-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reservation h2,
  .memory h2,
  .voice h2,
  .free h2 {
    font-size: 26px;
  }

  .eq-items {
    font-size: clamp(16px, 5vw, 22px);
    line-height: 1.5;
  }

  .eq-label {
    font-size: 34px;
  }

  .free-offer {
    font-size: clamp(32px, 11vw, 48px);
  }

  .free-sub {
    font-size: 18.5px;
  }

  .mini-photos img {
    height: 90px;
  }

  .equipment-photos img {
    height: 72px;
  }
}

/* PC（画面幅901px以上）でゆったり表示するレイアウト */
@media (min-width: 901px) {
  .page {
    width: min(100%, 1080px);
    padding: 32px 40px;
  }

  .hero-text {
    font-size: 56px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .eq-label {
    font-size: 56px;
  }

  .spot-area {
    grid-template-columns: 320px 1fr;
    gap: 32px;
  }

  .mini-photos img {
    height: 110px;
  }

  .free-content {
    grid-template-columns: 360px 1fr;
    gap: 32px;
  }

  .equipment-photos img {
    height: 140px;
  }

  .btn-icon {
    width: 48px;
  }

  /* PCでは予約ボタンを少しゆったり */
  .btn {
    min-height: 72px;
  }
}
.free-content img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 16px;
}

/* 各セクションのフェードイン（JS非対応時は常に表示） */
.js-fade .page > section {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.js-fade .page > section.is-visible {
  opacity: 1;
  transform: none;
}

/* OS側で「視差効果を減らす」設定の利用者にはアニメーションを無効化 */
@media (prefers-reduced-motion: reduce) {
  .hero-text p,
  .slide-in,
  .js-fade .page > section {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
.map-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  padding: 20px;
  background: #e8dfd3;
  color: #5a351f;
  text-decoration: none;
  border-radius: 12px;
  font-size: 22px;
  font-weight: bold;
  text-align: center;
}
/* 一時テスト：すべてのフェードイン演出を止める */
.hero-image {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

.hero-image.show {
  opacity: 1 !important;
  transform: none !important;
}

.js-fade .page > section {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

.js-fade .page > section.is-visible {
  opacity: 1 !important;
  transform: none !important;
}
/* 下部固定予約バーに隠れないようにする */
body {
 padding-bottom: 180px;
}
/* スマホ：最後の問い合わせボタンが下部予約バーに隠れないように止める */
@media (max-width: 768px) {
  html {
    scroll-snap-type: y proximity;
    scroll-padding-bottom: 220px;
  }

  .free {
    scroll-snap-align: end;
    scroll-snap-stop: always;
    padding-bottom: 240px;
  }

  .contact {
    margin-bottom: 180px;
  }
}

.price {
  background: #fffaf4;
  border: 1px solid #eadfd4;
  border-radius: 14px;
  padding: 20px 16px;
  margin: 18px 0;
  text-align: center;
}

.price h2 {
  margin: 0 0 10px;
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 0.06em;
}

.price-desc {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.7;
}

.price-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}

.price-card {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  text-align: center;
}

.price-card-title {
  margin: 0;
  font-size: 24px;
  font-weight: bold;
  color: #5a351f;
  text-align: center;
}

.price-card-amount {
  margin: 0;
  font-size: 38px;
  font-weight: bold;
  text-align: center;
  color: #5a351f;
}

.price-notes {
  text-align: left;
}

.price-notes p {
  margin: 0 0 6px;
  font-size: 11px;
  line-height: 1.6;
  color: #9b8a78;
}

.price-notes p:last-child {
  margin-bottom: 0;
}

.reserve-step-header {
  display: flex;
  gap: 8px;
  margin: 16px 0;
}

.reserve-step {
  flex: 1;
  margin: 0;
  padding: 10px;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  color: #b0a08e;
  background: #fff;
  border: 1px solid #eadfd4;
  border-radius: 8px;
  font-family: inherit;
  cursor: pointer;
}

.reserve-step.is-active,
.reserve-step.is-done {
  background: #5a351f;
  border-color: #5a351f;
  color: #fff;
}

.reserve-selected-summary {
  margin: 0 0 12px;
  font-size: 14px;
  text-align: center;
  color: #5a351f;
}

.reserve-selected-summary p {
  margin: 0 0 4px;
}

.reserve-calendar-nav {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}

.reserve-nav-btn {
  flex: 1;
  padding: 8px;
  border: 1px solid #eadfd4;
  border-radius: 8px;
  background: #fff;
  color: #5a351f;
  font-family: inherit;
  font-size: 13px;
  font-weight: bold;
  cursor: pointer;
}

.reserve-nav-btn:disabled {
  color: #d8c7b5;
  cursor: not-allowed;
}

.reserve-calendars {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px;
}

.reserve-calendar {
  flex: 1 1 220px;
  max-width: 260px;
  background: #fff;
  border: 1px solid #eadfd4;
  border-radius: 10px;
  padding: 10px;
}

.reserve-calendar-title {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  color: #5a351f;
}

.reserve-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.reserve-weekday {
  font-size: 11px;
  text-align: center;
  color: #9b8a78;
}

.reserve-day {
  display: block;
  width: 100%;
  padding: 4px 0;
  border: none;
  border-radius: 4px;
  background: transparent;
  font-family: inherit;
  font-size: 12px;
  color: #5a351f;
  cursor: pointer;
}

.reserve-day-blank {
  visibility: hidden;
}

.reserve-day-disabled {
  color: #d8c7b5;
  cursor: not-allowed;
}

.reserve-day-selected-start,
.reserve-day-selected-end {
  background: #5a351f;
  color: #fff;
}

.reserve-time-popup {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.45);
  padding: 16px;
  z-index: 10;
}

.reserve-time-popup[hidden] {
  display: none;
}

.reserve-time-popup-inner {
  width: 100%;
  max-width: 320px;
  max-height: 80vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 12px;
  padding: 16px;
}

.reserve-time-popup-title {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  color: #5a351f;
}

.reserve-time-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(6, 1fr);
  grid-auto-flow: column;
  gap: 5px;
  margin-bottom: 12px;
}

.reserve-time-btn {
  padding: 7px 0;
  border: 1px solid #eadfd4;
  border-radius: 6px;
  background: #fffaf4;
  font-family: inherit;
  font-size: 12px;
  color: #5a351f;
  cursor: pointer;
}

.reserve-time-popup-close {
  display: block;
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 8px;
  background: #e8dfd3;
  color: #5a351f;
  font-family: inherit;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
}

.reserve-result-label {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  color: #9b8a78;
}

.reserve-result-price {
  margin: 0 0 4px;
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  color: #5a351f;
}

.reserve-result-detail {
  margin: 0;
  font-size: 13px;
  text-align: center;
  color: #9b8a78;
}

.reserve-time-am {
  background: #fffaf4;
}

.reserve-time-pm {
  background: #f0e6dc;
}

.reserve-action-buttons {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}