@charset "UTF-8";
@import url("font.css");
:root {
  --blue: #0c4da2;
}

/* 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: 500;
  line-height: 1.3;
  font-size: 10px;
  font-family: "SUIT", "Noto Sans KR", "맑은 고딕", "Malgun Gothic", "Open Sans", HelveticaNeue-Light, AppleSDGothicNeo-Light, sans-serif !important;
  letter-spacing: -0.01em;
  word-break: keep-all;
}

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

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

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

/*** common ***/
body.hidden {
  overflow: hidden;
}

.hide {
  display: none;
}

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

.mo {
  display: none;
}

.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;
}

.block {
  display: block;
}

.ib {
  display: inline-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;
}

@media screen and (max-width: 768px) {
  .mo {
    display: block;
  }
  .pc {
    display: none;
  }
}
.btn_arrow {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 10rem;
  height: 10rem;
  border-radius: 100%;
  background: var(--blue);
  font-size: 0;
  overflow: hidden;
}
.btn_arrow:before, .btn_arrow:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3.2rem;
  height: 3.2rem;
  margin: -1.6rem 0 0 -1.6rem;
  background: url(../img/icon_arrow.png) no-repeat center/contain;
  filter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(103deg) brightness(100%) contrast(99%);
  transition: 0.3s;
  content: "";
}
.btn_arrow:after {
  transform: translate(-200%, 200%);
}
@media screen and (min-width: 1368px) {
  .btn_arrow:hover:before {
    transform: translate(200%, -200%);
    opacity: 0;
  }
  .btn_arrow:hover:after {
    transform: translate(0, 0);
  }
}
@media screen and (max-width: 768px) {
  .btn_arrow {
    width: 50px;
    height: 50px;
  }
  .btn_arrow:before, .btn_arrow:after {
    width: 16px;
    height: 16px;
    margin: -8px 0 0 -8px;
  }
  .btn_arrow .mo {
    display: block;
  }
  .btn_arrow .pc {
    display: none;
  }
}

/* layout */
#wrap {
  position: relative;
  padding-top: 12rem;
  overflow: hidden;
  font-size: 1.8rem;
}

#container {
  padding-bottom: 20rem;
}

.wide {
  width: 100%;
  padding: 0 5rem;
}

.wfix {
  max-width: 1660px;
  margin: 0 auto;
  padding: 0 4rem;
}

@media screen and (max-width: 1368px) {
  html, body {
    font-size: 0.73vw;
  }
}
@media screen and (max-width: 1024px) {
  html, body {
    font-size: 7.6px;
  }
}
@media screen and (max-width: 768px) {
  html, body {
    font-size: 11px;
  }
  #wrap {
    font-size: inherit;
    padding-top: 60px;
  }
  #container {
    padding-bottom: 100px;
  }
  .wide {
    padding: 0 20px;
  }
  .wfix {
    padding: 0 20px;
  }
  .wide .wfix {
    padding: 0;
  }
}
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 0 5rem;
  transition: 0.3s;
  z-index: 99;
}
#header .wide {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 12rem;
}
#header a {
  display: block;
  white-space: nowrap;
}
#header #h1 .logo {
  width: 18.2rem;
}
#header #menu {
  display: flex;
  align-items: center;
  gap: 12.8rem;
  text-align: center;
}
#header .list_menu {
  display: flex;
  gap: 6rem;
}
#header .list_menu a {
  transition: 0.1s;
}
#header .list_menu .depth1 {
  position: relative;
}
#header .list_menu .depth1 .d1_link {
  position: relative;
  width: 11.2rem;
  line-height: 4.8rem;
  font-weight: 700;
}
#header .list_menu .depth1 .d1_link:after {
  position: absolute;
  top: 0;
  left: 50%;
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--blue);
  border-radius: 100%;
  transform: translate(-50%, 50%);
  transition: 0.3s;
  opacity: 0;
  content: "";
}
#header .list_menu .sub {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 18rem;
  white-space: nowrap;
  padding: 2.8rem 2rem;
  border-radius: 2rem;
  background: var(--blue);
  color: #fff;
}
#header .list_menu .sub_en{ width: auto;}
#header .list_menu .sub li + li {
  margin-top: 1rem;
}
#header .list_menu .sub a {
  line-height: 4rem;
}
#header .right {
  display: flex;
  align-items: center;
  gap: 3.6rem;
  margin-right: -1rem;
}
#header .wrap_language {
  position: relative;
  font-size: 1.6rem;
  width: 8.5rem;
}
#header .wrap_language button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
#header .wrap_language .btn_lang {
  gap: 1.2rem;
  height: 3.8rem;
  border-radius: 3.8rem;
  background-color: #eee;
}
#header .wrap_language .btn_lang:after {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  background: url(../img/icon_arrow02.png) no-repeat center/contain;
  content: "";
}
#header .wrap_language .btn_lang.active:after {
  transform: rotate(180deg);
}
#header .wrap_language .list_lang {
  display: none;
  position: absolute;
  top: calc(100% + 0.5rem);
  width: 100%;
  padding: 0.5rem 0;
  border-radius: 2rem;
  background-color: #eee;
}
#header .wrap_language .list_lang button {
  height: 3.2rem;
  opacity: 0.5;
}
#header .wrap_language .list_lang .on {
  opacity: 1;
  font-weight: 800;
}
#header .btn_menu {
  position: relative;
  width: 4rem;
  height: 4rem;
  background: url(../img/icon_menu.png) no-repeat center/3rem;
  z-index: 100;
  transition: 0.4s;
}
@keyframes menuCircle {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#header .btn_menu.active {
  transform: rotate(135deg);
}
#header .btn_menu.active:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 25rem;
  height: 25rem;
  margin: -12.5rem 0 0 -12.5rem;
  background: url(../img/btn_menu_circle.png) no-repeat center/contain;
  animation: menuCircle 10s linear infinite;
  content: "";
}
#header .btn_menu.white {
  background-image: url(../img/icon_menu_white.png);
}
#header .btn_menu.white:after {
  background-image: url(../img/btn_menu_circle_white.png);
}
#header.active {
  z-index: 100;
  background: none;
}
#header.active #h1, #header.active #menu .list_menu, #header.active .wrap_language {
  display: none;
}
#header.active .wide {
  justify-content: flex-end;
}
#header.hidden {
  transform: translateY(-100%);
}
#header.narrow {
  background-color: #fff;
}
#header.narrow .wide {
  height: 8rem;
}
@media screen and (min-width: 1368px) {
  #header .list_menu .depth1:hover .d1_link {
    font-weight: 800;
  }
  #header .list_menu .depth1:hover .d1_link:after {
    transform: translate(-50%, 0);
    opacity: 1;
  }
  #header .list_menu .sub a:hover {
    font-weight: 800;
  }
}
@media screen and (max-width: 1750px) {
  #header #menu {
    gap: 4vw;
  }
  #header .list_menu {
    gap: 2vw;
  }
}
@media screen and (max-width: 1368px) {
  #header {
    padding: 0;
    font-size: 16px;
  }
}
@media screen and (max-width: 1024px) {
  #header .list_menu {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  #header {
    background-color: #fff;
  }
  #header .wide {
    height: 60px !important;
  }
  #header #h1 .logo {
    width: 91px;
  }
  #header .right {
    gap: 20px;
  }
  #header .wrap_language {
    font-size: 10px;
    width: 50px;
  }
  #header .wrap_language .btn_lang {
    gap: 8px;
    height: 25px;
    border-radius: 25px;
  }
  #header .wrap_language .btn_lang:after {
    width: 5px;
    height: 6px;
  }
  #header .wrap_language .list_lang {
    margin-top: -3px;
    padding: 3px 0;
    border-radius: 12px;
  }
  #header .wrap_language .list_lang button {
    height: 22px;
  }
  #header .btn_menu {
    width: 35px;
    height: 35px;
    background-size: 25px;
  }
  #header .btn_menu.active:after {
    width: 124px;
    height: 124px;
    margin: -62px 0 0 -62px;
  }
}

#sitemap {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  background: var(--blue);
}
@media screen and (min-width: 1024px) {
  #sitemap {
    padding: 0 5rem;
  }
  #sitemap .list_menu {
    display: flex;
    width: 100%;
    height: 100vh;
    transition-delay: 0.2s;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
  }
  #sitemap .list_menu .depth1 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    text-align: center;
  }
  #sitemap .list_menu .depth1 .inner {
    width: 100%;
    color: #fff;
  }
  #sitemap .list_menu .depth1 .inner:before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background: #fff;
    transition: 0.4s;
    content: "";
  }
  #sitemap .list_menu .depth1 .inner .d1_link {
    position: relative;
    font-size: 3.6rem;
    font-weight: 800;
  }
  #sitemap .list_menu .depth1 .inner:hover:before {
    width: 100% !important;
    opacity: 1 !important;
  }
  #sitemap .list_menu .sub {
    position: relative;
    height: 15rem;
    margin-top: 5.8rem;
  }
  #sitemap .list_menu .sub li + li {
    margin-top: 3rem;
  }
  #sitemap .list_menu .sub a {
    font-size: 2.4rem;
    line-height: 3rem;
  }
  #sitemap .list_menu .sub a:hover {
    font-weight: 800;
  }
  #sitemap.active .list_menu .depth1 .inner:before {
    width: 0;
    opacity: 0;
  }
  #sitemap.active .list_menu .depth1 .inner:hover {
    color: #000;
  }
}
@media screen and (max-width: 1024px) {
  #sitemap {
    background-color: #fff;
  }
  #sitemap #allMenu {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    padding: 76px 0;
    background: var(--blue);
    transform: translateX(-100%);
    transition: 0.4s 0.4s;
    overflow-y: auto;
  }
  #sitemap .list_menu {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
  }
  #sitemap .list_menu a {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0 20px;
  }
  #sitemap .list_menu .depth1 {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }
  #sitemap .list_menu .depth1 .d1_link {
    justify-content: space-between;
    height: 60px;
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    height: 60px;
  }
  #sitemap .list_menu .depth1 .d1_link:after {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: url(../img/icon_arrow.png) no-repeat center/contain;
    filter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(103deg) brightness(100%) contrast(99%);
    transform: rotate(90deg);
    transition: 0.3s;
    content: "";
  }
  #sitemap .list_menu .depth1 .d1_link.on:after {
    transform: rotate(0deg);
  }
  #sitemap .list_menu .sub {
    display: none;
    padding: 8px 0;
    background-color: #fff;
    font-size: 12px;
    font-weight: 600;
  }
  #sitemap .list_menu .sub a {
    height: 44px;
  }
  #sitemap.active #allMenu {
    transform: translateX(0);
  }
}

#footer {
  padding-bottom: 30px;
}
#footer .ft_inner {
  position: relative;
  padding: 7.2rem 0 6rem;
  background-color: #333;
  border-radius: 5rem;
  color: #fff;
}
#footer .ft_inner:before {
  position: absolute;
  top: 0px;
  right: -2px;
  width: 66.8rem;
  height: 14rem;
  background: url(../img/footer_deco.png) no-repeat 0 0/contain;
  content: "";
}
#footer .ft_logo img {
  width: 23.2rem;
}
#footer .contents {
  position: relative;
  margin-top: 2.8rem;
  padding-top: 3.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
#footer .list_menu {
  display: flex;
  gap: 8rem;
}
#footer .list_menu .d1_link {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
}
#footer .list_menu .sub {
  margin-top: 2.5rem;
}
#footer .list_menu .sub li + li {
  margin-top: 1rem;
}
#footer .list_menu .sub a {
  display: inline-block;
  font-size: 1.4rem;
  color: #999;
}
#footer .ft_info {
  position: absolute;
  bottom: 0;
  right: 0;
}
#footer .ft_info .tit {
  display: block;
  margin-bottom: 0.77em;
  font-size: 1.8rem;
  font-weight: 800;
}
#footer .ft_info .info {
  display: flex;
  gap: 1.2rem;
  font-size: 1.6rem;
}
#footer .ft_info .info + .info {
  margin-top: 0.5em;
}
#footer .ft_info dd {
  color: #999;
}
#footer .copyright {
	display: flex;
	align-items: center;
  margin-top: 12rem;
  color: #999;
  font-size: 1.4rem;
}
#footer .copyright a{
	font-weight: bold;
}
@media screen and (max-width: 1024px) {
  #footer {
    padding-bottom: 15px;
  }
  #footer .ft_inner {
    padding: 30px 0;
  }
  #footer .ft_info {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 36px;
  }
  #footer .copyright {
    margin-top: 36px;
  }
}
@media screen and (max-width: 768px) {
  #footer .wide .wfix {
    padding: 0 20px;
  }
  #footer .ft_inner {
    border-radius: 25px;
  }
  #footer .ft_inner:before {
    width: 179px;
    height: 70px;
    background-image: url(../img/footer_deco_mo.png);
  }
  #footer .ft_logo img {
    width: 116px;
  }
  #footer .contents {
    margin-top: 15px;
    padding-top: 15px;
  }
  #footer .list_menu {
    display: block;
  }
  #footer .list_menu .depth1 + .depth1 {
    margin-top: 16px;
  }
  #footer .list_menu .depth1 .inner {
    display: flex;
    align-items: flex-start;
	  
  }
  #footer .list_menu .d1_link {
    width: 80px;
    font-size: 11px;
  }
  #footer .list_menu .sub {
    display: flex;
    margin-top: 0;
    gap: 15px;
	  flex-wrap:wrap;
	  width:calc(100% - 80px)
  }
  #footer .list_menu .sub li + li {
    margin-top: 0;
  }
  #footer .list_menu .sub a {
    font-size: 10px;
  }
  #footer .ft_info .tit {
    font-size: 11px;
  }
  #footer .ft_info .info {
    gap: 5px;
    font-size: 10px;
  }
  #footer .copyright {
    font-size: 9px;
  }
}

.floating {
  position: fixed;
  bottom: 5rem;
  right: 5rem;
  z-index: 9;
}
.floating [class^=btn] {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 8rem;
  height: 8rem;
  border-radius: 100%;
  opacity: 0;
  transition: 0.3s;
  cursor: none;
  pointer-events: none;
  z-index: -1;
}
.floating .btn_contact {
  background: url(../img/icon_contact.png) #333 no-repeat center/3.6rem;
  font-size: 0;
}
.floating .btn_top {
  margin-top: 2rem;
  gap: 0.4rem;
  background: #333;
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
}
.floating .btn_top:before {
  display: block;
  width: 2rem;
  height: 2rem;
  background: url(../img/icon_top.png) no-repeat center/contain;
  content: "";
}
.floating.on [class^=btn] {
  opacity: 1;
  cursor: unset;
  pointer-events: unset;
  z-index: unset;
}
.floating.stop {
  position: absolute;
}
@media screen and (min-width: 1368px) {
  .floating [class^=btn]:hover {
    background-color: var(--blue);
    cursor: pointer;
  }
}
@media screen and (max-width: 768px) {
  .floating {
    bottom: 40px;
    right: 20px;
  }
  .floating [class^=btn] {
    width: 40px;
    height: 40px;
  }
  .floating .btn_contact {
    background-size: 18px;
  }
  .floating .btn_top {
    margin-top: 10px;
    gap: 4px;
    font-size: 9px;
  }
  .floating .btn_top:before {
    width: 10px;
    height: 10px;
  }
  .floating.stop {
    bottom: 405px !important;
  }
}

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