/* アイキャッチ画像 */
#eyecatch-img-area {
	height: 160px;
	background-image: url(../img/goods-eyecatch.jpg);
	background-position: top;
	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;
}

.contents-area h2 {
	margin: 20px auto 10px;
	padding: 3px 0px 3px 10px;
	border-left: 5px #d32432 solid;
	font-size: 30px;
	font-weight: normal;
	line-height: 1em;
}

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

/* オリジナルグッズ フレックスエリア */
.contents-area .flex-area {
	display: flex;
	align-items: center;
	margin: 10px 0px;
	padding: 20px;
	background-color: #f2f2f2;
}

/* オリジナルグッズ 画像エリア */
.contents-area .flex-area .goods-img-area {
	flex: 1;
}

/* オリジナルグッズ 画像エリア */
.contents-area .flex-area .goods-img-area .img-box {
	width: 256px;
	height: 144px;
}

/* オリジナルグッズ 画像エリア */
.contents-area .flex-area .goods-img-area .img-box img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/* オリジナルグッズ 画像エリア */
.contents-area .flex-area .goods-img-area img {
	margin: 0 auto;
}

/* オリジナルグッズ 画像エリア */
.contents-area .flex-area .goods-explain-area {
	flex: 3;
}

.contents-area .goods-table {
	margin-left: 20px;
}


.contents-area .goods-table,
.contents-area .goods-table tr,
.contents-area .goods-table th,
.contents-area .goods-table td {
	border: none;
	background-color: #f2f2f2;
}

.contents-area .goods-table th {
	width: 9em;
	color: #253d77;
	font-weight: bold;
}

.contents-area .goods-explain-area .goods-explain {
	vertical-align: top;
}

/* タブレットレイアウト */
@media screen and (min-width:768px) and (max-width:1049px) {}

/* スマートフォンレイアウト */
@media screen and (max-width: 767px) {
	/* オリジナルグッズ フレックスエリア */
	.contents-area .flex-area {
		flex-direction: column;
		padding: 15px 0px;
	}
	/* オリジナルグッズ 画像エリア */
	.contents-area .flex-area .goods-img-area .img-box {
		margin: 0px auto 10px;
	}
}