@import url('reset.css');
@import url('font.css');
html,
body {
  font-size: 16px;
  color: #000;
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  line-height: 1;
}

.inner {
  margin: 0 auto;
  max-width: 94%;
  width: 1420px;
}

button {
  padding: 0;
}

.d-flex {
  display: flex;
}

.align-items-center {
  align-items: center;
}

.align-items-start {
  align-items: start;
}

.align-items-baseline {
  align-items: baseline;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-between {
  justify-content: space-between;
}

.hidden {
  overflow: hidden;
}

header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 100;
  transition: background 0.3s ease-in-out;
}
header::before{
    content:'';
    position: absolute;
    left:0;
    right:0;
    top:100%;
    height: 1px;
    background-color: #d3d3d3;
    opacity: 0;
    transition:opacity 0.3s;
    z-index: 1;
    pointer-events: none;
}
header::after{
    content:'';
    position: absolute;
    left:0;
    right:0;
    top:0;
    height: 424px;
    background-color: #fff;
    opacity: 0;
    transition:opacity 0.3s;
    z-index: 0;
    pointer-events: none;
    border-bottom: 1px solid #d3d3d3;
}
header.hover::after{
    opacity: 1;
    pointer-events: auto;
}
header.fixed{
    background-color: #fff;
}

header.hover::before,
header.fixed::before{
    opacity: 1;
}
header .inner {
  width: auto;
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
  padding: 0 100px;
  height: 116.5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}
header .inner h1 a {
  display: block;
  position: relative;
}
header .inner h1 a img{
    transition:opacity 0.3s;
}
header .inner h1 a img.white{
    opacity: 0;
    position: absolute;
    left:0;
    right:0;
    top:0;
    bottom:0;
    z-index: 2;
}
header .inner nav{
    height: 100%;
}
header .inner nav>ul {
  display: flex;
  align-items: center;
  height: 100%;
}
header .inner nav>ul>li{
    position: relative;
    height: 100%;
}
header .inner nav>ul>li>a {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 700;
  color: #000;
  height: 100%;
  width: 100%;
  transition:color 0.3s
}
header .inner nav .sub {
    position: absolute;
    left:0;
    top:100%;
    padding-top: 43.5px;
    opacity: 0;
    pointer-events: none;
    transition:0.3s;
}
header.hover .inner nav .sub{
    opacity: 1;
    pointer-events: auto;
}
header .inner nav .sub dt{
    display: none;
}
header .inner nav .sub li+li{
    margin-top: 17px;
}
header .inner nav .sub li a{
    display: block;
    white-space: nowrap;
    font-size: 17px;
    line-height: 21px;
    color:#7c7c7c;
    transition:font 0.2s, color 0.2s;
}
header .inner nav .sub li a:hover,
header .inner nav .sub li a.cur{
    color:#333333;
    font-weight: 600;
}
body.white header h1 a img{
    opacity: 0;
}
body.white header h1 a img.white{
    opacity: 1;
}
body.white header.fixed h1 a img,
body.white header:hover h1 a img{
    opacity: 1 !important;
}
body.white header.fixed h1 a img.white,
body.white header:hover h1 a img.white{
    opacity: 0 !important;
}
body.white header .inner nav>ul>li>a{
    color:#fff;
}
body.white header.fixed .inner nav ul li>a,
body.white header:hover .inner nav ul li>a{
    color:#000;
}
header .inner nav>ul>li + li {
  margin-left: 146px;
}
header .inner .header-right .m-lang{
    display: none;
}
header .inner .header-right .lang {
  position: relative;
  width: 140px;
  color:#333;
  font-size: 15px;
}
header .inner .header-right .lang > button {
    width: 100%;
  display: flex;
  align-items: center;
  border: 0;
  box-sizing: border-box;
  padding:0 34px 0 10px;
  cursor: pointer;
  position: relative;
  justify-content: flex-start;
  background-color: rgba(255,255,255,0.6);
  border-radius:19.5px;
  height:39px;
  transition:background 0.3s;
}
header .inner .header-right .lang > button::after {
  content: "";
  pointer-events: none;
  border-top: 10px solid #333;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  position: absolute;
  right:10px;
  top:50%;
  transform: translate(0,-50%);
}
header.fixed .inner .header-right .lang > button,
header.hover .inner .header-right .lang > button{
    background-color: rgba(208,208,208,0.6);
}
header .inner .header-right .lang .lang-depth {
  position: absolute;
  left:0;
  right:0;
  top:100%;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  padding-top: 9px;
  z-index: 2;
}
header .inner .header-right .lang:hover .lang-depth{
    opacity: 1;
    pointer-events: auto;
}
header .inner .header-right .lang .lang-depth ul{
    background-color:rgba(255,255,255,1);
    border-radius: 12px;
    box-sizing: border-box;
    border:1px solid #333;
}
header .inner .header-right .lang .ko{
    width: 26px;
    height: 26px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    border-radius: 100%;
    background-color: #fff;
    background-image: url(/assets/images/common/icon_ko.svg);
    margin-right: 12px;
}
header .inner .header-right .lang .en{
    width: 26px;
    height: 26px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    border-radius: 100%;
    background-color: #fff;
    background-image: url(/assets/images/common/icon_en.svg);
    margin-right: 12px;
    flex-shrink: 0;
}
header .inner .header-right .lang .jp{
    width: 26px;
    height: 26px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    border-radius: 100%;
    background-color: #fff;
    background-image: url(/assets/images/common/icon_jp.svg);
    margin-right: 12px;
}
header .inner .header-right .lang .lang-depth li a:hover{
    background-color: rgba(208,208,208,0.6);
}
header .inner .header-right .lang .lang-depth li a{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 39px;
    border-radius: 19.5px;
    padding:0 10px;
    box-sizing: border-box;
    transition: background 0.3s;
    color:#333;
}

header .btn-menu{
    display: none;
}
.mask,
aside{
    display: none;
}

.sub-top {
  height: 650px;
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sub-top .text {
  position: relative;
  z-index: 2;
  color: #333;
}
.sub-top .text span {
  font-size: 20px;
}
.sub-top .text h2 {
  font-weight: 600;
  font-size: 50px;
  margin-top: 41px;
}
.sub-top .text p {
  font-size: 17px;
  margin-top: 44px;
}
.sub-top .bg {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.sub-top .scroll {
  position: absolute;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  left: 50%;
  transform: translate(-50%, 0);
  bottom: 50px;
}
.sub-top .scroll .scroll-img {
  width: 16px;
  height: 35px;
  border: 1px solid #333;
  border-radius: 16px;
  box-sizing: border-box;
  position: relative;
}
.sub-top .scroll .scroll-img::after {
  content: "";
  width: 10px;
  height: 10px;
  background-color: #333;
  position: absolute;
  left: 50%;
  top: 3px;
  border-radius: 100%;
  transform: translate(-50%, 0);
  animation: up-down 1.4s infinite ease-in-out alternate;
}
.sub-top .scroll span {
  display: block;
  font-size: 14px;
  color: #333;
  margin-top: 5px;
}

#container{
    overflow-x: hidden;
}

@keyframes up-down {
  from {
    transform: translate(-50%, 0);
  }
  to {
    transform: translate(-50%, 18px);
  }
}
.path {
  border-bottom: 1px solid #D3D3D3;
  position: relative;
  z-index: 2;
}
.path .inner {
  display: flex;
  align-items: stretch;
}
.path .inner a.home {
  width: 66px;
  height: 66px;
  overflow: hidden;
  text-indent: -9999px;
  background-color: #8499AC;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(/assets/images/common/icon_home.svg);
}
.path .inner .depth {
  position: relative;
  transition: box-shadow 0.2s;
}
.path .inner .depth > button {
  display: block;
  cursor: pointer;
  background-color: #fff;
  border: 0;
  height: 66px;
  width: 210px;
  box-sizing: border-box;
  padding: 0 48px 0 29px;
  font-size: 14px;
  text-align: left;
  color: #5c5c5c;
  position: relative;
  z-index: 1;
  transition: font-weight 0.2s;
  background-repeat: no-repeat;
  background-position: right 29px center;
  background-image: url(/assets/images/common/path_down.svg);
}
.path .inner .depth > .depth-menu {
  display: none;
  padding: 26.5px 34px;
  position: absolute;
  z-index: 0;
  left: 0;
  right: 0;
  top: 100%;
  background-color: #fff;
  box-sizing: border-box;
  border-top: 1px solid #D3D3D3;
  box-shadow: 0px 0px 10px rgba(51, 51, 51, 0.1607843137);
}
.path .inner .depth > .depth-menu li + li {
  margin-top: 22px;
}
.path .inner .depth > .depth-menu button,
.path .inner .depth > .depth-menu a {
  cursor: pointer;
  border: 0;
  background-color: transparent;
  text-align: left;
  font-size: 14px;
  line-height: 20px;
  color: #7c7c7c;
  transition: color 0.2s, font-weight 0.2s;
}
.path .inner .depth > .depth-menu button:hover,
.path .inner .depth > .depth-menu a:hover {
  font-weight: 600;
  color: #333;
}
.path .inner .depth + .depth {
  border-left: 1px solid #D3D3D3;
}
.path .inner .depth:hover {
  box-shadow: 0px 0px 10px rgba(51, 51, 51, 0.1607843137);
}
.path .inner .depth:hover > button {
  font-weight: 600;
  color: #333;
}
.path .inner .depth:hover > .depth-menu {
  display: block;
}

#content:not(.main-wrap) {
  padding: 92px 0 124px;
}
#content:not(.main-wrap) .sec-top h3 {
  display: block;
  font-size: 30px;
  color: #333;
  font-weight: 600;
  margin-bottom: 20px;
}
#content:not(.main-wrap) .sec-top p {
  font-size: 17px;
  color: #333;
  line-height: 1.64em;
}
#content:not(.main-wrap) .sec-top p + * {
  margin-top: 8px;
}

footer {
  background-color: #F5F5F5;
  padding: 49px 0;
}
footer .inner {
  width: auto;
  max-width: 100%;
  /* box-sizing: border-box; */
  padding: 0 100px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer .footer-left {
  display: flex;
  align-items: center;
}
footer .footer-left .footer-logo {
  margin-right: 89px;
}
footer .footer-left .footer-logo img {
  display: block;
}
footer .footer-left .address {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: -8px;
}
footer .footer-left .address span {
  font-size: 15px;
  line-height: 1.2em;
  color: #333;
  margin-bottom: 8px;
}
footer .footer-left .address span.line {
  width: 1px;
  background-color: #333;
  height: 14px;
  margin: 0 10.5px 8px;
}
footer .footer-left .address span.full {
  width: 100%;
}
footer .footer-right .copyright {
  font-size: 15px;
  line-height: 1.2em;
  color: #333;
  white-space: nowrap;
}
.page-tab{
  margin:23px 0 33px;
}
.page-tab ul {
  display: flex;
  align-items: stretch;
}
.page-tab ul li {
  width: 100%;
}
.page-tab ul li button, .page-tab ul li a {
  width: 100%;
  height: 73px;
  cursor: pointer;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #E8E8E8;
  font-size: 18px;
  color: #9A9A9A;
}
.page-tab ul li button.cur, .page-tab ul li a.cur {
  background-color: #8499AC;
  font-weight: 600;
  color: #fff;
}

.tab-contents .tab-content {
  display: none;
}
.tab-contents .tab-content.cur {
  display: block;
}

.modal{
    position: fixed;
    left:50%;
    top:50%;
    transform: translate(-50%,-50%);
    background-color: #fff;
    width: 500px;
    text-align: center;
    box-sizing: border-box;
    padding:30px;
    z-index: 201;
    display: none;
}
.modal .btn-close{
    position: absolute;
    right:0;
    top:0;
    border:0;
    cursor: pointer;
    overflow: hidden;
    text-indent: -9999px;
    width: 35px;
    height: 35px;
    background-color: #fff;
    border:1px solid #333;
    box-sizing: border-box;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 25px auto;
    background-image: url(/assets/images/common/icon_close.png);
    border-radius: 100%;
    transform: translate(50%,-50%);
}
.modal .modal-inner p{
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2em;
    color: #333;
    margin-bottom: 17.5px;
}
.modal .modal-inner input{
    color: #333;
    font-size: 16px;
    border: 0;
    border-bottom: 1px solid #898989;
    height: 44px;
    padding: 0;
    width: 100%;
    text-align: center;
}
.modal .modal-inner .btn-submit{
    display: block;
    margin: 25px auto 0;
    width: 138px;
    line-height: 39px;
    border: 1px solid #333;
    text-align: center;
    font-size: 17px;
    font-weight: 500;
    background-color: #fff;
    cursor: pointer;
}
.modal-mask{
    position: fixed;
    left:0;
    right:0;
    bottom:0;
    top:0;
    z-index: 200;
    background-color:rgba(0,0,0,0.7);
    display: none;
}

.float-btns{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap:15px;
  position: fixed;
  right:30px;
  bottom:50px;
  z-index: 100;
  width: 60px;
}
.float-btns>*{
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  box-shadow: 5px 5px 15px rgba(0,0,0,0.18);
  background-color: #efefef;
}
.float-btns>*.btn-mall{
  background-color: #8499AC;
  font-size: 14px;
  line-height: 1.45em;
  font-weight: 500;
  color:#fff;
  text-align: center;
}

@media (max-width:1420px){
    header .inner{
        padding:0;
        width: 94%;
        margin:0 auto;
        height: 100px;
    }
    header .inner nav>ul>li + li{
        margin-left: 80px;
    }
    header h1,
    footer .footer-left .footer-logo{
        width: 180px;
    }
    header .inner nav .sub li a{
        font-size: 15px;
    }
    footer .inner{
        max-width: 94%;
        margin:0 auto;
        padding:0;
    }
}
@media (max-width:1200px){
    .sub-top{
        height: 470px;
    }
    .sub-top .text h2{
        font-size: 40px;
        margin-top: 30px;
    }
    .sub-top .text p{
        margin-top: 27px;
    }
    .sub-top .scroll{
        bottom:30px;
    }
    .sub-top .scroll span{
        font-size: 12px;
    }
    #content:not(.main-wrap) .sec-top h3{
        font-size: 24px;
    }
    #content:not(.main-wrap) .sec-top p{
        font-size: 15px;
    }

    .page-tab ul li button, .page-tab ul li a{
        height: 55px;
        font-size: 16px;
    }
}
@media (max-width:1024px){
    header .inner{
        height: 90px;
    }
    header h1{
        width: 160px;
    }
    header::after,
    header .inner nav{
        display: none;
    }
    header .inner .header-right{
        display: flex;
        align-items: center;
    }
    header .inner .header-right .lang{
        display: none;
    }
    header .btn-menu,
    header .inner .header-right .m-lang{
        display: block;
    }
    header .inner .header-right .m-lang ul{
        display: flex;
        align-items: center;
    }
    header .inner .header-right .m-lang ul li+li{
        margin-left: 8px;
    }
    header .inner .header-right .m-lang ul li a{
        display: block;
        width: 30px;
        line-height: 30px;
        border-radius: 100%;
        text-align: center;
        font-size: 9px;
        color:#333;
    }
    body.white header .inner .header-right .m-lang ul li a{
        color:#fff;
    }
    header .inner .header-right .m-lang ul li a.cur{
        background-color: #fff;
    }
    body.white header .inner .header-right .m-lang ul li a.cur{
        background-color: #333;
    }
    header.fixed .inner .header-right .m-lang ul li a.cur{
        background-color: rgba(208,208,208,0.6);
    }
    header .btn-menu{
        border:0;
        cursor: pointer;
        background-color: transparent;
        margin-left: 40px;
    }
    header .btn-menu span{
        width: 25px;
        height: 2px;
        background-color:#464545;
        display: block;
        transition:background 0.3s;
    }
    body.white header .btn-menu span{
        background-color: #fff;
    }
    header .btn-menu span:nth-child(2){
        margin-top: 6px;
    }
    header .btn-menu span:nth-child(3){
        margin-top: 6px;
    }

    footer .footer-left .footer-logo{
        margin-right: 35px;
    }
    footer .footer-left .address{
        margin-bottom: -4px;
    }
    footer .footer-left .address span{
        font-size: 14px;
        margin-bottom: 4px;
    }
    footer .footer-right .copyright{
        font-size: 14px;
    }

    .mask,
    aside{
        display: block;
    }
    .mask{
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s;
        position: fixed;
        left:0;
        right:0;
        bottom:0;
        top:0;
        background-color: rgba(0,0,0,0.7);
        z-index: 100;
    }
    .mask.show{
        opacity: 1;
        pointer-events: auto;
    }
    aside{
        background-color: #fff;
        position: fixed;
        right:0;
        top:0;
        bottom:0;
        transform: translate(100%,0);
        z-index: 200;
        width: 500px;
        max-width: 80%;
        transition:0.4s ease-in-out;
    }
    aside.show{
        transform: translate(0,0);
    }
    aside .m-nav{
        height: 100%;
        box-sizing: border-box;
        padding:100px 40px 50px;
        overflow: auto;
    }
    aside .m-nav>ul>li{border-bottom: 1px solid #333;padding-bottom: 20px;}
    aside .m-nav li+li{
        margin-top: 20px;
    }
    aside .m-nav li>button{
        display: block;
        border:0;
        cursor: pointer;
        background-color: #fff;
        font-weight: 600;
        font-size: 20px;
        line-height: 1.25em;
        color:#333;
        width: 100%;
        box-sizing: border-box;
        text-align: left;
    }
    aside .m-nav li>ul{
        display: none;
        padding-top: 20px;
        margin-top: 20px;
        border-top: 1px solid #dcdcdc;
    }
    aside .m-nav li>ul li+li{
        margin-top: 13px;
    }
    aside .m-nav li>ul li a{
        display: block;
        font-size: 17px;
        line-height: 1.2em;
        color:#333;
    }
    aside .btn-close{
        position: absolute;
        right:30px;
        top:30px;
        width: 45px;
        overflow: hidden;
        text-indent: -9999px;
        border:0;
        background-color: #fff;
    }
    aside .btn-close img{
        display: block;
        margin:0 auto;
    }
    footer .footer-left .footer-logo{
        width: 160px;
    }
}
@media (max-width:768px){
    .inner{
        width: 90%;
        max-width: 90% !important;
    }

    header .inner{
        height: 64px;
    }
    header h1{
        width: 135px;
    }
    header .btn-menu{
        margin-left: 30px;
    }

    footer{
        padding:30px 0;
    }
    footer .inner{
        height: auto;
    }
    footer .inner,
    footer .footer-left{
        flex-direction: column;
        align-items: flex-start;
    }
    footer .footer-left .footer-logo{
        margin-right: 0;
        width: 145px;
        margin-bottom: 17px;
    }
    footer .footer-right{
        margin-top: 17px;
    }
    footer .footer-left .address{
        display: block;
        margin-bottom: -6px;
    }
    footer .footer-left .address span{
        display: block;
        margin-bottom: 6px;
        font-size: 13px;
    }
    footer .footer-left .address span.line{
        display: none;
    }
    footer .footer-right .copyright{
        font-size: 12px;
    }

    aside .m-nav{
        padding:60px 20px 35px
    }
    aside .m-nav>ul>li{
        padding-bottom: 17px;
    }
    aside .m-nav li+li{
        margin-top: 17px;
    }
    aside .m-nav li>button{
        font-size: 17px;
    }
    aside .m-nav li>ul{
        padding-top: 17px;
        margin-top: 17px;
    }
    aside .m-nav li>ul li+li{
        margin-top: 9px;
    }
    aside .m-nav li>ul li a{
        font-size: 15px;
    }
    aside .btn-close{
        position: absolute;
        right: 14px;
        top: 13px;
        width: 30px;
    }
    aside .btn-close img{
        display: block;
        margin:0 auto;
    }

    #content:not(.main-wrap){
        padding:50px 0;
    }

    .sub-top .text span{
        font-size: 17px;
    }
    .sub-top .text h2{
        margin-top: 25px;
        line-height: 1.45em;
        font-size: 27px;
    }
    .sub-top .text p{
        font-size: 13px;
        margin-top: 25px;
    }
    .sub-top .scroll span{
        font-size: 14px;
    }
    .path .inner{
        width: 100%;
        max-width: 100% !important;
    }
    .path .inner a.home{
        width: 53px;
        height: 53px;
        background-size: 14px;
    }
    .path .inner .depth > button{
        width: calc((100vw - 53px) / 2) !important;
        height: 53px;
        padding:0 24px 0 15px;
        font-size: 13px;
        background-position: right 15px center;
    }
    .path .inner .depth > .depth-menu{
        padding:20px 15px;   
    }
    .path .inner .depth > .depth-menu button, .path .inner .depth > .depth-menu a{
        font-size: 12px;
        line-height: 1.5em;
    }
    .path .inner .depth > .depth-menu li + li{
        margin-top: 15px;
    }

    .page-tab ul{
        flex-wrap: wrap;
      }
      .page-tab ul li{
        width: 50%;
      }
      .page-tab ul li button, .page-tab ul li a{
        height: 45px;
        font-size: 12px;
      }

      .float-btns{
        gap:6px;
        right:10px;
        bottom:15px;
        z-index: 100;
        width: 45px;
      }
      .float-btns>*{
        border-radius: 6px;
        box-shadow: 5px 5px 12px rgba(0,0,0,0.18);
      }
      .float-btns>*.btn-mall{
        font-size: 10px;
      }

}