@charset "UTF-8";

.lead {
	text-align: center;
	margin: 40px 0;
}

.prod {
	position: relative;
	padding-bottom: 60px;
}

.prod.-pb0 {
	padding-bottom: 0;
}

.prod_head {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
}

.prod_head_col {
}

.prod_head_col.-left {
}

.prod_head_col.-right {
}

.prod_count {
	display: inline-block;
}

.prod_count dt,
.prod_count dd {
	display: inline;
}

.prod_count dt {
}

.prod_count dd {
}

.prod_head_sort {
	overflow: hidden;
	display: inline-block;
	padding: 0;
	line-height: 1;
	box-sizing: border-box;
	padding-right: 30px;
	position: relative;
	cursor: pointer;
	width: 200px;
	border-radius: 5px;
	vertical-align: middle;
}

.prod_head_sort:after {
	font-family: icomoon;
	content: "\e901";
	font-size: 10px;
	color: #E40011;
	position: absolute;
	right: 10px;
	top: 50%;
	margin-top: -0.5em;
}

.prod_head_sort select {
	outline-style: none;
	width: 130%;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	border-radius: 0;
	border: 0;
	margin: 0;
	padding: 0 10px;
	vertical-align: middle;
	font-size: 14px;
	box-sizing: content-box;
	background: #f7f3f0;
	cursor: pointer;
	height: 30px;
	line-height: 30px;
}

.prod_head_filter {
	display: inline-block;
}

.prod_head_filter button {
	position: relative;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	border: 0;
	margin: 0;
	font-size: 14px;
	cursor: pointer;
	height: 30px;
	line-height: 30px;
	width: 150px;
	text-align: left;
	padding: 0 10px;
	border-radius: 5px;
	vertical-align: middle;
	-webkit-font-smoothing: auto;
}

.prod_head_filter button:after {
	font-family: icomoon;
	position: absolute;
	right: 10px;
	font-size: 10px;
	font-weight: normal;
}

.prod_head_filter button.-filter {
	background: #f7f3f0;
}

.prod_head_filter button.-filter:after {
	content: "\e90d";
	color: #E40011;
}

.prod_head_filter button.-close {
	background: #E40011;
	color: #fff;
	display: none;
}

.prod_head_filter button.-close:after {
	content: "\e90e";
	color: #fff;
}

.prod_sec {
	margin-top: 60px;
}

.prod_sec:first-child {
	margin-top: 0;
}

.prod_sec_ttl {
	font-size: 22px;
	line-height: 1.4;
	background: #F7F3F0;
	border-left: 3px solid #b29350;
	padding: 10px 20px;
	margin-bottom: 20px;
}

.-ec-list .prod_sec_ttl {
	border-left: 3px solid #E40011;
}

.prod_sec_cnt {
}

.prod_result {
	margin-top: 15px;
	padding: 15px 0;
	border-top: 1px dotted #ccc;
}

.prod_list {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
}

.prod_item {
	display: inline-block;
	vertical-align: top;
	width: 23.5%;
	margin-left: 2%;
	margin-top: 2%;
}

.prod_list.-same_height {
	display: flex;
	/* 親要素をフレックスコンテナにする */
	flex-wrap: wrap;
	/* アイテムが収まらない場合に折り返す */
	/* flex-direction: row; はデフォルトなので不要ですが、明示してもOK */
	gap: 2%;
	/* prod_item間のギャップを定義。margin-left/topの代わりに利用 */
	padding-top: 2%;
	/* prod_list全体の開始位置調整 */
}

.prod_list.-same_height .prod_item {
	/* display: inline-block; と vertical-align: top; は不要 */
	/* width: 23.5%; と margin-left/top の代わりに flex を使用 */
	flex: 0 0 23.5%;
	/* flex-grow: 0, flex-shrink: 0, flex-basis: 23.5% */
	/* gapを使う場合、各アイテムの幅とgapでレイアウトを調整する */
	box-sizing: border-box;
	/* paddingやborderをwidthに含める */

	display: flex;
	/* prod_item自体をフレックスコンテナにする */
	flex-direction: column;
	/* 画像とコンテンツを縦に並べる */
	text-decoration: none;
	/* リンクの下線削除 */
	color: inherit;
	/* テキストの色継承 */
}

.prod_list.-same_height .prod_item_img {
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	/* border: 1px solid #ccc; /* prod_itemに移動したので不要 */
	backface-visibility: hidden;
	flex-shrink: 0;
	/* 画像が縮まないようにする */
}

.prod_list.-same_height .prod_item_img:before {
	content: "";
	display: block;
	padding-top: 77.255%;
	/* 画像のアスペクト比を維持 */
}

.prod_list.-same_height .prod_item_cnt {
	display: flex;
	/* ★ここが重要！ prod_item_cntもフレックスコンテナにする */
	flex-direction: column;
	/* 孫要素（タイトル、ディスクリプション、価格）を縦に並べる */
	flex-grow: 1;
	/* prod_item_cntがprod_item内で利用可能な高さを埋める */
	padding: 10px;
	/* 上下左右のパディングを統一 */
}

.prod_item_ttl {
	line-height: 1.4;
	font-size: 18px;
	color: #B29350;
	font-weight: bold;
	margin-bottom: 5px;
}

/* ★追加：商品説明のスタイル */
.prod_list.-same_height .prod_item_disc {
	flex-grow: 1;
	/* ディスクリプションが利用可能な高さを埋める */
	margin-bottom: 10px;
	/* 価格との間にスペース */
	line-height: 1.5;
	overflow: hidden;
	/* はみ出したテキストを隠す */
	text-overflow: ellipsis;
	/* ...で省略 */
	display: -webkit-box;
	/* 複数行省略のための設定 */
	-webkit-box-orient: vertical;
}

.prod_list.-same_height .prod_item_price {
	margin-top: auto;
	/* ★重要！価格を常に下部に揃える */
}

.prod_item img {
	transition: opacity .3s;
}

.prod_item:hover img {
	opacity: 0.7;
}

.prod_item_img {
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	border: 1px solid #ccc;
	backface-visibility: hidden;
}

.prod_item_img:before {
	content: "";
	display: block;
	padding-top: 77.255%;
}

.prod_item_cnt {
	padding: 10px 0;
}

.prod_item_ttl {
	line-height: 1.4;
	font-size: 18px;
	color: #B29350;
	font-weight: bold;
	margin-bottom: 5px;
}

.prod_item_price {
	color: #E60012;
}

.prod_item_price.-end {
	text-align: right;
	color: #292929;
}

.prod_item_price.-end em {
	font-weight: bold;
}

.prod_item_price em {
	font-size: 16px;
}

.prod_item_price small {
	font-size: 13px;
	margin-left: 0.5em;
}

.prod_item_disc {
}

.prod_gyomu {
	border: 1px solid #C8B48C;
	padding: 40px;
	display: table;
	width: 100%;
	margin-top: 60px;
}

.prod_gyomu_ttl {
	font-size: 22px;
	color: #B29350;
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	white-space: nowrap;
}

.prod_gyomu_text {
	display: table-cell;
	vertical-align: middle;
	padding-left: 40px;
}

.prod_btn {
	text-align: center;
	margin-top: 40px;
	display: flex;
	justify-content: center;
}

.prod_btn > a {
	font-size: 16px;
	line-height: 1;
	display: inline-block;
	border: 1px solid #E40011;
	width: 100%;
	max-width: 40%;
	padding: 20px 0;
	margin-left: 2%;
}

.prod_btn > a:hover {
	background: #E40011;
	color: #fff;
}

.prod_btn > a:first-child {
	margin-left: 0;
}

.prod_btn > a em {
	display: inline-block;
	position: relative;
	padding-right: 30px;
}

.prod_btn > a em:after {
	font-family: icomoon;
	content: "\e903";
	color: #E40011;
	position: absolute;
	right: 0;
	top: 50%;
	margin-top: -0.5em;
	transition: color .3s;
}

.prod_btn > a:hover em:after {
	color: #FFF;
}

.contact {
	line-height: 1;
	border-top: 1px solid #ddd;
	padding: 60px 0;
	text-align: center;
}

.contact_ttl {
	font-size: 22px;
}

.contact_tel {
	margin-top: 20px;
	text-align: center;
	line-height: 1.3;
}

.contact_tel > a {
	display: inline-block;
	color: #E60012;
	font-size: 40px;
	font-family: 'Quicksand', sans-serif;
	font-weight: bold;
	position: relative;
	padding-left: 35px;
}

.contact_tel > a:before {
	font-family: icomoon;
	content: "\e910";
	font-weight: normal;
	position: absolute;
	left: 0;
	top: 57%;
	margin-top: -0.5em;
	line-height: 1;
	font-size: 36px;
}

.contact_open {
	text-align: center;
	margin-top: 15px;
}

.contact_open dt,
.contact_open dd {
	display: inline;
}

.contact_open dt {
}

.contact_open dd {
}

.contact_mail {
	margin-top: 30px;
}

.contact_mail > a {
	display: inline-block;
	width: 300px;
	padding: 20px;
	color: #FFF;
	background: #E40011;
	border-radius: 5px;
	font-size: 16px;
}

.contact_mail > a:hover {
	opacity: 0.7;
}

.contact_mail > a em {
	display: inline-block;
	position: relative;
	padding-left: 40px;
	font-weight: bold;
}

.contact_mail > a em:before {
	font-family: icomoon;
	content: "\e911";
	position: absolute;
	left: 0;
	top: 50%;
	font-size: 20px;
	font-weight: normal;
	margin-top: -0.5em;
}

.filter {
	background: #f7f3f0;
	padding: 40px;
	border-radius: 5px;
	box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3);
	z-index: 10;
	position: absolute;
	width: 100%;
	display: none;
}

.filter input[type="text"] {
	border: none;
	box-shadow: none;
	font-size: 16px;
	padding: 10px;
}

.filter input[type="text"].-price {
	text-align: right;
	padding-right: 35px;
}

.filter input[type="text"].-key {
	width: 100%;
}

.filter_cnt {
}

.filter_dl {
	display: table;
	width: 100%;
	border-bottom: 1px solid #ccc;
	padding: 15px 0;
}

.filter_dl dt,
.filter_dl dd {
	display: table-cell;
}

.filter_dl dt {
	width: 8em;
}

.filter_dl dd {
}

.filter_dl dd label {
	display: inline-block;
	font-size: 14px;
	vertical-align: middle;
	margin: 10px 10px 0 0;
}

.filter_dl dd label.-price {
	position: relative;
	margin: 0;
}

.filter_dl dd label.-price:after {
	content: "円";
	display: inline-block;
	position: absolute;
	right: 10px;
	top: 50%;
	margin-top: -0.5em;
	line-height: 1;
}

.filter_dl dd span.-kara {
	display: inline-block;
	margin: 0 10px;
}

.filter_cat {
	font-size: 0;
	margin-top: -10px;
}

.filter_cat > label {
	cursor: pointer;
}

.filter_cat > label input {
	display: none;
}

.filter_cat > label em {
	display: block;
	background: #FFF;
	padding: 15px;
	line-height: 1;
}

.filter_cat > label input:checked + em {
	background: #dddddd;
}

.filter_btn {
	text-align: center;
	margin-top: 15px;
	font-size: 0;
}

.filter_btn > button {
	color: #fff;
	background: #666;
	font-size: 18px;
	line-height: 1;
	border: none;
	border-radius: 5px;
	padding: 20px 30px;
	cursor: pointer;
}

.filter_btn > button em {
	display: inline-block;
	position: relative;
	font-weight: bold;
}

.filter_btn > button.-submit em {
	padding-left: 30px;
}

.filter_btn > button.-submit {
	background: #E40011;
}

.filter_btn > button.-reset {
	margin-left: 20px;
}

.filter_btn > button em:before {
	font-family: icomoon;
	position: absolute;
	left: 0;
	top: 50%;
	line-height: 1;
	margin-top: -0.5em;
	font-weight: normal;
}

.filter_btn > button.-submit em:before {
	content: "\e90f";
	font-size: 20px;
}

.filter_btn > button.-reset em:before {
}

/* for Tablet */
@media screen and (max-width:1030px) {
}

@media screen and (min-width:641px) {
	.prod_item:nth-child(4n+1) {
		margin-left: 0;
	}

	.prod_item:nth-child(-n+4) {
		margin-top: 0;
	}

}

/* for SP */
@media screen and (max-width:640px) {
	.lead {
		margin: 20px 0;
		text-align: left;
	}

	.prod {
		padding-bottom: 40px;
	}

	.prod.-pb0 {
	}

	.prod_head {
		display: block;
	}

	.prod_head_col {
	}

	.prod_head_col.-left {
	}

	.prod_head_col.-right {
		margin-top: 10px;
		display: flex;
		justify-content: space-between;
	}

	.prod_count {
	}

	.prod_count dt,
	.prod_count dd {
	}

	.prod_count dt {
	}

	.prod_count dd {
	}

	.prod_head_sort {
		width: 49%;
	}

	.prod_head_sort:after {
	}

	.prod_head_sort select {
	}

	.prod_head_filter {
		width: 49%;
	}

	.prod_head_filter button {
		width: 100%;
	}

	.prod_head_filter button:after {
	}

	.prod_head_filter button.-filter {
	}

	.prod_head_filter button.-filter:after {
	}

	.prod_head_filter button.-close {
	}

	.prod_head_filter button.-close:after {
	}

	.prod_sec {
		margin-top: 40px;
	}

	.prod_sec:first-child {
	}

	.prod_sec_ttl {
		font-size: 18px;
		padding: 10px 15px;
	}

	.prod_sec_cnt {
	}

	.prod_result {
	}

	.prod_list {
	}

	.prod_item {
		width: 48.5%;
		margin-left: 3%;
		margin-top: 20px;
	}

	.prod_item:nth-child(2n+1) {
		margin-left: 0;
	}

	.prod_item:nth-child(-n+2) {
		margin-top: 0;
	}

	.prod_item img {
	}

	.prod_item:hover img {
	}

	.prod_item_img {
	}

	.prod_item_cnt {
	}

	.prod_item_ttl {
		font-size: 14px;
	}

	.prod_item_price {
	}

	.prod_item_price em {
	}

	.prod_item_price small {
	}

	.prod_item_disc {
		font-size: 13px;
	}

	.prod_list.-same_height {
	}

	.prod_list.-same_height .prod_item {
		flex: 0 0 48.5%;
		margin-left: 0;
	}

	.prod_gyomu {
		margin-top: 30px;
		padding: 20px;
		display: block;
	}

	.prod_gyomu_ttl {
		display: block;
		font-size: 18px;
		font-style: normal;
	}

	.prod_gyomu_text {
		padding-left: 0;
		display: block;
		margin-top: 10px;
	}

	.prod_btn {
		display: block;
		margin-top: 40px;
	}

	.prod_btn > a {
		width: 100%;
		max-width: 360px;
		margin-left: 0;
		margin-top: 15px;
	}

	.prod_btn > a:hover {
	}

	.prod_btn > a:first-child {
		margin-top: 0;
	}

	.prod_btn > a em {
	}

	.prod_btn > a em:after {
	}

	.prod_btn > a:hover em:after {
	}

	.contact {
		padding: 40px 0;
	}

	.contact_ttl {
		font-size: 16px;
	}

	.contact_tel {
	}

	.contact_tel > a {
		font-size: 28px;
		padding-left: 30px;
	}

	.contact_tel > a:before {
		font-size: 28px;
	}

	.contact_open {
		font-size: 13px;
	}

	.contact_open dt,
	.contact_open dd {
	}

	.contact_open dt {
	}

	.contact_open dd {
	}

	.contact_mail {
	}

	.contact_mail > a {
	}

	.contact_mail > a:hover {
	}

	.contact_mail > a em {
	}

	.contact_mail > a em:before {
	}

	.filter {
		padding: 5px 15px 15px;
	}

	.filter input[type="text"] {
	}

	.filter input[type="text"].-price {
		width: 7em;
	}

	.filter input[type="text"].-key {
	}

	.filter_cnt {
	}

	.filter_dl {
		display: block;
	}

	.filter_dl dt,
	.filter_dl dd {
		display: block;
		width: 100%;
	}

	.filter_dl dt {
		font-weight: bold;
		margin-bottom: 10px;
	}

	.filter_dl dd {
	}

	.filter_dl dd label {
	}

	.filter_dl dd span.-atari {
		margin-bottom: 10px;
		display: block;
	}

	.filter_dl dd span.-kara {
		display: inline-block;
		padding: 0 5px;
	}

	.filter_dl dd label.-price {
		margin-top: 0;
		vertical-align: middle;
		margin-right: 0;
	}

	.filter_cat {
	}

	.filter_cat > label {
	}

	.filter_cat > label input {
	}

	.filter_cat > label em {
	}

	.filter_cat > label input:checked + em {
	}

	.filter_btn {
		display: flex;
		justify-content: space-between;
	}

	.filter_btn > button {
		font-size: 16px;
		padding: 20px 15px;
	}

	.filter_btn > button em {
	}

	.filter_btn > button.-submit em {
	}

	.filter_btn > button.-submit {
		width: 60%;
	}

	.filter_btn > button.-reset {
		margin-left: 0;
		width: 36%;
	}

	.filter_btn > button em:before {
	}

	.filter_btn > button.-submit em:before {
	}

	.filter_btn > button.-reset em:before {
	}

}

/* for Print */
@media print {
}
