@charset "utf-8";

:root {
    --board-font-basic: "Pretendard";
    --board-font-num: "SUIT";
    --board-font-serif: "Nanum Myeongjo", serif;
    --board-color-basic: #000;
    --board-color-hover: #F8F8F8;
    --board-color-main: #D79A2B;
    --board-radius-btn: 5px;
}

.searchBox-wrap {
    position: relative;
    margin: 0 auto;
    width: 60%;
    padding-bottom: 60px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.search-box {
    display: inline-block;
}

.choice-board-box {
    display: flex;
    color: #666666;
    justify-content: center;
    align-items: flex-end;
}

.choice-board-box input[type="text"] {
    font-size: 16px;
    color: #666666;
    width: 100%;
    height: 40px;
}

.choice-board-box button {
    margin-left: 5px;
    width: 80px;
    height: 40px;
    background-color: var(--board-color-main);
    color: #fff;
    text-align: center;
    font-size: 16px;
}

.board-tbl {
    width: 100%;
    border-top: 1px solid #707070
}

.board-tbl thead tr th {
    font-size:20px;
    background-color: var(--board-color-main);
    color:#ffffff;
    text-align: center;
    padding: 15px 0;
}

.board-tbl td {
    height: 100px;
    vertical-align: middle;
    padding: 38px 0;
    border-bottom: 1px solid #CBCBCB;
    font-weight: 400;
}

.board-tbl tbody td:first-child {
    color: var(--board-color-main);
    font-weight: 500;
    text-align: center;
}

.board-tbl td:first-child .notice-tag {
    border-radius: var(--board-radius-btn);
    background-color: var(--board-color-basic);
    color: #fff;
    text-align: center;
    width: 60px;
    line-height: 30px;
    display: inline-block;
}

.board-tbl td.board-date {
    text-align: right;
    color: #707070;
    padding-right: 20px;
}

.board-tbl td .board-title {
    font-size: 20px;
    width: 100%;
    display: block;
    line-height: 1.2em;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.board-tbl tbody tr:hover td {
    background-color: var(--board-color-hover);
    font-weight: 500;
}

.board-tbl tr:hover td .board-title {
    text-decoration: underline;
}

/*view*/
.board-view-tbl {
    width: 100%;
    font-weight: 400;
    border-top: 1px solid #707070;
    margin-bottom: 50px;
}

.board-view-tbl thead tr {
    background-color: #F8F8F8;
    border-bottom: 1px solid #CBCBCB;
}

.board-view-tbl thead th {
    min-height: 100px;
    padding: 38px 20px;
    line-height: 1.2em;
    font-size: 20px;
    text-align: left;
}

.board-view-tbl thead td {
    color: #707070;
    text-align: right;
    padding-right: 20px;
    vertical-align: middle;
}

.board-view-tbl tbody td {
    min-height: 100px;
    padding: 10px 0;
    border-bottom: 1px solid #CBCBCB;
}

.board-view-tbl tbody .tbl-img-con {
    margin: 20px 0;
}
.board-view-tbl tbody .tbl-img-con img {
    max-width: 100%;
    display: block;
}

.board-view-tbl tfoot tr {
    border-bottom: 1px solid #CBCBCB;
}

.board-view-tbl tfoot th {
    color: var(--board-color-main);
    font-weight: 500;
    vertical-align: middle;
}

.board-view-tbl tfoot td {
    font-size: 20px;
    padding: 38px 20px 38px 5px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    vertical-align: middle;
}

/*event*/
.event-list-wrap {
    width: 100%;
    display: flex;
    gap: 50px 2%;
    flex-wrap: wrap;
}

.event-list-box {
    flex: 0 0 32%;
    max-width: 380px;
    position: relative;
}
.event-list-box a{
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.event-list-box figure{
    width: 100%;
    height: 180px;
    overflow: hidden;
}
.event-list-box figure img{
    display: block;
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: .2s all ease-in-out;
}

.event-list-box:hover figure img{
    transform: scale(1.02);
}

.event-list-con{
    border-top: 1px solid #707070;
    border-bottom: 1px solid #CBCBCB;
    padding: 20px 12px;
}
.event-list-box h2 {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-bottom: 15px;
    font-size: 24px;
    font-weight: 500;
}

.event-list-box .event-tag {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 14px;
    color: #707070;
    gap: 10px;
}

.event-list-box .event-tag li{
    display: flex;
    gap: 0 10px;
    align-items: center;
}

.event-list-box .event-tag .tag {
    display: inline-block;
    background-color: var(--board-color-basic);
    color: #fff;
    text-align: center;
    width: 60px;
    line-height: 30px;
    border-radius: var(--board-radius-btn);
}

.event-list-box:hover{
    background-color: #f8f8f8;
}

.event-list-box:hover h2{
    font-weight: 600;
    text-decoration: underline;
}

/*qna*/
.qna-list-box {
    border-top: 1px solid #707070;
    width: 100%;
    margin: 50px 0;
}

.qna-list-box ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.qna-list-box ul li {
    position: relative;
    width: 100%;
    min-height: 70px;
    border-bottom: 1px solid #CBCBCB;
    cursor: pointer;
}

.qna-list-box ul li.on{
    background-color: #f8f8f8;
}

.qna-list-box ul li .toggle-area{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 23px 20px;
}
.qna-list-box ul li .toggle-area p{
    display: flex;
    align-items: center;
    gap: 0 15px;
    font-size: 20px;
    font-weight: 500;
    width: fit-content;
    padding-right: 30px;
}
.qna-list-box ul li .toggle-area p .tag{
    display: block;
    width: 30px;
    height: 30px;
    background-color: var(--board-color-basic);
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    font-size: 14px;
}

.qna-list-box ul li .toggle-area p .icon{
    background: url("/pc/images/ic_plus.svg") center center no-repeat;
    width: 24px;
    height: 24px;
    display: block;
}
.qna-list-box ul li .toggle-area p .icon.on{
    background: url("/pc/images/ic_minus.svg") center center no-repeat;
    width: 24px;
    height: 24px;
}

.qna-inner {
    padding: 0 65px 16px;
    font-weight: 400;
    line-height: 1.5em;
    color: #707070;
    display: none;
}