/* アイキャッチ画像 */
#eyecatch-img-area {
	height: 160px;
	background-image: url(../img/exinfo-eyecatch.jpg);
	background-position: center;
	display: flex;
	/*左右中央揃え*/
	justify-content: center;
	/*上下中央揃え*/
	align-items: center;
}

/* 展示情報ページ h1 */
#eyecatch-img-area h1 {
	margin: 0px;
	color: #ffffff;
	font-size: 35px;
	font-weight: bold;
	text-shadow: 0px 5px 8px #000;
}

.book-theme-area {
	background-color: #f2f2f2;
	padding: 15px 30px;
	margin: 20px 0px;
}

/* bタグの書式無効化 */
.contents-area b {
	text-decoration: none;
	font-weight: 400;
}

/* h3のフォント修飾 */
.contents-area h3.title {
	margin: 20px auto 10px;
	padding: 0px 0px 12px 0px;
	border-bottom: 5px #b3b3b3 solid;
	font-size: 24px;
	font-weight: bold;
	text-decoration: none;
}

/* h3内のbタグのみ活性化 */
.contents-area h3.title b {
	font-weight: bold;
}

/* 目次・PDFエリア */
.contents-area .flex-area {
	display: flex;
	align-items: center;
	margin: 10px 0px;
}

/* 目次・PDFエリア */
.contents-area .flex-book-area {
	display: flex;
	align-items: center;
}

/* リンクの無効化 */
.contents-area .title a {
	text-decoration: none;
	color: #333333;
	cursor: default;
}

.contents-area .blue-text {
	color: #253d77;
	font-weight: bold;
}

.contents-area .pdf-button {
	margin: 7px 0px;
	min-width: 80px;
}

.contents-area .pdf-button a {
	margin-left: 10px;
	padding: 5px 10px;
	color: #ffffff;
	background: #333333;
	border: 1px solid #333333;
	border-radius: 4px;
	box-shadow: 0 1px 3px #BBB;
	font-size: 14px;
	text-shadow: none;
}

.contents-area .pdf-button a:hover {
	opacity: 0.9;
	text-decoration: none;
}

/* 検索結果が出てこなかった場合 */
.contents-area .not-found-search-text {
	margin: 30px 0px;
	font-size: 20px;
	font-weight: bold;
}

/* タブレットレイアウト */
@media screen and (min-width:768px) and (max-width:1049px) {
	/* 目次・PDFエリア */
	.contents-area .flex-book-area {
		display: flex;
		align-items: center;
	}

	/* 目次・PDFエリア */
	.contents-area .flex-area .title {
		flex: 4;
	}

	.contents-area .flex-area .pdf-button {
		flex: 1;
	}
}

/* スマートフォンレイアウト */
@media screen and (max-width: 767px) {
	.book-theme-area {
		padding: 15px 10px;
	}

	/* 目次・PDFエリア */
	.contents-area .flex-book-area {
		display: flex;
		align-items: center;
	}

	/* 目次・PDFエリア */
	.contents-area .flex-area .title {
		flex: 3;
	}

	.contents-area .flex-area .pdf-button {
		flex: 1;
	}

}