/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.width_fixed {
    width: 100%;
    max-width: 1200px;
    margin: auto;
}
.header-mas {
    height: auto;
    background: #ccc url('../images/basic/bg-top1.jpg') no-repeat center / cover;
    position: relative;
    box-sizing: border-box;
}
.header-mas::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0,0,0,0.4);
    z-index: 1;
}
.headerBox {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 5px 25px;
    box-sizing: border-box;
    z-index: 3;
}
.headerBox .infopBox {
    position: absolute;
    top: 20px; right: 20px;
    display: flex;
    align-items: center;
}
.infopBox .meApp2 {
    display: inline-block;
    width: 27px; height: 27px;
    background: transparent url('../images/icons/meapp.svg') no-repeat center / 95%;
    margin-right: 15px;
    transition: background-color 0.3s;
}
.infopBox .txt-logx {
    font-size: 14px;
    color: #feb9d1;
    font-weight: 550;
}
.infopBox .txt-logx::after {
    content: '님';
    margin: 0 0 0 3px;
    font-size: 12px;
    color: #fff;
    font-weight: 300;
}
.infopBox .login-ifx {
    font-size: 13px;
    display: inline-block;
    color: #eee;
    padding: 3px 15px;
    border-radius: 15px;
    border:1px solid #eee;
    margin: 0 0 0 8.5px;
    transition: background-color 0.3s;
}
.infopBox .login-ifx:hover, .infopBox .meApp2:hover {
    background-color: #111;
}
.headerBox .top-logox {
    position: absolute;
    top: 20px; left: 10px;
}
.headerBox .top-logox img {width: 110px;}
.headinBox {width: 100%;}
.headinBox fieldset{
    width: 400px;
    margin: auto;
    padding: 0;
    box-sizing: border-box;
}
.headinBox .schBox-mas {
    display: block;
    margin: auto;
    position: relative;
}
.schBox-mas input[type="text"] {
    width: 100%;
    height: 42px; 
    padding: 4px 50px 4px 20px;
    border-radius: 37px;
    border: 1px solid transparent;
    background-color: rgba(255,255,255,1);
    box-shadow: 0 1px 2px rgba(0,0,0,1);
    border: 1px solid #eee;
    box-sizing: border-box;
    outline: none;
}
.schBox-mas input[type="text"]::placeholder {color: #888; font-size: 13px; font-weight: 300;}
.schBox-mas input[type="text"]:focus {
    border-color: #66afe9;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);     
}
.schBox-mas .btn-schmas {
    position: absolute;
    width: 28px; height: 28px;
    background: transparent url('../images/icons/search_ico.svg') no-repeat center / cover;
    top: 50%; transform: translateY(-50%);
    right: 17px;
}
.headinBox .headinTag {
    margin: 5px auto 5px;
    color: #fff;
    text-align: center;
}
.headinBox .headinTag a {
    display: inline-block;
    font-size: 14px;
    font-weight: 550;
    margin: 0 3px;
}
.headinBox .headinTag a::before {
    content: '#';
    margin-right: 2px;
}

/* --- Icon Box --- */
.icoxhd {
    width: 100%;
    padding: 10px 5px 0;
    box-sizing: border-box;
}
.icoxhd ul {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.icoxhd li {
    margin: 8px;
    width: 58px;
}
.icoxhd li a {
    text-align: center;
    display: block;
    overflow: hidden;
}
.icoxhd li .icimgBx {
    display: flex; align-items: center; justify-content: center;
    width: 47px; height: 47px;
    background-color: rgba(255,255,255,0.88);
    border-radius: 10px;
    margin: auto;
    box-shadow: 0 2px 4px rgba(0,0,0,0.6);
    box-sizing: border-box;
}
.icoxhd li .icimgBx img {
    width: 30px; height: 30px;
    border-radius: 5px;
    box-sizing: border-box;
    transition: transform 0.3s;
    overflow: hidden;
}
.icoxhd li .icimgBx:hover img {
    transform: scale(1.2);
}
.icoxhd li a > p {
    display: block;
    text-align: center;
    padding: 7px 1px 3px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;    
    box-sizing: border-box; 
    color: #fff;
}
@media screen and (max-width:768px) { 
    .header-mas {height: auto;}    
    .headerBox {padding: 63px 5px 10px;}
    .headinBox {
        width: 100%;
        flex-direction: column;
    }
    .headerBox .infopBox, .icoxhd {
        display: none;
    }
    .headerBox .top-logox {top: 15px; left: 15px; }
    .headerBox .top-logox img {display: block; width: auto; height: 35px;}
    .headinBox form {width: 100%; padding: 0 18px;}
    .headinBox .schBox-mas {width: 100%;}
    .schBox-mas input {
        width: 100%;
    }
}
/* --- GNB ---- */
.gnb-mas {
    background-color: #111;
    color: #ccc;
}
.gnb-mas.fixed {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 2;
}
.gnbBox {
    display: flex;
    width: 100%;
    overflow-x: auto;
}
.gnbBox li { flex: 1; text-align: center; position: relative;}
.gnbBox li:not(:first-of-type)::before, .gnbBox li:not(:first-of-type)::after {
    content: '';
    position: absolute; 
    left: 0; top: 50%; transform: translateY(-50%);
    display: block; 
    width: 1px; height: 45%; 
}
.gnbBox li:not(:first-of-type)::before {
    background-color: rgba(0,0,0,1);
    left: 0;
}
.gnbBox li:not(:first-of-type)::after {
    background-color: rgba(255,255,255,0.18);
    left: -1px;
}
.gnbBox li a {
    display: block;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;   
    font-weight: 550; 
    padding: 13px 25px;
}
@media screen and (max-width:768px) {
    .gnbBox {
        width: 100%;
        overflow-x: auto;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }    
    .gnbBox::-webkit-scrollbar {display: none;} 
    .gnbBox li {flex: none;  position: relative;}
    .gnbBox li a {padding: 11px 20px;}
}
/* -- Mobile Slide Menu -- */
.btn-mnav {}
.headerBox input[type="checkbox"] {display: none;}
.trine2 {
    display: none;
    position: absolute;
    top: 17px; right: 15px;
    width: 28px; height: 28px;
    z-index: 5;
    cursor: pointer;
}
.trine2 > span, .trine2 > span::before, .trine2 > span::after {
    position: absolute;
    width: 100%;
    background-color: #eee;
    height: 3.5px;
    border-radius: 3.5px;
    box-sizing: border-box;
}
.trine2 > span {top: 50%; transform: translateY(-50%);}
.trine2 > span::before, .trine2 > span::after {content: '';}
.orin2 > span::before {top: 10px;}
.orin2 > span::after {top: -10px;}
.mtitpo {
    padding: 15px 15px 15px 20px;
    box-sizing: border-box;
}
.mtitpo > h2 {font-size: 1.25em;}
.mloginWrap {background-color: #555;}
.mloginWrap .mloginBx {
    padding: 15px 15px 15px 20px;
    box-sizing: border-box;    
}
.btnppol {
    width: 100%;
    height: 35px;
    line-height: 35px;
    color: #333;
    background-color: #ddd;
}
.btngapxx {margin: 10px 0 0 0;}
.mnickpo {}
.mnickpo > span {
    color: #fff; 
    /* color: #feb9d1; */
}
.mnickpo > span::after {content: '님'; margin: 0 0 0 4px; color: #eee; font-size: 13px; font-weight: 300;}
.maddinpo {
    margin: 7px 0 3px;
    display: flex;
}
.maddinpo > button {
    flex: 1;
    font-size: 14px;
    display: block;
    height: 33px;
    line-height: 33px;
    background-color: #888;
}
.maddinpo > button:last-of-type {margin: 0 0 0 4px;}

.gnb-mnav {
    position: fixed;
    top: 0; bottom: 0; right: -100%;
    width: 75%;
    background-color: rgba(0,0,0,1);
    z-index: 10;
    color: #eee;
    -ms-transition: right 0.3s;
    -webkit-transition: right 0.3s;
    transform: right 0.3s;
}
.gnb-mnav ul {
    margin: 5px auto 15px;
    padding: 10px 15px 10px 20px;
    box-sizing: border-box;
}
.gnb-mnav li a {
    display: block;
    line-height: 3em;
    font-size: 1rem;
    text-align: left;
} 
.gnb-mnav li a{ border-bottom: 1px solid rgba(255,255,255,0.15);}
.gnb-mnav .inB-mnav {
    position: absolute;
    top: 0.5%;
}
.orin3 {
    left: -30px;
    background-color: #000;
}
.orin3 > span::before {
    -webkit-transform: rotate(135deg); 
    -ms-transform: rotate(135deg); 
    transform: rotate(135deg); 
}
.orin3 > span::after {
    -webkit-transform: rotate(-135deg); 
    -ms-transform: rotate(-135deg);     
    transform: rotate(-135deg); 
}
.orin3 > span {background-color: transparent;}
.mnav_bbg {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0,0,0,0.6);
}
.headerBox input:checked ~ .gnb-mnav {right: 0;}
.headerBox input:checked ~ .mnav_bbg {display: block;}

@media screen and (max-width:768px) {
    .trine2 {display: block;}
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footerin {
    background-color: #efefef;
    padding: 20px 15px;
    box-sizing: border-box;
    font-size: 13.5px;
}
.fin-Box, .fin-desc {
    display: block;
    width: 85%;
}
.fin-Box {
    margin: auto;
    text-align: center;
}
.fin-Box .copy-desc {
    color: #888;
    margin: 13px auto 0;
    font-weight: 300;
    font-size: 13px;
}
.fin-desc {
    margin: 15px auto 0;
    font-size: 12px;
    color: #999;
    font-weight: 300;
    text-align: center;
    line-height: normal;
}
#Btn-Up {
    display: none;
    width: 45px; height: 45px; border-radius: 40px;
    background: url('../images/icons/arrow_up2.svg') no-repeat center 18% / 50%;
    background-color: rgba(0,0,0,0.4);
    box-shadow:0 4px 32px 0 rgba(0,0,0,.175);
    border: 1px solid rgba(0,0,0,0.07);   
    box-sizing: border-box;
    position: fixed;   
    right: 3.5%;         
    bottom: 25px;       
    z-index: 30;
    color: #fff;
    font-size: 14px;
    text-align: center;
    transition: all 0.4s;
}
#Btn-Up::after {
    content: 'TOP';
    font-size: 11.5px;
    position: absolute;
    bottom: 5px;
    left: 0; width: 100%;
}
#Btn-Up:hover {background-color: rgba(0,0,0,0.7);}
#Btn-Up > i {
    line-height: 38px;
    color: #ddd;
    transition: all 0.4s;
}
#Btn-Up > i:hover {color: #fff;}
@media screen and (max-width:768px) {
    .fin-Box, .fin-desc {width: 100%;}
    #Btn-Up {right: 4%; bottom: 20px; }
}
