.board .inner {
    gap: 20px;
}
.board h3.tit {
    margin-bottom: 20px;
}
.board .menu_tab {
	justify-content: center;
	gap: 10px;
}
.board .menu_tab a {
	flex: 1;
    height: 56px;
    line-height: 55px;
    font-size: 18px;
	text-align: center;
	border: 1px solid #ddd;
	box-sizing: border-box;
}
.board .menu_tab a.active {
	background: var(--key-color);
	color: var(--white);
	border: 1px solid var(--key-color);
}

.board .btn_group {
    justify-content: end;
}
.board .btn_group a {
    border-radius: 50px;
    padding: 13px 30px;
    box-sizing: border-box;
}
.board .btn_group a:after {
    content: '';
    display: inline-block;
    vertical-align: -4px;
    width: 18px;
    height: 18px;
    background: url("../images/ic_write.svg")no-repeat 50% 50% / 100%;
    margin-left: 6px;
}


.board_read > .top {
	font-weight: 500;
	font-size: 16px;
    border-bottom: 1px solid #e4e4e4;
    padding-bottom: 15px;
}
.board_read > .top .title {
    font-size: 20px;
    margin-bottom: 15px;
}
.board_read > .top .info {
    font-size: 14px;
    box-sizing: border-box;
}
.board_read .conts {
	margin: 30px auto;
	line-height: 1.5;
}
.board_read .conts img {
	max-width: 100%;
}
.board_read .tag {
    gap: 8px;
    margin-bottom: 10px;
}
.board_read .tag span {
    position: relative;
    height: 36px;
    line-height: 36px;
    background: #f7f8fb;
    color: #656d7a;
    font-size: 14px;
    font-weight: 500;
    padding: 0 16px;
    border-radius: 50px;
    box-sizing: border-box;
}

.comment {
    margin-top: 20px;
}
.comment > h4 {
	padding: 15px 0 20px;
	font-size: 18px;
	box-sizing: border-box;
}
.comment .cmt_write form {
	gap: 10px;
}
.comment .cmt_write textarea {
	flex: 1;
	height: 35px;
	resize: none;
	border: 0;
	padding: 20px;
	font-size: 14px;
	background: transparent;
	border-radius: 3px;
	border: 1px solid #e4e4e4;
}
.comment .cmt_write button {
	width: 80px;
	border-radius: 3px;
}
.comment .cmt_list .item {
	position: relative;
	margin-top: 15px;
	padding-bottom: 15px;
	font-size: 14px;
	border-bottom: 1px solid #e1e1e1;
	box-sizing: border-box;
}
.comment .cmt_list .item:first-child {
	margin-top: 20px;
}
.comment .cmt_list .item .top {
	padding-bottom: 7px;
	font-size: 14px;
}
.comment .cmt_list .item .top > div {
	font-weight: 500;
}
.comment .cmt_list .item .top > div p {
	position: relative;
	padding-right: 10px;
}
.comment .cmt_list .item .top > div p.nickname {
	margin-right: 10px;
	font-weight: bold;
}
.comment .cmt_list .item .top > div p.nickname:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: block;
    width: 1px;
    height: 15px;
    background: #7c7c7c;
}
.comment .cmt_list .item .top > div p:nth-child(2) {
	font-size: 12px;
    color: #aaa;
    font-weight: 500;
}
.comment .cmt_list .item .top > div p:last-child {
	font-size: 12px;
	color: #aaa;
	font-weight: 500;
}
.comment .cmt_list .item .top > div .modify_btn {
	color: #7C7C7C;
	font-size: 14px;
	font-weight: 500;
}
.comment .cmt_list .item .top .del_btn {
	width: 13px;
	height: 13px;
	background: url("../images/ic_close.svg")no-repeat 50% 50%;
}
.comment .cmt_list .item .cont .view {
	font-family: 'noto sans';
}
.comment .cmt_list .item .cont .box_wrap {
	display: none;
	gap: 10px;
}
.comment .cmt_list .item .cont .box_wrap textarea {
    display: block;
    flex: 1;
    height: 60px;
    resize: none;
    border: 0;
    padding: 10px;
    font-size: 14px;
    background: transparent;
    border-radius: 3px;
    border: 1px solid #7C7C7C;
    box-sizing: border-box;
}
.comment .cmt_list .item .cont .box_wrap button {
	width: 80px;
	border-radius: 3px;
}
.comment .cmt_list .item .reply {
	justify-content: end;
	margin-top: 5px;
}
.comment .cmt_list .item .reply button {
	background-color: #f7f7f7;
    border: 1px solid #e4e4e4;
    border-radius: 3px;
    padding: 5px 10px;
    font-size: 14px;
}
.comment .cmt_list .item .reply_depth2 {
	gap: 20px;
	margin-top: 20px;
}
.comment .cmt_list .item .reply_depth2 > .box {
    position: relative;
	padding: 0 0 0 30px;
    box-sizing: border-box;
}
.comment .cmt_list .item .reply_depth2 > .box:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: block;
    width: 17px;
    height: 17px;
    background: url("../images/ic_reply.png") no-repeat 50% 50% / 100%;
}
.comment .cmt_list .item .reply_depth2 > .box .profile {
	left: 22px;
}
.comment .cmt_list .item .reply_depth2 > .box .top p:nth-child(2) {
	font-size: 12px;
    color: #aaa;
    font-weight: 500;
}
.comment .cmt_list .item .reply_box {
	display: none;
	margin-top: 10px;
}
.comment .cmt_list .item .reply_box .reply_box_wrap {
	gap: 10px;
	width: 100%;
}
.comment .cmt_list .item .reply_box .reply_box_wrap textarea {
    display: block;
    flex: 1;
    height: 60px;
    resize: none;
    border: 0;
    padding: 10px;
    font-size: 14px;
    background: transparent;
    border-radius: 3px;
    border: 1px solid #7C7C7C;
    box-sizing: border-box;
}
.comment .cmt_list .item .reply_box .reply_box_wrap button {
	width: 80px;
	border-radius: 3px;
}
.board_read .btn_area {
	justify-content: end;
	margin: 30px 0;
	gap: 10px;
}
.board_read .btn_area a {
    background-color: #ededed;
    border: 1px solid #c5c5c5;
    display: block;
    padding: 10px 25px;
	border-radius: 5px;
    font-size: 14px;
}


.board .write > h4 {
	font-size: 18px;
	margin-bottom: 30px;
}
.board .write .preview {
	position: relative;
	gap: 10px;
}
.board .write .preview input[type=file] {
	display: none;
}
.board .write .preview input[type=file] + label {
	display: block;
	width: calc(20% - 8px);
    height: 0;
    padding-bottom: 17%;
	background: #f9f9f9 url("../images/label_bg.svg?v=1")no-repeat 50% 50%;
	border: 1px dashed #BAC0C6;
	box-sizing: border-box;
}
.board .write .preview .item {
	position: relative;
	width: calc(20% - 8px);
    height: 0;
    padding-bottom: 17%;
	border: 1px dashed #BAC0C6;
	background: #F5F5F5;
	box-sizing: border-box;
}
.board .write .preview .item img {
	position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.board .write .preview .delBtn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
    background: url("../images/ic_del.svg?v=1")no-repeat 50% 50% / 50px;
    border-radius: 50%;
}
.board .write .btn_area {
	justify-content: center;
	gap: 10px;
}
.board .write .btn_area button {
	flex: 1;
	max-width: 150px;
	height: 45px;
	border-radius: 3px;
}


@media screen and (max-width: 1240px) {
}
@media screen and (max-width: 1024px) {
    .board .menu_tab a {
		height: 40px;
    	line-height: 38px;
		font-size: 14px;
	}

    .board .btn_group a {
        font-size: 14px;
        padding: 8px 16px;
    }
    .board .btn_group a:after {
        width: 17px;
        height: 20px;
    }
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 480px) {
    .board .menu_tab {
		justify-content: start;
	}
	.board .menu_tab a {
		flex: none;
		max-width: none;
		width: calc(50% - 5px);
	}
}
@media screen and (max-width: 380px) {
}