@charset "utf-8";

/* ********************************************* */
/**切り替え用CSS　～768px：SP　769px～：PC
template、複数ページで使用
/* ********************************************* */

/****************************************************************
↓ここから下テンプレートで使用
****************************************************************/

/********************************
コンテナレイアウト設定
********************************/
/*サイトの大枠*/
.allBodyArea
{
	width:1024px;
	text-align:left;
	margin:0 auto;
}

@media (max-width: 768px) {
.allBodyArea
{
	width:100%;
	text-align:left;
	margin:0 auto;
}
}

/*ヘッダー*/
/********************************
ヘッダー
********************************/

/*PCのサイトメニュー調整*/
.accordion{
	float:left;
	margin:0px 45px;
	line-height:1.5em;
	text-decoration: none;
}
.accordion a{
	line-height:1.7em;
}

@media (max-width: 768px) {
.accordion{
	float:none;
	margin:0px;
}
}

/*ヘッダー*/
#HeadBgArea{
	background:#f3f3f3;
}
#HeadArea{
	width: 1024px;
	margin:0 auto;
	padding: 11px 0;
	height: 54px;
	clear:both;
}
#HeadArea .headImg
{
	margin:0 auto;
	width:1024px;
	height:144px;
}
#HeadArea p
{
	float:left;
}
#HeadArea .logo a
{
	width:486px;
	height:144px;
	display:block;
}
#HeadArea headTel
{
	width:538px;
	height:144px;
	display:block;
}
#HeadArea .headPoint
{
	display:none;
}


@media (max-width: 768px) {
#HeadArea{
	width: 100%;
	margin:0 auto;
	padding-left:4px;
	height:50px;
	clear:both;
	background-color:#DCDCDC;
	
}
#HeadArea .headImg
{
	margin:0 auto;
	width:100%;
}
#HeadArea p
{
	float:left;
}
#HeadArea .logo a
{
	width:225px;
	height: auto;
	display:block;
}
#HeadArea .logo img
{
	width:225px;
	display:block;
}
#HeadArea .headTel
{
	display:none;
}
#HeadArea .headCard
{
	display:none;
}
#HeadArea .headPoint
{
	display:block;
	margin-top:8px;
	float: right;
}
#HeadArea .headPoint img{
	width:90px;
	height: auto;
}
}

/********************************
SPのみ追っかけヘッダー分下げる
付けるところに他のmargin、paddingが入っていないか注意
********************************/
	
@media (max-width: 768px) {
.anchorLink{
	margin-top:-50px;
	padding-top:50px;
}
}

/********************************
グローバルメニュー設定（PCのみ）
********************************/
#HeadMenuArea{
	display: table;
	table-layout: fixed;
	text-align: center;
	width: 100%;
	background-color:#DCDCDC;
}

#HeadMenuArea li {
	display: table-cell;
	vertical-align: middle;
}

.globalMenu{
	background-color:#d2d2d2;
	display: table;
	table-layout: fixed;
	text-align: center;
	width:1024px;
	margin: 0 auto;
}

.globalMenu li {
	vertical-align: middle;
	border-left: 1px solid #fff;
}
.globalMenu li:last-child {
	border-right: 1px solid #fff;
}

.globalMenu li a {
	color:#333333;
	display: block;
	text-decoration: none;
	padding: 10px 0;
	font-weight: bold;
}

.globalMenu a:hover
{
	background-color:#5fbafc;
	color: #ffffff;
}

@media (max-width: 768px) {

#HeadMenuArea{
	display:none;
}
}

/********************************
・追っかけヘッダー（SPのみ）
・下部サイトメニュー
※サイトメニュー使用CSSまとめてここに記述
********************************/
/*サイトメニュー*/
#mainmenu
{
	background:#FBFBFB;
	margin-bottom:20px;
	padding:20px;
}

.qaMenu
{
	margin-bottom: 15px;
}

@media (max-width: 768px) {
#mainmenu
{
	background:#FBFBFB;
	margin-bottom:20px;
	padding:0px;
}
.qaMenu
{
	margin-bottom: 00px;
}
}

/*******************************/
/*固定ヘッダー（追尾型）SPのみ
（CSSのみで実装）*/
/*******************************/

@media (max-width: 768px) {
.headAreaFixed
{
	position: fixed;
	top: 0;
	right:0;
	left:0;
	margin-bottom:5px;
	border-bottom: 2px solid #cccccc;
	background-color:#DCDCDC;
	height:47px;
	box-shadow:0px 4px 5px -2px #FFFFFF;
	-moz-box-shadow:0px 4px 5px -2px #FFFFFF;
	-webkit-box-shadow:0px 4px 5px -2px #FFFFFF;
	z-index:100;
}
}

/********************************
ハンバーガーメニュー（CSSのみで実装）
********************************/
#ham-menu {
	background-color: #fff; /*メニュー背景色*/
	box-sizing: border-box;
	height: 100%;
	position: fixed;
	right: -270px; /*メニュー横幅 width と合わせる*/
	top: 0;
	transition: transform 0.3s linear 0s; /*0.3s はアニメーションにかかる時間*/
	width: 270px; /*メニュー横幅*/
	z-index: 1000;
	list-style:none;
}
#ham-menu ul {
	height: 100%;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
}
#ham-menu ul li ul {
	list-style:none;
}

#menu-background {
	background-color: #333; /*黒背景*/
	display: block;
	opacity: 0;
	position: fixed;
	right: 0;
	top: 0;
	transition: all 0.3s linear 0s; /*0.3s はアニメーションにかかる時間*/
	width: 100%;
	z-index: -1;
}

#menu-icon {
	background:url(../images/head/head-fixed_menu.png) no-repeat;
	background-size:contain;
	width:51px;
	height:43px;
	display: block;
	transition: all 0.3s linear 0s; /*0.3s はアニメーションにかかる時間*/
	z-index: 1000;
}

#menu-icon:hover {
	background:url(../images/head/head-fixed_menu-off.png) no-repeat;
	background-size:contain;
}

#menu-cb {
	display: none; /*チェックボックス本体は消しておく*/
}

#menu-cb:checked ~ #ham-menu,
#menu-cb:checked ~ #menu-icon {
	transform: translate(-270px); /*メニュー本体横幅 width と合わせる*/
}

#menu-cb:checked ~ #menu-background {
	opacity: 0.5;
	z-index: 999;
	height: 100%;
}

/********************************
メニュー一覧:アコーディオン
********************************/
.headAreaFixed{
	display:none;
}

h3.menuTitle{
	padding:15px 0px 10px 0px;
	font-size:160%;
	line-height:1.2em;
}
h4.menuTitle{
	font-size:110%;
}

@media (max-width: 768px) {
	
.headAreaFixed{
}
h3.menuTitle{
	margin-top: 20px;
	padding:15px 0px 10px 10px;
	background: #E0E0E0;
	font-size:110%;
	text-align:center;
}
h4.menuTitle{
	display:none;
}
ul.accordion
{
	width:auto;
	/*margin: 5px;*/
	list-style:none;
	display: block;
}
ul.accordion a
{
	display:block;
	background-position:98% center;
	background-repeat:no-repeat;
	text-decoration:none;
	color:#333333;
	border-collapse: collapse;
}

ul.accordion span.menuTitle
{
	display:block;
	background-position:98% center;
	background-repeat:no-repeat;
}
ul.accordion ul
{
	display:none;
}

ul.accordion ul.teiban {
	display: block;
	border-collapse: collapse;
}

ul.accordion > li
{
	background:#EDEDED;
	text-align: left;
	color: #222222;
	margin-bottom: 0;
	font-weight:bold;
	padding:13px;
	border-collapse: collapse;
}

/*アコーディオンの1階層目　見出し（閉アコーディオン）*/
ul.accordion > li
{
	background:#EDEDED;
	text-align: left;
	border-bottom: 1px solid #ccc;
	margin-bottom: 0;
	font-weight:bold;
	padding:13px;
}



/*1階層目　見出しがそのままリンク（アコーディオン無し）*/
ul.accordion > li > a
{
	background-image:url(../images/ico-arrow_side-gray.png);
	color: #222222;
}


/*アコーディオンの２階層目*/
ul.accordion > li > ul > li
{
	background-color:#FFFFFF;
	border-bottom: 1px solid #ccc;
	border-top: none;
}
ul.accordion > li > ul > li:last-child
{
	border-bottom:none;
}
ul.accordion > li > p span
{
	background-image:url(../images/ico-arrow_down-gray.png);
}
ul.accordion > li > p span.open
{
	background-image:url(../images/ico-arrow_up-gray.png);
	border-radius: 5px 5px 0 0;
	-moz-border-radius: 5px 5px 0 0;
	-ms-border-radius: 5px 5px 0 0;
	
}
}


/********************************
パンナビ
********************************/
.pannavi{
	font-size:90%;
	margin: 15px 0 12px 5px
}
@media (max-width: 768px) {
.pannavi{
	font-size:85%;
	margin: 5px 0 5px 7px
}
}

/********************************
共通フッター
********************************/
/*レスポンスデバイス*/

.inquiryImg{
	margin:auto;
	padding-top: 15px;
	float:left;
}
.inquiryTel{
	margin:auto;
	padding-top: 40px;
}

@media (max-width: 768px) {
.inquiryImg{
	padding-top: 15px;
	float:none;
}
.inquiryImg img{
	width:90%;
}
.inquiryImg p{
	text-align: center;
}
.inquiryTel{
	display:none;
}
}

/*topに戻る/サイトメニューへ（PCのみ）*/

#page_top{
	text-align: center;
	position: fixed;
	bottom: 128px;
	right: 100px;
	width:80px;
	height:65px;
	padding-top: 13px;
	background:#5fbafc;
	color:#FFFFFF;
	font-size: 90%;
	line-height:120%;
	text-decoration:none;
	vertical-align:middle;
}
#page_top:hover{
	background:#7cc8ff;
}
#main_menu{
	text-align: center;
	position: fixed;
	bottom: 40px;
	right: 100px;
	width:80px;
	height:62px;
	padding-top: 18px;
	background:#5fbafc;
	color:#FFFFFF;
	font-size: 90%;
	line-height:120%;
	text-decoration:none;
}
#main_menu:hover{
	background:#7cc8ff;
}

@media (max-width: 768px) {
.pageMoveBtn{
	display: none;
}
}

/*プライバシーマーク*/
.privacymark{
	margin:0px 0px 40px 10px;
}
.privacyText{
	padding-top:25px;
}

/*facebook*/

.fb-like-box
{
	border:1px solid #dddddd;
	margin-right:15px;
}

@media (max-width: 768px) {
.fb-like-box{
	display:none;
}
}

/*カレンダー*/
.menuCalendar{
	display:none;
	margin-right:15px;
}

.calendarPosition
{
	margin-right: 15px;
}

@media (max-width: 768px) {
.menuCalendar{
	display:block;
	margin: 0px;
}
.calendarPosition
{
	margin-right: 0px;
}
.underCalendar{
	display:none;
}
}

.calendarTitle{
	width:502px;
	height:38px;
}

.calendarArea
{
	border:1px solid #dcdcde;
	border-top:none;
	padding-top:5px;
	width:500px;
	background:#ffffff;
}
.calendarBox
{
	width:488px;
	height:auto;
	margin-left:auto;
	margin-right:auto;
	background-color:#d8f7ff;
}

@media (max-width: 768px) {
.calendarTitle{
	display:none;
}
	
.calendarArea 
{
	border:none;
	border-top:none;
	padding:5px;
	width:auto;
	background:#ffffff;
	margin-top: 10px;
}

.calendarArea img
{
	background-color:#e4f9ff;
}
.calendarBox
{
	width:96%;
	text-align: center;
}
.calendarBox img
{
	width:96%;
}
	.calendarText{
		text-align: center;
		font-weight:normal;
		margin:10px 0px; 
}
}

/*お知らせ*/
.oshiraseBox
{
	border:1px solid #04af35;
	color:#000;
	width:215px;
	float:left;
	padding:10px;
	margin:0;
}

@media (max-width: 768px) {
.oshiraseBox
{
	border:1px solid #04af35;
	line-height:1.2em;
	width:auto;
	padding:5px;
}
}


/*その他バンテック取扱商品*/
/********************************
フッター商品エリア
********************************/
.footshoplist{
	margin-top:15px;
}

.footshoplist h3
{	
	padding:7px 0 7px 30px;
	color:#fff;
	background:#353535 url(../images/icon/icon_bantec.png) no-repeat 1% 50%;
	background-size:18px 17px;
	font-size:90%;
	}

.footshoplist ul{
	background-color:#FFFFFF;
}

.footshoplist ul li{
	list-style: none;
	border-top: solid 1px #ccc;
	border-bottom: solid 1px #ccc;
	border-right: solid 1px #ccc; 
	width:25%;
	box-sizing: border-box;
	height:60px;
	float: left;
}

.footshoplist ul li img{
	visibility:visible;
}

.footshoplist ul li a{
	padding: 20px 10px 15px 37px;
	text-decoration: none;
	color: #555;
	display: block;
	font-size:80%;
}
.footshoplist ul li:nth-child(4) a{
	padding: 12px 10px 15px 37px;
}

.footshoplist ul li.navi01
{	background: url(../images/icon/icon_oudanmaku.png) no-repeat 2% 50%,url(../images/arrow-gray-l.png) no-repeat 98% 50%;}
.footshoplist ul li.navi02
{	background:url(../images/icon/icon_danki.png) no-repeat 2% 50%,url(../images/arrow-gray-l.png) no-repeat 98% 50%;}

.footshoplist ul li.navi03
{	background:url(../images/icon/icon_tairyoubata.png) no-repeat 2% 50%,url(../images/arrow-gray-l.png) no-repeat 98% 50%;}

.footshoplist ul li.navi04
{	background:url(../images/icon/icon_t_shirt.png) no-repeat 2% 50%,url(../images/arrow-gray-l.png) no-repeat 98% 50%;}

.footshoplist ul li.navi05
{	background:url(../images/icon/icon_towel.png) no-repeat 2% 50%,url(../images/arrow-gray-l.png) no-repeat 98% 50%;}

.footshoplist ul li.navi06
{	background:url(../images/icon/icon_nobori.png) no-repeat 2% 50%,url(../images/arrow-gray-l.png) no-repeat 98% 50%;}

.footshoplist ul li.navi07
{	background:url(../images/icon/icon_noren.png) no-repeat 2% 50%,url(../images/arrow-gray-l.png) no-repeat 98% 50%;}

.footshoplist ul li.navi08
{	background:url(../images/icon/icon_happi.png) no-repeat 2% 50%,url(../images/arrow-gray-l.png) no-repeat 98% 50%;}

.footshoplist ul li.navi09
{	background:url(../images/icon/icon_magnet.png) no-repeat 2% 50%,url(../images/arrow-gray-l.png) no-repeat 98% 50%;}

.footshoplist ul li.navi10
{	background:url(../images/icon/icon_wappen.png) no-repeat 2% 50%,url(../images/arrow-gray-l.png) no-repeat 98% 50%;}

.footshoplist ul li:hover{
	background-color:#E8E7E7; 
}
.footshoplist ul li:nth-child(n+3) {
	border-top:none;
}
.footshoplist ul li:nth-child(1) {
	border-left:solid 1px #ccc;
}
.footshoplist ul li:nth-child(5) {
	border-left:solid 1px #ccc;
}
.footshoplist ul li:nth-child(9) {
	border-left:solid 1px #ccc;
}

@media (max-width: 768px) {

.footshoplist h3
{	
	padding:7px 0 7px 25px;
	color:#fff;
	background:#353535 url(../images/icon/icon_bantec.png) no-repeat 1% 50%;
	background-size:18px 17px;
	font-size:90%;
	}
.footshoplist{
	margin:0px;
}
.footshoplist ul li{
	list-style: none;
	border-top: solid 1px #ccc;
	border-bottom: solid 1px #ccc;
	border-left: solid 1px #ccc;
	border-right: solid 1px #ccc;
	width:50%;
	box-sizing: border-box;
	border-collapse: collapse;
	height:46px;
	float:left;
}
.footshoplist ul li a{
	padding: 15px 10px 15px 35px;
	text-decoration: none;
	color: #555;
	display: block;
	font-size:90%;
}
.footshoplist ul li:nth-child(3) a{
	padding: 23px 10px 15px 35px;
}
	.footshoplist ul li:nth-child(3),.footshoplist ul li:nth-child(4) {
	height:62px;
}
.footshoplist ul li:nth-child(odd){
	border-right: none;
}

.footshoplist ul li:nth-child(n+3) {
	border-top:none;
}
}


/****************************************************************
↓ここから下テンプレート以外で使用(共通)
****************************************************************/

/********************************
カード
********************************/

.bgWhiteBodyArea
{
	width:1024px;
	margin:0 auto 15px;
	text-align:left;
	background:#FFFFFF;
	-webkit-box-shadow: 0 0 10px #bbb;
	box-shadow: 0 0 10px #bbb;
	font-size: 95%;
}

.areaInside
{
	padding:18px 25px 25px 25px;
}

@media (max-width: 768px) {

.bgWhiteBodyArea {
	width: 96%;
	text-align: left;
	background: #FFFFFF;
	margin:0 auto 10px;
	border-right:1px solid #e3e3e3;
	border-left:1px solid #e3e3e3;
	border-bottom:1px solid #e3e3e3;
	box-shadow: 0 0 3px #bbb;
	font-size:100%;
}
.areaInside
{
	padding: 3% 4% 4% 4%;
}
}



/********************************
見出し設定
********************************/
h1.normal
{
	padding:10px 0 8px 8px;
	background-color:#F9F9F9;
	border-left:10px solid #E100D6;
	font-size:250%;
	margin: 0 0 15px 0;
}
@media (max-width: 768px) {
h1.normal
{
	padding:4px 0 4px 3px;
	background-color:#F9F9F9;
	border-left:5px solid #E100D6;
	font-size:145%;
	margin:0 0 10px 0;
}
}

h2.top-card {
	clear:both;
	background-color: #E100D6;
	color: #333333;
	font-size: 240%;
	line-height: 1.4;
	padding: 20px 10px;
	text-align: center;
}

@media (max-width: 768px) {
h2.top-card {
	font-size: 115%;
	line-height: 1.3;
	padding: 10px 0px;
	text-align: center;
}
}

h2.normal {
	font-size:180%;
	padding:3px 0 4px 8px;
	line-height:32px;
	border-left:5px solid #E100D6;
	border-bottom:3px solid #E100D6;
}
@media (max-width: 768px) {
h2.normal{
	font-size:120%;
	line-height:130%;
	color: #323232;
	border-left:solid 3px #E100D6;
	border-bottom:solid 3px #E100D6;
	padding:3px 0 3px 3px;
	margin-right:5px;
	margin-left:1px;
}
}
h2.bsForm{
	font-size: 140%;
	padding:0 6px;
	border-left:5px solid #E100D6;
}
@media (max-width: 768px) {
h2.bsForm{
	font-size: 120%;
	padding:0 5px;
	border-left:4px solid #E100D6;
}
}

h3.normal {
	font-size: 125%;
	font-weight: bold;
	line-height: 1.2;
}
@media (max-width: 768px) {

h3.normal {
	font-size: 110%;
	font-weight: bold;
	line-height: 1.2;
}
}

h3.title {
	font-size:120%;
	padding:3px 5px 3px 6px;
	border:none;
	border-left: 5px solid #C0C0C0;
	border-bottom: 3px solid #C0C0C0;
	margin:35px 0 20px 0;
}
@media (max-width: 768px) {
h3.title {
	font-size:110%;
	padding:2px 5px 0px 4px;
	border:none;
	border-left: 3px solid #C0C0C0;
	border-bottom: 2px solid #C0C0C0;
	margin:25px 0 7px 0;
}
}
/*h2下テキストなしでh3 title入るとき用*/
h3.title2 {
	font-size:120%;
	padding:3px 5px 3px 6px;
	border:none;
	border-left: 5px solid #C0C0C0;
	border-bottom: 3px solid #C0C0C0;
	margin:10px 0 20px 0;
}
@media (max-width: 768px) {
h3.title2 {
	font-size:110%;
	padding:2px 5px 0px 4px;
	border:none;
	border-left: 3px solid #C0C0C0;
	border-bottom: 2px solid #C0C0C0;
	margin:5px 0 7px 0;
}
}

h3.about
{
	font-size:190%;
	font-weight:bold;
	line-height:1.2;
}
@media (max-width: 768px) {
h3.about
{
	font-size:120%;
	font-weight:bold;
	line-height:1.2;
	text-align: center;
}
}
h3.bsForm{
	font-size: 120%;
}
@media (max-width: 768px) {

h3.bsForm{
	font-size:90%;
}
}

h3.bs
{
	font-size:150%;
	font-weight:bold;
}
@media (max-width: 768px) {
h3.bs
{
	font-size:130%;
	font-weight:bold;
}
}
h4.textLevel
{
	color:#760000;
	font-size:110%;
	padding:0;
	border:none;
} 
h4.nomal{
	font-size:110%;
	padding:10px 0 ;
} 
h4.title{
	font-size:110%;
} 
@media (max-width: 768px) {
h4.nomal{
	font-size:105%;
	text-indent: -1em;
	padding-left: 1em;
} 
h4.title{
	font-size:110%;
} 
} 


/*ｈ3が並ぶときのマージン調整（PCのみ）*/
.pcContentsBottom{
	margin-bottom:60px;
}
@media (max-width: 768px) {
.pcContentsBottom{
	margin-bottom:0px;
}
}

/*テキストリンクの上開けるとき*/
.textLink{
	margin-top:20px;
}

@media (max-width: 768px) {
.textLink{
	margin-top:10px;
}
}


/********************************
レスポンスデバイス
********************************/
/*大きいやつ*/
.bigResArea{
	background-color:#fee2ca;
	padding:15px 10px;
	margin-bottom:15px;
	margin-top:15px;
}
#footResArea{
	table-layout: fixed;
	text-align: center;
	background-color:#fee2ca;
	padding:20px 0;
}
.bgResBtn{
	background-color:#E32A2D;
	vertical-align: middle;
	text-align:center;
	width: 80%;
	margin:5px auto 15px auto;
	border-radius: 5px;
	box-shadow: 0px 6px 3px -3px rgba(53, 53, 53, 0.28);
	-webkit-box-shadow:0px 6px 3px -3px rgba(53, 53, 53, 0.28);
	-moz-box-shadow: 0px 6px 3px -3px rgba(53, 53, 53, 0.28);
}
.bgResBtn a{
	display:block;
	padding:20px;
	color:#ffffff;
	font-size:150%;
	font-weight:bold;
	text-decoration: none;
}
.bgResBtn:hover{
	background-color:#1B61B4;
}
.telWhiteBox{
	width: 920px;
	background:#fff;
	padding: 10px;
	margin:0 auto;
}
.telWhiteBox p{
	text-align: center;
}
.telNumber{
	display:block;
	font-size:530%;
	color:#f00;
	font-weight:bolder;
}
.telNumber img{
	margin-right:10px;
}

.telBusinessHours{
	text-align: center;
}
.quicklyText{
	text-align: center;
	font-size:110%;
	font-weight:bold;
	margin-bottom:10px;
	line-height: 1.6em;
}
.quicklyText span{
	font-size:130%;
}

@media (max-width: 768px) {
.bigResArea{
	background-color:#fee2ca;
	padding:10px;
	margin-bottom:15px;
	margin-top:15px;
}

#footResArea{
	table-layout: fixed;
	text-align: center;
	padding:0 0 5px 0;
}
.bgResBtn{
	background-color:#E32A2D;
	vertical-align: middle;
	text-align:center;
	width: 90%;
	margin:10px auto;
}
.bgResBtn a{
	display:block;
	padding:15px;
	color:#ffffff;
	font-size:120%;
	font-weight:bold;
	text-decoration: none;
}
.bgResBtn:hover{
	background-color:#1B61B4;
}
.telWhiteBox{
	width: 93%;
	padding: 10px;
}
.telWhiteBox p{
	text-align: center;
}
.telNumber{
	display:block;
	font-size:210%;
	font-weight:bolder;
	margin: 0 auto;
}
.telNumber a{
	color:#f00;
}
.telNumber img{
	margin-right:7px;
	margin-top:10px;
	width: 30px;
	height: auto;
}

.telBusinessHours{
	text-align: center;
	margin-top:5px;
	font-size:85%;
}
.quicklyText{
	font-size:90%;
	font-weight:normal;
	margin-bottom:5px;
	line-height: 1.4em;
}
.quicklyText span{
	font-weight:bold;
	font-size:100%;
}
}

/*小さいやつ*/

.resBtn{
	background-color:#E32A2D;
	vertical-align: middle;
	text-align:center;
	width: 40%;
	margin:5px auto;
	float:right;
	border-radius: 5px;
	box-shadow: 0px 6px 3px -3px rgb(183, 183, 183);
	-webkit-box-shadow:0px 6px 3px -3px rgb(183, 183, 183);
	-moz-box-shadow: 0px 6px 3px -3px rgb(183, 183, 183);
}
.resBtn a{
	display:block;
	padding:15px;
	color:#ffffff;
	font-size:150%;
	font-weight:bold;
	text-decoration: none;
	line-height:120%;
}
.resBtn:hover{
	background-color:#1B61B4;
}

@media (max-width: 768px) {
.resBtn{
	background-color:#E32A2D;
	vertical-align: middle;
	text-align:center;
	width: 100%;
	margin:5px auto;
	float:right;
}
.resBtn a{
	display:block;
	padding:10px;
	color:#ffffff;
	font-size:110%;
	font-weight:bold;
	text-decoration: none;
}
.resBtn:hover{
	background-color:#1B61B4;
}
}

/*BS*/

.bsBtn{
	background-color:#f57a0d;
	vertical-align: middle;
	text-align:center;
	width: 40%;
	margin-top:60px;
	float:right;
	border-radius: 5px;
	box-shadow: 0px 6px 3px -3px rgb(183, 183, 183);
	-webkit-box-shadow:0px 6px 3px -3px rgb(183, 183, 183);
	-moz-box-shadow: 0px 6px 3px -3px rgb(183, 183, 183);
}
.bsBtn a{
	display:block;
	padding:12px;
	color:#ffffff;
	font-size:130%;
	font-weight:bold;
	text-decoration: none;
	line-height:120%;
}
.bsBtn:hover{
	background-color:#f98a27;;
}

@media (max-width: 768px) {
.bsBtn{
	width: 100%;
	margin-top:0px;
}
.bsBtn a{
	padding:10px;
	font-size:110%;
}
}
/*生地サンプル*/
.fabText{
	text-align: right;
	font-size: 90%;
	margin-top: 40px;
	line-height:140%;
	color:#f20000;
}
.fabText2{
	text-align: right;
	font-size: 90%;
	margin-top: 10px;
	line-height:140%;
	color:#f20000;
	
}

.fabBtn{
	background-color:#114788;
	vertical-align: middle;
	text-align:center;
	width: 40%;
	margin:3px auto;
	float:right;
	border-radius: 5px;
	box-shadow: 0px 6px 3px -3px rgb(183, 183, 183);
	-webkit-box-shadow:0px 6px 3px -3px rgb(183, 183, 183);
	-moz-box-shadow: 0px 6px 3px -3px rgb(183, 183, 183);
}
.fabBtn a{
	display:block;
	padding:12px;
	color:#ffffff;
	font-size:130%;
	font-weight:bold;
	text-decoration: none;
	line-height:120%;
}
.fabBtn:hover{
	background-color:#1B61B4;
}

@media (max-width: 768px) {
.fabText{
	text-align: left;
	font-size: 90%;
	margin-top: 15px;
}
.fabText2{
	text-align: left;
	font-size: 90%;
	margin-top: 15px;
}
.fabBtn{
	width: 100%;
	border-radius:4px;
	box-shadow: 0px 4px 3px -3px rgb(183, 183, 183);
	-webkit-box-shadow:0px 4px 3px -3px rgb(183, 183, 183);
	-moz-box-shadow: 0px 4px 3px -3px rgb(183, 183, 183);
}
.fabBtn a{
	padding:8px;
	font-size:100%;
}
}

/*BS予約*/

.bsFormBtn{
	background-color:#ed760c;
	vertical-align: middle;
	text-align:center;
	width: 80%;
	margin:15px auto;
	border-radius: 5px;
	box-shadow: 0px 6px 3px -3px rgb(183, 183, 183);
	-webkit-box-shadow:0px 6px 3px -3px rgb(183, 183, 183);
	-moz-box-shadow: 0px 6px 3px -3px rgb(183, 183, 183);
}
.bsFormBtn a{
	display:block;
	padding:20px;
	color:#ffffff;
	font-size:150%;
	font-weight:bold;
	text-decoration: none;
	line-height:120%;
}
.bsFormBtn:hover{
	background-color:#f98822;
}

@media (max-width: 768px) {
.bsFormBtn{
	width: 100%;
	margin:6px 0 0 0;
}
.bsFormBtn a{
	padding:15px;
	font-size:120%;
}
}
.bgGrayBS
{
	width: 984px;
	background-color:#f3f3f3;
	padding:15px 20px;
	margin:0 auto 15px auto;
}

@media (max-width: 768px) {
.bgGrayBS
{
	width:94%;
	background-color:#f3f3f3;
	padding:3%;
	margin:10px 0;
}
}
/********************************
下層コンテンツ調整用
********************************/
.bgContentsArea
{
	margin:60px 0;
}

@media (max-width: 768px) {

.bgContentsArea {
	margin:25px 0;
}
}

.areaInsideUnderlayer
{
	padding:15px;
	font-size:95%;
}

@media (max-width: 768px) {
.areaInsideUnderlayer
{
	padding: 2%;
	font-size:100%;
}
}


/********************************
下層　各ページ見出し目次
********************************/
.pcLink{
	display:inline-block;
}
@media (max-width: 768px) {
.pcLink{
	display:none;
}
}
	
.spLink{
	display:none;
}
@media (max-width: 768px) {

.spLink{
	display:block;
	visibility: visible;
}
}


.pageLink,.pageLink_2{
	width: 450px;
	background: #FBFBFB;
	padding:20px 0px 20px 80px;
	line-height:200%;
	margin: auto;
}
.pageLinkBs{
	width: 420px;
	background: #FBFBFB;
	margin: auto;
	margin-bottom: 35px;
	padding: 20px;
}
.pageLinkBs div{
	background: #FBFBFB;
	padding:10px 0px 10px 20px;
	line-height:200%;
}

@media (max-width: 768px) {
.pageLink{
	width: 220px;
	background: none;
	padding: 0px;
	margin: auto;
}
.pageLink p{
	border: 2px solid #cccccc;
	margin: 10px;
	width:75px;
	height:75px;
	font-size:90%;
	padding: 5px;
	border-radius: 7px;
}
.pageLink_2{
	width:310px;
	background: none;
	padding: 0px;
	margin: auto;
}
.pageLink_2 p{
	border: 2px solid #cccccc;
	margin: 7px;
	width:75px;
	height:75px;
	font-size:90%;
	padding: 5px;
	border-radius: 7px;
}
.pageLinkIcon{
	float: left;
}
.pageLinkBs{
	width:290px;
	background:none;
	margin-bottom:0;
	padding: 0px;
	margin: auto;
	display:block;
}
.pageLinkBs div{
	width: 145px;
	background: none;
	padding:0px;
	margin-bottom:0px;
	line-height:200%;
}
	
.pageLinkBs p{
	border: 2px solid #cccccc;
	background-color:#f9f9f9;
	margin: 10px;
	padding-top: 15px;
	width:110px;
	height:50px;
	line-height:1.3em;
	vertical-align:middle;
	text-align: center;
	color:#000;
	border-radius:7px;
}
}


/********************************
レスポンスデバイス
********************************/

.formBoxM{
	margin: 0 auto;
	width: 1040px;
}
.leftFormBox{
	float:left;
	width:500px;
	height:220px;
	background:#fff;
	border-radius:10px;
	margin:10px;
}
.rightFormBox{
	float:right;
	width:500px;
	height:220px;
	background:#fff;
	border-radius:10px;
	margin:10px;
}
.middleResBox{
	padding: 8px;
}
.resTitle{
	background:#05214a;
	color:#ffffff;
	text-align:center;
	font-weight:bold;
	border-radius:10px 10px 0 0;
	padding:4px 0 4px 0;
}
.middletelNumber{
	display:inline;
	font-size:290%;
	color:#f00;
	font-weight:bolder;
	margin:0 auto;
}
.middletelNumber img{
	margin-right:8px;
	margin-top:10px
}


.middleResBtn{
	background-color:#E32A2D;
	vertical-align: middle;
	text-align:center;
	width: 80%;
	margin:10px auto;
	border-radius: 5px;
	box-shadow: 0px 6px 3px -3px rgb(183, 183, 183);
	-webkit-box-shadow:0px 6px 3px -3px rgb(183, 183, 183);
	-moz-box-shadow: 0px 6px 3px -3px rgb(183, 183, 183);
}
.middleResBtn a{
	display:block;
	padding:12px;
	color:#ffffff;
	font-size:140%;
	font-weight:bold;
	line-height: 1.3em;
}
.middleResBtn:hover{
	background-color:#1B61B4;
}


@media (max-width: 768px) {
.formBoxM{
	margin: 0 auto;
	width: 100%;
}
.leftFormBox{
	float:none;
	width:98%;
	height:auto;
	margin:10px auto;
	border-radius:10px;
}
.rightFormBox{
	float:none;
	width:98%;
	height:auto;
	margin:10px auto;
	border-radius:10px;
}
.middleResBox{
	padding:5px;
	font-size:90%;
	line-height:1.5em;
}
.middletelNumber{
	display:inline;
	font-size:230%;
	color:#f00;
	font-weight:bolder;
	margin:0 auto;
}
.middletelNumber img{
	width: 30px;
	height: 20px;
	margin-right:5px;
	margin-top:5px
}
.middletelNumber a{
	color:#f00;
}

.middletelBusinessHours{
	text-align: center;
	margin-top:5px;
}

.middleResBtn{
	background-color:#E32A2D;
	vertical-align: middle;
	text-align:center;
	width:95%;
	margin:7px auto;
}
.middleResBtn a{
	display:block;
	padding:8px;
	color:#ffffff;
	font-size:120%;
	font-weight:bold;
	line-height: 1.3em;
}
}


.bgGray
{
	width: 1024px;
	background-color:#f3f3f3;
	padding:15px 20px;
	margin:0 auto 15px auto;
}

@media (max-width: 768px) {
.bgGray
{
	width:94%;
	background-color:#f3f3f3;
	padding:3%;
	margin:10px 0;
}
}


/********************************
404
********************************/
#notFoundLink
{
	margin:20px 0 70px 0;
	padding:20px;
	line-height: 1.8em;
}
h2.notFound {
	font-size:130%;
	padding:3px 0 4px 0px;
}
.pcLinlLeft{
	float: left;
	margin-right:60px;
}
.qaBlank{
	margin-bottom: 15px;
}

@media (max-width: 768px) {
#notFoundLink
{
	margin:0;
	padding:10px;
}
h2.notFound{
	font-size:115%;
	line-height:130%;
	color: #323232;
	border-left:solid 3px #E100D6;
	border-bottom:solid 3px #E100D6;
	padding:3px 0 3px 3px;
	margin-right:5px;
	margin-bottom: 3px;
}
.pcLinlLeft{
	float: none;
	margin-right:0;
	margin-bottom: 20px;
}
.pcLinlLeft div{
	margin-left: 6px;
}
.qaBlank{
	margin-bottom:20px;
}


}

/********************************
footer　レスポンシブ店舗情報
********************************/
.resInfoArea{
	width:524px;
	margin-top:14px;
}
.yearText{
	background-color:#FF7409;
	color:#fff;
	font-size:18px;
	font-weight:450;
	padding:5px 8px;
}
.shopTitle{
	color:#000;
	font-size:32px;
	font-weight:bold;
	text-align:left;
	line-height:1.4em;
}
.resInfoBox{
	display:block;
	width:375px;
	float:left;
}
.resFreeDial{
	height:28px;
	color:#FF7409;
	font-size:36px;
	font-weight:bold;
	text-align:left;
	line-height:1.2em;
}
.resMailadd{
	color:#FF7409;
	font-size:26px;
	font-weight:bold;
	text-align:left;
	margin:0;
	clear:both;
	line-height:1.4em;
}
.resFreeDial .resIcon{
	margin-right:4px;
	float:left;
	margin-top:8px;
}
.resMailadd .resIcon{
	margin-right:14px;
	margin-left:2px;
	float:left;
	margin-top:8px;
}
.resFreedialTime{
	display:block;
	width:144px;
	color:#000;
	font-size:13px;
	margin-left:4px;
	margin-top:12px;
	text-align:left;
	float:left;
	line-height:1.2;
}
.resCaution{
	clear:both;
	color:#000;
	font-size:14px;
	text-align:left;
	line-height:1.2;
	font-weight:bold;
}

/*******************************/
/*「続きを読む」（CSSのみで実装）*/
/*******************************/
.on-off{
	display:none;
}

@media (max-width: 768px) {
.on-off{
	display:block;
}
/*「続きを読む」テキスト*/
.readMoreText label{
	text-decoration:none;
	color:#0066ff;
}

.readMoreText input[type="checkbox"].on-off{
	display: none;
}

.readMoreText div.read {
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	margin: 0;
	padding: 0;
	list-style: none;
}

.readMoreText input[type="checkbox"].on-off + div.read{
	max-height:0;
	overflow:hidden;
}

.readMoreText input[type="checkbox"].on-off:checked + div.read{
	max-height:5000px;
}

/*「続きを読む」ボタン*/
.readMoreBtn label{
	background:#FF8E2C;
	color: #fff;
	padding: 5px;
	display: block;
	margin: 0;
	/*border: 1px solid #fff;*/
}

.readMoreBtn input[type="checkbox"].on-off{
	display: none;
}

.readMoreBtn div.read {
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	margin: 0;
	padding: 0;
	list-style: none;
}

.readMoreBtn input[type="checkbox"].on-off + div.read{
	max-height:0;
	overflow: hidden;
}

.readMoreBtn input[type="checkbox"].on-off:checked + div.read{
	max-height:1000px;
}
}
/********/
/*mome欄*/
/********/
.memoArea{
	margin: 20px;
	padding: 20px;
	background-color:#FFE7DA;
}
@media (max-width: 768px) {
	.memoArea{
		margin: 8px;
		padding:5px 3%;

	}
}
