:root {
  --color-primary: #1d4fd7;
  --color-primary-dark: #18398f;
  --color-text: #20253d;
  --color-muted: #6d758c;
  --color-border: #e2e9f5;
  --color-surface: #ffffff;
  --color-surface-soft: #f5f9ff;
  --color-shadow: 0 18px 42px rgba(36, 74, 146, 0.12);
  --radius-lg: 28px;
  --radius-md: 20px;
  --container: 1320px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Pretendard", "Noto Sans KR", "Malgun Gothic", sans-serif;
  color: var(--color-text);
  background: #fff;
}

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

img {
  display: block;
  max-width: 100%;
}

button {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(23, 39, 79, 0.06);
}

.topbar {
  border-bottom: 1px solid rgba(23, 39, 79, 0.06);
}

.utility-nav {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  padding: 14px 0;
  font-size: 0.78rem;
  color: var(--color-muted);
}

.utility-nav a {
  position: relative;
}

.utility-nav a:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -10px;
  width: 1px;
  height: 12px;
  background: rgba(109, 117, 140, 0.4);
  transform: translateY(-50%);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 88px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand img {
  width: 80px;
  height: auto;
}

.brand-text {
  display: grid;
  gap: 0;
}

.brand-text span {
  color: var(--color-muted);
  font-size: 0.86rem;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 120px;
  margin-right: 40px;
  font-size: 1.02rem;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(29, 79, 215, 0.18);
  border-radius: 12px;
  background: #fff;
  color: var(--color-primary);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.menu-toggle span + span {
  margin-top: 5px;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.main-nav a {
  padding: 8px 0;
  transition: color 0.2s ease;
}

.dropdown-nav {
  align-items: center;
}

.dropdown-nav .nav-item {
  position: relative;
}

.dropdown-nav .nav-link {
  display: block;
  position: relative;
}

.dropdown-nav .nav-item.is-current .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -20px;
  height: 4px;
  background: var(--color-primary);
}

.dropdown-menu {
  position: absolute;
  left: 50%;
  top: calc(100% + 18px);
  z-index: 50;
  display: grid;
  gap: 12px;
  min-width: 140px;
  padding: 18px 20px;
  border: 1px solid rgba(27, 36, 70, 0.08);
  border-radius: 0 0 14px 14px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 16px 28px rgba(36, 74, 146, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.dropdown-menu a {
  padding: 0;
  color: #40465b;
  font-size: 0.92rem;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
}

.dropdown-nav .nav-item:hover .dropdown-menu,
.dropdown-nav .nav-item:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.main-nav a:hover,
.main-nav a:focus-visible,
.utility-nav a:hover,
.utility-nav a:focus-visible {
  color: var(--color-primary);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 12px 0 96px;
  background: #fff;
}

.hero-deco {
  display: none;
}

.hero-deco-left {
  inset: 110px auto auto -140px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(84, 194, 255, 0.22), transparent 72%);
}

.hero-deco-right {
  inset: 58px -90px auto auto;
  width: 380px;
  height: 380px;
  background:
    radial-gradient(circle at 30% 40%, rgba(255, 190, 215, 0.45) 0 10px, transparent 12px),
    radial-gradient(circle at 46% 28%, rgba(255, 208, 223, 0.42) 0 11px, transparent 13px),
    radial-gradient(circle at 58% 40%, rgba(255, 191, 214, 0.45) 0 10px, transparent 12px),
    radial-gradient(circle at 73% 30%, rgba(255, 215, 226, 0.38) 0 9px, transparent 11px),
    linear-gradient(135deg, rgba(255, 255, 255, 0), rgba(255, 218, 229, 0.2));
}

.hero-shell {
  position: relative;
  width: 100%;
  min-height: 420px;
  height: 420px;
  border: 1px solid rgba(27, 36, 70, 0.1);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 16px 32px rgba(36, 74, 146, 0.06);
}

.hero-slider {
  position: absolute;
  inset: 0;
  min-height: 420px;
  height: 420px;
  overflow: hidden;
  background: #fff;
  isolation: isolate;
}

.hero-slider::before {
  content: none;
}

.hero-slide,
.hero-fade {
  position: absolute;
  inset: 0;
}

.hero-slide {
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center top;
  opacity: 0;
  transform: none;
  transition: opacity 0.75s ease, transform 6s ease;
  filter: none;
}

.hero-slide.is-active {
  opacity: 1;
  transform: none;
}

.hero-fade {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.22) 48%, rgba(255, 255, 255, 0.08) 64%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  display: block;
  min-height: 420px;
  height: 420px;
  padding: 22px 36px 40px;
}

.hero-side {
  position: absolute;
  right: 100px;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  gap: 14px;
  width: min(100%, 330px);
}

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
  z-index: 3;
}

.dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(29, 79, 215, 0.2);
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.dot.is-active {
  background: var(--color-primary);
  transform: scale(1.08);
}

.hero-copy {
  position: absolute;
  top: 50%;
  left: calc(50% + 100px);
  transform: translate(-50%, -50%);
  display: grid;
  gap: 10px;
  width: min(100%, 360px);
  padding: 0;
  justify-items: center;
  text-align: center;
}

.hero-kicker {
  margin: 0;
  color: var(--color-primary);
  font-size: clamp(1rem, 1.2vw, 1.34rem);
  letter-spacing: -0.04em;
}

.hero-copy h1 {
  margin: 0;
  color: var(--color-text);
  font-size: clamp(2.35rem, 3vw, 3.5rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.hero-copy h1 span {
  color: var(--color-primary);
}

.hero-description {
  margin: 0;
  color: #303753;
  font-size: 0.86rem;
  line-height: 1.4;
  white-space: normal;
  word-break: keep-all;
}

.hero-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-width: 0;
  padding: 12px 16px;
  border: 1px solid rgba(29, 79, 215, 0.36);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 22px rgba(40, 79, 159, 0.05);
}

.hero-call-number {
  color: var(--color-primary);
  font-size: clamp(0.96rem, 1.15vw, 1.24rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.notice-panel {
  width: 100%;
  padding: 18px 16px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 36px rgba(36, 74, 146, 0.08);
  backdrop-filter: blur(4px);
}

.notice-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}

.notice-head h2 {
  margin: 0;
  font-size: 1.04rem;
  letter-spacing: -0.04em;
}

.notice-head a {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 0.72rem;
}

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

.notice-list li + li {
  border-top: 1px solid rgba(29, 79, 215, 0.1);
}

.notice-list a {
  display: grid;
  gap: 8px;
  padding: 12px 0;
}

.notice-list span {
  color: #4e566f;
  font-size: 0.75rem;
  line-height: 1.45;
}

.notice-list time {
  justify-self: end;
  color: #8590aa;
  font-weight: 600;
  font-size: 0.72rem;
}

.services {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  margin-top: -82px;
  margin-bottom: 10px;
  border-radius: 30px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 20px 44px rgba(36, 74, 146, 0.08);
  backdrop-filter: blur(10px);
}

.service-card {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 6px;
  padding: 12px 12px 10px;
  min-height: 142px;
  text-align: center;
  border-right: 1px solid rgba(29, 79, 215, 0.1);
}

.service-card:last-child {
  border-right: 0;
}

.service-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 60px;
  margin-bottom: 4px;
  overflow: hidden;
}

.service-card strong,
.quick-item strong {
  font-size: 1.08rem;
  letter-spacing: -0.05em;
}

.service-card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.74rem;
  line-height: 1.28;
  word-break: keep-all;
}

.quick-section {
  padding: 28px 0 48px;
}

.quick-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
  gap: 18px;
  align-items: stretch;
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-radius: 26px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 38px rgba(36, 74, 146, 0.08);
}

.quick-item {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 6px;
  padding: 12px 10px;
  min-height: 114px;
  text-align: center;
  border-right: 1px solid rgba(29, 79, 215, 0.1);
}

.quick-item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 56px;
  margin-bottom: 2px;
  overflow: hidden;
}

.quick-item:last-child {
  border-right: 0;
}

.quick-item span:last-child {
  color: var(--color-muted);
  font-size: 0.72rem;
  line-height: 1.25;
}

.quick-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 18px;
  min-height: 120px;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(26, 86, 221, 0.96), rgba(23, 69, 175, 0.96));
  color: #fff;
  box-shadow: 0 20px 34px rgba(23, 69, 175, 0.28);
}

.quick-call-number {
  font-size: clamp(1.1rem, 1.55vw, 1.62rem);
  line-height: 1;
  letter-spacing: -0.04em;
  white-space: nowrap;
  font-weight: 800;
}

.site-footer {
  padding: 34px 0 72px;
  background: rgba(255, 255, 255, 0.72);
  border-top: 1px solid rgba(29, 79, 215, 0.08);
  backdrop-filter: blur(8px);
}

.footer-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px 28px;
}

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

.footer-brand img {
  width: 60px;
}

.footer-brand strong {
  font-size: 1.7rem;
  letter-spacing: -0.05em;
}

.footer-info {
  color: #5c6580;
}

.footer-info p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.75;
}

.divider {
  margin: 0 8px;
  color: rgba(92, 101, 128, 0.35);
}

.copyright {
  grid-column: 2 / 3;
  margin: 0;
  color: #79819a;
  font-size: 0.85rem;
}

.scroll-top {
  position: fixed;
  right: 28px;
  bottom: 24px;
  z-index: 10;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(29, 79, 215, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 24px rgba(33, 66, 128, 0.14);
  color: var(--color-primary-dark);
  font-size: 1.35rem;
}

.sub-nav-section {
  border-top: 1px solid rgba(27, 36, 70, 0.08);
  border-bottom: 1px solid rgba(27, 36, 70, 0.08);
  background: #fff;
}

.sub-nav-shell {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.sub-nav-group {
  padding: 0 16px 26px;
}

.sub-nav-group.is-active {
  position: relative;
}

.sub-nav-group.is-active::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: var(--color-primary);
}

.sub-nav-title {
  display: block;
  padding: 22px 0 28px;
  font-size: 1.05rem;
  font-weight: 800;
  text-align: center;
  white-space: nowrap;
}

.sub-nav-links {
  display: grid;
  gap: 14px;
  justify-items: center;
}

.sub-nav-links a {
  color: #40465b;
  font-size: 0.95rem;
}

.sub-hero {
  padding: 0;
  background: #fff;
}

.sub-hero-shell {
  width: 100%;
  min-height: 130px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.08)),
    url("../images/sbg.png") center center / cover no-repeat;
}

.sub-hero-copy {
  display: grid;
  gap: 6px;
  justify-items: center;
  text-align: center;
  padding: 18px;
}

.sub-hero-kicker {
  margin: 0;
  color: #1d4fd7;
  font-size: 0.92rem;
  font-weight: 700;
  animation: sub-hero-color 3s ease-in-out infinite alternate;
}

.sub-hero-copy h1 {
  margin: 0;
  color: #243152;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.06em;
  animation: sub-hero-color 3s ease-in-out infinite alternate;
}

.sub-hero-copy p:last-child {
  margin: 0;
  color: #39415d;
  font-size: 0.8rem;
  line-height: 1.35;
}

.subpage-content {
  padding: 44px 0 80px;
  background: #fff;
}

.subpage-content-shell {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 42px;
  border: 1px solid rgba(27, 36, 70, 0.08);
  border-radius: 24px;
  padding: 34px;
  background: #fff;
  box-shadow: 0 16px 30px rgba(36, 74, 146, 0.05);
}

.left-submenu {
  align-self: start;
  overflow: hidden;
  border: 1px solid rgba(29, 79, 215, 0.12);
  border-radius: 22px;
  background: linear-gradient(180deg, #fff 0%, #f7fbff 100%);
  box-shadow: 0 14px 28px rgba(36, 74, 146, 0.08);
}

.left-submenu h2 {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 22px 22px 20px;
  color: #fff;
  font-size: 1.3rem;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, #1d4fd7, #173b97);
}

.left-submenu h2 small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.left-submenu nav {
  display: grid;
  gap: 0;
  padding: 10px;
}

.left-submenu a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 0 16px 0 18px;
  border-radius: 12px;
  color: #46506b;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(29, 79, 215, 0.08);
  transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.left-submenu a:last-child {
  border-bottom: 0;
}

.left-submenu a::after {
  content: ">";
  color: rgba(29, 79, 215, 0.5);
  font-size: 0.88rem;
  font-weight: 800;
  transform: translateX(-2px);
  transition: transform 0.18s ease, color 0.18s ease;
}

.left-submenu a:hover,
.left-submenu a:focus-visible,
.left-submenu a.is-active {
  background: #eef5ff;
  color: var(--color-primary);
  font-weight: 700;
}

.left-submenu a:hover::after,
.left-submenu a:focus-visible::after,
.left-submenu a.is-active::after {
  color: var(--color-primary);
  transform: translateX(2px);
}

.content-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 2px solid #edf2fb;
}

.content-title p {
  margin: 0;
  color: var(--color-primary);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.subpage-main h2 {
  margin: 0;
  font-size: 1.9rem;
  letter-spacing: -0.04em;
}

.subpage-main p {
  margin: 0;
  color: #616983;
  line-height: 1.7;
}

.greeting-card {
  position: relative;
  padding: 22px 4px 0;
}

.greeting-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 54px;
  height: 4px;
  border-radius: 999px;
  background: var(--color-primary);
}

.greeting-card p {
  color: #555e75;
  font-size: 1rem;
  line-height: 1.9;
  letter-spacing: -0.035em;
}

.greeting-card p + p {
  margin-top: 14px;
}

.greeting-promise {
  display: grid;
  gap: 10px;
  margin: 34px 0;
  padding: 0;
  list-style: none;
}

.greeting-promise li {
  position: relative;
  padding-left: 18px;
  color: #2e78f0;
  font-size: 1.04rem;
  font-weight: 800;
  line-height: 1.55;
  letter-spacing: -0.04em;
}

.greeting-promise li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2e78f0;
}

.greeting-sign {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 16px;
  margin-top: 34px;
  color: #3e465d;
}

.greeting-sign span {
  font-size: 0.98rem;
  font-weight: 700;
}

.greeting-sign strong {
  color: #161c31;
  font-size: 1.55rem;
  letter-spacing: 0.14em;
}

.rates-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
  padding: 18px 22px;
  border: 1px solid rgba(29, 79, 215, 0.12);
  border-radius: 18px;
  background: linear-gradient(135deg, #f7fbff 0%, #fff 72%);
}

.rates-intro strong {
  color: #1d2a4f;
  font-size: 1.04rem;
  letter-spacing: -0.04em;
}

.rates-intro span {
  color: #66708a;
  font-size: 0.9rem;
  line-height: 1.5;
}

.rate-table-wrap {
  overflow-x: hidden;
  border: 1px solid #d7dfed;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 34px rgba(36, 74, 146, 0.07);
}

.rate-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  color: #263049;
  font-size: 0.84rem;
  line-height: 1.45;
}

.rate-table caption {
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute;
  clip: rect(0, 0, 0, 0);
}

.rate-table col.col-category {
  width: 14%;
}

.rate-table col.col-name {
  width: 17%;
}

.rate-table col.col-capacity {
  width: 10%;
}

.rate-table col.col-unit {
  width: 15%;
}

.rate-table col.col-price {
  width: 12%;
}

.rate-table col.col-note {
  width: 32%;
}

.rate-table th,
.rate-table td {
  padding: 9px 8px;
  border-right: 1px solid #cfd7e5;
  border-bottom: 1px solid #cfd7e5;
  text-align: center;
  vertical-align: middle;
  overflow-wrap: anywhere;
  word-break: keep-all;
}

.rate-table thead th {
  padding: 13px 12px;
  color: #111827;
  font-weight: 800;
  background: #f3f5f8;
}

.rate-table tbody td:nth-child(2),
.rate-table tbody tr td:first-child {
  text-align: left;
}

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

.rate-table th:last-child,
.rate-table td:last-child {
  border-right: 0;
}

.rate-table .category-cell {
  color: #111827;
  font-weight: 800;
  background: #fbfcff;
}

.rate-table .price {
  color: #0046e8;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.rate-table .note-blue {
  color: #0064ff;
  text-align: left;
  font-weight: 700;
}

.rate-table small {
  margin-left: 2px;
  color: #4f5a72;
  font-size: 0.75rem;
}

.location-card {
  overflow: hidden;
  border: 1px solid #d7dfed;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 34px rgba(36, 74, 146, 0.07);
}

.map-frame {
  position: relative;
  overflow: hidden;
  height: 520px;
  background:
    linear-gradient(135deg, rgba(230, 242, 235, 0.9), rgba(248, 251, 255, 0.96)),
    repeating-linear-gradient(12deg, rgba(116, 157, 123, 0.14) 0 1px, transparent 1px 12px);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.88) contrast(0.98);
}

.map-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding: 16px 18px;
  border-top: 1px solid #e5ebf5;
  background: #f8fbff;
}

.map-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 138px;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  box-shadow: 0 10px 20px rgba(29, 79, 215, 0.18);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.map-button:hover,
.map-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(29, 79, 215, 0.22);
}

.map-button.kakao {
  background: linear-gradient(135deg, #f5c400, #e6a900);
  color: #2b2500;
}

.map-button.google {
  background: linear-gradient(135deg, #1d4fd7, #173b97);
}

.location-info {
  display: grid;
  border-top: 1px solid #d7dfed;
}

.location-row {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  min-height: 58px;
  border-bottom: 1px solid #d7dfed;
}

.location-row:last-child {
  border-bottom: 0;
}

.location-row strong {
  display: flex;
  align-items: center;
  padding: 0 24px;
  color: #1d2a4f;
  font-size: 0.98rem;
  font-weight: 900;
  background: #f5f7fb;
}

.location-row p {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 13px 22px;
  color: #5a6379;
  font-size: 0.96rem;
  line-height: 1.55;
  word-break: keep-all;
}

.rules-table {
  overflow: hidden;
  border: 1px solid #d7dfed;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 34px rgba(36, 74, 146, 0.07);
}

.rules-row {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  border-bottom: 1px solid #d7dfed;
}

.rules-row:last-child {
  border-bottom: 0;
}

.rules-row > h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 28px 20px;
  color: #1d2a4f;
  font-size: 1rem;
  font-weight: 900;
  text-align: center;
  background: #f1f3f7;
  border-right: 1px solid #d7dfed;
}

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

.rules-grid .rule-block {
  min-height: 150px;
  border-right: 1px solid #e0e6f0;
  border-bottom: 1px solid #e0e6f0;
}

.rules-grid .rule-block:nth-child(2n) {
  border-right: 0;
}

.rules-grid .rule-block:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.rules-stack {
  display: grid;
  gap: 0;
}

.rules-stack .rule-block {
  border-bottom: 1px solid #e0e6f0;
}

.rules-stack .rule-block:last-child {
  border-bottom: 0;
}

.rule-block {
  padding: 22px 24px;
}

.rule-block h4 {
  margin: 0 0 8px;
  color: #202a45;
  font-size: 1.02rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.rule-block ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rule-block li {
  position: relative;
  padding-left: 16px;
  color: #596278;
  font-size: 0.93rem;
  line-height: 1.55;
  letter-spacing: -0.035em;
  word-break: keep-all;
}

.rule-block li::before {
  content: "-";
  position: absolute;
  left: 0;
  top: 0;
  color: #7d879b;
  font-weight: 800;
}

.water-intro {
  display: grid;
  gap: 6px;
  margin-bottom: 26px;
  padding: 20px 24px;
  border: 1px solid rgba(29, 79, 215, 0.12);
  border-radius: 20px;
  background: linear-gradient(135deg, #eef8ff 0%, #fff 76%);
}

.water-intro strong {
  color: #1d2a4f;
  font-size: 1.08rem;
  letter-spacing: -0.04em;
}

.water-intro span {
  color: #66708a;
  font-size: 0.92rem;
  line-height: 1.55;
}

.water-main-image {
  overflow: hidden;
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(29, 79, 215, 0.1);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 36px rgba(36, 74, 146, 0.08);
}

.water-main-image img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  object-fit: contain;
}

.pension-intro {
  display: grid;
  gap: 6px;
  margin-bottom: 26px;
  padding: 20px 24px;
  border: 1px solid rgba(29, 79, 215, 0.12);
  border-radius: 20px;
  background: linear-gradient(135deg, #f4fbf6 0%, #fff 76%);
}

.pension-intro strong {
  color: #1d2a4f;
  font-size: 1.08rem;
  letter-spacing: -0.04em;
}

.pension-intro span {
  color: #66708a;
  font-size: 0.92rem;
  line-height: 1.55;
}

.pension-main-image {
  overflow: hidden;
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(29, 79, 215, 0.1);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 36px rgba(36, 74, 146, 0.08);
}

.pension-main-image img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  object-fit: contain;
}

.camping-intro {
  display: grid;
  gap: 6px;
  margin-bottom: 26px;
  padding: 20px 24px;
  border: 1px solid rgba(29, 79, 215, 0.12);
  border-radius: 20px;
  background: linear-gradient(135deg, #f8fbef 0%, #fff 76%);
}

.camping-intro strong {
  color: #1d2a4f;
  font-size: 1.08rem;
  letter-spacing: -0.04em;
}

.camping-intro span {
  color: #66708a;
  font-size: 0.92rem;
  line-height: 1.55;
}

.camping-main-image {
  overflow: hidden;
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(29, 79, 215, 0.1);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 36px rgba(36, 74, 146, 0.08);
}

.camping-main-image img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  object-fit: contain;
}

.restaurant-intro {
  display: grid;
  gap: 6px;
  margin-bottom: 26px;
  padding: 20px 24px;
  border: 1px solid rgba(29, 79, 215, 0.12);
  border-radius: 20px;
  background: linear-gradient(135deg, #fff8ef 0%, #fff 76%);
}

.restaurant-intro strong {
  color: #1d2a4f;
  font-size: 1.08rem;
  letter-spacing: -0.04em;
}

.restaurant-intro span {
  color: #66708a;
  font-size: 0.92rem;
  line-height: 1.55;
}

.restaurant-main-image {
  overflow: hidden;
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(29, 79, 215, 0.1);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 36px rgba(36, 74, 146, 0.08);
}

.restaurant-main-image img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  object-fit: contain;
}

.board-card,
.gallery-board {
  overflow: hidden;
  border: 1px solid #d7dfed;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 34px rgba(36, 74, 146, 0.07);
}

.board-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-bottom: 1px solid #e2e9f5;
  background: linear-gradient(135deg, #f7fbff 0%, #fff 76%);
}

.board-toolbar p {
  margin: 0;
  color: #5e687d;
  font-size: 0.92rem;
  line-height: 1.55;
}

.board-search {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.board-search input {
  width: 190px;
  height: 38px;
  padding: 0 12px;
  border: 1px solid #cfdaeb;
  border-radius: 999px;
  color: #263049;
  font: inherit;
  font-size: 0.88rem;
}

.board-search button,
.board-write {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 74px;
  min-height: 38px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 800;
  background: linear-gradient(135deg, #1d4fd7, #173b97);
  cursor: pointer;
}

.board-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  color: #263049;
  font-size: 0.9rem;
}

.board-table caption {
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute;
  clip: rect(0, 0, 0, 0);
}

.board-table th,
.board-table td {
  padding: 14px 12px;
  border-bottom: 1px solid #e2e9f5;
  text-align: center;
  vertical-align: middle;
}

.board-table thead th {
  color: #1d2a4f;
  font-weight: 900;
  background: #f3f6fb;
}

.board-table th:first-child,
.board-table td:first-child {
  width: 76px;
}

.board-table th:nth-child(2),
.board-table td:nth-child(2) {
  width: auto;
  text-align: left;
}

.board-table th:nth-child(n + 3),
.board-table td:nth-child(n + 3) {
  width: 112px;
}

.board-table tbody tr:hover {
  background: #f8fbff;
}

.board-table a {
  color: #252d46;
  font-weight: 700;
}

.board-table a:hover,
.board-table a:focus-visible {
  color: var(--color-primary);
}

.board-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 70px;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.board-badge.done {
  color: #0f53c6;
  background: #eaf2ff;
}

.board-badge.wait {
  color: #916100;
  background: #fff4d6;
}

.board-pager {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 18px;
}

.board-pager a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  padding: 0 10px;
  border: 1px solid #d8e1ef;
  border-radius: 999px;
  color: #596278;
  font-size: 0.86rem;
  font-weight: 800;
}

.board-pager a.is-active,
.board-pager a:hover,
.board-pager a:focus-visible {
  color: #fff;
  border-color: var(--color-primary);
  background: var(--color-primary);
}

.gallery-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  padding: 18px;
}

.gallery-item {
  display: grid;
  gap: 10px;
  padding: 14px;
  border-radius: 18px;
  transition: background-color 0.18s ease, transform 0.18s ease;
}

.gallery-item:hover,
.gallery-item:focus-visible {
  background: #f7fbff;
  transform: translateY(-2px);
}

.gallery-item span {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  background: #eef5ff;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item strong {
  color: #252d46;
  font-size: 1rem;
  letter-spacing: -0.04em;
}

.gallery-item em {
  color: #7b8498;
  font-style: normal;
  font-size: 0.82rem;
}

/* ── 게시판 작성/수정 폼 ── */
.bd-form {
  display: grid;
  gap: 1.1rem;
  padding: 1.5rem;
}

.bd-form-row {
  display: grid;
  gap: .4rem;
}

.bd-form-label {
  font-size: .85rem;
  font-weight: 600;
  color: #3a4462;
}

.bd-form-input,
.bd-form-textarea,
.bd-form-select {
  width: 100%;
  padding: .65rem .9rem;
  border: 1px solid #d6dff0;
  border-radius: 8px;
  font-size: .95rem;
  font-family: inherit;
  color: #252d46;
  background: #fff;
  box-sizing: border-box;
  transition: border-color .15s ease, box-shadow .15s ease;
}

.bd-form-input:focus,
.bd-form-textarea:focus,
.bd-form-select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(29, 79, 215, .12);
}

.bd-form-textarea {
  resize: vertical;
  line-height: 1.7;
}

.bd-form-file {
  font-size: .9rem;
  color: #5e687d;
}

.bd-form-hint {
  font-size: .8rem;
  color: #9aa0b3;
}

.bd-form-preview {
  max-width: 280px;
  max-height: 200px;
  border-radius: 10px;
  border: 1px solid #e2e9f5;
  display: block;
  margin-bottom: .4rem;
}

.bd-form-original {
  background: #f4f7fc;
  border-radius: 10px;
  padding: 1.1rem 1.3rem;
  margin-bottom: .2rem;
}

.bd-form-original h3 {
  font-size: .95rem;
  color: #1d2a4f;
  margin-bottom: .35rem;
}

.bd-form-original .bd-meta {
  font-size: .8rem;
  color: #9aa0b3;
  margin-bottom: .7rem;
}

.bd-form-original .bd-body {
  font-size: .9rem;
  color: #444;
  white-space: pre-wrap;
  line-height: 1.75;
}

.bd-form-actions {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-top: .3rem;
}

.bd-btn-submit {
  display: inline-flex;
  align-items: center;
  padding: .65rem 1.6rem;
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background .18s ease;
}

.bd-btn-submit:hover {
  background: var(--color-primary-dark);
  color: #fff;
}

.bd-btn-cancel {
  display: inline-flex;
  align-items: center;
  padding: .65rem 1.2rem;
  background: #8a94a8;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background .18s ease;
}

.bd-btn-cancel:hover {
  background: #6e7a90;
  color: #fff;
}

.board-empty {
  text-align: center;
  padding: 2.5rem 1rem;
  color: #9aa0b3;
  font-size: .92rem;
}

/* ── 게시글 상세 보기 ── */
.bd-view-head {
  border-bottom: 2px solid #e2e9f5;
  padding-bottom: 1rem;
  margin-bottom: 1.2rem;
}

.bd-view-title {
  font-size: 1.15rem;
  color: #1d2a4f;
  font-weight: 700;
  margin-bottom: .4rem;
}

.bd-view-meta {
  font-size: .82rem;
  color: #9aa0b3;
}

.bd-view-body {
  font-size: .92rem;
  line-height: 1.85;
  color: #333;
  white-space: pre-wrap;
  min-height: 80px;
  padding: .5rem 0;
}

/* ── 댓글 영역 ── */
.bd-comment-section {
  margin-top: 2rem;
  border-top: 2px solid #e2e9f5;
  padding-top: 1rem;
}

.bd-comment-title {
  font-size: .95rem;
  color: #1d2a4f;
  font-weight: 700;
  margin-bottom: .8rem;
}

.bd-comment-item {
  padding: .9rem 0;
  border-bottom: 1px solid #f0f3f9;
}

.bd-comment-meta {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: .4rem;
  font-size: .82rem;
  color: #9aa0b3;
}

.bd-comment-meta strong {
  color: #1d2a4f;
  font-size: .88rem;
}

.bd-comment-actions {
  margin-left: auto;
  display: flex;
  gap: .3rem;
}

.bd-comment-body {
  font-size: .9rem;
  color: #444;
  line-height: 1.7;
  white-space: pre-wrap;
}

.bd-comment-edit-form {
  margin-top: .6rem;
}

.bd-comment-pw-row {
  display: flex;
  gap: .5rem;
  margin-top: .4rem;
  align-items: center;
  flex-wrap: wrap;
}

.bd-comment-pw-row .bd-form-input {
  max-width: 180px;
}

/* ── 댓글 작성 폼 ── */
.bd-comment-write {
  margin-top: 1.5rem;
  background: #f4f7fc;
  border-radius: 10px;
  padding: 1rem 1.2rem;
}

.bd-comment-form {
  display: grid;
  gap: .6rem;
}

.bd-comment-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem;
}

/* ── 게시글 상세 액션 버튼 (목록/수정/삭제) ── */
.bd-detail-actions {
  display: flex;
  align-items: center;
  gap: .4rem;
  justify-content: flex-end;
  margin: .8rem 0 1.2rem;
}

.bd-detail-btn {
  display: inline-flex;
  align-items: center;
  padding: .32rem .85rem;
  border: 1px solid #c8d3e8;
  border-radius: 6px;
  background: #f4f7fc;
  color: #3a4462;
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background .15s ease, border-color .15s ease;
}

.bd-detail-btn:hover {
  background: #e8edf7;
  border-color: #b0bcd8;
  color: #1d2a4f;
}

.bd-detail-btn-del {
  border-color: #f5c6c0;
  background: #fef4f3;
  color: #c0392b;
}

.bd-detail-btn-del:hover {
  background: #fde8e5;
  border-color: #e74c3c;
  color: #c0392b;
}

/* ── 리스트 댓글 수 뱃지 ── */
.badge-comment {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 17px;
  padding: 0 5px;
  margin-left: 5px;
  border-radius: 999px;
  background: #f39c12;
  color: #fff;
  font-size: .7rem;
  font-weight: 800;
  vertical-align: middle;
  line-height: 1;
}

@keyframes sub-hero-color {
  0% {
    color: #1d4fd7;
  }

  100% {
    color: #2d3656;
  }
}

.sprite {
  display: inline-block;
  background-image: url("../images/icon.png");
  background-repeat: no-repeat;
  background-size: 768px 512px;
  flex-shrink: 0;
}

.service-card .sprite {
  width: 96px;
  height: 62px;
  background-size: 620px auto;
}

.quick-item .sprite {
  width: 74px;
  height: 56px;
  background-size: 540px auto;
}

.sprite-phone-call {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  background-image: none;
  border: 2px solid currentColor;
  border-radius: 50%;
  overflow: hidden;
}

.sprite-phone-call::before {
  content: "\260E";
  font-size: 27px;
  line-height: 1;
  transform: translateY(-1px);
}

.hero-call .sprite-phone-call {
  width: 50px;
  height: 50px;
}

.quick-call .sprite-phone-call {
  width: 50px;
  height: 50px;
}

.sprite-jet {
  background-position: -29px -24px;
}

.sprite-swim {
  background-position: -152px -23px;
}

.sprite-house {
  background-position: -274px -22px;
}

.sprite-camp {
  background-position: -386px -22px;
}

.sprite-dining {
  background-position: -29px -109px;
}

.sprite-megaphone {
  background-position: -499px -23px;
}

.sprite-map {
  background-position: -243px -96px;
}

.sprite-calendar {
  background-position: -342px -96px;
}

.sprite-guide {
  background-position: -442px -95px;
}

.sprite-faq {
  background-position: -28px -168px;
}

@media (max-width: 1260px) {
  .hero-shell {
    grid-template-columns: 1.2fr 0.95fr;
  }

  .notice-panel {
    grid-column: 2;
  }

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

  .service-card:nth-child(3n) {
    border-right: 0;
  }

  .service-card:nth-child(n + 4) {
    border-top: 1px solid rgba(29, 79, 215, 0.1);
  }

  .quick-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 960px) {
  .site-header {
    position: static;
  }

  .nav-row,
  .footer-shell {
    grid-template-columns: 1fr;
    display: grid;
    justify-items: center;
  }

  .brand,
  .footer-brand {
    justify-content: center;
  }

  .brand-text,
  .footer-info,
  .copyright {
    text-align: center;
  }

.main-nav {
    gap: 18px 26px;
    font-size: 1.05rem;
  }

  .hero {
    padding-top: 0;
  }

  .hero-shell {
    width: 100%;
    min-height: auto;
    height: auto;
  }

  .hero-overlay {
    display: grid;
    min-height: 420px;
    padding: 28px 24px 44px;
    height: auto;
  }

  .hero-slider {
    min-height: 360px;
    height: 360px;
  }

  .hero-side {
    position: static;
    transform: none;
    width: min(100%, 340px);
    margin-left: auto;
  }

  .hero-copy {
    position: static;
    transform: none;
    width: min(100%, 360px);
    margin-left: auto;
    margin-right: auto;
  }

  .hero-call {
    width: min(100%, 280px);
  }

  .notice-panel {
    max-width: none;
  }

  .services {
    margin-top: 38px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-radius: 24px;
  }

  .service-card {
    border-right: 1px solid rgba(29, 79, 215, 0.1);
    border-top: 0;
  }

  .service-card:nth-child(3n) {
    border-right: 1px solid rgba(29, 79, 215, 0.1);
  }

  .service-card:nth-child(2n) {
    border-right: 0;
  }

  .service-card:nth-child(n + 3) {
    border-top: 1px solid rgba(29, 79, 215, 0.1);
  }

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

  .quick-item:nth-child(2n) {
    border-right: 0;
  }

  .quick-item:nth-child(n + 3) {
    border-top: 1px solid rgba(29, 79, 215, 0.1);
  }

  .copyright {
    grid-column: auto;
  }

  .sub-nav-shell {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .sub-hero-shell {
    min-height: 130px;
    height: 130px;
  }

  .subpage-content-shell {
    grid-template-columns: 1fr;
  }

  .left-submenu {
    width: 100%;
  }

  .left-submenu nav {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--container), calc(100% - 20px));
  }

  .utility-nav {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 16px;
  }

  .utility-nav a:not(:last-child)::after {
    display: none;
  }

  .brand img {
    width: 72px;
  }

  .main-nav {
    gap: 14px 18px;
    font-size: 0.92rem;
  }

  .hero {
    padding-bottom: 40px;
  }

  .hero-shell {
    min-height: auto;
    height: auto;
  }

  .hero-slider {
    min-height: 300px;
    height: 300px;
  }

  .hero-kicker {
    font-size: 1.35rem;
  }

  .hero-copy h1 {
    font-size: 2.2rem;
  }

  .hero-description {
    font-size: 0.88rem;
  }

  .hero-call {
    gap: 12px;
    padding: 10px 14px;
  }

  .hero-call-number {
    font-size: 1.08rem;
  }

  .hero-overlay {
    display: grid;
    min-height: 420px;
    padding: 22px 16px 40px;
    height: auto;
  }

  .hero-side {
    position: static;
    transform: none;
    width: min(100%, 270px);
    margin-left: auto;
    margin-right: auto;
  }

  .notice-panel {
    max-width: none;
  }

  .hero-copy {
    position: static;
    transform: none;
    width: min(100%, 270px);
    margin-left: auto;
    margin-right: auto;
  }

  .slider-dots {
    left: 50%;
    bottom: 16px;
  }

  .sprite-phone-call {
    width: 92px;
    height: 92px;
    background-size: 650px 433px;
    background-position: -258px -299px;
  }

  .services,
  .quick-links {
    grid-template-columns: 1fr;
  }

  .service-card,
  .quick-item {
    border-right: 0;
  }

  .service-card + .service-card,
  .quick-item + .quick-item {
    border-top: 1px solid rgba(29, 79, 215, 0.1);
  }

  .service-card strong,
  .quick-item strong {
    font-size: 0.98rem;
  }

  .quick-call {
    padding: 14px;
  }

  .quick-call-number {
    font-size: 1.08rem;
  }

  .footer-shell {
    justify-items: stretch;
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
  }

  .divider {
    display: none;
  }

  .footer-info p + p {
    margin-top: 4px;
  }

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

  .sub-nav-group {
    padding: 0 10px 22px;
  }

  .sub-nav-title {
    padding: 18px 0 22px;
    font-size: 0.96rem;
  }

  .sub-nav-links {
    gap: 12px;
  }

  .sub-nav-links a {
    font-size: 0.88rem;
  }

  .sub-hero-shell {
    min-height: 130px;
    height: 130px;
    background-position: center center;
  }

  .sub-hero-copy h1 {
    font-size: 1.55rem;
  }

  .sub-hero-copy p:last-child {
    font-size: 0.75rem;
  }

  .subpage-content {
    padding: 32px 0 56px;
  }

  .subpage-content-shell {
    padding: 24px 18px;
    border-radius: 18px;
  }

  .content-title {
    display: grid;
    gap: 6px;
  }

  .greeting-card p {
    font-size: 0.92rem;
    line-height: 1.75;
  }

  .greeting-promise li {
    font-size: 0.94rem;
  }

  .greeting-sign {
    justify-content: flex-start;
  }

  .rates-intro {
    display: grid;
    gap: 6px;
    padding: 16px;
  }

  .rate-table {
    font-size: 0.78rem;
  }

  .map-frame {
    height: 340px;
  }

  .map-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .map-button {
    width: 100%;
  }

  .location-row {
    grid-template-columns: 1fr;
  }

  .location-row strong {
    min-height: 42px;
    padding: 0 18px;
  }

  .location-row p {
    padding: 12px 18px;
    font-size: 0.9rem;
  }

  .rules-row {
    grid-template-columns: 1fr;
  }

  .rules-row > h3 {
    justify-content: flex-start;
    min-height: 56px;
    padding: 0 18px;
    border-right: 0;
    border-bottom: 1px solid #d7dfed;
  }

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

  .rules-grid .rule-block,
  .rules-grid .rule-block:nth-child(2n),
  .rules-grid .rule-block:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid #e0e6f0;
  }

  .rules-grid .rule-block:last-child {
    border-bottom: 0;
  }

  .rule-block {
    padding: 18px;
  }

  .rule-block li {
    font-size: 0.88rem;
  }

  .water-main-image {
    padding: 10px;
    border-radius: 16px;
  }

  .pension-main-image {
    padding: 10px;
    border-radius: 16px;
  }

  .camping-main-image {
    padding: 10px;
    border-radius: 16px;
  }

  .restaurant-main-image {
    padding: 10px;
    border-radius: 16px;
  }

  .board-toolbar {
    display: grid;
    gap: 12px;
    padding: 16px;
  }

  .board-search {
    width: 100%;
  }

  .board-search input {
    width: 100%;
  }

  .board-search button,
  .board-write {
    min-height: 36px;
  }

  .board-table {
    display: block;
    padding: 10px;
    font-size: 0.88rem;
  }

  .board-table caption,
  .board-table thead {
    display: none;
  }

  .board-table tbody {
    display: grid;
    gap: 10px;
  }

  .board-table tr {
    display: grid;
    gap: 6px;
    padding: 14px;
    border: 1px solid #e2e9f5;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 20px rgba(36, 74, 146, 0.05);
  }

  .board-table th,
  .board-table td {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100% !important;
    padding: 0;
    border-bottom: 0;
    color: #66708a;
    text-align: right;
  }

  .board-table td::before {
    flex: 0 0 auto;
    color: #7c869d;
    font-size: 0.76rem;
    font-weight: 800;
  }

  .board-table td:nth-child(1)::before {
    content: "번호";
  }

  .board-table td:nth-child(2)::before {
    content: "제목";
  }

  .board-table td:nth-child(3)::before {
    content: "분류";
  }

  .board-table td:nth-child(4)::before {
    content: "날짜";
  }

  .board-table td:nth-child(5)::before {
    content: "상태";
  }

  .board-table td:nth-child(2) {
    display: block;
    text-align: left;
  }

  .board-table td:nth-child(2)::before {
    display: block;
    margin-bottom: 5px;
  }

  .board-table td:nth-child(2) a {
    display: block;
    color: #202842;
    font-size: 0.98rem;
    line-height: 1.45;
  }

  .gallery-board {
    grid-template-columns: 1fr;
    padding: 10px;
  }

  .gallery-item {
    padding: 10px;
    border: 1px solid #e2e9f5;
    border-radius: 16px;
    background: #fff;
  }

  .gallery-item span {
    aspect-ratio: 16 / 10;
  }

  .left-submenu h2 {
    padding: 18px 18px 16px;
    font-size: 1.12rem;
  }

  .left-submenu nav {
    grid-template-columns: 1fr;
  }

  .left-submenu {
    display: none;
  }

  .dropdown-nav .nav-item.is-current .nav-link::after {
    bottom: -8px;
  }

  .left-submenu a {
    min-height: 38px;
    font-size: 0.9rem;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: sticky;
    top: 0;
  }

  .topbar .container {
    width: min(var(--container), calc(100% - 20px));
  }

  .utility-nav {
    justify-content: center;
    gap: 8px 14px;
    padding: 9px 0;
    font-size: 0.76rem;
  }

  .nav-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 42px;
    align-items: center;
    justify-items: stretch;
    gap: 10px;
    min-height: auto;
    padding: 10px 0;
  }

  .brand {
    justify-content: flex-start;
    min-width: 0;
  }

  .brand img {
    width: 66px;
  }

  .brand-text span {
    font-size: 0.78rem;
    white-space: nowrap;
  }

  .menu-toggle {
    display: inline-grid;
    align-content: center;
    justify-self: end;
  }

  .main-nav {
    grid-column: 1 / -1;
    display: none;
    width: 100%;
    margin: 4px 0 0;
    padding: 8px 10px;
    gap: 0;
    border: 1px solid rgba(29, 79, 215, 0.12);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 14px 28px rgba(36, 74, 146, 0.1);
    font-size: 0.95rem;
  }

  body.is-menu-open .main-nav {
    display: grid;
  }

  .dropdown-nav .nav-item {
    border-bottom: 1px solid rgba(29, 79, 215, 0.08);
  }

  .dropdown-nav .nav-item:last-child {
    border-bottom: 0;
  }

  .dropdown-nav .nav-link {
    padding: 12px 8px;
  }

  .dropdown-menu {
    position: static;
    display: grid;
    min-width: 0;
    padding: 0 8px 12px 18px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    gap: 8px;
  }

  .dropdown-menu a {
    color: #65708a;
    font-size: 0.82rem;
    text-align: left;
    white-space: normal;
  }

  .dropdown-nav .nav-item.is-current .nav-link::after {
    left: 8px;
    right: auto;
    bottom: 5px;
    width: 30px;
    height: 3px;
  }

  .hero {
    padding: 10px 0 42px;
  }

  .hero-shell {
    width: calc(100% - 20px);
    min-height: 260px;
    height: 260px;
    margin: 0 auto;
    margin-bottom: 210px;
    overflow: visible;
    border-radius: 18px;
  }

  .hero-slider {
    position: absolute;
    inset: 0;
    min-height: 0;
    height: 100%;
  }

  .hero-slide {
    background-size: cover;
    background-position: center top;
  }

  .hero-overlay {
    display: grid;
    align-content: center;
    min-height: 260px;
    height: 260px;
    padding: 24px 16px 44px;
    overflow: visible;
    border-radius: 18px;
  }

  .hero-copy {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    margin: 0;
    justify-items: center;
    text-align: center;
  }

  .hero-kicker {
    font-size: 1rem;
  }

  .hero-copy h1 {
    font-size: 2rem;
    line-height: 0.96;
  }

  .hero-description {
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .hero-side {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 14px);
    z-index: 4;
    transform: none;
    width: 100%;
    gap: 12px;
    margin: 0;
    display: grid;
    justify-items: center;
  }

  .hero-call {
    display: inline-flex;
    width: min(100%, 280px);
    min-height: 46px;
    margin: 0 auto;
    padding: 6px 14px;
    border-radius: 999px;
    background: #fff;
  }

  .hero-call .sprite-phone-call,
  .quick-call .sprite-phone-call {
    width: 34px;
    height: 34px;
  }

  .sprite-phone-call::before {
    font-size: 18px;
  }

  .hero-call-number {
    font-size: 1rem;
  }

  .notice-panel {
    width: min(100%, 280px);
    max-width: none;
    padding: 13px 14px;
    border-radius: 16px;
    background: #fff;
  }

  .notice-head h2 {
    font-size: 0.94rem;
  }

  .notice-list a {
    font-size: 0.8rem;
  }

  .slider-dots {
    left: 50%;
    bottom: 14px;
  }
}
