

.frame img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.mt0{margin-top: 0 !important;}
input:disabled{background: unset; color: inherit;}

.fz25{font-size: 25px;}
.fz22{font-size: 22px;}
.fz20{font-size: 20px;}
.fz16{font-size: 0.89em;}
.fz14{font-size: 0.78em;}


/* dft-tit */
.dft-tit{
    position: relative;
    line-height: 1.2;
    z-index: 1;
}
.dft-tit::before{
    display: block;
    overflow: hidden;
    position: absolute;
    top: -8px;
    left: -30px;
    width: 66px;
    height: 66px;
    background-image: url(/html/assets/img/common/title_dec.png);
    background-size: cover;
    box-shadow: 12px 6px 10px 0 #cfd4f9;
    border-radius: 50%;
    z-index: -1;
    content: '';
}


.ftpd{
    padding-bottom: 230px;
    margin-bottom: -230px;
}



/* -------------------- header -------------------- */
header .header-wrap{
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    height: 90px;
    max-width: 1840px;
    margin: 0 auto;
    z-index: 1000;
    transition: top 0.5s;
}
header .header-wrap .logo{
    width: 155px;
}
header .header-wrap .logo a{display: block;}
header .header-wrap .rgt .btn-mnu{
    position: relative;
}
header .header-wrap .btn-mnu .txt{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 32px;
    color: #131313;    
    font-size: 20px;
    clip-path: inset(0 0 0 0);
    transition: clip-path 0.5s, color 0.5s;
    transition-timing-function: ease-out;
}
header .header-wrap .btn-mnu .txt.clse{
    clip-path: inset(0 0 100% 0);
}
header .header-wrap .btn-mnu.on .txt.menu{
    clip-path: inset(100% 0 0 0);
}
header .header-wrap .btn-mnu.on .txt.clse{
    clip-path: inset(0 0 0 0);
}

header .header-wrap .btn-mnu .bar{
    position: relative;
    width: 24px;
    height: 12px;
    margin-left: 7px;
}
header .header-wrap .btn-mnu .bar .line{
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #131313;
    transition: width 0.25s, background-color 0.5s, top 0.25s, bottom 0.25s, left 0.5s, right 0.5s;
}
header .header-wrap .btn-mnu .bar .line1{
    top: 0;
    left: 0;
}
header .header-wrap .btn-mnu .bar .line2{
    bottom: 0;
    right: 0;
    width: 65%;
}

header .header-wrap .btn-mnu.on .bar .line1{  
    top: 50%;
    -webkit-animation: momnu1 0.5s forwards ease-in;
            animation: momnu1 0.5s forwards ease-in;
}
header .header-wrap .btn-mnu.on .bar .line2{
    width: 100%;
    bottom: 50%;
    -webkit-animation: momnu2 0.5s forwards ease-in;
            animation: momnu2 0.5s forwards ease-in;
}

header .header-wrap.scroll{
    top: -100px;
}


@-webkit-keyframes momnu1 {
    50% {
        -webkit-transform: translateY(-50%);
                transform: translateY(-50%);
    } 100% {
        -webkit-transform: translateY(-50%) rotate(45deg);
                transform: translateY(-50%) rotate(45deg);
    }
}

@-webkit-keyframes momnu2 {
    50% {
        -webkit-transform: translateY(50%);
                transform: translateY(50%);
    } 100% {
        -webkit-transform: translateY(50%) rotate(-45deg);
                transform: translateY(50%) rotate(-45deg);
    }
}

@keyframes momnu1 {
    50% {
        -webkit-transform: translateY(-50%);
                transform: translateY(-50%);
    } 100% {
        -webkit-transform: translateY(-50%) rotate(45deg);
                transform: translateY(-50%) rotate(45deg);
    }
}

@keyframes momnu2 {
    50% {
        -webkit-transform: translateY(50%);
                transform: translateY(50%);
    } 100% {
        -webkit-transform: translateY(50%) rotate(-45deg);
                transform: translateY(50%) rotate(-45deg);
    }
}



/* header white */
header .header-wrap.white .btn-mnu .txt{color: #fff;}
header .header-wrap.white .btn-mnu .bar .line{
    background-color: #fff;
    
}



/* 메뉴 */
.gnb-wrap{
    display: none;
    position: fixed;
    top: 0;bottom: 0;right: 0;left: 0;
    z-index: 100;
}
.gnb-wrap nav{
    height: 100%;
    background-image: url(/html/assets/img/menu/menu_bg2.png);
    background-position: center;
    background-size: min(135%, 1200px);
    background-repeat: no-repeat;
    transition: opacity 0.7s;
    opacity: 0;
    transition-delay: 0.4s;
}
.gnb-wrap nav ul{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 1000px;
}
.gnb-wrap nav ul li{
    font-size: 49px;
    margin: 30px 0;
    transform: translateX(-20%);
    opacity: 0;
    transition: transform 1.5s, opacity 1.5s, color 0.5s;
}
.gnb-wrap nav ul li a{
    transition: color 0.5s;
}


.gnb-wrap.open{
    display: block;
}
.gnb-wrap.open nav{
    transform: translateY(0);
    opacity: 1;

}
.gnb-wrap.open nav li{
    transform: translateX(0);
    opacity: 1;
}
.gnb-wrap.open nav li:nth-of-type(1){transition-delay: 0.2s;}
.gnb-wrap.open nav li:nth-of-type(2){transition-delay: 0.4s;}
.gnb-wrap.open nav li:nth-of-type(3){transition-delay: 0.6s;}
.gnb-wrap.open nav li:nth-of-type(4){transition-delay: 0.7s;}
.gnb-wrap.open nav li:nth-of-type(5){transition-delay: 0.8s;}

.gnb-wrap nav ul li::before{
    display: block;
    position: absolute;
    top: 45%;
    left: -30px;
    width: 15px;
    height: 15px;
    background-color: #001ade;
    border-radius: 50%;
    content: '';
    opacity: 0;
    transition: opacity 0.4s;
}

.gnb-wrap .btmbox{
    position: absolute;
    bottom: 40px;
    right: 2.5%;
    right: max(calc((100% - 1840px)/2), 2.5%);
}
.gnb-wrap .btmbox p{
    font-size: 0.89em;
    letter-spacing: 0.005em;
    text-align: right;
}


/* sns-link */
.snslink-wrap ol{
    display: flex;
    justify-content: flex-end;
    margin-bottom: 10px;
}
.snslink-wrap ol li{
    margin-left: 8px;
}
.snslink-wrap a{
    display: block;
}
.snslink-wrap a img{
    display: block;
    height: 22px;
}



.gnb-overlay{
    position: fixed;
    width: 100%;
    height: 0%;
    background-color: #fff;
    /* background-image: url(/html/assets/img/menu/layered-waves-haikei.svg); */
    z-index: 99;
    transition: height 0.7s;
    transition-timing-function: ease-out;
    /* border-bottom-left-radius: 50%;
    border-bottom-right-radius: 50%; */
}
/* .gnb-overlay .mnu-layer{
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #fff;
} */
.gnb-overlay.open{
    height: 100%;
    /* border-bottom-left-radius: 0;
    border-bottom-right-radius: 0; */
}
.gnb-overlay.close .mnu-layer path{
    animation: ovlay 1s forwards;
}
.gnb-overlay-dummy{
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.3;
    z-index: 98;
}

@keyframes ovlay {
    0%{
        d: path("M0 960L166.7 960C333.3 960 666.7 960 1000 960C1333.3 960 1666.7 960 1833.3 960L2000 960L2000 0L1833.3 0C1666.7 0 1333.3 0 1000 0C666.7 0 333.3 0 166.7 0L0 0Z");
    }
    80% {
      d: path("M1920,0H0v913.9h1.9C32.9,769.8,450,655.7,960,655.7s927.1,114.1,958.1,258.3h1.9V0z");
    }
    100% {
        d: path("M0 960L166.7 960C333.3 960 666.7 960 1000 960C1333.3 960 1666.7 960 1833.3 960L2000 960L2000 0L1833.3 0C1666.7 0 1333.3 0 1000 0C666.7 0 333.3 0 166.7 0L0 0Z");

    }
  }




/* -------------------- footer -------------------- */
footer{
    position: relative;
    z-index: 1;
}
footer::after{
    display: block;
    width: 100%;
    position: absolute;
    bottom: 0;
    height: 120%;
    background-image: url(/html/assets/img/common/footer_bg.png);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
    z-index: -1;
    content: '';
}
footer .footer-wrap{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 95%;
    max-width: 1840px;
    height: 230px;
    margin: 0 auto;
    color: #fff;
    padding-bottom: 40px;
    box-sizing: border-box;    
}
footer .footer-wrap a,
footer .footer-wrap p{letter-spacing: 0;}

footer .footer-wrap .mid p{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90%;
    text-align: center;
    transform: translate(-50%, -50%);
    font-size: 30px;
    letter-spacing: -0.005em;
}



@media screen and (min-width:1024.1px) {

    /* -------------------- header -------------------- */
    .gnb-wrap nav ul:hover a{
        color: #d9d9d9 !important;
    }

    .gnb-wrap nav ul li:hover{position: relative;}
    .gnb-wrap nav ul li:hover::before{
        opacity: 30%;
    }
    .gnb-wrap nav ul li:hover a{
        color: #1a1a1a !important;
    }



    /* -------------------- footer -------------------- */
    footer .footer-wrap .admin:hover .ico{
        animation: adm-rotate 3s linear infinite;       
    }

    @keyframes adm-rotate {
        to{
            transform: rotate(360deg);
        }
    }
   
}


@media screen and (max-width:1024px) {

    .fz25{font-size: 22px;}
    .fz22{font-size: 20px;}
    .fz20{font-size: 18px;}

    
    .dft-tit::before{
        width: 60px;
        height: 60px;
        top: -6px;
        left: -25px;
    }


    /* -------------------- header -------------------- */
    .gnb-wrap nav ul li{font-size: 42px;}
    .gnb-wrap nav ul li a{
        color: #1a1a1a;
    }
}


@media screen and (max-width:850px) {

    .fz25{font-size: 20px;}
    .fz22{font-size: 18px;}
    .fz20{font-size: 17px;}


    .dft-tit::before{
        width: 52px;
        height: 52px;
    }


    /* -------------------- header -------------------- */
    .gnb-wrap nav ul li{font-size: 36px;}
}


@media screen and (max-width:600px) {

    .fz25{font-size: 18px;}
    .fz22{font-size: 17px;}
    .fz20{font-size: 16px;}

    .dft-tit::before{
        width: 45px;
        height: 45px;
        left: -20px;
    }


    /* -------------------- header -------------------- */
    header .header-wrap{
        width: 90%;
        height: 70px;
    }
    header .header-wrap .logo{width: 130px;}
    header .header-wrap .rgt .txt{font-size: 18px;}
    header .header-wrap .rgt .bar{
        width: 22px;
        height: 10px;
    }
    header .header-wrap .rgt .bar .line{height: 2px;}


    .gnb-wrap nav ul li{font-size: 30px;}
    .gnb-wrap .btmbox{
        right: 5%;
        bottom: 30px;
    }


    /* -------------------- footer -------------------- */
    footer .footer-wrap{
        width: 90%;
        padding-bottom: 30px;
    }
    footer .footer-wrap .mid p{font-size: 26px;}
}


@media screen and (max-width:450px) {

    .fz25{font-size: 17px;}
    .fz22{font-size: 16px;}
    .fz20{font-size: 15px;}

    .dft-tit::before{
        width: 36px;
        height: 36px;
        top: -4px;
        left: -16px;
    }

    .ftpd{
        padding-bottom: 180px;
        margin-bottom: -180px;
    }


    /* -------------------- header -------------------- */
    .gnb-wrap nav ul li{
        font-size: 27px;
        margin: 25px 0;
    }



    /* -------------------- footer -------------------- */
    footer::after{
        background-size: 100% 100%;
    }
    footer .footer-wrap{
        height: 180px;
    }
    footer .footer-wrap .mid p{
        font-size: 24px;
        top: 45%;
    }

}