/*
Theme Name:		Welcart Basic Yasuda
Description:		Welcart Basic Yasuda Theme
Author:		jtvan
Template:		welcart_basic
Version:		1.2.4
*/

/* 
※カスタムでは740px以上と1000px以上が、主な基点。
※主なブレイクポイントは740pxとして、スマホ表示、タブレット・PC表示にわける

 */
/* ///////////////////////////////////////////// */
/* Mobile Small 360px */
@media screen and (min-width: 22.43em) {
}
/* ///////////////////////////////////////////// */
/* ///////////////////////////////////////////// */
/* Mobile Large 620px */
@media screen and (min-width: 38.75em) {
}
/* ///////////////////////////////////////////// */
/* ///////////////////////////////////////////// */
/* PC, Tablet(740px and up) */
@media screen and (min-width: 46.25em) {
}
/* ///////////////////////////////////////////// */
/* ///////////////////////////////////////////// */
/* Tablet Large 880px */
@media screen and (min-width: 55em) {
}
/* ///////////////////////////////////////////// */
/*////////////////////////////////////////////*/
/* Desktop(1000px and up) */
@media screen and (min-width: 62.5em) {
}
/* ///////////////////////////////////////////// */
/*////////////////////////////////////////////*/
/* Desktop(1140px and up) */
@media print, screen and (min-width: 1140px) {
}
/* ///////////////////////////////////////////// */
/*Debug*/
.hoge{
	border:1px solid red;
}
/* テスト環境メッセージ */
#dev-message{
	background-color:#ff0000;
	color:#fff;
	text-align:center;
	font-weight:bold;
	display:none;

}
/* mmenu（jQueryスライドメニュー）を導入するとWP管理バーの上部に余白ができるため */
html #wpadminbar{
	position:fixed !important;
}

/* =Hidden,Visible
-------------------------------------------------------------- */
.visible-inline-xs,
.visible-inline-sm,
.visible-inline-md,
.visible-xs,
.visible-sm,
.visible-md{
	display: none !important;
}
/* ▲追加 */
@media (max-width: 46.24em) {
	.visible-xs {
		display: block !important;
	}
	.visible-inline-xs {
		display: inline-block !important;
	}
}
@media (min-width: 46.25em) and (max-width: 62.49em) {
	.visible-sm {
		display: block !important;
	}
	.visible-inline-sm {
		display: inline-block !important;
	}
}
@media (max-width: 46.24em) {
	.hidden-xs {
		display: none !important;
	}
}

@media (min-width: 46.25em) and (max-width: 62.49em) {
	.hidden-sm {
		display: none !important;
	}
}
/* PC幅以上以下は非表示（スマホとタブレット非表示） */
@media (max-width: 62.49em) {
	.visible-md {
		display: block !important;
	}
	.visible-inline-md {
		display: inline-block !important;
	}
}
/* PC幅以上で表示 */
@media (max-width: 62.49em) {
	.hidden-md {
		display: none !important;
	}
}

/* ------------------- CSS Reset ------------------- */
*{
	margin:0;
	padding:0;
}
@-ms-viewport{/* IE でスクロールバーがコンテンツに重なる問題を修正 */
	width: auto;
	initial-scale: 1;
}
@viewport{
	width: device-width;
	initial-scale: 1;
}
h1,h2,h3,h4,h5,h6{
	font-size:100%;
	font-weight: normal;
}
h1,h2,h3{
	line-height:1.25;
}
/* -- フォーム -- */
input,select,textarea {
	vertical-align: baseline;
	border: 1px solid #bbb;
	-webkit-appearance: none;
	color:#000; /* iOS15からSafariでフォントが一部青で表示する問題を修正 */
}
input:-webkit-autofill { /* 自動入力時に付く背景色を無しにする */
	-webkit-box-shadow: 0 0 0px 1000px white inset;
}
select {
	max-width: 100%;
	padding: 0.5em 2em 0.5em 0.5em;
	background: url(images/select-arrow.gif) center right 10px no-repeat;
}
textarea {
	width: 100%;
	height: 10em;
	padding:5px;
	line-height:1.25;
}
input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="search"],
input[type="url"] {
	padding: 0.5em;
}
input[type="button"],
input[type="submit"],
input[type="reset"] {
	padding: 0.5em;
	background-color: #efefef;
	border: 2px solid #efefef;
	border-radius: 3px;
}
input[type="button"]:hover,
input[type="submit"]:hover,
input[type="reset"]:hover {
	background-color: #efefef;
	cursor: pointer;
	opacity:0.7;
}
input[type="checkbox"] {
	border: 1px solid #ccc;
}
input[type="radio"] {
	border: 1px solid #bbb;
}
input[type="search"]::-webkit-search-decoration {
	/* Corrects inner padding displayed oddly in S5, Chrome on OSX */
	-webkit-appearance: none;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}
textarea {
	overflow: auto; /* Removes default vertical scrollbar in IE6/7/8/9 */
}
/* フォント太さ、色 */
em{
	color: #000;
	font-size: 1em;
	font-style:normal;
	font-weight:bold;
}
address{
	font-style:normal;
}
.f-90{
	font-size:90%;
}
.f-85{
	font-size:85%;
}
.f-80{
	font-size:80%;
}
.f-bold{
	font-weight:bold;
}
.f-narrow{
	letter-spacing:-1px;
}
.f-black{	color:#000000;}
.f-red{	color:#d23514;}
.f-redCC{	color:#CC0000;}
.f-blue{	color:#226ba2;}

.f-underline{
	text-decoration:underline;
}
.f-note{
	margin-left:1em;
	font-size:0.9em;
	text-indent:-1em;
}
.f-note:before{
	content:"※ ";
}
.f-hosoku{
	margin-left:1em;
	font-size:0.9em;
	text-indent:-1em;
}
.f-hosoku:before{
	content:"* ";
}
.nowrap{
	white-space: nowrap;
}
.ib{
	display:inline-block;
}
/* リスト */
ul{
	margin:0;
	padding:0;
	list-style: none;
}
ol{
	margin: 0;
	padding-left: 1.5em;
	list-style-type: decimal;
	list-style-position:outside;
}
ul.disc{
	padding-left: 20px;
}
ul.disc li{
	list-style-type:disc;
}
ul.blackdisc li:before {
	font-family: 'icomoon';
	content: "\f111";
	padding-right:7px;
}
ul.blackdisc li {
	margin-left: 1em;
	text-indent: -1em;
}
/* リンク */
a {
	color: #268785;
	cursor:pointer;
	outline: none;/* クリック時の点線を消す */
	text-decoration: none;
	-webkit-tap-highlight-color:rgba(0,0,0,0); /* iPhone 向けにハイライトカラーを「無効」にする */
}
a:hover,
a:focus {
	color: #268785;
	text-decoration: underline;
}
/*link opacity*/
a.opa70{
	display:block;
}
a.opa70:hover{
	opacity: 0.7;
	filter: alpha(opacity=70);
	-ms-filter: "alpha(opacity=70)";
	-khtml-opacity: 0.7;
	-moz-opacity: 0.7;
}
a.opa70ease{
	display:block;
}
a.opa70ease:hover{
	opacity: 0.7;
	filter: alpha(opacity=70);
	-ms-filter: "alpha(opacity=70)";
	-khtml-opacity: 0.7;
	-moz-opacity: 0.7;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
/* モーダル用 解説リンク */
a.commentary:after{
	font-family: 'icomoon';
	content: "\f059";
/*	color:#226ba2;*/
	padding-right:5px;
}
/* img */
img {
	border:none;
	vertical-align: top;
	display: block;
	max-width: 100%;
	height: auto;
	/* Chromeで画像がボケるのを防止する*/
	image-rendering: -webkit-optimize-contrast;
}
a img{ /* Internet Explorer用の設定 */
	border:none;
}
/* gaiyouで画像タグ出力（画像が無い場合は非表示） */
img.img-none{
	display:none;
}
img.img-block{
	display:block;
}
/* 画像キャプション */
.img-cap{
	font-size:16px;
}
/* ボタンのデザイン */
.btn-gray,
.btn-green,
.btn{
	/* 送信ボタンなどのiOSでのデフォルトスタイルをリセット */
	appearance: button;
	border: none;
	cursor: pointer;
	/* 以下デザイン */
	background-color: #bf9d6d;
	border: 2px solid #bf9d6d;
	border-radius: 3px;
	display: inline-block;
	padding:0.5em 1em;
	margin-bottom: 0;
	color: #fff;
	font-size: 1em;
	line-height: 1;
	text-align: center;
	white-space: nowrap;
	vertical-align: bottom;
	text-decoration:none;
}

.btn-green:hover,
.btn-green:focus,
.btn:hover,
.btn:focus{
	color: #fff;
	opacity:0.7;
	text-decoration:none;
}
.btn-gray:hover,
.btn-gray:focus{
	color: #000;
	opacity:0.7;
	text-decoration:none;
}
.btn-green{
	background-color: #8fa252;
	border: 2px solid #8fa252;
}
.btn-gray{
	background-color: #efefef;
	border: 2px solid #efefef;
	color: #000;
}
/* 上に戻るリンク */
.goTop{
	position:fixed;
	right:7px;
	bottom:40px;
	z-index:15;
	cursor:pointer;
}
.goTop img{
	width:34px;
}
/* 詳しくはこちらボタン */
.more-btn{
	width:160px;
	margin-left:auto;
	margin-right:auto;
	text-align:center;
}
.more-btn a{
	border:1px solid #fff;
	display:block;
	color:#fff;
	font-size:14px;
	line-height:1;
	padding:15px 0;
	text-decoration:none;
}
.more-btn a:after{
	font-family: 'icomoon';
	content: "\f105";
	color: #fff;
	padding-left:1em;
	line-height:1;
}
.more-btn a:hover{
	background: rgba(255, 255, 255, .1);
	transition: all 0.1s ease-out;
}
/* 詳しくはこちらボタン（黒） */
.more-btn.black-btn a{
	border:1px solid #000;
	color:#000;
}
.more-btn.black-btn a:after{
	color:#000;
}
.more-btn.black-btn a:hover{
	background: rgba(136, 136, 136, .1);
	transition: all 0.1s ease-out;
}
/* 投稿のNEWマーク */
.new-mark{
	display:inline-block;
	background-color:#bf9d6d;
	width:45px;
	padding:5px 0;
	line-height:1;
	text-align:center;
	border-radius: 2px;
	font-size:12px;
	font-weight:bold;
	color:#fff;
}
/* 投稿のNEWマーク（黄色円） */
.new-mark-yellow{
	position: absolute;
	top: -20px;
	left: 8.5em;
	display: block;
	background-color: #fefe0c;
	width: 40px;
	height: 40px;
	text-align: center;
	padding-top: 12px;
	border-radius: 50%;
	font-size: 12px;
	font-weight: bold;
	color:#000;
}
/* 該当する商品はありません */
.no-puroduct{
	padding-left:10px;
	padding-right:10px;
}
/* 入力必須 */
em.hissu{
	color: #ff3366;
	font-weight: bold;
}
/* 枠 */
.waku{
	padding:15px 10px;
	border:1px solid #000;
}
.waku-webcollect{
	padding:15px 10px;
	border:2px solid #fccf00;
	background-color:#FFFFE5;
}
/* -- Campaign-Tag -- */
/* - item-single.php - */
#itempage .campaign_message {
	font-size: 1.125em;
}



/*////////////////////////////////////////////*/
/* PC, Tablet(740px and up) */
@media screen and (min-width: 46.25em) {
	/* 上に戻るリンク */
	.goTop{
		right:16px;
		bottom:16px;
	}
	.goTop img{
		width:56px;
	}
	/* 詳しくはこちらボタン（黒） */
	.more-btn.black-btn{
			width:240px;
	}
	.more-btn.black-btn a{
		font-size:18px;
	}
	/* 枠 */
	.waku,
	.waku-webcollect{
		padding:20px;
	}
}/*END media query*/
/*////////////////////////////////////////////*/
/*////////////////////////////////////////////*/
/* Desktop(1000px and up) */
@media screen and (min-width: 62.5em) {
	/* 該当する商品はありません */
	.no-puroduct{
		padding-left:0;
		padding-right:0;
	}
}
/* ///////////////////////////////////////////// */
/* @@@@@@@@@@@@@@@@@@@@@@ 基本構造 @@@@@@@@@@@@@@@@@@@@@@ */
/* =Base
-------------------------------------------------------------- */

html{
	font-size:16px;
	background:#FFF;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0); /* リンクタップ時のスマホのハイライトカラーを無効にする */
}
body{
	color:#000;
	/* クロムで bodyに「游ゴシック Medium」を指定すると font-weight:boldで太字が滲む問題を回避 */
	font-family: Arial, Roboto, "Droid Sans", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
	font-size:16px;
	line-height: 1.5;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;/* スマホやモダンブラウザ向けにフォントを綺麗に見せる */
}
/* フォント */
.f-serif{
	font-family:"Roboto Slab" , Garamond , "Times New Roman" , "游明朝" , "Yu Mincho" , "游明朝体" , "YuMincho" , "ヒラギノ明朝 Pro W3" , "Hiragino Mincho Pro" , "HiraMinProN-W3" , "HGS明朝E" , "ＭＳ Ｐ明朝" , "MS PMincho" , serif;
}
.f-Rserif{ /* リュウミンフォント ★Xサーバーにアップ後適用★（スマホでも明朝になる） */
	font-family:Ryumin Regular KL, "Roboto Slab" , Garamond , "Times New Roman" , "游明朝" , "Yu Mincho" , "游明朝体" , "YuMincho" , "ヒラギノ明朝 Pro W3" , "Hiragino Mincho Pro" , "HiraMinProN-W3" , "HGS明朝E" , "ＭＳ Ｐ明朝" , "MS PMincho" , serif;
}
/* ★注意★
	コンテンツ内（#main） の基準幅（section-innerなど）は1160px
	やや狭めでみせるコンテンツは960px
	上ナビやパンくずは、広めの1190px
 */
.bread,
.global-menu,
.guide-nav,
.header-inner{
	max-width:1190px;
	margin-left:auto;
	margin-right:auto;
}
#main{/* 本サイトのcontainer */
	padding-top:20px;
}
.home #main{
	padding-top:0;
}
#content {/* 本サイトのmain-inner */
	padding: 0;
	padding-bottom:40px;
	border:0px solid blue;
}
#content header {
	margin: 0;
	padding-left:10px;
	padding-right:10px;
	margin-bottom:1em;
}
#content .page-title,
#content .entry-title {
	font-size: 1.25em;
	margin-bottom: 1em;
	line-height: 1.25;
	font-weight:bold;
}
footer{
	color: #000;
	border-top:4px solid #cccccc;
	border-bottom:15px solid #8fa252;
	background-color:#eaeae2;
	padding:0;
}
.footer-inner{
	max-width:960px;
	margin-left:auto;
	margin-right:auto;
}
/* -- a -- */
footer a {
	color: #000;
}
footer a:hover {
	color: #aaa;
	text-decoration: none;
}
/* section */
section{
	margin-bottom:40px;
}
section.lastCh{
	margin-bottom:0;
}
section:after{
	content:"";
	display:table;
	clear:both;
}
.section-inner{
	max-width:960px;
	margin-left:auto;
	margin-right:auto;
	padding-right:10px;
	padding-left:10px;
}
section h1{
	font-weight:bold;
	font-size: 1.25em;
	margin-bottom: 1em;
}
section .h1-wrap{
	margin-bottom:1em;
}
section .h1-wrap:after{
	content:"";
	display:table;
	clear:both;
}
section .h1-wrap h1{
	margin-bottom:0.5em;
}
section h2{
	font-weight:bold;
	font-size: 1.125em;
	margin-bottom: 1em;
}
section .h2-wrap{
	margin-bottom: 1em;
	text-align:center;
}
section .h2-wrap:after{
	content:"";
	display:table;
	clear:both;
}
section .h2-wrap h2{
	margin-bottom:0.5em;
	line-height:1;
}
section .h2-wrap .h2-en{
	line-height:1;
}
/* ///////////////////////////////////////////// */
/* Mobile Large 620px */
@media screen and (min-width: 38.75em) {
	#content .page-title,
	#content .entry-title {
		font-size: 1.25em;
		margin-bottom:1em;
		line-height: 1.25;
	}
}
/* ///////////////////////////////////////////// */
/*////////////////////////////////////////////*/
/* Desktop(1000px and up) */
@media screen and (min-width: 62.5em) {
	html,body{
		font-size:18px;
	}
	#main {
		width:100%;
		margin: 0 auto;
		max-width: 1160px;
	}
	.home #main{
		max-width: none;
	}
	#content {/* 本サイトのmain-inner */
		padding-bottom:60px;
	}
	#content header {
		padding-left:0;
		padding-right:0;
		margin-bottom:30px;
	}
	#content header h1{
		text-align: left;
		font-size: 1.8em;
		padding-bottom:0.5em;
		margin-bottom: 1em;
		border-bottom:1px solid #ccc;
	}
	#content .page-title,
	#content .entry-title {
		font-size: 1.8em;
	}
	/* section */
	section{
		margin-bottom:60px;
	}
	section.lastCh{
		margin-bottom:0;
	}
	.section-inner{
		padding-right:0;
		padding-left:0;
	}
	section h1{
		font-size: 1.5em;
		margin-bottom:1.4em;
		text-align:center;
	}
	section .h1-wrap{
		text-align:center;
		margin-bottom:1.4em;
	}
	section h2{
		font-size: 1.25em;
		margin-bottom:0.8em;
	}
	footer{
		border-top:none;
	}
	/* ---------------------------------------
	 １カラム用の基本構造
	------------------------------------------ */
	/* -- .one-column -- */
	#main.one-column #content {
		padding-bottom: 60px;
	}
	/* ---------------------------------------
	 ２カラム用の基本構造
	------------------------------------------ */
	#main.two-column{/* 本サイトのcontainer */
		padding-top:20px;
	}
	/* -- two-column -- */
	.two-column #secondary {/* 本サイトのside */
		width:200px;
		padding:0 5px;
		float: left;
	}
	#main.two-column #primary {/* 本サイトのmain */
		float:right;
		width: 100%;
		margin-left: -230px;
		padding-top:10px;
	}
	#main.two-column #content {/* 本サイトのmain-inner */
		float:none;
		width: auto;
		margin-left: 230px;
		margin-bottom:80px;
	}
}
/* ///////////////////////////////////////////// */
/*////////////////////////////////////////////*/
/* Desktop(1140px and up) */
@media print, screen and (min-width: 1140px) {

	/* ---------------------------------------
	 ２カラム用の基本構造
	------------------------------------------ */
	/* -- two-column -- */
	.two-column #secondary{/* 本サイトのside */
		padding:0;
	}
	#main.two-column #primary{/* 本サイトのmain */
		margin-left: -240px;
	}
	#main.two-column #content{
		margin-left:240px;/* 本サイトのmain-inner */
	}
}
/* ///////////////////////////////////////////// */


/* -------------------------------
 mmenu スライドメニュー
---------------------------------- */
/* トグルボタン */
#navbtn{
	position:absolute;
	top:14px;
	right:10px;
	padding:5px;
	cursor:pointer;
	text-decoration:none;
}
/* PC, Tablet(740px and up) */
@media screen and (min-width: 46.25em) {
	#navbtn{
		top:20px;
	}
}
/* Desktop(1000px and up) */
@media screen and (min-width: 62.5em) {
	#navbtn{
		display:none;
	}
}

#navbtn:hover{opacity:0.7;}
#navbtn:focus{outline:none;}
#navbtn i{
	font-size:28px;
	color:#8b8b8b;
	font-weight:normal;	
}
/*** ドロワーナビ（スマホ用） ***/
/* jquery.mmenu.all.cssの上書き */

/* MENU見出し */
.mm-navbar{
	height:50px;/* 見出しをボタンの高さに揃える */
}
.mm-hasnavbar-top-1 .mm-panels{
	top:50px /* 見出しの下にメニューパネルの位置をあわせる */
}
.mm-navbar:after{/* 見出しにMENUテキストを追加 */
	content:"メニュー";
	color:#8fa252;
	font-family: 'Roboto', Arial, sans-serif;
	font-size:18px;
	font-weight:400;
	padding-top:15px;
	display:block;
}
/* 閉じるボタン */
.mm-btn{/* サイズを大きくする */
	width:50px;
	height:50px;
}
.mm-navbar .mm-btn:first-child{/* メニューパネルより左に飛び出させる */
	left:-50px !important;
	background:#8fa252;
	color:#fff;
}
.mm-menu.mm-theme-white .mm-btn span{/* jQueryから追加した「閉じる」のCSS */
	font-size:12px;
	color:#fff;
	display:block;
	margin:auto;
	position:absolute;
	top:27px;
	left:7px;
}
.mm-menu.mm-theme-white .mm-btn:after,
.mm-menu.mm-theme-white .mm-btn:before{/* 「×」の色 */
	border-color:rgba(255,255,255,1);
}
.mm-clear:after,
.mm-clear:before,
.mm-close:after,
.mm-close:before{/* 「×」大きさを変更 */
	border:1px solid transparent;
	width:8px;
	height:8px;
/*	top:-15px; */
	bottom:0;
}
.mm-clear:before,
.mm-close:before{/* 「×」位置を変更 */
	border-right:none;
	border-bottom:none;
	right:15px;
}
.mm-clear:after,
.mm-close:after{/* 「×」位置を変更 */
	border-left:none;
	border-top:none;
	right:27px;
}

/* メニュー背景など */
.mm-menu.mm-theme-white{
	border-top:4px solid #8fa252 !important;
	color:rgba(0,0,0,.7) !important;
}
.mm-menu.mm-theme-white .menu li {
	font-weight:bold;
}
/* カートをみる */
.mm-menu.mm-theme-white .menu li:last-child{
	margin-top:20px;
	margin-bottom:10px;
}
.mm-listview>li:last-child:not(.mm-divider):after{
	border:none;
}
.mm-listview>li:last-child>a{
	padding:10px !important;
}
.mm-menu.mm-theme-white .menu li:last-child a{
	position: relative;
	width: 216px;
	height: 40px;
	margin-left: 20px;
	background-color: #8fa252;
	border-radius: 2px;
	color:#fff;
	text-align:center;
}
/* サブメニュー */
.mm-menu.mm-theme-white .sub-menu li {
	font-weight:normal !important;
}
.mm-menu.mm-theme-white .mm-listview>li> .mm-next{/* 親メニュー */
	height:50px !important;
	border-color:transparent !important;
	width:100% !important;/* クリック領域を親要素全体にする */
}
.mm-menu.mm-theme-white .mm-listview>li .mm-next:after{
	border-color:#a5a5a5 !important;/* 親メニューの矢印 */
	top: 20px;
}
.mm-listview>li>a,
.mm-listview>li>span{ /* リスト */
	padding:15px 10px 15px 20px !important;
}
.mm-listview>li>a i{
	font-size:16px;
	display:inline-block;
	padding-right:7px;
	padding-bottom:2px;
}
.mm-listview>li:last-child>a i{
	padding-left:10px;
}
.mm-menu.mm-theme-white .mm-divider,
.mm-menu.mm-theme-white .mm-fixeddivider span,.mm-menu.mm-theme-white .mm-listview>li.mm-opened.mm-vertical>.mm-panel,.mm-menu.mm-theme-white .mm-listview>li.mm-opened.mm-vertical>a.mm-next,.mm-menu.mm-theme-white.mm-vertical .mm-listview>li.mm-opened>.mm-panel,.mm-menu.mm-theme-white.mm-vertical .mm-listview>li.mm-opened>a.mm-next{
	background:rgba(93,75,69,0.08) !important;/* サブメニュー背景 */
}
/* -------------------------------
 ロゴとキャッチ
---------------------------------- */
h1.site{
	display:table;
	width:68%;
	height:100%;
	/* IE11でテーブルの要素が横にはみ出す時の修正 */
	table-layout:fixed;
	word-wrap: break-word;
	overflow-wrap: break-word;
}
h1.site a{
	display:table-cell;
	vertical-align:middle;
	width:120px;
}
h1.site a img{
	width:116px;
}
h1.site span{
	display:table-cell;
	font-size:12px;
	padding-top:29px;
	letter-spacing:-1px;
}
/* ///////////////////////////////////////////// */
/* Mobile Small 360px */
@media screen and (min-width: 22.43em) {
	h1.site{
		width:72%;
	}
	h1.site a{
		width:150px;
	}
	h1.site a img{
		width:140px;
	}
}
/* ///////////////////////////////////////////// */
/*////////////////////////////////////////////*/
/* PC, Tablet(740px and up) */
@media screen and (min-width: 46.25em) {
	/* ロゴとキャッチ */
	h1.site{
		width:46%;
	}
	h1.site span{
		padding-top:36px;
		font-size:0.9em;
	}
}
/* ///////////////////////////////////////////// */
/*////////////////////////////////////////////*/
/* Desktop(1000px and up) */
@media screen and (min-width: 62.5em) {
	/* ロゴとキャッチ */
	h1.site{
		float:left;
		width:280px;
	}
	h1.site a{
		width:170px;
	}
	h1.site a img{
		width:160px;
	}
}
/* ///////////////////////////////////////////// */
/*////////////////////////////////////////////*/
/* Desktop(1140px and up) */
@media print, screen and (min-width: 1140px) {
	/* ロゴとキャッチ */
	h1.site{
		width:330px;
	}
	h1.site a{
		width:200px;
	}
	h1.site a img{
		width:190px;
	}
	h1.site span{
		font-size:1em;
		letter-spacing:0;
	}
}
/* ///////////////////////////////////////////// */

/* @@@@@@@@@@@@@@@@@@@@@@ ヘッダー @@@@@@@@@@@@@@@@@@@@@@ */
/* =header
-------------------------------------------------------------- */
header {
	position: relative;
	margin-bottom: 0;
	border-bottom:0;
}
.header-inner{
	max-width: 1190px;
	margin-left: auto;
	margin-right: auto;
	position:relative;
	height:64px;
	padding-left:10px;
	padding-right:10px;
}
.header-inner:after{
	content:"";
	display:table;
	clear:both;
}
/* アイコンメニュー */
.top-menu{
	position:absolute;
	top:0;
	right:52px;
	width:54px;
	height:100%;
}
/* カートアイコン */
.top-menu .incart-btn{
	float: none;
}
.top-menu .incart-btn a {
	position: relative;
	width:54px;
	height:64px;
	background-color:#8fa252;
}
.top-menu .incart-btn i {
	position: absolute;
	top: 23px;
	left: 7px;
	color: #fff;
	font-size:18px;
}

.top-menu .incart-btn .total-quant {
	position: absolute;
	top: 23px;
	left: 30px;
	min-width: 17px;
	max-width: 17px;
	height: 17px;
	color: #8fa252;
	background-color: #fff;
	font-size:13px;
	line-height:17px;
}
/* お問い合わせ */
.contact-bottom{
	margin-bottom:40px;
}
.contact-side{
	margin-bottom:30px;
}
.contact-top-sma{
	margin-bottom:24px;
}
.contact-message{
	padding-left:10px;
	padding-right:10px;
	margin-bottom:15px;
	font-size:90%;
}
.contact-tel{
	width:240px;
	margin-left:auto;
	margin-right:auto;
	margin-bottom:15px;
}
.contact-tel .free-dial{
	border-bottom:1px solid #8fa252;
	font-size:28px;
	line-height:1;
	font-weight: bold;
	letter-spacing:2px;
	padding-bottom:1px;
	margin-bottom:1px;
	text-align:center;
}
.contact-tel i.fa-free-dial:before{
	color:#8fa252;
	padding-right:10px;
}
.contact-tel .free-dial,
.contact-tel .free-dial a{
	color:#555;
}
.contact-tel .holiday{
	text-align:center;
	font-size:13px;
}
.contact-mail-btn{
	display:block;
	width:240px;
	margin-left:auto;
	margin-right:auto;
	padding:16px;
	text-align:center;
	background-color:#8fa252;
	color:#fff;
	font-weight:bold;
	font-size:18px;
	line-height:1;
}
.contact-mail-btn:hover{
	opacity:0.7;
	text-decoration:none;
}
.contact-mail-btn .fa-envelope:before{
	color:#fff;
	padding-right:10px;
}
/* トップページ（スマホ）お問い合わせ */
.contact-top-sma .contact-mail-btn{
	display:none;
}
/* サイドナビお問い合わせ */
.contact-side .contact-side-mail{
	display:block;
	padding-top:18px;
	padding-bottom:18px;
	max-width:200px;
	margin-left:auto;
	margin-right:auto;
	margin-bottom:10px;
	font-weight:bold;
	font-size:18px;
	line-height:1;
	color:#657c1b;
	background-color:#f2f2f2;
	text-align:center;
	text-decoration:none;
}
.contact-side .contact-side-mail:hover{
	opacity:0.7;
}
.contact-side .contact-side-mail span{
	display:block;
	margin-bottom:12px;
	font-weight:normal;
	font-size:14px;
	color:#000;
}
.contact-side .fa-envelope:before{
	display:inline-block;
	margin-bottom:14px;
	font-size:28px;
	color:#8fa252;
}
.contact-side .contact-tel{
	width:100%;
	max-width:200px;
}
.contact-side .contact-tel .free-dial{
	font-size:24px;
}
/* お問い合わせフォーム内 */
.contact-inquery{
	margin-top:30px;
	margin-bottom:30px;
}
.contact-inquery ul li{
	font-size:0.875em;
}
/*** キーワード検索 ***/
.search-wrap {
	position: relative;
	margin: 0 auto;
	padding-right: 10px;
	max-width:280px;
}
.search-wrap input {
	width: 100%;
	height: 32px;
	padding: 4px 7px;
	background: #f2f2f2;
	border: none;
	border-radius:3px;
	font-size: 16px;
	color: #666;
	line-height:1;
}
.search-wrap input:focus {
	outline: none;
}
.search-wrap input::placeholder {
	color: #666;
	opacity:0.7;
}
/* 虫眼鏡検索 */
.search-wrap button{
	position: absolute;
	display: block;
	width: 35px;
	height: 32px;
	right: 10px;
	top: 0;
	background: transparent;
	border: none;
	-webkit-transition: 500ms ease all;
	-moz-transition: 500ms ease all;
	transition: 500ms ease all;
}
.search-wrap button i:before{
	font-size:20px;
	color:#000;
}
@media print, screen and (min-width: 770px) {
	.search-wrap.normal{
		margin:0;
	}
}
.search-wrap.normal input{
	padding: 7px 5px;
	border: 1px solid #ccc;
	color: #000;
}
.search-wrap.normal input::placeholder {
	color: #666;
	opacity:0.7;
}
.search-wrap.normal button {
	right: 1%;
	top: 2px;
	color: #a5a5a5;
}
.search-wrap.normal button:hover {
	color: #a5a5a5;
}

/* ガイドナビ */
.guide-nav{
	margin-bottom:20px;
}
.guide-nav ul:after{
	content:"";
	display:table;
	clear:both;
}
.guide-nav ul li{
	float:left;
	width:50%;
	border:1px solid #fff;
}
.guide-nav ul li:last-child{
	width:100%;
}
.guide-nav ul li a{
	display:block;
	background-color:#8fa252;
	color:#fff;
	text-align:center;
	padding-top:14px;
	padding-bottom:14px;
	text-decoration:none;
}
.guide-nav ul li:first-child a{
	letter-spacing:-1px;
}
.guide-nav ul li a:before{
	font-family: 'icomoon';
	content: "\e907";
	padding-right:5px;
}
.guide-nav ul li a:hover{
	opacity:0.7;
}
.guide-nav ul li:nth-of-type(1) a:before{
	padding-right:3px;
}
.guide-nav ul li:nth-of-type(2) a:before{
	content: "\e902";
}
.guide-nav ul li:nth-of-type(3) a:before{
	content: "\f003";
}
.guide-nav ul li:nth-of-type(4) a:before{
	content: "\f1b9";
}
.guide-nav ul li:nth-of-type(5) a:before{
	content: "\f015";
}
/* グローバルナビ */
.global-menu-wrap{
	margin-bottom:30px;
}
.global-menu-wrap.page-bottom{ /* ページ下のGメニュー */
	margin-top:20px;
	margin-bottom:20px;
}
.global-menu-wrap.toppage-bottom{ /* トップページ下のGメニュー */
	margin-bottom:40px;
}
.global-menu-wrap.toppage-bottom .gnav-submenu,
.global-menu-wrap.page-bottom .gnav-submenu{
	max-width:400px;
	margin-left:auto;
	margin-right:auto;
}
.global-menu-wrap.toppage-bottom .gnav,
.global-menu-wrap.page-bottom .gnav{
	padding-left:5px;
	padding-right:5px;
}
.global-menu:after{
	content:"";
	display:table;
	clear:both;
}
#gnav{
	display:block !important;
}
.gnav-submenu{
	padding-left:10px;
	padding-right:10px;
}
.gnav-submenu:after{
	content:"";
	display:table;
	clear:both;
}
.gnav-submenu .search-wrap{
	float:left;
	width:58%;
}
.gnav-submenu .img-delivery-free{
	float:right;
	width:42%;
}
.gnav{
	margin-bottom:20px;
}
.gnav ul{
	overflow:hidden;
/*	font-size:0; */
}
.gnav ul:after{
	content:"";
	display:block;
	clear:both;
}
.gnav li{
	float:left;
	width:33.33%;
	text-align:center;
	padding-top:2px;
	padding-bottom:2px;
}
.gnav li a{
	display:block;
	font-size:14px;
	font-weight:bold; 
	color:#000;
	text-decoration:none;
	text-align:center;
	border-left:1px solid #d2d2d7;
}
.gnav li:first-child a{
	border-left:0;
}
.gnav li a:hover,
.gnav li a:focus{
	background-color:transparent;
	opacity:0.7;
}
.gnav li a span{
	position:relative;
	display:inline-block;
	line-height:1.2;
	padding:10px 5px 1px 30px;
}
.gnav li span:before{
	position:absolute;
	top:0;
	left:0;
	content:"";
	display:block;
	width:30px;
	height:30px;
	background-image:url(./img/icon_cat_s_senko.png);
	background-repeat:no-repeat;
	background-size:contain;
	background-position:0 0;
}

.gnav li:nth-of-type(2) span:before{
	background-image:url(./img/icon_cat_k_senko.png);
}
.gnav li:last-child span:before{
	background-image:url(./img/icon_cat_shari.png);
	background-position:0 -1px;
}
/*////////////////////////////////////////////*/
/* PC, Tablet(740px and up) */
@media screen and (min-width: 46.25em) {
	header {
		border-bottom:1px solid #ccc;
	}
	.header-inner{
		height:80px;
	}
	/* トップメニュー */
	.top-menu{
		display:table;
		width:auto;
		height:100%;
		/* IE11でテーブルの要素が横にはみ出す時の修正 */
		table-layout:fixed;
		word-wrap: break-word;
		overflow-wrap: break-word;
	}
	/* カートアイコン */
	.top-menu .incart-btn {
		min-width: auto;
		margin-top: .0;
	}
	.top-menu .incart-btn a {
		width:130px;
		height:80px;
		padding: 0;
		background-color:#8fa252;
		border-radius:0;
	}
	.top-menu .incart-btn a:hover {
		background-color:#8fa252;
		opacity:0.7;
	}
	.top-menu .incart-btn i {
		top: 30px;
		left: 15px;
	}
	.top-menu .incart-btn i span{
		font-size:15px;
		display:inline-block;
	}
	.top-menu .incart-btn i:before {
		color: #fff;
		margin-right: 8px;
	}
	.top-menu .incart-btn .total-quant {
		top: 30px;
		left: auto;
		right: 16px;
		min-width: 20px;
		max-width: 20px;
		height: 20px;
		line-height:20px;
	}
	/* お問い合わせ（トップメニュー） */
	.top-menu .contact-message,
	.top-menu .contact-tel,
	.top-menu .go-online{
		display:table-cell;
		vertical-align:middle;
	}
	.top-menu .contact-message{
		font-size:11px;
		padding-left:0;
		padding-right:0;
		margin-bottom:0;
	}
	.top-menu .contact-tel{
		width:auto;
		padding-left:10px;
		padding-right:10px;
		margin-bottom:0;
	}
	.top-menu .contact-tel .free-dial{
		font-size:28px;
	}
	.top-menu .contact-tel .holiday{
		font-size:12px;
	}
	/* お問い合わせ（サブページ下） */
	.contact-bottom{
		margin-bottom:80px;
	}
	.contact-bottom{
		width:430px;
		margin-right:auto;
		margin-left:auto;
	}
	.contact-bottom .contact-message{
		color:#666;
		float:left;
		width:11em;
		padding-top:4px;
		padding-left:0;
		font-size: 16px;
		font-weight:bold;
	}
	.contact-bottom .contact-message .ltr-space{
		letter-spacing:2px;
	}
	.contact-bottom .contact-tel{
		float:left;
		margin-bottom:20px;
	}
	.contact-bottom .contact-mail-btn{
		clear:both;
		width:360px;
		padding:24px;
		font-size:18px;
	}
	/* ガイドナビ */
	.guide-nav{
		margin-bottom:0;
		text-align:right;
		font-size:0.9em;
		line-height:1;
	}
	.guide-nav ul{
		display:inline-block;
	}
	.guide-nav ul li{
		width:auto;
		border:none;
	}
	.guide-nav ul li:last-child{
		width:auto;
	}
	.guide-nav ul li a{
		background-color:transparent;
		color:#000;
		text-align:center;
		padding-top:16px;
		padding-bottom:12px;
		padding-right:10px;
		padding-left:10px;
		line-height:1.2;
	}
	.guide-nav ul li a:before{
		color:#666;
	}
	/* グローバルナビ */
	.global-menu-wrap{
		margin-bottom:10px;
	}
	.global-menu-wrap.page-bottom{ /* ページ下のGメニュー */
		margin-top:40px;
		margin-bottom:60px;
	}
	.global-menu-wrap.toppage-bottom{ /* トップページ下のGメニュー */
		margin-bottom:60px;
	}
	.global-menu-wrap.page-bottom .global-menu{
		max-width:960px;
	}
	.gnav{
		width:57%;
		float:left;
		margin-bottom:0;
	}
	.gnav-submenu{
		width:43%;
		float:right;
		max-width:400px;
	}
	.gnav-submenu{
		padding-top:3px;
	}
	.gnav li a span{
		padding:10px 5px 1px 35px;
	}
	
	/* ---------------------------------------
	 ２カラム用のgmenu
	------------------------------------------ */
	/* -- two-column -- */
	.two-column .gnav{
		width:80%;
		float:none;
		margin-left:auto;
		margin-right:auto;
		margin-bottom:20px;
	}
	.two-column .gnav-submenu{
		width:100%;
		float:none;
		margin-left:auto;
		margin-right:auto;
	}

}/*END media query*/
/*////////////////////////////////////////////*/
/*////////////////////////////////////////////*/
/* Desktop(1000px and up) */
@media screen and (min-width: 62.5em) {
	.header-inner{
		height:80px;
	}
	/* トップメニュー */
	.top-menu{
		position:static;
		float:right;
	}
	/* お問い合わせ（トップメニュー） */
	.top-menu .contact-message{
		font-size:13px;
	}
	.top-menu .contact-tel{
		padding-left:15px;
		padding-right:15px;
	}

	/* グローバルナビ */
	.gnav li{
		padding-top:2px;
		padding-bottom:2px;
	}
	.gnav li a{
		font-size:18px;
	}
	.gnav li:first-child{
		border-left:1px solid #d2d2d7;
	}
	.gnav li:last-child{
		border-right:1px solid #d2d2d7;
	}
	.gnav li a span{
		padding:8px 5px 3px 45px;
	}
	.gnav li span:before{
		top:0;
		width:34px;
		height:34px;
	}
}/*END media query*/
/*////////////////////////////////////////////*/
/*////////////////////////////////////////////*/
/* Desktop(1140px and up) */
@media print, screen and (min-width: 1140px) {
	.header-inner{
		padding-left:0;
		padding-right:0;
	}
	/* グローバルナビ*/
	.gnav-submenu{
		padding-left:0;
		padding-right:0;
	}
}/*END media query*/

/* @@@@@@@@@@@ パンクズリスト @@@@@@@@@@@@@@@ */
.bread-wrap{
	background-color:#f2f2f2;
}
.bread {
	padding-top:5px;
	padding-bottom:5px;
	padding-left:10px;
	padding-right:10px;
/*	margin-bottom:40px; */
}
.bread ol{
	margin:0;
	padding:0;
	list-style:none;
}
.bread li a,
.bread li span{
	display:inline-block;
	color:#666;
	font-size:0.875rem;
	text-decoration:none;
	cursor:pointer;
}
.bread li > span{
	cursor:default;
}
.bread li a:hover,
.bread li a > span:hover{
	color:#eb4b4b;
	text-decoration:underline;
}
.bread ol:after{
	content:"";
	display:block;
	clear:both;
}
.bread li{
	float:left;
	width:auto;
	padding:5px 0;
}
.bread li:before{
	font-family: 'icomoon';
	content: "\f105";
	margin-left:7px;
	margin-right:7px;
	color:#666;
}
.bread li:first-child:before{
	content:none;
}
.bread i{
	font-size:1.125rem;
}
/* パンクズが長くなるため、スマホで投稿記事のタイトルリンクを非表示にする */
.bread li:last-child{ 
		text-indent:-9999px;
}
.page .bread li:last-child	{ /* 個別ページは表示 */
	text-indent: 0
}
.archive .bread li:last-child	{ /* 一覧ページは表示 */
	text-indent: 0
}
/*////////////////////////////////////////////*/
/* PC, Tablet(768px and up) */
@media print, screen and (min-width:768px){
	.bread{
		padding-left:40px;
		margin-bottom:0;
	}
	.bread li:last-child{
		text-indent:0;
	}
}/*END media query*/
/*////////////////////////////////////////////*/
/*////////////////////////////////////////////*/
/* Desktop(1140px and up) */
@media print, screen and (min-width: 1140px) {
	.bread{
		padding-left:15px;
	}
}/*END media query*/
/*////////////////////////////////////////////*/

/* @@@@@@@@@@@@@@@@@@@@@@ フッター @@@@@@@@@@@@@@@@@@@@@@ */
/* フッターナビ */
.footnav-wrap{
	padding-bottom:40px;
}
footer .footnav ul.sub-menu.pc-layout{
	display:none; /* スマホ端末以外でサブメニューを隠す(js/accordion.js) */
}
footer .footnav ul li{
	border-bottom:1px solid #ccc;
}
footer .footnav ul.sub-menu li{
	background-color:#DCD8CF;
	border-bottom:1px solid #c5c2b1;
}
footer .footnav ul.sub-menu li:last-child{
	border-bottom:none;
}
footer .footnav ul li a,
footer .footnav ul li span.link-tl{
	display:block;
	padding-top:15px;
	padding-bottom:15px;
	padding-left:1em;
	color:#000;
	text-decoration:none;
}
footer .footnav ul.sub-menu li a {
	padding-top:10px;
	padding-bottom:10px;
	padding-left:2em;
}
footer .footnav li a:hover,
footer .footnav li a:focus{
	text-decoration:none;
}
/* アコーディオン開閉の+-アイコン */
.accordion .menu-item-has-children > a,
.accordion .menu-item-has-children > span.link-tl{
	position:relative;
}
span.ac-icon{
	z-index:1;
	position:absolute;
	right:0;
	top:0;
	width:100%;
	padding-top:15px;
	padding-bottom:15px;
	text-indent:-999px;
	overflow:hidden;
	cursor:pointer;
}
footer .footnav span.ac-icon{
	padding-top:15px;
	padding-bottom:15px;
}

span.ac-icon:before{ /* spanの高さ調整 */
	content:'　';
	opacity:0;
}
span.ac-icon i.fa{
	font-size:0;
	line-height:0;
	display:block;
	width:9px;
	height:9px;
	position:absolute;
	right:0;
	top:50%;
	margin-top:-4.5px;
	margin-right:15px;
}
span.ac-icon i.fa:after,
span.ac-icon i.fa:before{
	content:' ';
	display:block;
	background-color:#000;
	position:absolute;
	-webkit-transition:none .2s cubic-bezier(.25,.46,.45,.94);
	transition:none .2s cubic-bezier(.25,.46,.45,.94);
	-webkit-transition-property:-webkit-transform;
	transition-property:-webkit-transform;
	transition-property:transform;
	transition-property:transform,-webkit-transform;
}
span.ac-icon i.fa:before{
	top:4px;
	left:0;
	width:100%;
	height:1px
}
span.ac-icon i.fa:after{
	top:0;
	left:4px;
	width:1px;
	height:100%
}
a.active span.ac-icon i.fa:before{
	-webkit-transform:rotate(180deg);
	transform:rotate(180deg);
}
a.active span.ac-icon i.fa:after{
	-webkit-transform:rotate(90deg);
	transform:rotate(90deg);
}
/* ロゴ・コピーライト */
.copyright-wrap{
	text-align:center;
}
.copyright-wrap img{
	width:80%;
	max-width:380px;
	margin-left:auto;
	margin-right:auto;
	margin-bottom:1em;
}
.affiliate{
	font-size:14px;
}
.copyright{
	padding:20px 5px 30px;
	font-size:14px;
}

/*////////////////////////////////////////////*/
/* PC, Tablet(740px and up) */
@media screen and (min-width: 46.25em) {
	/* フッターナビ */
	footer #footnav-col1 > ul > li:nth-of-type(5){
		margin-bottom:30px;
	}
	footer .footnav ul.sub-menu.pc-layout{
		display:block; /* スマホ端末以外でサブメニューを表示(js/accordion.js) */
	}
	footer .footnav ul.sub-menu{
		border:none;
		margin-bottom:30px;
	}
	footer .footnav ul li{
		border-bottom:none;
	}
	footer .footnav ul.sub-menu li{
		background-color:transparent;
		border-bottom:none;
	}
	footer .footnav ul li a,
	footer .footnav ul li span.link-tl{
		display:inline-block;
		padding:0;
		padding-bottom:3px;
		font-size:15px;
	}
	footer .footnav ul li span.link-tl{
		font-weight:bold;
	}
	footer .footnav ul.sub-menu li a {
		padding:0;
		font-weight:normal;
		font-size:14px;
	}
	footer .footnav ul li a:hover,
	footer .footnav ul li a:focus{
		text-decoration:underline;
		color:#eb4b4b;
	}
	footer .footnav ul.sub-menu li a:hover,
	footer .footnav ul.sub-menu li a:focus{
		background-color:transparent;
		text-decoration:underline;
	}
	/* フッターレイアウト */
	footer .footnav{
		float:left;
		width:25%;
	}
	.footnav-wrap{
		padding:40px 20px;
		margin:0 auto;
	}
	/* ロゴ・コピーライト */
	.copyright{
		padding:0 5px 40px;
	}
}/*END media query*/
/*////////////////////////////////////////////*/
/*////////////////////////////////////////////*/
/* Desktop(1000px and up) */
@media screen and (min-width: 62.5em) {
	.footnav-wrap{
		padding:60px 0;
	}
	footer .footnav ul li a,
	footer .footnav ul li span.link-tl{
		font-size:17px;
	}
	footer .footnav ul.sub-menu li a {
		font-size:16px;
	}
}/*END media query*/
/*////////////////////////////////////////////*/

/* @@@@@@@@@@@ サイドバー @@@@@@@@@@@@@@@ */
/* =secondary
-------------------------------------------------------------- */
/* 親テーマCSSの上書き */
#secondary {
	padding:0;
	border-top: none;
}
#secondary h3 {
	margin-bottom: 10px;
	padding-bottom: 0;
	border-bottom: 0;
}
#secondary .widget_title>img {
	display:none;/* ウィジェットタイトルのアイコンを非表示にする */
}
#secondary section {
	margin-bottom: 0;
	padding: 0;
}
#secondary .columnleft section:last-child,
#secondary .columncenter section:last-child {
	margin-bottom: 0;	
}
#secondary section:last-child {
	margin-bottom: 0;
}
/* サイドナビ */
.sidenav-wrap{
	margin-bottom:30px;
	border-bottom:1px solid #ccc;
	font-size:16px;
}
.sidenav-wrap h2{
	padding:13px 10px 10px 10px;
	margin-bottom:0;
	border-top:1px solid #000;
	border-bottom:1px solid #000;
	font-weight:bold;
}
.side-catalog{
	margin-bottom:30px;
}
.side-catalog a{
	display:block;
	width:180px;
	margin-left:auto;
	margin-right:auto;
}
/* カートボタン */
.cart-side .incart-btn{
	float: none;
	margin-top: 0;
	margin-bottom:1em;
}
.cart-side .incart-btn span {
	display: inline-block;
}
.cart-side .incart-btn a {
	position: relative;
	width:200px;
	height:50px;
	margin-left:auto;
	margin-right:auto;
	background-color:#8fa252;
	padding:0;
	border-radius:2px;
}
.cart-side .incart-btn i {
	position: absolute;
	top: 17px;
	left: 20px;
	color: #fff;
}
.cart-side .incart-btn i:before{
	margin-right: 8px;
}
.cart-side .incart-btn i span{
	font-size:16px;
}
.cart-side .incart-btn .total-quant {
	position: absolute;
	top: 18px;
	left: auto;
	right: 20px;
	min-width: 17px;
	max-width: 17px;
	height: 17px;
	color: #8fa252;
	background-color: #fff;
	font-size:13px;
	line-height:17px;
}
/* カレンダー */
.calender-side{
	padding-left:10px;
	padding-right:10px;
	margin-bottom: 40px;
	max-width:340px;
	margin-left: auto;
	margin-right: auto;
}
.calender-side h3,
.calender-side .widget_welcart_calendar caption{
	font-family:"Roboto Slab" , Garamond , "Times New Roman" , "游明朝" , "Yu Mincho" , "游明朝体" , "YuMincho" , "ヒラギノ明朝 Pro W3" , "Hiragino Mincho Pro" , "HiraMinProN-W3" , "HGS明朝E" , "ＭＳ Ｐ明朝" , "MS PMincho" , serif;
}
.calender-side h3{
	font-weight:bold;
}
/*---- widget_welcart_calendar ----*/
.calender-side .widget_welcart_calendar li{
	font-size:0.9em;
}
.calender-side .this-month{
	margin-bottom:20px;
}
/*	
.calender-side .next-month{ 次の月
display:none;
}
 */
.calender-side .widget_welcart_calendar table {
	width: 100%;
	margin: 0 auto 2%;
	border: 1px solid #ccc;
	border-collapse: collapse;
	float: none;
	font-size:0.75em;
}
.calender-side .widget_welcart_calendar caption{
	font-size:1.25em;
	background-color: #edeae5;
}
.calender-side .widget_welcart_calendar th,
.calender-side .widget_welcart_calendar td{
	font-size:0.75em;
	border: 1px solid #ccc;	
	text-align: center;
}
.calender-side .widget_welcart_calendar th {
	color: #fff;
	background-color: #555;
	border: 1px solid #ccc;
	text-align: center;
}
.calender-side .widget_welcart_calendar .businessday {
	color: #262626;
	background-color: #fff0d1;
}
/* 商品カテゴリ */
.sidenav-wrap ul li{
	border-bottom:1px solid #ccc;
}
.sidenav-wrap ul.sub-menu li{
	border-bottom:none;
}
.sidenav-wrap ul li:last-child{
	border-bottom:none;
}
.sidenav-wrap ul li a{
	display:block;
	padding:13px 10px 10px 10px;
	color:#000;
}
.sidenav-wrap ul.sub-menu li a{
	padding:13px 10px 10px 10px;
}
.sidenav-wrap li a:hover,
.sidenav-wrap li a:focus{
	opacity:0.7;
	text-decoration:none;
}
/* アコーディオン開閉の+-アイコン */
.sidenav-wrap span.ac-icon{
	padding-top:13px;
	padding-bottom:10px;
}
/*---- widget_welcart_search （キーワード検索） ----*/
 #secondary .calender-side .widget_welcart_search{
	margin: 0 auto 30px;
	padding-right: 10px;
	max-width:280px;
}
.calender-side .widget_welcart_search h3{
	display:none;
}
.calender-side .widget_welcart_search ul{
	position: relative;
}
.calender-side .widget_welcart_search .searchtext {
	width: 100%;
	height: 32px;
	padding: 7px 5px;
	background: #f2f2f2;
	border: 1px solid #ccc;
	border-radius:3px;
	font-size: 16px;
	color: #000;
	line-height:1;
}
.calender-side .widget_welcart_search .searchtext:focus {
	outline: none;
}
.calender-side .widget_welcart_search .searchtext::placeholder {
/*	color: transparent;
	opacity:0.7; */
}
.calender-side .widget_welcart_search #searchsubmit{
	position: absolute;
	display: block;
	color: transparent;
	width: 32px;
	height: 32px;
	padding: 0;
	right: 0;
	top: 0;
	background-color: transparent;
	background-image:url(img/icon_search.png);
	background-size:contain;
	background-repeat:no-repeat;
	border: none;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	-webkit-transition: 500ms ease all;
	-moz-transition: 500ms ease all;
	-o-transition: 500ms ease all;
	transition: 500ms ease all;
}
.calender-side .widget_welcart_search #searchsubmit:hover {
	cursor: pointer;
	background-color: transparent;
}
.calender-side .widget_welcart_search div {/* 商品複合検索リンク */
	margin-top: .714286em;
	background-color: #fff;
	text-align: center;
}
.calender-side .widget_welcart_search div a {
	display: block;
	padding: 0.5em;
	color: #657c1b;
	border:2px solid #8fa252;
	border-radius: 3px;
	line-height: 1.5;
	font-weight:bold;
	font-size:14px;
	text-decoration:none;
	-webkit-transition: .3s ease all;
	-moz-transition: .3s ease all;
	-o-transition: .3s ease all;
	transition: .3s ease all;	
}
.calender-side .widget_welcart_search div a:hover {
	background-color: #fff;
	text-decoration: none;
	opacity:0.7;
}

/* ///////////////////////////////////////////// */
/* Mobile Large 620px */
@media screen and (min-width: 38.75em) {
	.calender-side .widget_welcart_search ul{
		width:100%;
	}
}
/* ///////////////////////////////////////////// */
/*////////////////////////////////////////////*/
/* Desktop(1000px and up) */
@media screen and (min-width: 62.5em) {
	/* カレンダー */
	.calender-side{
		padding-left:0;
		padding-right:0;
	}
}
/* ///////////////////////////////////////////// */

/* @@@@@@@@@@@@ カテゴリ・アーカイブ一覧（category.php） @@@@@@@@@@@@  */

/* =archive.php
-------------------------------------------------------------- */
/* 商品投稿の表示（cat-il→cat-lineupに変更） */
.cat-lineup{
	padding-left:10px;
	padding-right:10px;
	margin-bottom:20px;
}
.cat-lineup:after{
	content:"";
	display:table;
	clear:both;
}
.cat-lineup article{
	padding-left:5px;
	padding-right:5px;
	float:left;
	width:50%;
	margin-bottom:1em;
}
/* 
.cat-lineup article:nth-child(odd){
	clear:both;
}
 */
.cat-lineup .itemimg{
	margin-bottom:5px;
}
.cat-lineup .itemimg img{
	width:100%;
	height:auto;
	margin-left:auto;
	margin-right:auto;
	border:1px solid #ccc;
}
.cat-lineup .itemprice{
	color: #ff0000;
	font-weight: bold;
	font-size: 1.125em;
}
.cat-lineup .itemname a{
	font-weight: bold;
	color:#000;
}
.cat-lineup .itemprice em{
	color: #ff0000;
	font-size: 0.75em;
}
/* -- .post-li（ブログ投稿の表示） -- */
.post-li{
	margin-bottom:20px;
}
.post-li .post-title a{
	font-weight:bold;
}
.post-li article {
	margin-bottom: 1em;
	padding-bottom: 1em;
	border-bottom: 1px dotted #a5a5a5;
	padding-left:5px;
	padding-right:5px;
}
/* -- pagination -- */
.pagination_wrapper {
	position: relative;
	clear: both;
	overflow: hidden;
}
.pagination_wrapper ul{
	position: relative;
	left: 50%;
	float: left;
	list-style: none;
	margin-bottom: 30px;
}
.pagination_wrapper li {
	position: relative;
	left: -50%;
	margin-right: .357143em;
	float: left;
}
.pagination_wrapper li span.current,
.pagination_wrapper li a{
	display: block;
	padding: .357143em .714286em;
	text-decoration: none;
}
.pagination_wrapper li span.current {
	color: #fff;
	background-color: #bf9d6d;
	border: 1px solid #bf9d6d;
}
.pagination_wrapper li a{
	color: #333;
	background-color: #edeae5;
	border: 1px solid #edeae5;
}
.pagination_wrapper li a:hover{
	opacity:0.7;
}
/*** 舎利塔カテゴリ ***/
#content header .shari-col{
	margin-bottom:1em;
}
#content header .shari-col:after{
	content:"";
	display:table;
	clear:both;
}
#content header .shari-col .shari-img{
	float:right;
	width:40%;
	padding-left:1%;
	padding-bottom:1%;
}
#content header .shari-col .shari-img img{
	margin-left:auto;
	margin-right:auto;
}
#content header .shari-col h4{
	clear:none;
	font-weight:bold;
}
#content header .shari-col p{
	margin-bottom:1em;
}
/*////////////////////////////////////////////*/
/* PC, Tablet(740px and up) */
@media screen and (min-width: 46.25em) {
	/* 商品投稿の表示（cat-il→cat-lineupに変更） */
	.cat-lineup{
		margin-bottom:30px;
	}
	.cat-lineup article{
		padding-left:2%;
		padding-right:2%;
		float:left;
		width:33.33%;
		margin-bottom:1.8em;
		border:0px solid red;
	}
/*
	.cat-lineup article:nth-child(odd){
		clear:none;
	}
	.cat-lineup article:nth-child(4),
	.cat-lineup article:nth-child(7),
	.cat-lineup article:nth-child(10),
	.cat-lineup article:nth-child(13){
		clear:both;
	}
*/
	.cat-lineup article a{
		display:block;
		border:0px solid blue;
	}
	/* -- .post-li（ブログ投稿の表示） -- */
	.post-li{
		margin-bottom:40px;
	}
	/* -- pagination -- */
	.pagination_wrapper ul{
		margin-bottom: 60px;
	}
	/*** 舎利塔カテゴリ ***/
	#content header .shari-col .shari-img{
		width:25%;
	}
}
/* ///////////////////////////////////////////// */
/*////////////////////////////////////////////*/
/* Desktop(1000px and up) */
@media screen and (min-width: 62.5em) {
	.cat-lineup{
		padding-left:0;
		padding-right:0;
	}
}
/* ///////////////////////////////////////////// */

/* @@@@@@@@@@@@ 投稿記事・固定ページ（page.php、single.php、content.php） @@@@@@@@@@@@  */

/* = .entry-content,item-description
-------------------------------------------------------------- */
.entry-article{
	margin-bottom:40px;
}
.entry-content{
	padding-left:10px;
	padding-right:10px;
	margin-bottom:0;
}
.entry-meta {
	margin-bottom: 20px;	
	padding-left: 10px;
	padding-right: 10px;
	border-left: none;
	text-align:right;
}
.entry-meta .date:before {
	display: none;
}
/* -- p -- */
.entry-content p,
.item-description p {
	margin-bottom: 1em;
	line-height: 1.5;	
}
/* -- table -- */
.entry-content table,
.item-description table {
	width: 100%;
	margin-bottom: 0;
	border: none;
	border-collapse: collapse;
	border-spacing:0;
	word-wrap: break-word;
	overflow-wrap: break-word;
}
.entry-content th,
.item-description th {
	padding: 10px;
	background-color: #edeae5;
	border: 1px solid #ccc;
	font-weight:bold;
}
.entry-content td,
.item-description td {
	padding: 10px;
	border: 1px solid #ccc;
}
/* -- ul + ol -- */
.entry-content ul,
.item-description ul{
	margin:0;
	padding:0;
	list-style: none;
}
.entry-content ol,
.item-description ol {
	margin: 0;
	padding-left: 1.5em;
	list-style-type: decimal;
	list-style-position:outside;
}
.entry-content ul li,
.item-description ul li {
	list-style: none;
	line-height: 1.5;
}
.entry-content ol li,
.item-description ol li {
	list-style: decimal;
	line-height: 1.5;
}
.entry-content ul.disc{
	padding-left: 20px;
}
.entry-content ul.disc li{
	list-style-type:disc;
}
/* -- h1,h2,h3,h4,h5 -- */
.entry-content h1,
.item-description h1,
.entry-content h2,
.item-description h2,
.entry-content h3,
.item-description h3,
.entry-content h4,
.item-description h4,
.entry-content h5,
.item-description h5,
.entry-content h6,
.item-description h6{
	clear:none;
}

.entry-content h1,
.item-description h1 {
	font-size: 1.25em;
	margin-bottom: 1em;
	line-height:1.25;
	font-weight:bold;
}
.entry-content h2,
.item-description h2 {
	font-size: 1.125em;
	border-bottom: none;
	margin-bottom: 1em;
	padding-bottom: 0;
	line-height: 1.25;	
	font-weight:bold;
}
.entry-content h3,
.item-description h3 {
	margin-bottom: 0.5em;
	padding-left: 0;
	border-left: none;
	line-height: 1.25;
	font-weight:bold;	
}
.entry-content h4,
.item-description h4 {
	margin-bottom: 0.5em;
	padding: 0;
	background-color: transparent;
	font-weight:bold;
}
.entry-content h5,
.item-description h5 {
	margin-bottom: 0.5em;
}
.entry-content h6,
.item-description h6 {
	color: #000;
	margin-bottom: 0.5em;
}
/* -----------------------------
 ページネーション（お知らせ投稿用）
-------------------------------- */
.pagination{
	margin-bottom:40px;
	text-align:center;
}
.pagination li a,
.pagination li > span{
	display:block;
	margin:3px 0;
	padding:2px 7px;
	border:1px solid #ccc;
	color:#000;
	font-size:11px;
	text-decoration:none;
}
.pagination li > span{
	background-color:#e7e7e7;
}
.pagination li a:hover,
.pagination li a:focus{
	background-color:#e7e7e7;
}
.pagination li a.prev,
.pagination li a.next{
	font-weight:bold;
	color:#666;
	border:none;
}
.pagination li{
	display:inline-block;
}
/* -----------------------------
 お知らせ投稿
-------------------------------- */
.single-news .entry-article{
	margin-bottom:20px;
}
.single-news .entry-content{
	max-width:960px;
	width:93%;
	margin-left:auto;
	margin-right:auto;
	padding:15px 10px;
	border:2px dotted #bcd192;
	border-radius: 8px;
}

/*////////////////////////////////////////////*/
/* PC, Tablet(740px and up) */
@media screen and (min-width: 46.25em) {
	.entry-article{
		margin-bottom:60px;
	}
	/* -- h1,h2,h3,h4,h5 -- */
	.entry-content h1,
	.item-description h1 {
		font-size: 1.5em;
		margin-bottom:1.4em;
		text-align:center;
	}
	.entry-content h2,
	.item-description h2 {
		font-size: 1.25em;
		margin-bottom:0.8em;
	}
	/* -----------------------------
	 ページネーション（お知らせ投稿用）
	-------------------------------- */
	.pagination{
		margin-bottom:60px;
	}
	.pagination li a,
	.pagination li > span{
		margin:5px 2px;
		padding:6px 12px;
		font-size:14px;
	}
	.pagination li a.prev,
	.pagination li a.next{
		font-size:16px;
	}
	.pagination li a.prev:hover,
	.pagination li a.prev:focus,
	.pagination li a.next:hover,
	.pagination li a.next:focus{
		background-color:transparent;
		text-decoration:underline;
	}

	/* -----------------------------
	 お知らせ投稿
	-------------------------------- */
	.single-news .entry-article{
		margin-bottom:40px;
	}
	.single-news .entry-content{
		width:auto;
		margin-left:10px;
		margin-right:10px;
		padding: 30px;
		border:2px dotted #bcd192;
		border-radius: 16px;
		font-size: 18px;
	}



}
/* ///////////////////////////////////////////// */
/*////////////////////////////////////////////*/
/* Desktop(1000px and up) */
@media screen and (min-width: 62.5em) {
	/* -- h1,h2,h3,h4,h5 -- */
	.entry-content h1,
	.item-description h1 {
		font-size: 1.5em;
		margin-bottom:1.4em;
	}
	.entry-content h2,
	.item-description h2 {
		font-size: 1.25em;
	}
	.single-news .entry-content{
		margin-left:0;
	}
}
/* ///////////////////////////////////////////// */

/* @@@@@@@@@@@@ コメントは非表示 @@@@@@@@@@@@  */
/* =comments.php
-------------------------------------------------------------- */
.comments-area{
	padding-top:0;
	border-top: none;
}


/* @@@@@@@@@@@@ 検索結果ページ（search.php） @@@@@@@@@@@@  */
/* =search.php
-------------------------------------------------------------- */
/* 商品検索の表示（search-il→search-lineupに変更） */
.search-lineup{
	padding-left:10px;
	padding-right:10px;
	margin-bottom:20px;
}
.search-lineup:after{
	content:"";
	display:table;
	clear:both;
}
.search-lineup article{
	padding-left:5px;
	padding-right:5px;
	float:left;
	width:50%;
	margin-bottom:1em;
}
.search-lineup .itemimg{
	margin-bottom:5px;
}
.search-lineup .itemimg img{
	margin-left:auto;
	margin-right:auto;
	border:1px solid #ccc;
}
.search-lineup .itemprice{
	color: #ff0000;
	font-weight: bold;
	font-size: 1.125em;
}
.search-lineup .itemname a{
	font-weight: bold;
	color:#000;
}
.search-lineup .itemprice em{
	color: #ff0000;
	font-size: 0.75em;
}
/*////////////////////////////////////////////*/
/* PC, Tablet(740px and up) */
@media screen and (min-width: 46.25em) {
	/* 商品投稿の表示（cat-il→search-lineupに変更） */
	.search-lineup{
		margin-bottom:30px;
	}
	.search-lineup article{
		padding-left:2%;
		padding-right:2%;
		float:left;
		width:33.33%;
		margin-bottom:1.8em;
		border:0px solid red;
	}
}
/* ///////////////////////////////////////////// */
/*////////////////////////////////////////////*/
/* Desktop(1000px and up) */
@media screen and (min-width: 62.5em) {
	.search-lineup{
		padding-left:0;
		padding-right:0;
	}
}
/* ///////////////////////////////////////////// */

/* @@@@@@@@@@@@ 404エラーページ（404.php） @@@@@@@@@@@@  */
/* =404.php
-------------------------------------------------------------- */
.error-404 .page-content {
	padding: 3em 10px;
	text-align: center;
}
.error-404 .page-content h2 {
	font-size: 1.5em;
}
.error-404 .page-content p {
	font-weight: normal;
	margin-bottom:1.5em;
}
.error-404 .page-content div {
	margin-top: .714286em;
}

/* @@@@@@@@@@@@@@@@@@@@@@ スライダー @@@@@@@@@@@@@@@@@@@@@@ */
/* -------------------------------
 スライダー 共通CSS
---------------------------------- */
/* スライドを印刷時には画像にする設定 */
.slider-printImg{
	display:none;
}
@media print{
	.shopvisual#slider{
		display: none !important;
	}
	.slider-printImg {
		display: block;
	}
	.slider-printImg img {
		width: 100%;
		margin: 0 auto;
	}
}
/* ▼画像が一瞬縦並びになる問題を修正 */
.shopvisual#slider{
	display: none;
}
.shopvisual#slider.slick-initialized{
	display: block; /*slick-initializedが付与されたら表示*/
	overflow:hidden;
}
/* ▲画像が一瞬縦並びになる問題を修正 */
.shopvisual .slick-slide,
.shopvisual .slick-slide > div,
.shopvisual .slick-slide > div li,
.shopvisual .slick-slide > div li img{ /* 画像の下の僅かな余白を無しにする */
	line-height:1;
	vertical-align:bottom;
}
.shopvisual a{
	outline: 0 !important; /* タッブした時の枠線を削除 */
	display:block;
}
.shopvisual-wrap{
	position:relative;
	margin-bottom:20px;
	height: 54.05vw; /* 60.81vw(画像の縦横比 740x400) */
	/* ページの途中までスクロールして別ページへ行き、バックボタンで戻ると、毎回スライドの高さ分だけガタつくので、スライドが表示されていない時でも高さを固定 */
}
.shopvisual#slider{
	width: 100%;
	margin: 0 auto;
	position:relative;
}
/* -------------------------------
トップページ スライド
---------------------------------- */
.shopvisual#slider .slick-arrow{
	display:block;
	position:absolute;
	top: 50%;
	bottom:auto;
	height: 100%;
	width:10%;
	border-style: none;
	outline: 0 !important;
	background-color:transparent;
	z-index:1500;
}
.shopvisual#slider .slick-arrow.slick-prev{
	left:0;
}
.shopvisual#slider .slick-arrow.slick-next{
	left:auto;
	right:0;
}
.shopvisual#slider .slick-arrow.slick-prev:before,
.shopvisual#slider .slick-arrow.slick-next:before{
	font-family: 'icomoon';
	opacity:0.8;
	background: #fff;
	border-radius: 100%;
	color: #000;
	cursor: pointer;
	display:block;
	width: 22px;
	height: 22px;
	margin-left:auto;
	margin-right:auto;
}
.shopvisual#slider .slick-arrow.slick-prev:before{
	content: "\f104";
}
.shopvisual#slider .slick-arrow.slick-next:before{
	content: "\f105";
}
/*////////////////////////////////////////////*/
/* PC, Tablet(740px and up) */
@media screen and (min-width: 46.25em) {
	/* -------------------------------
	トップページ スライド
	---------------------------------- */
	.shopvisual-wrap{
		height: 33.12vw; /* 60.81vw(画像の縦横比 1600x530) */
		margin-bottom:40px;
	}
	.shopvisual#slider .slick-arrow.slick-prev:before,
	.shopvisual#slider .slick-arrow.slick-next:before{
		font-size:34px;
		line-height:1.2;
		width: 40px;
		height: 40px;
	}
}
/*////////////////////////////////////////////*/
/*////////////////////////////////////////////*/
/* Desktop(1190px and up) */
@media print, screen and (min-width: 1190px) {
	.shopvisual-wrap{
		height: auto;
	}
	/* slickをセンターモード（両端見切れ状態）にした場合の隙間を調整 */
	.shopvisual li {
		margin: 0 13px;
	}
	.shopvisual#slider .slick-arrow.slick-prev{
		left:5%;
	}
	.shopvisual#slider .slick-arrow.slick-next{
		right:5%;
	}

}
/* ///////////////////////////////////////////// */

/* @@@@@@@@@@@@@@@@@@@@@@ トップページ @@@@@@@@@@@@@@@@@@@@@@ */
/* =front-page.php
-------------------------------------------------------------- */

/* -------------------------------
ご挨拶
---------------------------------- */
.topWelcomeSection .section-inner{
	max-width:900px;
	padding-left:0;
	padding-right:0;
}
.welcome-message{
	background-color:#f3f4ec;
	padding:1.25em 10px;
}
.welcome-message:after{
	content:"";
	display:table;
	clear:both;
}
.topWelcomeSection .section-inner:after{
	content:"";
	display:table;
	clear:both;
}
.topWelcomeSection h2 img{
	margin-left:auto;
	margin-right:auto;
}
.topWelcomeSection .img-shoptop-welcome01{
	float:right;
	width:30%;
	max-width:120px;
	padding-left:1%;
	padding-bottom:1%;
}
/*////////////////////////////////////////////*/
/* PC, Tablet(740px and up) */
@media screen and (min-width: 46.25em) {

	.topWelcomeSection .section-inner{
		border:1px solid #8fa252;
		padding:3px;
	}
	.welcome-message{
		background-color:transparent;
		border:1px solid #8fa252;
		padding:0.8em 10px 1em;
		background-image:url(./img/shoptop_welcome01.png);
		background-size: 15% auto;
		background-repeat:no-repeat;
		background-position:98% 15%;
		text-align:center;
	}
	.topWelcomeSection h2{
		margin-bottom:10px;
	}
	.topWelcomeSection p{
		display:inline-block;
	}
}
/* ///////////////////////////////////////////// */

/* -------------------------------
お知らせ
---------------------------------- */
.newsSection .h1-wrap{
	margin-bottom:10px;
}
.newsSection .h1-wrap h1{
	float:left;
	width:77%;
}
.newsSection .h1-wrap a{
	display:block;
	float:right;
	max-width:160px;
	width:20%;
	padding: 10px 0 8px;
	background-color:#8fa252;
	text-align:center;
	color:#fff;
	line-height: 1;
	text-decoration:none;
}
.newsSection .h1-wrap a:after {
	font-family: 'icomoon';
	content: "\f105";
	padding-left: 0.5em;
	line-height: 1;
}
.newsSection .h1-wrap a:hover{
	opacity:0.7;
}
.newsSection h3{
	clear:none;
}
.newsSection:after{
	content:"";
	display:table;
	clear:both;
}
.newsSection dl.news-col{
	padding:30px 5px 5px;
	border-bottom:1px dotted #a5a5a5;
}
.newsSection dl.news-col:first-child{
	padding:20px 5px 5px;
}
.newsSection dl.news-col dt{
	position:relative;
	padding-bottom:5px;
}
.newsSection dl.news-col dt .new-mark{
	position:absolute;
	top:0;
	left:7.3em;
}
.newsSection dl.news-col dd{
	padding-bottom:5px;
}
.newsSection dl.news-col dd h3{
	margin-bottom:5px;
	font-weight:bold;
}
.newsSection dl.news-col dd .new-txt{
	color:#000;
}
.newsSection dl.news-col dd .new-txt a{
	display:block;
	text-decoration:none;
	color:#000;
}
.newsSection dl.news-col dd a:hover{
	opacity:0.7;
}
/*////////////////////////////////////////////*/
/* PC, Tablet(740px and up) */
@media screen and (min-width: 46.25em) {
	.newsSection h1{
		text-align:left;
	}
	.newsSection dl.news-col{
		overflow:hidden;
		padding:20px 5px 10px;
	}
	.newsSection dl.news-col:after{
		content:"";
		display:block;
		clear:both;
	}
	.newsSection dl.news-col dt{
		float:left;
		width:10em;
	}
	.newsSection dl.news-col dd{
		margin-left:10em;
	}
}
/* ///////////////////////////////////////////// */
/*////////////////////////////////////////////*/
/* Desktop(1000px and up) */
@media screen and (min-width: 62.5em) {
	.newsSection dl.news-col dt .new-mark{
		left:8.2em;
	}
	.newsSection dl.news-col dd .new-txt{
		font-size:0.9em;
	}
}
/* ///////////////////////////////////////////// */
/* -------------------------------
カテゴリ
---------------------------------- */
.topCatSection li:after{
	content:"";
	display:table;
	clear:both;
}
.topCatSection li{
	padding-bottom:1em;
	margin-bottom:1em;
	border-bottom:1px dotted #a5a5a5;
}
.topCatSection li:last-child{
	margin-bottom:0;
}
.topCatSection li a{
	display:block;
	color:#000;
	text-decoration:none;
}
.topCatSection li img{
	float:left;
	width:38%;
	padding-right:3%;
	padding-bottom:3%;
}
.topCatSection li h4{
	clear:none;
	font-weight:bold;
	font-size:1.125em;
	margin-bottom:0.4em;
}
.topCatSection li h4:after {
	font-family: 'icomoon';
	content: "\f105";
	padding-left: 0.7em;
	line-height: 1.5;
}
.topCatSection li .cat-catch{
	color:#92743b;
	font-size:0.875em;
	font-weight:bold;
}
.topCatSection li p{
	clear:both;
}
/*////////////////////////////////////////////*/
/* PC, Tablet(740px and up) */
@media screen and (min-width: 46.25em) {
	.topCatSection li{
		float:left;
		width:30.6%;
		margin-right:4%;
		padding-bottom:0;
		margin-bottom:0;
		border-bottom:none;
	}
	.topCatSection li:last-child{
		margin-right:0;
	}
	.topCatSection li img{
		float:none;
		width:100%;
		padding-right:0;
		padding-bottom:0;
		margin-bottom:1em;
	}
	.topCatSection li .cat-catch{
		font-size:1em;
		margin-bottom:0.5em;
	}
}
/* ///////////////////////////////////////////// */
/*////////////////////////////////////////////*/
/* Desktop(1000px and up) */
@media screen and (min-width: 62.5em) {
	.topCatSection li{
		width:28%;
		margin-right:8%;
	}
}
/* ///////////////////////////////////////////// */
/* -------------------------------
ランキング（ウィジェット）
---------------------------------- */
.topRankSection h2{
	display:none;/* ウィジェットから出力のため非表示 */
}
.topRankSection ul:after{
	content:"";
	display:block;
	clear:both;
}
.topRankSection li{
	float:left;
	width:48%;
	margin-bottom:1em;
	margin-left:2%;
}
.topRankSection li:nth-child(odd){
	clear:both;
	margin-left:0;
	margin-right:2%;
}
.topRankSection li a{
	color:#000;
	display:block;
	text-decoration:none;
}
.topRankSection li a:hover{
	opacity:0.7;
}
.topRankSection li .itemimg{
	position:relative;
}
.topRankSection li .itemimg:before{
	position:absolute;
	top:-5px;
	left:0;
	font-family: 'icomoon';
	content: '\e903';
	font-size:36px;
	z-index: 1;
	dislay:block;
	width:36px;
	height:36px;
	color:#bda366;
	text-align:center;
	line-height:1;
}
.topRankSection li .itemimg:after{
	position: absolute;
	top: 9px;
	left:0;
	content: '1';
	font-size:17px;
	font-weight: bold;
	z-index: 2;
	dislay:block;
	width:36px;
	height:36px;
	color: #fff;
	text-align:center;
	line-height: 1;
}
.topRankSection li:nth-child(2) .itemimg:before{
	color:#b4b4b4;
}
.topRankSection li:nth-child(2) .itemimg:after{
	content:"2";
}
.topRankSection li:nth-child(3) .itemimg:before{
	color:#c58270;
}
.topRankSection li:nth-child(3) .itemimg:after{
	content:"3";
}
.topRankSection li:nth-child(4) .itemimg:before{
	color:#c58270;
}
.topRankSection li:nth-child(4) .itemimg:after{
	content:"4";
}

.topRankSection li img{
	margin-left:auto;
	margin-right:auto;
	margin-bottom:5px;
	border:0px solid #ccc;
}
.topRankSection li a img:hover {
		opacity: 1;
}
.topRankSection .itemname{
	font-weight:bold;
}
.topRankSection .itemprice{
	color:#ff0000;
	font-weight:bold;
	font-size:1.125em;
}
.topRankSection .itemprice em{
	color:#ff0000;
	font-size:0.75em;
}

/*////////////////////////////////////////////*/
/* PC, Tablet(740px and up) */
@media screen and (min-width: 46.25em) {
	.topRankSection li{
		width:22.75%;
		margin-bottom:0;
		margin-left:0;
		margin-right:3%;
	}
	.topRankSection ul{
		padding-top:30px;
		padding-bottom:30px;
		border-top:1px dotted #000;
		border-bottom:1px dotted #000;
	}
	.topRankSection li:nth-child(odd){
		clear:none;
		margin-right:3%;
	}
	.topRankSection li:nth-child(4){
		margin-right:0;
	}
/*
	.topRankSection li .itemimg:before{
		width:35px;
		height:35px;
	line-height:2;
	}
*/
	.topRankSection li img{
		width:100% !important;
	}
	.topRankSection .itemname{
		font-size:0.875em;
	}
	.topRankSection .itemprice{
		color:#ff0000;
		font-weight:bold;
		font-size:1em;
	}
}
/* ///////////////////////////////////////////// */
/* -------------------------------
安田松慶堂オリジナル線香
---------------------------------- */
.topOriginalSection li{
	margin-bottom:2em;
}
.topOriginalSection li:last-child{
	margin-bottom:0;
}
.topOriginalSection li a{
	color:#000;
	text-decoration:none;
}
.topOriginalSection li h4{
	font-weight: bold;
	font-size: 1.125em;
	margin-bottom: 0.4em;
	text-align:center;
}
.topOriginalSection li img{
	margin-left:auto;
	margin-right:auto;
	margin-bottom:1em;
}
/*////////////////////////////////////////////*/
/* PC, Tablet(740px and up) */
@media screen and (min-width: 46.25em) {
	.topOriginalSection ul:after{
		content:"";
		display:block;
		clear:both;
	}
	.topOriginalSection li{
		float:left;
		width:48%;
		margin-left:2%;
	}
	.topOriginalSection li:nth-child(odd){
		clear:both;
		margin-left:0;
		margin-right:2%;
	}
	.topOriginalSection li:nth-child(3),
	.topOriginalSection li:nth-child(4){
		margin-bottom:0;
	}
}
/* ///////////////////////////////////////////// */
/* -------------------------------
店舗のご案内
---------------------------------- */
.topStoreSection{
	padding-top:40px;
	padding-bottom:40px;
	background-color:#f3f4ec;
}
.topStoreSection .h1-wrap h1{
	text-align:center;
}
.topStoreSection p{
	margin-bottom:1em;
}
/* 銀座本店 */
.topStoreSection .ginza-access{
	margin-bottom:40px;
}
.topStoreSection .access-info{
	margin-bottom:30px;
}
.topStoreSection .ginza-shop-photo{
	margin-bottom:10px;
}
.topStoreSection .ginza-photo{
	margin-bottom:30px;
}
.topStoreSection .ginza-photo:after{
	content:"";
	display:table;
	clear:both;
}
.topStoreSection .ginza-photo li{
	float:left;
	width:33.33%;
	padding-left:1%;
	padding-right:1%;
}
/*** GoogleMap ***/
.topStoreSection .g-map-wrap {
	max-width: 650px;
	margin-bottom: 5px;
	padding: 10px;
	border: 1px solid #000;
}
.topStoreSection .g-map{
	position: relative;
	padding-bottom: 100%;/* 縦÷横 */
	height: 0;
	overflow: hidden;
}
.topStoreSection .g-map iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
}
.topStoreSection .go-googlemap{
	margin-bottom:1.25em;
}
.topStoreSection .go-googlemap a{
	color:#000;
}
/* 百貨店 */
.topStoreSection .depart-access h3{
	font-size:1.125em;
	font-weight:bold;
	margin-bottom: 1em;
	border-bottom:1px solid #000;
	padding-bottom:3px;
}
.topStoreSection .depart-access ul{
	margin-bottom: 30px;
}
.topStoreSection .depart-access ul.lastCh{
	margin-bottom: 0;
}
.topStoreSection .depart-access ul:after{
	content:"";
	display:table;
	clear:both;
}
.topStoreSection .depart-access li{
	float:left;
	width:50%;
	padding-right:2%;
	padding-left:2%;
	margin-bottom:1em;
}
.topStoreSection .depart-access li a{
	display:block;
	padding:15px 0;
	border:1px solid #000;
	line-height:1;
	text-align:center;
	text-decoration:none;
	color:#000;
}
.topStoreSection .depart-access li a:after{
	font-family: 'icomoon';
	content: "\f105";
	padding-left:1em;
	line-height:1;
}
.topStoreSection .depart-access li a:hover{
	background: rgba(136, 136, 136, .1);
	transition: all 0.1s ease-out;
}
/*////////////////////////////////////////////*/
/* PC, Tablet(740px and up) */
@media screen and (min-width: 46.25em) {
	.topStoreSection{
		padding-top:60px;
		padding-bottom:60px;
	}
	/* 銀座本店 */
	.topStoreSection .ginza-access{
		margin-bottom:60px;
	}
	.topStoreSection .ginza-access:after{
		content:"";
		display:table;
		clear:both;
	}
	.topStoreSection .access-info{
		float:left;
		width:48%;
		margin-bottom:0;
	}
	.topStoreSection .access-g-map{
		float:right;
		width:48%;
	}
	.topStoreSection address{
		font-size:16px;
	}

/* 百貨店 */
.topStoreSection .depart-access h3{
	font-size:1.25em;
	margin-bottom: 1em;
}
.topStoreSection .depart-access li{
		width:25%;
	}
}
/* ///////////////////////////////////////////// */
/* -------------------------------
店舗情報
---------------------------------- */
.topShopInfoSection{
	padding-top:40px;
	padding-bottom:40px;
	background-color:#edeae5
}
.topShopInfoSection p{
	margin-bottom:1em;
}
.topShopInfoSection a{
	font-weight:bold;
}
.topShopInfoSection .info-col{
	border-bottom:1px dotted #a5a5a5;
	padding-bottom:30px;
	margin-bottom:30px;
}
.topShopInfoSection .info-col.lastCh{
	border-bottom:0;
	padding-bottom:0;
	margin-bottom:0;
}
.topShopInfoSection .info-waku{
	padding:15px 10px;
	border:1px solid #000;
	margin-bottom:1em;
}
.topShopInfoSection .info-waku.lastCh{
	margin-bottom:0;
}
.topShopInfoSection .info-right-wrap{
	margin-bottom:40px;
}
/* お支払い、発送、返品情報 */
.topShopInfoSection .img-howtopay-new,
.topShopInfoSection .img-howtopay-3d{
/*	margin-bottom:1em; */
}
/* 個人情報保護、特定商取引 */
.topShopInfoSection .privacy-law h4{
	font-weight:bold;
}
.topShopInfoSection .privacy-info{
	margin-bottom:1em;
}
/*////////////////////////////////////////////*/
/* PC, Tablet(740px and up) */
@media screen and (min-width: 46.25em) {
	.topShopInfoSection{
		padding-top:60px;
		padding-bottom:60px;
	}
	.topShopInfoSection h2{
		font-size:1.25em;
		text-align:center;
	}
	.topShopInfoSection .info-col{
		border-bottom:none;
		padding-bottom:0;
		margin-bottom:40px;
	}
	.topShopInfoSection .info-waku{
		padding:20px;
	}
	/* お問い合わせ先情報 */
	.topShopInfoSection .info-contact:after{
		content:"";
		display:table;
		clear:both;
	}
	.topShopInfoSection .info-contact .info-waku{
		float:left;
		width:50%;
		margin-right:2%;
	}
	.topShopInfoSection .info-contact .info-waku.lastCh{
		width:46%;
		margin-right:0;
		margin-left:0;
	}
	/* お支払い、発送、返品情報 */
	.topShopInfoSection .info-left-wrap{
		float:left;
		width:48%;
	}
	.topShopInfoSection .info-right-wrap{
		float:right;
		width:48%;
	}
	/* 個人情報保護、特定商取引 */
	.topShopInfoSection .privacy-law{
		font-size:0.875em;
		clear:both;
	}
	.topShopInfoSection .privacy-law:after{
		content:"";
		display:table;
		clear:both;
	}
	.topShopInfoSection .privacy-info{
		float:left;
		width:48%;
		margin-bottom:0;
	}
	.topShopInfoSection .law-info{
		float:right;
		width:48%;
	}
}
/* ///////////////////////////////////////////// */





