@charset "utf-8";
/* CSS Document */
/* パソコン用CSS */





/* メディアクエリサンプル */
/* ===============================
	device setting
 =============================== */
@media screen and (min-width: 1281px) {
  // 画面幅が1281px以上（PC専用スタイル）
}
@media screen and (max-width: 1280px) {
  // 画面幅が1280px以下（タブレット・スマホ共通スタイル）
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  // 画面幅が768px～1280px（タブレット専用スタイル）
}
@media screen and (max-width: 767px) {
  // 画面幅が767px以下（スマートフォン専用スタイル）
}
@media screen and (max-width: 414px) {
  // 画面幅が414px以下（スマートフォン縦向き専用スタイル）
}

/* 印刷用スタイル */
/* ===============================
	print setting
 =============================== */
@media print {
	.printNl {
		page-break-before: always;
	}
}

/* ===============================
reset
 =============================== */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video { 
	margin: 0; 
	padding: 0; 
	border: 0; 
	font-style: normal; 
	font-size: 100%; 
	vertical-align:baseline;
}
article, details, figcaption, footer, header, nav, section { 
	display: block;
}
html{ 
	overflow-y: scroll;
}
a, a:visited, a:hover, a:active, a:focus { 
	text-decoration: none;
}
input, textarea { 
	margin: 0; padding: 0;
}
ol, ul{ 
	list-style:none;
}

/* ===============================
全体
 =============================== */
* { 
	margin: 0; 
	padding: 0; 
	font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	-webkit-text-size-adjust: 100%;
	line-height: 1.4em; 
	letter-spacing: 0.02em;
}
body {
	font-size: 1.2em;
	color: #1a1a1a;
}
a {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0); /* スマホのハイライトデザインを無効にする */
}
a:focus {
	outline: none;
}
img { 
	vertical-align: bottom;
}
.mo a img {
	background-color: rgba(255, 255, 255, .01); /* マウスオーバー要素のバグ対応 */
}

/* ===============================
Clearfix
 =============================== */
.Clearfix,
#Clearfix {
	display: block;/*min-height: 1%;*/
}
.Clearfix:after,
#Clearfix:after {
	clear: both;
	content:".";
	display: block;
	height: 0;
	visibility: hidden;
}



/* =============================================================
▼　商品一覧
 ============================================================ */
.setlistbox {
	margin: 0 auto;
	padding:  0;
	width: 750px;
}
.setlistboxin {
	margin: 0 20px;
	padding:  0;
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	align-items: flex-start;
	align-content: flex-start;
}
.setlistboxin h2 {
	margin: 0 auto 2.0em auto;
	padding:  0;
	width: auto;
}
.setlistboxin dl {
	width: 22%;
	margin : 0 auto;
}
.setlistboxin dl dt img {
	 width: 100%;
	margin : 0 auto;	
}
.setlistboxin dl dd p {
	padding: 0.4em 0.4em 0.2em 0.4em;
	margin : 0 auto;
	font-size: 0.8rem;
	letter-spacing: 0.05em;
	line-height: 1.2em;
}
.setlistboxin dl dd h3 {
	padding: 0 0.4em 0.2em 0.4em;
	margin : 0 auto;
	font-size: 0.9rem !important;
	letter-spacing: 0.05em;
	line-height: 1.2em;
}

a {
    margin: 0 auto;
    background: #000;
    display: block;
    filter:alpha(opacity=50);
    -moz-opacity: 1;
    opacity: 1;
}
a:hover {
    filter:alpha(opacity=100);
    -moz-opacity: 0.5;
    opacity: 0.5;
}

.setimg01 {
    filter:alpha(opacity=50);
    -moz-opacity: 0.5;
    opacity: 0.5;
}


























