@charset "UTF-8";
/* **********************************************
	製品ページ（一覧）スタイル
	
	スマホ(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: 50px 0px 0px;
	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: 70px 0px 0px;
		text-align: center;
		background: #fff;
		position: relative;
		z-index: 0;
	}
}
/* =================================================
	リストエリア　見出し
 ================================================= */
#wrapper .productlistArea {
	width: 100%;
	height: auto;
	display: block;
	margin: 0px auto;
	padding: 0px 0px 60px 0px;
}
/* タブレット */
@media screen and (min-width: 768px) and (max-width:960px) {
}
/* デスクトップ */
@media screen and (min-width: 960px) {
	#wrapper .productlistArea {
		max-width: 90vw;
		padding: 0px 0px 80px 0px;
	}
}
/* 見出し */
.productlistArea .mds {
	width: 90%;
	height: auto;
	display: block;
	margin: 0px auto;
	padding: 0px;
	text-align: center;
}
.productlistArea .mds h1 {
	width: 100%;
	height: auto;
	display: block;
	margin: 0px auto;
	padding: 0px;
	text-align: left;
	font-weight: 500;
	line-height: 1.45em;
	color: #231815;
}
body[lang="ja"] .productlistArea .mds h1 {
	font-size: 23px;
}

body[lang="en"] .productlistArea .mds h1, 
body[lang="en-US"] .productlistArea .mds h1 {
	font-size: 33px;
}
.productlistArea .mds h2 {
	width: 100%;
	height: auto;
	display: block;
	margin: 20px auto;
	padding: 0px;
	text-align: left;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.75em;
	color: #666;
}
.productlistArea .mds p {
	width: 100%;
	height: auto;
	display: block;
	margin: 20px auto;
	padding: 0px 0px;
	text-align: right;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.25em;
	color: #666;
	white-space: nowrap;
}
/* タブレット */
@media screen and (min-width: 768px) and (max-width:960px) {
}
/* デスクトップ */
@media screen and (min-width: 960px) {
	/* 全体は縦並び */
	.productlistArea .mds {
		display: flex;
		flex-direction: column; /* ← 縦並びに */
		align-items: stretch;
	}
	/* h1は幅いっぱい */
	.productlistArea .mds h1 {
		width: 100%;
		order: 1; /* 念のため明示 */
	}
	/* h2とpを横並びにするためのラップを疑似的に作る */
	.productlistArea .mds h2,
	.productlistArea .mds p {
		order: 2; /* h1のあとに並ぶように */
	}
	/* h2とpをまとめてflex表示にするトリック */
	.productlistArea .mds {
		display: flex;
		flex-direction: column;
	}
	.productlistArea .mds h2 {
		display: inline-block;
		width: 84%;
		vertical-align: bottom;
	}
	.productlistArea .mds p {
		display: inline-block;
		width: 15%;
		text-align: right;
		white-space: nowrap;
	}
	/* h2とpを横並びに見せるラップ効果 */
	.productlistArea .mds h2,
	.productlistArea .mds p {
		margin-top: 0;
	}
	.productlistArea .mds h2 + p {
		margin-left: auto;
	}
	.productlistArea .mds h2,
	.productlistArea .mds p {
		display: inline-block;
		vertical-align: top;
	}
	/* 疑似的に横並びブロック化 */
	.productlistArea .mds {
		display: block;
	}
	.productlistArea .mds h2,
	.productlistArea .mds p {
		display: inline-block;
		vertical-align: top;
		margin: 40px 0 0;
	}
	.productlistArea .mds h2 {
		width: 84%;
	}
	.productlistArea .mds p {
		width: 15%;
		text-align: right;
	}
}
/* =================================================
	リストエリア　並び替え部分
 ================================================= */
#wrapper .productlistArea .sort-link {
	width: 90%;
	height: auto;
	display: block;
	margin: 10px auto;
	padding: 0px;
	text-align: right;
}
.sort-link ul {
	width: auto;
	height: auto;
	display: inline-block;
	margin: 0px auto;
	padding: 0px;
	list-style: none;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.25em;
	color: #333;
	white-space: nowrap;
}
.sort-link ul li {
	width: auto;
	display: inline-block; 
	margin: 0px;
	padding: 0px;
	white-space: nowrap;
}
.sort-link ul li::after{
	content: "｜";
	margin: 0px -3px 0px 0px;
	color: #c5cbd3;
}
.sort-link ul li:last-child::after{
	content: "";
}
.sort-link ul li a {
	width: auto;
	height: auto;
	display: inline-block;
	margin: 0px auto;
	padding: 3px 5px 1px 4px;
	text-align: left;
	color: #1e22aa;
	text-decoration: none;
}
.sort-link ul li a:hover {
	text-decoration: underline;
}
.sort-link ul li a.current {
	color: #000;
	text-decoration: none;
	background: rgba(0,0,0,0.05);
}
/* タブレット */
@media screen and (min-width: 768px) and (max-width:960px) {
}
/* デスクトップ */
@media screen and (min-width: 960px) {
	#wrapper .productlistArea .sort-link {
		width: 100%;
		margin: 20px auto;
		padding: 15px 1em 15px;
		text-align: right;
		border-top: none;
		border-bottom: none;
	}
	.sort-link ul {
		width: auto;
		height: auto;
		display: inline-block;
		margin: 0px auto;
		padding: 0px;
		list-style: none;
		font-size: 14px;
		font-weight: 400;
		line-height: 1.25em;
		color: #333;
		white-space: nowrap;
	}
	.sort-link ul li {
		width: auto;
		display: inline-block; 
		margin: 0px;
		padding: 0px;
		white-space: nowrap;
	}
	.sort-link ul li::after{
		content: "｜";
		margin: 0px 3px;
		color: #999;
	}
	.sort-link ul li:last-child::after{
		content: "";
	}
	.sort-link ul li a {
		width: auto;
		height: auto;
		display: inline-block;
		margin: 0px auto;
		padding: 3px 5px 1px 4px;
		text-align: left;
		color: #1e22aa;
		text-decoration: none;
	}
	.sort-link ul li a:hover {
		text-decoration: underline;
	}
	.sort-link ul li a.current {
		color: #222;
		text-decoration: none;
		background: rgba(0,0,0,0.04);
	}
}
/* =================================================
	VK Search Filter Pro 部分
 ================================================= */
/* スマホ：デフォルトはcolumn */
.productlist-wrapper {
	display: flex;
	flex-direction: column; /* 上下に並べる */
	gap: 1rem; /* 必要に応じて */
}
.productlist-wrapper .filtersearch {
	width: 100%;
	margin: 0px auto;
}
.vkfs .vkfs__labels {
	gap: 0;
}
.vkfs__input-wrap label {
	text-align: left;	/* チェックボックス横のテキスト左寄せ */
}
.vkfs__label-name {
	margin: 10px 0px 0px;
	padding: 15px 0px 9px;
	font-size: 20px;
	line-height: 1em;
	text-align: left;
	border-top: 1px solid #c5cbd3;
}
.vkfs input[type=number], .vkfs input[type=text] {
	font-size: 16px;
}
.vkfs input[type=checkbox],
.vkfs input[type=radio] {
	top: 7px;	/* チェックボックスの位置 */
}
.vkfs__label-name-inner {
	padding: 0px 0px 10px 0px;
}
.vkfs__taxonomy .vkfs__label-name {
	margin-bottom: 0px!important;
}
.vkfs input[type=checkbox]:after { /* チェックマーク */
	border-bottom: 3px solid #1e22aa !important;
	border-right: 3px solid #1e22aa !important;
	width: 7px !important;
	height: 15px !important;
	top: -15% !important;
	left: 30% !important;
}
.vkfs .vkfs__labels {
	gap: 1rem;
}
.vkfs button[type=submit] {
	margin-top: calc(1rem + 0.5em);
	background-color: #1e22aa !important; /* 背景色 */
	color: #fff !important;               /* 文字色 */
	border: none !important; /* 枠線 */
	border-radius: 30px;                 /* 角丸 */
	padding: 0.5em 1.5em!important;                /* 余白 */
	font-size: 18px!important;                     /* 文字サイズ */
	cursor: pointer;
	transition: background-color 0.3s ease, color 0.3s ease;
}
/* 日本語ページ */
html[lang="ja"] .vkfs .btn[type=submit] {
}
/* 英語ページ */
html[lang="en-US"] .vkfs .btn[type=submit] {
	font-size: 22px!important;
	letter-spacing: .08em!important;
}
/* ホバー時 */
.vkfs button[type=submit]:hover {
	background-color: #b5b7fb !important;
}
.vkfs .vkfs__outer-wrap {
	flex-basis: 250px;
	min-width: 250px;
}
.vkfs__input-wrap li {
	line-height: 1.75em;
}
/* タブレット */
@media screen and (min-width: 768px) and (max-width: 959px) {
	.vkfs input[type=checkbox]:after { /* チェックマーク */
		border-bottom: 3px solid #1e22aa !important;
		border-right: 3px solid #1e22aa !important;
		width: 7px !important;
		height: 15px !important;
		top: -30% !important;
		left: 30% !important;
	}
}
/* デスクトップ */
@media screen and (min-width: 960px) {
	.productlist-wrapper {
		flex-direction: row; /* 左右に並べる */
		gap: 2rem;
	}
	.productlist-wrapper .filtersearch {
		width: auto;
		flex: 0 0 250px;
	}
	.productlist-wrapper .postlist {
		flex: 0 1 auto;
		align-self: flex-start;
	}
	.vkfs input[type=checkbox],
	.vkfs input[type=radio] {
		top: 9px;	/* チェックボックスの位置 */
	}
	.vkfs input[type=number], .vkfs input[type=text] {
		font-size: 1em;
	}
	.vkfs__label-name-inner {
		padding: 0px 0px 10px 0px;
	}
	.vkfs__taxonomy .vkfs__label-name {
		margin-bottom: 0px!important;
	}
	.vkfs input[type=checkbox]:after { /* チェックマーク */
		border-bottom: 3px solid #1e22aa !important;
		border-right: 3px solid #1e22aa !important;
		width: 7px !important;
		height: 15px !important;
		top: -30% !important;
		left: 30% !important;
	}
	.vkfs .vkfs__labels {
		gap: 1rem;
	}
	.vkfs button[type=submit] {
		margin-top: calc(1rem + 0.5em);
		background-color: #1e22aa !important; /* 背景色 */
		color: #fff !important;               /* 文字色 */
		border: none !important; /* 枠線 */
		border-radius: 30px;                 /* 角丸 */
		padding: 0.25em 1.5em!important;                /* 余白 */
		font-size: 18px!important;                     /* 文字サイズ */
		cursor: pointer;
		transition: background-color 0.3s ease, color 0.3s ease;
	}
	/* ホバー時 */
	.vkfs button[type=submit]:hover {
		background-color: #b5b7fb !important;
	}
	.vkfs .vkfs__outer-wrap {
		flex-basis: 250px;
		min-width: 250px;
	}
	.vkfs__input-wrap li {
		line-height: 1.75em;
	}
}
/* =================================================
	スマホ対応
 ================================================= */
/* 背面暗転 */
.filtersearch-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(197,203,211,0.75);
	opacity: 0;
	visibility: hidden;
	transition: 0.3s;
	z-index: 999;
}
.filtersearch-overlay.active {
	opacity: 1;
	visibility: visible;
}
.filtersearch-popup {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 90%;
	max-width: 500px;
	height: 60vh;
	background: #fff;
	padding: 1rem;
	border-radius: 8px;
	box-shadow: 0 0 20px rgba(0,0,0,0.3);
	z-index: 1000;
	opacity: 0;
	visibility: hidden;
	transition: 0.3s;
	display: flex;
	flex-direction: column;
}
.filtersearch-popup.active {
	opacity: 1;
	visibility: visible;
}
/* 絞り込むボタン */
.vkfs-toggle {
	width: 89%;
	display: block;
	margin: 10px auto;
	padding: 10px;
	font-size: 16px;
	line-height: 1em;
	color: #fff;
	cursor: pointer;
	background: #1e22aa;
}
.vkfs-content {
	flex: 1;             /* 残りの高さを全部使う */
	overflow-y: auto;    /* ここだけ縦スクロール */
	overflow-x: hidden;
}
/* 閉じるボタン */
.close-btn {
	position: absolute;   /* ポップアップの枠に対して固定 */
	top: 10px;
	right: 10px;
	padding: 7px 7px;
	font-size: 19px;
	line-height: 1em;
	cursor: pointer;
	background-color: #fff;
	box-shadow: 0 0 20px rgba(0,0,0,0.2);
	z-index: 1001;
	border-radius: 50%;
	visibility: hidden;
}
/* 英語用　閉じるボタン */
html[lang="en-US"] .close-btn {
	padding: 4px 8px 9px;
	font-size: 30px;
	font-weight: 300;
	line-height: 0.5em;
}
/* デスクトップ */
@media screen and (min-width: 960px) {
	.vkfs-toggle,
	.close-btn {
		display: none;
	}
	.filtersearch-popup {
		position: static; /* fixed → 通常フローに */
		transform: none;
		width: 100%;
		max-width: none;
		height: auto;
		box-shadow: none;
		opacity: 1 !important;
		visibility: visible !important;
		padding: 0px;
	}
}
/* =================================================
	リストエリア　一覧部分
 ================================================= */
/* ラインナップエリア */
.productlistArea .postlist {
	width: 95%;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
	gap: 0.5em;
	text-align: center;
	margin: 30px auto 0px;
	justify-items: center;
	align-items: start;
	position: relative;
}
.productlistArea .postlist:has(> p.list_zero) {
	grid-template-columns: none;
}
.productlistArea .postlist p.list_zero {
	width: 100%;
	display: block;
	grid-template-columns: none; /* リセットして単一カラムにする */
	text-align: center;
	margin: 0px auto;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.5em;
	color: #666;
}
.productlistArea .postlist::after {
	content: "";
	width: 100%;
	height: 1px;
	display: block;
	margin: auto;
	padding: 0px;
	border-bottom: 1px dotted #231815;
	position: absolute;
	top: auto;
	bottom: -20px;
	left: 0px;
	right: 0px;
}
.productlistArea .postlist a {
	width: 180px;
	margin: 0px 0px 20px;
	padding: 0px;
	text-decoration: none;
	transition: all 0.2s ease;
	position: relative;
	
}
.productlistArea .postlist a figure {
	width: 100%;
	height: auto;
	display: block;
	margin: 0px auto;
	padding: 0px;
	text-align: center;
	position: relative;
}
/* ラインナップ商品画像（ズーム） */
.productlistArea .postlist a figure .img-zoom {
	width: 160px;
	max-width: 160px;
	height: 160px;
	display: block;
	margin: 0px auto;
	padding: 10px;
	overflow: hidden;
	cursor: pointer;
	border-radius: 7px;
	border: 1px solid #efefef;
	-webkit-box-shadow: 0px 2px 5px rgba(0,0,0,0.1);
	box-shadow: 0px 2px 5px rgba(0,0,0,0.1);
}
.productlistArea .postlist a figure .img-zoom img {
	width: 140px;
	height: auto;
	transition: transform 0.3s ease;
}
.productlistArea .postlist a:hover figure .img-zoom img {
	transform: scale(1.1);
}
/* ラインナップのテキスト */
.productlistArea .postlist a figure figcaption {
	width: 100%;
	display:block;
	margin: 5px auto 0px;
	padding: 0px;
	text-align: center;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5em;
	color: #231815;
	vertical-align: top;
	transform: scale(0.9);
	transform-origin: top;	/* 上揃え */
}
/* 古いスマホ */
@media screen and (max-width:360px) {
	.productlistArea .postlist a {
		width: 160px;
		margin: 0px 0px 20px;
		padding: 0px;
		text-decoration: none;
		transition: all 0.2s ease;
		position: relative;
	}
	/* ラインナップ商品画像（ズーム） */
	.productlistArea .postlist a figure .img-zoom {
		width: 140px;
		max-width: 140px;
		height: 140px;
		display: block;
		margin: 0px auto;
		padding: 10px;
		overflow: hidden;
		cursor: pointer;
		border-radius: 7px;
		border: 1px solid #efefef;
		-webkit-box-shadow: 0px 2px 5px rgba(0,0,0,0.1);
		box-shadow: 0px 2px 5px rgba(0,0,0,0.1);
	}
	.productlistArea .postlist a figure .img-zoom img {
		width: 120px;
		height: auto;
		transition: transform 0.3s ease;
	}
}
/* タブレット */
@media screen and (min-width: 768px) and (max-width:960px) {
}
/* デスクトップ */
@media screen and (min-width: 960px) {
	/* Safariのみ */
	_::-webkit-full-page-media, _:future, :root .productlistArea .postlist a::after {
		border-bottom: 2px dotted #231815;
	}
	/* ラインナップエリア */
	.productlistArea .postlist {
		width: 100%;
		height: auto;
		display: grid;
		grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
		gap: 0.5em;
		text-align: center;
		margin: 0px auto 20px;
		justify-items: center;
		align-items: start;
		position: relative;
	}
	.productlistArea .postlist a {
		width: 280px;
		text-decoration: none;
		transition: all 0.2s ease;
	}
	.productlistArea .postlist a figure {
		width: 100%;
		height: auto;
		display: block;
		margin: 0px auto 40px;
		padding: 0px;
		text-align: center;
		position: relative;
	}
	/* ラインナップ商品画像（ズーム） */
	.productlistArea .postlist a figure .img-zoom {
		width: 250px;
		max-width: 250px;
		height: 250px;
		display: block;
		margin: 0px auto;
		padding: 20px;
		overflow: hidden;
		cursor: pointer;
		border-radius: 7px;
		border: 1px solid #efefef;
		-webkit-box-shadow: 0px 2px 5px rgba(0,0,0,0.1);
		box-shadow: 0px 2px 5px rgba(0,0,0,0.1);
	}
	.productlistArea .postlist a figure .img-zoom img {
		width: 210px;
		height: auto;
		transition: transform 0.3s ease;
	}
	.productlistArea .postlist a:hover figure .img-zoom img {
		transform: scale(1.1);
	}
	/* ラインナップのテキスト */
	.productlistArea .postlist a figure figcaption {
		margin: 10px auto 0px;
		font-size: 14px;
		font-weight: 400;
		line-height: 1.5em;
		color: #231815;
		transform: none;
	}
}
/* =================================================
	NEWあいこん
 ================================================= */
.icnnew-content {
	position: absolute;
	top: -6px;
	right: 6px;
	width: 62px;
	height: 64px;
	overflow: hidden;
	z-index: 3;
}
.icnnew {
	display: inline-block;
	position: absolute;
	padding: 4px 3px 4px 0px;
	left: -16px;
	top: 15px;
	width: 112px;
	text-align: center;
	font-size: 15px;
	font-weight: 600;
	line-height: 14px;
	background: #ffa520;
	color: #fff;
	letter-spacing: 0.05em;
	transform: rotate(45deg);
	box-shadow: 0 1.4px 3.5px rgba(0, 0, 0, 0.2);
}
.icnnew:before,
.icnnew:after {
	position: absolute;
	content: "";
	border-top: 4px solid #b2751b;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	bottom: -4px;
}
.icnnew:before {
	left: 10px;
}
.icnnew:after {
	right: 12.6px;
}
/* タブレット */
@media screen and (min-width: 768px) and (max-width:960px) {
}
/* デスクトップ */
@media screen and (min-width: 960px) {
	.icnnew-content {
		position: absolute;
		top: -6px;
		right: 10px;
		width: 62px;
		height: 64px;
		overflow: hidden;
		z-index: 3;
	}
	.icnnew {
		display: inline-block;
		position: absolute;
		padding: 4px 3px 4px 0px;
		left: -16px;
		top: 15px;
		width: 112px;
		text-align: center;
		font-size: 15px;
		font-weight: 600;
		line-height: 14px;
		background: #ffa520;
		color: #fff;
		letter-spacing: 0.05em;
		transform: rotate(45deg);
		box-shadow: 0 1.4px 3.5px rgba(0, 0, 0, 0.2);
	}
	.icnnew:before,
	.icnnew:after {
		position: absolute;
		content: "";
		border-top: 4px solid #b2751b;
		border-left: 4px solid transparent;
		border-right: 4px solid transparent;
		bottom: -4px;
	}
	.icnnew:before {
		left: 10px;
	}
	.icnnew:after {
		right: 12.6px;
	}
}
/* =================================================
	サイドバナーエリア
 ================================================= */
#wrapper .sidebnrArea {
	width: 100%;
	max-width: 310px;
	height: auto;
	display: block;
	margin: 0px auto 0px;
	padding: 0px 0px 40px;
}
.sidebnrArea .bnrlink {
	width: 100%;
	height: auto;
	display: block;
	margin: 0px auto 20px;
	padding: 0px;
}
.sidebnrArea .bnrlink a {
	width: 100%;
	height: auto;
	display: block;
	margin: 0px auto;
	padding: 0px;
	transition: all 0.3s ease;
}
.sidebnrArea .bnrlink a:hover {
	opacity: 0.5;
}
.sidebnrArea .bnrlink a img {
	width: 100%;
	height: auto;
	vertical-align: top;
}
/* タブレット */
@media screen and (min-width: 768px) and (max-width:960px) {
}
/* デスクトップ */
@media screen and (min-width: 960px) {
	#wrapper .sidebnrArea {
		width: 100%;
		max-width: 660px;
		height: auto;
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
		column-gap: 40px;
		margin: 0px auto 0px;
		padding: 0px 0px 60px;
	}
	.sidebnrArea .bnrlink {
		width: 310px;
		height: auto;
		display: block;
		margin: 0px auto 0px;
		padding: 0px;
	}
}