@charset "utf-8";


/** header 기본 시작 **/
#header {
    width: 100%;
    height: 9rem;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    transition: 0.3s;
}
#header .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 9rem;
    width: 90%;
    max-width: 120rem;
    margin: 0 auto;
}
#header .left {
    display: flex;
    align-items: center;
}
#header nav {
    margin-left: 6rem;
}
#header nav ul {
    display: flex;
    align-items: center;
}
#header nav li {
    margin: 0 2.5rem;
}
#header nav li a {
    font-size: 1.6rem;
    color: #555555;
}
#header .right {
    display: flex;
    align-items: center;
}
#header .right a {
    font-size: 1.3rem;
    color: #0357c2;
    border: solid 1px #0357c2;
    width: 84px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
#header .right a:last-child {
    background: #0357c2;
    color: #fff;
    margin-left: 5px;
}
/** header 기본 끝 **/

/** header class on 시작 **/
#header.on {
    background: #fff;
    border-bottom: solid 1px #e6e6e6;
}
/** header class on 끝 **/



/** header mb hambuger 시작 **/
#header .mb-menu {
    display: none;
    position: relative;
    z-index: 1;
}
#header .hamburger:hover {
    cursor: pointer;
}
#header.active .hamburger {
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transition-delay: 0.6s;
    -o-transition-delay: 0.6s;
    transition-delay: 0.6s;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
#header .hamburger .line {
    width: 35px;
    height: 2px;
    background-color: #111;
    display: block;
    margin: 8px auto;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
#header.active .hamburger .line:nth-child(1) {
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px);
}
#header.active .hamburger .line:nth-child(2) {
    width: 0px;
}
#header.active .hamburger .line:nth-child(3) {
    -webkit-transform: translateY(-10px) rotate(90deg);
    -ms-transform: translateY(-10px) rotate(90deg);
    -o-transform: translateY(-10px) rotate(90deg);
    transform: translateY(-10px) rotate(90deg);
}
#header.active .hamburger .line:nth-child(1),
#header.active .hamburger .line:nth-child(3) {
    -webkit-transition-delay: 0.3s;
    -o-transition-delay: 0.3s;
    transition-delay: 0.3s;
}
/** header mb hambuger 끝 **/


/** header mb nav **/
#header .mb-nav {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    right: -100%;
    background: #fff;
    transition: 0.5s;
}
#header .mb-nav:after {
    content: '';
    background: url('../../images/main/main-img03.png') no-repeat center / cover;
    background-size: cover;
    width: 100%;
    height: 100%;
    position: absolute;
}
#header .mb-nav > ul {
    flex-direction: column;
    width: 90%;
    max-width: 30rem;
    z-index: 1;
}
#header .mb-nav > ul li {
    width: 100%;
    padding: 3rem 0;
    border-bottom: 1px solid #ddd;
}
#header .mb-nav > ul li a {
    font-size: 2.2rem;
    display: block;
    color: #111;
    font-weight: 600;
}
#header .mb-nav > ul li ul {
    flex-direction: column;
    margin-left: 2rem;
}
#header .mb-nav > ul li ul li {
    padding: 0 0 1rem;
    border-bottom: unset;
}
#header .mb-nav > ul li ul li a {
    font-size: 1.8rem;
    font-weight: 400;
    display: flex;
    align-items: center;
}
#header .mb-nav > ul li ul li a:before {
    content: '';
    width: 3px;
    height: 3px;
    background: #0357c2;
    display: block;
    margin-right: 1rem;
}


#header.active .mb-nav {
    right: 0;
}
#header .mb-nav > ul li:last-child {
    border-bottom: unset;
}

#header .mb-nav > ul li ul li:first-child {
    padding-top: 1rem;
}

/** header mb nav **/



/** footer 기본 시작 **/
#footer {
    background: #111111;
    padding: 3rem 0 5rem;
}
#footer p {
    font-size: 1.4rem;
    color: #666666;
    font-family: 'Noto Sans KR';
}
#footer p a {
    color: #808080;
    font-weight: 500;
    margin-right: 3rem;
}


#footer p:nth-child(2) {
    margin: 3rem 0 4rem;
}
/** footer 기본 끝 **/


/** 페이지 공통 **/
.maxinner {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
.pc-br {
    display: none;
}


/* btn */
.btn-wrap {
    position: relative;
    width: 17rem;
    height: 6rem;
}
.btn-wrap a {
    border: solid 1px #0357c2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0357c2;
    font-size: 1.8rem;
    font-weight: 500;
    transition: 0.3s;
    width: 100%;
    height: 100%;
    z-index: 1;
    position: relative;
}
.btn-wrap span {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #0357c2;
    transition: 0.3s ease;
}
.btn-wrap:hover a {
    color: #fff;
    box-shadow: 6px 6px 16px rgb(126 154 189 / 57%);
}
.btn-wrap:hover span {
    width: 100%;
}
/* btn */

/* form */
.form-wrap .form-itembox {
    display: flex;
    align-items: center;
    margin: 0 -2.5rem 3rem;
}
.form-wrap .form-item {
    display: flex;
    align-items: center;
    flex: 1;
    padding: 0 2.5rem;
}
.form-wrap .form-item h4 {
    font-size: 1.6rem;
    color: #333333;
    width: 10.5rem;
    flex-shrink: 0;
    padding: 0 1rem;
}
.require::before{
    content: "* ";
    color: red;
}
.form-wrap .form-item input {
    border: solid 1px #dbdbdb;
    height: 6.4rem;
    font-size: 1.4rem;
    padding: 0 1rem;
    color: #333333;
    width: 100%;
    font-family: 'Noto Sans KR';

}
.form-wrap .form-item select {
    border: solid 1px #dbdbdb;
    height: 6.4rem;
    font-size: 1.4rem;
    padding: 0 1rem;
    color: #333333;
    width: 100%;
    background: url('../../images/ico/ico-arrow-down.png') no-repeat 95% center;
}
.form-wrap .form-item textarea {
    width: 100%;
    height: 31.2rem;
    border: solid 1px #dbdbdb;
    font-family: 'Noto Sans KR';
}
input.error, select.error {
    border: 1px solid red !important;
}
label.error {
    font-size: 1.5em;
    color: red;
}

@media (max-width: 768px) {
    .form-wrap .form-itembox {
        flex-direction: column;
        margin: 0;
    }
    .form-wrap .form-itembox .form-item {
        margin-bottom: 1rem;
    }
    .form-wrap .form-item {
        width: 100%;
        padding: 0;
    }
}

@media (max-width: 500px) {
    .form-wrap .form-itembox .form-item {
        flex-direction: column;
        margin-bottom: 3rem;
    }
    .form-wrap .form-item h4 {
        margin-bottom: 1rem;
        width: 100%;
    }
}

/* form */

/* popup */
.popup-wrap {
    position: fixed;
    background-color: rgba(0,0,0,20%);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 999;
    display: none;
}
.popup-wrap .popup {
    width: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    box-shadow: 13px 0 35px rgb(153 153 153 / 52%);
    display: none;
}
.popup-wrap .popup.active {
    display: block;
}
.popup-wrap .popup .cont {
    position: relative;
    padding: 5rem 3rem;
}
.popup-wrap .popup .close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    cursor: pointer;
}
.popup-wrap .popup .cont .tit {
    text-align: center;
    margin-bottom: 3.5rem;
}
.popup-wrap .popup .cont .tit b {
    font-size: 3rem;
    color: #333333;
    font-weight: 800;
}
.popup-wrap .popup .cont .tit p {
    font-size: 1.6rem;
    color: #777777;
    margin-top: 1rem;
}
.popup-wrap .popup .cont .form-wrap .form-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0;
}
.popup-wrap .popup .cont .form-wrap .form-item input {
    border: solid 1px #dbdbdb;
    height: 6.4rem;
    font-size: 1.4rem;
    padding: 0 1rem;
    color: #333333;
    width: 100%;
}
.popup-wrap .popup .cont .form-wrap .form-item input::placeholder {
    font-size: 1.4rem;
    color: #999;
}
.popup-wrap .popup .cont .form-wrap .form-item select {
    width: 18rem;
    flex-shrink: 0;
    margin-left: 1rem;
}
.popup-wrap .popup .cont .form-wrap .form-check .chk-box {
    display: flex;
    justify-content: end;
    margin-bottom: 1.5rem;
}
.popup-wrap .popup .cont .form-wrap .form-check .chk-box label {
    font-size: 1.4rem;
}
.popup-wrap .popup .cont .btn-wrap {
    width: 100%;
    margin-top: 2rem;
}
.popup-wrap .popup .cont .btn-wrap a {
    color: #fff;
}
.popup-wrap .popup .cont .btn-wrap span {
    width: 100%;
}
.popup-wrap .popup .cont .btn-wrap:hover a {
    box-shadow: unset;
}
.popup-wrap .popup .cont .user-box {
    text-align: center;
    margin-top: 1.5rem;
}
.popup-wrap .popup .cont .user-box a {
    font-size: 1.4rem;
    padding: 0 1rem;
    position: relative;
    cursor: pointer;
}
.popup-wrap .popup .cont .user-box a:after {
    position: absolute;
    content: '';
    width: 1px;
    height: 9px;
    background: #cccccc;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}
.popup-wrap .popup .cont .user-box a:last-child:after {
    display: none;
}

.popup-wrap .popup.modal01 {
    max-width: 44rem;
}
.popup-wrap .popup.modal02 {
    max-width: 51rem;
}
.popup-wrap .popup.modal03 {
    max-width: 51rem;
}
/* popup */

/* form check */
.form-wrap .form-check .chk-box {
    display: flex;
}
.form-wrap .form-check .chk-box input[type="checkbox"]{
    display: none;
}
.form-wrap .form-check .chk-box label{
    display: flex;
    align-items: center;
    justify-content:flex-start;
    color:#333;
    font-family: 'Noto Sans KR';
    font-size:1.6rem;
    cursor:pointer;
}
.form-wrap .form-check .chk-box label span{
    display: block;
    position:relative;
    min-width: 20px;
    height: 20px;
    background: url('../../images/ico/ico-check_none.png') no-repeat center center;
    background-size: cover;
    margin-right: 0.5em;
}
.form-wrap .form-check .chk-box input:checked + label span::before {
    content:"";
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    background: url('../../images/ico/ico-check.png') no-repeat center center;
    background-size: cover;
    min-width: 20px;
    height: 20px;
}
.form-wrap .form-check .chk-box .point {
    color: #999999;
    cursor: pointer;
    font-size: 1.6rem;
    margin-left: 1rem;
    text-decoration: underline;
    text-underline-position: under;
}

.l-radio {
    padding: 6px;
    border-radius: 50px;
    display: inline-flex;
    cursor: pointer;
    transition: background 0.2s ease;
    margin: 8px 0;
    -webkit-tap-highlight-color: transparent;
}
.l-radio:hover, .l-radio:focus-within {
    background: rgba(159, 159, 159, 0.1);
}
.l-radio input {
    vertical-align: middle;
    width: 20px;
    height: 20px;
    border-radius: 10px;
    background: none;
    border: 0;
    box-shadow: inset 0 0 0 1px #9F9F9F;
    box-shadow: inset 0 0 0 1.5px #9F9F9F;
    appearance: none;
    padding: 0;
    margin: 0;
    transition: box-shadow 150ms cubic-bezier(0.95, 0.15, 0.5, 1.25);
    pointer-events: none;
}
.l-radio input:focus {
    outline: none;
}
.l-radio input:checked {
    box-shadow: inset 0 0 0 6px #0357c2;
}
.l-radio span {
    vertical-align: middle;
    display: inline-block;
    line-height: 20px;
    padding: 0 8px;
}
/* form check */

@media all and (min-width:1401px){
    .pc-br {
        display: block;
    }
}
@media all and (min-width:768px){
    #header .mb-nav {
        right: -100% !important;
    }
}

@media all and (max-width:768px){
    #header {
        height: 7rem;
    }
    #header .inner {
        height: 7rem;
    }
    #header .pc-nav,
    #header .right {
        display: none;
    }
    #header .mb-menu {
        display: block;
    }

}

.loading-overlay-content {
    height: 60px;
    width: 60px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -30px 0 0 -30px;
    -webkit-animation: rotation 1s infinite linear;
    -moz-animation: rotation 1s infinite linear;
    -o-animation: rotation 1s infinite linear;
    animation: rotation 1s infinite linear;
    border: 6px solid rgba(0, 0, 0, 0.2);
    border-radius: 100%;
}
.loading-overlay-content:before {
    content: "";
    display: block;
    position: absolute;
    left: -6px;
    top: -6px;
    height: 100%;
    width: 100%;
    border-top: 6px solid rgba(0, 0, 0, 0.8);
    border-left: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-right: 6px solid transparent;
    border-radius: 100%;
}

.badge-success {
    color: #fff;
    background-color: #28a745;
}

.badge-warning {
    color: #1f2d3d;
    background-color: #ffc107;
}

.badge {
    display: inline-block;
    padding: 0.25em 0.4em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.25rem;
}

@-webkit-keyframes rotation {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(359deg);
    }
}
@-moz-keyframes rotation {
    from {
        -moz-transform: rotate(0deg);
    }
    to {
        -moz-transform: rotate(359deg);
    }
}
@-o-keyframes rotation {
    from {
        -o-transform: rotate(0deg);
    }
    to {
        -o-transform: rotate(359deg);
    }
}
@keyframes rotation {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(359deg);
    }
}




