/* reset */
*{margin: 0;padding: 0;word-break: keep-all;}
*, *:after, *:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
a{
    text-decoration: none;
    color: inherit;
}
ul,ol{list-style: none;}
h1,h2,h3,h4,h5,h6{
    font-size: inherit;
    font-weight: inherit;
}
b,strong{font-weight: inherit;}
i,em,address{font-style: inherit;}
img{max-width: 100%;}
/* ani */
@keyframes fadeInRight {
    0% {
        transform: translateX(-50px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}
@keyframes fadeInLeft {
    0% {
        transform: translateX(50px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}
@keyframes fadeInTop {
    0% {
        transform: translateY(-50px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}
@keyframes fadeInBottom {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}
@keyframes fadeInScale {
    0% {
        transform: scale(0.7);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}
@keyframes menuOpen {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(0);
    }
}
/* copy_e */
.copy_e{
    position: relative;
    white-space: nowrap;
    display: inline-block;    
    line-height: 1.3em;
}
.copy_e .copy{
    position: absolute;
    display: inline-block;
    left: 0;
    top: 0;
    width: 0%;
    height: 100%;
    font-size: 1em;
    font-weight: inherit;
    line-height: 1.3em;
    /* color: #000; */
    opacity: 0.2;
    overflow: hidden;
    white-space: nowrap;
    transition: width 1s ease-in-out ;
}
.copy_e.active .copy{width: 100%;opacity: 1;margin-top:0;}
/*  */
.copy_e{color:rgba(0, 0, 0, 0.1);}
.copy_e .copy{color:rgba(0, 0, 0, 1);}
.sec1 .copy_e{color:rgba(255, 255, 255, 0.1);}
.sec1 .copy_e .copy{color:rgba(255, 255, 255, 1);}

/* common */
html{
    /* scroll-behavior: smooth; */
    font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    font-weight: 400;
    font-size: 10px;
    background: #fff;
    color: #000;
    line-height: 1.4;
}
html *.Paperlogy{font-family: 'Paperlogy';}
.container{
    max-width: 1520px;
    width: 95%;
    margin: 0 auto;
}

.page{overflow: hidden;width: 100%;}
.innertop{padding-top: 10rem;}
.innerbottom{padding-bottom: 10rem;}
b{font-weight: 700;}
p{font-size: 21px;font-weight: 500;color: #3a3a3a;}
*.m50{margin-bottom: 5rem;}
*.m20{margin-bottom: 2rem;}
*.m10{margin-bottom: 1rem;}
/* header */

#top_btn{cursor: pointer;}
/* popup */
.popups{position: absolute;z-index: 9999999;}
#popup_10{z-index:101;}
#popup_9{z-index:102;}
#popup_8{z-index:103;}
#popup_7{z-index:104;}
#popup_6{z-index:105;}
#popup_5{z-index:106;}
#popup_4{z-index:107;}
#popup_3{z-index:108;}
#popup_2{z-index:109;}
#popup_1{z-index:110;}

.popup_wrap {
    width: 100%;
    max-width: 450px;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 9999;
}
.popup_foot {
    padding: 10px;
    font-size: 1.5rem;
}
.popup_foot>div{
    display: flex;
    justify-content: space-between;
}
.popup_foot label span{
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.popup_close{
    cursor: pointer;
}
.popup_wrap.introani{
    animation: introanimation .8s forwards ease;
}
/* quick */
#quick-placeholder{
    position: fixed;
    bottom: 2vw;
    transform: translateY(-50% );
    right: 2vw;
    z-index: 100000;
    box-shadow: 0 4px 18px rgba(255 ,255,255,5%);
    background: #3b308e;
    border-radius: 20px;
    overflow: hidden;
}
/* #quick-placeholder ul li:first-of-type a{padding: 2rem 1.5rem 1rem;} */
#quick-placeholder .quick{
    aspect-ratio: 1/1;
    width: 80px;
}
#quick-placeholder a{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all .5s ;
    width: 100%;
    height: 100%;
    /* padding: 1rem ; */
    text-align: center;
    font-size: 1.6rem;
    font-weight: 700;
    gap: .5rem;
    color: #fff;
}
#quick-placeholder img{
    max-width: 25px;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

footer {
    background: #474747;
    /* background: #3b308e; */
    color: #fff;
    font-size: 1.5rem;
}
.f_top{
    background: #353535;
    /* background: #c9c7d2; */
    padding: 1.5rem 0;
    text-align: center;
    font-weight: 500;
}
.f_top ul{
    display: flex;
    justify-content: flex-start;
    gap: 3rem;
    align-items: center;
}
/* .f_top ul li{flex-grow: 1;} */
.f_top ul a{
    border: 1px solid #fff;
    border-radius: 3rem;
    display: inline-block;
    padding: .8rem 3rem;
    line-height: 1;
}

.f_bot .container{
    display: flex;
    justify-content: space-between;
    padding: 5rem 0;
    font-weight: 400;
}
.f_logo{max-width: 270px;}
.f_bot ul{
    display: flex;
    flex-wrap: wrap;
    gap:1rem 3rem;
    max-width: 600px;
}
.f_bot ul li{
    display: flex;
    align-items: center;
    gap: .8rem;
}
.copy{
    margin-top: 5rem;
}




@media (min-width:0px) and (max-width:1200px){
    .f_logo{
        width: 250px;
        margin-bottom: 1.5rem;
    }
    .f_bot{
        flex-direction: column;
        gap: 1rem;
    }
    

}

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

    /* popup */
    .popup_wrap {
        top: 65px!important;
        left: 0!important;
    }
    /* quick */
    #quick-placeholder .quick{
        display: none;
    }
    #quick-placeholder .quick_m{
        display: block;
    }
    #quick-placeholder{
        position: fixed;
        top: auto;
        bottom: 0;
        right: 0;
        box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
        background: #002947;
        border-radius: 0px;
        overflow:visible;
        width: 100%;
        transform: translate(0, 0);
    }
    #quick-placeholder ul {padding: 0;}
    #quick-placeholder .quick_m ul li a {padding: 1.5rem 0;}
    #quick-placeholder ul li:last-of-type a{background: none;color: #fff;}
    /* #quick-placeholder ul li:nth-of-type(-n+4){border-bottom: none;} */
    #quick-placeholder #m_side{
        position: fixed;
        bottom: 10rem;
        right: 1rem;
        display: flex;
        flex-direction: column;align-items: center;
        gap: 1rem;
        font-weight: 700;
    }
    #quick-placeholder #m_side li a{
        display: flex;
        flex-direction: column;
        justify-content: center;align-items: center;
        width: 50px;
        height: 50px;
        padding: 0;
        border-radius: 5px;
        border: none;
        background: #3758a6;
        color: #fff;
        font-size: 1.1rem;
        gap: .2rem;
    }
    #quick-placeholder #m_side .top_btn .img_wrap{max-width: 2rem;}
    #quick-placeholder ul{
        /* display: flex; */
        flex-direction:row;
        /* align-items: center; */
        /* gap */
    }
    #quick-placeholder ul li .img_wrap{
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all .5s ;
    }
    #quick-placeholder ul li{
        width: 100%;
        border-bottom: none;
    }
    #quick-placeholder ul li:last-of-type{
        border-bottom: none;
    }
    #quick-placeholder ul li a{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: all .5s ;
        padding: 1.5rem;
        text-align: center;
        font-size: 1.2rem;
        /* font-weight: 500; */
    }
    #quick-placeholder ul li:hover a{
        background: inherit;
    }
    
    #quick-placeholder img{
        max-width: 30px;
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    
    .innertop{padding-top: 8rem;}
    .innerbottom{padding-bottom: 8rem;}

    .f_logo{display: none;}
    .f_top ul {gap: 1rem;}
    .f_top ul a {
        padding: 0.6rem 2rem;
    }
}
@media (min-width:0px) and (max-width:500px){

    

    /* common */
    .innertop{padding-top: 5rem;}
    .innerbottom{padding-bottom: 5rem;}
    
    /* popup */
    /* quick */
    #quick-placeholder ul li a {
        padding: 1.5rem;
    }
    #quick-placeholder img{
        max-width: 32px;
    }
     /* footer */
    .f_top ul {
        /* flex-direction: column; */
        /* gap: 1rem 1rem; */
        flex-wrap: wrap;
        justify-content: center;
    }
    .f_bot ul{
        gap: .3rem 2rem;
    }
    .copy{
        text-align: center;
    }
}

/* site */
.noti_txt {
    background-color: #d3dffd;
    padding: 3.5rem 4rem;
    box-sizing: border-box;
}
.noti_txt > li:first-of-type {margin-top: 0;}
.noti_txt > li {
    font-size: 16px;
    font-weight: 500;
    color: #262626;
    letter-spacing: 0;
    line-height: 1.5;
    margin-top: 15px;
    display: block;
    box-sizing: border-box;
    text-align: left;
}

.table_sty03 {
    margin-top: 50px;
    border-top: 1px solid #343434;
}
.table_sty03 > table {
    width: 100%;
    table-layout: fixed;
    border-left: 1px solid #ddd;
    border-collapse: collapse;
    border-spacing: 0;
}
caption {
    clear: both;
    list-style: none;
    position: absolute;
    top: 0;
    left: 0;
    padding: 0;
    border: 0;
    background: none;
    font-size: 0px;
    line-height: 0;
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    clip-path: polygon(0 0, 0 0, 0 0);
}
.table_sty03 > table thead th {
    background-color: #f2f5fe;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #dddddd;
    font-size: 15px;
    font-weight: 600;
    color: #262626;
    letter-spacing: 0;
    line-height: 1.5;
    text-align: center;
    padding: 15px 0;
    min-height: 66px;
    box-sizing: border-box;
    vertical-align: middle;
}
.table_sty03 > table tbody td {
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #dddddd;
    font-size: 14px;
    font-weight: 400;
    color: #262626;
    letter-spacing: 0;
    line-height: 1.5;
    text-align: center;
    padding: 10px 5px;
    box-sizing: border-box;
    min-height: 60px;   
    word-break: keep-all;
    vertical-align: middle;

}
.table_sty03 > table thead tr {
    border-top: 0;
}

/* below 1024 */
@media  (max-width: 1200px){

    .table_sty03 > table thead th {letter-spacing: -0.5px;font-size: 15px;}
    .table_sty03 > table tbody th {letter-spacing: -0.5px;}
    .table_sty03 > table tbody td {font-size: 13px};
} 
@media  (max-width: 1000px){
    .table_sty03{overflow: scroll;}
    .table_sty03 > table thead th {letter-spacing: -0.8px;}
    .table_sty03 > table tbody th {letter-spacing: -0.8px;}
    .m_scroll {
        overflow: auto;
        display: block;
    }
    .m_scroll table br{display: block;}
    .m_scroll table {
        min-width: 980px !important;
    }
    .noti_txt > li {font-size: 14px;}
} 