:root {
  --bg-main: #f4f6f8;
  --bg-panel: #ffffff;
  --text-main: #1f2630;
  --text-sub: #6b7280;
  --line: #d8dee6;
  --accent: #f5a623;
  --accent-deep: #e99309;
  --accent-soft: #ffe9c2;
  --cell-available: #f5a623;
  --cell-booked: #cfd5de;
  --cell-closed: #eceff3;
  --cell-past: #eceff3;
  --shadow-soft: 0 12px 28px rgba(26, 32, 44, 0.08);
}

body {
  background: radial-gradient(circle at 0% 0%, #fff6e8 0, var(--bg-main) 45%);
  color: var(--text-main);
}

.public-store-header {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 14px 24px;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.public-store-header.public-store-header-narrow {
  max-width: 960px;
}

.public-flash-wrap {
  max-width: 1180px;
  margin: 0 auto;
}

.public-flash-wrap.is-narrow {
  max-width: 960px;
}

.public-store-label {
  font-size: 12px;
  color: var(--text-sub);
  font-weight: 600;
}

.public-store-name {
  font-size: clamp(1.15rem, 2.8vw, 1.5rem);
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.3;
}

.auth-login-page {
  min-height: calc(100vh - 2rem);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 0;
}

.auth-login-shell {
  width: min(980px, 100%);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #dbe2ea;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.12);
}

.auth-login-brand {
  background: linear-gradient(180deg, #7c94cc 0%, #6b83bd 100%);
  color: #ffffff;
  padding: 42px 34px;
}

.auth-login-brand-kicker {
  letter-spacing: 0.11em;
  font-size: 12px;
  opacity: 0.88;
  font-weight: 600;
}

.auth-login-brand-title {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 800;
  letter-spacing: 0.01em;
}

.auth-login-brand-logo {
  display: block;
  width: min(260px, 100%);
  height: auto;
}

.auth-login-brand-text {
  font-size: 14px;
  line-height: 1.75;
  opacity: 0.95;
}

.auth-login-card {
  padding: 34px;
}

.auth-login-heading {
  font-size: 1.45rem;
  font-weight: 800;
  margin: 0 0 4px;
}

.auth-login-subtext {
  color: #64748b;
  font-size: 13px;
}

.auth-login-submit {
  font-weight: 700;
}

@media (max-width: 991.98px) {
  .auth-login-shell {
    grid-template-columns: 1fr;
  }

  .auth-login-brand {
    padding: 28px 22px;
  }

  .auth-login-card {
    padding: 24px 18px;
  }
}

.form-control,
.form-select {
  border-radius: 12px;
  border-color: var(--line);
}

.btn-accent,
.btn.btn-accent {
  background: #1f2937;
  color: #ffffff;
  border: 1px solid #1f2937;
  border-radius: 12px;
  padding: 10px 18px;
  font-weight: 700;
}

.btn-accent:hover,
.btn.btn-accent:hover,
.btn-accent:focus-visible,
.btn.btn-accent:focus-visible {
  background: #111827;
  color: #ffffff;
  border-color: #111827;
}

.btn-accent:disabled,
.btn.btn-accent:disabled {
  background: #e5e7eb;
  color: #9ca3af;
  border-color: #e5e7eb;
  opacity: 1;
  cursor: not-allowed;
}

.reserve-page {
  max-width: 1180px;
  margin: 0 auto;
}

.public-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #64748b;
}

.public-breadcrumb a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
}

.public-breadcrumb a:hover {
  text-decoration: underline;
}

.store-top-page {
  max-width: 1180px;
  margin: 0 auto;
}

.store-top-hero {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 22px 24px;
  box-shadow: var(--shadow-soft);
}

.store-top-kicker {
  letter-spacing: 0.14em;
  font-size: 11px;
  color: var(--accent-deep);
  font-weight: 700;
}

.store-top-title {
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-weight: 800;
}

.store-top-subtitle {
  color: var(--text-sub);
}

.store-top-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.store-top-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow-soft);
}

.store-top-card-title {
  font-size: 1.05rem;
  font-weight: 800;
  margin: 0 0 12px;
}

.store-plan-list {
  display: grid;
  gap: 10px;
}

.store-plan-item {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 12px;
  background: #f8fafc;
  display: flex;
  flex-direction: column;
}

.store-plan-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.store-plan-name {
  font-size: 1rem;
  font-weight: 700;
}

.store-plan-price {
  color: #1f2937;
  font-weight: 700;
  white-space: nowrap;
}

.store-plan-duration {
  font-size: 12px;
  color: #64748b;
}

.store-plan-description p {
  margin: 0;
  color: #334155;
  line-height: 1.65;
}

.store-plan-action {
  margin-top: auto;
  padding-top: 12px;
  display: flex;
  justify-content: flex-end;
}

.store-info-list {
  display: grid;
  gap: 10px;
  margin: 0;
}

.store-info-list div {
  display: grid;
  gap: 4px;
}

.store-info-list dt {
  font-size: 12px;
  color: #64748b;
  margin: 0;
}

.store-info-list dd {
  margin: 0;
  color: #0f172a;
  line-height: 1.7;
}

.store-info-list dd p {
  margin: 0;
}

.store-map-wrap {
  border: 1px solid #dbe2ea;
  border-radius: 12px;
  overflow: hidden;
  background: #f8fafc;
}

.store-map-wrap iframe {
  display: block;
  width: 100%;
  height: 280px;
  border: 0;
}

.store-map-fallback {
  padding: 16px;
  color: #475569;
  font-size: 14px;
}

.store-top-actions {
  text-align: center;
}

.reserve-hero {
  background: var(--bg-panel);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  padding: 24px;
  border: 1px solid #f0e2c7;
}

.reserve-kicker {
  letter-spacing: 0.16em;
  font-size: 11px;
  color: var(--accent-deep);
  margin-bottom: 8px;
}

.reserve-title {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 8px;
}

.reserve-range-text {
  margin: 0;
  color: var(--text-sub);
  font-weight: 600;
}

.reserve-panel,
.reserve-form {
  background: var(--bg-panel);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  padding: 20px;
  border: 1px solid #f1f3f7;
}

.reserve-plan-guide {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #f8fafc;
  padding: 10px 12px;
}

.reserve-plan-guide summary {
  cursor: pointer;
  font-weight: 700;
  color: #334155;
  list-style: none;
}

.reserve-plan-guide summary::-webkit-details-marker {
  display: none;
}

.reserve-plan-guide summary::after {
  content: "＋";
  float: right;
  color: #64748b;
  font-weight: 700;
}

.reserve-plan-guide[open] summary::after {
  content: "−";
}

.reserve-plan-guide-list {
  display: grid;
  gap: 10px;
}

.reserve-plan-guide-item {
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #ffffff;
  padding: 10px;
}

.reserve-plan-guide-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 4px;
}

.reserve-plan-guide-head span {
  white-space: nowrap;
  font-weight: 700;
  color: #1f2937;
}

.reserve-plan-guide-description p {
  margin: 4px 0 0;
  color: #475569;
  line-height: 1.65;
}

.calendar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--text-sub);
  font-size: 12px;
}

.legend-chip {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 4px;
  margin-right: 6px;
  vertical-align: -1px;
}

.legend-available {
  background: #ffffff;
  border: 1px solid var(--line);
}

.legend-booked { background: #eef4ff; }

.legend-booked,
.legend-closed,
.legend-past {
  border: 1px solid #cbd5e1;
}

.legend-closed { background: #e2e8f0; }

.legend-past { background: #e2e8f0; }

.mobile-day-tabs {
  display: none;
  gap: 8px;
}

.mobile-day-tab {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 6px 12px;
  color: var(--text-sub);
}

.mobile-day-tab.is-active {
  border-color: transparent;
  background: var(--accent-soft);
  color: #805200;
  font-weight: 700;
}

.week-switch-buttons {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}

.week-switch-buttons .btn {
  min-width: 132px;
}

.week-switch-buttons .btn.is-disabled,
.week-switch-buttons .btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

.calendar-wrap {
  background: var(--bg-panel);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  padding: 14px;
  overflow: auto;
  border: 1px solid #eef1f5;
}

.calendar-grid {
  display: grid;
  grid-template-columns: 56px repeat(var(--day-count), minmax(140px, 1fr));
  gap: 0;
  min-width: 840px;
}

.calendar-day-head {
  text-align: left;
  padding: 8px 10px;
  background: #f9fbfd;
  border-left: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.calendar-day-head strong {
  display: block;
  font-size: 16px;
}

.calendar-day-head small {
  color: var(--text-sub);
}

.day-notice-icon {
  display: inline-flex;
  align-items: center;
  margin-left: 4px;
  font-size: 0.85rem;
  color: #e67e22;
  cursor: pointer;
  vertical-align: middle;
  position: relative;
}

.day-notice-icon--booth {
  color: #e67e22;
}

.day-notice-popup {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff8f0;
  color: #7a3e00;
  border: 1px solid #f0b07a;
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.5;
  padding: 6px 10px;
  border-radius: 6px;
  white-space: normal;
  width: max-content;
  max-width: 200px;
  z-index: 100;
  pointer-events: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}

.day-notice-popup::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-bottom-color: #f0b07a;
}

.day-notice-icon:hover .day-notice-popup,
.day-notice-icon.is-open .day-notice-popup {
  display: block;
}

.booth-card-name-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.booth-card-notice {
  font-size: 0.85rem;
  color: #e67e22;
  cursor: default;
  flex-shrink: 0;
}

.booth-card-message {
  font-size: 0.8rem;
  color: #c0560a;
  margin-top: 4px;
  line-height: 1.4;
}

.calendar-time-label {
  text-align: right;
  font-size: 12px;
  color: var(--text-sub);
  padding: 4px 8px 0 0;
  min-height: var(--calendar-row-height, 40px);
  border-top: 1px dotted #e2e8f0;
}

.calendar-cell {
  min-height: var(--calendar-row-height, 40px);
  border-top: 1px dotted #e2e8f0;
  border-left: 1px solid var(--line);
  background: #ffffff;
  position: relative;
}

.calendar-time-label.time-line-10,
.calendar-cell.time-line-10 {
  border-top-style: dashed;
  border-top-color: #d5dde7;
}

.calendar-time-label.time-line-30,
.calendar-cell.time-line-30 {
  border-top-style: solid;
  border-top-color: #c8d3df;
}

.cell-available {
  background: #ffffff;
  cursor: pointer;
}

.calendar-cell.cell-available.cell-plan-blocked {
  background: #ffffff;
  cursor: not-allowed;
}

.calendar-cell.cell-available.cell-plan-blocked .slot-hit-area {
  cursor: not-allowed;
}

.cell-booked {
  background: #eef4ff;
  border-left-color: #eef4ff;
}

.calendar-cell.cell-booked:not(.is-booked-start) {
  border-top-color: #eef4ff;
}

.cell-closed { background: var(--cell-closed); }
.cell-past { background: var(--cell-past); }
.cell-blocked { background: #ffffff; }

.calendar-cell.is-booked-start {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.calendar-cell.is-booked-end {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.slot-hit-area {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: none;
  background: transparent;
  cursor: pointer;
}

.calendar-cell.cell-available:hover {
  background: #f8fbff;
}

.slot-mark {
  color: transparent;
}

.slot-booked {
  display: inline-flex;
  align-items: center;
  width: 100%;
  min-height: var(--calendar-row-height, 40px);
  color: #334155;
  font-size: 11px;
  font-weight: 700;
  padding: 0 8px;
}

.calendar-cell.is-selected-range {
  background: #f7fbff;
  border-top-color: #eaf2ff;
  border-left-color: #eaf2ff;
  box-shadow: inset 2px 0 0 #4f8ee8, inset -2px 0 0 #4f8ee8;
  z-index: 1;
}

.calendar-cell.is-selected-start {
  box-shadow: inset 2px 0 0 #4f8ee8, inset -2px 0 0 #4f8ee8, inset 0 2px 0 #4f8ee8;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.calendar-cell.is-selected-end {
  box-shadow: inset 2px 0 0 #4f8ee8, inset -2px 0 0 #4f8ee8, inset 0 -2px 0 #4f8ee8;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.calendar-cell.is-selected-start.is-selected-end {
  box-shadow: inset 2px 0 0 #4f8ee8, inset -2px 0 0 #4f8ee8, inset 0 2px 0 #4f8ee8, inset 0 -2px 0 #4f8ee8;
}

.calendar-cell.is-selected-anchor {
  background: #deebff;
}

.slot-selected-event {
  display: inline-flex;
  align-items: center;
  position: absolute;
  top: 2px;
  bottom: 2px;
  left: 6px;
  right: 6px;
  border-radius: 6px;
  background: #eaf2ff;
  color: #2455a6;
  border: 1px solid #b9d2f8;
  font-size: 11px;
  font-weight: 600;
  padding: 0 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  z-index: 3;
  pointer-events: none;
}

.selected-slot-label {
  background: #fff7e8;
  color: #7f5817;
  border: 1px solid #f7ddb3;
  border-radius: 10px;
  padding: 10px 12px;
  font-weight: 700;
}

.required-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: #b42318;
  background: #fff1ef;
  border: 1px solid #ffccc7;
  border-radius: 999px;
  padding: 2px 8px;
}

.form-label-required {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.form-text-muted {
  display: block;
  margin-top: 6px;
  color: var(--text-sub);
  font-size: 12px;
}

.instagram-field-wrap {
  position: relative;
}

.instagram-field-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #667085;
  font-size: 16px;
  pointer-events: none;
}

.instagram-field-wrap .form-control {
  padding-left: 36px;
}

.reserve-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.option-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.option-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f7fafc;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 12px;
}

.booth-cards {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.booth-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}

.booth-card:hover {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 12%, transparent);
}

.booth-card.is-selected {
  border-color: var(--accent);
  background: #fff8f0;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 18%, transparent);
}

.booth-card-radio-indicator {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border-radius: 50%;
  border: 2px solid #adb5bd;
  background: #fff;
  transition: border-color 0.15s, background 0.15s;
  position: relative;
}

.booth-card-radio-indicator::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0;
  transition: opacity 0.15s;
}

.booth-card:hover .booth-card-radio-indicator {
  border-color: var(--accent);
}

.booth-card.is-selected .booth-card-radio-indicator {
  border-color: var(--accent);
}

.booth-card.is-selected .booth-card-radio-indicator::after {
  opacity: 1;
}

.booth-card-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.booth-card-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.booth-card-desc {
  font-size: 0.82rem;
  color: var(--text-muted, #888);
}

.confirm-button-wrap {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.confirm-page {
  max-width: 960px;
  margin: 0 auto;
}

.confirm-hero {
  background: var(--bg-panel);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  padding: 20px;
  border: 1px solid #eceff4;
}

.confirm-date-focus {
  background: linear-gradient(135deg, #fff7e8, #ffeccc);
  border: 1px solid #f8d59a;
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: var(--shadow-soft);
}

.confirm-date-focus-label {
  margin: 0 0 6px;
  color: #8a6130;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.confirm-date-focus-date {
  margin: 0;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  color: #2a2419;
}

.confirm-date-focus-time {
  margin: 4px 0 0;
  font-size: 24px;
  font-weight: 700;
  color: #6c4d1f;
}

.confirm-kicker {
  margin: 0 0 6px;
  letter-spacing: 0.14em;
  font-size: 11px;
  color: #8a6130;
  font-weight: 700;
}

.confirm-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.confirm-card {
  background: var(--bg-panel);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  border: 1px solid #eef1f5;
  padding: 18px;
}

.confirm-card-title {
  font-size: 17px;
  margin-bottom: 12px;
  font-weight: 700;
}

.confirm-list {
  margin: 0;
}

.confirm-list > div {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 8px;
  padding: 7px 0;
  border-bottom: 1px solid #f1f4f8;
}

.confirm-list > div:last-child {
  border-bottom: none;
}

.confirm-list dt {
  color: var(--text-sub);
  font-size: 13px;
}

.confirm-list dd {
  margin: 0;
  font-weight: 600;
}

.confirm-total {
  color: #9b5d00;
  font-size: 18px;
}

.confirm-option-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.confirm-option-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  border-radius: 10px;
  background: #f8fafc;
  border: 1px solid #ebeff4;
  margin-bottom: 8px;
}

.confirm-option-list li:last-child {
  margin-bottom: 0;
}

.confirm-option-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  border-radius: 10px;
  background: #f6f8fb;
  border: 1px solid #e7ebf1;
  font-weight: 700;
}

.confirm-option-summary--sub {
  font-size: 13px;
  color: #667085;
  font-weight: 600;
}

.confirm-option-summary--sub strong {
  font-size: 14px;
  color: #475467;
  font-weight: 700;
}

.confirm-option-summary--main {
  background: #fff2d9;
  border-color: #f6d39a;
}

.confirm-option-summary--main span {
  font-size: 16px;
  color: #7a4b08;
  font-weight: 700;
}

.confirm-option-summary--main strong {
  font-size: 30px;
  line-height: 1;
  color: #8f5600;
  font-weight: 900;
}

.confirm-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.confirm-submit-note {
  max-width: 100%;
}

.confirm-consent {
  background: #fff;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 12px;
}

.confirm-consent .form-check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.confirm-consent .form-check .form-check-input {
  margin: 3px 0 0 0;
  flex-shrink: 0;
  border: 2px solid #212529;
  width: 1.2em;
  height: 1.2em;
  float: none;
}

.confirm-consent .form-check-label {
  word-break: break-word;
}

.confirm-submit-actions {
  display: inline-flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  width: 100%;
}

.completion-url-wrap {
  display: flex;
  gap: 8px;
  align-items: center;
}

.completion-url-wrap .form-control {
  font-size: 14px;
}

.completion-url-wrap .btn {
  white-space: nowrap;
  flex-shrink: 0;
}

.modal-footer form {
  margin: 0;
}

.reservation-show-page .confirm-list > div,
.reservation-confirm-page .confirm-list > div {
  grid-template-columns: 108px 1fr;
  padding: 8px 0;
}

.reservation-show-page .confirm-list dt,
.reservation-confirm-page .confirm-list dt {
  font-size: 12px;
  font-weight: 600;
  color: #98a2b3;
  letter-spacing: 0.01em;
}

.reservation-show-page .confirm-list dd,
.reservation-confirm-page .confirm-list dd {
  font-weight: 400;
  color: #344054;
}

.reservation-show-page .confirm-total,
.reservation-confirm-page .confirm-total {
  font-size: 16px;
  font-weight: 600;
  color: #7a4b08;
}

.legal-notice-page .confirm-list dd {
  font-weight: 400;
  color: #344054;
}

.public-store-footer {
  text-align: center;
  padding: 8px 0 4px;
}

.public-policy-footer {
  margin-top: 28px;
  background: linear-gradient(180deg, rgba(247, 250, 255, 0.96), rgba(240, 246, 255, 0.98));
  border: 1px solid rgba(148, 163, 184, 0.32);
  border-radius: 12px;
}

.public-policy-footer-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.policy-link-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 8px;
}

.policy-link-group-label {
  color: #64748b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.public-policy-footer a {
  color: #334155;
  font-size: 11px;
  font-weight: 500;
  text-decoration: none;
  transition: all .18s ease;
}

.policy-link-sep {
  color: #94a3b8;
  font-size: 11px;
  line-height: 1;
  user-select: none;
}

.public-policy-footer a:hover {
  color: #0f172a;
  opacity: 0.82;
}

.privacy-policy-content h2 {
  font-size: 18px;
  margin: 0 0 10px;
}

.privacy-policy-content p {
  margin-bottom: 12px;
}

.privacy-policy-content ul {
  margin: 0 0 12px 18px;
}

.privacy-policy-content hr {
  margin: 16px 0;
  border-color: #e6eaf0;
}

@media (max-width: 768px) {
  .store-top-grid {
    grid-template-columns: 1fr;
  }

  .store-top-hero {
    padding: 18px 16px;
  }

  .store-top-card {
    padding: 14px;
  }

  .store-map-wrap iframe {
    height: 220px;
  }

  .public-policy-footer-inner {
    align-items: flex-start;
    justify-content: flex-start;
    gap: 5px;
  }

  .policy-link-group {
    justify-content: flex-start;
  }

  .reserve-title {
    font-size: 24px;
  }

  .mobile-day-tabs {
    display: flex;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .week-switch-buttons {
    justify-content: space-between;
  }

  .week-switch-buttons .btn {
    flex: 1;
  }

  .calendar-grid {
    min-width: 0;
    grid-template-columns: 52px 1fr;
  }

  .calendar-day-head,
  .calendar-cell {
    display: none;
  }

  .calendar-day-head.is-active,
  .calendar-cell.is-active {
    display: flex;
  }

  .calendar-day-head.is-active {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-align: center;
    white-space: nowrap;
    padding: 6px 8px;
  }

  .calendar-day-head.is-active strong,
  .calendar-day-head.is-active small {
    display: inline;
    margin: 0;
  }

  .calendar-time-label {
    min-height: var(--calendar-row-height, 34px);
    padding-top: 3px;
  }

  .calendar-cell {
    min-height: var(--calendar-row-height, 34px);
  }

  .slot-hit-area,
  .slot-booked {
    min-height: var(--calendar-row-height, 32px);
    font-size: 11px;
  }

  .reserve-form-grid {
    grid-template-columns: 1fr;
  }

  .confirm-grid {
    grid-template-columns: 1fr;
  }

  .confirm-actions {
    flex-direction: column-reverse;
  }

  .confirm-actions .btn {
    width: 100%;
  }

  .confirm-submit-actions {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .confirm-submit-actions .btn {
    width: auto;
  }

  .completion-url-wrap {
    flex-direction: column;
    align-items: stretch;
  }

  .reservation-show-page .confirm-list > div,
  .reservation-confirm-page .confirm-list > div {
    grid-template-columns: 88px 1fr;
  }

  .confirm-date-focus-date {
    font-size: 22px;
  }

  .confirm-date-focus-time {
    font-size: 20px;
  }
}
