*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --w: #ffffff;
  --cream: #f4efe9;
  --soft: #f8f5f2;
  --warm: #f1ece6;
  --dark: #1c1b19;
  --mid: #6b6762;
  --light: #a5a09a;
  --line: #e3dcd5;
  --gold: #bc8b55;
  --inner: 1420px;
  --side: 52px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--dark);
  background: var(--w);
  line-height: 1;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.page-wrap {
  max-width: var(--inner);
  margin: 0 auto;
  padding: 0 var(--side);
}

/* ── Intro ── */
.intro {
  margin-top: 64px;
  padding: 88px 0 80px;
}
.intro-label {
  display: block;
  margin-bottom: 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 28.435px;
  letter-spacing: 0;
  color: var(--gold);
}
.intro h1 {
  font-size: clamp(30px, 4.51vw, 65px);
  font-weight: 600;
  line-height: 1.167;
  letter-spacing: -.03em;
  margin-bottom: 18px;
}
.intro p {
  max-width: 820px;
  font-size: 25px;
  line-height: 42.653px;
  color: var(--mid);
}
.intro-lead {
  margin-top: 0;
  max-width: 900px;
  font-size: 25px !important;
  font-weight: 400;
  line-height: 42.653px;
  letter-spacing: -.015em;
  color: #000 !important;
}
.intro-lead strong {
  font-weight: 700;
  color: var(--dark);
}

/* ── Sub nav ── */
.ac-subnav {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  padding: 28px 0 56px;
  border-top: 1px solid var(--line);
  margin-top: 40px;
}
.ac-subnav a {
  font-size: 15px;
  letter-spacing: -.01em;
  color: var(--mid);
  padding: 8px 2px;
  position: relative;
  transition: color .2s ease;
}
.ac-subnav a:hover { color: var(--dark); }
.ac-subnav a.active {
  color: var(--dark);
  font-weight: 600;
}
.ac-subnav a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -8px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

/* ── Common heads ── */
.ac-head {
  text-align: left;
  margin-bottom: 56px;
}
.ac-kicker {
  display: inline-block;
  margin-bottom: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--light);
}
.ac-head h2 {
  font-size: clamp(24px, 3.47vw, 50px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -.025em;
  margin-bottom: 16px;
}
.ac-head h2 em {
  font-style: normal;
  font-weight: 700;
}
.ac-head p {
  font-size: 22px;
  color: var(--mid);
  line-height: 1.8;
}

/* ── Tour section ── */
.ac-tour {
  padding: 72px 0 80px;
  background: #fff;
  margin-top: 0;
}
.ac-tour-inner {
  max-width: var(--inner);
  margin: 0 auto;
  padding: 0 var(--side);
}
.ac-tour-wrap {
  position: relative;
  padding: 0 0;
}
.ac-tour-sw {
  overflow: visible;
  padding: 10px 0;
}
.ac-tour-sw .swiper-slide {
  transition: transform .6s ease, box-shadow .6s ease, opacity .6s ease;
  opacity: .55;
}
.ac-tour-sw .swiper-slide-active,
.ac-tour-sw .swiper-slide-visible {
  opacity: 1;
}
.ac-tour-sw img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  border-radius: 4px;
  box-shadow: none;
}
.ac-tour-arr {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  color: var(--dark);
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px -16px rgba(0,0,0,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}
.ac-tour-arr:hover {
  background: var(--dark);
  color: #fff;
}
.ac-tour-arr svg { width: 20px; height: 20px; }
.ac-tour-prev { left: -18px; }
.ac-tour-next { right: -18px; }

.ac-tour-progress {
  margin: 40px auto 0;
  max-width: 320px;
  height: 2px;
  background: rgba(188,139,85,.2);
  border-radius: 2px;
  overflow: hidden;
}
.ac-tour-bar {
  width: 100%;
  height: 100%;
  background: var(--gold);
  transform-origin: left center;
  transform: scaleX(.08);
  transition: transform .5s ease;
}

/* ── Info section ── */
.ac-info { padding: 120px 0; background: #fff; }
.ac-info-inner {
  max-width: 1420px;
  margin: 0 auto;
  padding: 0 52px;
}

.ac-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.ac-info-card {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 40px 40px 36px;
}
.ac-info-card-wide { grid-column: 1 / -1; }

.ac-info-title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -.02em;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.ac-info-title::before {
  content: '';
  position: absolute;
  left: 0; bottom: -1px;
  width: 36px; height: 2px;
  background: var(--gold);
}

.ac-hours { display: flex; flex-direction: column; gap: 12px; }
.ac-hours li {
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: baseline;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(188,139,85,.22);
  font-size: 19px;
}
.ac-hours li:last-child { border-bottom: none; }
.ac-hours .day { color: var(--mid); font-weight: 500; letter-spacing: -.01em; }
.ac-hours .time { font-family: 'Inter', 'Pretendard', sans-serif; font-weight: 500; color: var(--dark); font-size: 20px; }
.ac-map-panel .ac-hours {
  gap: 0;
}
.ac-map-panel .ac-hours li {
  grid-template-columns: 82px 1fr;
  gap: 18px;
  padding: 5px 0;
  border-bottom: 0;
  font-size: 16px;
}
.ac-map-panel .ac-hours .day {
  color: var(--dark);
  font-weight: 600;
}
.ac-map-panel .ac-hours .time {
  font-size: 16px;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.55;
}

.ac-hours-note {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: rgba(188,139,85,.1);
  border-radius: 999px;
  color: var(--dark);
  font-size: 19px;
}
.ac-map-panel .ac-hours-note {
  margin-top: -8px;
  display: block;
  padding: 0;
  background: transparent;
  border-radius: 0;
  color: var(--mid);
  font-size: 16px;
  line-height: 1.7;
}
.ac-closed {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 18px;
  align-items: start;
  font-size: 16px;
  line-height: 1.75;
}
.ac-closed-label {
  font-weight: 700;
  color: var(--dark);
}
.ac-closed-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--dark);
}
.ac-hours-note strong { color: var(--gold); font-weight: 700; }
.ac-hours-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold);
  flex: 0 0 auto;
}

.ac-notice li {
  position: relative;
  padding: 12px 0 12px 20px;
  font-size: 19px;
  line-height: 1.75;
  color: var(--mid);
  border-bottom: 1px dashed rgba(188,139,85,.22);
}
.ac-notice li:last-child { border-bottom: none; }
.ac-notice li::before {
  content: '';
  position: absolute;
  left: 0; top: 22px;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold);
}
.ac-notice li strong { color: var(--dark); font-weight: 700; }
.ac-notice-link {
  display: inline-block;
  margin-top: 20px;
  font-size: 19px;
  letter-spacing: -.01em;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: color .2s ease, border-color .2s ease;
}
.ac-notice-link:hover { color: var(--dark); border-color: var(--dark); }

.ac-contact-rows {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 40px;
}
.ac-contact-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  align-items: baseline;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: 20px;
}
.ac-contact-row .lbl { color: var(--light); font-size: 19px; letter-spacing: .04em; text-transform: uppercase; }
.ac-contact-row .val { color: var(--dark); line-height: 1.7; }
.ac-contact-row a { color: inherit; transition: color .2s ease; }
.ac-contact-row a:hover { color: var(--gold); }

/* ── Map section ── */
.ac-map {
  padding: 72px 0 110px;
  background: #f8f4f1;
}
.ac-map-inner {
  max-width: var(--inner);
  margin: 0 auto;
  padding: 0 var(--side);
}

.ac-map-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, .95fr);
  gap: 80px;
  align-items: center;
}
.ac-map-box {
  position: relative;
  min-height: 0;
  border-radius: 0;
  overflow: hidden;
  background: #e8e4de;
  box-shadow: none;
  display: block;
  transition: transform .4s ease, box-shadow .4s ease;
}
.ac-map-box img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}
.ac-map-badge {
  display: none;
}
.ac-map-box:hover {
  transform: none;
  box-shadow: none;
}

.ac-map-panel {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.ac-map-addr {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.ac-addr {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.55;
  color: var(--dark);
}

.ac-way { display: flex; flex-direction: column; gap: 0; }
.ac-way li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(188,139,85,.22);
}
.ac-way li:last-child { border-bottom: none; }
.ac-way-kicker {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .08em;
  color: var(--gold);
  padding-top: 3px;
}
.ac-way-body strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -.01em;
  color: var(--dark);
  margin-bottom: 5px;
}
.ac-way-body p {
  font-size: 14.5px;
  color: var(--mid);
  line-height: 1.65;
}

.ac-cta-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 4px;
}
.ac-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 3px;
  height: 48px;
  border-radius: 6px;
  letter-spacing: -.01em;
  text-align: center;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .2s ease;
}
.ac-cta-primary {
  background: var(--dark);
  color: #fff;
  flex-direction: row;
  gap: 8px;
}
.ac-cta-primary:hover { background: var(--gold); }
.ac-cta-icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: currentColor;
  flex: 0 0 auto;
}
.ac-cta-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.ac-cta-main {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
}
.ac-cta-ghost {
  border: 1px solid var(--dark);
  color: var(--dark);
  font-size: 15px;
  font-weight: 500;
}
.ac-cta-ghost:hover {
  background: var(--dark);
  color: #fff;
}

.ac-way-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 72px;
}
.ac-way-card {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  align-items: start;
}
.ac-way-icon {
  width: 64px;
  height: 64px;
  border-radius: 0;
  background: transparent;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ac-way-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.ac-way-card h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -.02em;
  margin-bottom: 8px;
}
.ac-way-card h3:not(:first-child) {
  margin-top: 22px;
}
.ac-way-card p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--mid);
}
.line-badge,
.bus-badge {
  display: inline-block;
  margin-right: 4px;
  padding: 1px 5px 2px;
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
  vertical-align: baseline;
}
.line-7 { background: #667516; }
.line-su { background: #f4b21b; }
.bus-green { background: #72a84a; }
.bus-blue { background: #4f6fa9; }


/* ── Fade-up ── */
.fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .8s ease, transform .8s ease;
}
.fade-up.on {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  :root { --side: 40px; }
  .page-wrap { padding: 0 var(--side); }
  .ac-tour-inner,
  .ac-info-inner,
  .ac-map-inner { padding: 0 var(--side); }

  .ac-info-grid { grid-template-columns: 1fr; }
  .ac-contact-rows { grid-template-columns: 1fr; }

  .intro-label { font-size: 22px; line-height: 1.2; }
  .intro h1 { font-size: 44px; }
  .intro-lead { font-size: 19px !important; line-height: 1.75; }
  .ac-kicker { font-size: 18px; }
  .ac-head h2 { font-size: 38px; }
  .ac-head p { font-size: 18px; }

  .ac-map-grid { grid-template-columns: 1fr; gap: 36px; }
  .ac-map-box { min-height: 0; }
  .ac-map-panel { max-width: 620px; }
  .ac-way-cards { grid-template-columns: 1fr; gap: 28px; margin-top: 56px; }
  .ac-way-card { grid-template-columns: 58px 1fr; }
  .ac-way-icon { width: 58px; height: 58px; }

  .ac-tour-prev { left: 6px; }
  .ac-tour-next { right: 6px; }
}

@media (max-width: 640px) {
  :root { --side: 24px; }
  .page-wrap { padding: 0 var(--side); }
  .intro { padding: 56px 0 46px; }
  .intro-label {
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: .08em;
    margin-bottom: 12px;
  }
  .intro h1 {
    font-size: 30px;
    line-height: 1.18;
    margin-bottom: 14px;
  }
  .intro-lead {
    margin-top: 0;
    font-size: 14px !important;
    line-height: 1.58 !important;
  }

  .ac-head { margin-bottom: 28px; }
  .ac-kicker {
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: .08em;
    margin-bottom: 10px;
  }
  .ac-head h2 {
    font-size: 28px;
    line-height: 1.22;
    margin-bottom: 10px;
  }
  .ac-head p {
    font-size: 15px;
    line-height: 1.72;
  }

  .ac-tour { padding: 56px 0 62px; }
  .ac-tour-inner,
  .ac-info-inner,
  .ac-map-inner { padding: 0 var(--side); }

  .ac-tour-arr { width: 42px; height: 42px; }
  .ac-tour-arr svg { width: 16px; height: 16px; }
  .ac-tour-prev { left: 4px; }
  .ac-tour-next { right: 4px; }

  .ac-map { padding: 56px 0 76px; }
  .ac-map-grid { gap: 28px; }
  .ac-map-box { min-height: 0; border-radius: 0; }
  .ac-map-panel {
    max-width: none;
    padding: 0;
    border-radius: 0;
    gap: 16px;
  }
  .ac-map-addr { padding-bottom: 18px; }
  .ac-addr {
    font-size: 19px;
    line-height: 1.5;
  }
  .ac-map-panel .ac-hours li {
    grid-template-columns: 74px 1fr;
    gap: 12px;
    font-size: 14px;
    padding: 4px 0;
  }
  .ac-map-panel .ac-hours .day,
  .ac-closed-label {
    font-size: 14px;
  }
  .ac-map-panel .ac-hours .time {
    font-size: 14px;
    line-height: 1.55;
  }
  .ac-map-panel .ac-hours-note { font-size: 14px; padding: 0; }
  .ac-closed {
    grid-template-columns: 74px 1fr;
    gap: 12px;
    font-size: 14px;
    line-height: 1.65;
  }
  .ac-closed-body { gap: 8px; }

  .ac-cta-row { grid-template-columns: 1fr 1fr; gap: 8px; }
  .ac-cta { height: 42px; }
  .ac-cta-icon { width: 14px; height: 14px; }
  .ac-cta-main { font-size: 13px; }
  .ac-cta-ghost { font-size: 13px; }
  .ac-way-cards { margin-top: 48px; }
  .ac-way-card { grid-template-columns: 46px 1fr; gap: 14px; }
  .ac-way-icon { width: 46px; height: 46px; }
  .ac-way-icon img { width: 100%; height: 100%; }
  .ac-way-card h3 {
    font-size: 14px;
    line-height: 1.45;
    margin-bottom: 6px;
  }
  .ac-way-card h3:not(:first-child) { margin-top: 18px; }
  .ac-way-card p { font-size: 13.5px; line-height: 1.65; }
  .line-badge,
  .bus-badge { padding: 1px 4px 2px; font-size: inherit; }
}
