:root {
  --ink: #172033;
  --navy: #08152f;
  --midnight: #040b1f;
  --purple: #6f45ff;
  --pink: #ff4bb8;
  --cyan: #00c2ff;
  --mint: #45d9a5;
  --yellow: #ffd84d;
  --orange: #ff8a3d;
  --surface: #ffffff;
  --soft: #f7f3ff;
  --line: #e4e0ee;
  --muted: #667085;
  --danger: #d92d20;
  --ok: #079455;
  --radius: 14px;
  font-family:
    "Pretendard", "Noto Sans KR", "Apple SD Gothic Neo", system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-size: 16px;
  line-height: 1.65;
  word-break: keep-all;
  overflow-wrap: break-word;
}

a {
  color: inherit;
  text-decoration: none;
}

.promo-banner {
  display: flex;
  justify-content: center;
  padding: 10px 16px;
  color: #fff;
  background: linear-gradient(90deg, var(--purple), var(--pink), var(--orange));
  font-size: 14px;
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  padding: 0 32px;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(228, 224, 238, 0.82);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-weight: 900;
}

.brand-mark {
  padding: 7px 10px;
  color: #fff;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  border-radius: 10px;
  font-size: 12px;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  gap: 22px;
  color: #344054;
  font-size: 15px;
  font-weight: 700;
}

.locale-control {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #344054;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.locale-control select {
  width: 150px;
  min-height: 38px;
  padding: 7px 34px 7px 12px;
  border: 1px solid rgba(137, 120, 170, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font: inherit;
}

.hero {
  position: relative;
  min-height: min(820px, calc(100vh - 68px));
  overflow: hidden;
  background: var(--midnight);
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.94;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 11, 31, 0.82), rgba(4, 11, 31, 0.35) 52%, rgba(4, 11, 31, 0.12)),
    linear-gradient(0deg, rgba(4, 11, 31, 0.82), transparent 45%);
}

.hero-overlay {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(1180px, calc(100% - 48px));
  min-height: min(820px, calc(100vh - 68px));
  margin: 0 auto;
  color: #fff;
}

.glow,
.spark {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.glow {
  width: 360px;
  height: 360px;
  border-radius: 999px;
  filter: blur(12px);
  opacity: 0.7;
}

.glow-pink {
  right: -90px;
  top: 120px;
  background: radial-gradient(circle, rgba(255, 75, 184, 0.34), transparent 68%);
}

.glow-blue {
  left: -110px;
  bottom: 80px;
  background: radial-gradient(circle, rgba(0, 194, 255, 0.28), transparent 68%);
}

.spark {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  box-shadow: rgba(0, 0, 0, 0.24) 0 18px 42px -20px;
}

.spark-one {
  right: 11vw;
  top: 160px;
  background: var(--yellow);
  transform: rotate(12deg);
}

.spark-two {
  left: 9vw;
  top: 230px;
  background: var(--pink);
  transform: rotate(-10deg);
}

.spark-three {
  right: 28vw;
  bottom: 155px;
  background: var(--cyan);
  transform: rotate(8deg);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--purple);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #bcdcff;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: clamp(46px, 6.6vw, 82px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 900;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
  line-height: 1.7;
}

.hero-actions,
.role-switcher {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button,
.role-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.button.primary,
.role-button.active {
  color: #fff;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  border-color: transparent;
  box-shadow: rgba(111, 69, 255, 0.35) 0 16px 36px -18px;
}

.button.secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(8px);
}

.button.disabled {
  opacity: 0.56;
  cursor: not-allowed;
}

.button.disabled:hover::after {
  content: attr(title);
  position: absolute;
  transform: translateY(46px);
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--ink);
  background: #fff;
  box-shadow: rgba(23, 32, 51, 0.18) 0 14px 36px -18px;
  font-size: 13px;
  white-space: nowrap;
}

.button.secondary.light {
  color: var(--ink);
  background: #fff;
}

.hero-status-card {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(760px, 100%);
  margin-top: 54px;
}

.hero-status-card a {
  display: block;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(16px);
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.hero-status-card a:hover,
.hero-status-card a:focus-visible {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.44);
  outline: 0;
}

.hero-status-card span {
  color: #bcdcff;
  font-size: 13px;
  font-weight: 900;
}

.hero-status-card strong {
  display: block;
  margin: 8px 0 4px;
  font-size: 24px;
}

.hero-status-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.status-band,
.content-section,
.admin-shell,
.login-shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 92px 0;
}

.status-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 30px;
  align-items: center;
}

.today-panel {
  display: grid;
  gap: 8px;
  padding: 30px;
  border-radius: 22px;
  background: linear-gradient(135deg, #fff6c7, #ffe0f2 50%, #dff8ff);
  box-shadow: rgba(23, 32, 51, 0.1) 0 24px 60px -30px;
}

.today-panel strong {
  color: var(--purple);
  font-size: 42px;
  font-weight: 900;
}

.today-weather {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}

.today-weather span {
  padding: 6px 10px;
  border: 1px solid rgba(111, 69, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.weather-icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: rgba(23, 32, 51, 0.12) 0 14px 30px -20px;
}

.weather-icon::before,
.weather-icon::after,
.weather-icon i {
  content: "";
  position: absolute;
  display: block;
}

.weather-icon-sun::before,
.weather-icon-hot::before {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff9b5 0 30%, #ffd84d 31% 100%);
  box-shadow: 0 0 18px rgba(255, 216, 77, 0.8);
  animation: sunPulse 2.2s ease-in-out infinite;
}

.weather-icon-sun::after,
.weather-icon-hot::after {
  width: 36px;
  height: 36px;
  border: 4px dotted rgba(255, 138, 61, 0.72);
  border-radius: 50%;
  animation: sunSpin 7s linear infinite;
}

.weather-icon-hot {
  background: linear-gradient(135deg, #fff1df, #ffe4f3);
}

.weather-icon-hot i:nth-child(1),
.weather-icon-hot i:nth-child(2) {
  bottom: 4px;
  width: 7px;
  height: 20px;
  border-radius: 999px;
  background: rgba(255, 75, 184, 0.5);
  animation: heatRise 1.4s ease-in-out infinite;
}

.weather-icon-hot i:nth-child(1) {
  left: 14px;
}

.weather-icon-hot i:nth-child(2) {
  right: 14px;
  animation-delay: 0.28s;
}

.weather-icon-rain::before {
  top: 13px;
  width: 30px;
  height: 18px;
  border-radius: 18px;
  background: #9ddcff;
  box-shadow: -10px 3px 0 -3px #c6efff, 11px 4px 0 -4px #7cc9f2;
  animation: cloudFloat 2.2s ease-in-out infinite;
}

.weather-icon-rain i {
  top: 32px;
  width: 4px;
  height: 13px;
  border-radius: 999px;
  background: var(--cyan);
  animation: rainDrop 0.9s linear infinite;
}

.weather-icon-rain i:nth-child(1) {
  left: 16px;
}

.weather-icon-rain i:nth-child(2) {
  left: 25px;
  animation-delay: 0.18s;
}

.weather-icon-rain i:nth-child(3) {
  left: 34px;
  animation-delay: 0.36s;
}

.weather-icon-wind {
  background: linear-gradient(135deg, #e7f7ff, #edf2ff);
}

.weather-icon-wind i {
  left: 9px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--purple));
  animation: windFlow 1.35s ease-in-out infinite;
}

.weather-icon-wind i:nth-child(1) {
  top: 15px;
  width: 30px;
}

.weather-icon-wind i:nth-child(2) {
  top: 25px;
  width: 38px;
  animation-delay: 0.15s;
}

.weather-icon-wind i:nth-child(3) {
  top: 35px;
  width: 24px;
  animation-delay: 0.3s;
}

.weather-icon-cloud::before,
.weather-icon-fog::before {
  width: 32px;
  height: 20px;
  border-radius: 18px;
  background: #cfd8e8;
  box-shadow: -10px 4px 0 -4px #e6ebf5, 10px 4px 0 -3px #b8c5d8;
  animation: cloudFloat 2.4s ease-in-out infinite;
}

.weather-icon-fog i {
  left: 9px;
  width: 34px;
  height: 3px;
  border-radius: 999px;
  background: rgba(102, 112, 133, 0.45);
  animation: fogSlide 1.8s ease-in-out infinite;
}

.weather-icon-fog i:nth-child(1) {
  bottom: 11px;
}

.weather-icon-fog i:nth-child(2) {
  bottom: 17px;
  animation-delay: 0.2s;
}

.weather-icon-fog i:nth-child(3) {
  bottom: 23px;
  animation-delay: 0.4s;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 30px;
}

.section-heading p,
.split p,
.info-card p,
.check-list,
.spec-list,
.today-panel span {
  color: var(--muted);
}

.detail-panel,
.notice-card,
.reservation-panel,
.data-table,
.spec-list {
  word-break: keep-all;
  overflow-wrap: break-word;
}

.flight-grid,
.info-grid,
.admin-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.flight-card,
.info-card,
.admin-panel,
.login-panel {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: rgba(23, 32, 51, 0.08) 0 18px 50px -30px;
}

.flight-card {
  min-height: 172px;
}

.flight-card:nth-child(6n + 1) {
  background: #fff1df;
}

.flight-card:nth-child(6n + 2) {
  background: #ffe4f3;
}

.flight-card:nth-child(6n + 3) {
  background: #ddf8eb;
}

.flight-card:nth-child(6n + 4) {
  background: #eee7ff;
}

.flight-card:nth-child(6n + 5) {
  background: #dff5ff;
}

.flight-card:nth-child(6n) {
  background: #fff7c7;
}

.flight-card strong {
  display: inline-flex;
  margin: 14px 0 10px;
  padding: 4px 10px;
  border-radius: 999px;
  color: #fff;
  background: var(--purple);
  font-size: 13px;
  font-weight: 900;
}

.flight-card[data-status="운행"] strong {
  background: var(--ok);
}

.flight-card[data-status="미운행"] strong {
  background: var(--danger);
}

.flight-card p {
  margin: 0;
  color: #526071;
  font-size: 14px;
}

.flight-weather {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 10px;
  align-items: center;
  margin-top: 14px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.62);
  color: #344054;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.flight-weather .weather-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
}

.flight-weather .weather-icon-sun::before,
.flight-weather .weather-icon-hot::before {
  width: 20px;
  height: 20px;
}

.flight-weather .weather-icon-sun::after,
.flight-weather .weather-icon-hot::after {
  width: 30px;
  height: 30px;
}

.text-link {
  color: var(--purple);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  align-items: start;
}

.split .video-panel {
  grid-column: 1 / -1;
}

.detail-panel,
.notice-card,
.reservation-panel {
  padding: 30px;
  border: 1px solid rgba(228, 224, 238, 0.9);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: rgba(23, 32, 51, 0.08) 0 20px 58px -34px;
}

.split .detail-panel,
.reservation-wide {
  grid-column: 1 / -1;
}

.detail-panel .section-heading,
.reservation-panel h3,
.notice-card h3 {
  margin-bottom: 18px;
}

.detail-panel h3,
.notice-card h3,
.reservation-panel h3 {
  font-size: 24px;
  line-height: 1.34;
}

.detail-panel .section-heading p {
  font-size: 18px;
  line-height: 1.72;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.data-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  font-size: 17px;
  line-height: 1.72;
}

.data-table th,
.data-table td {
  padding: 17px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.data-table tr:last-child th,
.data-table tr:last-child td {
  border-bottom: 0;
}

.data-table th {
  width: 210px;
  color: var(--ink);
  background: #f7f3ff;
  font-weight: 900;
}

.data-table thead th {
  background: linear-gradient(135deg, #eee7ff, #ffe4f3);
}

.compare-table th:first-child {
  width: 170px;
}

.notice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.notice-card {
  background: linear-gradient(135deg, rgba(255, 247, 199, 0.7), rgba(223, 245, 255, 0.72));
}

.reservation-panel {
  background: linear-gradient(135deg, rgba(255, 228, 243, 0.78), rgba(238, 231, 255, 0.82));
}

.notice-card ul,
.notice-card ol,
.reservation-panel ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 24px;
  color: #526071;
  font-size: 18px;
  line-height: 1.76;
}

.reservation-panel li,
.notice-card li {
  padding-left: 4px;
}

.video-panel {
  padding: 26px;
  border: 1px solid rgba(228, 224, 238, 0.9);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(111, 69, 255, 0.11), rgba(255, 75, 184, 0.1)),
    #ffffff;
  box-shadow: rgba(23, 32, 51, 0.1) 0 22px 60px -34px;
}

.video-panel .section-heading {
  margin-bottom: 18px;
}

.video-frame {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  background: var(--midnight);
  box-shadow: rgba(4, 11, 31, 0.22) 0 22px 48px -28px;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-embed {
  overflow: hidden;
  min-height: 360px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #eef2ff;
  box-shadow: rgba(23, 32, 51, 0.1) 0 22px 60px -34px;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

@keyframes sunSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes sunPulse {
  50% {
    transform: scale(1.08);
  }
}

@keyframes heatRise {
  0% {
    transform: translateY(8px) scaleY(0.7);
    opacity: 0;
  }
  45% {
    opacity: 0.85;
  }
  100% {
    transform: translateY(-24px) scaleY(1.15);
    opacity: 0;
  }
}

@keyframes rainDrop {
  0% {
    transform: translateY(-8px);
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    transform: translateY(12px);
    opacity: 0;
  }
}

@keyframes windFlow {
  0% {
    transform: translateX(-10px);
    opacity: 0;
  }
  45% {
    opacity: 1;
  }
  100% {
    transform: translateX(10px);
    opacity: 0;
  }
}

@keyframes cloudFloat {
  50% {
    transform: translateX(3px);
  }
}

@keyframes fogSlide {
  50% {
    transform: translateX(5px);
    opacity: 0.72;
  }
}

.spec-list {
  display: grid;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.spec-list div {
  display: grid;
  grid-template-columns: 170px 1fr;
  border-bottom: 1px solid var(--line);
}

.spec-list div:last-child {
  border-bottom: 0;
}

.spec-list dt,
.spec-list dd {
  margin: 0;
  padding: 18px 20px;
  font-size: 18px;
  line-height: 1.65;
}

.spec-list dt {
  background: #f5f0ff;
  font-weight: 900;
}

.check-list {
  margin: 0;
  padding: 28px 28px 28px 48px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #fff7c7, #ffe4f3);
}

.tint-peach {
  background: #fff1df;
}

.tint-mint {
  background: #ddf8eb;
}

.tint-lavender {
  background: #eee7ff;
}

.tint-sky {
  background: #dff5ff;
}

.login-shell {
  min-height: calc(100vh - 68px);
  display: grid;
  place-items: center;
}

.login-panel {
  width: min(460px, 100%);
}

.admin-page {
  background:
    radial-gradient(circle at 10% 10%, rgba(111, 69, 255, 0.13), transparent 28%),
    radial-gradient(circle at 90% 14%, rgba(255, 75, 184, 0.12), transparent 26%),
    #fbfaff;
}

.admin-shell {
  width: min(1180px, calc(100% - 48px));
}

.admin-session {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}

.role-switcher {
  margin-bottom: 16px;
}

.role-button {
  min-height: 38px;
  border-radius: 999px;
  color: var(--muted);
}

.admin-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-panel label,
.login-panel label {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  padding: 12px 14px;
  color: var(--ink);
  border: 1px solid #c9c3da;
  border-radius: 10px;
  background: #fff;
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(111, 69, 255, 0.22);
  border-color: var(--purple);
}

textarea {
  resize: vertical;
}

.audit-list,
.subadmin-list {
  color: var(--muted);
  font-size: 14px;
}

.subadmin-list {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.subadmin-list div {
  padding: 10px 12px;
  border-radius: 10px;
  background: #f7f3ff;
}

.form-message {
  min-height: 22px;
  margin: 10px 0 0;
  color: var(--danger);
  font-size: 14px;
  font-weight: 800;
}

.hidden {
  display: none !important;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 36px 32px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 14px;
}

@media (max-width: 920px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    flex-wrap: wrap;
    gap: 12px 18px;
  }

  .locale-control {
    width: 100%;
  }

  .locale-control select {
    width: min(100%, 240px);
  }

  .data-table {
    min-width: 720px;
  }

  .status-band,
  .split,
  .notice-grid,
  .admin-grid {
    grid-template-columns: 1fr;
  }

  .flight-grid,
  .info-grid,
  .hero-status-card {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 16px 20px;
  }

  .hero-overlay,
  .status-band,
  .content-section,
  .admin-shell,
  .login-shell {
    width: 100%;
    padding-inline: 20px;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 32px;
  }

  .flight-grid,
  .info-grid,
  .weather-weekly,
  .hero-status-card {
    grid-template-columns: 1fr;
  }

  .spark {
    display: none;
  }

  .detail-panel,
  .notice-card,
  .reservation-panel {
    padding: 22px;
  }

  .data-table {
    min-width: 640px;
    font-size: 16px;
  }

  .data-table th,
  .data-table td {
    padding: 15px 16px;
  }

  .notice-card ul,
  .notice-card ol,
  .reservation-panel ol,
  .spec-list dt,
  .spec-list dd,
  .detail-panel .section-heading p {
    font-size: 16px;
  }
}
