.content_right {
	display: flex;
}


.visual .box {
	padding: 10px;
	border: 1px solid #E2E5EA;
	border-top: 0;
	gap: 30px;
	box-sizing: border-box;
}
.gallery_type {
	gap: 10px;
}
.gallery_type > div {
	position: relative;
	width: calc(25% - 8px);
}
.gallery_type > div a {
	gap: 20px;
}
.gallery_type .thumb {
	position: relative;
	width: 100%;
	height: 0;
	padding-bottom: 57%;
	overflow: hidden;
}
.gallery_type .thumb img {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.gallery_type .txt {
	gap: 5px;
}
.gallery_type .txt .title {
	gap: 5px;
}
.gallery_type .txt .title span {
	width: 36px;
	height: 18px;
	line-height: 18px;
	font-size: 12px;
	text-align: center;
	box-sizing: border-box;
}
.gallery_type .txt .title p {
	flex: 1;
	width: 100%;
	font-size: 14px;
	display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}
.gallery_type .txt .nick {
	gap: 5px;
}
.gallery_type .txt .nick span {
	width: 36px;
	height: 18px;
	line-height: 18px;
	font-size: 12px;
	text-align: center;
	box-sizing: border-box;
}
.gallery_type .txt .nick p {
	font-size: 12px;
	display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
	color: #777;
}
.gallery_type .txt .nick .reply {
	color: #E91B23;
	font-size: 12px;
	font-weight: 600;
}
.visual .box .list_type {
	gap: 30px;
}
.visual .box .list_type ul {
	flex: 1;
	gap: 10px;
}
.visual .box .list_type ul li a {
	gap: 5px;
	font-size: 14px;
}
.visual .box .list_type ul li span {
	min-width: 23px;
	font-size: 10px;
	font-weight: 700;
	background: var(--key-color);
	color: var(--white);
	padding: 3px 0;
	text-align: center;
	box-sizing: border-box;
}
.visual .box .list_type ul li p {
	flex: 1;
	width: 100%;
	color: #777;
	display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}
.visual .box .list_type ul li .reply {
	color: #E91B23;
	font-weight: 600;
}



.list_box {
	margin-top: 30px;
}
.list_box h3 {
	gap: 10px;
	font-size: 16px;
	padding: 10px 20px;
	border-radius: 10px 10px 0px 0px;
	box-sizing: border-box;
}
.list_box h3 a {
	padding: 5px 15px;
	border-radius: 3px;
	border: 1px solid #E2E5EA;
	background: var(--white);
	color: #333;
	font-size: 14px;
	box-sizing: border-box;
}
.list_box h3 a:after {
	content: '';
	display: inline-block;
	vertical-align: 0px;
	width: 12px;
	height: 12px;
	background: url("../images/arrow-right.svg")no-repeat 50% 50%;
	margin-left: 5px;
}
.list_box .box {
	padding: 10px;
	border: 1px solid #E2E5EA;
	border-top: 0;
	gap: 10px;
	box-sizing: border-box;
}




@media screen and (max-width: 1560px) {
}
@media screen and (max-width: 1024px) {
}
@media screen and (max-width: 768px) {
	.gallery_type > div {
		width: calc(50% - 5px);
	}

	.list_box h3 a {
		padding: 5px 10px;
		font-size: 12px;
	}
	.list_box h3 a:after {
		vertical-align: -1px;
		margin-left: 3px;
	}
}
@media screen and (max-width: 480px) {
	.visual .box .list_type ul {
		flex: none;
		width: 100%;
	}
}
@media screen and (max-width: 380px) {
	.tabs {
		overflow-x: auto;
	}
	.tabs .flex {
        min-width: 320px;
    }


	.gallery_type > div {
        width: 100%;
    }
}