
/*
カスタム CSS 機能へようこそ。

使い方についてはこちらをご覧ください
(英語ドキュメンテーション)。http://wp.me/PEmnE-Bt
*/
/*幅とマージン設定 */
.ac-container {
	width: 400px;
	margin: 10px auto 30px;
}

/*クリックできるようにする設定とか */
.ac-container label {
	font-family: 'BebasNeueRegular', 'Arial Narrow', Arial, sans-serif;
	padding: 5px 20px;
	position: relative;
	z-index: 20;
	display: block;
	height: 24px;
	cursor: pointer;
	color: #777;
	text-shadow: 1px 1px 1px rgba(255,255,255,0.8);
	line-height: 20px;
	font-size: 15px;
	background: linear-gradient(top,#ffffff 1%,#eaeaea 100%);
	box-shadow: 0 0 0 1px rgba(155,155,155,0.3), 1px 0 0 0 rgba(255,255,255,0.9) inset, 0 2px 2px rgba(0,0,0,0.1);
}

/*ホバー時のラベルを白にする */
.ac-container label:hover {
	background: #fff;
}

/*クリック時にチェックボックスをオンにする */
.ac-container input:checked + label,
.ac-container input:checked + label:hover {
	background: #c6e1ec;
	color: #3d7489;
	text-shadow: 0 1px 1px rgba(255,255,255,0.6);
	box-shadow: 0 0 0 1px rgba(155,155,155,0.3), 0 2px 2px rgba(0,0,0,0.1);
}

/*
.ac-container label:hover:after,
.ac-container input:checked + label:hover:after {
	content: '';
	position: absolute;
	width: 24px;
	height: 24px;
	right: 13px;
	top: 7px;
	background: transparent url(http://biologyofmrboo.com/wp-content/uploads/2015/11/arrow_down.png) no-repeat center center;
}
*/
/*
.ac-container input:checked + label:hover:after {
	background-image: url(http://biologyofmrboo.com/wp-content/uploads/2015/11/arrow_up.png);
}
*/
/*ラジオボタンを隠す */
.ac-container input {
	display: none;
}

/*コンテンツ部分の表示・非表示の設定 */
.ac-container article {
	background: rgba(255,255,255,0.5);
	margin-top: -1px;
	overflow: hidden;
	height: 0;
	position: relative;
	z-index: 10;
	transition: height .3s ease-in-out, box-shadow .6s linear;
}

.ac-container input:checked ~ article {
	transition: height .5s ease-in-out, box-shadow .1s linear;
	box-shadow: 0 0 0 1px rgba(155,155,155,0.3);
}

/*コンテンツの部分のスタイル変更 */
.ac-container article p {
	font-style: italic;
	color: #777;
	line-height: 17px;
	font-size: 12px;
	padding: 20px;
	text-shadow: 1px 1px 1px rgba(255,255,255,0.8);
}

/*３つのクラスの高さを定義する */
.ac-container input:checked ~ article.ac-large {
	height: auto;
}

/* For devices with screen size lower than 480px */
@media only screen and (max-width: 480px) {
	.ac-container {
		width: 250px;
		margin: 10px auto 30px;
	}
	
	.ac-container label {
		font-family: 'BebasNeueRegular', 'Arial Narrow', Arial, sans-serif;
		padding: 5px 20px;
		position: relative;
		z-index: 20;
		display: block;
		height: 24px;
		cursor: pointer;
		color: #777;
		text-shadow: 1px 1px 1px rgba(255,255,255,0.8);
		line-height: 20px;
		font-size: 15px;
		background: linear-gradient(top,#ffffff 1%,#eaeaea 100%);
		box-shadow: 0 0 0 1px rgba(155,155,155,0.3), 1px 0 0 0 rgba(255,255,255,0.9) inset, 0 2px 2px rgba(0,0,0,0.1);
	}
	
	/*ホバー時のラベルを白にする */
	.ac-container label:hover {
		background: #fff;
	}
	
	/*クリック時にチェックボックスをオンにする */
	.ac-container input:checked + label,
																																																		.ac-container input:checked + label:hover {
		background: #c6e1ec;
		color: #3d7489;
		text-shadow: 0 1px 1px rgba(255,255,255,0.6);
		box-shadow: 0 0 0 1px rgba(155,155,155,0.3), 0 2px 2px rgba(0,0,0,0.1);
	}
	
	/*
																																												.ac-container label:hover:after,
																																																		.ac-container input:checked + label:hover:after {
																																													content: '';
																																													position: absolute;
																																													width: 24px;
																																													height: 24px;
																																													right: 13px;
																																													top: 7px;
																																													background: transparent url(http://biologyofmrboo.com/wp-content/uploads/2015/11/arrow_down.png) no-repeat center center;
																																												}
																																												
																																												
																																												.ac-container input:checked + label:hover:after {
																																													background-image: url(http://biologyofmrboo.com/wp-content/uploads/2015/11/arrow_up.png);
																																												}
																																												*/
	/*ラジオボタンを隠す */
	.ac-container input {
		display: none;
	}
	
	/*コンテンツ部分の表示・非表示の設定 */
	.ac-container article {
		background: rgba(255,255,255,0.5);
		margin-top: -1px;
		overflow: hidden;
		height: 0;
		position: relative;
		z-index: 10;
		transition: height .3s ease-in-out, box-shadow .6s linear;
	}
	
	.ac-container input:checked ~ article {
		transition: height .5s ease-in-out, box-shadow .1s linear;
		box-shadow: 0 0 0 1px rgba(155,155,155,0.3);
	}
	
	/*コンテンツの部分のスタイル変更 */
	.ac-container article p {
		font-style: italic;
		color: #777;
		line-height: 17px;
		font-size: 12px;
		padding: 20px;
		text-shadow: 1px 1px 1px rgba(255,255,255,0.8);
	}
	
	/*３つのクラスの高さを定義する */
	.ac-container input:checked ~ article.ac-large {
		height: auto;
	}
}

.arrow {
	margin: 0 10px;
}

.title2 {
	max-width: 600px;
	height: auto;
	display: block;
}

.title2-sp {
	display: none;
}

@media only screen and (max-width: 480px) {
	.title2 {
		display: none;
	}
	
	.title2-sp {
		max-width: 300px;
		height: auto;
		display: block;
		margin-left: 10px;
	}
}

.imgsize {
	max-width: 750px;
	width: 80%;
	height: 100%;
}

@media only screen and (max-width: 480px) {
	.imgsize {
		max-width: 400px;
		width: 90%;
		height: 100%;
	}
}

@media only screen and (max-width: 767px) {
	.imgsize {
		max-width: 500px;
		width: 100%;
		height: 100%;
	}
}