@charset "UTF-8";
/* **********************************************
	WEBカタログスタイル
	
	スマホ(max-width: 768px)
	タブレット（min-width: 768px）and(max-width:960px)
	PC（min-width: 960px）
	
 ********************************************** */
/* タブレット */
@media screen and (min-width: 768px) and (max-width:960px) {
}
/* デスクトップ */
@media screen and (min-width: 960px) {
}
/* =================================================
	本文エリア
 ================================================= */
#wrapper .contents {
	width: 100%;
	height: auto;
	display: block;
	margin: 0px auto;
	padding: 40px 0px 1px;
	text-align: center;
	background: #fff;
	position: relative;
	z-index: 0;
}
/* タブレット */
@media screen and (min-width: 768px) and (max-width:960px) {
}
/* デスクトップ */
@media screen and (min-width: 960px) {
	#wrapper .contents {
		width: 100%;
		height: auto;
		display: block;
		margin: 0px auto;
		padding: 80px 0px 1px;
		text-align: center;
		background: #fff;
		position: relative;
		z-index: 0;
	}
}
/* =================================================
	CATALOGエリア
 ================================================= */
#wrapper .catalogArea {
	width: 100%;
	height: auto;
	display: block;
	margin: 0px auto;
	padding: 0px 0px 70px 0px;
}
/* タブレット */
@media screen and (min-width: 768px) and (max-width:960px) {
}
/* デスクトップ */
@media screen and (min-width: 960px) {
	#wrapper .catalogArea {
		max-width: 75%;
		margin: -40px auto 0px;
	}
}
/* 見出し */
.catalogArea .mds {
	width: 100%;
	height: auto;
	display: block;
	margin: 0px auto;
	padding: 0px;
	text-align: center;
}
.catalogArea .mds h1 {
	width: 100%;
	height: auto;
	display: block;
	margin: 0px auto;
	padding: 0px 0px 20px;
	text-align: center;
	font-size: 22px;
	font-weight: 500;
	line-height: 1em;
	color: #231815;
}
/* 日本語ページ */
html[lang="ja"] .catalogArea .mds h1 {
	letter-spacing: 0.0125em;
}
/* 英語ページ */
html[lang="en-US"] .catalogArea .mds h1 {
	letter-spacing: 0;
}
/* タブレット */
@media screen and (min-width: 768px) and (max-width:960px) {
}
/* デスクトップ */
@media screen and (min-width: 960px) {
	/* 見出し */
	.catalogArea .mds h1 {
		width: 100%;
		height: auto;
		display: block;
		margin: 0px auto;
		padding: 0px 0px 20px;
		text-align: center;
		font-size: 26px;
		font-weight: 500;
		line-height: 1em;
		color: #231815;
	}
	/* 日本語ページ */
	html[lang="ja"] .catalogArea .mds h1 {
		letter-spacing: 0.0125em;
	}
	/* 英語ページ */
	html[lang="en-US"] .catalogArea .mds h1 {
		letter-spacing: 0;
	}
}
/* =================================================
	DearFlip側サムネ、目次テキスト変更
 ================================================= */
/* 元の英語を消す */
.df-thumb-container .df-sidemenu-title {
	font-size: 0;
	position: relative;
}
.df-outline-container .df-sidemenu-title {
	font-size: 0;
	position: relative;
}
/* 日本語を表示 */
.df-thumb-container .df-sidemenu-title::before {
	content: "カタログ ページ一覧";
	font-size: 14px; /* 元のサイズに合わせて調整 */
	font-weight: 600;
}
.df-outline-container .df-sidemenu-title::before {
	content: "カタログ 目次";
	font-size: 14px; /* 元のサイズに合わせて調整 */
	font-weight: 600;
}
/* 目次の左寄せ */
.df-outline-item a {
	text-align: left;
}