@charset "utf-8";

#division_wrapper {
	padding-bottom: 50px;
	background-color: #ffffff;
}

#division_header {
	padding: 0.8em 1em 0.5em;
	background-color: #ffffff;
	border-bottom: solid 1px #666666;
	font-size: 2.4rem;
	text-indent: 0.2em;
	letter-spacing: 0.2em;
	text-align: center;
}

#disc_icon {
	margin-bottom: 0.2em;
	margin-right: 0.5em;
	width: 2.5em;
	vertical-align: middle;
}

.division_file_wrapper {
	margin-top: 60px;
	display: flex;
}

.movie_box {
	flex: 0 0 50%;
	text-align: center;
}

.movie_image_wrapper,
.pdf_image_wrapper,
.excel_image_wrapper {
	display: inline-block;
	max-width: 360px;
	position: relative;
	border: solid 1px  #cccccc;
}

.pdf_image_wrapper,
.excel_image_wrapper {
	max-width: 300px;
}

.movie_image_wrapper::before,
.pdf_image_wrapper::before,
.excel_image_wrapper::before {
	content: "";
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background-position: center center;
	background-repeat: no-repeat;
	opacity: 0.8;
	transition: background 0.3s, opacity 0.3s;
}

.movie_image_wrapper::before {
	background-image: url("../images/division/icon_movie_play.svg");
	background-size: 120px;
}

.pdf_image_wrapper::before {
	background-image: url("../images/division/icon_pdf_download.svg");
	background-size: 140px;
}

.excel_image_wrapper::before {
	background-image: url("../images/division/icon_excel_download.svg");
	background-size: 140px;
}

.movie_image_wrapper:hover::before,
.pdf_image_wrapper:hover::before,
.excel_image_wrapper:hover::before {
	background-color: rgba(0,0,0,0.1);
	opacity: 1;
}

.file_box {
	flex: 0 0 50%;
}

.movie_info,
.file_download {
	padding: 1em;
	min-height: 50%;
	border-bottom: dotted 1px #cccccc;
}

.movie_info ul li {
	margin: 1em 0;
}

.movie_info li a:hover {
	text-decoration: underline;
}

.file_download {
	text-align: center;
}

.file_download #file_download_button {
	display: inline-block;
	padding: 1em 1em 1em 3em;
	background: url("../images/index/icon_pdf.svg") no-repeat center left 10px #ffffff;
	background-size: auto 1.5em;
	border: solid 1px rgba(0,163,182,1);
	border-radius: 5px;
	color: #333333;
	line-height: 1.2;
	text-align: center;
	transition: background 0.3s;
}

.file_download #file_download_button:hover {
	background-color: #e5f6f8;
}

.division_text_wrapper {
	margin-top: 50px;
	padding: 0 50px;
}

@media screen and (max-width: 768px) {

	#division_wrapper {
		padding-bottom: 20px;
	}

	#division_header {
		padding: 0.5em;
		border-bottom: solid 1px #cccccc;
		font-size: 1.8rem;
	}

	.division_file_wrapper {
		margin-top: 40px;
		display: block;
	}

	.movie_box {
		padding: 0 1em;
		text-align: center;
	}

	.movie_image_wrapper {
		max-width: 360px;
	}

	.pdf_image_wrapper {
		max-width: 300px;
	}

	.movie_info {
		text-align: center;
	}

	.division_text_wrapper {
		margin-top: 20px;
		padding: 0 10px;
	}

}