@charset "UTF-8";

/* special
-----------------------------------*/
.special_list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: -10px -2px 65px;
}
.special_list li {
	width: 221px;
	margin: 0 0 40px 40px;
}
.special_list li:nth-child(4n+1) {
	margin-left: 0;
}
.special_list li img {
	display: block;
	-webkit-transition: transform 300ms;
	transition: transform 300ms;
}
.special_list li a {
	display: block;
	overflow: hidden;
	-webkit-transition: opacity 300ms;
	transition: opacity 300ms;
}
.special_list li a:hover {
	opacity: .6;
}
.special_list li a:hover img {
	transform: scale(1.1);
}




@media only screen and (max-width: 768px) {
	.special_list {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		margin: 0 0 40px;
	}
	.special_list li {
		width: 48%;
		margin: 0 0 30px 4%;
	}
	.special_list li:nth-child(2n+1) {
		margin-left: 0;
	}
	.special_list li a:hover {
		opacity: 1;
	}
	.txtarea:last-child {
		padding: 0 3.75% 60px;
	}
	.special_list li a:hover img {
		transform: scale(1);
	}
}

/* download
-----------------------------------*/
.download_block {
	background: #856d47;
	padding: 20px;
	text-align: center;
	color: #464646;
	font-weight: 500;
	border-radius: 2%;
}
.download_block h4 {
	font-size: 1.6rem;
	font-weight: bold;
	margin-bottom: 13px;
	color: #fff;
}
.download_block p {
	font-size: 1.4rem;
	letter-spacing: .05em;
	margin-bottom: 16px;
	color: #ccc;
}
.download_block .download_btn {
	margin-bottom: 0;
}
.download_block .download_btn a {
	display: block;
	background: #252525;
	color: #FFF;
	padding: 10px;
	letter-spacing: .1em;
	font-size: 2rem;
	-webkit-transition: opacity 300ms;
	transition: opacity 300ms;
}
.download_block .download_btn a:hover {
	opacity: .6;
}
.download_block .download_btn a::after {
	content: "";
	width: 21px;
	height: 24px;
	display: inline-block;
	background: url(../img/special/download/icon_download.svg) no-repeat;
	vertical-align: -2px;
	margin-left: 21px;
}

.dowanload {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #fff;
	padding: 60px;
}

.dowanload .txt_area {
	width: 50%;
}

.dowanload .download_block {
	width: 30%;
}
#book figure {
	margin-bottom: 0;
}
.book_modal {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0,.7);
	z-index: 3000;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	opacity: 0;
	pointer-events: none;
	-webkit-transition: opacity 500ms;
	transition: opacity 500ms;
}
.book_modal.open {
	opacity: 1;
	pointer-events: auto;
}
.book_item {
	margin: auto !important;
	width: 500px;
	height: 707px;
}
.page {
	background: #FFF;
}
.book_item #book {
	width: 500px;
	height: 707px;
}
.book_close {
	-webkit-appearance: none;
	appearance: none;
	border: 0;
	background: none;
	position: absolute;
	top: -30px;
	right: 0;
	z-index: 1100;
	width: 20px;
	height: 20px;
	font-family: inherit;
	cursor: pointer;
}
.book_close:focus {
	outline: none;
}
.book_close::before {
	content: '×';
	display: block;
	color: #fff;
	font-size: 2rem;
	font-weight: bold;
	line-height: 1;
	position: absolute;
	top: 0;
	left: 0;
	text-indent: 0;
}


@media only screen and (max-width: 768px) {
	.download_block {
		width: auto;
		margin: 30px auto 0px;
		padding: 20px 3.75% 15px;
	}
	.download_block h4 {
		font-size: 1.8rem;
	}
	.download_block .download_btn a {
		font-size: 2.2rem;
		padding: 1px 1px 1px 20px;
	}
	.download_block .download_btn a:hover {
		opacity: 1;
	}
	.download_block .download_btn a::after {
		margin-left: 15px;
	}

	.dowanload {
		display: block;
		padding: 30px;
		margin: 0 0 40px 0;
	}

	.dowanload .txt_area {
		width: 100%;
	}

	.dowanload .download_block {
		width: 100%;
	}

	.book_item {
		width: 90vw;
		height: 126.126vw;
	}
	.book_item #book {
		width: 90vw;
		height: 126.126vw;
	}
}


a.book_show {
	width: 400px;
	max-width: 100%;
	display: block;
	border-radius: 2px;
	font-size: 1.5rem;
	text-align: center;
	font-weight: bold;
	border: 2px solid #856e49;
	color: #856e49;
	padding: 20px;
	margin: 0 auto 50px;
	-webkit-transition: color 300ms, background 300ms;
	transition: color 300ms, background 300ms;
}
a.book_show:hover {
	background: #856e49;
	color: #fff;
}