/* Board Style */
.board-wrap {
    display: block;
    width: 100%;
    padding: 25px 20px;
    background: #fff;
}

.board-top {
    display: block;
    margin: 0 0 10px 0;
    padding: 10px 25px;
    background: #F0F7FD;

}


.board-top .board-search-wrap {
    display: flex;
}

.board-top .board-search-wrap feildset {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;

    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.board-top .board-search-wrap feildset label {
    display: flex;
}

/* tablet Mobile */
@media screen and (min-width: 992px) {
    .board-top .board-search-wrap feildset {
        flex-direction: row;
        flex-wrap: wrap;
    }
}


/* tablet Mobile */
@media screen and (max-width: 991px) {
    .board-top .board-search-wrap feildset {
        flex-direction: column;
        flex-wrap: wrap;
        width: 100%;
    }
}

.form-box {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;

    justify-content: flex-start;
    align-items: center;
    gap: 30px;

    font-size: 1.0rem;
    color: #2B2F36;
}


.form-box label {
    font-size: 1.0rem;
    font-weight: 600;
    color: #2B2F36;
}

.form-box .form-input-box {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}


.form-box .form-input-box select {
    z-index: 1;
    position: relative;
    padding: 8px 10px;
    border: 1px solid #9AB5D0;
    border-radius: 3px;
    font-size: 1.0rem;
    color: #2B2F36;
    min-width: 220px;
    /* 네이티브 화살표 대체 */
    background: url(../images/input-select-arrow.png) no-repeat calc(100% - 5px) 50%/15px auto #fff;

}

/* tablet Mobile */
@media screen and (max-width: 991px) {
    .form-box {
        width: 100%;
        gap: 5px;
    }

    .form-box label {
        width: 45px;
    }

    .form-box .form-input-box {
        width: calc(100% - 50px);
    }

    .form-box .form-input-box select {
        width: 100%;
    }
}



.form-box .form-input-box input[type="text"],
.form-box .form-input-box input[type="email"],
.form-box .form-input-box input[type="password"] {
    z-index: 1;
    position: relative;
    padding: 8px 10px;
    border: 1px solid #9AB5D0;
    border-radius: 3px;
    font-size: 1.0rem;
    color: #2B2F36;
    min-width: 500px;
}


.form-box .form-input-box input[type="text"]:disabled,
.form-box .form-input-box input[type="email"]:disabled,
.form-box .form-input-box input[type="password"]:disabled {
    background: #C4CCD8;
}

.form-box .form-input-box input[type="file"] {
    z-index: 1;
    position: relative;
    padding: 3px;
    border: 1px solid #9AB5D0;
    border-radius: 3px;
    font-size: 1.0rem;
    color: #2B2F36;
    min-width: 500px;
}


/* tablet Mobile */
@media screen and (max-width: 991px) {

    .form-box .form-input-box input[type="text"],
    .form-box .form-input-box input[type="email"],
    .form-box .form-input-box input[type="password"] {
        min-width: inherit;
        width: 100%;
    }

    .form-box .form-input-box input[type="file"] {
        min-width: inherit;
        width: 100%;

    }
}



.form-box .form-input-box .radio-box {
    display: inline-flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    min-height: 36px;
}

.form-box .form-input-box .check-box {
    display: inline-flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
}

.form-box .form-input-box input[type="radio"] {
    margin-right: 7px;
    width: 18px;
    height: 18px;
}

.form-box .form-input-box input[type="checkbox"] {
    margin-right: 7px;
    width: 18px;
    height: 18px;
}


.form-box .form-input-box .btn-inline {
    position: relative;
    display: inline-block;
    padding: 8px 10px;
    border: 1px solid #9AB5D0;
    border-radius: 3px;
    font-size: 1.0rem;
    color: #4085C9;
    transition: background 0.3s ease-in-out;
}

.form-box .form-input-box .btn-inline:hover {
    border: 1px solid #4085C9;
    background: #4085C9;
    color: #fff;

}

/* tablet Mobile */
@media screen and (max-width: 991px) {

    .form-box .form-input-box .btn-inline {
        width: 100%;
        margin-top: 5px;
    }
}



.form-input-memo {
    display: block;
    padding: 3px 0;
    font-size: 1.0rem;
    color: #DD5F11;
}


.form-box .board-detail-editor textarea.input-textarea {
    z-index: 1;
    position: relative;
    padding: 8px 10px;
    border: 1px solid #9AB5D0;
    border-radius: 3px;
    font-size: 1.0rem;
    color: #2B2F36;
    width: 100%;
    resize: none;
}

.btn-boardtop-search {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 9px 25px;
    max-height: 35px;
    font-size: 1.0rem;
    color: #2156AC;
    background: #fff;
    border: 1px solid #2156AC;
    border-radius: 3px;
    outline: 0;
    transition: all 0.3s ease-in-out;
}

.btn-boardtop-search:hover {
    color: #fff;
    background: #2156AC;

}

.form-box .board-view-joinus .form-input-box .joinus-address1 {
    margin-bottom: inherit;
}

/* tablet Mobile */
@media screen and (max-width: 991px) {

    .btn-boardtop-search {
        width: 100%;
    }


    .form-box .board-view-joinus .form-input-box .check-box {
        margin-top: 5px;
        width: 100%;
    }

    .form-box .board-view-joinus .form-input-box .joinus-address1 {
        margin-bottom: 5px;
    }




}




/* board alert */
.board-alert {
    background: url('../images/icon-border-info.png') 15px 11px no-repeat #5D6679;
    padding: 15px 20px 15px 50px;
}

.board-alert p {
    color: #fff;
    font-weight: 400;
}

.board-alert p>strong {
    display: inline-block;
    margin-right: 15px;
    padding: 0 15px 0 0;
    border-right: 1px solid #fff;
}

/* tablet Mobile */
@media screen and (max-width: 991px) {
    .board-alert {
        padding: 15px 20px;
    }

    .board-alert p>strong {
        width: 100%;
        padding-bottom: 12px;
        margin-bottom: 6px;
        border-right: 0px solid #fff;
        border-bottom: 1px solid #fff;
        padding-left: 30px;
    }
}


.memo-copy {
    display: block;
    padding: 4px 0;
    font-size: 1.3rem;
    font-weight: 300;
    color: #DD5F11;

}



/* border style */
.board-list {
    display: block;
    margin: 10px 0;
}

table caption {
    position: absolute;
    left: 0;
    top: -1px;
    width: 1;
    height: 0px;
    text-align: left;
    text-indent: -9999px;
    overflow: hidden;
}

.board-list .board-style-normal {
    width: 100%;
    table-layout: fixed;
    border-top: 1px solid #2B2F36;
}

.board-list .board-style-normal thead tr th:nth-child(1),
.board-list .board-style-normal tbody tr td:nth-child(1) {
    width: 12%
}

/* tablet Mobile */
@media screen and (max-width: 991px) {

    .board-list .board-style-normal thead tr th:nth-child(1),
    .board-list .board-style-normal tbody tr td:nth-child(1) {
        width: 20%
    }
}

.board-list .board-style-normal thead tr th:nth-child(2),
.board-list .board-style-normal tbody tr td:nth-child(2) {
    width: auto
}

.board-list .board-style-normal thead tr th:nth-child(3),
.board-list .board-style-normal tbody tr td:nth-child(3) {
    width: 15%
}

.board-list .board-style-normal thead tr th:nth-child(4),
.board-list .board-style-normal tbody tr td:nth-child(4) {
    width: 12%
}

.board-list .board-style-normal thead tr th:nth-child(5),
.board-list .board-style-normal tbody tr td:nth-child(5) {
    width: 12%
}



/* Table  list 상세  */
.board-list .board-style-normal thead tr th {
    border-bottom: 1px solid #2B2F36;
    text-align: center;
    font-size: 1.0rem;
    padding: 20px 0;
    color: #323336;
    font-weight: 600;
}

.board-list .board-style-normal tbody tr td {
    border-bottom: 1px solid #BFC3CB;
    text-align: center;
    font-size: 1.0rem;
    padding: 18px 15px;
    color: #2B2F36;
    font-weight: 400;
}

.board-list .board-style-normal tbody tr td .subject {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
    color: #2B2F36;
}

.board-list .board-style-normal tbody tr td .subject p {
    text-align: left;
}

.board-list .board-style-normal tbody tr:hover td {
    background: #F5FAFF;
    cursor: pointer;
}

/* tablet Mobile */
@media screen and (max-width: 991px) {

    .board-list .board-style-normal tbody tr td .subject {
        display: flex;
    }

}



/* 공지사항 상단 고정 */
.board-list .board-style-normal tbody tr.notice td {
    background: #FFFBE3;
}

.board-list .board-style-normal tbody tr.notice td .subject {
    font-weight: 600;
}

.icon-notice {
    display: inline-block;
    text-align: left;
    text-indent: -9999px;
    overflow: hidden;
    width: 24px;
    height: 24px;
    background: url('../images/icon-notice.png') center center no-repeat;
}

.bullet-new {
    display: inline-flex;
    width: 22px;
    height: 22px;
    line-height: 1.0;
    justify-self: center;
    align-items: center;
    font-style: normal;
    font-weight: 400;
    color: #B259C3;
    background: #fff;
    border: 1px solid #B259C3;
    border-radius: 5px;
    text-align: center;
    padding: 3px 6px 2px 6px;
    font-size: 1.0rem;
}

.comment-no {
    color: #7087AF;
}


.icon-reply {
    display: inline-flex;
    justify-content: flex-start;
    align-content: center;
    text-align: left;
    width: 50px;
    height: 24px;
    padding-left: 35px;
    font-size: 1.0rem;
    line-height: 24px;
    color: #9297A7;
    font-style: normal;
    background: url('../images/icon-reply.png') 10px center no-repeat;

}


/* board - view */
.board-view {
    padding: 5px 0 20px 0;
}

.board-view-title {
    display: block;
    text-align: center;
    padding: 20px 0;
    font-weight: 600;
    font-size: 1.4rem;
    border-top: 2px solid #4085C9;
}


/* tablet Mobile */
@media screen and (max-width: 991px) {
    .board-view-title {
        font-size: 1.0rem;
    }
}

.board-view-normal {
    width: 100%;
    table-layout: fixed;
    border-top: 1px solid #2B2F36;
}

.board-view .board-view-normal thead tr th {
    border-bottom: 1px solid #2B2F36;
    text-align: center;
    font-size: 1.0rem;
    padding: 16px 0;
    color: #323336;
    font-weight: 600;
}

.board-view .board-view-normal thead tr td {
    border-bottom: 1px solid #2B2F36;
    text-align: left;
    font-size: 1.0rem;
    padding: 16px 0;
    color: #323336;
    font-weight: 400;
}

@media screen and (max-width: 991px) {

    .board-view .board-view-normal thead tr th,
    .board-view .board-view-normal thead tr td {
        padding: 10px 0;
    }

}

.table-header {
    display: block;
    font-size: 0;
    width: 100%;
    overflow: hidden;
}

.table-header dt {
    display: inline-block;
    text-align: center;
    font-size: 1.0rem;
    padding: 16px 0;
    color: #323336;
    font-weight: 600;
    width: 12.3333%;
    float: left;
}

.table-header dd {
    float: left;
    display: inline-block;
    text-align: left;
    font-size: 1.0rem;
    padding: 16px 0;
    color: #323336;
    font-weight: 400;
    width: 20%;
    margin: 0;
}

/* tablet Mobile */
@media screen and (max-width: 991px) {
    .table-header dt {
        clear: both;
        width: 25%;
        text-align: left;
        padding-left: 10px;
        padding: 5px 10px;
        border-right: 1px solid #eee;
    }

    .table-header dd {
        width: 75%;
        padding: 5px 15px;
        text-align: left;

    }

    .board-view-title {
        font-size: 1.0rem;
    }
}

.attac-file-header {
    display: block;
    text-align: left;
    font-size: 1.0rem;
    padding: 0 20px 10px 20px;
    color: #323336;
    font-weight: 600;
    width: 100%;
}


.attach-file-list {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 15px 20px 0 20px;
    width: 100%;
    border-top: 1px solid #eee;
    overflow: hidden;
}


.attach-file-list li {
    display: flex;
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    padding-left: 12px;
    background: url('../images/icon-clip-file.png') left 4px no-repeat;
}

.attach-file-list li a {
    display: block;
    font-size: 1.0rem;
    color: #303438;
    padding: 7px 30px 7px 10px;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.attach-file-list li a:hover {
    color: #1F68AF;
}


.board-view .board-view-normal tbody tr td {
    border-bottom: 1px solid #BFC3CB;
    text-align: left;
    font-size: 1.0rem;
    padding: 25px 15px;
    color: #2B2F36;
    font-weight: 400;
}


.board-detail-editor-contents {
    min-height: 200px;
}


@media screen and (max-width: 991px) {

    .form-box .board-view-normal label {
        width: 100%;
    }

    .form-box .board-view-normal .form-input-box {
        width: 100%;
    }
}






/* border-footer */
.board-footer {
    display: block;
    width: 100%;
    padding: 0;
    text-align: right;
}

.btn {
    display: inline-block;
    padding: 20px 45px;
    font-size: 1.0rem;
    border-radius: 16px;
    transition: background 0.2s ease-in-out;
    border: 1px solid transparent
}




.btn-normal {
    color: #000;
    background: #fff;
    border: 1px solid #8BA3BA;
}

.btn-normal:hover {
    color: #fff;
    background: #8BA3BA;
    border: 1px solid #8BA3BA;
}


.btn-positive {
    color: #fff;
    background: #4085C9;
}

.btn-positive:hover {
    background: #1F68AF;
}

.btn-negative {
    float: left;
    color: #E27519;
    background: #fff;
    border: 1px solid #FF952B;
}

.btn-negative:hover {
    color: #fff;
    background: #E27519;
    border: 1px solid #E27519;
}

/* tablet Mobile */
@media screen and (max-width: 991px) {
    .board-footer {
        text-align: center;
    }

    .btn {
        padding: 16px 22px;
        font-size: 1.0rem;
        border-radius: 12px;
    }

    .btn-negative {
        float: inherit
    }
}




/* pagenation-wrap */
.pagenation-wrap {
    position: relative;
    display: block;
    margin: 25px 0;
}

.pagenation {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
}

.pagenation li {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 2px;
}

.pagenation li a {
    padding: 8px 10px;
    font-size: 12px;
    color: #909090;
    border: 1px solid #BFC3CB;
    background: #fff;
    border-radius: 3px;
    box-sizing: border-box;
}

.pagenation li a:hover {
    border: 1px solid #5D6679;
    color: #5D6679;
    background: #fff;
}

.pagenation li.active a {
    border: 1px solid #5D6679;
    color: #fff;
    background: #5D6679;
    cursor: default;
}

.pagenation li a.btn-page {
    position: relative;
    text-align: left;
    overflow: hidden;
}

/* reply wrap */
.reply-wrap {
    margin: 30px 0;
}

.reply-input-box {
    display: block;
    width: 100%;
    padding: 15px 20px;
    background: #F0F7FD;
    border-radius: 5px;
    text-align: center;

}

textarea {
    display: block;
    width: 100%;
    margin: 0 0 5px 0;
    padding: 10px 12px;
    border: 1px solid #9AB5D0;
    border-radius: 5px;
    outline: 0;
}

.reply-input-box textarea:focus {
    border: 1px solid #3c79b7;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
}

.btn-reply-write {
    display: inline-block;
    width: auto;
    padding: 15px 22px;
    border-radius: 4px;
    border: 1px solid #9AB5D0;
    font-size: 1.0rem;
    font-weight: 400;
    background: #fff;
}

.btn-reply-write:hover {
    border: 1px solid #4172a2;
    background: #4172a2;
    color: #fff;
}


/* reply - list */
.reply-list {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;

    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    margin: 20px 0;
}

.reply-list li {
    border: 1px solid #C4CCD8;
    width: 100%;
    position: relative;
    margin-bottom: 15px;
    padding: 12px 20px;
    border-radius: 20px;
}

.reply-list li .reply-con {
    font-size: 1.0rem;
    padding: 0 0 5px 0px;
}

.reply-list li .reply-info {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.reply-list li .reply-info strong {
    padding-right: 14px;
    font-weight: 600;
    color: #000;
}

.reply-list li .reply-info span {
    font-size: 1.4rem;
    font-weight: 300;
    color: #798498;
}


.reply-list li .reply-control {
    position: absolute;
    right: 15px;
    top: 15px;
}

.reply-list li .reply-control .btn-reply-icon {
    position: relative;
    display: inline-block;
    width: 36px;
    height: 36px;
    overflow: hidden;
    text-align: left;
    overflow: hidden;
    text-indent: -9999px;
}




textarea.reply-modify-box {
    display: block;
    width: calc(100% - 120px);
    margin: 0;
    padding: 10px;
    border: 1px solid #FF9212;
    border-radius: 10px;
    outline: 0;
    resize: none;
    min-height: 50px;

}

.reply-modify-box:focus {
    border: 2px solid #FF9212;
}

/* tablet Mobile */
@media screen and (max-width: 991px) {

    .reply-list li .reply-control {
        position: relative;
        right: inherit;
        top: inherit;
        width: 100%;
        text-align: right;
    }

    textarea.reply-modify-box {
        width: 100%;
        min-height: 80px;
    }

}



.btn-reply-modify {
    background: url('../images/icon-edit.png') center center no-repeat;
}

.btn-reply-modify:hover {
    background: url('../images/icon-edit-blue.png') center center no-repeat;
}

.btn-reply-cancle {
    background: url('../images/icon-close-circle.png') center center no-repeat;
}

.btn-reply-cancle:hover {
    background: url('../images/icon-close-circle-orange.png') center center no-repeat;
}

.btn-reply-delete {
    background: url('../images/icon-delete.png') center center no-repeat;
}

.btn-reply-delete:hover {
    background: url('../images/icon-delete-blue.png') center center no-repeat;
}


/* board - write */
.board-view-write {
    width: 100%;
    table-layout: fixed;
    border-top: 1px solid #2B2F36;
}

.board-view .board-view-write tbody tr th {
    border-bottom: 1px solid #2B2F36;
    text-align: center;
    font-size: 1.0rem;
    padding: 8px 0;
    color: #323336;
    font-weight: 600;
}

.board-view .board-view-write tbody tr td {
    border-bottom: 1px solid #2B2F36;
    text-align: left;
    font-size: 1.0rem;
    padding: 8px 0;
    color: #323336;
    font-weight: 400;
}


.board-view .board-view-write tbody tr td .gray-box {
    padding: 10px 15px;
    background: #EDEDED;
}





.board-view .board-view-joinus tbody tr td .title {
    display: inline-flex;
    width: 15%;
    min-height: 36px;
    text-align: left;
    color: #4085C9;
    padding-left: 20px;
    align-items: center;
    font-weight: 600;
}

.board-view .board-view-joinus tbody tr td .form-input-box {
    display: inline-flex;
    align-items: center;
    float: right;
    width: 85%;
}



.board-view .board-view-write tbody tr td .gray-box .gray-box-input {
    margin-top: 4px;
}

.board-view .board-view-write tbody tr td .gray-box span {
    display: inline-block;
    margin-top: 4px;
}

/* tablet Mobile */
@media screen and (max-width: 991px) {
    .board-view .board-view-write tbody tr td {
        padding: 12px 0;
    }

    .board-view .board-view-joinus tbody tr td .title {
        display: block;
        width: 100%;
        margin-bottom: 5px;
        padding-left: 0;
    }

    .board-view .board-view-joinus tbody tr td .form-input-box {
        display: block;
        float: none;
        width: 100%;

    }

}


.board-message {
    width: 100%;
    text-align: center;
    padding: 20px 15px;
}



/* login page */
.login-input-wrap {
    position: relative;
    padding-top: 100px;
}


.login-input-wrap form {
    display: block;
    width: 50%;
    min-width: 620px;
    background: #fff;
    border-radius: 30px;
    margin: 0 auto;
    padding: 40px 100px;
}


.login-input-wrap .login-logo {
    display: block;
    width: 100%;
    height: 72px;
    text-align: left;
    text-indent: -9999px;
    overflow: hidden;
    background: url('../images/site-logo-login.png') left center no-repeat;
}


@media screen and (max-width: 991px) {
    .login-input-wrap {
        padding-top: 20px;
    }

    .login-input-wrap form {
        width: 100%;
        min-width: inherit;
        padding: 30px 20px;
        border-radius: 15px;
        background: rgba(255, 255, 255, 0.75);

    }

    .login-input-wrap .login-logo {
        background: url('../images/site-logo-login.png') left center no-repeat;
        background-size: contain;
    }

}




.login-input-wrap .login-copy {
    display: block;
    margin: 16px 0;
    font-size: 2.2rem;
    font-weight: 100;
    color: #676C74;
}

.login-input-wrap .login-copy strong {
    font-size: 1.0rem;
    font-weight: 600;
    color: #26292E;
}

.login-input-box {
    display: block;
    width: 100%;
}

.login-input-box-wrap {
    display: block;
    padding: 12px 10px;
    border-top: 2px solid #4085C9;
    border-bottom: 1px solid #000;
}

.login-input-box>span {
    display: inline-block;
    width: 120px;
}

.login-input-box .login-input {
    display: inline-block;
    min-width: calc(100% - 130px);
    padding: 12px 15px;
    margin: 6px 0;
    font-size: 1.0rem;
    color: #262629;
    border-radius: 5px;
    border: 1px solid #b7b7b7;
}

.login-input-box .login-input::placeholder {
    color: #b4b6ba;
}

.login-input-wrap .login-btn-wrap {
    padding: 20px 0;
    text-align: center;
}

.login-input-wrap .btn-login {
    display: block;
    width: 100%;
    font-size: 2.2rem;
    text-align: center;
    padding: 20px 45px;
    color: #fff;
    background: #4085C9;
    border-radius: 14px;
    margin-bottom: 10px;
}

.login-input-wrap .btn-login:hover {
    background: rgb(21, 100, 179);

}


.login-input-wrap .btn-join {
    display: block;
    width: 100%;
    font-size: 2.2rem;
    text-align: center;
    padding: 20px 45px;
    color: #4085C9;
    background: #fff;
    border: 1px solid #4085C9;
    border-radius: 20px;
}

.login-input-wrap .btn-join:hover {
    color: #000;
    background: #e2e2e2;
    border: 1px solid #e2e2e2;

}

@media screen and (max-width: 991px) {
    .login-input-box>span {
        width: 80px;
    }

    .login-input-box .login-input {
        width: calc(100% - 90px);
    }

    .login-input-wrap .btn-login {
        font-size: 1.0rem;
        padding: 15px 25px;
        border-radius: 10px;
    }

    .login-input-wrap .btn-join {
        font-size: 1.0rem;
        padding: 15px 25px;
        border-radius: 10px;
    }
}


/*  */
@media screen and (max-width: 991px) {
    .m-hidden {
        display: none !important;
    }
}