﻿@charset "utf-8";

* {
    box-sizing: border-box;
    word-break: keep-all;
    font-family: "Pretendard", "Play", "Montserrat";
}

html {
    scroll-behavior: smooth;
}

html,
body,
div,
span,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

* {
    padding: 0;
    margin: 0;
    border: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -webkit-text-size-adjust: none;
    text-size-adjust: none;
    outline: none;
    letter-spacing: -0.005em;
    line-height: 1.5;
    word-break: keep-all;
    -webkit-text-size-adjust: none;
    -moz-text-size-adjust: none;
    -ms-text-size-adjust: none;
    word-break: keep-all;
    font-family: "Play", "Montserrat", "Pretendard";
}

html,
body {
    position: relative;
    margin: 0 auto;
    height: 100%;
    width: 100%;
}

body {
    line-height: 1;
}
input,
button,
input[type=button],
input[type=reset],
input[type=text],
input[type=password],
input[type=submit],
input[type=search],
input[type=tel],
input[type=email] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    background: none;
    border: none;
    outline: none;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

ul,
li {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none;
}

a {
    margin: 0;
    padding: 0;
    color: #000;
    font-size: 100%;
    text-decoration: none;
    vertical-align: baseline;
    background: transparent;
}

del {
    text-decoration: line-through;
}

abbr[title],
dfn[title] {
    border-bottom: 1px dotted;
    cursor: help;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

img {
    object-fit: cover;
    max-width: 100%;
}

textarea{
    resize: none;
}

.flex {
    display: flex;
}

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

.flex.row {
    flex-direction: column;
}

.scrollbar::-webkit-scrollbar {
    width: 6px !important;
    background-color: transparent !important;
}

.scrollbar::-webkit-scrollbar-thumb,
.scrollbar:hover::-webkit-scrollbar-thumb {
    width: 6px !important;
    border-radius: 5px !important;
    background: #fff !important;
    background: #dbbf68 !important;
}

.inner {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}


.floating_wrap {
  position: fixed;
  right: 0;
  bottom: 80px;
  transition: all ease 1s;
  z-index: 9;
}

.floating_wrap.mobile {
  display: none;
}

.scroll-top-button {
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: 0.5s;
}

.floating_wrap .scroll-top-button .outline {
  transform: translateY(26%);
}

.floating_wrap.on {
  bottom: 340px;
}

section {
    overflow: hidden;
}

body.on {
    overflow: hidden;
}

.dir_bottom {
    position: relative;
    transform: translateY(30%);
    -moz-transform: translateY(30%);
    -ms-transform: translateY(30%);
    -o-transform: translateY(30%);
    opacity: 0;
}

.dir_bottom.sc_event {
    transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
    opacity: 1;
    transition: all 1s ease;
}


.delay02 {
    transition-delay: 0.2s !important;
}

.delay03 {
    transition-delay: 0.3s !important;
}

header {
    width: 100%;
    height: 100px;
    position: relative;
    position: absolute;
    top: 0;
    left: 50%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(15px);
    transition: all 0.5s ease;
    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.3);
    box-sizing: border-box;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    transition: all 0.5s ease;
    z-index: 50;
}

header {
    position: fixed;
}

header.transparent {
    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0);
    backdrop-filter: blur(0px);
    background: transparent;
}


header:after {
    content: "";
    opacity: 0;
    visibility: hidden;
    position: absolute;
    left: 50%;
    top: 98px;
    z-index: -1;
    width: 100%;
    height: 1px;
    background: #ececec;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: opacity 0.3s;
    -moz-transition: opacity 0.3s;
    -ms-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

header.on:after {
    opacity: 1;
    visibility: visible;
}

header h1 a {
    display: block;
    background: url("../images/main/logo.png") no-repeat;
    background-size: cover;
    width: 180px;
    height: 51px;
}

header .hd_inner {
    height: 100px;
    padding: 0 80px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .hd_inner h1 {
    position: relative;
    z-index: 1;
}

body.on header .hd_inner h1 {
    z-index: 0;
}

header .hd_inner nav {
    height: 100%;
}

header .hd_inner nav > ul {
    display: flex;
    height: 100%;
}

header .hd_inner nav > ul > li {
    padding: 0 40px;
    box-sizing: border-box;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    -ms-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

header .hd_inner nav > ul > li {
    position: relative;
}

header .hd_inner nav > ul > li.active > a:after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    clear: both;
    content: "";
    display: block;
    background: transparent;
}

header.on .hd_inner nav > ul > li.active > a:after {
    background: #d7b119;
}
header .hd_inner nav > ul > li.active > a {
        color: #d7b119;
}
header .hd_inner nav > ul > li:nth-child(6) .depth2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(5, 1fr);
    grid-column-gap: 25px;
    grid-row-gap: 0px;
}

header .hd_inner nav > ul > li:nth-child(6) .depth2 > li {}

header .hd_inner nav > ul > li:nth-child(6) .depth2 > li:nth-child(1) {
    grid-area: 1 / 1 / 2 / 2;
}

header .hd_inner nav > ul > li:nth-child(6) .depth2 > li:nth-child(2) {
    grid-area: 2 / 1 / 3 / 2;
}

header .hd_inner nav > ul > li:nth-child(6) .depth2 > li:nth-child(3) {
    grid-area: 3 / 1 / 4 / 2;
}

header .hd_inner nav > ul > li:nth-child(6) .depth2 > li:nth-child(4) {
    grid-area: 4 / 1 / 5 / 2;
}

header .hd_inner nav > ul > li:nth-child(6) .depth2 > li:nth-child(5) {
    grid-area: 5 / 1 / 6 / 2;
}

header .hd_inner nav > ul > li:nth-child(6) .depth2 > li:nth-child(6) {
    grid-area: 1 / 2 / 2 / 3;
}

header .hd_inner nav > ul > li:nth-child(6) .depth2 > li:nth-child(7) {
    grid-area: 2 / 2 / 3 / 3;
}

header .hd_inner nav > ul > li:nth-child(6) .depth2 > li:nth-child(8) {
    grid-area: 3 / 2 / 4 / 3;
}

header .hd_inner nav > ul > li:nth-child(6) .depth2 > li:nth-child(9) {
    grid-area: 4 / 2 / 5 / 3;
}

header.on {
    background: #fff;
    box-shadow: 0px 0px 30px 0px rgb(0 0 0 / 15%);
    overflow: hidden;
    height: 200px;
    background: #fff;
    -webkit-box-shadow: 0px 0px 30px 0px rgb(0 0 0 / 15%);
}

#header.top {
    transform: inherit;
    background: transparent;
}

body.on header.on {
    height: inherit;
}

body.on header.on:after {
    opacity: 0;
}

header.on h1 a {
    display: block;
    background: url("../images/main/logo2.png") no-repeat;
    background-size: cover;
    width: 180px;
    height: 51px;
}

header .hd_inner nav > ul > li > a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    box-sizing: border-box;
    transition: .3s ease;
}


header.on .hd_inner nav > ul > li > a {
    color: #000;
}

header .hd_inner .depth1 {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    position: fixed;
    top: 100px;
    box-sizing: border-box;
    max-width: 1800px;
    margin: 0 auto;
    left: 0;
    right: 0;
    text-align: center;
    height: calc(375px - 100px);
}

header .hd_inner .depth1 > ul > li {
    position: relative;
    padding: 30px 70px 0 0;
    box-sizing: border-box;
    box-sizing: border-box;
    display: inline-block;
    text-align: left;
    vertical-align: top;
    transition: .3s ease;
}

/*
header .hd_inner .depth1 > ul > li:last-child {
    padding: 25px 0 0 0;
}
*/

header .hd_inner .depth1 > ul > li.active > a,
header .hd_inner .depth1 > ul > li:hover > a {
    color: #d7b119;
}

header .hd_inner .depth1 > ul > li > a {
    display: block;
    font-size: 18px;
    color: #000;
    font-weight: 500;
    margin-bottom: 15px;

}

header .hd_inner .depth2 > li > a {
    color: rgba(0, 0, 0, .8);
    font-size: 16px;
    line-height: 1.7;
    font-weight: 400;
}

header .hd_inner .depth2 > li.active > a,
header .hd_inner .depth2 > li:hover > a {
    color: #d7b119;
}

header .hd_info {
    display: flex;
}

header .hd_info .lang {
    width: 120px;
    height: 60px;
    background: transparent;
    /* border: 1px solid #D7D7D7; */
    border-radius: 7px;
    box-sizing: border-box;
    font-size: 16px;
    /* margin-right: 15px; */
    text-align: center;
    line-height: 58px;
    cursor: pointer;
}
header .hd_info .lang>a{
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}
header .hd_info .lang i{
    font-style: normal;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
        color: #fff;
}
/* header.on .hd_info .lang {
    background: #FAFAFA;
} */
header.on .hd_info .lang i,
header.on .visit_btn{
        color: #000;
}
header.on .visit_btn:after{
  background: #000;
}
header .ham {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 7px;
    background: #d7b119;
    position: relative;
    z-index: 1;
    cursor: pointer;
}

header .ham span {
    color: #fff;
    font-size: 14px;
}

header .ham i {
    display: block;
    font-style: normal;
    background: #fff;
    width: 25px;
    height: 1px;
    transition: .3s ease;
    display: none;
}

header .ham i:nth-child(1) {
    margin-bottom: 7px;
}

footer .top {
    position: relative;
    height: 333px;
    z-index: 0;
}

footer .top:after {
    clear: both;
    content: "";
    display: block;
    background: #F8F7F3;
    mix-blend-mode: multiply;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

footer .top > .inner {
    display: flex;
    max-width: 1662px;
    height: 100%;
    position: relative;
    justify-content: space-between;
}

footer .top > .inner > div {
    font-size: 0;
}

footer .top > .inner > div > div {
    position: relative;
    top: 50px;
    margin-left: 30px;
    z-index: 9;
}

footer .top > .inner > div > * {
    display: inline-block;
    vertical-align: top;
}

footer .top > .inner > div > img {
    position: relative;
    z-index: 0;
}

footer .top > .inner > div h4 {
    font-size: 26px;
    font-weight: 600;
}

footer .top > .inner > div span {
    display: block;
    margin: 10px 0 25px;
    font-size: 18px;
    color: rgba(0, 0, 0, .7);
    font-weight: 400;
    line-height: 1.4;
    z-index: 9;
    position: relative;
}

footer .top > .inner > div p {
    position: relative;
    z-index: 9;
}

footer .top > .inner > div p a {
    font-size: 16px;
    color: rgba(0, 0, 0, .4);
    font-weight: 600;
    background: #fff;
    padding: 6px 20px 6px 15px;
    border: 2px solid rgba(0, 0, 0, .1);
    border-radius: 10px;
    box-sizing: border-box;
    display: block;
    position: relative;
    text-align: left;
}

footer .top > .inner > div p a img {
    position: absolute;
    top: 50%;
    right: 20px;
    left: auto;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

footer .top .col01 a {
    width: 171px;
}

footer .top .col02 a {
    width: 198px;
}

footer .top .col01 img {
    top: 5px;
}

footer .top .col02 {
    left: -160px;
    position: relative;
}

footer .top .col02 > img {
    top: 35px;
}

footer .bottom {
    background: #000000;
    width: 100%;
    height: 340px;
    padding: 25px 0 50px;
    box-sizing: border-box;
    z-index: 1;
    position: absolute;
}

footer .bottom > .inner {
    padding: 0;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
}

footer .bottom .col01 {
    margin-bottom: 70px;
}

footer .bottom .col01 ul {
    display: flex;
    border-left: 1px solid rgba(255, 255, 255, .2);
    box-sizing: border-box;
    height: 70px;
}

footer .bottom .col01 ul li {
    /*    width: auto;*/
    width: 16.66%;
    flex-grow: 1;
    border-top: 1px solid rgba(255, 255, 255, .2);
    border-right: 1px solid rgba(255, 255, 255, .2);
    border-bottom: 1px solid rgba(255, 255, 255, .2);
    box-sizing: border-box;
    text-align: center;
}

footer .bottom .col01 ul li a {
    width: 100%;
    height: 100%;
    position: relative;
    font-size: 17px;
    font-weight: 500;
    color: #fff;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    justify-content: center;
}

footer .bottom .col01 ul li a img {
    margin-right: 10px;
}

footer .bottom .col02 {
    display: flex;
    justify-content: space-between;
}

footer .bottom .col02 .row01 {
    width: 50%;
    z-index: 999999999;
}

footer .bottom .col02 .row01 dl {
    display: flex;
}

footer .bottom .col02 .row01 dt {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, .5);
    width: 8%;
    margin-right: 30px;
}

footer .bottom .col02 .row01 dd {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
}

footer .bottom .col02 .row01 p {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, .5);
    margin-top: 20px;
}

footer span.link_site {
    position: relative;
    cursor: pointer;
    zoom: 1;
    display: inline;
    /* width: 185px; */
    height: 60px;
    border-color: #999;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: left;
    width: 340px;
    line-height: 60px;
    padding-bottom: 0;
    font-size: 13px;
    letter-spacing: 3px;
    color: #999;
}

footer span.link_site.active {
    background: #fff;
    border: 1px solid #fff;
}

footer span.link_site i {
    display: inline-block;
    zoom: 1;
    border-color: #999;
    margin-left: 0px;
    padding: 0px 45px;
    margin-right: 0px;
    font-style: normal;
    letter-spacing: 2px;
    padding-right: 45px;
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 60px;
    color: #fff;
}

footer span.link_site.active i {
    border-right: 1px solid #ddd;
}

footer span.link_site p {
    display: block;
    position: absolute;
    right: 23px;
    top: 43%;
    background: url(../images/common/arrow_down.svg) no-repeat;
    width: 16px;
    height: 12px;
    transform: rotate(0);
    transition: transform 0.5s ease;
    z-index: 1;
}

footer span.link_site p.active {
    transform: rotate(180deg);
}

footer span.link_site.active p {
    opacity: 0.7;
    background-position: 0px 0px;
}

footer span.link_site ul {
    position: absolute;
    bottom: 61px;
    left: -1px;
    width: calc(100% + 1px);
    height: 0;
    z-index: 30;
    overflow-x: hidden;
    /*  overflow-y: scroll;*/
    transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
}

footer span.link_site ul.active {
    height: 248px;
}

footer span.link_site.active ul {
    height: auto;
    position: absolute;
    width: 203px;
    right: -1px;
    bottom: 32px;
}

footer span.link_site ul.scrollbar::-webkit-scrollbar {
    width: 0;
}

footer span.link_site ul li {
    line-height: 62px;
    height: 62px;
    background: #000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition-property: all;
    transition-duration: 0.2s;
    transition-timing-function: ease-out;
}

footer span.link_site ul li a {
    display: block;
    height: 62px;
    width: 100%;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 60px;
    color: #fff;
    text-transform: uppercase;
    padding-left: 40px;
    transition-property: all;
    transition-duration: 0.2s;
    transition-timing-function: ease-out;
    letter-spacing: 0;
    box-sizing: border-box;
}

footer span.link_site ul li:hover {
    background-color: #d7b119;
}

footer span.link_site ul li:hover a {
    color: #fff;
}

footer .bottom .col02 .row02 .submit {
    text-align: right;
    margin-top: 50px;
}

footer .bottom .col02 .row02 .submit a {
    font-size: 12px;
    font-weight: 600;
    position: relative;
    color: #fff;
    text-transform: uppercase;
}

footer .bottom .col02 .row02 .submit a:nth-child(1) {
    margin-right: 30px;
}

footer .bottom .col02 .row02 .submit a:nth-child(1):after {
    clear: both;
    content: "";
    display: block;
    width: 1px;
    height: 14px;
    position: absolute;
    top: 50%;
    right: -18px;
    background: rgba(255, 255, 255, .2);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.all_menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    overflow: hidden;
    transition: .5s ease;
    background: black;
}

body.on .all_menu {
    opacity: 1;
    height: 100vh;
}

body.on header .ham span {
    display: none;
}

body.on header .ham i {
    display: block;
    transform: rotate(310deg);
}

body.on header .ham i:nth-of-type(1) {
    transform: rotate(45deg);
    margin-bottom: 0;
}

.all_menu .tb_bg {
    display: none;
}

.all_menu nav > ul {
    display: flex;
    justify-content: space-between;
}

.all_menu nav > ul > li {
    position: relative;
}

.all_menu nav > ul > li.active > a,
.all_menu nav > ul > li:hover > a {
    color: #d7b119;
}

.all_menu .depth1 {
    padding-left: 15px;
    box-sizing: border-box;
}

.all_menu .depth1 > ul > li.active > a,
.all_menu .depth1 > ul > li:hover > a {
    color: #d7b119;
}

.all_menu .depth2 {
    border-left: 1px solid rgba(255, 255, 255, .3);
    margin-top: 10px;
    padding-left: 10px;
    box-sizing: border-box;
    transition: .3s ease;
}

.all_menu .gnb > li:nth-child(6) .depth1 {
    border-left: 1px solid rgba(255, 255, 255, .3);
    box-sizing: border-box;
}

.all_menu .depth1 > ul > li.active > .depth2,
.all_menu .depth1 > ul > li:hover > .depth2 {
    border-color: #d7b119;
}

.all_menu .depth2 > li {
    line-height: 1;
}

.all_menu .depth2 > li > a {
    line-height: 1;
    color: rgba(255, 255, 255, .7);
    font-size: 15px;
    font-weight: 400;
    transition: .3s ease;
}

.all_menu .depth2 > li.active > a,
.all_menu .depth2 > li:hover > a {
    color: #d7b119;
}

.all_menu .depth2 > li > a {
    font-size: 14px;
}

.all_menu .depth2 > li:not(:last-child) {
    margin-bottom: 8px;
}

.all_menu .depth1 > ul > li > a {
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    transition: .3s ease;
}

.all_menu .depth1 > ul > li:not(:last-child) {
    margin-bottom: 20px;
}

.all_menu nav {
    position: relative;
    left: 0;
    right: 0;
    margin: 160px auto 0;
    width: 100%;
    max-width: 1400px;
    z-index: 1;
}

.all_menu nav > ul > li > a {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
    transition: .3s ease;
}

header .all_menu > .mobile {
    display: none;
}

.all_menu nav > ul > li button {
    display: none;
}

@media screen and (min-height: 1050px) {
    .all_menu nav {
        position: relative;
        left: 0;
        right: 0;
        margin: 180px auto 0;
        width: 100%;
        max-width: 1480px;
        padding: 0 40px;
        box-sizing: border-box;
        z-index: 1;
    }

    .all_menu nav > ul > li > a {
        color: #fff;
        font-size: 22px;
        font-weight: 600;
        margin-bottom: 15px;
        display: block;
        transition: .3s ease;
    }

    .all_menu .depth1 > ul > li:not(:last-child) {
        margin-bottom: 25px;
    }

    .all_menu .depth2 > li > a {
        font-size: 15px;
    }

    .all_menu .depth2 > li:not(:last-child) {
        margin-bottom: 13px;
    }

    .all_menu .depth1 > ul > li > a {
        color: #fff;
        font-size: 19px;
        font-weight: 400;
        transition: .3s ease;
    }
}

@media screen and (max-height: 978px) {
    body.on header .all_menu {
        overflow-y: scroll;
        -webkit-overflow-scrolling: touch;
    }

    .all_menu nav {
        position: relative;
        max-width: fit-content;
        padding: 0 100px 100px;
        box-sizing: border-box;
    }

    body.on .all_menu video {
        position: fixed;
        min-width: 100%;
        min-height: 100vh;
    }
    .all_menu .gnb > li:nth-child(6) .depth1{
        border-left: none;
    }
    .all_menu nav > ul {
        display: grid;
        grid-template-columns: repeat(4, 0fr);
        grid-template-rows: repeat(2, 0fr);
        grid-column-gap: 0px;
        grid-row-gap: 70px;
    }

    .all_menu nav > ul > li:nth-child(1) {
        grid-area: 1 / 1 / 2 / 2;
    }

    .all_menu nav > ul > li:nth-child(2) {
        grid-area: 1 / 2 / 2 / 3;
    }

    .all_menu nav > ul > li:nth-child(3) {
        grid-area: 1 / 3 / 2 / 4;
    }

    .all_menu nav > ul > li:nth-child(4) {
        grid-area: 1 / 4 / 2 / 5;
    }

    .all_menu nav > ul > li:nth-child(5) {
        grid-area: 2 / 1 / 3 / 2;
    }

    .all_menu nav > ul > li:nth-child(6) {
        grid-area: 2 / 2 / 3 / 3;
    }

    .all_menu nav > ul > li:nth-child(7) {
        grid-area: 2 / 3 / 3 / 4;
    }

    .all_menu nav > ul > li {
        width: 200px;
    }

    .all_menu nav > ul > li:not(:last-child) {
        margin-right: 80px;
    }

    .all_menu nav > ul > li > a {
        margin-bottom: 30px;
        padding-bottom: 20px;
        border-bottom: 2px solid rgba(255, 255, 255, .5);
        box-sizing: border-box;
    }

    .all_menu .depth1 {
        padding-left: 0;
    }

    .all_menu .depth2 {
        border-left: 0;
        padding-left: 0;
    }

}

@media screen and (max-width: 1800px) {
    header .hd_inner {
        padding: 0 40px;
    }

    header .hd_inner nav > ul > li {
        padding: 0 23px;
    }

    footer .top > .inner {
        max-width: 1300px;
    }

    footer .top > .inner > div > img {
        width: 59%;
    }

    footer .top > .inner > div > div {
        width: 35%;
    }

    footer .top .col01 {
        position: relative;
        left: -117px;
    }

    footer .top .col02 {
        left: 0;
    }
}

@media screen and (max-width: 1480px) {
  header .hd_inner nav > ul > li {
    padding: 0 18px;
  }
  header .hd_info .lang{
    width: 120px;
  }
}


@media screen and (max-width: 1360px) {


    footer .top > .inner > div span br {
        display: none;
    }

    footer .top .col02 {
        right: 0;
        left: auto;
    }

}

@media screen and (max-width: 1300px) {
    header .hd_inner nav {
        display: none;
    }

    body.on header .hd_inner h1 {
        z-index: 1;
        display: none;
    }

}

@media screen and (max-width: 1300px) {
    header h1 a {
        background: url(../images/main/logo2.png) no-repeat;
    }
    body.info_.on header {
        background: #fff;
    }
    body.info_.on header .hd_info .lang i {
    color: #000;
}
    body.on header {
        background: #fff;
        height: 100%;
        transition: .3s ease;
    }

    body.on header .all_menu {
        height: 100vh;
        transition: .3s ease;
    }

    header .hd_info .lang {
        z-index: 1;
    }

    header .hd_inner .hd_info .lang {
        transition: opacity .3s ease .3s, visibility 0s 0s, color .1s ease .3s;
    }

    body.on header .hd_inner .hd_info {
        /*        display: none;*/
        opacity: 0;
        transition: opacity .3s ease .3s, visibility 0s 0s;
    }

    header .all_menu > nav {
        display: none;
    }

    header .hd_inner .hd_info {
        display: none;
    }

    header .all_menu .mobile .hd_info {
        position: absolute;
        top: 20px;
        right: 30px;
    }

    header .all_menu > .mobile {
        display: block;
    }

    .all_menu {
        height: 100px;
        background: transparent;
        transition: .3s ease;
    }

    .all_menu video {
        display: none;
    }

    .all_menu nav {
        max-width: none;
        padding: 0;
    }

    .all_menu nav > ul {
        display: block;
    }

    .all_menu nav > ul > li {
        width: auto;
    }

    .all_menu nav > ul > li:not(:last-child) {
        margin-right: 0;
    }

    .all_menu nav > ul > li > a {
        position: relative;
        color: #000;
        border-bottom: 0;
        margin-bottom: 0;
        font-size: 24px;
    }

    .all_menu nav > ul > li button {
        display: block;
        content: "";
        width: 8px;
        height: 8px;
        border-top: 2px solid #000000;
        border-right: 2px solid #000000;
        transform: rotate(135deg);
        -webkit-transform: rotate(135deg);
        -moz-transform: rotate(135deg);
        -ms-transform: rotate(135deg);
        -o-transform: rotate(135deg);
        position: absolute;
        right: 40px;
        top: 25px;
        background: transparent;
        border-color: #cccccc #cccccc transparent transparent;
        transition: .3s ease;
    }

    .all_menu nav > ul > li button.on {
        transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        border-color: #000000 #000000 transparent transparent;
    }

    .all_menu .depth1 {
        padding: 33px 40px 25px;
        background-color: #f5f5f5;
    }

    .all_menu .depth1 > ul > li > a {
        color: #000;
    }

    .all_menu .depth2 > li > a {
        color: #000;
    }

    .all_menu nav {
        margin: 125px auto 0;
    }

    body.on header .hd_info .lang i,
    body.on header .visit_btn{
        color: #000;
    }
    body.on header .visit_btn:after{
        background: #000;
      }
    .all_menu nav > ul > li > a {
        padding: 10px 40px;
        box-sizing: border-box;
    }

    .all_menu .depth1 {
        padding: 33px 40px 25px;
        box-sizing: border-box;
        display: none;
    }

    body.on .all_menu .depth1 > ul > li > a {
        font-weight: 500;
        font-size: 19px;
    }

    body.on .all_menu .depth2 {
        padding-left: 0;
        border-left: 0;
    }

    .all_menu .depth2 > li > a {
        padding: 8px 0;
        box-sizing: border-box;
        display: block;
        color: rgba(0, 0, 0, .7);
        font-size: 16px;
    }

    body.on .all_menu .depth2 > li:not(:last-child) {
        margin-bottom: 0;
    }


    .all_menu > nav > ul > li.active .depth1 {
        display: block;
    }

    footer .bottom > .inner {
        padding: 0 20px;
        box-sizing: border-box;
    }

}

@media screen and (max-width: 1240px) {
    footer .top {
        height: 55vw;
        position: relative;
    }

    footer .top .col01 {
        left: 0;
    }

    footer .top > .inner > div span br {
        display: block;
    }

    footer .top .col01 img {
        top: 5px;
        left: -60px;
    }

    footer .top > .inner > div > img {
        width: auto;
        max-width: 100%;
        margin: 0 auto;
    }

    footer .top .col02 {
        right: 0;
    }

    footer .top > .inner > div {
        width: 50%;
    }

    footer .top > .inner > div > div {
        width: 100%;
        text-align: center;
        top: auto;
        margin: 0;
        position: absolute;
        bottom: 30px;
    }

    footer .top > .inner > div > * {
        display: block;
    }

    footer .top .col01 > img {
        width: 38vw;
    }

    footer .top .col02 > img {
        width: 33vw;
    }

    footer .top .col02 div {
        margin-top: 61px;
    }

    footer .top .col02 > img {
        top: 3vw;
    }

    footer .top > .inner > div p a {
        margin: 0 auto;
    }
}

@media screen and (max-width: 1090px) {
    footer .top > .inner > div > img {
        width: inherit;
    }

    footer .top .col01 > img {
        width: 37vw !important;
    }

    footer .top .col02 > img {
        width: 33vw !important;
    }
}

@media screen and (max-width: 1024px) {
  .floating_wrap.on {
      bottom: 450px;
  }
    footer .bottom {
        height: auto;
    }

    footer .bottom .col01 ul {
        display: block;
        font-size: 0;
        height: auto;
    }

    footer .bottom .col01 ul li {
        display: inline-block;
        vertical-align: top;
        width: 50%;
        height: 60px;
    }

    footer .bottom .col01 ul li a img {
        margin-right: 7px;
    }

    footer .bottom .col01 ul li a {
        font-size: 16px;
    }
}

@media screen and (max-width: 900px) {



    footer .top {
        height: auto;
    }

    footer .top > .inner {
        display: block;
        padding: 0 20px;
    }

    footer .top > .inner > div > div {
        position: static;
    }

    footer .top > .inner > div {
        width: 100%;
    }

    footer .top .col01 {
        padding-bottom: 20px;
    }

    footer .top .col02 {
        padding-bottom: 50px;
    }

    footer .top .col02 > div {
        margin-top: 30px !important;
    }

    footer .top .col02 > img,
    footer .top .col01 img {
        left: 0;
        right: 0;
        top: 0;
        margin: 0 auto;
    }

    footer .top .col01 > img {
        width: auto !important;
    }

    footer .top .col02 > img {
        width: auto !important;
    }

}

@media screen and (max-width: 768px) {
  .visit_btn{
    font-size: 13px;
  }
  .visit_btn:after{
    top: 18px;
  }

  .floating_wrap {
    right: 10px;
    bottom: 20px;
  }
  .floating_wrap.on {
      bottom: 612px;
  }
  .floating_wrap.pc {
    opacity: 0;
    visibility: hidden;
  }

  .floating_wrap.mobile {
    display: block;
  }

  .floating_wrap .scroll-top-button .outline {
    transform: inherit;
  }

    /*시작*/
    header {
        position: fixed;
        top: 0;
        box-shadow: inherit;
        background: transparent;
        backdrop-filter: blur(0);
    }

    body {
        overflow: auto;
    }

    :root {
        --vh: 100%;
    }

    body.on header .hd_info .lang {
        border-color: #D7D7D7;
    }

    body.on .all_menu nav {
        padding-bottom: 100px;
    }

    body.on header {
        height: calc(var(--vh, 1vh) * 100);
    }

    body.on header.show.reverse {
        background: #fff;
    }

    header.reverse {
        transform: translate(-50%, -100%);
        box-shadow: inherit;
    }

    body.on header.reverse {
        transform: translate(-50%, 0);
    }

    header.show {
        transform: inherit;
        transform: translate(-50%, 0);
    }

    header.show.reverse {
        box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.3);
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(15px)
    }

    header.show.reverse.top {
        box-shadow: inherit;
        background: transparent;
        backdrop-filter: blur(0);
    }

    /*    끝*/
    header {
        height: 70px;
    }

    header.hd_hide {
        box-shadow: 0px 15px 30px rgba(0, 0, 0, 0);
        margin-top: -70px;
    }

    header .hd_inner {
        padding: 0 20px;
    }

    header .all_menu .mobile .hd_info {
        top: 13px;
        right: 20px;
    }

    .all_menu nav > ul > li > a {
        padding: 10px 30px;
    }

    body.on .all_menu {
        opacity: 1;
        visibility: visible;
        height: 100vh;
        height: calc(var(--vh, 1vh) * 100);
    }

    header .hd_inner {
        height: 70px;
    }

    header h1 a {
        width: 122px;
        height: 35px;
        background-size: contain;
    }

    header .ham {
        width: 45px;
        height: 45px;
    }

    header .hd_info .lang {
        width: 120px;
        height: 45px;
        font-size: 14px;
        line-height: 43px;
    }

    .all_menu {
        height: 70px;
    }

    .all_menu nav > ul > li button {
        right: 30px;
    }

    .all_menu .depth1 {
        padding: 25px 30px;
    }

    footer .bottom .col01 ul li a img {
        width: 30px;
        height: 30px;
    }

    footer .bottom .col02 {
        display: flex;
        flex-direction: column;
    }

    footer .bottom .col02 .row01 {
        order: 1;
    }

    footer .bottom .col02 .row01 {
        width: 100%;
        order: 2;
    }

    footer .bottom .col01 {
        margin-bottom: 30px;
    }

    footer .bottom .col02 .row02 .submit {
        margin-top: 15px;
        text-align: left;
        margin-bottom: 20px;
    }

    footer span.link_site {
        width: 100%;
        height: 55px;
        line-height: 55px;
    }

    footer span.link_site i {
        line-height: 55px;
    }

    footer span.link_site p {
        right: 19px;
    }

    footer span.link_site ul {
        bottom: 52px;
    }

    footer span.link_site ul li {
        line-height: 55px;
        height: 55px;
        background: #213c4e;
    }

    footer span.link_site ul li a {
        height: 100%;
        line-height: 55px;
    }

    footer span.link_site ul.active {
        height: 219px;
    }

    footer .bottom .col02 .row01 dt {
        text-align: left;
    }

    footer .bottom .col02 .row01 dl {
        display: block;
        font-size: 0;
        margin-bottom: 10px;
    }

    footer .bottom .col02 .row01 dt {
        width: 100%;
        margin-right: 0;
        font-size: 12px;
        text-transform: uppercase;
    }

    footer .bottom .col02 .row01 dl > * {
        display: block;
        vertical-align: top;
        text-align: left;
    }

}

@media screen and (max-width: 414px) {
    header {
        height: 60px;
    }

    header.hd_hide {
        margin-top: -60px;
    }

    header .hd_inner {
        height: 60px;
    }

    header .all_menu .mobile .hd_info {
        top: 10px;
    }

    header h1 a {
        width: 105px;
        height: 28px;
        background-size: contain;
    }

    header .ham {
        width: 40px;
        height: 40px;
    }

    header .ham span {
        font-size: 12px;
    }

    header .hd_info .lang {
        width: 75px;
        height: 40px;
        font-size: 14px;
        line-height: 38px;
    }
    .visit_btn:after{
      height: 7px;
      top: 16.5px;
      right: -8px
    }

    .all_menu {
        height: 60px;
    }
}
