@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;
}
}


/********************************
SPのみ追っかけヘッダー分下げる
付けるところに他のmargin、paddingが入っていないか注意
********************************/
	
@media (max-width: 768px) {
.anchorLink{
	margin-top:-50px;
	padding-top:50px;
}
}


/********************************
・追っかけヘッダー（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;
}
}

/********************************
ハンバーガーメニュー（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%;
}
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%;
}
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{
	margin:auto;
	padding-top: 15px;
}
.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:#06872b;
	color:#FFFFFF;
	font-size: 90%;
	line-height:120%;
	text-decoration:none;
	vertical-align:middle;
}
#page_top:hover{
	background:#54ad6e;
}
#main_menu{
	text-align: center;
	position: fixed;
	bottom: 40px;
	right: 100px;
	width:80px;
	height:62px;
	padding-top: 18px;
	background:#06872b;
	color:#FFFFFF;
	font-size: 90%;
	line-height:120%;
	text-decoration:none;
}
#main_menu:hover{
	background:#54ad6e;
}

@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:#c8f7d1;
}

@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:#d7f4d9;
}
.calendarBox
{
	width:96%;
	text-align: center;
	background-color:#c8f7d1;
}
.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;
}
}



/****************************************************************
↓ここから下テンプレート以外で使用(共通)
****************************************************************/

/********************************
カード
********************************/

.bgWhiteBodyArea
{
    padding: 70px 0;
	margin:0 auto 15px;
	text-align:left;
	font-size: 95%;
}

.areaInside
{
    width: 1004px;
	margin: 0 auto;
	padding:18px 25px 0px 25px;
}
.topBackColor{
    background-color: #f2fcf2;
}

@media (max-width: 768px) {

.bgWhiteBodyArea {
    padding: 0;
	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
{
    width: auto;
	padding: 3% 4% 4% 4%;
}
.topBackColor{
    background-color: #fff;
}
}

.textBox{
	margin-bottom:15px;
}
@media (max-width: 768px) {
.textBox{
	margin-bottom:10px;
}
	
}



/********************************
見出し設定
********************************/
h1.normal
{
	padding:10px 0 8px 8px;
	background-color:#F9F9F9;
	border-left:10px solid #036b21;
	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 #036b21;
	font-size:150%;
	margin:0 0 10px 0;
}
}

h2.top-card {
	clear:both;
	font-size: 250%;
	line-height: 1.4;
	padding: 0 20px ;
	text-align: center;
}

@media (max-width: 768px) {
h2.top-card {
	clear:both;
	background-color: #036b21;
	color: #FFFFFF;
	font-size: 115%;
	line-height: 1.3;
	padding: 10px 0px;
	text-align: center;
	background-color: #036b21;
	color: #FFFFFF;
}
}

h2.normal {
	font-size:180%;
	padding:3px 0 4px 8px;
	line-height:32px;
	border-left:5px solid #036b21;
	border-bottom:3px solid #036b21;
}
@media (max-width: 768px) {
h2.normal{
	font-size:120%;
	line-height:130%;
	color: #323232;
	border-left:solid 3px #036b21;
	border-bottom:solid 3px #036b21;
	padding:3px 0 3px 3px;
	margin-right:5px;
	margin-left:1px;
}
}
h2.bsForm{
	font-size: 140%;
	padding:0 6px;
	border-left:5px solid #036b21;
}
@media (max-width: 768px) {
h2.bsForm{
	font-size: 120%;
	padding:0 5px;
	border-left:4px solid #036b21;
}
}

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;
} 


/*ｈ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:15px auto;
}
#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;
	margin:20px 0;
}
.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:82px;
	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:block;
	font-size:290%;
	color:#f00;
	font-weight:bolder;
	margin:0 auto 15px 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;
}
	
.topTelBox{
	display:inline;
	text-align: center;
	border:solid 1px #D4D4D4;
	border-radius: 8px;
	-moz-border-radius:8px;
	-ms-border-radius:8px;
	width: 100%;
}
.smalltelNumber{
	display:inline;
	font-size:200%;
	color:#f00;
	font-weight:bolder;
	margin:0 auto;
}
.smalltelNumber img{
	width: 30px;
	height: 20px;
	margin-right:5px;
	margin-top:5px
}
.smalltelNumber 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:70px;
}
.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 #036b21;
	border-bottom:solid 3px #036b21;
	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;
}


}






