/*=================================================
 * CSS for PC
 * ================================================= */

body{
	background: url(./img/pc_bg.jpg) no-repeat top center fixed;
	background-size: cover;
}


/** search **/

#search{
	margin: 0 0 50px 0;
	padding: 50px 0;
	background: #fff;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
			box-sizing: border-box;
}
#search ul{
	width: 1050px;
	font-size: 0;
	line-height: 0;
	margin: 0 auto;
}
#search li{
	display: inline-block;
	vertical-align: top;
	width: 310px;
	margin: 0 20px 30px 20px;
}
#search li p{
	font-size: 16px;
	line-height: 20px;
	text-align: left;
	margin: 0 0 5px 0;
}
#search li p em{
	font-size: 18px;
	font-weight: bold;
}

select{
	width: 100%;
	font-size: 16px;
	line-height: 20px;
	padding: 12px 56px 12px 12px;
	border: 1px solid #ccc;
	border-radius: 0;
	font-family: Meiryo,'Hiragino Kaku Gothic ProN','Hiragino Sans',sans-serif;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
.select{	padding-right: 30px;}
.select_bg{
	position: relative;
	display: block;
}
.co_9 .select_bg:nth-of-type(1){	margin-bottom: 5px;}
.select_bg:before{
	content: '';
	display: inline-block;
	width: 44px;
	height: 44px;
	background: #000;
	border-radius: 0;
	pointer-events: none;
	position: absolute;
	top: 1px;
	right: 1px;
}
.select_bg:after{
	content: '';
	display: inline-block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 10px 6px 0 6px;
	border-color: #fff transparent transparent transparent;
	pointer-events: none;
	position: absolute;
	top: calc(50% - 5px);
	right: 17px;
}

.check-box{
	font-size: 16px;
	line-height: 1;
}
.check-box-in{
	margin: 10px 0 20px 0;
}
input[type=checkbox] {
	display: none;
}
label {
	font-size: 18px;
	box-sizing: border-box;
	cursor: pointer;
	display: inline-block;
	padding: 5px 0 5px 35px;
	position: relative;
	width: auto;
}
label::before {
	border: 1px solid #b9b9b9;
	content: '';
	display: block;
	width: 25px;
	height: 25px;
	left: 0px;
	margin-top: -15px;
	position: absolute;
	top: 50%;
}
input[type=checkbox] + label::before{
	transition: all .12s;
}
input[type=checkbox]:checked + label::before{
	width: 8px;
	top: 0px;
	left: 8px;
	border-radius: 0;
	opacity: 1;
	margin-top: 0;
	border-top-color: transparent;
	border-left-color: transparent;
	border-right-color: #7937af;
	border-bottom-color: #7937af;
	transform: rotate(45deg);
}
input[type=checkbox]:checked + label::after {
	opacity: 1;
}
.check-box label span{
	font-size: 18px;
	font-weight: bold;
}

#search .result{
	display: inline-block;
	vertical-align: top;
	font-size: 20px;
	font-weight: bold;
	line-height: 1;
	padding: 0 2px;
	border-bottom: 3px solid currentColor;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
#search .result span{
	font-size: 34px;
}


/** list **/

#list{
	font-size: 0;
	line-height: 0;
	text-align: left;
	padding: 50px 25px 40px 25px;
}
.csbox{
	display: inline-block;
	vertical-align: top;
	width: calc(100% / 4 - 50px);
	margin: 0 25px 50px 25px;
	background: #fff;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
			box-sizing: border-box;
}
.csbox .img{
	display: block;
}
.csbox .img img{
	width: 100%;
	height: auto;
}
.csbox .txt{
	padding: 10px 20px 10px 20px;
}
.csbox .name{
	font-size: 16px;
	font-weight: bold;
	line-height: 20px;
	margin: 0 0 10px 0;
}
.csbox .name a{	color: currentColor;}
.csbox .date{
	font-size: 12px;
	line-height: 15px;
	margin: 0 0 10px 0;
}
.csbox ul{}
.csbox li{
	display: inline-block;
	vertical-align: top;
	width: calc(100% / 2 - 5px);
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
			box-sizing: border-box;
}
.csbox li:nth-of-type(odd){	margin-right: 5px;}
.csbox li:nth-of-type(even){	margin-left: 5px;}
.csbox li span{
	display: block;
	font-size: 14px;
	line-height: 25px;
	color: #fff;
	background: #000;
	margin: 0 0 5px 0;
	padding: 0 5px;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
			box-sizing: border-box;
}
.csbox li p{
	font-size: 13px;
	line-height: 25px;
	margin: 0 0 5px 0;
}


/*=================================================
 * CSS for SP
 * ================================================= */

@media screen and (max-width: 650px) {
	body{
		background: none;
	}
	body:before{
		content:"";
		display:block;
		position:fixed;
		top:0;
		left:0;
		z-index:-1;
		width:100%;
		height:100vh;
		height:100lvh;
		background: url(./img/sp_bg.jpg) no-repeat top center;
		-webkit-background-size: cover;
		background-size: cover;
	}


	/** search **/

	#search{
		margin: 0 0 15px 0;
		padding: 30px 7.5px;
	}
	#search ul{
		width: auto;
		margin: 0;
	}
	#search li{
		width: calc(100% / 2 - 15px);
		margin: 0 7.5px 20px 7.5px;
	}
	#search li p{
		font-size: 14px;
		line-height: 18px;
	}
	#search li p em{	font-size: 16px;}

	select{
		width: 100%;
		font-size: 13px;
		line-height: 20px;
		padding: 7px 41px 7px 7px;
		border: 1px solid #ccc;
		border-radius: 0;
		font-family: Meiryo,'Hiragino Kaku Gothic ProN','Hiragino Sans',sans-serif;
		-webkit-appearance: none;
		-moz-appearance: none;
		appearance: none;
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
		        box-sizing: border-box;
	}
	.select_bg:before{
		content: '';
		width: 34px;
		height: 34px;
	}
	.select_bg:after{
		content: '';
		display: inline-block;
		width: 0;
		height: 0;
		border-style: solid;
		border-width: 8px 4px 0 4px;
		border-color: #fff transparent transparent transparent;
		pointer-events: none;
		position: absolute;
		top: calc(50% - 4px);
		right: 13px;
	}

	.check-box{
		font-size: 16px;
		line-height: 1;
	}
	.check-box-in{
		margin: 10px 0 15px 0;
	}
	input[type=checkbox] {
		display: none;
	}
	label {
		font-size: 14px;
		box-sizing: border-box;
		cursor: pointer;
		display: inline-block;
		padding: 5px 0 5px 35px;
		position: relative;
		width: auto;
	}
	label::before {
		border: 1px solid #b9b9b9;
		content: '';
		display: block;
		width: 25px;
		height: 25px;
		left: 0px;
		margin-top: -15px;
		position: absolute;
		top: 50%;
	}
	input[type=checkbox] + label::before{
		transition: all .12s;
	}
	input[type=checkbox]:checked + label::before{
		width: 8px;
		top: 0px;
		left: 8px;
		border-radius: 0;
		opacity: 1;
		margin-top: 0;
		border-top-color: transparent;
		border-left-color: transparent;
		border-right-color: #7937af;
		border-bottom-color: #7937af;
		transform: rotate(45deg);
	}
	input[type=checkbox]:checked + label::after {
		opacity: 1;
	}
	.check-box label span{
		font-size: 16px;
		font-weight: bold;
	}

	#search .result{
		display: inline-block;
		vertical-align: top;
		font-size: 16px;
		font-weight: bold;
		line-height: 1;
		padding: 0 2px;
		border-bottom: 3px solid currentColor;
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
		        box-sizing: border-box;
	}
	#search .result span{
		font-size: 28px;
	}






	/** list **/
	#list{
		padding: 15px 7.5px 7.5px 7.5px;
	}
	.csbox{
		width: calc(100% / 2 - 15px);
		margin: 0 7.5px 15px 7.5px;
	}
	.csbox .txt{
		padding: 10px 15px;
	}
	.csbox .name{
		font-size: 14px;
		font-weight: bold;
		line-height: 16px;
		margin: 0 0 10px 0;
	}
	.csbox .date{
		font-size: 10px;
		line-height: 12px;
		margin: 0 0 10px 0;
	}
	.csbox ul{}
	.csbox li{
		display: block;
		width: auto;
	}
	.csbox li:nth-of-type(odd),
	.csbox li:nth-of-type(even){	margin: 0;}
	.csbox li span{
		display: block;
		font-size: 12px;
		line-height: 20px;
	}
	.csbox li p{
		font-size: 12px;
		line-height: 15px;
		margin: 0;
		padding: 0 0 5px 0;
	}

}
