@charset "UTF-8";

#contents {
	background: rgb(240,238,240); 
}
.column {
	justify-content: space-between; 
	align-items: stretch;
	font-size: 0.9rem; 
	line-height: 1.8; 
}
.column a {
	position: relative; 
	display: block;
 	padding: 1em 2em 1em 1em; 
	text-decoration: none; 
	color: rgb(51,51,51);
	background: white; 
}
.column a:after {
	position: absolute; 
	top: 50%; 
	right: 0.5em; 
	transform: translate(0, -50%);
	content: '\f054';
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	color: rgb(102,102,102); 
}
.column .col2 p {
	width: 100%; 
	margin-bottom: 0.5em; 
	padding: 0.125em 0.5em; 
	background: rgb(128,128,128); 
	color: white; 
} 
.column .col2 div {
	float: right; 
	width: calc(100% - 94px - 1em); 
}
.col2 div ul li {
	list-style-type: disc; 
	margin-left: 1em; 
}
/* 2コラム上マージン調整 */
.column .col2:first-child {
	margin-top: 3%; 
}
@media only screen and (min-width: 961px) { 
/* 2コラム上マージン調整 */
.column .col2:nth-child(n+1):nth-child(-n+2) {
	margin-top: 3%; 
	}
}