@charset "UTF-8";

.filterSelect {
	position: relative;
	max-width: 600px;
	margin: 0 auto 50px;
	padding-left: 80px;
}
.filterSelect .title {
	position: absolute;
	top: 18px;
	left: 0;
	font-size: 16px;
	font-weight: bold;
}
.filterSelect .selectBox {
	border: 1px solid #999;
	border-radius: 25px;
	font-weight: bold;
}
.filterSelect .value {
	position: relative;
	padding: 17px 60px 17px 22px;
	white-space: nowrap;
	overflow: hidden;
	font-size: 16px;
	text-overflow: ellipsis;
	cursor: pointer;
}
.filterSelect .value::before {
	content: '';
	position: absolute;
	top: 0;
	right: 22px;
	bottom: 0;
	width: 17px;
	height: 3px;
	margin: auto 0;
	background-color: #000;
}
.filterSelect .value::after {
	content: '';
	position: absolute;
	top: 0;
	right: 29px;
	bottom: 0;
	width: 3px;
	height: 17px;
	margin: auto 0;
	background-color: #000;
}
.filterSelect .value.s_open::after {
	display: none;
}
.filterSelect ul {
	display: none;
	margin: 0;
	padding: 0 22px 3px;
}
.filterSelect li {
	margin-bottom: 15px;
	list-style-type: none;
}
.filterSelect label {
	margin: 0;
}
.filterSelect input {
	display: none;
}
.filterSelect input + span {
	position: relative;
	display: inline-block;
	padding: 3px 0 3px 33px;
	cursor: pointer;
}
.filterSelect input + span::before {
	content: '';
	position: absolute;
	top: 3px;
	left: 0;
	width: 22px;
	height: 22px;
	border: 1px solid #9cb7d2;
	border-radius: 5px;
}
.filterSelect input:checked + span::after {
	content: '';
	position: absolute;
	top: -2px;
	left: 7px;
	width: 12px;
	height: 17px;
	border-right: 4px solid #f20000;
	border-bottom: 4px solid #f20000;
	transform: rotate(45deg);
}
@media screen and (max-width: 480px) {
	.filterSelect {
		display: block;
		margin-bottom: 30px;
		padding-left: 70px;
	}
	.filterSelect .title {
		font-size: 15px;
	}
	.filterSelect .value {
		font-size: 15px;
	}
}

.infoList {
	margin: 30px 0;
	border-top: 1px dotted #ccc;
	padding: 0;
}
.infoList > li {
	padding: 15px 0;
	border-bottom: 1px dotted #ccc;
	list-style-type: none;
}
.infoList_date {
	float: left;
}
.infoList_categ {
	padding: 1px 0 0 15px;
	overflow: hidden;
	color: #7d7d7d;
}
.infoList_categ li {
	margin-right: 10px;
	display: inline-block;
	list-style-type: none;
	font-size: 14px;
}
.infoList_text {
	clear: both;
	margin-top: 10px;
}
.infoList_text a[target="_blank"]::after {
	content: "";
	display: inline-block;
	vertical-align: -1px;
	margin-left: 5px;
	width: 14px;
	height: 12px;
	background: url(/common/img/icon_out1.png) no-repeat 0 0;
}

@media screen and (max-width: 480px) {
	.infoList_date {
		float: none;
	}
	.infoList_categ {
		padding: 0;
	}
	.infoList_categ li {
		font-size: 12px;
	}
	.infoList_text {
		margin-top: 6px;
	}
}

.moreBtn {
	margin: 40px auto 0;
	max-width: 400px;
	position: relative;
	border: 1px solid #1755aa;
	background-color: #fff;
	padding: 12px 10px;
	text-align: center;
	color: #1755aa;
	font-size: 16px;
	font-weight: bold;
	line-height: 1.3;
	text-decoration: none;
	transition: background-color 0.3s;
	cursor: pointer;
}
.moreBtn:hover {
	background-color: #e0ecff;
}
