@charset "utf-8";

/* ==========================================================================
    기존 코드
   ========================================================================== */
/* 스킵 네비게이션 */
#skip-nav {
    position: absolute; left: 0; right: 0; top: 0;
    z-index: 9999;
    & *{list-style: none; margin: 0; padding: 0;}
    a{display: block; width: 1px; height: 1px; overflow: hidden; color: #fff; white-space: nowrap; text-align: center;}
    a:focus,
    a:active{width: 100%; height: auto; padding: 0.5rem; background: #000;}
}
.wrap {position: relative;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 var(--main-gap);
}

/* header */
header {
    position: fixed;
    top: 0;
    z-index: 30;
    background: #fff;
    width: 100%; height: 90px; min-width: 320px;
    box-sizing: border-box;

    transition: all .5s cubic-bezier(.08, .03, .22, .87);
    -webkit-transition: all .5s cubic-bezier(.08, .03, .22, .87);
    -moz-transition: all .5s cubic-bezier(.08, .03, .22, .87);
    -o-transition: all .5s cubic-bezier(.08, .03, .22, .87);
}
header .wrap {
    height: 100%;
}


/* header - 로고 */
header h1.logo {
    position: absolute;
    top: 50%; left: 0;

    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);

    transition: all .5s cubic-bezier(.08, .03, .22, .87);
    -webkit-transition: all .5s cubic-bezier(.08, .03, .22, .87);
    -moz-transition: all .5s cubic-bezier(.08, .03, .22, .87);
    -o-transition: all .5s cubic-bezier(.08, .03, .22, .87);
}
header h1.logo a {
    display: block;
}
header h1.logo a img {
    height: 40px;
}


/* header - 1차 depth */
.lnb {
    position: absolute;
    top: 0; left: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    z-index: 1; white-space: nowrap;

}
.lnb > ul > li {
    display: inline-block;
    position: relative;
    transition: 0.2s;
    vertical-align: top;
}
.lnb > ul > li:first-child {
    margin-left: 0;
}
.lnb > ul > li > a {
    display: block;
    position: relative;
    color: #111; letter-spacing: 0px;
    padding: 0px 45px;
}
.lnb > ul > li > a span {
    display: inline-block;
    position: relative;
    font-size: 18px; font-weight: 500; line-height: 90px;
    white-space: nowrap;
    transition: 0.1s ease-in;
}
.lnb > ul > li:hover {
    transition: 0.1s ease-in;
    background: #222;
}
.lnb > ul > li:hover > a {
    color: #fff !important;
}


/* header - 2차 depth */
.lnb > ul > li.lnb_1 > ul {
    position: relative;
    top: 0px; height: 0px;
    clear: both; overflow: hidden;
}
.lnb > ul > li.lnb_1 > ul > li > a {
    display: block;
    font-weight: 300; line-height: 1.5em;
    text-align: center; letter-spacing: -1px; white-space: nowrap;
    color: #222;
    padding: 3px 0; margin: 0 0 3px 0;
}
.lnb > ul > li.lnb_1 > ul > li:last-child > a {
    margin: 0;
}
.lnb > ul > li.lnb_1:hover > ul > li > a {
    color: #fff !important;
}
.bg_navi {
    position: absolute;
    top: 89px;
    width: 100%; height: 0px;
    overflow: hidden;
    background: #fff; box-shadow: 0 25px 20px rgba(0, 0, 0, 0.08);
}


/* header 마우스 오버 일때 */
header.active .lnb > ul > li > a {
    color: #222;
}


/* header - 스크롤 일때 */
header.small {
    height: 75px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.03);
}
header.small .lnb > ul > li > a span {
    line-height: 75px;
}
header.small .bg_navi {
    top: 74px;
}


@media screen and (max-width:1280px) {
    header {
        height: 80px;
    }
    header h1.logo a img {
        height: 35px;
    }
    .lnb {
        display: none;
    }
}


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

}


@media screen and (max-width:860px) {
    header {
        height: 65px;
    }
    header h1.logo a img {
        height: 25px;
    }
    header.small {
        height: 60px;
    }
}


@media screen and (max-width:640px) {
    header.out {
        top: -200px;
        transition: top 1s ease-out;
    }
}


@media screen and (max-width:460px) {
    header.small {
        height: 55px;
    }
}




/* header - snb - 오른쪽 상단메뉴 */
.snb {
  position: absolute;
  right: 0;
  height: 100%;
}


/* header - snb - 언어선택 */
.snb .lang_area {
    position: relative;
    float: left;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    background: #fff;
}
.snb .lang_area .lang_area_tit {
    display: inline-block;
    height: 50px;
}
.snb .lang_area .lang_area_tit .btn_lang {
    position: relative;
    padding-right: 24px;
    font-size: 14px; font-weight: 600; line-height: 50px;
}
.snb .lang_area .lang_area_tit .btn_lang:after {
    content: "";
    display: block;
    position: absolute;
    right: 0; top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    width: 10px; height: 6px;
    background: url('../img/common/ico-down-black.gif') 0 0 no-repeat;
}
.snb .lang_area .lang_area_tit.active .btn_lang:after {
    background: url('../img/common/ico-down-black-on.gif') 0 0 no-repeat;
}


/* header - snb - 로그인 */
.snb .login_area {
    position: relative;
    float: left;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    margin-left: 20px;
}
.snb .login_area .lang_area_tit {
    display: inline-block;
    height: 50px;
}
.snb .login_area .login_btn {
    position: relative;
    vertical-align: middle;
    padding-right: 24px;
    font-size: 14px; font-weight: 600;
    width: 30px; height: 50px;
    background: url('../img/common/ico-login-black.png') no-repeat center center / 26px auto;
}


/* 공통 옵션 오픈 스타일 */
.snb .option_open {
    min-width: 65px;
    position: absolute;
    left: 50%; top: 47px;
    transform: translateX(-49%);
    -webkit-transform: translateX(-49%);
    -moz-transform: translateX(-49%);
    -o-transform: translateX(-49%);
    padding: 10px 5px;
    background-color: #fff;
    border: 1px solid #dbdbdb; box-sizing: border-box; border-radius: 5px;
}
.snb .option_open a {
    position: relative;
    display: block; color: #888;
    font-size: 14px; line-height: 32px;
    padding: 0 10px; margin-bottom: 10px;
}
.snb .option_open a:last-child {
    margin-bottom: 0px;
}
.snb .option_open a:hover {
    font-weight: 600;
    color: #222; background: #f5f5f5;
}


/* 로그인 옵션 오픈 스타일 */
.snb .login_open {
    min-width: 95px;
}


@media screen and (max-width:1280px) {
    .snb .lang_area {
        display: none;
    }
    .snb .login_area {
        display: none;
    }
}


/* header - snb - 사이트맵 / 모바일 메뉴 */
.menu_all_btn {
    position: relative;
    width: 26px; height: 40px;
    z-index: 99; cursor: pointer;
    margin-left: 20px;
    float: left;
    top: 50%;

    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);

    transition: all .5s cubic-bezier(.08, .03, .22, .87);
    -webkit-transition: all .5s cubic-bezier(.08, .03, .22, .87);
    -moz-transition: all .5s cubic-bezier(.08, .03, .22, .87);
    -o-transition: all .5s cubic-bezier(.08, .03, .22, .87);
}
.menu_all_btn span {
    display: block;
    position: absolute;
    width: 25px; height: 2px;
    background: #222; border-radius: 9px;
    opacity: 1;
    left: 50%;

    transform: translateX(-50%) rotate(0deg);
    -webkit-transform: translateX(-50%) rotate(0deg);
    -moz-transform: translateX(-50%) rotate(0deg);
    -o-transform: translateX(-50%) rotate(0deg);

    transition: .25s ease-in-out;
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
}
.menu_all_btn span:nth-child(1) {
    top: 9px;
}
.menu_all_btn span:nth-child(2),
.menu_all_btn span:nth-child(3) {
    top: 18px;
}
.menu_all_btn span:nth-child(4) {
    top: 27px;
}


/* 모바일 메뉴 오픈했을때 button */
.menu_all_btn.open span {

}
.menu_all_btn.open.dark span{
    background: #fff;
}
.menu_all_btn.open span:nth-child(1) {
    width: 0%;
    top: 11px; left: 50%;
}
.menu_all_btn.open span:nth-child(2) {
    margin-left: -10px;
    top: 19px;

    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}
.menu_all_btn.open span:nth-child(3) {
    margin-left: -10px;
    top: 19px;

    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
}
.menu_all_btn.open span:nth-child(4) {
    width: 0%;
    top: 11px; left: 50%;
}


/* 사이트맵 / 모바일 메뉴 */
#sitemapBG {
    position: fixed;
    width: 95%; height: 95%;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 20px;
    background: #fff;
    z-index: 98; opacity: 0;
    transition: 1s;
    pointer-events: none; will-change: transform;
}
#sitemapBG.dark {
    background: #000;
}
#sitemapNAV{
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100vh; min-width: 320px;
    border-radius: 20px;
    pointer-events: none;
    z-index: 98; opacity: 0;
    background: transparent;
    transition: all 1s;
    overflow: hidden;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}
#sitemapNAV::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera*/
}
#sitemapNAV:before{
    content: "";
    position: absolute;
    z-index: -1;
    top: 55%; left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 430px;
    height: 180px;
    background: url("/assets/site/img/common/logo_sitemap.png") no-repeat;
    background-size: contain;
    background-position: center top -180px;
    opacity: 0.3;
    transition: 0.5s;
}
#sitemapNAV .wrap{
    margin: 0 auto;
    width: 1600px; max-width: 90%;
}
ul.sitemap_list {
    position: fixed;
    position: absolute;
    display: flex; justify-content: space-between;
    width: 100%; min-width: 320px;
    left: 0; top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}
ul.sitemap_list > li {
    display: inline-block;
    width: 26.333%; padding-left: 7%;
    /* 100 / 갯수 = width + padding-left */
    margin: 1.5rem 0;
    opacity: 0; vertical-align: top;
    transition: 0.4s cubic-bezier(0.365, 0.84, 0.44, 1);
}
ul.sitemap_list > li:nth-child(1){
    padding-left: 0;
}
ul.sitemap_list > li > a {
    display: block;
    box-sizing: border-box; padding: 0 0 1rem;
    position: relative;
    font-size: 2rem; font-weight: 800;
    color: #222; text-decoration: none;
    transition: 0.5s; pointer-events: none;
}
#sitemapNAV.dark ul.sitemap_list > li > a{
    color: #fff;
}
ul.sitemap_list > li > a::before{
    position: absolute;
    content: "";
    left: 0; bottom: 0;
    z-index: -1;
    width: 100%; height: 1px;
    background-color: #ddd;
}
#sitemapNAV.dark ul.sitemap_list > li > a::before{
    background-color: #fff;
}
ul.sitemap_list > li > a::after{
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    z-index: -1;
    width: 100%; height: 1px;
    background: #222;
    transform: scaleX(0.3); transform-origin: left;
    transition: transform 0.5s;
}
ul.sitemap_list > li:hover > a::after{
    transform: scaleX(1);
    transform-origin: left;
}
ul.sitemap_list .sub_menu{
    margin-top: 6px;
    padding-top: 14px;
}
.pc-gnb ul.sitemap_list .sub_menu{
    display: block !important;
}
ul.sitemap_list .sub_menu li{
    margin: 15px 0;
}
ul.sitemap_list .sub_menu li a{
    display: inline-block; vertical-align: middle;
    color: #333; font-size: 1.1rem;
    white-space: nowrap;
}
#sitemapNAV.dark ul.sitemap_list .sub_menu li a{
    color: #fff;
}
ul.sitemap_list .sub_menu li a:hover,
ul.sitemap_list .sub_menu li a:focus{
    font-weight: 600;
    color: #222;
}
ul.sitemap_list .sub_menu li a::before{
    display: none;
}


/* 오픈했을때 */
#sitemapBG.open{
    display: block; opacity: 1;
    pointer-events: auto;
    width: 100%; height: 100%;
    border-radius: 0;
}
#sitemapNAV.open{
    pointer-events: auto;
    opacity: 1;
    width: 100%; height: 100vh;
    border-radius: 0;
}
#sitemapNAV.dark.open{

}
#sitemapNAV.open:before{
    background-position: center center;
    transition-delay: 0.5s;
}
#sitemapNAV.open ul.sitemap_list > li{
    opacity: 1;
    /*transform: translateX(0);*/
}



/* 모바일 메뉴 - 스타일 */
.m-gnb {
    display: none;
    position: relative; min-width: 320px;
}
.m-gnb .gnb-top {
    color: #fff; background: #222;
    position: fixed; top: 0; right: 0;
    width: 100%; max-width: 500px; max-height: 165px; min-width: 320px;
    z-index: 1;
}
.m-gnb .gnb-top h2 {
    padding: 20px 15px;
}
.m-gnb .gnb-top h2 img {
    height: 25px;
}
.m-gnb .gnb-top h2 p {
    margin-top: 15px;
}
.m-gnb .gnb-top .gnb-quick {
    padding: 15px 0;
    border-top: 1px solid #555;
    overflow: hidden;
    background: #222;
}
.m-gnb .gnb-top .gnb-quick a {
    float: left;
    position: relative;
    display:block; width: 50%;
    text-align: center;
    color: #fff;
}
.m-gnb .gnb-top .gnb-quick a::after {
    content: '';
    display: block; width: 1px; height: 15px;
    position: absolute; right: 0; top: 50%;
    background: #555;

    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}
.m-gnb .gnb-top .gnb-quick a:last-child::after {
    content: none;
}
.m-gnb ul.sitemap_list {
    position: relative;
    top: 0; transform: translateY(0);
    display: block;
    width: auto;
    padding: 0 15px 150px;
    margin-top: 165px;
}
.m-gnb ul.sitemap_list > li {
    width: 100%;
    padding-left: 0;
    padding: 20px 0px; margin: 0;
    border-bottom: 1px solid #e8e8e8;
    opacity: 0;
    transform: translateX(50%);
}
.m-gnb ul.sitemap_list > li.active:before{
    width: 100%;
}
.m-gnb ul.sitemap_list > li:nth-child(1){
    transition-delay: 0.05s;
}
.m-gnb ul.sitemap_list > li:nth-child(2){
    transition-delay: 0.1s;
}
.m-gnb ul.sitemap_list > li:nth-child(3){
    transition-delay: 0.15s;
}
.m-gnb ul.sitemap_list > li:nth-child(4){
    transition-delay: 0.2s;
}
.m-gnb ul.sitemap_list > li:nth-child(5){
    transition-delay: 0.25s;
}
.m-gnb ul.sitemap_list > li:nth-child(6){
    transition-delay: 0.3s;
}
.m-gnb ul.sitemap_list > li:nth-child(7){
    transition-delay: 0.35s;
}
#sitemapNAV.open .m-gnb ul.sitemap_list > li{
    opacity: 1;
    transform: translateX(0);
}
.m-gnb ul.sitemap_list > li > a {
    display: block;
    font-size: 1.1rem; font-weight: 600; color: #222;
    padding: 0;
}
#sitemapNAV.open .m-gnb ul.sitemap_list > li > a {
    pointer-events: auto;
}
.m-gnb ul.sitemap_list > li > a::before{
    display: none;
}
.m-gnb ul.sitemap_list > li > a::after {
    transition: transform 0.5s;
    display: block;
    width: 10px; height: 6px;
    z-index: 9;
    top: 50%; bottom: auto; left: auto; right: 0;
    background: url('../img/common/ico-down-black.gif') 0 0 no-repeat;
    transform-origin: center;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}
.m-gnb ul.sitemap_list > li.active > a::after {
    background: url('../img/common/ico-down-black-on.gif') 0 0 no-repeat
}
.m-gnb ul.sitemap_list .sub_menu {
    display: none;
    margin-top: 15px; padding-top: 0; border-top: 0;
}
.m-gnb ul.sitemap_list .sub_menu li {
    margin: 0;
}
.m-gnb ul.sitemap_list .sub_menu li a {
    display: block; padding: 10px 0;
    color: #888;
}
.m-gnb ul.sitemap_list .sub_menu li a.on{
    color: #e60012;
}
.m-gnb ul.sitemap_list .sub_menu li a:hover,
.m-gnb ul.sitemap_list .sub_menu li a:focus{
    color: #e60012;
}
.m-gnb ul.sitemap_list .sub_menu li a::before {
    content: none;
}
.m-gnb ul.sitemap_list > li.active {

}

@media screen and (max-width:1280px) {
    #sitemapBG{
        background: rgba(0, 0, 0, 0.7);
        width: 100%; height: 100%;
        border-radius: 0;
    }
    #sitemapNAV{
        border-radius: 0;
        background: #fff;
        left: auto; right: 0;
        max-width: 500px;
        background: #fff;
        overflow-y: auto;

    }
    #sitemapNAV:before{
        display: none;
    }

    #sitemapNAV .pc-gnb {
        display: none;
    }
    .m-gnb {
        display: block;
        /* overflow: hidden; */
        overflow-y: scroll;
        -ms-overflow-style: none; /* IE and Edge */
        scrollbar-width: none; /* Firefox */
    }
    .m-gnb::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera*/
    }
    .menu_all_btn.open span {
        background-color: #fff;
    }
}
@media screen and (max-width:500px) {
    #sitemapNAV {
        right: auto; left: 0;
    }
    .m-gnb .gnb-top {
        right: auto; left: 0;
    }
}
@media screen and (max-width:460px) {
    .m-gnb .gnb-top h2 {
        padding: 15px 15px;
    }
}




/*********** footer ***********/
footer {
    font-size: 14px; color: #a1a1a1;
    padding: 60px 0;
    background: #222;
}


/* footer - 약관 항목 리스트 */
footer .footer-menu {
    display: inline-block;
}
footer .footer-menu ul::after {
    content: ''; display: block; clear: both;
}
footer .footer-menu ul li {
    float: left; margin-right: 25px;
    position: relative;
}
footer .footer-menu ul li a {
    color: #fff;
}
footer .footer-menu ul li::after {
    content: ''; display: block;
    width: 2px; height: 2px;
    position: absolute; right: -15px; top: 11px;
    background: #fff;
}
footer .footer-menu ul li:last-child {
    margin-right: 0;
}
footer .footer-menu ul li:last-child::after {
    content: none;
}


/* footer - 기본 정보 */
footer .address {
    margin-top: 10px;
}
footer .info em {
    margin-right: 15px;
}
footer .info em:last-child {
    margin-right: 0;
}


/* footer - 카피라이트 */
footer .copyright {
    letter-spacing: -0.2px; margin-top: 25px;
}


/* footer - 관련사이트 */
.family_site {
    display: block;
    width: 230px;
    position: absolute;
    bottom: 0; right: 0;
}
.family_site > .btn_fs_toggle {
    position: relative; display: block;
    line-height: 45px;
    padding: 0 80px 0 20px; color: #fff;
    background: #444;
}
.family_site > .btn_fs_toggle .plus {
    display: block;
    width: 18px; height: 18px;
    margin: -1px 0 0;
    position: absolute;
    top: 50%; right: 22px;

    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}
.family_site > .btn_fs_toggle .plus:before {
    content: "";
    display: block;
    width: 100%; height: 2px;
    background: #aaa;
    position: absolute;
    top: 50%; left: 50%;

    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
}
.family_site > .btn_fs_toggle .plus:after {
    content: "";
    display: block;
    width: 2px; height: 100%;
    background: #aaa;
    position: absolute;
    top: 50%; left: 50%;

    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
}
.family_site .site_list {
    display: none;
    position: absolute;
    bottom: 45px; left: 0;
    width: 100%; max-height: 230px;
    overflow-y: auto; z-index: 1;
    border: 1px solid #e9e9e9; box-sizing: border-box;
    color: #555; background: #fff;
    word-break: break-all;
}
.family_site .site_list li:hover {
    background: rgba(0, 0, 0, 0.05);
}
.family_site .site_list li a {
    position: relative; display: block;
    padding: 13px 20px; font-size: 13px;
}
.family_site .site_list li a:before {
    content: "";
    display: block;
    width: 85%; height: 1px;
    box-sizing: border-box; border-bottom: 1px dashed #e8e8e8;
    position: absolute;
    bottom: 0; left: 50%;

    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}
.family_site .site_list li:last-child a:before {
    display: none;
}


/* footer - SNS */
footer .sns {
    position: absolute;
    top: 0; right: 0;
}
footer .sns::after {
    content: ''; display: block; clear: both;
}
footer .sns li {
    float: left;
    margin: 0 0 0 16px;
}
footer .sns li:first-child {
    margin: 0;
}
footer .sns li a {
    display: block; width: 40px; height: 40px;
    border: 1px solid rgba(0,0,0,0); box-sizing: border-box;
    font-size: 0; text-indent: -9999px; border-radius: 50%;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #444444;
    background-size: 28px;
}
footer .sns li a.in {
    background-image: url("../img/common/ico-sns-in.png");
}
footer .sns li a.fb {
    background-image: url("../img/common/ico-sns-fb.png");
}
footer .sns li a.nb {
    background-image: url("../img/common/ico-sns-nb.png");
}
footer .sns li a.yt {
    background-image: url("../img/common/ico-sns-yt.png");
    background-size: 26px;
}


@media screen and (max-width:1280px) {
    footer {
        font-size: 12px;
        padding: 40px 0;
    }
    footer .sns {
        position: relative;
        margin-top: 20px;
    }
    footer .copyright {
        margin-top: 10px;
    }
    .family_site {
        position: relative; margin-top: 20px;
        width: 100%;
    }
    .family_site > .btn_fs_toggle {
        background: none;
        border-bottom: 1px solid #444;
        padding: 0 80px 0 0;
    }
    .family_site > .btn_fs_toggle .plus {
        right: 0;
    }
    .family_site .site_list {
        bottom: 46px;
    }
    .family_site .site_list li a:before {
        width: calc( 100% - 40px );
    }
}




/*********** floating - 우측 하단 고정메뉴 ***********/
.floating_menu {
    position: fixed;
    right: 50px; bottom: 73px;
    transform: translateY(15px);
    -webkit-transform: translateY(15px);
    -moz-transform: translateY(15px);
    -o-transform: translateY(15px);
    z-index: 2;
 }
.floating_menu ul.sns {
    display: block;
    clear: both; transition: all 200ms linear;
    margin-bottom: 15px;
}
.floating_menu ul.sns li {
    position: relative;
    height: 46px; line-height: 46px;
    margin: 0 0 10px 0; text-align: center;
    transition: all 200ms linear;
}
.floating_menu ul.sns li::after {
    content: ''; display: block; clear: both;
}
.floating_menu ul.sns li:last-child {
    margin: 0;
}
.floating_menu ul.sns li a {
    float: right;
    display: block;
    border-radius: 58px;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.35);
}
.floating_menu ul.sns li.naver_talktalk a {
    background: #00c63b; color: #fff;
}
.floating_menu ul.sns li.kakao a {
    background: #fae100; color: #111;
}
.floating_menu ul.sns li.ars {
    display: none;
}
.floating_menu ul.sns li.ars a {
    background: #b01e46; color: #fff;
}
.floating_menu ul.sns li.inquiry a {
    background: #111; color: #fff;
}
.floating_menu ul.sns li a span {
    position: relative;
    display: block; width: 0px; height: 46px;
    color: rgba(0,0,0,0); text-align: left;
    overflow: hidden;
    padding: 0 0 0 46px;
}
.floating_menu ul.sns li a:hover span,
.floating_menu ul.sns li a:focus span{
    width: 100px;  transition: all 200ms linear;
    font-size: 14px; font-weight: 500; color: #fff;
}
.floating_menu ul.sns li.kakao a:hover span,
.floating_menu ul.sns li.kakao a:focus span {
    color: #3c1e1e;
}
.floating_menu ul.sns li a span:before {
    content: "";
    position: absolute; top: 0; left: 0;
    display: block; width: 46px; height: 46px;
    border-radius: 50%;
    background: url("../img/common/floating_menu01.png") no-repeat;
    background-size: 40px; background-position: center center;
}
.floating_menu ul.sns li a:hover span:before,
.floating_menu ul.sns li a:focus span:before {
    border-radius: 50% 0 0 50%; transition: all 200ms linear;
}
.floating_menu ul.sns li.naver_talktalk a span:before {
    background-image: url("../img/common/floating_menu01.png");
}
.floating_menu ul.sns li.kakao a span:before {
    background-image: url("../img/common/floating_menu02.png");
}
.floating_menu ul.sns li.ars a span:before {
    background-image: url("../img/common/floating_menu04.png");
}
.floating_menu ul.sns li.inquiry a span:before {
    background-image: url("../img/common/floating_menu03.png");
}


/* 상단 바로가기 */
.progress-wrap {
    display: block;
    width: 46px; height: 46px;
    border-radius: 50px; box-shadow: inset  0 0 0 2px rgba(0,0,0,0.2);
    opacity: 0; z-index: 101;
    visibility: hidden; cursor: pointer;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
    background: #fff;
    float: right;
}
.progress-wrap.active-progress {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.progress-wrap::after {
    content: '';
    display: block;
    width: 16px; height: 16px;
    position: absolute;
    left: 50%; top: 32%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    z-index: 1;
    background: url(../img/common/scroll_top_ic.png) no-repeat center;
    cursor: pointer;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.progress-wrap:hover::after {
	opacity: 0;
}
.progress-wrap::before {
    content: '';
    display: block;
    position: absolute;
    left: 50%; top: 32%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    width: 16px; height: 16px;
    background: url(../img/common/scroll_top_ic_hover.png) no-repeat center;
    cursor: pointer;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
    opacity: 0; z-index: 2;
}
.progress-wrap:hover::before {
	opacity: 1;
}
.progress-wrap svg path {
	fill: none;
}
.progress-wrap svg.progress-circle path {
    stroke: #444;
	stroke-width: 5;
	box-sizing:border-box;
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}


@media screen and (max-width:1280px) {
    .floating_menu {
        right: 20px; bottom: 40px;
        transform: translateY(0);
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -o-transform: translateY(0);
    }
    .progress-wrap {
        width: 40px; height: 40px;
    }
}




/*********** Sub Visual ***********/
.sub_visual {
    position: relative; overflow: hidden;
    width: 100%; height: 320px;
    margin: 0 auto; margin-top: 90px;
    transition:all .1s linear; z-index:8;
}
.sub_visual .wrap {
    position: absolute;
    width: 100%; height: 100%; max-width: 1280px;
    top: 0; left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    margin:0 !important;
    z-index: 5;
}
.sub_visual .text{
    position: absolute;
    width: 100%;
    top: 50%; left: 0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    text-align: center;
    z-index: 10;
    padding: 0; margin-top: -30px;
    color: #fff;
}
.sub_visual h2 {
    font-size: 40px; font-weight: 500;
}
.sub_visual p {
    color: #aaa;
}


/* Sub nav - PC */
.subdepth {
    position: relative;
    width: 100%; height: 65px; max-width: 1600px;
    margin: 0 auto; margin-top: -64px;
    background: #fff;
    z-index: 10;
}
.subdepth .inner{
    width: 1600px; margin: auto;
}
.subdepth .bgn {
    position: relative;
    text-align: center;
}
.subdepth .bgn span {
    display: inline-block;
    line-height: 65px;
}
.subdepth .bgn span a {
    display: block; position: relative;
    margin: 0 25px;
    white-space: nowrap;
    transition: 0.2s;
    transition: all .5s cubic-bezier(.08, .03, .22, .87);
    -webkit-transition: all .5s cubic-bezier(.08, .03, .22, .87);
    -moz-transition: all .5s cubic-bezier(.08, .03, .22, .87);
    -o-transition: all .5s cubic-bezier(.08, .03, .22, .87);
}
.subdepth .bgn span a.on {
    color: #222;
    font-weight: 700;
}
.subdepth .bgn span a.on::after {
    content: '';
    display: block; position: absolute;
    bottom: 0;
    width: 100%;  height: 3px;
    background: #222;
}


/* Sub nav - Mobile */
.submenu_select {
    display: none;
    text-align: left;
    border-bottom: 1px solid #ddd; box-sizing: border-box;
}
.submenu_select .inner {
    width: 100%;
}
.submenu_select .home {
    display: inline-block;
    width: 60px; height: 52px;
    vertical-align: middle;
    position: relative;
}
.submenu_select .main_menu {
    position: relative;
    display: inline-block;
    width: 250px; height: 52px;
    vertical-align: middle;
}
.submenu_select .sub_menu {
    display: inline-block;
    width: 250px;
    vertical-align: middle;
    position: relative;
}
.submenu_select .home::after {
    content: ''; display: block; position: absolute;
    width: 1px; height: 100%; background: #ddd;
    right: 0; top: 0;
}
.submenu_select .home a {
    display: block; text-indent: -9999px; margin: 0 auto;
    width: 100%; height: 100%;
    background: url('../img/sub/home_ic.png') no-repeat center;
}
.submenu_select .main_menu::after {
    content: ''; display: block; position: absolute;
    width: 1px; height: 100%; background: #ddd;
    right: 0; top: 0;
}
.submenu_select .sub_menu::after {
    content: ''; display: block; position: absolute;
    width: 1px; height: 100%; background: #ddd;
    right: 0; top: 0;
}
.submenu_select button {
    border: none; outline: none; cursor: pointer;
    font-size: 14px; color: #222; letter-spacing: -0.8px; line-height: 52px;
    background: url('../img/sub/submenu_arr.png') transparent no-repeat 88% center;
    width: 100%; text-align: left; box-sizing: border-box;
    padding: 0 20px;
}
.submenu_select .main_menu ul,
.submenu_select .sub_menu ul {
    display: none;
    position: absolute;
    top: 52px; left: -2px;
    width: 100%;
    padding: 10px 0;
    text-align: left;
    background: #fff;
    border-top: 1px solid #eee; box-sizing: border-box;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 9;
}
.submenu_select .main_menu ul li:hover,
.submenu_select .sub_menu ul li:hover{
    background: #f7f7f7;
}
.submenu_select .main_menu ul li a,
.submenu_select .sub_menu ul li a{
    display: block;
    font-size: 14px; color: #222; letter-spacing: -0.8px;
    box-sizing: border-box; padding: 5px 20px;
}


.sub_visual .visual_img {
    display:block;
    position:absolute;
    z-index:3;
    width: 100%;
    height:100%;
    margin:0 0 0 -50%;
    left:50%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.sub_visual .visual_img::after {
    content: '';
    display: block;
    width: 100%; height: 100%;
    position: absolute;
    top: 0; left: 0;
    background: rgba(0,0,0,.45);
}
.sub_visual .visual_img img{
    animation:ani_slide1 3s ease-in-out;
    display:block;
    margin:0 auto;
    z-index:8;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

@keyframes ani_slide1 {
    0% {margin-top: 0px;}
    50% {margin-top: -40px;}
    100% {margin-top: 0;}
}
@media screen and (max-width:1600px) {
    .subdepth {
        width: 95%;
    }
    .subdepth .inner {
        width: 100%;
    }
}

@media screen and (max-width:1280px) {
    .sub_visual {
        margin-top: 80px;
    }
}

@media screen and (max-width:1024px) {
    .sub_visual {
      height: auto;
      padding-bottom: 20%;
      margin-top: 80px;
    }
    .subdepth {
        display: none;
    }
    .submenu_select {
        display: block;
    }
    .sub_visual .text {
        margin-top: 0;
    }
    .sub_visual h2 {
        font-size: 30px;
    }
}

@media screen and (max-width:860px) {
    .sub_visual {
        margin-top: 65px;
    }
    .submenu_select .home {
        width: 10%;
    }
    .submenu_select .main_menu {
        width: 42%;
    }
    .submenu_select .sub_menu {
        width: 42%;
    }
    .submenu_select .sub_menu::after {
        content: none;
    }
}
@media screen and (max-width:640px) {
    .sub_visual .text {
        display: none;
    }
}
@media screen and (max-width:460px) {
    header {
        height: 55px;
    }
    .sub_visual {
        margin-top: 55px;
        padding-bottom: 30%;
    }
    .submenu_select .main_menu ul,
    .submenu_select .sub_menu ul {
        top: 45px;
    }
    .submenu_select .main_menu {
        height: 45px;
    }
    .submenu_select .home {
        height: 45px;
    }
    .submenu_select button {
        height: 45px; line-height: 45px;
    }

}




/*********** Sub Layout ***********/
.sub_container {
    clear:both; position:relative;
    margin:0 auto;  /*z-index:1;*/
    overflow:hidden ;
    padding: 90px 0 4rem;
    min-height:400px;
 }
.sub_contents {
    z-index:10;
}


@media screen and (max-width:860px) {
    .sub_container {
        padding: 70px 0 4rem;
    }
}
@media screen and (max-width:460px) {
    .sub_container {
        padding: 55px 0 4rem;
    }
}




/*********** Popup ***********/
.div_popup{
    z-index: 99 !important;
    border: 1px solid rgba(0,0,0,.1); box-sizing: border-box;
    min-width: 320px;
}
.div_popup table {
    width: 100%;
}
.div_popup .divpop-img img {
    width: 100%;
}
.div_popup .divpop-bottom{
    background: #fff;
}
.div_popup .divpop-bottom a td::after {
    content: ''; display: block; clear: both;
}
.div_popup .divpop-bottom a{
    display: inline-block;
    color: #222;
    font-size: 14px; letter-spacing: -0.5px; vertical-align: middle;
    margin: 0 20px; line-height: 40px;

    transition: all .2s cubic-bezier(.08, .03, .22, .87);
    -webkit-transition: all .2s cubic-bezier(.08, .03, .22, .87);
    -moz-transition: all .2s cubic-bezier(.08, .03, .22, .87);
    -o-transition: all .2s cubic-bezier(.08, .03, .22, .87);
}
.div_popup .divpop-bottom a:hover {
    color: #999;
}
.div_popup .divpop-bottom a.close {
    float: right;
    position: relative;
    padding: 0 25px 0 0;
}
.div_popup .divpop-bottom a.close::before {
    content: ''; display: inline-block;
    position: absolute; right: 0; top: 50%;
    transform: translateY(-50%) rotate(45deg);
    -webkit-transform: translateY(-50%) rotate(45deg);
    -moz-transform: translateY(-50%) rotate(45deg);
    -o-transform: translateY(-50%) rotate(45deg);

    transition: all .2s cubic-bezier(.08, .03, .22, .87);
    -webkit-transition: all .2s cubic-bezier(.08, .03, .22, .87);
    -moz-transition: all .2s cubic-bezier(.08, .03, .22, .87);
    -o-transition: all .2s cubic-bezier(.08, .03, .22, .87);

    width: 17px; height: 1px;
    background: #222;
}
.div_popup .divpop-bottom a.close::after {
    content: ''; display: inline-block;
    position: absolute; right: 0; top: 50%;
    transform: translateY(-50%) rotate(-45deg);
    -webkit-transform: translateY(-50%) rotate(-45deg);
    -moz-transform: translateY(-50%) rotate(-45deg);
    -o-transform: translateY(-50%) rotate(-45deg);

    transition: all .2s cubic-bezier(.08, .03, .22, .87);
    -webkit-transition: all .2s cubic-bezier(.08, .03, .22, .87);
    -moz-transition: all .2s cubic-bezier(.08, .03, .22, .87);
    -o-transition: all .2s cubic-bezier(.08, .03, .22, .87);

    width: 17px; height: 1px;
    background: #222;
}
.div_popup .divpop-bottom a.close:hover::before,
.div_popup .divpop-bottom a.close:hover::after {
    background: #999;
}
.div_popup .divpop-bottom a.today {
    float: left;
}

@media screen and (max-width:640px){
    .div_popup{
        z-index: 999999 !important;
        width: 90% !important;
        top: 50% !important; left: 50% !important;
        transform: translate(-50%,-50%);
        -webkit-transform: translate(-50%,-50%);
        -moz-transform: translate(-50%,-50%);
        -o-transform: translate(-50%,-50%);
    }
}


/********** 서브페이지 타이틀 **********/
.sub_tit{
  position: relative;
}
.sub_tit strong{
    display: block;
    font-size: 3rem;
    font-weight: 600;
    color: #222;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 2rem;
}
.sub_tit_s span{
    display: block;
    font-size: 1.125rem;
    color: #666;  letter-spacing: -0.8px;
    line-height: 1;
}

.section_title{
  border-bottom: 2px solid #ccc;
}
.section_title span{
  display: inline-block;
  font-size: 1.25rem;
  font-weight: 600;
  padding: 0 1% 6px 1%;
  letter-spacing: -1px;
  margin-bottom: -2px;
  border-bottom: 2px solid #444;
  color: #222;
}

@media screen and (max-width:1440px){
  .sub_tit::before{
    top: -88px;
  }
}
@media screen and (max-width:860px){
  .sub_tit::before{
    top: -90px;
  }
  .sub_tit strong{
    font-size: 2.2rem;
  }
  .sub_tit_s span{
    font-size: 1rem;
  }
}
@media screen and (max-width:860px){
  .sub_tit strong{
    font-size: 1.8rem;
    margin-bottom : 1.5rem;
  }
}

/* ==========================================================================
    COMMON
   ========================================================================== */
.main-grid{
    position: relative;
    padding: 0 var(--main-gap);
}
.c01{color: var(--point-color01);}
.c02{color: var(--point-color02);}
.biotite-wrap {
    position: relative;
    max-width: var(--main-width); margin: 0 auto;
    background-color: var(--point-color01);
    .biotite-header {
        max-width: var(--main-width); height: auto;
        .header-inner {display: flex; justify-content: space-between; align-items: center; height: var(--header-height); background-color: var(--point-color01); font-family: 'JeonjuCraftMyungjo', 'Noto Serif KR', serif; font-size: 16px;}
        .logo{font-size: 19px; font-weight: 700; color: #fff;}
        .btn-nav{display: none}
        .btn-nav a{display: flex; justify-content: center; align-items: center; height: 38px; padding: 0 12px; background-color: #fff; border-radius: 19px;}
        .btn-nav span{font-size: 18px; font-weight: bold; line-height: 25px; padding-left: 21px; background-repeat: no-repeat; background-position: 0 calc(50% - 1px); background-size: 17px auto;}
        .btn-nav.peach span{background-image: url('/assets/site/img/biotite/ico-peach.svg');}
        .btn-nav.apple span{background-image: url('/assets/site/img/biotite/ico-apple.svg');}
    }
    .sub_container{padding: calc(var(--header-height) + 20px) 0 0;}
    .sub_visual, .submenu_select{display: none;}
    .sub_tit{padding-top: 35px; padding-bottom: 15px;}
    .sub_tit strong{font-size: 27px; margin-bottom: 17px;}
    .sub_contents{padding: 0; background-color: #fff;}
    .biotite-footer {
        padding: 30px 0;
        font-size: 16px; color: #fff; line-height: 27px; text-align: center;
        background-color: var(--point-color01);
        .footer-menu ul li a {font-size: 15px;}
        .address{margin-top: 15px;}
        .company{font-size: 17px; margin-bottom: 10px;}
        .address p {display: flex; justify-content: center; gap: 10px;}
        .copyright{font-size: 13px; margin-top: 24px;}
        .sns{display: none;}
    }
    .progress-wrap svg.progress-circle path{stroke: var(--point-color01);}
    .guide{padding-bottom: 40px;}
    .guide .con_text{font-size: 15px; line-height: 22px;}
}
.main .biotite-wrap .biotite-header{display: none;}


/* ==========================================================================
    PAGES
   ========================================================================== */
.page-wrap {
    font-size: 18px; line-height: 34px;
    .top-vis{
        .media-group > ul{gap: 0;}
        .media-group .media-item{border: 0}
        + .cont-section{}
    }
    .bg-gray{background-color: #f7f7f7;}
    .cont-section{position: relative; padding: 50px var(--main-gap) 65px;}
    .cont-section:nth-last-child(2){padding-bottom: 20px;}
    .section-title {
        font-size: 30px; font-weight: bold; line-height: 40px; text-align: center; margin-bottom: 28px;
        /*&::before,
        &::after{content: ""; position: relative; top: -1px; display: inline-block; width: 13px; aspect-ratio: 1 / 1; background-repeat: no-repeat; background-position: center; background-size: 100% auto;}*/
    }
    .section-ttext{font-size: 23px; font-weight: bold; text-align: center; margin-bottom: 19px;}
    .media-group {
        > ul{display: flex; flex-direction: column; gap: var(--main-gap);}
        .media-item{border: 1px solid #e7e7e7;}
        .media-item iframe{max-width: 100%; width: 100%; height: auto; aspect-ratio: 16 / 9; border: 0;}
    }
    .main-slogan{text-align: center; padding: 35px 0;}
    .sec-editor{display: none;}
    .sec-editor:has(.editor-area p),
    .sec-editor:has(.editor-area div){padding-top: 30px; margin-top: 30px;}
    .sec-editor:has(.editor-area p)::after,
    .sec-editor:has(.editor-area div)::after{content: ""; display: block; position: absolute; top: 0; width: calc(100% - 40px); height: 1px; border: 0; border-top: 1px solid #e7e7e7;}
}
.biotite-wrap:has(.page-peach),
.biotite-wrap:has(.page-apple) {
    .sub_container{padding: calc(var(--header-height) - 1px) 0 0;}
    .sub_tit{display: none;}
}
.biotite-wrap:has(.page-peach) {
    .biotite-header .btn-nav.apple{display: block;}
   /* .section-title::before,
    .section-title::after{background-image: url('/assets/site/img/biotite/ico-peach.svg');}*/
}
.biotite-wrap:has(.page-apple) {
    .biotite-header .btn-nav.peach{display: block;}
    /*.section-title::before,
    .section-title::after{background-image: url('/assets/site/img/biotite/ico-apple.svg');}*/
}

/* ==========================================================================
    Main Page
   ========================================================================== */
.main-vis{
    position: relative;
    display: flex; flex-direction: column; justify-content: space-between;
    height: 100svh; padding: 60px var(--main-gap);
    background: url('/assets/site/img/biotite/main-vis01.jpg') no-repeat center / cover;
    .main-tit-wrap{font-family: 'JeonjuCraftMyungjo', 'Noto Serif KR', serif; color: #fff; text-align: center}
    .sub-text{font-size: 24px; font-weight: bold; margin-bottom: 8px;}
    .main-text{font-size: 54px; font-weight: bold;}
    .btn-wrap{display: flex; flex-direction: column; gap: 10px;}
    .link-item a{display: flex; justify-content: center; align-items: center; height: 55px; padding: 0 14px; background-color: var(--point-color01); border-radius: 28px;}
    .link-item span{font-family: 'JeonjuCraftMyungjo', 'Noto Serif KR', serif; font-size: 25px; font-weight: bold; color: #fff; line-height: 35px; padding-left: 35px; background-repeat: no-repeat; background-position: 0 calc(50% - 1px); background-size: 25px auto;}
    .apple span{background-image: url('/assets/site/img/biotite/ico-peach.svg');}
    .peach span{background-image: url('/assets/site/img/biotite/ico-apple.svg');}
}