@charset "UTF-8";
/*
Theme Name: yasudaShokeido2021
Author: jtvan
Description: This is my original theme.
Version: 1.0
*/

/* ------------------- Break point memo------------------- 
WideScreen(min-width:1660px) 最大横幅1620+40px（トップスライドで使用）
★Letina(min-width:1230px) 最大横幅1190+40px
★Desktop(min-width:1140px) 最大横幅1100+40px
iPad(min-width:770px)
★PC, Tablet(min-width:768px)
mobile(min-width:480px)

 印刷時のレイアウトを保つため、
 最大幅でメディアクエリ指定するときは、@media only screen and (max-width: XXXpx)
 最小幅でメディアクエリ指定するときは、@media print, screen and (min-width: XXXpx) 
*/

/* ------------------- CSS Tips ------------------- */
/*Debug*/
.hoge{
	border:1px solid red;
}
/* テスト環境メッセージ */
#dev-message{
	background-color:#ff0000;
	color:#fff;
	text-align:center;
	font-weight:bold;
	display:none;
}
#wpadminbar{
	/* mmenu（jQueryスライドメニュー）を導入するとWP管理バーの上部に余白ができるため */
	position:fixed !important;
}
/*Scroll*/
::-webkit-scrollbar {
	width: 12px;
}
::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	border-radius: 10px;
}
::-webkit-scrollbar-thumb {
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5);
}
.pre-scroll{
	overflow:scroll;
	border:1px solid #a5a5a5;
	padding:5px;
}
/*border-box*/
* {
	-webkit-box-sizing: border-box;
		 -moz-box-sizing: border-box;
					box-sizing: border-box;
}
*:before,
*:after {
	-webkit-box-sizing: border-box;
		 -moz-box-sizing: border-box;
					box-sizing: border-box;
}
/*clear*/
.clear{
	clear: both;
}
/*margin*/
.mar1em{	margin-bottom:1em;}
.mar0{	margin-bottom:0;}
.mar5{	margin-bottom:5px;}
.mar10{	margin-bottom:10px;}
.mar15{	margin-bottom:15px;}
.mar20{	margin-bottom:20px;}
.mar30{	margin-bottom:30px;}
.mar40{	margin-bottom:40px;}
.mar50{	margin-bottom:50px;}
.mar60{	margin-bottom:60px;}
.mar70{	margin-bottom:70px;}
.mar80{	margin-bottom:80px;}


/* フォント太さ、色 */
em{
	font-style:normal;
	font-weight:bold;
}
address{
	font-style:normal;
}
.f-bold{
	font-weight:bold;
}
.f-narrow{
	letter-spacing:-1px;
}
.f-black{	color:#000000;}
.f-red{	color:#ff0000;}
.f-white{	color:#ffffff;}
.f-green{	color:#268785;}
.f-blue{	color:#3A468E;}
.f-deepred{	color:#b6002a;}
.f-purple{	color:#8a2be2;}
/* フォントサイズ */
.f-150{	font-size:150%;}
.f-120{	font-size:120%;}
.f-110{	font-size:110%;}
.f-95{	font-size:95%;}
.f-90{	font-size:90%;}
.f-85{	font-size:85%;}
.f-80{	font-size:80%;}
/* フォントその他 */
.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:"* ";
}
.f-circle{
	margin-left:1em;
	text-indent:-1em;
}
.f-circle:before{
	font-family: 'icomoon';
	content: "\f111";
}
.f-square{
	margin-left:1em;
	text-indent:-1em;
}
.f-square:before{
	font-family: 'icomoon';
	content: "\f0c8";
}
.nowrap{
	white-space: nowrap;
}
.ib{
	display:inline-block;
}
/* テキスト配置 */
.txt-center{
	text-align:center;
}
.txt-right{
	text-align:right;
}
.txt-left{
	text-align:left;
}
/*hidden,visible*/
.visible-xxs,
.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
	display: none !important;
}
.visible-xxs-block,/* 追加 */
.visible-xxs-inline,/* 追加 */
.visible-xxs-inline-block,/* 追加 */
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
	display: none !important;
}
/* ▼追加 */
@media only screen and (max-width: 479px) {
	.visible-xxs {
		display: block !important;
	}
	table.visible-xxs {
		display: table !important;
	}
	tr.visible-xxs {
		display: table-row !important;
	}
	th.visible-xxs,
	td.visible-xxs {
		display: table-cell !important;
	}
}
@media only screen and (max-width: 479px) {
	.visible-xxs-block {
		display: block !important;
	}
}
@media only screen and (max-width: 479px) {
	.visible-xxs-inline {
		display: inline !important;
	}
}
@media only screen and (max-width: 479px) {
	.visible-xxs-inline-block {
		display: inline-block !important;
	}
}
/* ▲追加 */
@media only screen and (max-width: 767px) {
	.visible-xs {
		display: block !important;
	}
	table.visible-xs {
		display: table !important;
	}
	tr.visible-xs {
		display: table-row !important;
	}
	th.visible-xs,
	td.visible-xs {
		display: table-cell !important;
	}
}
@media only screen and (max-width: 767px) {
	.visible-xs-block {
		display: block !important;
	}
}
@media only screen and (max-width: 767px) {
	.visible-xs-inline {
		display: inline !important;
	}
}
@media only screen and (max-width: 767px) {
	.visible-xs-inline-block {
		display: inline-block !important;
	}
}
@media print, screen and (min-width: 768px) and (max-width: 1140px) {
	.visible-sm {
		display: block !important;
	}
	table.visible-sm {
		display: table !important;
	}
	tr.visible-sm {
		display: table-row !important;
	}
	th.visible-sm,
	td.visible-sm {
		display: table-cell !important;
	}
}
@media print, screen and (min-width: 768px) and (max-width: 1140px) {
	.visible-sm-block {
		display: block !important;
	}
}
@media print, screen and (min-width: 768px) and (max-width: 1140px) {
	.visible-sm-inline {
		display: inline !important;
	}
}
@media print, screen and (min-width: 768px) and (max-width: 1140px) {
	.visible-sm-inline-block {
		display: inline-block !important;
	}
}
@media print, screen and (min-width: 1140px) and (max-width: 1230px) {
	.visible-md {
		display: block !important;
	}
	table.visible-md {
		display: table !important;
	}
	tr.visible-md {
		display: table-row !important;
	}
	th.visible-md,
	td.visible-md {
		display: table-cell !important;
	}
}
@media print, screen and (min-width: 1140px) and (max-width: 1230px) {
	.visible-md-block {
		display: block !important;
	}
}
@media print, screen and (min-width: 1140px) and (max-width: 1230px) {
	.visible-md-inline {
		display: inline !important;
	}
}
@media print, screen and (min-width: 1140px) and (max-width: 1230px){
	.visible-md-inline-block {
		display: inline-block !important;
	}
}
@media print, screen and (min-width: 1230px) {
	.visible-lg {
		display: block !important;
	}
	table.visible-lg {
		display: table !important;
	}
	tr.visible-lg {
		display: table-row !important;
	}
	th.visible-lg,
	td.visible-lg {
		display: table-cell !important;
	}
}
@media print, screen and (min-width: 1230px) {
	.visible-lg-block {
		display: block !important;
	}
}
@media print, screen and (min-width: 1230px) {
	.visible-lg-inline {
		display: inline !important;
	}
}
@media print, screen and (min-width: 1230px) {
	.visible-lg-inline-block {
		display: inline-block !important;
	}
}
@media only screen and (max-width: 479px) {
	.hidden-xxs {
		display: none !important;
	}
}
@media only screen and (max-width: 767px) {
	.hidden-xs {
		display: none !important;
	}
}
@media print, screen and (min-width: 768px) and (max-width: 1140px) {
	.hidden-sm {
		display: none !important;
	}
}
@media print, screen and (min-width: 1140px) and (max-width: 1230px) {
	.hidden-md {
		display: none !important;
	}
}
@media print, screen and (min-width: 1230px) {
	.hidden-lg {
		display: none !important;
	}
}
/* PC幅以上で表示 */
@media print, screen and (min-width: 1019px) {
	.visible-mdlg {
		display: none !important;
	}
}

@media print, screen and (max-width: 1140px) {
	.hidden-mdlg {
		display: none !important;
	}
}
/* スマホとタブレットは非表示 */
.hidden-ip-ib,
.hidden-ip{
	display:none;
}
@media (min-width:770px) {
	.hidden-ip-ib{
		display:inline-block !important;
	}
	.hidden-ip{
		display:block;
	}
}
/* ------------------- CSS Reset ------------------- */
*{
	margin:0;
	padding:0;
}
/* IE でスクロールバーがコンテンツに重なる問題を修正
@-ms-viewport{
	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,textarea,select {
	font-weight:inherit;
	font-size:inherit;
	font-family:inherit;
	*font-size:100%;
	margin: 0;
	vertical-align: baseline;
	*vertical-align: middle;
	width:100%;
}
input:-webkit-autofill { /* 自動入力時に付く背景色を無しにする */
	-webkit-box-shadow: 0 0 0px 1000px white inset;
}
input[type="checkbox"],
input[type="radio"] {
	padding: 0;
}
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 */
}
ul{
	margin:0;
	padding:0;
}
ul > li{
	list-style-type: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;
}
ul.whitedisc li:before {
	content: "〇";
	padding-right:3px;
}
ul.whitedisc li {
	margin-left: 1em;
	text-indent: -1em;
}
dl.whitedisc dt{
	font-weight: bold;
	font-size:18px;
}
dl.whitedisc dt:before{
	content: "〇 ";
}
dl.whitedisc dt{
	margin-left: 1em;
	text-indent: -1em;
}
dl.whitedisc  dd{
	margin-bottom:1em;
}
dl.whitedisc  dd.lastCh{
	margin-bottom:0;
}
/* リンク */
a {
	color: #115ea6;
	color: #268785;
	cursor:pointer;
	outline: none;/* クリック時の点線を消す */
	text-decoration: none;
}
a:hover,
a:focus {
	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;
}
/* 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;
}
.img-resp{
	width:100%;
	height:auto;
	display: block;
}
/* gaiyouで画像タグ出力（画像が無い場合は非表示） */
img.img-none{
	display:none;
}
img.img-block{
	display:block;
}
/* 画像キャプション */
.img-cap{
	font-size:16px;
}
/* スクロールでふわっと表示 */
.fade-in {
	/* アニメーションの継続時間 */
	transition-duration: 2s;
	-moz-transition-duration: 2s;
	-webkit-transition-duration: 2s;
	-o-transition-duration: 2s;
	/* 遅延時間 */
	transition-delay: 0s;
	-moz-transition-delay: 0s;
	-webkit-transition-delay: 0s;
	-o-transition-delay: 0s;
}
.fade-up {
	/* 1つ目の値はhoujou.tip.jsで追加したopacity 2つ目はtransform */
	/* アニメーションの継続時間 */
	transition-duration: 1s, 2s;
	-moz-transition-duration: 1s, 2s;
	-webkit-transition-duration: 1s, 2s;
	-o-transition-duration: 1s, 2s;
	/* 遅延時間 */
	transition-delay: 0s, 1s;
	-moz-transition-delay: 0s, 1s;
	-webkit-transition-delay: 0s, 1s;
	-o-transition-duration: 1s, 2s;
}
/* スクロールでふわっと表示(Waypointで指定する場合) */
.targetWaypointShow{
	opacity: 0;	/* 要素を非表示にしておくCSS */
}
/* 横いっぱいに広がる画像の表示領域を調整 */
.cover-image{
	position: relative;
	overflow: hidden;
	background-repeat:no-repeat;
	background-position:50% 50%;
	margin-left:auto;
	margin-right:auto;
	max-width:1600px;
	background-size:cover;
	width: 100vw;
	height: calc(100vw * 0.23);/* 画像の縦横比 370/1600 = 23% */
	background-image:url(./img/company_message01.jpg);
}

/* 横いっぱいに広がった画像がスクロールで縦に動く */
.cover-scroll-image{
	width: 100%;
	height: 90vh;
	background-image: url(./img/misato_factory1600.jpg);
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center top;
	transition-property: background-position;
	transition-duration: .7s;
	transition-delay: .05s;
}

/* ボタンのデザイン */
.btn{
	/* 送信ボタンなどのiOSでのデフォルトスタイルをリセット */
	-webkit-box-sizing: content-box;
	-webkit-appearance: button;
	appearance: button;
	border: none;
	box-sizing: border-box;
	cursor: pointer;
	/* 以下デザイン */
	background-color: #bf9d6d;
	border: 1px solid #bf9d6d;
	border-radius: 4px;
	display: inline-block;
	padding:2px 12px 0 12px;
	margin-bottom: 0;
	color: #fff;
	font-size: 90%;
	font-weight: 400;
	line-height: 1;
	height:40px; 
	text-align: center;
	white-space: nowrap;
	vertical-align: bottom;
}
/* 上に戻るリンク */
.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;
}
/* ピンクボタン（通販用） */
.btn-pink{
	display:inline-block;
	background-color:#ffffff;
	border:1px solid #bd757d;
	border-radius:2px;
	color:#bd757d;
	padding:.6180469716em 1em;
	margin-bottom:0.5em;
	margin-right:0.5em;
	margin-left:0.5em;
	font-weight:bold;
	cursor: pointer;
	/* アニメーション効果 */
	position: relative;
	overflow: hidden;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
	z-index: 1;
}
.btn-pink:hover{
	background-color:#bd757d;
	border-color:#bd757d;
	color:#fff;
}
/* 投稿の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;
}

/* インスタグラムリンク（トップページ、共通フッタ） */
a.insta-link{
	color:#000;
	text-decoration:none;
	display:block;
	text-align:center;
	border:0px solid blue;
}
a.insta-link:hover{
	opacity:0.7;
}
.insta-logo-wrap{
	line-height:1;
	vertical-align:bottom;
	display:inline-block;
	text-align:left;
	margin-bottom:5px;
	border:0px solid red;
}
.insta-logo-wrap:after{
	content:"";
	display:table;
	clear:both;
}
img.icon-insta{
	float:left;
	width:50px;
}
.insta-logo-wrap span{
	display:block;
	margin-left:60px;
	font-size:13px;
}
img.logo-insta{
	margin-left:55px;
	width:120px;
}
a.insta-link p{
	font-size:13px;
}
/* インスタグラムリンク（フッター） */
.footnav-insta a.insta-link{
	margin-top:40px;
}
.footnav-insta a.insta-link p{
	display:none;
}

/*////////////////////////////////////////////*/
/* PC, Tablet(768px and up) */
@media print, screen and (min-width:768px){
	/* 上に戻るリンク */
	.goTop{
		right:16px;
		bottom:16px;
	}
	.goTop img{
		width:56px;
	}
	/* 詳しくはこちらボタン（黒） */
	.more-btn.black-btn{
			width:240px;
	}
	.more-btn.black-btn a{
		font-size:18px;
	}
	/* ピンクボタン（通販用） */
	.btn-pink{
		font-size:1.125rem;
	}
	/* インスタグラムリンク（フッター） */
	.footnav-insta{
		text-align:right;
	}
	.footnav-insta a.insta-link{
		margin-top:-100px;
		display:inline-block;
	}
	/* インスタグラムリンク（トップページ） */
	.instaSection{
		margin-bottom:60px;
	}
	.instaSection a.insta-link{
		display:table;
		margin:0 auto;
	}
	.instaSection .insta-logo-wrap{
		display:table-cell;
		width:215px;
		margin-bottom:0;
	}
	.instaSection img.icon-insta{
		width:55px;
	}
	.instaSection .insta-logo-wrap span{
		margin-left:65px;
		font-size:14px;
	}
	.instaSection img.logo-insta{
		margin-left:60px;
		width:140px;
	}
	.instaSection a.insta-link p{
		display:table-cell;
		font-size:16px;
		text-align:left;
	}
}/*END media query*/
/*////////////////////////////////////////////*/
/*////////////////////////////////////////////*/
/* Desktop(1140px and up) */
@media print, screen and (min-width: 1140px) {
	/* 横いっぱいに広がる画像の表示領域を調整 */
	.cover-image{
		width: 100%;
		height: 300px;
	}
	/* インスタグラムリンク（トップページ） */
	.instaSection{
		margin-bottom:80px;
	}
}/*END media query*/
/*////////////////////////////////////////////*/
/* @@@@@@@@@@@@@@@@@@@@@@ 基本構造 @@@@@@@@@@@@@@@@@@@@@@ */

html{
	font-size:16px;
	background:#FFF;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0); /* リンクタップ時のスマホのハイライトカラーを無効にする */
}
body{
/* 	font-family: Arial, Roboto, "Droid Sans", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif; */
	font-family: Arial, Roboto, "Droid Sans", "游ゴシック体", YuGothic, "游ゴシック Medium", "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;/* スマホやモダンブラウザ向けにフォントを綺麗に見せる */
	color:#000;
}
/* フォント */
.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サーバーにアップ後適用★（section大タイトル、商品紹介の円の中） */
	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;
}
.f-ygbold{ /* クロムで bodyに「游ゴシック Medium」を指定すると font-weight:boldで太字が滲む問題を回避 */
	font-family: Arial, Roboto, "Droid Sans", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
	font-weight:bold;
}
/* ▼トップページのみ読み込み時にフェードイン */
body.home {
	animation: homeFadeIn 2s ease 0s 1 normal;
	-webkit-animation: homeFadeIn 2s ease 0s 1 normal;
}
@keyframes homeFadeIn {
	0% {opacity: 0}
	100% {opacity: 1}
}
@-webkit-keyframes homeFadeIn {
	0% {opacity: 0}
	100% {opacity: 1}
}
/* ▲トップページのみ読み込み時にフェードイン */
.wrapper{
	overflow:hidden;
}
.container{
	padding-top:40px;
	padding-bottom:20px;
}
.container:after{
	content:"";
	display:table;
	clear:both;
}
footer{
	border-top:4px solid #cccccc;
	border-bottom:15px solid #8fa252;
	background-color:#eaeae2;
}
/* section */
section{
	margin-bottom:50px;
}
section.lastCh{
	margin-bottom:0;
}
section:after{
	content:"";
	display:table;
	clear:both;
}
section .h1-wrap{
	text-align:center;
	padding-left:10px;
	padding-right:10px;
	margin-bottom:20px;
}
section .h1-wrap h1{
	font-size:24px;
	margin-bottom:5px;
	line-height:1;
}
section .h1-wrap i{
	display:inline-block;
	padding-bottom:5px;
	color:#8fa252;
}
section .h1-wrap .h1-en{
	line-height:1;
	margin-bottom:20px;
}
section h2.line-gold{
	margin-bottom:1em;
	padding-left:10px;
	padding-right:10px;
	border-bottom:2px solid #bf9d6d;
	color:#975e0e;
	font-size:24px;
}
section h2.line-gold small{
	font-size:20px;
}
section h3.bg-gold{
	margin-bottom:1em;
	padding-top:7px;
	padding-bottom:5px;
	font-size:20px;
	font-weight:bold;
	text-align:center;
	background-color:#bf9d6d;
	color:#fff;
}
@media print, screen and (min-width:768px){
	section h3.bg-gold{
		margin-bottom:26px;
	}
}
section h4.line-black{
	margin-bottom:1em;
	padding-left:10px;
	padding-right:10px;
	font-size:18px;
	font-weight:bold;
	border-bottom:1px solid #000;
	text-align:center;
}
@media print, screen and (min-width:768px){
	section h4.line-black{
		font-size:20px;
	}
}
.bread,
.global-menu,
.header-inner,
.eyecatch-inner{
	max-width:1190px;
	margin-left:auto;
	margin-right:auto;
}
.footer-inner{
	max-width:960px;
	margin-left:auto;
	margin-right:auto;
}
/* ---------------------------------------
 ２カラム用の基本構造（取り扱い商品）
------------------------------------------ */
.container.prod2col{
	max-width:1160px;
	margin-left:auto;
	margin-right:auto;
	padding-top:20px;
}
/* 仏間の設計、仏壇の木材、仏壇・位牌について */
.container.prod2col .h1-wrap{
	margin-top:20px;
}
/*////////////////////////////////////////////*/
/* PC, Tablet(768px and up) */
@media print, screen and (min-width:768px){
	section{
		margin-bottom:80px;
	}
	section.lastCh{
		margin-bottom:0;
	}
	section .h1-wrap{
		margin-bottom:40px;
	}
	section .h1-wrap i{
		padding-top:5px;
		padding-bottom:10px;
	}
	footer{
		border-top:none;
	}
	/* ---------------------------------------
	 ２カラム用の基本構造（取り扱い商品）
	------------------------------------------ */
	.main{
		float:right;
		width:100%;
		margin-left: -213px;
		padding-left: 0;
		padding-right: 0;
		padding-top:14px;
	}
/*
	.container.prodtop .main{
		padding-top:30px;
	}
*/
	.home .container{
		padding-top:60px;
	}
	.main-inner{
		margin-left:213px;
	}
	.side{
		float:left;
		width:200px;
		padding:0 5px;
	}
}/* END media query */
/*////////////////////////////////////////////*/

/*////////////////////////////////////////////*/
/* Desktop(1140px and up) */
@media print, screen and (min-width: 1140px) {
	html,body{
		font-size:18px;
	}
	.container{
		padding-top:50px;
	}
	.home .container{
		padding-top:80px;
	}
	section .h1-wrap h1{
		font-size:32px;
	}
	/* ---------------------------------------
	 ２カラム用の基本構造（取り扱い商品）
	------------------------------------------ */
	.main{
		margin-left: -240px;
	}
	.main-inner{
		margin-left:240px;
	}
	.side{
		padding:0;
	}
}/*END media query*/
/*////////////////////////////////////////////*/

/* @@@@@@@@@@@@@@@@@@@@@@ ヘッダー @@@@@@@@@@@@@@@@@@@@@@ */

.header-inner{
	position:relative;
	height:64px;
	padding-left:10px;
	padding-right:10px;
}
.header-inner:after{
	content:"";
	display:table;
	clear:both;
}
/* トグルボタン */
#navbtn{
	position:absolute;
	top:14px;
	right:10px;
	padding:5px;
	cursor:pointer;
	text-decoration: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:"MENU";
	color:#bf9d6d;
	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:#bf9d6d;
	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:10px;
	height:10px;
/*	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 #bf9d6d !important;
	color:rgba(0,0,0,.7) !important;
}
.mm-menu.mm-theme-white .menu li {
	font-weight:bold;
}
.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:rgba(250,113,155,1) !important;/* 親メニューの矢印 */
}
.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-left:10px;
	padding-bottom:2px;
	
}
.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:45%;
	height:100%;
	/* IE11でテーブルの要素が横にはみ出す時の修正 */
	table-layout:fixed;
	word-wrap: break-word;
	overflow-wrap: break-word;
}
h1.site a{
	display:table-cell;
	vertical-align:middle;
}
h1.site a img{
	width:140px;
}
/* アイコンメニュー */
.top-menu-sma{
	position:absolute;
	top:10px;
	right:52px;
	display:table;
	width:auto;
	border:0px solid green;
}
.search-icon-wrap{
	display:table-cell;
	width:52px;
	height:46px;
	vertical-align:middle;
	text-align: center;
	border-right:1px solid #dddddd;
}
#search-icon {
	font-size: 18px;
	cursor: pointer;
	color: #8fa252;
	-webkit-transition: 500ms ease all;
	-moz-transition: 500ms ease all;
	transition: 500ms ease all;
}
#search-icon:hover {
	opacity:0.7;
}
a.icon-shop-link{
	display:table-cell;
	width:52px;
	height:46px;
	vertical-align:middle;
	color: #8fa252;
	text-align: center;
}
.fa-shopping-bag{
	font-size: 18px;
}

/* お問い合わせ */
.contact-bottom,
.contact-side{
	margin-bottom:40px;
}
.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-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-menu {
	position: fixed;
	width: 100%;
	height: 80px;/* WP管理画面の上部バナーが無い状態で調整する */
	top: -80px;
	left: 0;
	right: 0;
	white-space: nowrap;
	z-index: 9999;
	background-color:#bf9d6d;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: 500ms ease all;
	-moz-transition: 500ms ease all;
	transition: 500ms ease all;
}
#search-menu.toggled {
	top: 0;
	opacity: 1;
	visibility: visible;
}
.search-wrap {
	position: relative;
	margin: 0 auto;
	padding: 0 15px;
}
.search-wrap input {
	width: 100%;
	height:34px;
	padding: 4px 10px;
	background: transparent;
	border: none;
	border-radius:3px;
	border-bottom: 1px solid #fff;
	font-size: 1.1em;
	color: #fff;

}
.search-wrap input:focus {
	outline: none;
}
.search-wrap input::placeholder {
	color: #fff;
	opacity:0.7;
}
.search-wrap button {
	position: absolute;
	display: block;
	width: 35px;
	right: 18px;
	top: 3px;
	background: transparent;
	border: none;
	color: #fff;
	font-size: 1.5em;
	-webkit-transition: 500ms ease all;
	-moz-transition: 500ms ease all;
	transition: 500ms ease all;
}
.search-wrap button:hover {
	color: #fff;
}
.search-wrap button:focus {
	outline: none;
}
 /* スマホ用ポップアップ検索 */
#search-menu .search-wrap {
	margin: 1.4em auto 0 auto;
	max-width:360px;
}
#search-menu .search-wrap input {
	background-color: #DCD8CF;
	border-bottom: none;
	color: #000;
}
#search-menu .search-wrap input:-webkit-autofill{
	/* Chromのオートコンプリートで、検索ボックスの背景白・文字黒になるのを防ぐ */
	background-color: #DCD8CF;
	-webkit-box-shadow: 0 0 0 1000px #DCD8CF inset;
	-webkit-text-fill-color: #000;
}
/*
#search-menu .search-wrap input::placeholder{
	opacity:1;
	color:#aaa;
}
#search-menu .search-wrap button {
	color:#bbb;
}
*/
/* 背景白バージョン */
.search-wrap.normal{
	max-width:280px;
	padding:0;
}
@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%;
	color: #a5a5a5;
}
.search-wrap.normal button:hover {
	color: #a5a5a5;
}

/*////////////////////////////////////////////*/
/* PC, Tablet(768px and up) */
@media print, screen and (min-width: 768px) {
	.header-inner{
		height:80px;
	}
	/* トグルボタン */
	#navbtn{
		display:none;
	}
	/* ロゴとキャッチ */
	h1.site{
		float:left;
		width:160px;
	}
	/* トップメニュー */
	.top-menu{
		float:right;
		display:table;
		height:100%;
		/* IE11でテーブルの要素が横にはみ出す時の修正 */
		table-layout:fixed;
		word-wrap: break-word;
		overflow-wrap: break-word;
	}
	/* オンラインショップへ */
	.top-menu .go-online a{
		display:block;
		padding-left:15px;
		padding-right:15px;
	}
	.top-menu .go-online a .fa-shopping-bag:before{
		color:#8fa252;
	}
	.top-menu .go-online-txt{
		display:none;
	}
	/* お問い合わせ（トップメニュー） */
	.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-top-sma,
	.contact-bottom{
		margin-bottom:80px;
	}
	.contact-bottom{
		width:430px;
		margin-right:auto;
		margin-left:auto;
	}
	.contact-bottom .contact-message{
		text-align:center;
		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;
	}

	/* グローバルナビ */
	.global-menu-wrap{
		background-color:#bf9d6d;
	}
	.global-menu:after{
		content:"";
		display:table;
		clear:both;
	}
	#gnav{
		display:block !important;
	}
	.gnav{
		float:left;
		width:64%;
	}
	.gnav-submenu{
		float:right;
		width:36%;
	}
	.gnav-submenu:after{
		content:"";
		display:table;
		clear:both;
	}
	.gnav-submenu .search-wrap{
		float:right;
		width:10em;
		margin-top:5px;
	}
	.gnav-submenu .search-wrap input {
		font-size: 1em;
		padding-left:5px;
		height:30px;
		background-color:#bf9d6d;
	}
	.gnav-submenu .search-wrap input:-webkit-autofill{
		/* Chromのオートコンプリートで、検索ボックスの背景白・文字黒になるのを防ぐ */
		background-color:#bf9d6d;
		-webkit-box-shadow: 0 0 0 1000px #bf9d6d inset;
		-webkit-text-fill-color: #fff;
	}
	.gnav-submenu .search-wrap button {
		right: 10px;
		top: 0;
	}
	.gnav-submenu .search-wrap button i:before{
		font-size:20px;
	}
	.gnav-submenu .contact-mail{
		display:block;
		float:right;
		padding-top:12px;
		font-size: 14px;
		color:#fff;
		text-decoration:none;
	}
	.gnav-submenu .contact-mail:hover{
		color:#fbd713;
	}
	.gnav-submenu .contact-mail .fa-envelope:before{
		padding-right:7px;
	}
	.gnav ul{
		overflow:hidden;
		font-size:0;
		margin-left:1%;
	}
	.gnav ul:after{
		content:"";
		display:block;
		clear:both;
	}
	.gnav li{
		float:left;
		width:auto;
	}
	.gnav li a{
		display:block;
		font-size:14px;
		font-weight:bold; 
		color:#fff;
		line-height:1.15;
		padding:15px 8px;
		height:2.98em;
		text-decoration:none;
		text-align:center;
	}
	.gnav li a:hover,
	.gnav li a:focus{
		background-color:transparent;
		color:#fbd713;
	}
	/* 
	.gnav li.current-menu-item a{
		color:#fbd713;
	}
	*/
}/*END media query*/
/*////////////////////////////////////////////*/
/*////////////////////////////////////////////*/
/* Desktop(992px and up) */
@media print, screen and (min-width: 992px) {

	/* ロゴとキャッチ */
	h1.site{
		width:220px;
	}
	h1.site a img{
		width:190px;
	}
	/* オンラインショップへ */
	.top-menu .go-online a{
		padding:7px 10px 5px;
		color:#000;
		font-size:90%;
		border:1px solid #8fa252;
	}
	.top-menu .go-online a:hover{
		opacity:0.7;
	}
	.top-menu .go-online a .fa-shopping-bag:before{
		padding-right:7px;
	}
	.top-menu .go-online-txt{
		display:inline-block;
	}
	/* お問い合わせ（トップメニュー） */
	.top-menu .contact-message{
		font-size:13px;
	}
	.top-menu .contact-tel{
		padding-left:15px;
		padding-right:15px;
	}

	/* グローバルナビ */
	.gnav{
		width:68%;
	}
	.gnav-submenu{
		width:32%;
	}
	.gnav-submenu .search-wrap{
		width:12em;
	}
	.gnav-submenu .search-wrap button {
		right: 15px;
	}
	.gnav-submenu .contact-mail{
		font-size: 16px;
	}
	.gnav li a{
		font-size:16px;
	}
}/*END media query*/
/*////////////////////////////////////////////*/
/*////////////////////////////////////////////*/
/* Desktop(1140px and up) */
@media print, screen and (min-width: 1140px) {
	.header-inner{
		padding-left:0;
		padding-right:0;
	}
	/* グローバルナビ */
	.gnav{
		width:68%;
		border:0px solid blue;
	}
	.gnav-submenu{
		width:32%;
	}
	.gnav-submenu .search-wrap{
		margin-top:10px;
	}
	.gnav-submenu .search-wrap button {
		right: 15px;
		top:-3px;
	}
	.gnav-submenu .contact-mail{
		padding-left:10px;
		padding-right:10px;
		padding-top:15px;
	}
	.gnav li a{
		font-size:18px;
		padding:17px 15px 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;
}
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(768px and up) */
@media print, screen and (min-width: 768px) {
	/* フッターナビ */
	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(1140px and up) */
@media print, screen and (min-width:1140px){
	.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*/
/*////////////////////////////////////////////*/
/* @@@@@@@@@@@ サイドバー （取り扱い商品）@@@@@@@@@@@@@@@ */
/* サイドナビ */
.sidenav-wrap{
	margin-bottom:40px;
	border-bottom:1px solid #ccc;
	font-size:16px;
}
.sidenav-wrap h2{
	padding:13px 10px 10px 10px;
	border-top:1px solid #000;
	border-bottom:1px solid #000;
	font-weight:bold;
}
.side-catalog{
	margin-bottom:40px;
}
.side-catalog a{
	display:block;
	width:180px;
	margin-left:auto;
	margin-right:auto;
}
.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;
}

/*////////////////////////////////////////////*/
/* PC, Tablet(768px and up) */
@media print, screen and (min-width: 768px) {
}/*END media query*/
/*////////////////////////////////////////////*/
/* @@@@@@@@@@@ アイキャッチ @@@@@@@@@@@@@@@ */
.eyecatch{
	background-position: center 35%;
	background-size: cover;
	background-repeat: no-repeat;
	width: 100%;
}
.eyecatch.bg-pc{
	display:none;
}
.eyecatch-inner{
	display: table;
	height:160px;
	width: 100%;
	text-align:center;
	/* IE11でテーブルの要素が横にはみ出す時の修正 */
	table-layout:fixed;
	word-wrap: break-word;
	overflow-wrap: break-word;
}
.eyecatch .h1-wrap{
	display: table-cell;
	width: 100%;
	vertical-align: middle;
}
.eyecatch h1{
	font-size:1.625rem;
	color:#fff;
	text-shadow: 0px 0px 3px rgba(0,0,0,1);
}
/* アイキャッチの文字色黒 */

.eyecatch-wrap-ginza .eyecatch h1,/* 銀座ショールーム */
.eyecatch-wrap-butsugu .eyecatch h1{/* 仏具 */
	color:#000;
	text-shadow: 0px 0px 3px rgba(255,255,255,1);
}
/*////////////////////////////////////////////*/
/* PC, Tablet(768px and up) */
@media print, screen and (min-width:768px){
	.eyecatch.bg-pc{
		display:table;
	}
	.eyecatch.bg-sma{
		display:none;
	}
	.eyecatch h1{
		font-size:1.88rem;
	}
	/* アイキャッチの文字色黒（PCのみ） */
	.eyecatch-wrap-butsuzo .eyecatch h1,/* 仏像 */
	.eyecatch-wrap-ihai .eyecatch h1{/* 位牌 */
		color:#000;
		text-shadow: 0px 0px 3px rgba(255,255,255,1);
	}
}/*END media query*/
/*////////////////////////////////////////////*/
/*////////////////////////////////////////////*/
/* Desktop(1140px and up) */
@media print, screen and (min-width: 1140px) {
	.eyecatch-inner{
		text-align:left;
		padding-left:2em;
	}
}/*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;
}
/* パンクズが長くなるため、スマホで「お知らせ」投稿記事のタイトルリンクを非表示にする */
.single-news .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*/
/*////////////////////////////////////////////*/

/* @@@@@@@@@@@@@@@@@@@@@@ スライダー @@@@@@@@@@@@@@@@@@@@@@ */

/* -------------------------------
トップページ、銀座ショールーム、三郷工場仏匠共通
---------------------------------- */

/* スライドを印刷時には画像にする設定 */
.slider-printImg{
	display:none;
}
@media print{
	.takumivisual#slider,
	.ginzavisual#slider,
	.mainvisual#slider {
		display: none !important;
	}
	.slider-printImg {
		display: block;
	}
	.slider-printImg img {
		width: 100%;
		margin: 0 auto;
	}
}
/* ▼画像が一瞬縦並びになる問題を修正 */
.takumivisual#slider,
.ginzavisual#slider,
.mainvisual#slider{
	display: none;
}
.takumivisual#slider.slick-initialized,
.ginzavisual#slider.slick-initialized,
.mainvisual#slider.slick-initialized{
	display: block; /*slick-initializedが付与されたら表示*/
	overflow:hidden;
}
/* ▲画像が一瞬縦並びになる問題を修正 */
.takumivisual .slick-slide,
.ginzavisual .slick-slide,
.mainvisual .slick-slide,
.takumivisual .slick-slide > div,
.ginzavisual .slick-slide > div,
.mainvisual .slick-slide > div,
.takumivisual .slick-slide > div li,
.ginzavisual .slick-slide > div li,
.mainvisual .slick-slide > div li,
.takumivisual .slick-slide > div li img,
.ginzavisual .slick-slide > div li img,
.mainvisual .slick-slide > div li img{ /* 画像の下の僅かな余白を無しにする */
	line-height:1;
	vertical-align:bottom;
}
.takumivisual a,
.ginzavisual a,
.mainvisual a{
	outline: 0 !important; /* タッブした時の枠線を削除 */
	display:block;
}
.takumivisual-wrap,
.ginzavisual-wrap,
.mainvisual-wrap{
	position:relative;
	margin-bottom:20px;
}
.mainvisual-wrap{ /* 2024-10-30追加 */
	margin-bottom:10px;
}
.takumivisual#slider,
.ginzavisual#slider,
.mainvisual#slider{
	width: 100%;
	margin: 0 auto;
	position:relative;
}
.ginzavisual#slider img,
.mainvisual#slider img{
	width: 100%;
}
/* -------------------------------
トップページスライド
---------------------------------- */
/* スライド１枚目のロゴをフェードイン */
.mainvisual .slide-item01 .slide-logo{
	animation: slide01LogoFadeIn 7s ease 0s 1 normal;
	-webkit-animation: slide01LogoFadeIn 7s ease 0s 1 normal;
}
@keyframes slide01LogoFadeIn {
	0% {opacity: 0}
	100% {opacity: 1}
}
@-webkit-keyframes slide01LogoFadeIn {
	0% {opacity: 0}
	100% {opacity: 1}
}
.mainvisual .slide-logo{
	position:absolute;
	top:0;
	left:43.5%;
	z-index:1;
	width:13%;
	height:auto;
	margin: 4% auto 0 auto;
	opacity: 1;
	max-width:80px;
	border:0px solid red;
}
.mainvisual p{
	position:absolute;
	top:13%;
	right:6%;
	display:inline-block;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	text-align:left;
	color:#fff;
	font-size:12px;
	line-height:1.4;
	text-shadow: 0px 0px 3px rgba(0,0,0,1);
}
.mainvisual .slide-item02 p{
	top:10%;
	right:8%;
}
.mainvisual .slide-item03 p{
	top:10%;
	right:auto;
	left:5%;
}
.mainvisual .slick-dots{ /* ドットの位置調整 */
	bottom: 15px;
}
.mainvisual .slick-dots li{ /* ドット間の余白 */
	margin:0 8px;
}
.mainvisual .slick-dots li button:before{ /* ドットのデザイン変更 */
	font-family: 'icomoon';
	content:"\f111";
	font-size:6px;
	opacity: .35;
	color: #fff;
	text-shadow:0 0 1px rgba(0,0,0,0.4);
}
.mainvisual .slick-dots li.slick-active button:before{
	opacity: .70;
	color:#8fa252;
	font-size: 6px;
}
/* -------------------------------
銀座本店ショールーム スライド
---------------------------------- */
/* スライド１枚目の紹介文をフェードイン */
.ginzavisual .slide-item01 p{
	animation: slide01GinzaFadeIn 8s ease 0s 1 normal;
	-webkit-animation: slide01GinzaFadeIn 8s ease 0s 1 normal;
}
@keyframes slide01GinzaFadeIn {
	0% {opacity: 0}
	100% {opacity: 1}
}
@-webkit-keyframes slide01GinzaFadeIn {
	0% {opacity: 0}
	100% {opacity: 1}
}
.ginzavisual p{
	position:absolute;
	display:inline-block;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	text-align:left;
	font-size:12px;
	line-height:1.4;
	color:#fff;
	text-shadow: 0px 0px 3px rgba(0,0,0,1);
}
.ginzavisual p span{
 text-combine-upright: all;
}
.ginzavisual .slide-item01 p.tl{
	top:8%;
	right:6%;
	font-size:13px;
}
.ginzavisual .slide-item01 p{
	top:8%;
	right:20%;
}
.ginzavisual .slide-item02 p{
	top:6%;
	left:4%;
}
/* -------------------------------
三郷工場 仏匠 スライド
---------------------------------- */
.takumivisual#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;
}
.takumivisual#slider .slick-arrow.slick-prev{
	left:0;
}
.takumivisual#slider .slick-arrow.slick-next{
	left:auto;
	right:0;
}
.takumivisual#slider .slick-arrow.slick-prev:before,
.takumivisual#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;
}
.takumivisual#slider .slick-arrow.slick-prev:before{
	content: "\f104";
}
.takumivisual#slider .slick-arrow.slick-next:before{
	content: "\f105";
}
/*////////////////////////////////////////////*/
/* PC, Tablet(768px and up) */
@media print, screen and (min-width: 768px) {
/* -------------------------------
トップページスライド
---------------------------------- */
	.mainvisual-wrap{
		margin-bottom:0;
	}
	.mainvisual .slide-logo{
		top:5%;
		left:46.5%;
		width:7%;
	}
	.mainvisual .slide-item02 .slide-logo{
		top:0;
		left:22%;
	}
	.mainvisual .slide-item03 .slide-logo{
		top:25%;
		left:12%;
	}
	.mainvisual p{
		top:12%;
		right:10%;
		font-size:16px;
		line-height:2;
	}
	.mainvisual .slide-item02 p{
		right:auto;
		left:30%;
	}
	.mainvisual .slide-item03 p{
		top:16%;
		left:20%;
	}
	.mainvisual .slick-dots{
		bottom: 15px; /* ドットの位置調整 */
	}
	.mainvisual .slick-dots li{ /* ドット間の余白 */
		margin:0 12px;
	}
	.mainvisual .slick-dots li button:before{ /* ドットのデザイン変更 */
		font-size: 13px;
		text-shadow:0 0 2px rgba(0,0,0,0.4);
	}
	.mainvisual .slick-dots li.slick-active button:before{
		font-size: 13px;
	}
	/* 現在表示のスライドをズーム */
	.mainvisual .slick-slide img{
		transform: scale(1);
		transition: 40s ease;
	}
	.mainvisual .slick-slide.slick-current img {
		transform: scale(1.2);
	}
	/* -------------------------------
	銀座本店ショールーム スライド
	---------------------------------- */
	.ginzavisual-wrap{
		margin-bottom:40px;
	}
	.ginzavisual .slide-item01 p.tl{
		right:19%;
		font-size:16px;
		line-height:1.8;
	}
	.ginzavisual .slide-item01 p{
		right:29%;
		font-size:14px;
		line-height:1.8;
	}
	.ginzavisual .slide-item02 p{
		top:13%;
		left:15%;
		font-size:16px;
		line-height:1.8;
	}
	/* -------------------------------
	三郷工場 仏匠 スライド
	---------------------------------- */
	.takumivisual-wrap{
		margin-bottom:40px;
	}
	.takumivisual#slider .slick-arrow.slick-prev:before,
	.takumivisual#slider .slick-arrow.slick-next:before{
		font-size:34px;
		line-height:1.2;
		width: 40px;
		height: 40px;
	}
}/*END media query*/
/*////////////////////////////////////////////*/
/*////////////////////////////////////////////*/
/* Desktop(1140px and up) */
@media print, screen and (min-width: 1140px) {
	/* -------------------------------
	トップページスライド
	---------------------------------- */
	.mainvisual .slide-logo{
		top:8%;
	}
	.mainvisual .slide-item02 .slide-logo{
		top:1%;
		left:23%;
	}
	.mainvisual .slide-item03 .slide-logo{
		top:13%;
		left:13%;
	}
	.mainvisual p{
		top:14%;
		right:16%;
		font-size:20px;
	}
	.mainvisual .slide-item02 p{
		top:12%;
		left:30%;
	}
	.mainvisual .slide-item03 p{
		top:23%;
	}
	.mainvisual .slick-dots{
		bottom: 20px; /* ドットの位置調整 */
	}
	/* -------------------------------
	銀座本店ショールーム スライド
	---------------------------------- */
	.ginzavisual .slide-item01 p.tl{
		font-size:26px;
	}
	.ginzavisual .slide-item01 p{
		font-size:22px;
	}
	.ginzavisual .slide-item02 p{
		top:18%;
		left:17%;
		font-size:22px;
	}
}/*END media query*/
/*////////////////////////////////////////////*/
/*////////////////////////////////////////////*/
/* Letina(1660px and up) */
@media print, screen and (min-width:1660px){
	.mainvisual .slide-item03 p{
		top:18%;
	}
	.mainvisual .slick-dots{
		bottom: 50px; /* ドットの位置調整 */
	}
}/*END media query*/
/*////////////////////////////////////////////*/

/* @@@@@@@@@@@@@@@@@@@@@@ トップページ @@@@@@@@@@@@@@@@@@@@@@ */

/* ---------------------------------------
 newsSection お知らせ
------------------------------------------ */
.newsSection .h1-wrap{
	margin-bottom:20px;
}
.newsSection .section-inner{
	max-width:960px;
	margin-left:auto;
	margin-right:auto;
	padding-right:10px;
	padding-left:10px;
}
.newsSection .news-list{
	margin-bottom:20px;
}
.newsSection dl.news-col{
	padding:10px 5px 5px;
	border-bottom:1px dotted #a5a5a5;
}
.newsSection dl.news-col dt{
	position:relative;
	padding-bottom:5px;
}
.newsSection dl.news-col dt .new-mark{
	position:absolute;
	top:0;
	left:7.5em;
}
.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;
}
.newsSection a.go-news-archive{
	display:block;
	width:240px;
	margin-left:auto;
	margin-right:auto;
	padding:16px;
	text-align:center;
	border:1px solid #ccc;
	color:#999;
	font-weight:bold;
	font-size:18px;
	line-height:1;
	text-decoration:none;
}
.newsSection a.go-news-archive:hover{
	opacity:0.7;
}
.newsSection a.go-news-archive i:before{
	padding-right:0.5em;
}
/*////////////////////////////////////////////*/
/* PC, Tablet(768px and up) */
@media print, screen and (min-width:768px){
	.newsSection .news-list{
		margin-bottom:30px;
	}
	.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;
	}
}/*END media query*/
/*////////////////////////////////////////////*/
/*////////////////////////////////////////////*/
/* Desktop(1140px and up) */
@media print, screen and (min-width: 1140px) {
	.newsSection .news-list{
		margin-bottom:40px;
	}
	.newsSection dl.news-col dt .new-mark{
		left:8.2em;
	}
	.newsSection dl.news-col dd .new-txt{
		font-size:16px;
	}
}/*END media query*/
/*////////////////////////////////////////////*/

/* ---------------------------------------
 topAboutSection わたしたちについて
------------------------------------------ */
.topAboutSection h3{
	margin-bottom:30px;
	font-size:24px;
	line-height:1.6;
}
.topAboutSection .about-shop h3{
	font-size:20px;
}
.topAboutSection .backimage{
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: cover;
	color: #fff;
	padding: 70px 0 80px;
	text-align: center
}
.topAboutSection .about-ginza .backimage{
	background-image:url(./img/top_about_ginza.jpg);
}
.topAboutSection .about-shogon .backimage{
	background-image:url(./img/top_about_shogon.jpg);
}
.topAboutSection .about-shop .backimage{
	background-image:url(./img/top_about_shop.jpg);
}
.topAboutSection .col-wrap{
	background-color: #8fa252;
}
.topAboutSection .txt{
	padding:40px 20px;
	color:#fff;
}
/*////////////////////////////////////////////*/
/* PC, Tablet(768px and up) */
@media print, screen and (min-width: 768px) {
	.topAboutSection .col-wrap{
		display:table;
		width:100%;
		/* IE11でテーブルの要素が横にはみ出す時の修正 */
		table-layout:fixed;
		word-wrap: break-word;
		overflow-wrap: break-word;
	}
	.topAboutSection .backimage,
	.topAboutSection .txt{
		display:table-cell;
		width:50%;
		vertical-align:middle;
	}
	.topAboutSection .backimage{
		padding: 0;
	}

}/*END media query*/
/*////////////////////////////////////////////*/
/*////////////////////////////////////////////*/
/* iPad(770px and up) */
@media print, screen and (min-width: 770px) {
	.topAboutSection .txt{
		padding:60px 20px;
		text-align:center;
		line-height:1.8;
	}
	.topAboutSection .txt p{
		display:inline-block;
		text-align:left;
	}
}/*END media query*/
/*////////////////////////////////////////////*/

/* ---------------------------------------
 topProductSection 商品のご紹介
------------------------------------------ */
.topProductSection .section-inner{
	max-width:960px;
	margin-left:auto;
	margin-right:auto;
	padding-right:10px;
	padding-left:10px;
}
.topProductSection dt a,
.topProductSection dd a{
	color:#000;
	text-decoration:none;
}
.topProductSection dl{
	margin-bottom:40px;
}
.topProductSection dt{
	margin-bottom:1em;
}
.topProductSection dl.prod-butsuzo{
	margin-bottom:0;
}
.topProductSection dl dt a{
	position:relative;
	display:block;
	width:260px;
	height:210px;
	margin-left:auto;
	margin-right:auto;
	transition: all 700ms 0.1s ease; /* リンクの色 黒=>白 */
}
.topProductSection dl dt a .bg-circle{
	position:absolute;
	top:0;
	right:2%;
	width:180px;
	height:180px;
	border-radius: 180px;
	-webkit-border-radius: 180px;
	-moz-border-radius: 180px;
	background-color:#edeae5;
}
.topProductSection dl dt a .bg-circle:before{
	content:"";
	display:block;
	width:180px;
	height:180px;
	border-radius: 180px;
	-webkit-border-radius: 180px;
	-moz-border-radius: 180px;
	background-image:url(./img/top_prod_btdn_circke_on.png);
	background-position: -180px 0;
	background-repeat:no-repeat;
	opacity:0;
	transition: all 700ms 0.1s ease;
}
.topProductSection dl.prod-ihai dt a .bg-circle,
.topProductSection dl.prod-butsuzo dt a .bg-circle{
	right:6%;
}
.topProductSection dl.prod-ihai dt a .bg-circle:before{
	background-image:url(./img/top_prod_ihai_circle_on.png);
}
.topProductSection dl.prod-butsuzo dt a .bg-circle:before{
	background-image:url(./img/top_prod_butsuzo_circle_on.png);
}
.topProductSection dl dt a:hover{
	color:#fff;
}
.topProductSection dl dt a:hover .bg-circle:before{
	background-position: 0 0;
	opacity:1;
}
.topProductSection dl dt p{
	position:absolute;
	top:16%;
	right:20%;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
}
.topProductSection dl dt img{
	position:absolute;
	width:170px;
	bottom:0;
	left:0;
}
/* 位牌、仏像 */
.topProductSection dl.prod-ihai dt p,
.topProductSection dl.prod-butsuzo dt p{
	right:36%;
}
.topProductSection dl.prod-ihai dt img{
	width:95px;
	left:8%;
}
.topProductSection dl.prod-butsuzo dt img{
	width:100px;
	left:8%;
}
/*////////////////////////////////////////////*/
/* PC, Tablet(768px and up) */
@media print, screen and (min-width: 768px) {
	.topProductSection .section-inner:after{
		content:"";
		display:table;
		clear:both;
	}
	.topProductSection dl{
		float:left;
		width:33.33%;
		margin-bottom:0;
	}
	.topProductSection dt{
		margin-bottom:30px;
	}
	.topProductSection dd{
		text-align:center;
	}
	.topProductSection dd a{
		display:inline-block;
		-ms-writing-mode: tb-rl;
		writing-mode: vertical-rl;
		text-align:left;
		letter-spacing:2px;
	}

}/*END media query*/
/*////////////////////////////////////////////*/

/* ---------------------------------------
 topReasonSection 選ばれる理由
------------------------------------------ */
.topReasonSection .h1-wrap{
	margin-bottom:20px;
}
.topReasonSection .section-inner{
	max-width:960px;
	margin-left:auto;
	margin-right:auto;
	padding-left:5px;
	padding-right:5px;
}
.topReasonSection .frame-wrap,
.topReasonSection .frame-wrap-inner{
	width:100%;
	background-repeat: no-repeat;
	background-size:contain;
}
.topReasonSection .frame-wrap{
	background-image:url('./img/top_reason_waku_top_sma.png');
	background-position:center top;
}
.topReasonSection .frame-wrap-inner{
	width:100%;
	background-image:url('./img/top_reason_waku_bottom_sma.png');
	background-position:center bottom;
	padding-top:30px;
	padding-bottom:10px;
	padding-left:15px;
	padding-right:15px;
}
.topReasonSection ul li{
	text-align:center;
	margin-bottom:30px;
}
.topReasonSection .icon-reason{
	width:80px;
	margin-left:auto;
	margin-right:auto;
	margin-bottom:1em;
}
/*////////////////////////////////////////////*/
/* PC, Tablet(768px and up) */
@media print, screen and (min-width: 768px) {
	.topReasonSection .frame-wrap{
		background-image:url('./img/top_reason_waku_top.png');
	}
	.topReasonSection .frame-wrap-inner{
		background-image:url('./img/top_reason_waku_bottom.png');
	}
	.topReasonSection ul:after{
		content:"";
		display:table;
		clear:both;
	}
	.topReasonSection ul li{
		float:left;
		width:50%;
	}
}/*END media query*/
/*////////////////////////////////////////////*/
/*////////////////////////////////////////////*/
/* iPad(770px and up) */
@media print, screen and (min-width: 770px) {
	.topReasonSection .frame-wrap-inner{
		padding-top:50px;
		padding-bottom:20px;
		padding-left:40px;
		padding-right:40px;
	}
	.topReasonSection ul li:after{
		content:"";
		display:table;
		clear:both;
	}
	.topReasonSection ul li{
		text-align:left;
		padding-left:15px;
	}
	.topReasonSection .icon-reason{
		float:left;
		margin-bottom:0;
	}
	.topReasonSection ul li span{
		display:block;
		float:left;
		padding:10px 0 0 15px;
	}

}/*END media query*/
/*////////////////////////////////////////////*/

/* ---------------------------------------
 topGinzaSection 銀座本店
------------------------------------------ */
.topGinzaSection{
	padding-top:40px;
	padding-bottom:40px;
	background-color:#eaeae2;
}
.topGinzaSection .section-inner{
	max-width:960px;
	margin-left:auto;
	margin-right:auto;
	padding-left:10px;
	padding-right:10px;
}
.topGinzaSection h2{
	font-weight:bold;
	font-size:20px;
	margin-bottom:0.5em;
}
.topGinzaSection .ginza-point1 p,
.topGinzaSection .ginza-point2 p,
.topGinzaSection .access-info p{
	margin-bottom:1.25em;
}
.topGinzaSection .ginza-point2:after{
	content:"";
	display:table;
	clear:both;
}
.topGinzaSection .top-ginza-shoppingbag{
	float:right;
	width:45%;
	padding-left:5px;
}
.topGinzaSection .ginza-access{
	margin-bottom:30px;
}
.topGinzaSection .ginza-photo:after{
	content:"";
	display:table;
	clear:both;
}
.topGinzaSection .ginza-photo li{
	float:left;
	width:33.33%;
	padding-left:1%;
	padding-right:1%;
}
/*** GoogleMap ***/
.g-map-wrap {
	max-width: 650px;
	margin-bottom: 5px;
	padding: 10px;
	border: 1px solid #000;
}
.g-map{
	position: relative;
	padding-bottom: 100%;/* 縦÷横 */
	height: 0;
	overflow: hidden;
}
.g-map iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
}
.go-googlemap{
	margin-bottom:1.25em;
}
.go-googlemap a{
	color:#000;
}
/*////////////////////////////////////////////*/
/* PC, Tablet(768px and up) */
@media print, screen and (min-width: 768px) {
	.topGinzaSection{
		padding-top:80px;
		padding-bottom:80px;
		background-image:url(./img/top_ginza_bg_karakusa.png);
		background-size:36%;
		background-position:left bottom;
		background-repeat:no-repeat;
	}
	.topGinzaSection h2{
		font-size:26px;
	}
	.topGinzaSection .ginza-point1 p,
	.topGinzaSection .ginza-point2 p{
		margin-bottom:1.875em;
	}
	.topGinzaSection .top-ginza-shoppingbag{
		width:37%;
		padding-top:25px;
		padding-left:15px;
	}
	.topGinzaSection .ginza-access{
		margin-bottom:40px;
	}
	.topGinzaSection .ginza-access:after{
		content:"";
		display:table;
		clear:both;
	}
	.topGinzaSection .access-g-map{
		float:left;
		width:48%;
	}
	.topGinzaSection .access-info{
		float:right;
		width:48%;
	}
	.topGinzaSection address{
		font-size:16px;
	}
	.topGinzaSection address h3{
		margin-bottom:0.5em;
	}
}/*END media query*/
/*////////////////////////////////////////////*/

/* ---------------------------------------
 topShopSection 店舗一覧
------------------------------------------ */
.topShopSection .section-inner{
	max-width:960px;
	margin-left:auto;
	margin-right:auto;
}
.topShopSection li{
	margin-bottom:40px;
}
.topShopSection li.lastCh{
	margin-bottom:30px;
}
.topShopSection li h3{
	padding-left:10px;
	padding-right:10px;
	margin-bottom:5px;
	font-size:20px;
}
.topShopSection li p{
	padding-left:10px;
	padding-right:10px;
	margin-bottom:1em;
}
.topShopSection li img{
	margin-bottom:1em;
	margin-left:auto;
	margin-right:auto;
}
.topShopSection li p.prod-handled{
	margin-bottom:0;
}
/*////////////////////////////////////////////*/
/* PC, Tablet(768px and up) */
@media print, screen and (min-width: 768px) {
	.topShopSection ul:after{
		content:"";
		display:table;
		clear:both;
	}
	.topShopSection li{
		float:left;
		width:50%;
		padding-left:10px;
		padding-right:10px;
	}
}/*END media query*/
/*////////////////////////////////////////////*/
/*////////////////////////////////////////////*/
/* iPad(770px and up) */
@media print, screen and (min-width: 770px) {
	.topShopSection li:nth-child(odd){
		padding-left:0;
		padding-right:15px;
	}
	.topShopSection li:nth-child(even){
		padding-left:15px;
		padding-right:0;
	}
	.topShopSection li p.prod-handled{
		font-size:16px;
	}
}/*END media query*/
/*////////////////////////////////////////////*/

/* ---------------------------------------
 topShogonSection 荘厳仏具
------------------------------------------ */
.topShogonSection .section-inner{
	position: relative;
	width: 100%;
	height: 570px;
	overflow: hidden;
}
.topShogonSection .section-inner::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background-image:url(./img/top_shogon_sma.jpg);
	background-size:cover;
	background-repeat:no-repeat;
	background-position:50% 50%;
}
.topShogonSection .section-inner.zoom-start::before {
	-webkit-animation: zoom 15s 1;
	animation: zoom 15s 1;
	animation-fill-mode: forwards;
}
@keyframes zoom {
	0% {
		transform: scale(1);
	}
	100% {
		transform: scale(1.2);
	}
}
.topShogonSection .top-shogon-txt{
	position: absolute;
	top: 320px;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	text-align:center;
}
.topShogonSection p{
	color:#fff;
	margin-bottom:30px;
}
/*////////////////////////////////////////////*/
/* PC, Tablet(768px and up) */
@media print, screen and (min-width: 768px) {
	.topShogonSection .section-inner{
		height: 600px;
	}
	.topShogonSection .section-inner::before {
		background-image:url(./img/top_shogon.jpg);
	}
	.topShogonSection .top-shogon-txt{
		top: 68%;
	}
}/*END media query*/
/*////////////////////////////////////////////*/
/*////////////////////////////////////////////*/
/* iPad(770px and up) */
@media print, screen and (min-width: 770px) {
	.topShogonSection .section-inner{
		height: 640px;
	}
}/*END media query*/
/*////////////////////////////////////////////*/
/*////////////////////////////////////////////*/
/* Desktop(1140px and up) */
@media print, screen and (min-width: 1140px) {
	.topShogonSection .section-inner{
		height: 700px;
	}
}/*END media query*/
/*////////////////////////////////////////////*/

/* ---------------------------------------
 topBnrSection 通販・特注仏壇バナー
------------------------------------------ */
.topBnrSection .section-inner{
	max-width:800px;
	margin-left:auto;
	margin-right:auto;
}
.topBnrSection a{
	display:block;
}
.topBnrSection a:hover{
	opacity:0.7;
}
.topBnrSection .bnr-onlineshop{
	margin-bottom:1em;
}
/*////////////////////////////////////////////*/
/* PC, Tablet(768px and up) */
@media print, screen and (min-width: 768px) {
	.topBnrSection .section-inner{
		padding-left:20px;
		padding-right:20px;
	}
	.topBnrSection .section-inner:after{
		content:"";
		display:table;
		clear:both;
	}
	.topBnrSection a{
		float:left;
		width:50%;
		padding-left:20px;
		padding-right:20px;
	}

}/*END media query*/
/*////////////////////////////////////////////*/


