@charset "UTF-8";
/* 
	체크 및 수정이 필요한 부분에 "developer setting" 코멘트 추가했습니다.
	폰트 중복 선언으로 사이트 반영 시 삭제
*/
body {
  /* 
  developer setting
  사이트 반영 시 body class 삭제 
  */
  padding: 0;
  margin: 0;
}

:root {
  --AS-font-40: 32px;
  --AS-font-32: 24px;
  --AS-font-24: 18px;
  --AS-font-16: 14px;
  --AS-section-padding: 32px;
  --AS-swiper-padding: 20px;
}

.AS-wrap {
  word-break: keep-all;
  overflow-wrap: anywhere;
}
.AS-wrap * {
  /* 
  developer setting
  미리 선언 되어 있다면 삭제 
  */
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.AS-wrap ul li {
  padding: 0;
  background: none;
}

.AS-wrap .container {
  max-width: 1200px;
  margin: 0 auto;
}
.AS-wrap .container .AS-contents {
  position: relative;
  width: 100%;
  padding-top: calc(var(--AS-section-padding) * 2);
  padding-bottom: calc(var(--AS-section-padding) * 2);
  text-align: left;
}
.AS-wrap .container .AS-contents h3 {
  color: #000;
  font-size: var(--AS-font-40);
  font-weight: 800;
  line-height: normal;
  letter-spacing: -0.8px;
  margin-bottom: calc(var(--AS-font-40) - 8px);
}
.AS-wrap .container .AS-contents h4 {
  color: #000;
  font-size: var(--AS-font-24);
  font-weight: 700;
  line-height: 150%;
  letter-spacing: -0.48px;
}
.AS-wrap .container .AS-contents p {
  color: #6f6b68;
  font-size: var(--AS-font-16);
  font-weight: 400;
  line-height: 180%;
  letter-spacing: -0.32px;
}
.AS-wrap .container .AS-contents p + p {
  margin-top: 0.5em;
}
.AS-wrap .AS-kv {
  position: relative;
  width: 100%;
  height: 80svh;
  padding: 10vh 20px;
  aspect-ratio: 2/1;
}
.AS-wrap .AS-kv h1 {
  text-align: center;
  color: #fff;
  font-weight: bold;
  font-size: calc(var(--AS-font-40) * 1.8);
  line-height: 1.2;
  letter-spacing: -0.04em;
}
.AS-wrap .AS-kv-bg {
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.AS-section-01 {
  padding-bottom: 0 !important;
}
.AS-section-01 .AS-contents-body {
  padding-inline: 20px;
}
.AS-section-01 h4 {
  margin-bottom: 1em;
}
.AS-section-01 img {
  display: block;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  min-height: 240px;
}

.AS-section-02 {
  padding-inline: 20px;
  /* developer setting */
  /* padding-bottom: 0 !important; */
}
.AS-section-02 svg {
  width: 100%;
  margin: 0 auto;
}
.AS-section-02 path {
  cursor: pointer;
  transition: all 150ms;
  fill: #e3e3e3;
  -webkit-tap-highlight-color: transparent;
}
.AS-section-02 path.selected-path {
  fill: #204ff1;
}

/*
.AS-section-02 path:not(.selected-path):hover {
  fill: #949494;
}
@media (hover: none) and (pointer: coarse) {
  .AS-section-02 path:not(.selected-path):hover {
    fill: #e3e3e3;
  }
}
*/

/* 기본 마우스 hover */
.AS-section-02 path:not(.selected-path):hover {
  fill: #949494;
}

/* 키보드 focus 시 */
.AS-section-02 path.active--focus:not(.selected-path) {
  fill: #949494;
}

/* 모바일 터치 기기에서 hover 대체 (접근성) */
@media (hover: none) and (pointer: coarse) {
  .AS-section-02 path:not(.selected-path):hover {
    fill: #e3e3e3;
  }
}

.AS-section-02 .AS-contents-body {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.AS-section-02 .AS-map {
  display: block;
  position: relative;
  width: 100%;
  max-width: 90vw;
  aspect-ratio: 1.23/1;
  margin: 0 auto;
  align-items: center;
}
.AS-section-02 .AS-map .map-wrap {
  position: relative;
  width: 100%;
  max-width: 90vw;
  aspect-ratio: 1.23/1;
  margin: 0 auto;
}
.AS-section-02 .AS-map svg {
  position: relative;
}
.AS-section-02 .AS-citySwiper {
  width: 100%;
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
}
.AS-section-02 .index-container {
  pointer-events: none;
}
.AS-section-02 .index-container a {
  color: #333;
  text-decoration: none;
}

.AS-section-02 .index {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: var(--AS-font-16);
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(2px);
  padding: 4px 8px;
  border-radius: 8px;
  text-align: center;
}
.AS-section-02 .index.size-en {
  font-size: 11px;
}
.AS-section-02 .index.size-en.nw {
  top: 35%;
  left: 18%;
}
.AS-section-02 .index.size-en.ne {
  top: 28%;
  right: 18%;
}
.AS-section-02 .index.size-en.ct {
  top: 48%;
  left: 45%;
}
.AS-section-02 .index.size-en.sw {
  bottom: 18%;
  left: 15%;
}
.AS-section-02 .index.size-en.se {
  bottom: 18%;
  right: 15%;
}
.AS-section-02 .index.nw {
  top: 40%;
  left: 32%;
}
.AS-section-02 .index.ne {
  top: 35%;
  right: 28%;
}
.AS-section-02 .index.ct {
  top: 50.5%;
  left: 48.5%;
}
.AS-section-02 .index.sw {
  bottom: 25%;
  left: 28%;
}
.AS-section-02 .index.se {
  bottom: 20%;
  right: 25%;
}

.AS-section-03 {
  padding-inline: 20px;
  border-top: 1px solid #d9d8d3;
  /* developer setting */
  /* padding-bottom: 0 !important; */
}
.AS-section-03 .AS-tips {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  gap: 30px;
  flex-wrap: wrap;
  text-align: left;
}
.AS-section-03 .AS-tips li {
  width: 100%;
}
.AS-section-03 .AS-tips li a {
  display: flex;
  background-color: #faebd7;
  aspect-ratio: 2/1.5;
  padding: 24px;
  justify-content: space-between;
  text-decoration: none;
  color: #fff;
  border-radius: 16px;
  background-position: center;
  background-size: cover;
}
.AS-section-03 .AS-tips li a .h5 {
  display: block;
  color: #fff;
  font-size: calc(var(--AS-font-24));
  font-weight: 700;
  line-height: 1.2em;
  letter-spacing: -0.56px;
  line-height: 40px;
}
.AS-section-03 .AS-tips li a .icon {
  display: flex;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border-radius: 100px;
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
}


.AS-citySwiper {
  position: relative;
}
.AS-citySwiper .AS-swiper-nav {
  position: absolute;
  top: var(--AS-swiper-padding);
  right: 24px;
  width: calc(var(--AS-swiper-padding) * 2);
  height: var(--AS-swiper-padding);
}
.AS-citySwiper .AS-swiper-button {
  top: 0 !important;
  height: var(--AS-swiper-padding);
  width: var(--AS-swiper-padding);
  margin: 0 !important;
  background-image: none !important;
}
.AS-citySwiper .AS-swiper-button::after {
  font-size: calc(var(--AS-swiper-padding) / 2);
  color: #000;
}
.AS-citySwiper .AS-swiper-button-prev {
  left: 0 !important;
  right: none !important;
}
.AS-citySwiper .AS-swiper-button-next {
  right: 0 !important;
  left: none !important;
}
.AS-citySwiper .card {
  padding: var(--AS-swiper-padding);
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.8);
}

.AS-citySwiper .card h5 {
  color: #000;
  font-size: var(--AS-font-32);
  font-weight: 700;
  line-height: 140%;
  letter-spacing: -0.64px;
}
.AS-citySwiper .card h5 span {
  font-size: var(--AS-font-16);
  display: block;
  color: #204ff1;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: -0.32px;
  margin-top: 8px;
}
.AS-citySwiper .card p {
  font-size: var(--AS-font-16);
  color: #6f6b68;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: -0.32px;
  margin-top: 2em;
  margin-bottom: 1em;
}
.AS-citySwiper ol {
  list-style: none;
  padding: 0;
  margin: auto 0 0 !important;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.AS-citySwiper ol li {
  display: flex;
  padding: 4px 8px;
  align-items: center;
  border-radius: 100px;
  border: 1px solid #6f6b68;
  color: #6f6b68;
  font-size: calc(var(--AS-font-16) - 2px);
  font-weight: 500;
  line-height: 1em;
  letter-spacing: -0.28px;
  margin: 0 !important;
}

/* 미디어 쿼리 시작 */
@media (min-width: 375px) {
  :root {
    --AS-font-40: 32px;
    --AS-font-32: 24px;
    --AS-font-24: 20px;
    --AS-font-16: 14px;
    --AS-section-padding: 32px;
    --AS-swiper-padding: 24px;
  }
}
@media (min-width: 768px) {
  :root {
    --AS-font-40: 40px;
    --AS-font-32: 32px;
    --AS-font-24: 24px;
    --AS-font-16: 16px;
    --AS-section-padding: 40px;
    --AS-swiper-padding: 40px;
  }
  .AS-wrap .AS-kv {
    position: relative;
    width: 100%;
    max-height: 940px;
    height: 100vh;
    padding: 200px 24px;
    aspect-ratio: 2/1;
  }
  .AS-wrap .AS-kv .d-block {
    display: none;
  }
  .AS-wrap .AS-kv-title {
    text-align: center;
  }
  .AS-wrap .AS-kv-title img {
    max-width: 100%;
    display: inline-block;
  }
  .AS-section-02 .index.size-en {
    font-size: 12px;
  }
  .AS-section-02 .index.size-en.nw {
    top: 40%;
    left: 28%;
  }
  .AS-section-02 .index.size-en.ne {
    top: 35%;
    right: 23%;
  }
  .AS-section-02 .index.size-en.ct {
    top: 50.5%;
    left: 48.5%;
  }
  .AS-section-02 .index.size-en.sw {
    bottom: 25%;
    left: 20%;
  }
  .AS-section-02 .index.size-en.se {
    bottom: 20%;
    right: 20%;
  }
  .AS-section-03 .AS-tips {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: 24px;
  }
  .AS-section-03 .AS-tips li a {
    aspect-ratio: 1/1;
    padding: 24px;
  }
}
@media (min-width: 992px) {
  :root {
    --AS-font-40: 40px;
    --AS-font-32: 32px;
    --AS-font-24: 24px;
    --AS-font-16: 16px;
    --AS-section-padding: 50px;
    --AS-swiper-padding: 40px;
  }
  .AS-section-02 {
    padding-inline: 20px;
  }
  .AS-section-02 .AS-contents-body {
    padding-inline: 0;
    gap: 48px;
    /* flex-direction: row-reverse; */
    flex-direction: row;
  }

  .AS-section-02 .AS-map {
    display: flex;
    position: relative;
    width: 100%;
    flex-basis: 50%;
    aspect-ratio: 1.23 / 1;
  }
  .AS-section-02 .padding {
    width: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
  }
  .AS-section-03 .AS-tips {
    gap: 32px;
  }
  .AS-section-03 .AS-tips li a {
    aspect-ratio: 1/1;
    padding: 32px;
  }
}
@media (min-width: 1200px) {
  :root {
    --AS-font-40: 40px;
    --AS-font-32: 32px;
    --AS-font-24: 24px;
    --AS-font-16: 16px;
    --AS-section-padding: 60px;
    --AS-swiper-padding: 40px;
  }
  .AS-section-01 .AS-contents-body {
    padding-inline: 0;
  }
  .AS-section-02,
  .AS-section-03 {
    padding-inline: 0;
  }
  .AS-section-03 .AS-tips li a {
    aspect-ratio: 1/1;
  }
}