<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.header {
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-transition: all ease .5s;
  transition: all ease .5s;
}

.header.active {
  background-color: rgba(0, 0, 0, 0.5);
  border-bottom: none;
}

.header.active .inner {
  padding: 20px 0;
}

.header.active .header-search {
  top: 71px;
}

.header .inner {
  padding: 55px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-transition: all ease .5s;
  transition: all ease .5s;
}

.header .header__logo {
  -webkit-transform: translateX(-2.9vw);
  transform: translateX(-2.9vw);
  display: block;
}

.header .header__logo p {
  font-size: 0;
  position: absolute;
  top: -999999px;
  left: -999999px;
  opacity: 0;
}

.header .header__gnb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.header .header__gnb&gt;a {
  display: block;
  font-size: 17px;
  color: #fff;
}

.header .header__gnb&gt;a:hover {
  color: #e8ac1c;
}

.header .header__gnb&gt;a:not(:last-child) {
  margin-right: 90px;
}

.header .header__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header .header__btn&gt;li {
  position: relative;
}

.header .header__btn&gt;li:not(:last-child) {
  margin-right: 15px;
  padding-right: 12px;
}

.header .header__btn&gt;li:not(:last-child)::before {
  content: "";
  width: 1px;
  height: 14px;
  background-color: rgba(255, 255, 255, 0.3);
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.header .header__btn button {
  font-family: 'Saira', sans-serif;
  font-size: 13px;
  color: #fff;
  margin: 0;
  line-height: 1.6em;
  cursor: pointer;
  position: relative;
}

.header .header__btn button img {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.header .header__btn-search {
  padding: 0 25px 0 0;
}

.header .header__btn-search img{
  width: 17px;
}

.header .header__btn-lang {
  padding: 0 15px 0 0;
}

.header .header__btn-lang img {
  -webkit-transition: all ease .3s;
  transition: all ease .3s;
}

.header .header__btn-lang.open img {
  -webkit-transform: translateY(-50%) rotate(-180deg);
  transform: translateY(-50%) rotate(-180deg);
}

.header .header__dropmenu {
  position: absolute;
  width: 80px;
  background-color: #fff;
  padding: 7px 0;
  text-align: center;
  left: 50%;
  top: 25px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 2000em;
  z-index: 2;
  display: none;
}

.header .header__dropmenu a {
  font-size: 14px;
  font-family: 'Saira';
  font-weight: 600;
  line-height: 1em;
}

.header .header__gsnb {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 30px 0;
  display: none;
}

.header .header__gsnb nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  flex-wrap: wrap;
  display: none;
}

.header .header__gsnb nav&gt;a {
  margin-right: 34px;
  color: #fff;
  font-size: 15px;
}

.header .header__gsnb nav&gt;a:hover {
  color: #e8ac1c;
}

.header-search {
  position: absolute;
  top: 141px;
  left: 0;
  width: 100%;
  background-color: #fcbc25;
  padding: 60px 0 140px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all ease .5s;
  transition: all ease .5s;
  display: none;
  z-index: 1;
}

.header-search .header-search__form {
  width: 840px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header-search .header-search__form input {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  line-height: 55px;
  height: 55px;
  padding-left: 12px;
  font-size: 17px;
}

.header-search .header-search__form button {
  width: 60px;
  padding: 0;
  cursor: pointer;
}

.header-search .header-search__form button img {
  margin-left: auto;
  margin-right: auto;
}

.header-search .header-search__close {
  margin-left: 15px;
}

.header__hbg {
  width: 25px;
  cursor: pointer;
}

.header__hbg span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: all .3s;
  position: relative;
}

.header__hbg span+span {
  margin-top: 6px;
}

.header__hbg.active span:nth-child(1) {
  animation: ease .3s bar1 forwards;
}

.header__hbg.not-active span:nth-child(1) {
  animation: ease .3s resetBar01 forwards;
}

.header__hbg.active span:nth-child(2) {
  animation: ease .3s bar2 forwards;
}

.header__hbg.not-active span:nth-child(2) {
  animation: ease .3s resetBar02 forwards;
}

@keyframes bar1 {
  0% {
    top: 0;
    transform: rotate(0);
  }

  100% {
    top: 4px;
    transform: rotate(45deg);
  }
}

@keyframes bar2 {
  0% {
    top: 0;
    transform: rotate(0);
  }

  100% {
    top: -4px;
    transform: rotate(-45deg);
  }
}

@keyframes resetBar01 {
  0% {
    top: 4px;
    transform: rotate(45deg);
  }

  100% {
    top: 0px;
    transform: rotate(0);
  }
}

@keyframes resetBar02 {
  0% {
    top: -4px;
    transform: rotate(-45deg);
  }

  100% {
    top: 0;
    transform: rotate(0);
  }
}


.sidebar{
  position: fixed;
  top: 0;
  right: -500px;
  width: 500px;
  height: 100vh;
  padding-bottom: 15vw;
  background-color: #fcbc25;
  padding: 45px 3%;
  box-sizing: border-box;
  overflow-y: scroll;
  transition: all ease .3s;
  z-index: 9999;
}

.sidebar.active{
  right: 0;
}

.sidebar .sidebar__lang{
  display: flex;
}

.sidebar .sidebar__lang &gt; a {
  color: #fff;
  opacity: 0.5;
  position: relative;
  line-height: 1em;
  font-family: 'Saira';
  font-size: 18px;
  margin-right: 25px;
}

.sidebar .sidebar__lang &gt; a:not(:last-child)::before{
  content: "";
  width: 1px;
  height: 14px;
  background-color: #fff;
  position: absolute;
  top: 2px;
  right: -13px;
}

.sidebar .sidebar__lang &gt; a.active{
  opacity: 1;
}

.sidebar .sidebar__close{
  position: absolute;
  top: 35px;
  right: 25px;
  width: 22px;
}

.sidebar .sidebar__close img{
  width: 100%;
}

.sidebar .sidebar__menu{
  margin-top: 45px;
}

.sidebar .sidebar__menu li{
  position: relative;
}

.sidebar .sidebar__menu li:not(:last-child){
  margin-bottom: 30px;
}

.sidebar .sidebar__menu li::before{
  content: "";
  width: 20px;
  height: 12px;
  background-image: url(/image/common/sidebar_arrow01.png);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 12px;
  right: 0;
}

.sidebar .sidebar__menu li.active::before{
  background-image: url(/image/common/sidebar_arrow02.png);
}

.sidebar .sidebar__depth1{
  color: #fff;
  font-size: 32px;
  font-weight: 500;
  line-height: 1em;
  position: relative;
}


.sidebar .sidebar__depth2{
  display: none;
  margin-left: 3%;
  margin-top: 25px;
}

.sidebar .sidebar__depth2 &gt; div{
  display: flex;
  flex-direction: column;
}

.sidebar .sidebar__depth2 a{
  color: #fff;
  font-size: 20px;
  line-height: 1em;
}

.sidebar .sidebar__depth2 a:not(:last-child){
  margin-bottom: 20px;
}


.footer {
  padding-top: 130px;
  padding-bottom: 100px;
  background-color: #000;
  background-image: url(/image/common/footer_bg.png);
  background-repeat: no-repeat;
  background-position: top right;
}

.footer .footer__logo {
  display: inline-block;
}

.footer .footer__logo img {
  display: inline-block;
}

.footer .footer__logo p {
  font-size: 0;
  position: absolute;
  top: -999999px;
  left: -999999px;
  opacity: 0;
}

.footer .footer__contents {
  margin-top: 110px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.footer .footer__contents h2 {
  color: #fff;
  font-family: 'Saira', 'Noto Sans KR';
  font-size: 18px;
  font-weight: 500;
  line-height: 1em;
  margin-bottom: 20px;
}

.footer .footer__contents a,
.footer .footer__contents p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.8em;
  display: block;
}

.footer .footer__contents a.footer__copy,
.footer .footer__contents p.footer__copy {
  margin-top: 120px;
  color: rgba(255, 255, 255, 0.5);
}

.footer .footer__contents ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer .footer__contents ul&gt;li:not(:last-child) {
  width: 240px;
}

.footer .footer__contents ul a {
  -webkit-transition: all ease .3s;
  transition: all ease .3s;
}

.footer .footer__contents ul a:hover {
  color: #fcbc25;
}

.fade-in-up {
  opacity: 0;
}

/* �ｵ奝ｵ */
.show-default {display: block !important;}
.hide-default {display: none !important;}

@media all and (max-width: 1800px) {
  .header .header__logo {transform: translateX(0);}
}

@media all and (max-width: 1700px) {
  .inner {width: auto;margin-left: 3.9063%;margin-right: 3.9063%;}
  .header .inner {margin: 0 2vw;padding: 30px 0;}
  .header-search {top: 91px;}
}

@media all and (max-width: 1400px) {
  .header .header__gnb&gt;a:not(:last-child) {margin-right: 60px;}
  .footer .footer__contents ul&gt;li:not(:last-child){width: 150px;}
}

@media all and (max-width: 1200px) {
  .footer .footer__contents article:last-child{display: none;}
}

@media all and (max-width: 1024px) {
  .show-1024 {display: block !important;}
  .hide-1024 {display: none !important;}

  .header .header__gnb {display: none;}
  .header .inner {padding: 25px 0;}
  .header .header__btn {margin-left: auto;}
  .header .header__btn&gt;li:last-child {display: none;}
  .header .header__btn&gt;li:not(:last-child) {padding-right: 0; margin-right: 10px;}
  .header .header__btn&gt;li:not(:last-child)::before {display: none;}
  .header .header__btn button {font-size: 0;}
  .header .header__btn button img{width: 25px;}
  .header-search{padding-left: 5%; padding-right: 5%; top: 81px;}
  .header-search .header-search__form{width: auto; flex: 1;}

  .footer{padding: 100px 0;}
  .footer .footer__contents a.footer__copy, .footer .footer__contents p.footer__copy,
  .footer .footer__contents{margin-top: 75px;}
}

@media all and (max-width: 768px) {
  .show-768 {display: block !important;}
  .hide-768 {display: none !important;}
}

@media all and (max-width: 640px) {
  .show-640 {display: block !important;}
  .hide-640 {display: none !important;}

  .header .inner {margin: 0 3.5vw;padding: 18px 0;}
  .header .header__logo {width: 120px;}
  .header .header__logo img {width: 100%;}
  .header .header__btn button img{width: 20px;}
  .header__hbg{width: 22px;}
  .header.active .header-search{top:62.27px;}
  .header-search{top: 59px; padding: 30px 5% 60px 5%;}
  .header-search .header-search__form input{height: 40px; line-height: 40px; font-size: 14px;}
  .header-search .header-search__form button{width: 40px;}
  .header-search .header-search__form button img{width: 22px;}
  .header-search .header-search__close{width: 18px;}
  .header-search .header-search__close img{width: 100%;}
  .sidebar{width: 100%; padding: 25px 3.5vw; right: -100%;}
  .sidebar .sidebar__close{top: 22px; right: 3.5vw; width: 18px;}
  .sidebar .sidebar__lang &gt; a{font-size: 16px;}
  .sidebar .sidebar__lang &gt; a:not(:last-child)::before{height: 12px; top: 1px; right: -12px;}
  .sidebar .sidebar__depth1{font-size: 28px;}
  .sidebar .sidebar__menu li::before{width: 17px; height: 10px; top: 10px;}
  .sidebar .sidebar__depth2 a{font-size: 18px;}

  .footer{padding: 45px 0;}
  .footer .footer__contents a.footer__copy, .footer .footer__contents p.footer__copy, .footer .footer__contents{margin-top: 25px;}
  .footer .footer__contents a, .footer .footer__contents p{font-size: 12px;}
  .footer .footer__contents a, .footer .footer__contents p span{display: block;}
}</pre></body></html>