@charset "utf-8";
/*
 * Name     : layout.css
 * Version  : 1.1
 * Author   : onepixel studio
 * Date     : 2023-08-25
 * Table of contents
 * ------------------------------------------------------
 * 01) Header
 * 02) Page loader
 * 03) Layer popup
 * 04) Footer
 */

/* *********************************************
 * Header
 ******************************************** */
#header {position: fixed; top: 0; left: 0; right: 0; height: 100px; z-index: 1010; border-bottom: 1px solid rgba(255,255,255,.2); transition: height .3s, border-color .3s, background-color .3s, box-shadow .3s}
#header .col-logo .logo a {position: relative; display: block; width: 180px; font-size: 0}
#header .col-logo .logo img {position: relative; display: block; width: 100%; z-index: 5; transition: opacity .3s}
#header .col-logo .logo img.logo-color {position: absolute; top: 0; opacity: 0; z-index: 1}
#header .col-navbar {position: relative; max-width: 720px; height: 100%; z-index: 20}
#header .col-navbar .gnb {display: flex; width: 100%; height: 100%; justify-content: center}
#header .col-navbar .gnb > ul {font-size: 0; width: 100%; height: 100%}
#header .col-navbar .gnb > ul > li {position: relative; display: inline-flex; width: 20%; height: 100%; justify-content: center}
#header .col-navbar .gnb > ul > li + li::before {content: ''; position: absolute; display: block; top: 50%; left: 0; width: 5px; height: 5px; border-radius: 50%; background-color: rgba(255,255,255,.3); transform: translate(-50%, -50%); transition: background-color .3s}
#header .col-navbar .gnb > ul > li > a {position: relative; display: inline-flex; font-size: 23px; font-weight: 600; color: rgba(255,255,255,255); letter-spacing: -0.03em; height: 100%; align-items: center; justify-content: center; transition: color .3s}
/* #header .col-navbar .gnb > ul > li:hover > a::after {opacity: 1} */
#header .col-navbar .gnb > ul > li > .submenu-items {display: none; position: absolute; top: 100%; left: 0; right: 0; padding-top: 16px; padding-bottom: 32px; z-index: 5}
#header .col-navbar .gnb > ul > li > .submenu-items::before {content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background-color: #3e78ff; opacity: 0; transition: opacity .3s}
#header .col-navbar .gnb > ul > li > .submenu-items > li > a {display: block; font-size: 16px; font-weight: 500; color: #666; letter-spacing: -0.03em; text-align: center; padding: 10px 0; transition: color .1s}
#header .col-navbar .gnb > ul > li > .submenu-items > li > a:hover {color: #3e78ff}
#header .col-navbar .gnb > ul > li:hover > .submenu-items::before {opacity: 1}
#header .col-right-menu .menu-items {font-size: 0}
#header .col-right-menu .menu-items > a {display: inline-block; font-size: 15px; font-weight: 500; color: #fff; letter-spacing: -0.03em; vertical-align: middle; transition: color .3s}
#header .col-right-menu .menu-items > a i {margin-right: 4px; vertical-align: -1px}
#header .col-right-menu .menu-items > a + a::before {content: ''; display: inline-block; width: 1px; height: 0.8em; margin: 0 16px; background-color: #fff; vertical-align: -1px; opacity: .2}
#header.sticky, #header.active {border-color: #e5e5e5; background-color: #fff}
#header.sticky {height: 80px; box-shadow: 0 2px 10px rgba(0,0,0,.08)}
#header.sticky .col-logo .logo img.logo-color, #header.active .col-logo .logo img.logo-color {position: relative; opacity: 1; z-index: 5}
#header.sticky .col-logo .logo img.logo-white, #header.active .col-logo .logo img.logo-white {position: absolute; opacity: 0; z-index: 1}
#header.sticky .col-navbar .gnb > ul > li + li::before, #header.active .col-navbar .gnb > ul > li + li::before {background-color: #e5e5e5}
#header.sticky .col-navbar .gnb > ul > li > a, #header.active .col-navbar .gnb > ul > li > a {color: #212529}
#header.sticky .col-right-menu .menu-items > a, #header.active .col-right-menu .menu-items > a {color: #333}
#header .col-navbar .gnb > ul > li:hover > a {color: #3e78ff}
#header .megamenu-bg {position: absolute; top: 100%; left: 0; right: 0; height: 0; border-top: 1px solid #e5e5e5; background-color: #fff; box-shadow: 0 6px 10px rgba(0,0,0,.08); opacity: 0; visibility: hidden; pointer-events: none; z-index: 10}

/* *********************************************
 * Page loader
 ******************************************** */
#page-loader {position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: #f7f7f7; z-index: 9990}
#page-loader .loader-stage {position: relative; display: flex; width: 300px; height: 100%; margin: auto; justify-content: center; align-items: center; overflow: hidden}
#page-loader .dot-floating {color: #4263eb; background-color: #4263eb}
#page-loader .dot-floating:before, #page-loader .dot-floating:after {color: #4263eb; background-color: #4263eb}

/* *********************************************
 * Layer popup
 ******************************************** */
.px-layer-popup {display: none; position: fixed; box-shadow: 0 5px 25px 0 rgba(72,77,85,.4); z-index: 1130}
.px-layer-popup .popup-content > a {display: block}
.px-layer-popup .popup-footer {display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; align-items: center; justify-content: space-between; background-color: #212529}
.px-layer-popup .popup-footer .inner-grid {width: 100%}
.px-layer-popup .popup-footer button {height: 3.375rem; border: 0; outline: 0}
.px-layer-popup .popup-footer .btn-cookie-close {font-size: 15px; font-weight: 500; color: #fff; letter-spacing: -0.02em; padding: 0 24px; background-color: #000}
.px-layer-popup .popup-footer .btn-normal-close {color: #fff; padding: 0 16px; background-color: transparent}
.px-layer-popup .popup-footer .btn-normal-close svg {width: 1.25rem; height: 1.25rem}

/* *********************************************
 * Footer
 ******************************************** */
#btn-to-top {position: fixed; bottom: -100px; right: 20px; width: 60px; height: 60px; font-size: 28px; color: #fff; line-height: 1; padding: 0; border: 0; border-radius: 4px; background-color: #3e78ff; opacity: 0; transform: scale(0); transition: bottom .4s ease-in-out, background-color .4s ease-in-out, opacity .4s ease-in-out, transform .4s ease-in-out}
#btn-to-top:hover {background-color: #364fc7}
#btn-to-top.--show {bottom: 20px; opacity: 1; transform: scale(1)}
#footer {padding-top: 60px; padding-bottom: 70px; background-color: #1d1d1d}
#footer .footer-top {padding-bottom: 24px}
#footer .footer-top .col-left .footer-info .logo img {width: 120px}
#footer .footer-top .col-left .footer-info .info-items ul li {font-size: 15px; font-weight: 500; color: #777; letter-spacing: -0.02em; line-height: 1.56}
#footer .footer-top .col-left .footer-info .info-items ul li + li {margin-top: 6px}
#footer .footer-top .col-left .footer-info .info-items ul li span {display: inline-block}
#footer .footer-top .col-left .footer-info .info-items ul li span + span {margin-left: 24px}
#footer .footer-top .col-right .family-site-wrapper {position: relative; display: inline-flex; width: auto}
#footer .footer-top .col-right .family-site-wrapper .button-opener {position: relative; width: 220px; height: 50px; font-size: 15px; font-weight: 600; color: #9c9c9c; text-align: left; padding: 0 28px; border: 1px solid #3f3f3f; background-color: transparent; outline: 0; transition: background-color .2s}
#footer .footer-top .col-right .family-site-wrapper .button-opener:hover {background-color: rgba(255,255,255,.1)}
#footer .footer-top .col-right .family-site-wrapper .button-opener::after {content: '\F286'; position: absolute; top: 50%; right: 24px; font-family: 'bootstrap-icons'; font-size: 13px; margin-top: -9px; transition: transform .3s}
#footer .footer-top .col-right .family-site-wrapper.--open .button-opener::after {transform: rotate(180deg)}
#footer .footer-top .col-right .family-site-wrapper .family-dropdown-items {display: none; position: absolute; bottom: calc(100% - 1px); left: 0; right: 0; padding: 20px 0; border: 1px solid #3f3f3f; background-color: #1d1d1d; z-index: 5}
#footer .footer-top .col-right .family-site-wrapper .family-dropdown-items .scroll-content {height: 130px}
#footer .footer-top .col-right .family-site-wrapper .family-dropdown-items ul li {padding: 4px 28px}
#footer .footer-top .col-right .family-site-wrapper .family-dropdown-items ul li a {display: inline-block; font-size: 15px; font-weight: 500; color: #757575; letter-spacing: -0.02em; transition: color .2s}
#footer .footer-top .col-right .family-site-wrapper .family-dropdown-items ul li a:hover {color: #eaeaea}
#footer .footer-bottom {padding-top: 24px; border-top: 1px solid #3e3e3e}
#footer .footer-bottom .col-left .link-group {font-size: 0}
#footer .footer-bottom .col-left .link-group a {display: inline-block; font-size: 15px; font-weight: 500; color: #8a8a8a; letter-spacing: -0.02em}
#footer .footer-bottom .col-left .link-group a + a::before {content: ''; display: inline-block; width: 1px; height: 10px; margin: 0 20px; background-color: #474747; vertical-align: 0}
#footer .footer-bottom .col-left .link-group a.link-privacy {color: #bbb}
#footer .footer-bottom .col-right .copy {font-size: 15px; font-weight: 500; color: #777}

/* *********************************************
 * Media queries
 ******************************************** */
@media (min-width: 992px) {
    #mobile-header {display: none}
    #header .col-hamburger-button {display: none}
}

@media (max-width: 991px) {
    #header {height: 70px}
    #header .col-navbar {display: none}
    #header .col-right-menu {display: none}
    #header .col-hamburger-button .button-hamburger {display: -ms-flexbox; display: flex; width: 36px; height: 36px; padding: 0; border: 0; background-color: transparent; outline: 0}
    #header .col-hamburger-button .button-hamburger svg {height: 100%}
    #header .col-hamburger-button .button-hamburger .line {fill: none; stroke: #fff; stroke-width: 2; transition: stroke-dasharray 300ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 300ms cubic-bezier(0.4, 0, 0.2, 1)}
    #header .col-hamburger-button .button-hamburger .line1 {stroke-dasharray: 60 207; stroke-width: 2}
    #header .col-hamburger-button .button-hamburger .line2 {stroke-dasharray: 60 60; stroke-width: 2}
    #header .col-hamburger-button .button-hamburger .line3 {stroke-dasharray: 60 207; stroke-width: 2}
    #header .col-hamburger-button .button-hamburger.active .line1 {stroke-dasharray: 90 207; stroke-dashoffset: -134; stroke-width: 2}
    #header .col-hamburger-button .button-hamburger.active .line2 {stroke-dasharray: 1 60; stroke-dashoffset: -30; stroke-width: 2}
    #header .col-hamburger-button .button-hamburger.active .line3 {stroke-dasharray: 90 207; stroke-dashoffset: -134; stroke-width: 2}
    #header.nav-open {background-color: #fff;box-shadow: none;}
    #header.nav-open .col-logo .logo img.logo-color, #header.nav-open .col-logo .logo img.logo-color {position: relative; opacity: 1; z-index: 5}
    #header.nav-open .col-logo .logo img.logo-white, #header.nav-open .col-logo .logo img.logo-white {position: absolute; opacity: 0; z-index: 1}
    #header.nav-open, #header.sticky {height: 70px}
    #header.nav-open .col-hamburger-button .button-hamburger .line, #header.sticky .col-hamburger-button .button-hamburger .line {stroke: #000}
    #mobile-header {position: fixed; z-index: 1100}
    #mobile-header .backdrop {display: none; position: fixed; top: 70px; left: 0; bottom: 0; right: 0; background-color: rgba(0,0,0,.65); z-index: 5}
    #mobile-header .nav-body {position: fixed; top: 69px; right: 0; bottom: 0; width: 100%; background-color: #fff; z-index: 10; transform: translateX(100%); transition: transform .45s cubic-bezier(.77,0,.17,1);border-top:1px solid #ddd;}
    #mobile-header .nav-body .inner-content {padding-top: 24px; padding-bottom: 36px; height: 100%; overflow-y: auto}
    #mobile-header .nav-body .inner-content > ul > li > a {position: relative; display: block; font-size: 20px; font-weight: 700; color: #333; padding: 14px 24px}
    #mobile-header .nav-body .inner-content > ul > li + li > a {border-top: 1px solid #eaeaea}
    #mobile-header .nav-body .inner-content > ul > li.has-child-menu > a::after {content: '\F282'; position: absolute; top: 50%; right: 24px; font-family: 'bootstrap-icons'; font-size: 16px; font-weight: normal; color: #333; margin-top: -11px; transition: transform .3s}
    #mobile-header .nav-body .inner-content > ul > li > .submenu-items {display: none; padding-top: 14px; padding-bottom: 14px; background-color: #f7f7f7}
    #mobile-header .nav-body .inner-content > ul > li > .submenu-items > li > a {display: block; font-size: 16px; color: #666; letter-spacing: -0.02em; padding: 8px 24px}
    #mobile-header .nav-body .inner-content > ul > li > .submenu-items > li > a.active {color: #3e78ff}
    #mobile-header .nav-body .inner-content > ul > li.open > a, #mobile-header .nav-body .inner-content > ul > li > a.active {color: #3e78ff}
    #mobile-header .nav-body .inner-content > ul > li.open.has-child-menu > a::after {transform: rotate(180deg)}
    #mobile-header .nav-body .inner-content > .membership-menus {margin-top: 48px; padding-left: 24px; padding-right: 24px}
    #header.nav-open ~ #mobile-header .nav-body {transform: translateX(0); transition-delay: .2s}

    #footer .footer-top .col-left .footer-info .info-items ul li {font-size: 14px}
    #footer .footer-top .col-left .footer-info .info-items ul li + li {margin-top: 2px}
    #footer .footer-bottom .col-left .link-group a {font-size: 14px}
    #footer .footer-bottom .col-left .link-group a + a::before {margin: 0 14px}
    #footer .footer-bottom .col-right .copy {font-size: 14px}
}

@media (max-width: 767px) {
    html, body {font-size: 14px}
    
    #btn-to-top {width: 48px; height: 48px; font-size: 22px}

    .px-layer-popup {top: 100px !important; left: 50% !important; width: calc(100% - 50px); transform: translateX(-50%)}
    .px-layer-popup .popup-content img {display: block; width: 100%}
    .px-layer-popup .popup-footer .btn-cookie-close {font-size: 14px; padding: 0 16px}

    #footer .footer-top .col-left .logo {margin-bottom: 24px}
    #footer .footer-top .col-left .footer-info .info-items ul li span + span {margin-left: 16px}
    #footer .footer-top .col-right {margin-top: 32px}
    #footer .footer-top .col-right .family-site-wrapper .button-opener {width: 180px; font-size: 13px; padding: 0 24px}
    #footer .footer-top .col-right .family-site-wrapper .family-dropdown-items ul li {padding: 4px 24px}
    #footer .footer-top .col-right .family-site-wrapper .family-dropdown-items ul li a {font-size: 13px}
    #footer .footer-bottom .col-left .link-group a {font-size: 13px}
    #footer .footer-bottom .col-left .link-group a + a::before {margin: 0 12px}
    #footer .footer-bottom .col-right {margin-top: 16px}
    #footer .footer-bottom .col-right .copy {font-size: 13px}
}