.detail .subject {
    border-top: 1px solid #E2E5EA;
    background: #F7F7F7;
    padding: 20px 15px;
    gap: 10px;
    box-sizing: border-box;
}
.detail .subject > p {
    flex: 1;
    width: 100%;
    font-weight: 500;
}
.detail .subject > p .icon {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    overflow: hidden;
}
.detail .subject > p .icon img {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.detail .subject .util {
    gap: 5px;
}
.detail .subject .util span {
    color: #777;
    padding-left: 20px;
    box-sizing: border-box;
}
.detail .subject .util span.reply {
    background: url("../images/ic_reply.svg")no-repeat 0 50% / 17px;
}
.detail .subject .util span.view {
    background: url("../images/ic_view.svg")no-repeat 0 50% / 17px;
}
.detail .subject .util span.date {
    padding-left: 5px;
}

.detail_box {
    gap: 30px;
    padding: 0 15px 30px;
    box-sizing: border-box;
}
.detail_box .image {
    position: relative;
    height: 0;
    padding-bottom: 54%;
    overflow: hidden;
}
.detail_box .image img {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.detail_box .text {
    line-height: 1.3;
}
.detail_box .list_flex {
    gap: 30px;
}
.detail_box .list_flex > div > strong {
    position: relative;
    width: 190px;
}
.detail_box .list_flex > div > strong:after {
    content: '';
    position: absolute;
    top: 2px;
    right: 20px;
    display: block;
    width: 1px;
    height: 15px;
    background: var(--border);
}
.detail_box .list_flex > div > div {
    flex: 1;
    width: 100%;
    color: #777;
    line-height: 1.3;
}


.detail_btn {
    justify-content: end;
    gap: 5px;
}
.detail_btn a {
    font-size: 14px;
    border-radius: 5px;
    border: 1px solid var(--border);
    padding: 8px 20px;
}


.comment > h4 {
	padding: 50px 15px 20px;
	font-size: 16px;
    font-weight: 500;
	box-sizing: border-box;
}
.comment > h4 span {
    color: #FF4500;
}
.comment .cmt_write form {
	gap: 10px;
}
.comment .cmt_write textarea {
	flex: 1;
	height: 70px;
	resize: none;
	padding: 20px;
	font-size: 14px;
    font-weight: 500;
	background: transparent;
	border-radius: 5px;
	border: 1px solid var(--border);
    box-sizing: border-box;
}
.comment .cmt_write button {
	width: 68px;
	border-radius: 5px;
    font-size: 16px;
}
.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 .user_box {
    position: relative;
	margin-right: 10px;
}
.comment .cmt_list .item .top > div .user_box: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 .user_box p {
    font-weight: bold;
    cursor: pointer;
}
.comment .cmt_list .item .top > div .user_box ul {
	display: none;
    position: absolute;
    top: 20px;
    left: 0;
    min-width: 120px;
    padding: 5px 10px;
    border: 1px solid var(--border);
    background: var(--white);
	border-radius: 5px;
    box-sizing: border-box;
	z-index: 1;
}
.comment .cmt_list .item .top.active > div .user_box ul {
	display: block;
}
.comment .cmt_list .item .top > div .user_box ul li {
	margin: 0;
	font-size: 13px;
	padding: 3px 0;
    gap: 5px;
}
.comment .cmt_list .item .top > div .user_box ul li:first-child {
	padding-top: 3px;
}
.comment .cmt_list .item .top > div .user_box ul li p {
    flex: 1;
    padding-right: 0;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: left;
}
.comment .cmt_list .item .top > div .user_box ul li span {
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    padding: 2px 5px;
    border-radius: 5px;
    box-sizing: border-box;
}
.comment .cmt_list .item .top > div p.date {
	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 {
    position: relative;
	gap: 20px;
	margin-top: 20px;
	margin-left: -40px;
}
.comment .cmt_list .item .reply_depth2 > .box {
	padding: 0 0 0 80px;
    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/cmt_reply.svg") no-repeat 50% 50% / 100%;
}
.comment .cmt_list .item .reply_depth2 > .box .profile {
	left: 22px;
}
.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;
}
.comment .empty {
    background: #F7F7F7;
    padding: 20px 0;
    text-align: center;
    color: #777;
    font-size: 14px;
    font-weight: 600;
}
.comment .cmt_login_off {
    background: #F7F7F7;
    padding: 20px 0;
    text-align: center;
    color: #777;
    font-size: 14px;
    font-weight: 600;
}




.comment .cmt_list .item .btn_group {
    gap: 10px;
}
.comment .cmt_list .item .btn_group button {
    width: 55px;
    height: 34px;
    font-size: 14px;
    border-radius: 5px;
    box-sizing: border-box;
}
.comment .cmt_list .item .btn_group button.modify_btn {
    border: 1px solid var(--sub_black_02);
    color: var(--sub_black_02);
}
.comment .cmt_list .item .btn_group button.singo_btn {
    border: 1px solid #E91B23;
    color: #E91B23;
}


.detail .btn_area {
    justify-content: center;
    margin-top: 100px;
}
.detail .btn_area a {
    padding: 15px 20px;
    border-radius: 3px;
    background: #333;
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    box-sizing: border-box;
}




@media screen and (max-width: 1560px) {
}
@media screen and (max-width: 1024px) {
    .event_date {
        font-size: 14px;
    }
    
    .detail_box .list_flex > div > strong {
        width: 140px;
    }
}
@media screen and (max-width: 768px) {
    .detail .subject {
        justify-content: end;
    }
    .detail .subject > p {
        flex: none;
    }
    .detail .subject .util span {
        font-size: 14px;
    }

    .detail_box {
        gap: 20px;
    }
    .detail_box .text {
        font-size: 14px;
    }

    .detail_box .list_flex {
        font-size: 14px;
        gap: 20px;
    }

    .comment .cmt_write textarea {
        padding: 15px;
    }
    .comment .cmt_write button {
        font-size: 14px;
    }
    .comment > h4 {
        padding: 35px 10px 10px;
    }
    .comment .cmt_list .item .depth1 {
        padding: 15px 10px;
    }
    .comment .cmt_list .item .profile {
        width: 50px;
        height: 50px;
    }
    .comment .cmt_list .item .cont_box .top {
        font-size: 14px;
    }
    .comment .cmt_list .item .cont_box {
        gap: 5px;
    }
    .comment .cmt_list .item .cont_box .cont .view {
        font-size: 14px;
    }
    .comment .cmt_list .item .btn_group button {
        width: 50px;
        height: 30px;
    }
    .comment .cmt_list .item .reply_depth3 .box {
        padding: 15px 10px 15px 30px;
    }
    .comment .cmt_list .item .btn_group {
        width: 100%;
        justify-content: end;
    }

    .detail .btn_area {
        margin-top: 70px;
    }
    .detail .btn_area a {
        padding: 10px 15px;
    }
}
@media screen and (max-width: 480px) {
    
}
@media screen and (max-width: 380px) {
}