@charset "utf-8";

/* CSS 수정시 수정날짜,수정한 사람 기입 */

.content-header {
    text-align: center;
}

.content-header h3 {
    font-size: 48px;
    font-weight: bold;
}

.content-header p {
    font-size: 17px;
    color: #555;
    margin-top: 20px;
}

.content-body {
    margin-top: 40px;
}

.intro-wrap {
    /*background: #f8f8f8;*/
    padding-top: 130px;
    /* padding-bottom: 80px; */
}

.content-body-box1 img {
    width:40px;
    height: 40px;
}

.content-body-box1 {
    text-align: center;
    margin-top: 60px;
    padding-bottom: 110px;
}

.content-body-box1 .eclipse {
    width: 83px;
    height: 83px;
    background: #f0f0f0;
    border-radius: 50px;
    margin: 0 auto;
    padding: 20px 0;
}
.content-body-box1 p {
    margin-top: 30px;
    font-size: 20px;

}

.content-body-box1 .info-box {
    background: #fff;
    padding: 46px 0;
}

.content-body-box2 {
    background: #fff;
    padding: 60px 0;
}

.content-body-box2 h3 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 50px;
    line-height: 140%;
}

.content-body-box2 strong {
    font-size: 16px;
    margin-right: 15px;
    font-weight: 400;
    letter-spacing: -1px;
}

.content-body-box2 p {
    font-size: 15px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: -1px;
}

/* 2024 10 08 김동환 */
/* 인권헌장 */
.content-body-box2 .labor .container .info-box .mb-5 h4 {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
}

.content-body-box2 .labor .container .info-box .mb-5 .text {
    color: #777777;
}

.content-body-header {
    text-align: center;
}

.content-body-header h2 {
    font-size: 48px;
    font-weight: bold;
}

.content-body-header p {
    font-size: 17px;
    color: #555;
    margin-top: 20px;
    margin-bottom: 100px;
}


span.name-span {
    font-size:30px;
    font-weight: 700;
}

.gx-custom-6 {
    --bs-gutter-x : 6rem !important;
}

/* 탭 버튼 전체 윤곽 */
.custom-tab{
    border-bottom: 1px solid #d9d9d9;
}
.custom-tab .nav-item{
    margin: 0 2px;
}
.custom-tab .nav-link {
    color: #000;
    height: 55px;
    border-radius: 15px 15px 0 0 !important;
    background-color: #F4F4F4;
    font-size: 16px;

}

/* 탭 사이 경계선 제거 */
.custom-tab .nav-link + .nav-link {
    margin-left: -1px;
}

/* 활성화된 탭 스타일 */
.custom-tab .nav-link.active {
    background-color: #0775BE !important; /* 원하시는 블루 컬러 */
    border-color: #00589b;
    color: #fff;
}
.tab-content{
    margin-top: 55px;
}
.btns > button{
    padding: 12px 20px;
    background-color: #0775BE;
    color: #fff;
    border-radius: 10px;
    border: 0;
    font-size: 16px;
    font-weight: 700;
}

.form-area .title{
    font-weight: 700;
    font-size: 34px;
    letter-spacing: -1px;
    align-content: center;
    margin-bottom: 27px;
}
.form-area .content-box{
    margin-bottom: 70px;
}
.form-area .content-box .agree-box{
    padding: 20px 30px;
    border: 1px solid #c1c1c1;
    height: 366px;
    overflow-y: scroll;
    color: #555555;
}
.form-area .content-box .agree-chk{
    font-weight: 400;
    font-size: 15px;
    letter-spacing: -1px;
    color: #555555;
}
.form-area .content-box .agree-chk .form-check-input:checked{
    background-color: #0775BE !important;
}
.form-area .content-box .agree-chk .form-check-input{
    width: 24px !important;
    height: 24px !important;
    margin: 0 5px 0 0;
    border-color: #9f9f9f;
}
.form-area .content-box .agree-chk .form-check-label{
    cursor: pointer;
}
.form-area .content-box .chk-group{
    margin-bottom: 8px;
}
.form-area .content-box .chk-group .form-check-input:checked{
    background-color: #0775BE !important;
}
.form-area .content-box .chk-group .form-check-input{
    width: 18px !important;
    height: 18px !important;
    margin: 0px 5px 0px 0;
}
.form-area .content-box .chk-group .form-check-label{
    cursor: pointer;
    color: #555;
    font-weight: 400;
    font-size: 15px;
    line-height: 180%;
    letter-spacing: -1px;
}

.form-area .content-box .radio-box{

}
.radio-box {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding: 25px 30px;
    border: 1px solid #c1c1c1;
    border-radius: 4px;
}

.radio-box label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 15px;
}

.radio-box input[type="radio"] {
    appearance: none;
    width: 22px;
    height: 22px;
    border: 1px solid #9f9f9f;
    border-radius: 50%;
    margin-right: 10px;
    position: relative;
}

.radio-box input[type="radio"]:checked {
    border-color: #9f9f9f;
}

.radio-box input[type="radio"]:checked::before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    width: 10px;
    height: 10px;
    background-color: #0775BE;
    border-radius: 50%;
}
.form-area .content-box .form-label{
    font-weight: 600;
    font-size: 16px;
    line-height: 180%;
    letter-spacing: -1px;
}
.form-area .content-box .form-control{
    padding: 11px 20px;
    font-size: 16px;
    border-color: #c1c1c1;
}

.form-area .content-box .info-box{
    border-top: 2px solid #000000;
    padding-top: 28px;
}
.form-area .content-box .form-box{
    border-top: 2px solid #000000;
    padding-top: 28px;
}
.form-area .comment-box{
    border: 1px solid #c1c1c1;
    padding: 30px;
    font-weight: 400;
    font-size: 17px;
    line-height: 160%;
}
.form-area .comment-box span{
    color: #0775BE;
    margin-right: 8px;
}
.form-area .buttons .button{
    border-radius: 10px;
    width: 173px;
    height: 60px;
    font-weight: 700;
    font-size: 16px;
    line-height: 150%;
}

.form-area .buttons .button.submit{
    background-color: #0775BE;
    border: 1px solid #0775BE;
    color: #fff;
}
.form-area .buttons .button.cancel{
    border: 1px solid #0775BE;
    background-color: #fff;
    color: #0775BE;
}



@media(max-width:768px) {
    .img-box img {
        width:100%;
    }
    .content-header p br {
        display:none;
    }
    .content-header p {
        font-size:15px;
    }
    .content-body-box1 p {
        font-size:13px;
    }
    .content-body-box2 h3 {
        font-size:30px;
        letter-spacing:-1px;
        line-height:40px;
    }
    .img-box {
        margin-bottom:40px;
    }
    .content-body-box2 p {
        font-size:15px;
    }
    .content-body-box2 p br {
        display:none;
    }
    .content-body-box3 .left-col .ori {
        margin-top:145px;
    }
    .content-body-box3 .left-col .ori-top {
        margin-top:0;
    }

    .radio-box {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 16px;
        padding: 16px;
        border: 1px solid #e0e0e0;
        border-radius: 4px;
    }
}