<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/* CSS Document */

/* 中身-モバイルファースト======================================================================================================== */

#top_copy{
	background-image: url(images/bg.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100% auto;
}
#top_copy p{
	margin-top: 10px;
}

#list li{
	border-top: solid 1px #e60012;
	padding-top: 20px;
	margin-top: 20px;
	display: flex;
	align-items: center;
}
#list li .logo{
	margin-right: 10px;
	width: 20vw;
}
#list li .text{
	flex: 1;
	word-break: break-all;
}
#list li .text em{
	font-weight: bold;
}
#list li .text .comment{
	font-size: 12px;
}



/* PCのみ======================================================================================================== */
@media print and (min-width: 671px), screen and (min-width: 671px){

#top_copy{
	background-size: auto;
	font-size: 18px;
	background-size: auto 100%;
}
#top_copy p{
	margin-top: 20px;
}

#list{
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
}
#list li{
	width: 33.3%;
	padding: 20px;
	margin: 20px 0 0;
	border-left: solid 1px #e60012;
	border-top: none;
}
#list li:nth-child(3n-2){
	border-left: none;
}
#list li .logo{
	width: 100px;
}














}

</pre></body></html>