@charset "utf-8";

.reserve-page {
  background:#f6efe3;
}

.reserve-wrap {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 14px 0 30px;
  box-sizing: border-box;
  background:#fff;
}

.reserve-profile__inner {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
}

/* ==========
   Header
========== */

#logo {
  display:flex;
  justify-content:flex-start;
  align-items:center;
  padding: 0 16px 8px;
}
#logo img {
  max-width: 220px;
  height: auto;
}

.reserve-campaign {
  max-width: 780px;
  margin: 16px auto;
}

.reserve-campaign__link {
  display: block;
}

.reserve-campaign__picture,
.reserve-campaign__img {
  display: block;
  width: 100%;
}

.reserve-campaign__img {
  height: auto;
  border-radius: 6px;
}


/* ==========
   Step
========== */
.reserve-step {
  max-width: 780px;
  margin: 0 auto 20px;
}
.reserve-step__list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}
.reserve-step__item {
  position: relative;
  flex: 1;
  padding: 12px 8px;
  text-align: center;
  background: #f5f5f5;
  color: #666;
  font-size: 14px;
}
/* 矢印部分 */
.reserve-step__item::after {
  content: "";
  position: absolute;
  top: 0;
  right: -16px;
  width: 0;
  height: 0;
  border-top: 24px solid transparent;
  border-bottom: 24px solid transparent;
  border-left: 16px solid #f5f5f5;
  z-index: 2;
}
.reserve-step__item::before {
  content: "";
  position: absolute;
  top: 0;
  right: -17px;
  width: 0;
  height: 0;
  border-top: 24px solid transparent;
  border-bottom: 24px solid transparent;
  border-left: 17px solid #e0e0e0;
  z-index: 1;
}
/* 最後の矢印は消す */
.reserve-step__item:last-child::after,
.reserve-step__item:last-child::before {
  display: none;
}
/* 番号 */
.reserve-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #bbb;
  color: #fff;
  font-weight: 700;
  margin-right: 6px;
  font-size: 13px;
  line-height: 1;
  flex: 0 0 24px;
}
/* ラベル */
.reserve-step__label {
  vertical-align: middle;
}
/* 現在ステップ */
.reserve-step__item.is-current {
  background: #2fa38c;
  color: #fff;
  font-weight: bold;
}
.reserve-step__item.is-current::after {
  border-left-color: #2fa38c;
}
.reserve-step__item.is-current .reserve-step__num {
  background: #fff;
  color: #2fa38c;
}


/* ==========
   Main layout
========== */
.reserve-main {
  padding: 6px 16px 0;
}

/* ==========
   Form
========== */
.reserve-form {
  width: min(520px, 100%);
  margin: 0 auto;
  padding: 4px 0 8px;
}
.reserve-field {
  margin: 12px 0 18px;
}
.reserve-field__head {
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom: 8px;
}
.reserve-required {
  display:inline-flex;
  justify-content:center;
  align-items:center;
  min-width: 44px;
  height: 22px;
  border-radius: 4px;
  background:#e25b67;
  color:#fff;
  font-weight:700;
  font-size: 12px;
}
.reserve-field__label {
  font-weight:700;
  font-size: 16px;
}
.reserve-input {
  width: 100%;
  max-width: 100%;
  min-height: 52px;
  padding: 14px 14px;
  border: 2px solid #e3e3e3;
  border-radius: 10px;
  background:#fff;
  font-size: 16px;
  outline: none;
  box-shadow: 0 2px 6px rgba(0,0,0,.06);
}
.reserve-input:focus {
  border-color:#3aa79b;
  box-shadow: 0 0 0 4px rgba(58,167,155,.18);
}
/* 郵便番号 */
.reserve-input--zip {
  max-width: 100%;
}
/* 都道府県 */
.reserve-input--pref {
  max-width: 100%;
}
/* 市区町村 */
.reserve-input--city {
  max-width: 100%;
}
/* 丁目・番地・建物名 */
.reserve-input--address {
  max-width: 100%;
}
.reserve-help {
  margin: 8px 0 0;
  color:#666;
  font-size: 12px;
  line-height: 1.5;
}

/* ==========
   Section titles
========== */
.reserve-section-title {
  text-align:center;
  font-weight:700;
  margin: 20px 0 12px;
  font-size: 16px;
}

/* ==========
   Calendar
========== */
.reserve-calendar {
  width: min(900px, 100%);
  margin: 0 auto;
  padding: 4px 0 10px;
  overflow-x: hidden;
}
.reserve-calendar__head {
  display:grid;
  grid-template-columns: 1fr auto 1fr;
  align-items:center;
  gap: 10px;
  margin: 6px 0 10px;
}
.reserve-month {
  text-align:center;
  font-weight:700;
}
.reserve-week__btn {
  justify-self: start;
  border: 2px solid #e6e6e6;
  background:#fff;
  border-radius: 6px;
  padding: 10px 12px;
  font-weight:700;
  color:#666;
}
.reserve-week__btn:last-child { justify-self:end; }
.reserve-calendar-week {
  width: 100%;
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
  text-align: center;
}
.reserve-calendar-day {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.reserve-calendar-weekday {
  font-size: 13px;
  color: #333;
}
.reserve-calendar-date {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
}
/* 選択中 */
.reserve-calendar-day.is-active .reserve-calendar-date {
  background: #8cc9b6;
  color: #fff;
}
/* 土日色 */
.reserve-calendar-day.is-sat .reserve-calendar-weekday {
  color: #2a6fd6;
}
.reserve-calendar-day.is-sun .reserve-calendar-weekday {
  color: #d83a3a;
}

/* 過去日（選択不可） */
.reserve-calendar-day.is-disabled {
  opacity: 0.25;
  cursor: not-allowed;
}
.reserve-calendar-day.is-disabled .reserve-calendar-weekday {
  color: #666;
}
.reserve-calendar-day.is-disabled .reserve-calendar-date {
  color: #666;
  background: #d0d0d0;
}

/* ==========
   FP list
========== */
.reserve-fp {
  width: min(900px, 100%);
  margin: 0 auto;
  padding: 8px 0 8px;
}
.reserve-fp__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 10px;
}
.reserve-fp__count {
  font-size: 12px;
  color: #666;
  margin: 0;
  white-space: nowrap;
}
.reserve-fp__row {
  display:grid;
  grid-template-columns: 44px 1fr 44px;
  gap: 8px;
  align-items:center;
}
.reserve-arrow {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: none;
  background:#d8d8d8;
  color:#fff;
  font-size: 26px;
  line-height:1;
  display:flex;
  align-items:center;
  justify-content:center;
}
.reserve-fp__list {
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  align-items:start;
  margin-bottom: 20px;
}
.reserve-fp-card {
  position:relative;
  border: 2px solid #ededed;
  border-radius: 12px;
  background:#fff;
  padding: 10px 10px 12px;
  min-height: 170px;
  box-shadow: 0 2px 6px rgba(0,0,0,.05);
}
.reserve-fp-card__hit {
  position:absolute;
  inset:0;
  border:0;
  background:transparent;
  cursor:pointer;
}
.reserve-fp-card__photo {
  width:100%;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  border: 2px solid #f1f1f1;
  background: #fff;
}
.reserve-fp-card__name {
  text-align:center;
  font-size: 12px;
  margin: 8px 0 8px;
  color:#333;
  font-weight:700;
}
.reserve-fp-card__comment {
  text-align:center;
  margin: 8px 0 8px;
}
.reserve-fp-card__profile {
  position:relative;
  z-index:1;
  display:inline-flex;
  width: 100%;
  justify-content:center;
  align-items:center;
  gap: 6px;
  min-height: 38px;
  border-radius: 999px;
  border: 2px solid #e6e6e6;
  color:#333;
  background:#fff;
  text-decoration:none;
  font-weight:700;
  font-size: 12px;
}
/* 選択状態：カード全体 */
.reserve-fp-card.is-selected {
  border-color:#93cbbf;
  box-shadow: 0 0 0 4px rgba(147,203,191,.35);
}
@media (hover: hover) {
  .reserve-fp-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
    transform: translateY(-1px);
    transition: .2s ease;
  }
}


/* ==========
   Time
========== */
.reserve-time {
  width: min(900px, 100%);
  margin: 0 auto;
  padding: 8px 0 0;
}
.reserve-time.is-hidden {
  display: none;
}
.reserve-time__list {
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 8px;
}
.reserve-time__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 8px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.15);
  background: #fff;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  min-height: 56px;
  font-size: 18px;
  border-width: 2px;
  transition: background .15s ease, border-color .15s ease, transform .1s ease, box-shadow .15s ease;
}
/* hover（非選択だけ少し分かりやすく） */
@media (hover: hover) {
  .reserve-time__btn:hover:not(.is-selected) {
    border-color: #bfc8c6;
    box-shadow: 0 6px 16px rgba(0, 0, 0, .08);
    transform: translateY(-1px);
  }
}
/* 押した時のフィードバック */
.reserve-time__btn:active {
  transform: translateY(0);
  box-shadow: none;
}
.reserve-time__btn.is-selected {
  background:#93cbbf;
  border-color:#93cbbf;
  color:#fff;
}
.reserve-time__btn.is-disabled,
.reserve-time__btn:disabled {
  background:#d0d0d0;
  border-color:#bdbdbd;
  color:#7a7a7a;
  cursor:not-allowed;
  box-shadow:none;
}
.reserve-time__btn.is-disabled:hover {
  transform:none;
  box-shadow:none;
}
.reserve-note {
  margin: 12px 0 0;
  color:#444;
  font-size: 12px;
  line-height: 1.6;
}

/* ==========
   CTA
========== */
.reserve-cta {
  padding: 22px 0 4px;
  display:flex;
  justify-content:center;
}
.reserve-cta__btn {
  width: min(360px, 92vw);
  min-height: 60px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  padding: 0;
  font-family: inherit;
  font-size: inherit;
  background:#3aa79b;
  color:#fff;
  text-decoration:none;
  font-weight:700;
  line-height: 1.25;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 12px;
  box-shadow: 0 10px 18px rgba(0,0,0,.14);
}
.reserve-cta__btn__arrow {
  font-size: 22px;
  line-height:1;
}

/* ラジオボタングループ */
.reserve-radio-group {
  display: flex;
  gap: 12px;
  width: 100%;
}
.reserve-radio {
  flex: 1;
  position: relative;
}
.reserve-radio input[type="radio"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.reserve-radio__label {
  display: block;
  padding: 12px 20px;
  border: 2px solid #ddd;
  border-radius: 8px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #fff;
}
/* 任意入力セクション */
.reserve-optional {
  width: min(520px, 100%);
  margin: 32px auto 0;
  padding: 24px 0 12px;
  border-top: 2px dashed #ddd;
}
.reserve-optional .reserve-section-title {
  margin-top: 0;
  margin-bottom: 4px;
  font-size: 18px;
}
.reserve-optional__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 22px;
  padding: 0 10px;
  border-radius: 4px;
  background: #b0bec5;
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  line-height: 1;
}
.reserve-optional__note {
  text-align: center;
  color: #6b7a85;
  font-weight: 600;
  margin: 8px 0 20px;
}
.reserve-radio input[type="radio"]:checked + .reserve-radio__label {
  border-color: #3aa79b;
  background: #f0f9f8;
  color: #3aa79b;
  font-weight: 700;
}
.reserve-radio__label:hover {
  border-color: #3aa79b;
  background: #f8fcfb;
}
.reserve-radio input[type="radio"]:focus + .reserve-radio__label {
  outline: 2px solid #3aa79b;
  outline-offset: 2px;
  box-shadow: 0 2px 6px rgba(0,0,0,.06);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.mendan-area input[type="date"]:focus,
.mendan-area select:focus {
  border-color: #3aa79b;
  box-shadow: 0 0 0 4px rgba(58,167,155,.18);
}
.mendan-area .text-note {
  font-size: 13px;
  color: #e74c3c;
  margin-top: 16px;
  font-weight: 500;
  text-align: center;
}

/* ==========
   FPから選択ここから
========== */
.reserve-fp__actions {
  display:grid;
  grid-template-columns: 1fr;
  gap:8px;
  padding:10px;
  padding-top: 0;
}
.reserve-fp__btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 6px;
  min-height:38px;
  border-radius:999px;
  font-weight:700;
  font-size:12px;
  text-decoration:none;
  border:2px solid #93cbbf;
  background:#93cbbf;
  color:#0b3b33;
}

/* ==========
   pager
========== */
.reserve-pager {
  display:flex;
  justify-content:center;
  align-items:center;
  gap:10px;
  padding: 8px 0 4px;
}
.reserve-pager__btn {
  text-decoration:none;
  color:#666;
  font-weight:700;
  font-size:12px;
}
.reserve-pager__btn.is-current { color:#111; }
.reserve-pager__dots { color:#888; font-weight:700; }

/* ==========
   Modal（CSSだけで開閉）
   href="#reserve-modal" → :target で表示
========== */
.reserve-modal {
  position:fixed;
  inset:0;
  display:none;
  z-index: 9999;
}
.reserve-modal:target {
  display:block;
}
.reserve-modal__backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.25);
}
/* panel */
.reserve-modal__panel {
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  bottom: 110px;
  width: min(720px, 92vw);
  background:#fff;
  border-radius: 12px;
  border: 2px solid #e9e9e9;
  box-shadow: 0 14px 30px rgba(0,0,0,.18);
  padding: 16px 16px 14px;
}
.reserve-modal__close {
  position:absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  color:#555;
  background:#efefef;
  font-size: 18px;
  font-weight:700;
}
.reserve-modal__title {
  text-align:center;
  font-weight:700;
  margin: 4px 0 10px;
}
.reserve-modal__month {
  text-align:center;
  font-weight:700;
  margin: 0 0 8px;
}
/* week */
.reserve-modal__week {
  display:grid;
  grid-template-columns: 44px 1fr 44px;
  align-items:center;
  gap: 8px;
  margin-top: 8px;
}
.reserve-modal__nav {
  width:44px;
  height:44px;
  border-radius:999px;
  border:none;
  background:#d8d8d8;
  color:#fff;
  font-size:26px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.reserve-modal__days {
  display:grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
  align-items:center;
  justify-items:center;
}
.reserve-modal__dow {
  font-weight:700;
  font-size:13px;
  color:#333;
}
.reserve-modal__dow.is-sat { color:#2f6ed8; }
.reserve-modal__dow.is-sun { color:#d64242; }
.reserve-modal__date {
  width:40px;
  height:40px;
  border-radius:10px;
  border:2px solid transparent;
  background:transparent;
  font-weight:700;
  font-size:15px;
  color:#333;
}
.reserve-modal__date.is-selected {
  background:#93cbbf;
  color:#0b3b33;
}
.reserve-modal__date.is-sat { color:#2f6ed8; }
.reserve-modal__date.is-sun { color:#d64242; }
/* times */
.reserve-modal__times {
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 14px;
}
.reserve-modal__time {
  min-height: 54px;
  border-radius: 12px;
  border: 2px solid #e6e6e6;
  background:#fff;
  font-weight:700;
  font-size: 15px;
  color:#333;
}
.reserve-modal__time.is-selected {
  background:#93cbbf;
  border-color:#93cbbf;
  color:#0b3b33;
}

.reserve-modal__note {
  margin-top: 10px;
  font-size: 12px;
  color:#444;
  line-height: 1.6;
}






/* ==========
   プロフィールページここから
========== */
/* hero */
.reserve-profile-hero { padding: 6px 0 0; }
.reserve-profile-hero__grid {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  align-items: start;
}
.reserve-profile-photo {
  width: 120px;
  height: 120px;
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
  border: 1px solid rgba(0,0,0,.06);
}
.reserve-profile-hero__role {
  font-size: 14px;
  color: #4a4a4a;
  letter-spacing: .02em;
  margin-top: 4px;
}
.reserve-profile-hero__name {
  font-size: 20px;
  font-weight: 700;
  margin: 4px 0 10px;
}

/* pills */
.reserve-pill-row { display: flex; flex-wrap: wrap; gap: 8px; }
.reserve-pill {
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding: 0 12px;
  border-radius: 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .01em;
  border: 1px solid rgba(0,0,0,.06);
}
.reserve-pill--brown {
  background: #b07a28;
  color: #fff;
  border-color: rgba(0,0,0,.08);
}

/* cards */
.reserve-card {
  background: #fff;
  border-radius: 10px;
  margin-top: 24px;
  padding: 18px 16px;
  box-shadow: 0 3px 14px rgba(0,0,0,.06);
  border: 1px solid rgba(0,0,0,.06);
}
.reserve-card:first-child {
  margin-top: 0;
}
.reserve-card__title {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 12px;
  text-align: center;
  position: relative;
  padding-bottom: 10px;
}
.reserve-card__title::after {
  content: "";
  display: block;
  width: 18px;
  height: 3px;
  background: #2aa79a; /* スクショの小さなライン */
  border-radius: 2px;
  margin: 8px auto 0;
}
.reserve-card__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
  color: #3a3a3a;
}

/* tags */
.reserve-tag-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.reserve-tag {
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding: 0 10px;
  border-radius: 6px;
  background: #f2f2f2;
  border: 1px solid rgba(0,0,0,.08);
  color: #333;
  font-size: 13px;
  white-space: nowrap;
}

/* profile table */
.reserve-profile-table { display: grid; gap: 14px; }
.reserve-profile-row {
  display: grid;
  grid-template-columns: 70px 1fr 70px 120px;
  gap: 12px 10px;
  align-items: start;
}
.reserve-profile-row--single { grid-template-columns: 70px 1fr; }
.reserve-profile-th {
  font-size: 13px;
  font-weight: 700;
  color: #2f2f2f;
  padding-top: 2px;
}
.reserve-profile-td {
  font-size: 13px;
  line-height: 1.8;
  color: #3a3a3a;
}
.reserve-profile-th--right { text-align: left; }
.reserve-profile-td--right { text-align: left; }

/* back */
.reserve-back {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.reserve-back__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 18px;
  border-radius: 22px;
  background: #efefef;
  border: 1px solid rgba(0,0,0,.08);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  font-family: inherit;
  font-size: 14px;
  color: #555;
  text-decoration: none;
  font-weight: 600;
}




/*******************************************************/
/*******************************************************/
/******************** スマホ版表示CSS ********************/
/*******************************************************/
/*******************************************************/

@media (max-width: 720px) {
  .reserve-wrap {
    width: 94%;
  }
  .reserve-profile__inner {
    padding: 0 10px;
  }
  #logo {
    padding: 0;
  }
  .header-inner {
    padding: 0 10px;
  }
  .reserve-step__list {
    flex-direction: column;
    border-radius: 8px;
  }
  .reserve-step__item {
    padding: 14px 12px;
    text-align: left;
    font-size: 15px;
  }
  /* 矢印は縦では不要なので消す */
  .reserve-step__item::after,
  .reserve-step__item::before {
    display: none;
  }
  .reserve-step__item + .reserve-step__item {
    border-top: 1px solid #ddd;
  }
  .reserve-step__num {
    margin-right: 10px;
  }
  .reserve-fp {
    width: 100%;
    padding: 8px 0;
  }

  .reserve-page-fp .reserve-arrow {
    display: none;
  }
  .reserve-page-fp .reserve-fp__row {
    display: block;
  }
  .reserve-page-fp .reserve-fp__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .reserve-page-fp .reserve-fp-card {
    min-width: auto;
  }
  .reserve-fp-card.is-selected {
    box-shadow: 0 0 0 4px rgba(147, 203, 191, .35);
  }
  .reserve-time__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .reserve-time__btn {
    min-height: 60px;
    font-size: 18px;
    border-radius: 14px;
  }
  .reserve-page-calendar .reserve-fp__row {
    position: relative;
    grid-template-columns: 1fr;
    overflow: hidden;
    border-radius: 12px;
  }
  .reserve-page-calendar .reserve-fp__row::before,
  .reserve-page-calendar .reserve-fp__row::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 14px;
    pointer-events: none;
    z-index: 2;
  }
  .reserve-page-calendar .reserve-fp__row::before {
    left: 0;
    background: linear-gradient(to right, rgba(255,255,255,0.75), rgba(255,255,255,0));
  }
.reserve-page-calendar .reserve-fp__row::after {
    right: 0;
    background: linear-gradient(to left, rgba(255,255,255,0.75), rgba(255,255,255,0));
  }
  .reserve-page-calendar .reserve-arrow {
    display: none;
  }
  .reserve-page-calendar .reserve-fp__list {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    margin-bottom: 0;
    padding: 4px 2px 10px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .reserve-page-calendar .reserve-fp-card {
    flex: 0 0 46%;
    min-width: 160px;
    scroll-snap-align: start;
  }
  .reserve-time {
    padding: 0;
  }
}

@media (max-width: 520px) {
  .reserve-profile-hero__grid { grid-template-columns: 92px 1fr; }
  .reserve-profile-photo { width: 92px; height: 92px; }
  .reserve-profile-row {
    grid-template-columns: 64px 1fr;
  }
  .reserve-profile-th--right,
  .reserve-profile-td--right {
    grid-column: auto;
  }
}

@media (max-width: 420px) {
  .reserve-week__btn { font-size: 12px; padding: 10px 10px; }
  .reserve-modal__panel { bottom: 90px; }
  .reserve-modal__date { width:36px; height:36px; }
}
