.board_read .top {
	font-weight: 500;
	font-size: 16px;
}
.board_read .top .title {
    padding: 18px 20px;
    background: #ddd;
	border: 1px solid #666;
    box-sizing: border-box;
}
.board_read .top .info {
    background: #f5f5f5;
    padding: 15px 20px;
    font-size: 14px;
    box-sizing: border-box;
}
.board_read .conts {
	margin: 50px auto;
	line-height: 1.5;
    text-align: center;
}
.board_read .conts h3 {
	font-weight: 400;
	font-size: 30px;
	margin-bottom: 50px;
}
.board_read .conts .img {
	text-align: center;
	margin-bottom: 40px;
}
.board_read .conts img {
	max-width: 100%;
}
.board_read .conts > div {
	line-height: 1.5;
}
.board_read .conts .link a {
	display: inline-block;
	font-size: 22px;
	font-weight: 500;
	background: var(--key-color);
	color: var(--white);
	border-radius: 5px;
	padding: 5px 10px;
	box-sizing: border-box;
}
.board_read .conts .code {
	font-size: 22px;
	margin: 10px 0 30px;
}
.board_read .rating {
    margin-top: 30px;
    gap: 10px;
    border-top: 1px solid #e1e1e1;
    padding-top: 30px;
	text-align: center;
}
.board_read .rating .star {
	justify-content: center;
	gap: 5px;
}
.board_read .rating .star span {
	width: 25px;
	height: 25px;
	background:url("../images/star_off.svg")no-repeat 50% 50% / 100%;
	cursor: pointer;
}
.board_read .rating .star span.on {
	background-image: url("../images/star_on.svg");
}
.board_read .bd_tags {
	margin-top: 30px;
	gap: 5px;
}
.board_read .bd_tags span:after {
	content: ',';
}
.board_read .bd_tags span:last-child:after {
	display: none;
}
.board_read .btn_area {
	justify-content: end;
	margin: 30px 0;
	gap: 10px;
}
.board_read .btn_area a {
    background: #ddd;
	border: 1px solid #666;
    display: block;
    padding: 10px 25px;
	border-radius: 5px;
}
.board_read .board_search {
	display: flex;
}




.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;
}

.board .sub01 {
	display: none;
}

.board .recmd {
	justify-content: center;
	gap: 10px;
	padding-bottom: 20px;
}
.board .recmd button {
    font-size: 14px;
    padding: 10px 15px;
    background: #f1f1f1;
    border: 1px solid #ddd;
    box-sizing: border-box;
}


.detail {
	gap: 30px;
	margin-top: 30px;
}
.detail .detail_top {
	gap: 20px;
}
.detail .detail_top .image {
	width: 500px;
	border: 1px solid #ddd;
	border-top: 2px solid var(--key-color);
	box-sizing: border-box;
}
.detail .detail_top.grid2 > div {
	width: auto;
	flex: 1;
}
.detail .box {
	position: relative;
	padding: 15px;
	line-height: 1.5;
	box-sizing: border-box;
}
.detail .box .mobile {
	display: none;
}
.detail .box .youtube {
	position: relative;
	height: 0;
	padding-bottom: 56%;
	overflow: hidden;
}
.detail .box .youtube iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.detail .detail_cont img {
	display: block;
	max-width: 100%;
	margin: 10px auto;
}
.detail .detail_top .image .box img {
	width: 100%;
}
.detail .detail_top .contents {
	flex: 1;
	width: 100%;
	border: 1px solid #ddd;
	border: 2px solid var(--key-color);
	box-sizing: border-box;
}
.detail .detail_top .contents .box > div {
	padding: 11px 0;
}
.detail .detail_top .contents .box > div .th {
	width: 90px;
	font-weight: bold;
	border-right: 1px solid #ddd;
	margin-right: 15px;
}
.detail .detail_top .contents .box > div .td {
	flex: 1;
	width: 100%;
	box-sizing: border-box;
}
.detail .detail_top .contents .box > div .td.tag {
	gap: 5px;
}
.detail .detail_top .contents .box > div .td.tag span {
    background: #f1f1f1;
    border-radius: 5px;
    padding: 4px 7px;
    font-size: 14px;
	color: #777;
}
.detail .detail_cont {
	border: 1px solid #ddd;
	border-top: 2px solid var(--key-color);
	box-sizing: border-box;
}
.detail .detail_cont .cert_box {
	border: 1px solid #ddd;
	margin-bottom: 30px;
	box-sizing: border-box;
}
.detail .detail_cont .cert_box .thumb {
	width: 150px;
	border-right: 1px solid #ddd;
}
.detail .detail_cont .cert_box .thumb img {
	width: 120px;
}
.detail .detail_cont .cert_box .txt_box {
	flex: 1;
	width: 100%;
}
.detail .detail_cont .cert_box .txt_box > div {
	gap: 20px;
	padding: 10px 15px;
	box-sizing: border-box;
}
.detail .detail_cont .cert_box .txt_box > div:first-child {
	border-bottom: 1px solid #ddd;
}
.detail .detail_cont .cert_box .txt_box > div strong {
	width: 145px;
	text-align: center;
	border-right: 1px solid #ddd;
	box-sizing: border-box;
}
.detail .detail_cont .cert_box .txt_box > div > div {
	flex: 1;
	width: 100%;
}
.detail .detail_util {
	border: 1px solid #ddd;
	border-top: 2px solid var(--key-color);
	box-sizing: border-box;
}
.detail .detail_util .box {
	gap: 15px;
}
.detail .detail_util .box img {
	max-width: 100%;
}
.detail .fix_txt {
	font-size: 24px;
	font-weight: 500;
	margin: 35px 0;
}
.detail .sub_tit {
	font-size: 18px;
	text-align: center;
	padding: 15px 5px;
	border-bottom: 1px solid #ddd;
}
.comment > h4 {
	padding: 15px 0 20px 30px;
	font-size: 18px;
	background: url("../images/ic_cmt.png")no-repeat 0 16px;
	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 #7C7C7C;
}
.comment .cmt_write button {
	width: 80px;
	border-radius: 3px;
}
.comment .cmt_list .item {
	position: relative;
	margin-top: 15px;
	padding-bottom: 15px;
	font-size: 14px;
	padding-left: 60px;
	border-bottom: 1px solid #e1e1e1;
	box-sizing: border-box;
}
.comment .cmt_list .item:first-child {
	margin-top: 20px;
}
.comment .cmt_list .item .profile {
	position: absolute;
	top: 0;
	left: 0;
	border: 1px solid #e1e1e1;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	box-sizing: border-box;
}
.comment .cmt_list .item .profile > img {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.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:first-child {
	margin-right: 10px;
	font-weight: bold;
}
.comment .cmt_list .item .top > div p:first-child: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 .icon {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	overflow: hidden;
	margin-right: 5px;
	border: 1px solid #e1e1e1;
	box-sizing: border-box;
}
.comment .cmt_list .item .top > div p .icon img {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.comment .cmt_list .item .top > div p .badge {
	display: inline-block;
	vertical-align: middle;
    border-radius: 5px;
	text-align: center;
	font-size: 0;
	margin-right: 3px;
	color: var(--white);
	width: 22px;
    height: 26px;
	background-image: url("../images/level_img.png?v=1");
	background-repeat: no-repeat;
	background-size: 110px;
}
.comment .cmt_list .item .top > div p .badge.level1 {
    /* background: #05C471; */
	background-position: 0 -1px;
}
.comment .cmt_list .item .top > div p .badge.level2 {
	/*background: #0584C4;*/
	background-position: -43px -1px;
}
.comment .cmt_list .item .top > div p .badge.level3 {
	/*background: #C40F05;*/
	background-position: -88px -1px;
}
.comment .cmt_list .item .top > div p .badge.level4 {
	/*background: #C40591;*/
	background-position: 0px -49px;
}
.comment .cmt_list .item .top > div p .badge.level5 {
	/*background: #4A05C4;*/
	background-position: -45px -49px;
}
.comment .cmt_list .item .top > div p .b_admin {
	/*background: #F0AE07;*/
	background-position: -67px -49px;
}
.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: #ddd;
    border: 1px solid #666;
    border-radius: 3px;
    padding: 5px 10px;
    font-size: 14px;
}
.comment .cmt_list .item .reply_depth2 {
	gap: 20px;
	margin-top: 20px;
	margin-left: -40px;
}
.comment .cmt_list .item .reply_depth2 > .box {
	padding: 0 0 0 80px;
}
.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.end .detail .box:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.board_read.end .detail .box:after {
    content: '토카픽 보증종료';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
    background: #f00;
    color: var(--white);
    font-size: 26px;
    font-weight: 500;
    padding: 5px 25px;
	z-index: 5;
}
.board_read.end .detail .bn {
	position: relative;
}
.board_read.end .detail .bn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.board_read.end .detail .bn:after {
	content: '토카픽 보증종료';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
    background: #f00;
    color: var(--white);
    font-size: 26px;
    font-weight: 500;
    padding: 5px 25px;
	z-index: 5;
}

.notice_table {
	max-width: 460px;
    border-radius: 5px;
	text-align: center;
    overflow: hidden;
}
.notice_table th {
    background: #E0E0E0;
    border-right: 1px solid #F0F0F0;
    font-size: 14px;
    padding: 8px 0;
}
.notice_table th:last-child {
    border-right: 0;
}
.notice_table td {
    background: var(--white);
    font-size: 14px;
    text-align: center;
    padding: 8px 0;
    border: 1px solid #F0F0F0;
}




@media screen and (max-width: 1450px) {
	.detail .detail_top .image {
		width: 370px;
	}
	.detail .detail_top .contents .box > div {
		padding: 7px 0;
	}
}
@media screen and (max-width: 1024px) {
	.detail .sub_tit {
		font-size: 16px;
	}
	.detail .box {
		font-size: 14px;
	}

	.detail .detail_top .image {
		width: 100%;
	}
	.detail .detail_top .contents .box > div .th {
		width: 80px;
	}
	.detail .detail_top.grid2 > div {
		flex: none;
		width: 100%;
	}

	.detail .box .mobile {
		display: block;
		margin-top: 20px;
	}
	.detail .box .mobile a {
		font-size: 20px;
		font-weight: 500;
		background: var(--key-color);
		color: var(--white);
		border-radius: 5px;
		padding: 5px;
		box-sizing: border-box;
	}
	.detail .box .mobile .code {
		font-size: 20px;
	}
	.detail .fix_txt {
		font-size: 20px;
	}
	.board_read.end .detail .box:after {
		font-size: 14px;
		padding: 5px 10px;
	}
	
	.detail .detail_cont .cert_box .thumb {
		width: 120px;
	}
	.detail .detail_cont .cert_box .thumb img {
		width: 100px;
	}
	.detail .detail_cont .cert_box .txt_box > div strong {
		width: 100px;
	}
	.detail .detail_cont .cert_box .txt_box > div {
		gap: 15px;
		padding: 8px 5px;
	}
}
@media screen and (max-width: 768px) {
	.board .write .preview input[type=file] + label,
	.board .write .preview .item {
		width: calc(33.333% - 7px);
		padding-bottom: 30%;
	}

	.detail .detail_cont .cert_box .thumb {
		width: 100%;
		text-align: center;
		border-right: 0;
		border-bottom: 1px solid #ddd;
	}
	.detail .detail_cont .cert_box .thumb img {
        width: 70px;
    }
}
@media screen and (max-width: 480px) {
	
}
@media screen and (max-width: 380px) {
	
}