.board .sec {
	padding: 120px 0;
}
.board .sec > .inner {
	gap: 80px;
}

.board table th {
    background: var(--key-color);
    color: var(--white);
    padding: 26px 0;
    font-size: 20px;
    font-weight: 400;
}
.board table th:first-child {
    padding-left: 56px;
}
.board table th:last-child {
    padding-right: 56px;
}
.board table td {
    border-bottom: 2px solid #D3D3D3;
    padding: 26px 0;
    line-height: 1.2;
}
.board table td:first-child {
    padding-left: 56px;
}
.board table td:last-child {
    padding-right: 56px;
}


.board_read {
    gap: 30px;
}
.board_read .tit_bar {
    padding: 20px 26px;
    gap: 20px;
    border-bottom: 1px solid rgba(113, 113, 113, 0.5);
    box-sizing: border-box;
}
.board_read .tit_bar .subject {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.6px;
}
.board_read .tit_bar .date {
    color: var(--text);
    line-height: 1.2;
}
.board_read .cont {
    line-height: 1.2;
    letter-spacing: 0.4px;
}
.board_read .cont img {
    max-width: 100%;
}
.board_read .btn_area {
    justify-content: end;
}
.board_read .btn_area a {
    padding: 10px 20px;
    border-radius: 5px;
    box-sizing: border-box;
}


.txt_box {
    gap: 20px;
}
.txt_box strong {
    font-size: 32px;
    line-height: 1.2;
}
.txt_box p {
    color: var(--text);
    font-size: 20px;
}


.board_info {
    gap: 80px;
}
.board_info .step_box {
    position: relative;
    gap: 60px 0;
}
.board_info .step_box > div {
    position: relative;
    width: 16.666%;
    text-align: center;
    gap: 16px;
}
.board_info .step_box > div .line {
    position: absolute;
    bottom: 25px;
    left: 0;
    width: 100%;
    z-index: -1;
}
.board_info .step_box > div .line span {
    position: absolute;
    display: block;
    width: 50%;
    border-bottom: 1px dashed var(--text);
}
.board_info .step_box > div .line span:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    border-bottom: 1px dashed var(--key-color);
    transition: width 0.666s linear;
}
.board_info .step_box > div .line span.left {
    left: 0;
}
.board_info .step_box > div .line span.right {
    left: 50%;
}
.board_info .step_box > div .line span.right:after {
    transition-delay: 0.222s;
}
.board_info .step_box > div:first-child .line span.right:after {
    transition: width .8s linear;
    transition-delay: 0s;
}
.board_info .step_box > div:last-child .line span.left:after {
    transition-delay: 0s; 
}
.board_info .step_box > div:last-child .line span.right {
    display: none;
}
.board_info .step_box > div .icon {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    transition: all .3s;
}
.board_info .step_box > div .icon img {
    width: auto;
    filter: grayscale(1);
    transition: all .3s;
}
.board_info .step_box > div p {
    font-size: 20px;
    color: var(--text);
    transition: all .3s;
}
.board_info .step_box > div .num {
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    font-size: 32px;
    font-weight: 700;
    background: var(--white);
    border: 1px solid var(--text);
    margin: 0 auto;
    transition: all .3s;
    box-sizing: border-box;
}
.board_info .step_box > div.active .line span:after {
    width: 100%;
}
.board_info .step_box > div.active .icon {
    background: #F8F8F8;
}
.board_info .step_box > div.active .icon img {
    filter: none;
}
.board_info .step_box > div.active p {
    color: var(--black);
}
.board_info .step_box > div.active .num {
    background: var(--key-color);
    color: var(--white);
    border: 1px solid var(--key-color);
}



.board_prd {
    gap: 80px;
}
.board_prd .list {
    gap: 70px 30px;
}
.board_prd .list .item {
    width: calc(33.333% - 20px);
}
.board_prd .list .item .thumb {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.board_prd .list .item .thumb img {
    position: relative;
    width: 100%;
    transform: scale(1);
    transition: all .5s;
}
.board_prd .list .item:hover .thumb img {
    transform: scale(1.05);
}
.board_prd .list .item .info {
    gap: 10px;
    margin-top: 20px;
    align-items: end;
}
.board_prd .list .item .info strong {
    font-size: 24px;
    font-weight: 800;
}
.board_prd .list .item .info span {
    color: var(--text);
    text-transform: capitalize;
}




@media screen and (max-width: 1240px) {
    .board_read .tit_bar .subject {
        font-size: 20px;
    }


    .board_info .step_box > div .icon {
        width: 145px;
        height: 145px;
    }
    .board_info .step_box > div p {
        font-size: 18px;
    }
}
@media screen and (max-width: 1024px) {
	.board .sec {
		padding: 80px 0;
	}
	.board .sec > .inner {
		gap: 50px;
	}

    .board table th {
        font-size: 16px;
        padding: 20px 0;
    }
    .board table th:first-child {
        padding-left: 26px;
    }
    .board table th:last-child {
        padding-right: 26px;
    }
    .board table td {
        border-bottom: 1px solid #D3D3D3;
        font-size: 14px;
        padding: 20px 0;
    }
    .board table td:first-child {
        padding-left: 26px;
    }
    .board table td:last-child {
        padding-right: 26px;
    }


    .board_read .tit_bar {
        padding: 20px 15px;
        gap: 10px;
    }


    .board_info {
        gap: 50px;
    }
    .txt_box strong {
        font-size: 24px;
    }
    .txt_box p {
        font-size: 16px;
    }
    .board_info .step_box > div {
        width: 33.333%;
    }
    .board_info .step_box > div:nth-child(1) {
        order: 0;
    }
    .board_info .step_box > div:nth-child(2) {
        order: 1;
    }
    .board_info .step_box > div:nth-child(3) {
        order: 2;
    }
    .board_info .step_box > div:nth-child(3) .line span.right {
        transform: rotate(90deg);
        left: calc(50% - 42px);
        top: 30px;
        width: 83px;
    }
    .board_info .step_box > div:nth-child(4) {
        order: 5;
    }
    .board_info .step_box > div:nth-child(4) .line span.left {
        display: none;
    }
    .board_info .step_box > div:nth-child(4) .line span.right {
        left: 0;
        transform: rotate(180deg);
    }
    .board_info .step_box > div:nth-child(5) {
        order: 4;
    }
    .board_info .step_box > div:nth-child(5) .line span.left {
        left: 50%;
        transform: rotate(180deg);
    }
    .board_info .step_box > div:nth-child(5) .line span.right {
        left: 0;
        transform: rotate(180deg);
    }
    .board_info .step_box > div:nth-child(6) {
        order: 3;
    }
    .board_info .step_box > div:nth-child(6) .line span.left {
        left: 50%;
        transform: rotate(180deg);
    }


    .board_prd {
        gap: 50px;
    }
    .board_prd .list {
        gap: 45px 15px;
    }
    .board_prd .list .item {
        width: calc(33.333% - 10px);
    }
    .board_prd .list .item .info strong {
        font-size: 20px;
    }
}
@media screen and (max-width: 768px) {
	.board .sec > .inner {
        gap: 30px;
    }

    .board table colgroup {
        display: none;
    }
    .board table thead {
        display: none;
    }
    .board table tbody tr {
        display: flex;
        flex-wrap: wrap;
        border-bottom: 1px solid #D3D3D3;
        gap: 5px;
        padding: 10px 0;
        box-sizing: border-box;
    }
    .board table td {
        width: 100%;
        padding: 0!important;
        border: 0;
    }
    .board table td:last-child {
        text-align: right!important;
    }


    .board_read .tit_bar .subject {
        font-size: 16px;
    }
    .board_read .tit_bar .date {
        font-size: 14px;
    }
    .board_read .cont {
        font-size: 14px;
    }
    .board_read .btn_area a {
        font-size: 14px;
    }


    .board_info .step_box > div .line {
        bottom: 18px;
    }
    .board_info .step_box > div .icon {
        width: 95px;
        height: 95px;
    }
    .board_info .step_box > div .icon img {
        width: 50%;
    }
    .board_info .step_box > div p {
        font-size: 14px;
    }
    .board_info .step_box > div .num {
        width: 35px;
        height: 35px;
        line-height: 35px;
        font-size: 20px;
    }


    .board_prd .list {
        gap: 30px 15px;
    }
    .board_prd .list .item {
        width: calc(50% - 8px);
    }
    .board_prd .list .item .info strong {
        font-size: 18px;
    }
    .board_prd .list .item .info span {
        font-size: 14px;
    }
}
@media screen and (max-width: 480px) {
    .board_info .step_box > div {
        width: 50%;
    }
    .board_info .step_box > div:nth-child(1) {
        order: 0;
    }
    .board_info .step_box > div:nth-child(2) {
        order: 1;
    }
    .board_info .step_box > div:nth-child(2) .line span.right {
        transform: rotate(90deg);
        left: calc(50% - 42px);
        top: 30px;
        width: 83px;
    }
    .board_info .step_box > div:nth-child(3) {
        order: 3;
    }
    .board_info .step_box > div:nth-child(3) .line span.left {
        display: none;
    }
    .board_info .step_box > div:nth-child(3) .line span.right {
        top: 0;
        left: 0;
        transform: rotate(180deg);
        width: 50%;
    }
    .board_info .step_box > div:nth-child(3) .line span.right:after {
        transition-delay: 0;
    }
    .board_info .step_box > div:nth-child(4) {
        order: 2;
    }
    .board_info .step_box > div:nth-child(4) .line span.left {
        display: block;
        left: 50%;
        transform: rotate(180deg);
    }
    .board_info .step_box > div:nth-child(4) .line span.right {
        transform: rotate(90deg);
        left: calc(50% - 42px);
        top: 30px;
        width: 83px;
    }
    .board_info .step_box > div:nth-child(5) {
        order: 4;
    }
    .board_info .step_box > div:nth-child(5) .line span.left {
        transform: none;
    }
    .board_info .step_box > div:nth-child(5) .line span.right {
        display: none;
    }
    .board_info .step_box > div:nth-child(6) {
        order: 5;
    }
    .board_info .step_box > div:nth-child(6) .line span.left {
        left: 0;
        transform: none;
    }
}
@media screen and (max-width: 380px) {
    .board_prd .list .item {
        width: 100%;
    }
}