@charset "UTF-8";
/* media-query */
/* custom-settings (사이트마다 조정) */
:root {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  --vh: 100%;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
:root body {
  font-family: "NanumSquareNeo";
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1.4;
  letter-spacing: -0.05em;
  word-break: keep-all;
  color: #191919;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media screen and (max-width: 991px) {
  :root body {
    line-height: 1.5;
  }
}
:root body h1, :root body h2, :root body h3, :root body h4, :root body h5, :root body h6 {
  line-height: 1.25;
  letter-spacing: -0.05em;
}
@media screen and (max-width: 991px) {
  :root body h1, :root body h2, :root body h3, :root body h4, :root body h5, :root body h6 {
    line-height: 1.35;
  }
}
:root body b, :root body strong {
  font-weight: 900;
}

/* 본문 바로가기 */
#skip_to_container a {
  z-index: 100000;
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
}

#skip_to_container a:focus, #skip_to_container a:active {
  width: 100%;
  height: 75px;
  background: #21272e;
  color: #fff;
  font-size: 2em;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  line-height: 3.3em;
}

/* sound-only */
.sound-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* reset */
:where(body, div, section, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, figure, legend, textarea, p, blockquote, th, td, input, select, textarea, button) {
  margin: 0;
  padding: 0;
}

:where(a) {
  text-decoration: none;
  color: inherit;
  outline: none;
}

:where(a):active, :where(a):hover, :where(a):visited {
  text-decoration: none;
}

:where(span) {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}

:where(em, i, address) {
  font-style: normal;
}

:where(ul, dl, ol) {
  list-style: none;
  font-size: inherit;
  outline: none;
}

:where(li) {
  list-style: none;
}

:where(h1, h2, h3, h4, h5, h6) {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}

:where(table) {
  border-collapse: collapse;
  border-spacing: 0;
  outline: none;
}

:where(textarea) {
  resize: none;
}

:where(img) {
  max-width: 100%;
  font-size: 0;
  vertical-align: top;
  line-height: 0;
}

:where(button) {
  background: none;
  border: none;
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  color: inherit;
  cursor: pointer;
  outline: none;
}

:where(select) {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}

:where(::-moz-placeholder) {
  font-weight: inherit;
  font-size: inherit;
  color: #ddd;
}

:where(::placeholder) {
  font-weight: inherit;
  font-size: inherit;
  color: #ddd;
}

/* font-size */
html {
  font-size: 10px;
}

@media screen and (max-width: 1279px) {
  html {
    font-size: 9px;
    scroll-padding-top: 50px;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 8px;
    scroll-padding-top: 30px;
  }
}
/* max-width */
.maxwidth {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
}

.maxwidth2 {
  width: 97%;
  margin: 0 auto;
  border-radius: 2rem;
}
@media screen and (max-width: 991px) {
  .maxwidth2 {
    width: 95%;
  }
}

/* pc, mobile - show, hide */
.show-laptop {
  display: none;
}

.show-tablet {
  display: none;
}

.show-responsive {
  display: none;
}

.show-mobile {
  display: none;
}

.show-phone {
  display: none;
}

@media screen and (max-width: 1279px) {
  .show-laptop {
    display: block !important;
  }
  .hide-laptop {
    display: none !important;
  }
}
@media screen and (max-width: 1023px) {
  .show-tablet {
    display: block !important;
  }
  .hide-tablet {
    display: none !important;
  }
}
@media screen and (max-width: 991px) {
  .show-responsive {
    display: block !important;
  }
  .hide-responsive {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .show-mobile {
    display: block !important;
  }
  .hide-mobile {
    display: none !important;
  }
}
@media screen and (max-width: 450px) {
  .show-phone {
    display: block !important;
  }
  .hide-phone {
    display: none !important;
  }
}
/* br-keep */
.br-keep {
  display: block !important;
}

/* brs, brl */
@media screen and (min-width: 1280px) {
  .brs1280 {
    display: none;
  }
}
@media screen and (max-width: 1279px) {
  .brl1280 {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .brs1024 {
    display: none;
  }
}
@media screen and (max-width: 1023px) {
  .brl1024 {
    display: none;
  }
}
@media screen and (min-width: 992px) {
  .brs991 {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  .brl991 {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .brs768 {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .brl768 {
    display: none;
  }
}
@media screen and (min-width: 451px) {
  .brs450 {
    display: none;
  }
}
@media screen and (max-width: 450px) {
  .brl450 {
    display: none;
  }
}
/* @keyframes */
@keyframes gradient-89 {
  0% {
    background-position: 100% 0%;
  }
  50% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 0%;
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes pointerScale {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, -50%) scale(0.7);
    opacity: 0.3;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}
@keyframes spot {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  80% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes pain_init {
  100% {
    transform: scale(1);
    opacity: 1;
    filter: blur(0px);
  }
}
/* 팝업 dim */
.popup-dim {
  display: none;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 10001;
}

/* 슬라이드 팝업 */
#popup-wrap {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 10002;
  opacity: 1;
  transform: translate(-50.2%, -50%) scale(1);
  will-change: transform, opacity, filter;
  transition: opacity 0.65s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.72s cubic-bezier(0.25, 0.8, 0.25, 1), filter 0.8s ease-out;
  pointer-events: auto;
}
#popup-wrap .popup-inner {
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  height: 100%;
}
#popup-wrap .popup-inner .mo-popup-btns {
  display: none;
}
#popup-wrap .popup-inner .slide-swiper {
  width: 500px;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
}
#popup-wrap .popup-inner .slide-swiper .swiper-wrapper .swiper-slide img {
  border-bottom-left-radius: 15px;
  border-top-left-radius: 15px;
  overflow: hidden;
}
#popup-wrap .popup-inner .slide-list {
  background-color: rgba(77, 77, 77, 0.75);
  width: 235px;
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}
#popup-wrap .popup-inner .slide-list ul {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 1px;
}
#popup-wrap .popup-inner .slide-list ul li {
  cursor: pointer;
  box-sizing: border-box;
  transition: all 0.2s;
  position: relative;
  background-color: #999;
  max-height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}
#popup-wrap .popup-inner .slide-list ul li a {
  color: #fff;
  font-size: 18.5px;
  text-align: center;
  letter-spacing: 0;
  font-weight: 400;
  font-family: "Paperlogy";
}
#popup-wrap .popup-inner .slide-list ul li::before {
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: block;
  position: absolute;
  background-image: url("../img/left.svg");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 40%;
  width: 48px;
  height: 48px;
  filter: invert(1);
  opacity: 0;
  transition: opacity 0.35s ease, left 0.35s ease;
}
#popup-wrap .popup-inner .slide-list ul li:hover {
  background-color: #133a85;
}
#popup-wrap .popup-inner .slide-list ul li:hover::before {
  opacity: 1;
  left: 11px;
}
#popup-wrap .popup-inner .slide-list ul li.active {
  background-color: #133a85;
}
#popup-wrap .popup-inner .slide-list ul li.active::before {
  opacity: 1;
  left: 11px;
}
#popup-wrap .popup-button.pc {
  display: flex;
  justify-content: space-between;
  padding: 12.5px 0;
  color: #fff;
  width: 500px;
  font-size: 22px;
  letter-spacing: -0.025em;
}
#popup-wrap .popup-button.pc .btn-oneday {
  cursor: pointer;
  padding-right: 15px;
  display: flex;
  align-items: center;
  gap: 7.5px;
  font-family: "Paperlogy";
  letter-spacing: 0.05em;
}
#popup-wrap .popup-button.pc .btn-oneday img {
  border-radius: 50%;
  overflow: hidden;
  transition: background-color 0.2s;
}
#popup-wrap .popup-button.pc .slide-close {
  cursor: pointer;
  padding-left: 15px;
  display: flex;
  align-items: center;
  gap: 7.5px;
  font-family: "Paperlogy";
  letter-spacing: 0.05em;
}
#popup-wrap .popup-button.pc .slide-close img {
  border-radius: 50%;
  overflow: hidden;
  transition: background-color 0.2s;
}
#popup-wrap .popup-button.mo {
  display: none;
}
#popup-wrap .popup-swiper-pagination {
  display: none;
  position: absolute;
}
#popup-wrap.is-closing {
  pointer-events: none;
  opacity: 0;
  transform: translate(-50.2%, calc(-50% - 6rem)) scale(0.94);
}

@media (min-width: 751px) and (max-height: 900px) {
  #popup-wrap {
    height: 85%;
    top: 47.5%;
  }
  #popup-wrap .popup-inner .slide-swiper .swiper-wrapper .swiper-slide img {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 750px) {
  #popup-wrap {
    top: 50%;
    width: 76%;
    max-width: 500px;
    height: 90dvh;
    overflow-y: auto;
  }
  #popup-wrap .popup-inner {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  #popup-wrap .popup-inner .mo-popup-btns {
    display: block;
    color: #191919;
    background-color: #fff;
    text-align: center;
    padding: 12px 0 10px;
  }
  #popup-wrap .popup-inner .mo-popup-btns li {
    font-size: 16px;
    line-height: 1;
    font-family: Arial, Helvetica, sans-serif;
  }
  #popup-wrap .popup-inner .slide-swiper {
    width: 100%;
    position: relative;
  }
  #popup-wrap .popup-inner .slide-swiper .swiper-wrapper .swiper-slide img {
    border-bottom-left-radius: 0px;
    border-top-left-radius: 0px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #popup-wrap .popup-inner .slide-list {
    display: none;
  }
  #popup-wrap .popup-button.pc {
    display: none;
  }
  #popup-wrap .popup-button.mo {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
    background-color: #fff;
    font-size: 14.5px;
    letter-spacing: -0.05em;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    overflow: hidden;
  }
  #popup-wrap .popup-button.mo .btn-oneday {
    width: 50%;
    display: flex;
    justify-content: center;
    background-color: #133a85;
    padding: 10px 0;
    color: #fff;
    opacity: 0.9;
    font-weight: 500;
    font-family: Arial, Helvetica, sans-serif;
  }
  #popup-wrap .popup-button.mo .slide-close {
    width: 50%;
    display: flex;
    justify-content: center;
    padding: 10px 0;
    font-family: Arial, Helvetica, sans-serif;
  }
  #popup-wrap .popup-swiper-pagination {
    display: block;
    position: absolute;
    z-index: 10;
    color: rgb(255, 255, 255);
    font-size: 12px;
    font-weight: 400;
    width: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    letter-spacing: 0.05em;
    border-radius: 20px;
    background-color: rgba(44, 44, 44, 0.75);
    right: 10px;
    left: unset;
    bottom: unset;
    top: 48px;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1;
    padding: 4px 7px;
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
  }
  #popup-wrap .popup-swiper-pagination > span {
    letter-spacing: 0em;
  }
}
@media (max-width: 500px) {
  #popup-wrap {
    height: auto;
  }
}/*# sourceMappingURL=common.css.map */