@charset "UTF-8";
@import url("font.css");
/* reset */
html, body, div, ul, ol, li, dl, dt, dd, p, strong, span, em, a, table, th, td, caption, input, button, textarea, label, form, legend, fieldset, select, hr, h1, h2, h3, h4, h5, h6, img {
  padding: 0;
  margin: 0;
  border: 0;
  color: inherit;
  background: none;
  line-height: inherit;
  font-size: inherit;
  font-family: inherit;
}

html, body {
  height: 100%;
  min-height: 100%;
  font-weight: 400;
  line-height: 1.6;
  font-family: "Pretendard", "Noto Sans KR", "맑은 고딕", "Malgun Gothic", "Open Sans", HelveticaNeue-Light, AppleSDGothicNeo-Light, sans-serif !important;
  letter-spacing: -0.01em;
  word-break: keep-all;
}

html {
  font-size: 10px;
}

h1, h2, h3, h4, h5, h6, strong {
  font-weight: 500;
}

*, :after, :before {
  box-sizing: border-box;
  vertical-align: top;
}

header, footer, nav {
  display: block;
}

table {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
}

th, td {
  vertical-align: middle;
}

input {
  -webkit-appearance: none;
  border-radius: 0;
  color: #222;
}

select, button {
  cursor: pointer;
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
}

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

i, em {
  font-style: normal;
}

textarea {
  resize: vertical;
}

textarea ul,
textarea ol {
  list-style: disc;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
  outline: none;
}

select::-ms-expand {
  display: none;
}

input, textarea, button, select {
  border-radius: 0;
  box-shadow: none;
  outline: none;
}

b {
  font-weight: 800;
}

::-moz-placeholder {
  color: #999;
}

::placeholder {
  color: #999;
}

:root {
  --100vh: 100vh;
  --header-height: 8rem;
  --blue-dark: #003886;
  --blue-light: #0059D6;
  --bg-sky: #F5F8FB;
  --filter-white: invert(100%) sepia(0%) saturate(100%) hue-rotate(0deg) brightness(100%) contrast(100%);
  --filter-blue: invert(14%) sepia(65%) saturate(3134%) hue-rotate(207deg) brightness(95%) contrast(103%);
  --filter-blue-light: invert(19%) sepia(94%) saturate(4177%) hue-rotate(209deg) brightness(92%) contrast(101%);
  --cormorant: "Cormorant","Pretendard", "Noto Sans KR", "맑은 고딕", "Malgun Gothic", "Open Sans",HelveticaNeue-Light,AppleSDGothicNeo-Light,sans-serif !important;
}
@media screen and (max-width: 1024px) {
  :root {
    --header-height: 60px;
  }
}
@supports (height: 100dvh) {
  :root {
    --100vh: 100dvh;
  }
}

/*** common ***/
.hide {
  display: none;
}

.blind, .sound_only {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0.1;
  font-size: 0;
  line-height: 0;
  text-indent: -9999px;
}

.w100 {
  width: 100% !important;
}

.w50 {
  width: 50% !important;
}

.tac {
  text-align: center !important;
}

.tal {
  text-align: left !important;
}

.tar {
  text-align: right !important;
}

.fwb {
  font-weight: bold;
}

.ib {
  display: inline-block;
}

.block {
  display: block;
}

.ellip {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.ellip2 {
  overflow: hidden;
  text-overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.ellip3 {
  overflow: hidden;
  text-overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

/* layout */
#wrap {
  padding-top: var(--header-height);
  font-size: 1.8rem;
}

.wfix {
  max-width: 1440px;
  margin: 0 auto;
}

@media screen and (max-width: 1480px) {
  .wfix {
    padding: 0 20px;
  }
}
@media screen and (max-width: 1024px) {
  html {
    font-size: 1vw;
  }
}
#header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
  transition: 0.3s;
  z-index: 999;
}
#header .wfix {
  position: relative;
  text-align: center;
}
#header #h1 {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  height: var(--header-height);
}
#header #h1 a {
  display: block;
  width: 24.8rem;
  height: 4.8rem;
  background: url(../img/logo.png) no-repeat center/contain;
  font-size: 0;
}
#header #gnb {
  display: inline-block;
}
#header #gnb .list_menu {
  display: inline-flex;
  align-items: center;
  gap: 7.2rem;
}
#header #gnb .list_menu > li {
  position: relative;
  display: flex;
  height: var(--header-height);
  align-items: center;
}
#header #gnb a {
  display: block;
}
#header #gnb .d1_link {
  line-height: 6rem;
  padding: 0 0.8rem;
  font-weight: 600;
  font-size: 2rem;
}
#header #gnb .wrap_sub {
  position: absolute;
  top: var(--header-height);
  left: 50%;
  margin-top: -1.2rem;
  height: 0;
  overflow: hidden;
  padding: 0 2rem;
  border-radius: 5.2rem;
  transform: translateX(-50%);
  background: var(--blue-dark);
  font-size: 0;
  transition: 0.2s;
  z-index: 2;
}
#header #gnb .wrap_sub .list_sub {
  display: flex;
  gap: 20px;
  padding: 0.8rem 0;
}
#header #gnb .wrap_sub a {
  display: flex;
  align-items: center;
  height: 3.6rem;
  padding: 0 0.8rem;
  white-space: nowrap;
  font-size: 1.8rem;
  color: #fff;
  opacity: 0.8;
  transition: 0.2s;
}
@media screen and (min-width: 1440px) {
  #header #gnb .wrap_sub a:hover {
    opacity: 1;
  }
}
#header #gnb .on .d1_link {
  position: relative;
  color: var(--blue-dark);
}
#header #gnb .on .d1_link:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -1em);
  width: 4px;
  height: 4px;
  background: var(--blue-light);
  border-radius: 100%;
  content: "";
}
#header #gnb .on .wrap_sub {
  height: 5.2rem;
}
#header .right {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  height: var(--header-height);
}
#header .right .btn_contact {
  display: inline-flex;
  align-items: center;
  height: 4rem;
  padding: 0 2rem;
  background: var(--blue-dark);
  border-radius: 4rem;
  font-size: 1.8rem;
  color: #fff;
  font-weight: 600;
}
#header .right .btn_menu {
  display: none;
}
@media screen and (max-width: 1480px) {
  #header #h1 {
    left: 20px;
  }
  #header .right {
    right: 20px;
  }
}
@media screen and (max-width: 1024px) {
  #header .wfix {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  #header #h1, #header .right {
    position: relative;
    left: auto;
    right: auto;
  }
  #header #h1 {
    z-index: 99;
  }
  #header #h1 a {
    width: 180px;
    height: 36px;
    background-image: url(../img/logo.png);
  }
  #header #gnb {
    position: fixed;
    top: 0;
    left: 100vw;
    width: 100vw;
    bottom: 0;
    background: #fff;
    padding: var(--header-height) 5vw 10vw;
    transition: 0.3s;
  }
  #header #gnb .list_menu {
    display: block;
    padding-top: 20px;
  }
  #header #gnb .list_menu > li {
    display: block;
    height: auto;
  }
  #header #gnb .list_menu > li + li {
    margin-top: 12px;
  }
  #header #gnb .list_menu .d1_link {
    position: relative;
    width: 100%;
    font-size: 28px;
    line-height: var(--header-height);
    text-align: left;
    pointer-events: none;
    color: #000;
  }
  #header #gnb .list_menu .d1_link:after {
    position: absolute;
    top: 50%;
    right: 10px;
    width: 20px;
    height: 20px;
    margin-top: -10px;
    background: url(../img/arrow01.svg) no-repeat right center/contain;
    transition: 0.3s;
    content: "";
  }
  #header #gnb .list_menu .on .d1_link {
    color: #000;
  }
  #header #gnb .list_menu .on .d1_link:before {
    display: none;
  }
  #header #gnb .list_menu .on .d1_link:after {
    transform: rotate(180deg);
    filter: var(--filter-blue);
  }
  #header #gnb .wrap_sub {
    display: none;
    position: relative;
    top: auto;
    left: auto;
    height: auto;
    margin-top: 0;
    padding: 0 0 0 20px;
    border-radius: 0;
    transform: unset;
    background: none;
    transition: unset;
  }
  #header #gnb .wrap_sub .list_sub {
    display: block;
    padding: 0 0 20px;
  }
  #header #gnb .wrap_sub .list_sub a {
    height: 48px;
    font-size: 20px;
    color: #000;
  }
  #header #gnb .on .wrap_sub {
    height: auto;
  }
  #header .right .btn_menu {
    display: block;
    position: relative;
    width: 50px;
    height: 50px;
    font-size: 0;
  }
  #header .right .btn_menu:before, #header .right .btn_menu:after, #header .right .btn_menu span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 28px;
    height: 2px;
    margin-left: -14px;
    background: #000;
    transition: 0.2s;
    content: "";
  }
  #header .right .btn_menu:before {
    margin-top: -10px;
  }
  #header .right .btn_menu:after {
    margin-top: 8px;
  }
  #header .right .btn_menu span {
    margin-top: -1px;
  }
  #header .right .btn_contact {
    display: inline-flex;
    position: fixed;
    left: 24px;
    bottom: -60px;
    padding: 0;
    background: none;
    color: var(--blue-light);
    gap: 8px;
    font-size: 18px;
    transition: 0.3s;
    opacity: 0;
  }
  #header .right .btn_contact:after {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url(../img/arrow05.svg) no-repeat center/contain;
    filter: var(--filter-blue-light);
    content: "";
  }
  #header.active #h1 a {
    background-image: url(../img/logo.png);
  }
  #header.active #gnb {
    left: 0;
  }
  #header.active .right .btn_menu span {
    opacity: 0;
  }
  #header.active .right .btn_menu:before {
    margin-top: -1px;
    transform: rotate(45deg);
  }
  #header.active .right .btn_menu:after {
    margin-top: -1px;
    transform: rotate(-45deg);
  }
  #header.active .right .btn_contact {
    bottom: 32px;
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  #header .wfix {
    padding: 0 16px;
  }
}
@media screen and (max-width: 440px) {
  #header #gnb {
    padding-left: 24px;
    padding-right: 24px;
  }
}

#footer {
  padding: 4rem 0;
}
#footer .wfix {
  display: flex;
  gap: 6rem;
}
#footer .ft_logo {
  width: 24.8rem;
  height: 4.8rem;
  background: url(../img/logo.png) no-repeat center/contain;
  font-size: 0;
  flex-shrink: 0;
}
#footer .ft_info {
  flex-grow: 1;
  flex-shrink: 0;
  line-height: 1.6;
  font-size: 0;
  opacity: 0.7;
}
#footer .ft_info span {
  display: inline-block;
  font-size: 1.4rem;
}
#footer .ft_info span + span {
  position: relative;
  margin-left: 1em;
  padding-left: calc(1em + 1px);
}
#footer .ft_info span + span:before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 1em;
  transform: translateY(-50%);
  background: #aaa;
  content: "";
}
#footer .ft_info .copyright {
  font-size: 1.4rem;
}
#footer .ft_privacy {
  text-align: right;
  font-size: 1.4rem;
  opacity: 0.7;
}
#footer .ft_privacy a {
  display: inline-block;
  text-decoration: underline;
  font-weight: 600;
}
#footer .ft_privacy span {
  display: block;
}
@media screen and (max-width: 1280px) {
  #footer .wfix {
    display: block;
    overflow: hidden;
  }
  #footer .ft_info,
  #footer .ft_privacy {
    display: inline-block;
  }
  #footer .ft_logo {
    float: left;
    margin-right: 40px;
  }
  #footer .ft_privacy {
    margin-top: 20px;
    text-align: left;
    padding-left: calc(24.8rem + 40px);
  }
}
@media screen and (max-width: 1024px) {
  #footer .wfix {
    text-align: center;
  }
  #footer .ft_logo {
    float: none;
    display: block;
    margin: 0 auto;
  }
  #footer .ft_info {
    display: block;
    margin-top: 20px;
  }
  #footer .ft_info span {
    font-size: 12px;
  }
  #footer .ft_info .copyright {
    font-size: 12px;
  }
  #footer .ft_privacy {
    text-align: center;
    padding-left: 0;
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) {
  #footer .ft_logo {
    width: 180px;
    height: 36px;
  }
  #footer .ft_info .address {
    display: block;
  }
  #footer .ft_info .address:before {
    display: none;
  }
}
@media screen and (max-width: 460px) {
  #footer .ft_info .email {
    display: block;
  }
  #footer .ft_info .email:before {
    display: none;
  }
}

.popPrivacy {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 300;
  color: #555;
  background: rgba(255, 255, 255, 0.7);
  z-index: 99999;
}
.popPrivacy .box {
  position: relative;
  width: 700px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 2px solid #222;
}
.popPrivacy .inr {
  max-height: 80vh;
  padding: 50px;
  overflow-y: auto;
}
.popPrivacy .close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  font-size: 0;
}
.popPrivacy .close:before, .popPrivacy .close:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 30px;
  margin: -15px 0 0 -1px;
  background: #222;
  content: "";
}
.popPrivacy .close:before {
  transform: rotate(45deg);
}
.popPrivacy .close:after {
  transform: rotate(-45deg);
}
.popPrivacy dl {
  margin-top: 1em;
}
.popPrivacy dt {
  font-weight: bold;
  color: #000;
  font-size: 1.8rem;
}
@media screen and (max-width: 850px) {
  .popPrivacy .box {
    width: calc(100vw - 40px);
  }
  .popPrivacy .inr {
    padding: 40px 20px;
  }
  .popPrivacy .close {
    top: -2px;
    right: -2px;
    border: 2px solid #222;
  }
}

/* slick */
.slick-slider {
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  min-height: 1px;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}