@charset "utf-8";
/* CSS Document */

#lower-image {
	background: url(../../images/main_image.jpg) center top;
	background-size: cover;
}

#main-contents .feature .outline {
	clear: both;
	padding-bottom: 30px;
	margin-bottom: 30px;
	overflow: hidden;
	border-bottom: 1px solid #dfdfdf;
}

#main-contents section #report {
	margin-top: 20px;
	padding: 20px;
	border: 1px solid var(--color-link);
	border-radius: 5px;
}

#main-contents section #report h4 {
	display: inline-block;
	float: left;
	font-size: 14px;
	font-size: 1.4rem;
	font-weight: bold;
}

#main-contents section #report #list-link {
	display: inline-block;
	float: right;
	width: 45px;
	height: 20px;
	margin-left: 5px;
	margin-bottom: 10px;
	line-height: 20px;
	text-align: center;
	border: none;
	background-color: #b7b7b7;
	border-radius: 10px;
	-webkit-transition: all 0.1s ease-in-out;
	-moz-transition: all 0.1s ease-in-out;
	transition: all 0.1s ease-in-out;
}

#main-contents section #report #list-link a {
	display: block;
	margin: 0;
	font-size: 13px;
	font-size: 1.3rem;
	color: #fff;
	background: none;
}

#main-contents section #report #list-link:hover {
	background-color: #333;
}

#main-contents section #report #list-link a:hover {
	padding: 0;
}

#main-contents section #report article {
	clear: both;
	padding-top: 20px;
	border-top: 1px solid #dfdfdf;
}

#main-contents section #report article a {
	display: block;
	overflow: hidden;
	opacity: 1;
	-webkit-transition: all 0.15s ease-in-out;
	-moz-transition: all 0.15s ease-in-out;
	transition: all 0.15s ease-in-out;
}

#main-contents section #report article a:hover {
	opacity: 0.75;
}

#main-contents section #report figure {
	display: inline-block;
	width: 200px;
	min-height: 150px;
	float: left;
	margin-right: 20px;
	background-color: #ccc;
	position: relative;
}

#main-contents section #report figure img {
	width: 100%;
	height: auto;
	position: absolute;
	top: -100%;
	bottom: -100%;
	left: -100%;
	right: -100%;
	margin: auto;
}

#main-contents section #report div {
	position: relative;
	display: inline-block;
	width: calc(100% - 220px);
	height: 150px;
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

#main-contents section #report div:after {
	position: absolute;
	bottom: 0;
	left: 0;
	content: "";
	width: 100%;
	height: 40px;
	background: -webkit-linear-gradient(top,rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
	background: -moz-linear-gradient(top, rgba(255,255,255,0), rgba(255,255,255,1));
	background: linear-gradient(top, rgba(255,255,255,0), rgba(255,255,255,1));
	background-color: rgba(255,255,255,.1);
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

#main-contents section #report div h1 {
	margin-bottom: 10px;
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: bold;
	color: var(--color-link);
}

#main-contents section #report div h1 time {
	display: block;
	margin-bottom: 10px;
	font-size: 13px;
	font-size: 1.3rem;
	font-weight: normal;
	color: #333;
}

#main-contents section #report div p {
	font-size: 1.3rem;
}

#main-contents .feature .outline figure {
	margin-bottom: 20px;
}

#main-contents section .noimage p {
	width: 100%;
}


#main-contents dl {
	margin-bottom: 20px;
}

#main-contents dl div {
	display: flex;
	justify-content: space-between;
	padding: 15px 0;
	border-top: 1px dotted #ccc;
}

#main-contents dt {
	width: 80px;
	margin: 0;
	font-weight: bold;
	color: var(--color-link);
}

#main-contents dd {
	width: calc(100% - 80px);
}


@media screen and (min-width: 768px) {
	#main-contents .feature .outline figure {
		display: inline-block;
		float: right;
		width: 40%;
		margin-bottom: 0;
	}

	#main-contents .feature .outline p {
		display: inline-block;
		width: calc(60% - 30px);
		vertical-align: top;
	}

	#main-contents dl {
		column-count: 2;
		-moz-column-count: 2;
		-webkit-column-count: 2;
		column-gap: 30px;
		-moz-column-gap: 30px;
		-webkit-column-gap: 30px;
	}
}

@media screen and (min-width: 1280px) {
	#main-contents dt {
		font-size: inherit;
	}
}