@charset "UTF-8";
/* white-space:nowrap */
.nowrap {
  white-space: nowrap;
}

/* border:1px solid red */
/* media-query */
/* br(줄바꿈) */
.br1920 {
  display: none;
}

@media (min-width: 1280px) {
  .br1920 {
    display: block;
  }
}
.br1920-2 {
  display: block;
}

@media (min-width: 1280px) {
  .br1920-2 {
    display: none;
  }
}
.br1280 {
  display: none;
}

@media (min-width: 768px) and (max-width: 1279px) {
  .br1280 {
    display: block;
  }
}
.br1280-2 {
  display: block;
}

@media (min-width: 768px) and (max-width: 1279px) {
  .br1280-2 {
    display: none;
  }
}
.br1280-3 {
  display: none;
}

@media (max-width: 1279px) {
  .br1280-3 {
    display: block;
  }
}
.br1280-4 {
  display: block;
}

@media (max-width: 1279px) {
  .br1280-4 {
    display: none;
  }
}
.br768 {
  display: none;
}

@media (max-width: 767px) {
  .br768 {
    display: block;
  }
}
.br768-2 {
  display: block;
}

@media (max-width: 767px) {
  .br768-2 {
    display: none;
  }
}
.br768-3 {
  display: none;
}

@media (min-width: 767px) {
  .br768-3 {
    display: block;
  }
}
.br768-4 {
  display: block;
}

@media (min-width: 767px) {
  .br768-4 {
    display: none;
  }
}
.br822 {
  display: block;
}

@media (max-width: 822px) {
  .br822 {
    display: none;
  }
}
.br500 {
  display: none;
}

@media (max-width: 500px) {
  .br500 {
    display: block;
  }
}
.br500-2 {
  display: block;
}

@media (max-width: 500px) {
  .br500-2 {
    display: none;
  }
}
.br570-2 {
  display: block;
}

@media (max-width: 570px) {
  .br570-2 {
    display: none;
  }
}
.br550-2 {
  display: block;
}

@media (max-width: 550px) {
  .br550-2 {
    display: none;
  }
}
.br624-2 {
  display: block;
}

@media (max-width: 624px) {
  .br624-2 {
    display: none;
  }
}
.br430 {
  display: none;
}

@media (max-width: 430px) {
  .br430 {
    display: block;
  }
}
.br430-2 {
  display: block;
}

@media (max-width: 430px) {
  .br430-2 {
    display: none;
  }
}
.br400 {
  display: none;
}

@media (max-width: 400px) {
  .br400 {
    display: block;
  }
}
.br400-2 {
  display: block;
}

@media (max-width: 400px) {
  .br400-2 {
    display: none;
  }
}
.br900-2 {
  display: block;
}

@media (max-width: 900px) {
  .br900-2 {
    display: none;
  }
}
.br900-3 {
  display: block;
}

@media (min-width: 768px) and (max-width: 900px) {
  .br900-3 {
    display: none;
  }
}
.br990-3 {
  display: block;
}

@media (min-width: 768px) and (max-width: 990px) {
  .br990-3 {
    display: none;
  }
}
.br868 {
  display: block;
}

@media (min-width: 768px) and (max-width: 868px) {
  .br868 {
    display: none;
  }
}
.br999 {
  display: block;
}

@media (min-width: 768px) and (max-width: 999px) {
  .br999 {
    display: none;
  }
}
.show-pc {
  display: none;
}

@media (min-width: 768px) {
  .show-pc {
    display: block;
  }
}
.show-mobile {
  display: none;
}

@media (max-width: 767px) {
  .show-mobile {
    display: block;
  }
}
/* animation */
@keyframes dataFadeDownAni {
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes dataFadeAni {
  100% {
    opacity: 1;
  }
}
@keyframes blink {
  0% {
    opacity: 0.2;
    transform: scale(0.85);
  }
  80% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-3rem);
  }
  60% {
    transform: translateY(-1.5rem);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
[data-ani~=fade-left] {
  opacity: 0;
  transform: translateX(-100px);
}

[data-ani~=fade-right] {
  opacity: 0;
  transform: translateX(100px);
}

[data-ani~=fade-up] {
  opacity: 0;
  transform: translateY(100px);
}

[data-ani~=fade-down] {
  opacity: 0;
  transform: translateY(-100px);
}

[data-ani~=fade] {
  opacity: 0;
}

.animate[data-ani~=fade-up] {
  animation: dataFadeDownAni 1.5s forwards;
}

.animate[data-ani~=fade-down] {
  animation: dataFadeDownAni 1.5s forwards;
}

.animate[data-ani~=fade-left] {
  animation: dataFadeDownAni 1.5s forwards;
}

.animate[data-ani~=fade-right] {
  animation: dataFadeDownAni 1.5s forwards;
}

.animate[data-ani~=fade] {
  animation: dataFadeAni 1.5s forwards;
}

.animate[data-ani~=delay0] {
  animation-delay: 0s;
}

.animate[data-ani~=delay1] {
  animation-delay: 0.1s;
}

.animate[data-ani~=delay2] {
  animation-delay: 0.2s;
}

.animate[data-ani~=delay3] {
  animation-delay: 0.3s;
}

.animate[data-ani~=delay4] {
  animation-delay: 0.4s;
}

.animate[data-ani~=delay5] {
  animation-delay: 0.5s;
}

.animate[data-ani~=delay6] {
  animation-delay: 0.6s;
}

.animate[data-ani~=delay7] {
  animation-delay: 0.7s;
}

.animate[data-ani~=delay8] {
  animation-delay: 0.8s;
}

.animate[data-ani~=delay9] {
  animation-delay: 0.9s;
}

.animate[data-ani~=delay10] {
  animation-delay: 1s;
}

.animate[data-ani~=delay16] {
  animation-delay: 1.6s;
}

.animate[data-ani~=delay18] {
  animation-delay: 1.8s;
}

.animate[data-ani~=delay20] {
  animation-delay: 2s;
}

/* root */
:root {
  --vh: 100%;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "pretendard";
  font-weight: 400;
  font-size: 2rem;
  line-height: 1.2;
  letter-spacing: -0.05em;
  color: #282828;
}

/* reset */
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;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: -0.05em;
}

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

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

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

ul, li, ol {
  list-style: none;
}

table {
  border-collapse: collapse;
}

mark {
  background-color: transparent;
}

textarea {
  resize: none;
}

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

b, strong {
  color: inherit;
  font-weight: 800;
  letter-spacing: -0.05em;
}

/* font-size */
html {
  font-size: 10px;
} /* 브라우저기본 16px 1rem 62.5%(10px) 환산 */
@media (max-width: 1279px) {
  html {
    font-size: 8px;
  }
}
@media (max-width: 767px) {
  html {
    font-size: 7px;
  }
}
/* color */
.main-color {
  color: #092f57;
}

/* quick menu */
@media (min-width: 1600px) {
  aside {
    opacity: 0;
    box-shadow: 1px 1px 50px 0px rgba(100, 100, 100, 0.15);
    transition: opacity 0.5s ease-in-out 0s;
    background: linear-gradient(#147c9e, #092f57);
    position: fixed;
    right: 2.5%;
    top: 13.5%;
    z-index: 1000;
    border-radius: 100px;
    padding: 1.7rem 0.5rem;
    width: 111px;
  }
  aside > ul > li {
    position: relative;
    padding: 2.6rem 0;
  }
  aside > ul > li > a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  aside > ul > li > a > strong {
    font-weight: 400;
    font-size: 1.6rem;
    letter-spacing: -0.03em;
    color: #fff;
  }
  aside > ul > li:not(:last-child)::after {
    content: "";
    display: block;
    position: absolute;
    background-color: rgba(222, 222, 222, 0.5);
    width: 80%;
    height: 1px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  aside > a {
    color: #092f57;
    font-weight: 700;
    font-size: 1.6rem;
    display: block;
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    margin: 0px auto 0;
    letter-spacing: -0.03em;
  }
}
@media (max-width: 1599px) {
  aside {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 55px;
    z-index: 1000;
  }
  aside > ul {
    display: flex;
    background: linear-gradient(#147c9e, #092f57);
    width: 83.3333333333%;
  }
  aside > ul li {
    flex: 1;
  }
  aside > ul li > a {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  aside > ul li > a .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    height: 35px;
    position: relative;
    top: 1px;
  }
  aside > ul li > a .icon > img {
    transform: scale(0.52);
  }
  aside > ul li > a > strong {
    font-size: 11.5px;
    font-weight: 400;
    position: absolute;
    bottom: 5px;
    color: #fff;
  }
  aside > a {
    width: 16.6666666667%;
    display: inline-block;
    background-color: #fff;
    box-sizing: border-box;
    text-align: center;
    line-height: 55px;
    color: #092f57;
    font-weight: 800;
    font-size: 11.5px;
    border-top: 1px solid rgba(100, 100, 100, 0.15);
  }
}
/* header */
@media (min-width: 1280px) {
  header.mobile {
    display: none;
  }
  header.pc h1 {
    padding: 3.1rem 0 2.6rem;
    text-align: center;
  }
  header.pc nav {
    border-top: 1px solid #b6b6b6;
    border-bottom: 1px solid #b6b6b6;
    position: relative;
    z-index: 10;
    max-width: 1920px;
    margin: 0 auto;
    transition: all 0.5s ease-in-out;
  }
  header.pc nav .gnb {
    display: flex;
    justify-content: center;
    box-shadow: none;
    gap: 3.95%;
  }
  header.pc nav .gnb li a {
    position: relative;
    display: inline-block;
    padding: 2.3rem 0;
    letter-spacing: -0.03em;
  }
  header.pc nav .gnb li a::after {
    transition: width 0.3s ease-in-out;
    content: "";
    display: block;
    position: absolute;
    height: 10px;
    width: 0;
    background-color: #092f57;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  header.pc nav .gnb li a:hover::after {
    width: 118%;
  }
}
@media (max-width: 1279px) {
  header.pc {
    display: none;
  }
  header.mobile {
    transition: all 0.5s ease-in-out;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1001;
    background-color: #fff;
  }
  header.mobile .header-top {
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
  }
  header.mobile .header-top h1 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    padding: 10px 0;
  }
  header.mobile .header-top h1 a img {
    width: 240px;
  }
  header.mobile .header-top .hbr-menu {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 5px;
    cursor: pointer;
  }
  header.mobile .header-top .hbr-menu > span {
    font-family: "nanum";
    display: block;
    height: 1px !important;
    background-color: #092f57;
    position: relative;
  }
  header.mobile .header-top .hbr-menu > span:first-child {
    width: 20px;
    top: 10px;
    left: 3px;
  }
  header.mobile .header-top .hbr-menu > span:last-child {
    width: 12px;
    left: 11px;
    top: 15px;
  }
  header.mobile nav {
    transition: transform 0.5s ease-in-out 0s;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: calc(100vh - 135px);
    background-color: #092f57;
    z-index: 1005;
    padding-top: 135px;
  }
  header.mobile nav .inner-box {
    padding: 0 25px;
  }
  header.mobile nav .inner-box ul li {
    position: relative;
  }
  header.mobile nav .inner-box ul li a {
    font-family: "nanum";
    overflow: hidden;
    font-weight: 600;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    position: relative;
    padding-bottom: 25px;
    margin-top: 25px;
    display: inline-block;
  }
  header.mobile nav .inner-box ul li a .num {
    color: #ddd;
    opacity: 0;
    font-size: 17.5px;
    transition: opacity 1.3s;
    transition-delay: 0.6s;
    display: inline-block;
    width: 35px;
  }
  header.mobile nav .inner-box ul li a .title {
    display: inline-block;
    transition: transform 0.75s;
    transition-delay: 0.75s;
    transform: translateY(-120%);
  }
  header.mobile nav .inner-box ul li::before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #fff;
    opacity: 0.1;
    bottom: 15px;
  }
  header.mobile nav .inner-box ul li::after {
    content: "";
    display: block;
    position: absolute;
    height: 1px;
    width: 100%;
    background-color: #fff;
    bottom: 15px;
    opacity: 0.5;
    transform: scaleX(0);
    transition: transform 1.3s;
    transition-delay: 0.4s;
    transform-origin: left;
  }
  header.mobile nav .inner-box ul li.animate::after {
    transform: scaleX(1);
  }
  header.mobile nav .inner-box ul li.animate .num {
    display: inline-block;
    opacity: 0.8;
  }
  header.mobile nav .inner-box ul li.animate .title {
    transform: translateY(0%);
  }
  header.mobile nav .x-button {
    position: absolute;
    top: 30px;
    right: 10px;
    width: 27px;
    height: 27px;
    cursor: pointer;
  }
  header.mobile nav .x-button > span {
    display: block;
    width: 20px;
    height: 2px;
    background-color: #ddd;
    opacity: 0.8;
  }
  header.mobile nav .x-button > span:first-child {
    transform: rotate(-45deg);
  }
  header.mobile nav .x-button > span:last-child {
    position: relative;
    bottom: 2px;
    transform: rotate(45deg);
  }
  header.mobile nav .x-button::after {
    content: "";
    display: block;
    position: absolute;
    top: -16px;
    right: 0px;
    width: 30px;
    height: 30px;
    border: 2px solid rgba(221, 221, 221, 0.7);
    border-radius: 50%;
  }
}
@media (max-width: 767px) {
  header.mobile .header-top h1 {
    padding: 7.5px 0;
  }
  header.mobile .header-top h1 a {
    display: flex;
    align-items: center;
  }
  header.mobile .header-top h1 a img {
    width: 160px;
  }
  header.mobile .header-top .hbr-menu > span:first-child {
    width: 18px;
    left: 7px;
    top: 11px;
  }
  header.mobile .header-top .hbr-menu > span:last-child {
    width: 10px;
    left: 15px;
    top: 15px;
  }
  header.mobile nav {
    padding-top: 100px;
    height: calc(100vh - 100px);
  }
  header.mobile nav .inner-box {
    padding: 0 20px;
  }
  header.mobile nav .inner-box ul li a {
    padding-bottom: 15px;
    margin-top: 15px;
  }
  header.mobile nav .inner-box ul li a .num {
    width: 27px;
    font-size: 14px;
  }
  header.mobile nav .inner-box ul li a .title {
    font-size: 16px;
  }
  header.mobile nav .inner-box ul li::before {
    bottom: 10px;
  }
  header.mobile nav .inner-box ul li::after {
    bottom: 10px;
  }
  header.mobile nav .x-button {
    top: 25px;
    right: 5px;
  }
  header.mobile nav .x-button > span {
    width: 16px;
  }
  header.mobile nav .x-button::after {
    top: -14px;
    right: 4px;
    width: 26px;
    height: 26px;
  }
}
/* footer */
footer {
  background-image: url("../img/footer_bg.png");
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-top: 6.4rem;
  padding-bottom: 29rem;
  padding-left: 13.7%;
  padding-right: 20px;
}
footer .footer-inner {
  max-width: 1920px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 19rem;
}
footer .footer-inner .footer-left {
  position: relative;
}
footer .footer-inner .footer-left::after {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 8.4rem;
  right: -8.5rem;
  top: 50%;
  transform: translateY(-50%);
  background-color: #ccc;
}
footer .footer-inner .footer-right ul {
  display: flex;
  gap: 5rem;
  padding-bottom: 3rem;
}
footer .footer-inner .footer-right ul li {
  cursor: pointer;
  letter-spacing: -0.01em;
  font-size: 1.4rem;
  position: relative;
  color: #fff;
}
footer .footer-inner .footer-right ul li:not(:last-child)::after {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 90%;
  background-color: #fff;
  top: 50%;
  transform: translateY(-50%);
  right: -2.3rem;
}
footer .footer-inner .footer-right address {
  text-transform: uppercase;
  font-size: 1.4rem;
  color: #fffefe;
  opacity: 0.5;
}

@media (max-width: 1279px) {
  footer {
    margin-bottom: 45px;
    padding-bottom: 20rem;
    padding-left: 8%;
    padding-right: 40px;
  }
  footer .footer-inner {
    gap: 10rem;
  }
  footer .footer-inner .footer-left::after {
    content: "";
    display: block;
    position: absolute;
    width: 1px;
    height: 7rem;
    right: -5rem;
    top: 50%;
    transform: translateY(-50%);
    background-color: #ccc;
  }
  footer .footer-inner .footer-right ul {
    padding-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  footer {
    background-attachment: unset;
    padding-right: 6.5%;
    padding-left: 6.5%;
    padding-bottom: 18rem;
  }
  footer .footer-inner {
    flex-direction: column;
    gap: 5rem;
  }
  footer .footer-inner .footer-left h2 img {
    width: 200px;
  }
  footer .footer-inner .footer-left::after {
    display: none;
  }
  footer .footer-inner .footer-right ul {
    padding-bottom: 3rem;
    justify-content: center;
  }
  footer .footer-inner .footer-right ul li {
    font-size: 1.5rem;
  }
  footer .footer-inner .footer-right address {
    text-align: center;
    font-size: 1.3rem;
  }
}
/* popup */
#popup-wrap {
  width: 500px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  top: calc(50% + 10px);
  z-index: 11001;
  display: none;
}

#popup-wrap .swiper-slide {
  height: 707px;
  cursor: pointer;
}

#popup-wrap .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#popup-wrap .popup-slide-btn {
  background: #fff;
  display: flex;
  flex-wrap: wrap;
  color: #fff;
}

#popup-wrap .popup-slide-btn .item {
  width: 25%;
  border-bottom: 1px solid #999;
  box-sizing: border-box;
  font-size: 15px;
  height: 40px;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
}

#popup-wrap .popup-slide-btn .item.active {
  background: #000;
  color: #fff;
}

#popup-wrap .popup-slide-btn .item:not(:nth-child(4n)) {
  border-right: #999 solid 1px;
}

#popup-wrap .popup-control {
  z-index: 2;
  position: relative;
  top: -1px;
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 31px;
  padding: 0 7.5px;
}

#popup-wrap .popup-control .popup-reject {
  display: flex;
}

#popup-wrap .popup-control .popup-reject input {
  width: 13px;
  height: 13px;
  margin: 0 5px 0 0;
  cursor: pointer;
}

#popup-wrap .popup-control .popup-reject label {
  font-size: 13px;
  cursor: pointer;
  color: #fff;
}

#popup-wrap .popup-control .popup-close {
  font-size: 13px;
  cursor: pointer;
  color: #fff;
}

@media (min-width: 500px) and (max-height: 800px) {
  #popup-wrap {
    width: auto;
    max-width: 500px;
    height: 80%;
    bottom: 0;
  }
  #popup-wrap .swiper-container,
  #popup-wrap .swiper-wrapper {
    height: calc(100% - 31px);
  }
  #popup-wrap .swiper-slide {
    position: relative;
    bottom: -0.5rem;
    height: 100%;
  }
  #popup-wrap .swiper-slide img {
    -o-object-fit: contain;
       object-fit: contain;
  }
  #popup-wrap .popup-slide-btn {
    display: none;
  }
  #popup-wrap .popup-control {
    z-index: 2;
    top: -31px;
  }
  #popup-wrap .popup-control .popup-reject label,
  #popup-wrap .popup-control .popup-close {
    font-size: 12px;
    z-index: 2;
  }
}
@media (min-width: 500px) and (max-width: 600px) and (max-height: 800px) {
  #popup-wrap {
    height: -moz-fit-content;
    height: fit-content;
  }
  #popup-wrap .popup-control {
    z-index: 2;
    top: unset;
  }
}
@media (max-width: 499px) {
  #popup-wrap {
    width: 100%;
    top: unset;
    left: unset;
    transform: unset;
    bottom: 0;
  }
  #popup-wrap .swiper-slide {
    position: relative;
    bottom: -0.5rem;
    height: 100%;
  }
  #popup-wrap .popup-slide-btn {
    display: none;
  }
  #popup-wrap .popup-control {
    z-index: 2;
    top: unset;
  }
  #popup-wrap .popup-control .popup-reject label,
  #popup-wrap .popup-control .popup-close {
    font-size: 12px;
  }
}
/* popup-dim */
.popup-dim {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 10001;
}

/* nopay */
.nopay {
  visibility: hidden;
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100vh;
  z-index: 1002;
  background: rgba(0, 0, 0, 0.75);
  padding: 20px;
  width: calc(100% - 40px);
}
.nopay.show {
  visibility: visible;
  pointer-events: auto;
  height: 100%;
  overflow-y: auto;
}

@media (max-width: 1279px) {
  .nopay {
    padding: 40px 20px 0px 20px;
  }
  .nopay img {
    max-width: unset;
    width: calc(100% - 50px);
  }
}
@media (max-width: 767px) {
  .nopay {
    padding: 30px 20px 0px 20px;
  }
  .nopay img {
    max-width: unset;
    width: 100%;
  }
}/*# sourceMappingURL=common.css.map */