@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;
  }
}
.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;
  }
}
.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-mo {
  display: none;
}

@media (max-width: 767px) {
  .show-mo {
    display: block;
  }
}
/* animation */
@keyframes dataFadeDownAni {
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes dataFadeAni {
  100% {
    opacity: 1;
  }
}
@keyframes borderColorCircle {
  0% {
    border-color: transparent;
  }
  25% {
    border-color: transparent #666 transparent transparent;
  }
  50% {
    border-color: transparent #666 #666 transparent;
  }
  75% {
    border-color: transparent #666 #666 #666;
  }
  100% {
    border-color: #666;
  }
}
@keyframes borderColorCircleReverse {
  0% {
    border-color: #666;
  }
  25% {
    border-color: #666 #666 #666 transparent;
  }
  50% {
    border-color: #666 #666 transparent transparent;
  }
  75% {
    border-color: #666 transparent transparent transparent;
  }
  100% {
    border-color: transparent;
  }
}
[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] {
  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~=delay11] {
  animation-delay: 1.1s;
}

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

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

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

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

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

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

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

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

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

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

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

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

body {
  font-family: "Nanum";
  font-weight: 400;
  letter-spacing: -0.075em;
  font-size: 1.8rem;
  line-height: 1.3333333333;
  color: #333;
}

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

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

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: 700;
}

p {
  letter-spacing: -0.075em;
}

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

.sub-color {
  color: #41f3d4;
}

/* quick menu */
@media (min-width: 1600px) {
  aside {
    transition: opacity 0.5s ease-in-out 0s;
    opacity: 0;
    position: fixed;
    right: 0;
    top: 21%;
    z-index: 1000;
  }
  aside > ul {
    background-color: #fff;
    border-top-left-radius: 50px;
    padding: 0 2.05rem;
    box-shadow: 1px 1px 50px 0px rgba(0, 0, 0, 0.15);
  }
  aside > ul > li {
    padding: 2.1rem 2.05rem;
  }
  aside > ul > li > a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.6rem;
  }
  aside > ul > li > a > strong {
    font-weight: 400;
    font-size: 1.6rem;
    letter-spacing: -0.05em;
  }
  aside > ul > li:first-child {
    padding: 3rem 2.05rem 2.5rem;
  }
  aside > ul > li:not(:last-child) {
    border-bottom: 1px solid #c9c9c9;
  }
  aside .quick-top-btn {
    cursor: pointer;
    border-bottom-left-radius: 50px;
    box-shadow: 1px 1px 10px 0px rgba(7, 0, 1, 0.2);
    text-align: center;
    background-color: #005d7d;
  }
  aside .quick-top-btn span {
    color: #fff;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: -0.05em;
    display: inline-block;
    padding: 2.15rem 0 2.15rem;
  }
}
@media (max-width: 1599px) {
  aside {
    display: flex;
    height: 48px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
  }
  aside > ul {
    border-top: 1px solid #ccc;
    width: 80%;
    display: flex;
    background-color: #fff;
  }
  aside > ul > li {
    flex: 1;
  }
  aside > ul > li > a {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  aside > ul > li > a > img {
    transform: scale(0.52);
    transform-origin: top center;
    position: relative;
    top: 4px;
  }
  aside > ul > li > a > strong {
    font-size: 11px;
    position: absolute;
    bottom: 1px;
    letter-spacing: -0.05em;
  }
  aside > ul > li:nth-child(2) img {
    top: 7px;
    transform: scale(0.42);
  }
  aside > ul > li:nth-child(3) img {
    top: 8px;
    transform: scale(0.42);
  }
  aside > ul > li:nth-child(4) img {
    top: 7px;
    transform: scale(0.4);
  }
  aside > .quick-top-btn {
    cursor: pointer;
    border-top: 1px solid #005d7d;
    width: 20%;
    background-color: #005d7d;
  }
  aside > .quick-top-btn > span {
    display: block;
    text-align: center;
    line-height: 48px;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: -0.05em;
  }
}
/* header */
@media (min-width: 1280px) {
  header.mobile {
    display: none;
  }
  header.pc .header-top {
    padding: 3.4rem 0 2.7rem;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  header.pc .header-top h1 {
    position: relative;
    z-index: 2;
  }
  header.pc .header-top h1 a {
    display: inline-block;
    height: 100%;
  }
  header.pc .header-top .tel-wrap {
    max-width: 986px;
    margin: 0 auto;
    width: 100%;
    position: absolute;
    display: flex;
    justify-content: flex-end;
  }
  header.pc .header-top .tel-wrap a {
    background-image: url("../img/header_tel_icon.png");
    background-repeat: no-repeat;
    background-position: 19px 50%;
    background-color: #005d7d;
    width: 19.3rem;
    height: 4rem;
    display: inline-block;
    border-radius: 100px;
    text-align: center;
    line-height: 4.2rem;
  }
  header.pc .header-top .tel-wrap a span {
    padding-left: 26px;
    color: #fff;
    font-family: "GMS";
    font-weight: 700;
    font-size: 1.9rem;
    letter-spacing: -0.013em;
  }
  header.pc nav {
    transition: all 0.5s ease-in-out 0s;
  }
  header.pc nav ul {
    display: flex;
    justify-content: center;
    gap: 3.75vw;
  }
  header.pc nav ul li {
    font-size: 2.2rem;
    letter-spacing: -0.05em;
  }
  header.pc nav ul li a {
    position: relative;
    display: inline-block;
    padding: 2.05rem 0;
  }
  header.pc nav ul li a:hover {
    font-weight: 600;
  }
  header.pc nav ul li a:hover::after {
    width: 113%;
  }
  header.pc nav ul li a::after {
    content: "";
    display: block;
    position: absolute;
    width: 0;
    height: 8px;
    background-color: #005d7d;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    transition: width 0.3s ease-in-out 0s;
  }
  header.pc nav.fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background-color: #fff;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
  }
  header.pc nav.fixed a {
    color: #005d7d;
  }
  header.pc nav.fixed2 {
    position: fixed;
    top: 122px;
    left: 0;
    right: 0;
    z-index: 100;
    background-color: #fff;
    box-shadow: none;
  }
  header.pc nav.fixed2 a {
    color: #333;
  }
}
@media (max-width: 1279px) {
  header.pc {
    display: none;
  }
  header.mobile {
    transition: all 0.5s ease-in-out 0s;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1001;
    background-color: #fff;
  }
  header.mobile .header-top h1 {
    padding: 7px 0 6px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  header.mobile .header-top h1 a {
    line-height: normal;
  }
  header.mobile .header-top h1 a img {
    width: 220px;
  }
  header.mobile .header-top .hbr-menu {
    transition: opacity 0.3s linear 0s;
    opacity: 1;
    width: 25px;
    height: 25px;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 7.5px;
  }
  header.mobile .header-top .hbr-menu > span {
    display: block;
    height: 1px !important;
    background-color: #005d7d;
  }
  header.mobile .header-top .hbr-menu > span:first-child {
    width: 20px;
  }
  header.mobile .header-top .hbr-menu > span:last-child {
    width: 13px;
    position: relative;
    top: 4px;
    left: 7px;
  }
  header.mobile .header-top .hbr-menu.fade {
    opacity: 0;
  }
  header.mobile nav {
    transition: transform 0.5s ease-in-out 0s;
    transform: translateX(-100%);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    background-color: #005d7d;
    padding-top: 100px;
  }
  header.mobile nav ul li {
    position: relative;
    margin-left: 10px;
  }
  header.mobile nav ul li a {
    width: calc(100% - 20px);
    display: inline-block;
    margin: 17.5px 10px;
    color: #fff;
    font-weight: 500;
    font-size: 17.5px;
    overflow: hidden;
  }
  header.mobile nav ul li a > .num {
    display: inline-block;
    width: 36px;
    font-size: 16.5px;
    color: #ddd;
    opacity: 0;
    transition: opacity 1.3s;
    transition-delay: 0.6s;
  }
  header.mobile nav ul li a > .title {
    display: inline-block;
    transition-timing-function: ease;
    transition: transform 0.8s;
    transition-delay: 0.5s;
    transform: translateY(120%);
  }
  header.mobile nav ul li::after {
    content: "";
    display: block;
    position: absolute;
    height: 1px;
    width: calc(100% - 30px);
    left: 5px;
    background-color: #fff;
    bottom: 12.5px;
    opacity: 0.1;
  }
  header.mobile nav ul li::before {
    content: "";
    display: block;
    position: absolute;
    height: 1px;
    width: calc(100% - 30px);
    left: 5px;
    background-color: #fff;
    bottom: 12.5px;
    opacity: 0.5;
    transform: scaleX(0);
    transition: transform 1.3s;
    transition-delay: 0.4s;
    transform-origin: left;
  }
  header.mobile nav ul li.animate::before {
    transform: scaleX(1);
  }
  header.mobile nav ul li.animate > a > .num {
    opacity: 0.8;
  }
  header.mobile nav ul li.animate > a > .title {
    transform: translateY(0%);
  }
  header.mobile nav .x-button {
    transition: all 0.5s ease-out 0.6s;
    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%;
  }
  header.mobile nav.show {
    transform: translateX(0px);
  }
}
@media (max-width: 767px) {
  header.mobile .header-top h1 {
    padding: 8px 0px 4px;
  }
  header.mobile .header-top h1 a img {
    width: 180px;
  }
  header.mobile .header-top .hbr-menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    top: 10px;
    right: 3px;
  }
  header.mobile .header-top .hbr-menu > span:first-child {
    width: 18px;
    top: 8px;
    position: absolute;
  }
  header.mobile .header-top .hbr-menu > span:last-child {
    width: 11px;
    position: absolute;
    top: 13px;
  }
}
/* footer */
footer {
  background-color: #333;
}
footer ul {
  display: flex;
  justify-content: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding: 4.15rem 0;
}
footer ul li {
  position: relative;
  padding: 0 2.5rem;
  font-size: 1.6rem;
  color: #fff;
  cursor: pointer;
}
footer ul li:not(:last-child)::after {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 80%;
  background-color: #fff;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
footer h2 {
  padding: 6.5rem 0 4rem;
  display: flex;
  justify-content: center;
}
footer address {
  padding: 0 20px;
  line-height: 1.5625;
  font-size: 1.6rem;
  color: #fff;
  letter-spacing: -0.05em;
  text-align: center;
  padding-bottom: 11rem;
}

@media (max-width: 1279px) {
  footer {
    margin-bottom: 48px;
  }
  footer ul {
    padding: 3.5rem 0;
  }
  footer h2 {
    padding: 5.5rem 0 4rem;
  }
  footer h2 img {
    width: 300px;
  }
  footer address {
    font-size: 1.4rem;
    padding-bottom: 9rem;
  }
}
@media (max-width: 767px) {
  footer ul {
    padding: 3rem 0;
  }
  footer ul li {
    font-size: 1.4rem;
  }
  footer h2 {
    padding: 3rem 0 3rem;
  }
  footer h2 img {
    width: 220px;
  }
  footer address {
    font-size: 1.3rem;
    padding-bottom: 7rem;
  }
  footer address br {
    display: none;
  }
}
/* 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: 200;
  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: 767px) {
  .nopay {
    align-items: flex-start;
    padding: 20px;
    width: calc(100% - 40px);
  }
}/*# sourceMappingURL=common.css.map */