@charset "utf-8";
/* CSS Document */
@import url("normalize.css");
*{
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}
article,aside,canvas,details,figcaption,figure,
header,footer,main,menu,nav,section,summary{
	display: block;
}
html body{
	width: 100vw;
	height: 100%;
	padding:0;
	margin:0;
	font-family: "Helvetica Neue",Arial,"Hiragino Kaku Gothic Pro",Meiryo,"MS PGothic",sans-serif;
	font-size: 0.9rem;
	overflow-x:hidden !important;
}
#wrapper{
	width: 100%;
	height: 100%;
	min-height: 100vh;
	overflow-x: hidden !important;
}
p{
	line-height: 2rem;
}
a{
	text-decoration: none;
}
a:hover{
	transition: 0.5s;
	opacity: 0.8;
}
ol{
	width: 100%;
	margin: 0;
}
ol li{
	list-style: none;
	line-height: 1.5rem;
	padding: 5px;
	border-bottom: solid 0.5px lightgray;
}
ol li:nth-child(2n+1){
	background-color: rgba(204,204,204,0.1);
}
@media screen and (max-width:768px) {
	html body{
		font-size: 0.8rem;
		overflow-x:hidden !important;
	}
	p{
		line-height: 1.4rem;
	}
}
output{
	display: inline-block;
}
/*-------------------------------------

class

-------------------------------------*/
.area{
	width: 90%;
	margin: 0 5%;
	min-height: 20vh;
	padding: 50px 0;
	background-color: transparent;
}
.fa{
	color: orange;
}
.left{
	float: left;
}
.right{
	float: right;
}
.textLeft{
	text-align: left;
}
.textRight{
	text-align: right;
}
.center{
	text-align: center;
}
.red{
	color: red;
}
.big{
	font-weight: bold;
}
.orange{
	color: orange;
}
.wsnw {
	white-space: nowrap !important;
}
.requiredRed{
	color: white;
	background-color: red;
	border-radius: 3px;
	font-size: 0.6rem;
	padding: 2px 5px;
	vertical-align: middle;
}
.cautionBox{
	border-right: solid 1px lightgray;
	font-size: 0.7rem;
	font-weight: bold;
}
.caution{
	font-size: 0.7rem;
	font-weight: bold;
}
@media screen and (max-width:768px) {
	.area{
		width: 100%;
		margin: 0;
		padding: 10px 0;
	}
	.cautionBox{
		border-right: solid 1px lightgray;
		white-space: normal;
	}
}

/*-----------------
.breadcrumb ※パンくずリスト
-----------------*/
ol.breadcrumb {
	width: 100%;
	margin: 5px 0;
}
ol.breadcrumb li{
	list-style: none;
	line-height: 0.9rem;
	padding: 1px;
	border-bottom: none;
}
@media screen and (max-width:768px) {
	ol.breadcrumb li{
		font-size: 0.7rem;
	}
}

/*------------------------------------

header

------------------------------------*/
header{
	height: 100px;
	border-top: solid 5px rgba(0,153,51,1);
}
#titleLogo{
	position: relative;
	top: 25px;
	left:0;
}
#titleLogo img{
	padding: 6px 0 0;
	height: 60px;
	width: auto;
}
.tel{
	text-align: right;
	position: absolute;
	top: 45px;
	right: 15px;	
}
.tel p{
	font-size: 3rem;
	line-height: 1rem;
	font-weight: bold;
	color: #009900;
}
.tel a{
	color: #009900;
	text-decoration: none;
}
.tel img{
	height: 35px;
}
.headline{
	position: absolute;
	top: 0vh;
	left: 20px;
	font-size: 0.6em;
	color: rgba(0, 52, 89, 100);
}
@media screen and (max-width:768px) {
	#header{
		border-top: solid 3px rgba(0,153,51,1);
		height: 90px;
		margin: 0;
	}
	#titleLogo{
		position: relative;
		top: 15px;
		left: 0;
		margin: 0;
		padding: 0;
	}
	#titleLogo img{
		margin: 0;
		padding: 0;
		width: auto;
		height: 40px;
	}
	.tel{
		position: relative;
		top: 20px;
		left: 0;
		margin: 0;
		padding: 0;
		text-align: left;
	}
	.tel p{
		font-size: 2rem;
		line-height: 1rem;
		font-weight: bold;
		color: #009900;
	}
	.tel a{
		color: #009900;
	}
	.tel a:hover,
	.tel a:active{
		text-decoration: none;
	}
	.tel img{
		margin: 0;
		padding: 0;
		width: auto;
		height: 15px;
		max-width: 100%;	
	}
	.headline{
		position: absolute;
		top: 2px;
		font-size: 0.6em;
		color: rgba(0, 52, 89, 1);
	}
	.headline span{
		display: none;
	}
	.headline p{
		line-height: 1.2em;
	}
}

/*------------------------------------

#gNav

------------------------------------*/
#gNav{
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0.00, #fff), color-stop(1.00, #cecece));
	background: -webkit-linear-gradient(#fff, #cecece);
	background: -moz-linear-gradient(#fff, #cecece);
	background: -o-linear-gradient(#fff, #cecece);
	background: -ms-linear-gradient(#fff, #cecece);
	background: linear-gradient(#fff, #cecece);
	border-bottom: solid 4px rgba(0,153,51,1);
}
#gNav ul.nav{
	display: table;
	width: 100%;
	table-layout: fixed;
	font-size: 1.1em;
}
#gNav ul.nav li{
	padding-top: 5px;
	text-align: center;
	line-height: 20px;
	display: table-cell;
	width: 100%;
	border-right: 1px solid rgba(105,105,105,0.8);
}
#gNav ul.nav li:first-child{
	border-left: 1px solid rgba(105,105,105,0.8);
}
#gNav ul.nav li a{
	display: block;
	list-style: none;
	color: black;
	font-weight: bold;
	text-shadow: 0 0 10px rgba(255, 255, 255, .7);
}
#gNav ul.nav li a:hover{
	text-decoration: none;
}
#gNav ul.nav li ul.dropdown-menu{
	width: 100%;
	border-radius: 0;
	padding: 0;
	margin: 0;
}
#gNav ul.nav li ul.dropdown-menu li{
	width: 100%;
	border: none;
	display: table;
}
#gNav ul.nav li ul.dropdown-menu li a{
	display: block;
	line-height: 40px;
}
@media screen and (max-width:768px) {
	#gNav ul.nav{
		display: table;
		width: 100%;
		table-layout: fixed;
		font-size: 0.6em;
	}
	#gNav ul.nav li{
		padding-top: 0;
		text-align: center;
		line-height: 15px;
		display: table-cell;
		width: 100%;
		border-right: 1px solid rgba(105,105,105,0.8);
	}
	#gNav ul.nav li:first-child{
		border-left: 1px solid rgba(105,105,105,0.8);
	}
	#gNav ul.nav li:nth-child(4),
	#gNav ul.nav li:nth-child(5){
		display: none;
	}
	#gNav ul.nav li a{
		display: block;
		list-style: none;
		color: black;
		font-weight: normal;
		text-shadow: 0 0 10px rgba(255, 255, 255, .7);
	}
	#gNav ul.nav li a:hover{
		text-decoration: none;
	}
	#gNav ul.nav li ul.dropdown-menu{
		width: 230px;
		border-radius: 0;
		padding: 0;
		margin: 0;
	}
	#gNav ul.nav li ul.dropdown-menu li{
		width: 100%;
		border: none;
		display: table;
	}
	#gNav ul.nav li ul.dropdown-menu li a{
		display: block;
		text-align:left;
		line-height: 30px;
	}
}

/*------------------------------------

#topNav

------------------------------------*/
#topNav{
	position: absolute;
	top: 0;
	right: 15px;
	font-size: 0.9em;
}
#topNav ul{
	text-align: center;
	margin: auto;
}
#topNav ul li{
	display: inline-block;
	margin-left: 1px;
}
#topNav ul li a{
	list-style: none;
	display: inline-block;
	padding: 3px 10px;
	border-left: solid 1px rgba(0,153,51,1);
	border-right: solid 1px rgba(0,153,51,1);
	border-bottom: solid 1px rgba(0,153,51,1);
	background-color: rgba(0,153,51,1);
	border-radius: 0 0 2px 2px;
	color: white;
}
#topNav ul li a:hover{
	text-decoration: none;
	color: rgba(0,153,51,1);
	background-color: white;
}
@media screen and (max-width:768px) {
	#topNav{
		display: none;
	}
}

/*------------------------------------

#middleNav

------------------------------------*/
#middleNav a{
	display: block;
	margin: 0;
	padding: 0;
}
@media screen and (max-width:768px) {
	#middleNav .col-xs-6:nth-child(2n+1){
		padding: 0 0 0 15px;
	}
	#middleNav .col-xs-6:nth-child(2n){
		padding: 0 15px 0 0;
	}
	#middleNav a{
		display: block;
		margin: 0;
		padding: 0;
	}
	#middleNav a img{
		width: 100%;
	}
}

/*------------------------------------

#trainNav

------------------------------------*/
#trainNav ul{
	list-style: none;
}
#trainNav img{
	padding: 3px;
}
#trainNav ul li{
	float: left;
	width: calc(100% / 3);
}
#trainNav ul li a{
	display: block;
	letter-spacing: 0.1rem;
	text-align: center;
	font-size: 1.2rem;
	color: white;
	width: 99%;
	margin: 3px auto;
	font-weight: bold;
	text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.4), 0 1px 1px rgba(255, 255, 255, 0.5);
	box-shadow: inset 0 -1px 1px rgba(0, 0, 0, 0.9), inset 0 1px 0 rgba(255, 255, 255, 0.4);
	border-radius: 6px;
	text-decoration: none;
	padding: 30px;
	/*background: -webkit-gradient(linear, left top, left bottom, color-stop(1.00, #26fa00), color-stop(0.00, #9ff688));
	background: -webkit-linear-gradient(#9ff688, #26fa00);
	background: -moz-linear-gradient(#9ff688, #26fa00);
	background: -o-linear-gradient(#9ff688, #26fa00);
	background: -ms-linear-gradient(#9ff688, #26fa00);
	background: linear-gradient(#9ff688, #26fa00);*/
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0.67, #08144d), color-stop(0.00, #0d46a5));
	background: -webkit-linear-gradient(top, #0d46a5 0%, #08144d 67%);
	background: -moz-linear-gradient(top, #0d46a5 0%, #08144d 67%);
	background: -o-linear-gradient(top, #0d46a5 0%, #08144d 67%);
	background: -ms-linear-gradient(top, #0d46a5 0%, #08144d 67%);
	background: linear-gradient(to bottom, #0d46a5 0%, #08144d 67%);

}
#trainNav a:hover{
	opacity: 1;
	text-shadow: none;
	box-shadow: none;
}
#trainNav a:hover,
#trainNav a:active{
	text-decoration: none;
}
@media screen and (max-width:768px) {
	#trainNav ul li{
		float: left;
		width: calc(100% / 2);
	}
	#trainNav ul li a{
		padding: 15px;
	}

}
/*------------------------------------

#univNav

------------------------------------*/
#univNav ul{
	list-style: none;
}
#univNav img{
	padding: 3px;
}
#univNav ul li{
	float: left;
	width: 50%;
}
#univNav ul li:nth-child(3),
#univNav ul li:nth-child(4),
#univNav ul li:nth-child(5){
	width: calc(100% / 3);
}
#univNav ul li a{
	display: block;
	letter-spacing: 0.1rem;
	text-align: center;
	font-size: 1.2rem;
	color: white;
	width: 99%;
	margin: 3px auto;
	font-weight: bold;
	text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.4), 0 1px 1px rgba(255, 255, 255, 0.5);
	box-shadow: inset 0 -1px 1px rgba(0, 0, 0, 0.9), inset 0 1px 0 rgba(255, 255, 255, 0.4);
	border-radius: 6px;
	text-decoration: none;
	padding: 30px;
	/*background: -webkit-gradient(linear, left top, left bottom, color-stop(1.00, #ff8f8f), color-stop(0.00, #fde3e2));
	background: -webkit-linear-gradient(#fde3e2, #ff8f8f);
	background: -moz-linear-gradient(#fde3e2, #ff8f8f);
	background: -o-linear-gradient(#fde3e2, #ff8f8f);
	background: -ms-linear-gradient(#fde3e2, #ff8f8f);
	background: linear-gradient(#fde3e2, #ff8f8f);*/
	background: -webkit-gradient(linear, left top, left bottom, color-stop(1.00, #d54876), color-stop(0.00, #ffb6c1));
background: -webkit-linear-gradient(#ffb6c1, #d54876);
background: -moz-linear-gradient(#ffb6c1, #d54876);
background: -o-linear-gradient(#ffb6c1, #d54876);
background: -ms-linear-gradient(#ffb6c1, #d54876);
background: linear-gradient(#ffb6c1, #d54876);

}
#univNav a:hover{
	opacity: 1;
	text-shadow: none;
	box-shadow: none;
}
#univNav a:hover,
#univNav a:active{
	text-decoration: none;
}
@media screen and (max-width:768px) {
	#univNav ul li{
		float: left;
		width: 50%;
	}
	#univNav ul li:nth-child(3),
	#univNav ul li:nth-child(4),
	#univNav ul li:nth-child(5){
		width: 50%;
	}
	#univNav ul li a{
		padding: 15px;
	}
}
/*------------------------------------

#main

------------------------------------*/
#main{
	padding: 0 20px;
}
#main h2{
	margin-top: 15px;
}
#bodyArea{
	margin-top: 10px;
}
.staffInfo{
	margin:5px 0;
}
.staffImage{
	text-align: center;
}
.staffImage img{
	height: 200px;
}
@media screen and (max-width:768px) {
	#main{
		padding: 0 5px;
		margin-bottom: 10px;
	}
}

/*------------------------------------

#slideArea ※トップ画像スライダー

------------------------------------*/
#slideArea{
	background: -webkit-gradient(linear, left top, left bottom, color-stop(1.00, #fff), color-stop(0.00, #e3e3e3));
	background: -webkit-linear-gradient(#e3e3e3, #fff);
	background: -moz-linear-gradient(#e3e3e3, #fff);
	background: -o-linear-gradient(#e3e3e3, #fff);
	background: -ms-linear-gradient(#e3e3e3, #fff);
	background: linear-gradient(#e3e3e3, #fff);
}
#slideArea img{
	width: 100%;
	height: auto;
}
@media screen and (max-width:768px) {
	#slideArea{
		margin: 0;
	}
	#slideArea .col-md-12{
		padding: 0;
	}
	#slideArea img{
		width: 100%;
		height: auto;
	}
}

/*------------------------------------

#topicsArea ※トップ新着情報

------------------------------------*/
#topicsArea ol{
	font-size: 0.8rem;
	height: 200px;
	overflow-x: hidden;
}

/*------------------------------------

#mapArea

------------------------------------*/
#mapArea{
	width: 100%;
	height: 300px;
}
#mapInfoArea{
	width: 500px;
	height: 130px;
	overflow-x: hidden !important;
}
#mapInfoArea p{
	color: gray;
}
#mapInfoArea img{
	background-color: gray;
	padding: 1px;
}

/*------------------------------------

#orderArea ※わがままオーダー

------------------------------------*/
#orderArea ul{
	padding: 10px;
}
#orderArea ul li{
	list-style: none;
	font-weight: bold;
	line-height: 1.5em;
}

/*------------------------------------

#corporateArea ※法人・企業様へ

------------------------------------*/
.ownerServiceArea dl{
	margin: 15px 40px 0 10px;
	float: left;
}
.ownerServiceArea dt{
	margin: 5px;
	font-size: 1.2em;
	font-weight: bold;
}
.ownerServiceArea dd{
	margin: 5px;
}

.ownerAttractArea dl{
	margin: 15px 40px 0 10px;
}
.ownerServiceArea dt{
	margin: 5px;
	font-size: 1.2em;
	font-weight: bold;
}
.ownerServiceArea dd{
	margin: 5px;
}
#corporateArea ul{
	margin: 15px;
}
#corporateArea li{
	line-height: 1.2em;
}

/*------------------------------------

#privacyArea ※個人情報保護方針

------------------------------------*/
#privacyArea p{
	margin: 0 15px;
}
#privacyArea h3{
	padding: 15px 0 0;
}

/*------------------------------------

#companyArea ※会社概要

------------------------------------*/
#companyArea .companyComment{
	padding: 15px 30px;
}
.tableStyle_01{
	width: 100%;
	margin: 0;
}
.tableStyle_01 th,
.tableStyle_01 td{
	line-height: 2em;
	padding: 10px;
	vertical-align: middle;
	border-bottom: solid 1px lightgray;
}
.tableStyle_01 th{
	font-weight: normal;
	width: 150px;
	background-color: antiquewhite;
	color: #4d4842;
	text-align: center;
}
@media screen and (max-width:768px) {
	#companyArea .companyComment{
		padding: 15px;
	}
	.tableStyle_01{
		width: 100%;
		margin: 0;
	}
	.tableStyle_01{
		display: block;
	}
	.tableStyle_01 thead{
		display: block;
		width: 100%;
		border-bottom: solid 1px #4d4842;
	}
	.tableStyle_01 thead tr{
		display: block;
		margin-bottom: 0;
	}
	.tableStyle_01 thead th,
	.tableStyle_01 thead td{
		display: list-item;
		line-height: 1.5rem;
		padding: 5px;
	}
	.tableStyle_01 thead th{
		width: 100%;
		list-style-type: none;
		border: none;
		text-align: left;
	}
	.tableStyle_01 tbody{
		display: block;
	}
	.tableStyle_01 tbody tr{
		display: block;
		margin-bottom: 0;
	}
	.tableStyle_01 tbody th,
	.tableStyle_01 tbody td{
		display: list-item;
		line-height: 1.5rem;
		padding: 5px;
	}
	.tableStyle_01 tbody th{
		width: 100%;
		list-style-type: none;
		border: none;
		text-align: left;
	}
	.tableStyle_01 tbody td{
		list-style-type: none;
		margin-bottom: 0;
		border-bottom: none;
	}
	.blank{
		display: none;
	}
}
/*------------------------------------

#shopArea ※店舗紹介

------------------------------------*/
#shopArea .col-lg-3{
	text-align: center;
	margin: 10px auto;
}
@media screen and (max-width:768px) {
	#shopArea .col-xs-6{
		text-align: center;
	}
	#shopArea .col-xs-6:nth-child(2n+1){
		padding-left:5px;
	}
	#shopArea .col-xs-6:nth-child(2n){
		padding-right:5px;
	}
}
/*------------------------------------

#staffArea ※スタッフ紹介

------------------------------------*/
.staffInfo .staffImage{
	padding-right: 0;
}
.staffInfo .staffComment{
	margin-top: 15px;
	padding-left: 0;
	padding-right: 0;
}
.staffInfo .staffCommentInner{
	position: relative;
	height: 100px;
	background-color: #f0f0f0;
	border-radius: 6px;
	box-shadow: -2px -2px 4px rgba(0, 0, 0, .1) inset;
	padding: 5px 10px;
	text-overflow: ellipsis;
	-ms-overflow-y: hidden;
}
@-moz-document url-prefix(){
  .staffInfo .staffCommentInner{
    overflow-y: hidden;
  }
}
.staffInfo .staffCommentInner::after {
	position: absolute;
	top: 20px;
	left: -25px;
	content: '';
	width: 0;
	height: 0;
	border: 15px solid transparent;
	border-right: 10px solid #f0f0f0;
	z-index: 100;
}
.staffInfo .staffCommentInner p{
	display: -webkit-box;
	font-size: 1rem;
	overflow-y: hidden;
	line-height: 1.4rem;
}
.tableStyle_04{
	width: 100%;
	margin: 0;
}
.tableStyle_04 th,
.tableStyle_04 td{
	line-height: 1.5em;
	padding: 10px;
	vertical-align: middle;
	border-bottom: solid 1px lightgray;
}
.tableStyle_04 th{
	text-align: center;
	width: 140px;
	background-color: antiquewhite;
	color: #4d4842;
}
@media screen and (max-width:768px) {
	#staffArea img{
		width: 50px;
		height: auto;
	}
	#staffArea p{
		font-size: 0.8em;
	}
	.staffInfo .staffComment{
		margin-top: 0;
		padding-right: 15px;
	}
	.staffInfo .staffCommentInner{
		position: relative;
		height: 80px;
		background-color: #f0f0f0;
		border-radius: 6px;
		box-shadow: -2px -2px 4px rgba(0, 0, 0, .1) inset;
		padding: 3px 10px;
		text-overflow: ellipsis;
	}
	.staffInfo .staffCommentInner::after {
		position: absolute;
		top: 20px;
		left: -25px;
		content: '';
		width: 0;
		height: 0;
		border: 15px solid transparent;
		border-right: 10px solid #f0f0f0;
		z-index: 100;
	}
	.staffInfo .staffCommentInner p{
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 4;
		font-size: 0.9rem;
		overflow-y: hidden;
		line-height: 1.2rem;
	}
	.tableStyle_04{
		width: 100%;
		margin: 0;
		border-top: solid 1px lightgray;
	}
	.tableStyle_04 th,
	.tableStyle_04 td{
		line-height: 1.5em;
		padding: 3px;
		font-size: 0.7rem;
		vertical-align: middle;
		border-bottom: solid 1px lightgray;
	}
	.tableStyle_04 th{
		text-align: center;
		width: 100px;
		background-color: antiquewhite;
		color: #4d4842;
		white-space: nowrap;
	}
}

/*------------------------------------

#voiceArea ※お客様の声

------------------------------------*/
#voiceArea .row{
	padding: 0 15px;
}
#voiceArea h3{
	text-align: left;
	padding: 10px 30px;
	font-size: 1.2em;
}
.voiceBox{
	margin-bottom: 20px;
}
.voiceStaff{
}
.voiceStaff img{
	margin: auto;
	height: 120px;
}
.voiceImage img{
	border: double 3px gray;
	margin-bottom: 20px;
}
.voiceComment{
	position: relative;
	padding: .5em .75em;
	background-color: #f0f0f0;
	border-radius: 6px;
	box-shadow: -2px -2px 4px rgba(0, 0, 0, .1) inset;
	height: 125px;
}
.voiceComment p{
	height: 115px;
	padding: 0 5px;
	overflow-y: scroll;
	line-height: 1.5em;
	font-size: 0.9em;
}
.voiceComment::after {
	position: absolute;
	top: 50%;
	right: 100%;
	content: '';
	width: 0;
	height: 0;
	border: 10px solid transparent;
	border-right: 15px solid #f0f0f0;
}
@media screen and (max-width:768px) {
	.voiceImage{
		width: 100% !important;
	}
	.voiceImage img{
		width: 100% !important;
		height: auto !important;
		border: double 3px gray;
		margin-bottom: 20px;
	}
}

/*------------------------------------

#side

------------------------------------*/
#side ul{
	list-style: none;
}
#side ul.searchArea1{
	border: solid 1px rgba(0,153,51,1);
	border-radius: 5px;
	padding: 0 0 5px;
	margin-bottom: 5px;
}
#side ul.searchArea1 li{
	width: 96%;
	line-height: 30px;
	margin: 0 2% 3%;
	font-size: 0.9em;
	background: linear-gradient(0deg, rgba(0,153,51, .3), rgba(204,153,102, .1));
}
#side ul.searchArea1 li a{
	padding-left: 5px;
	color: rgba(51,51,51,1);
	display: block;
	width: 100%; 
	border: solid 1px #eee;
	background: url(../images/icon_01.png) right center no-repeat;
	outline: solid 1px #bbb;
}
#side ul.searchArea1 li:nth-child(3) a{
	background: url(../images/icon_02.png) right center no-repeat;
}
#side ul.searchArea1 li:nth-child(4) a{
	background: url(../images/icon_03.png) right center no-repeat;
}
#side ul.searchArea1 li:nth-child(5) a{
	background: url(../images/icon_04.png) right center no-repeat;
}
#side ul.searchArea1 li:nth-child(6) a{
	background: url(../images/icon_05.png) right center no-repeat;
}
#side ul.searchArea1 li a:hover{
	text-decoration: none;
	background-color: white;
	color: rgba(0,153,51,1);
	box-shadow: none;
}

/*---------------------
.searchArea2
----------------------*/
#side ul.searchArea2{
	border: solid 1px rgba(0,153,51,1);
	border-radius: 5px;
	padding: 0 0 10px;
	margin: 10px 0;
}
#side ul.searchArea2 li{
	width: 96%;
	line-height: 30px;
	margin: 4% 2%;
	font-size: 0.9em;
	background: linear-gradient(25deg, rgba(0,153,51, .3), rgba(204,153,102, .1));
}
#side ul.searchArea2 li a{
	padding-left: 5px;
	color: rgba(51,51,51,1);
	display: block;
	width: 100%; 
	border: solid 1px #eee;
	outline: solid 1px #bbb;
}
#side ul.searchArea2 li a:hover{
	text-decoration: none;
	background-color: white;
	color: rgba(0,153,51,1);
	box-shadow: none;
}
/*---------------------
.searchArea3
----------------------*/
#side ul.searchArea3{
	border: solid 1px rgba(0,153,51,1);
	border-radius: 3px;
	padding: 0;
	margin-bottom: 5px;
}
#side ul.searchArea3 h2{
	margin-bottom: 0;
}
#side ul.searchArea3 li{
	width: 100%;
	margin: 0;
	padding: 3px;
	border: solid 1px lightgray;
	background: linear-gradient(0deg, rgba(0,153,51, .3), rgba(204,153,102, .1));
}
#side ul.searchArea3 li a{
	color: #222;
	display: block;
	width: 100%; 
}
#side ul.searchArea3 li a p{
	padding: 3px;
	line-height: 1.2rem;
	font-size: 0.8rem;
}
#side ul.searchArea3 li a:hover{
	text-decoration: none;
}

#side ul.sideBnr li{
	width: 100%;
}
#side.col-md-2{
	padding: 0;
}
#side img{
	width: 100%;
	margin: 0;
}
.twitterArea{
	margin: 0 0 5px;
	box-shadow: 0 0 2px rgba(0, 0, 0, .15);
}
#sideInfo{
	clear:both;
	background-color: #f6f6f6;
	border: solid 1px rgba(0,153,51,1);
	border-radius: 3px;
	padding: 10px;
	margin: 0;
	font-size: 0.8rem;
}
@media screen and (max-width:768px) {
	#side{
		width: 100%;
		margin: 0 auto;
	}
	#side ul.sideBnr li{
		width: 50%;
		margin: 0;
		float: left;
	}
	#side.col-md-2{
		padding: 0 5px;
	}
	#sideInfo{
		clear:both;
		background-color: white;
		border: solid 1px rgba(0,153,51,1);
		border-radius: 0;
		padding: 10px;
		margin: 0;
		font-size: 0.9rem;
	}
	#sideInfo p{
		line-height: 1.2rem;
	}
}

/*------------------------------------

#topBknArea

------------------------------------*/
#topBknArea{
	width: 100%;
}
#topBknArea .bknBox{
	padding: 15px;
}
#topBknArea .bknBox .bkn{
	margin-bottom: 5px;
	padding: 10px 2px;
}
#topBknArea .bknBox .bkn .topBknName{
	padding: 0 5px 5px;
	margin-bottom: 5px;
	border-bottom: solid 1px lightgray;
	position:relative;
}
#topBknArea .bknBox .bkn .topBknName a{
	color: #222;
}
#topBknArea .bknBox .bkn .topBknName a:hover{
	text-decoration: none;
}
#topBknArea .bknBox .bkn .topBknName .topBknIcon_01 img{
	position: absolute;
	z-index: 150;
	height: 12px;
	width: auto;
	right: 0;
	top: 0;
}
#topBknArea .bknBox .bkn .topBknImage{
	height: 230px;
	overflow: hidden;
}
#topBknArea .bknBox .bkn .topBknImage a img{
	width: 100%;
}
#topBknArea .bknBox .bkn .topBknInfo .table_list{
	font-size: 0.9rem;
	font-weight: 100;
	margin-top: 5px;
}
#topBknArea .bknBox .bkn .topBknInfo .table_list th{
	white-space:nowrap;
	padding: 5px 10px;
	vertical-align: middle;
	background-color: antiquewhite;
	color: #4d4842;
	border-radius: 5px;
	border-bottom: solid 2px white;
}
#topBknArea .bknBox .bkn .topBknInfo .table_list td{
	padding: 5px 10px;
	vertical-align: middle;
}
#topBknArea .bknBox .bkn .topBknInfo .table_list td .red{
	font-weight: bold;
}
#topBknArea .bknBox .bkn .topBknIllustInner img{
	margin-top: 10px;
	width: 50px;
}
#topBknArea .bknBox .bkn .topBknComment{
	margin-top: 5px;
	padding-left: 20px;
}
#topBknArea .bknBox .bkn .topBknCommentInner{
	position: relative;
	height: 100px;
	background-color: #f0f0f0;
	border-radius: 6px;
	box-shadow: -2px -2px 4px rgba(0, 0, 0, .1) inset;
	padding: 5px 10px;
	text-overflow: ellipsis;
	-ms-overflow-y: hidden;
}
@-moz-document url-prefix(){
  #topBknArea .bknBox .bkn .topBknCommentInner{
    overflow-y: hidden;
  }
}
@supports (-ms-ime-align:auto) {
 #topBknArea .bknBox .bkn .topBknCommentInner{
    overflow-y: hidden;
  }
}
#topBknArea .bknBox .bkn .topBknCommentInner::after {
	position: absolute;
	top: 20px;
	left: -25px;
	content: '';
	width: 0;
	height: 0;
	border: 15px solid transparent;
	border-right: 10px solid #f0f0f0;
	z-index: 100;
}
#topBknArea .bknBox .bkn .topBknComment p{
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	font-size: 0.8rem;
	overflow-y: hidden;
	line-height: 1.4rem;
}
.forListBtn{
	text-align: right;
}
.forListBtn a{
	color: white;
	padding: 3px 10px;
	border-radius: 10px;
	background-color: orange;
	border: solid 1px orange;
	transition-duration: 0.5s;
}
.forListBtn a .fa{
	color: white;
}
.forListBtn a:hover{
	color: orange;
	background-color: white;
	text-decoration: none;
	transition-duration: 0.5s;
}
.forListBtn a:hover .fa{
	color: orange;
}
@media screen and (max-width:768px) {
	#topBknArea{
		width: 100%;
	}
	#topBknArea .bknBox{
		padding: 15px;
	}
	#topBknArea .bknBox .bkn{
		width: 100%;
		margin-bottom: 5px;
		padding: 10px 5px;
		padding-top: 10px;
		padding-bottom: 10px;
		border: solid 1px lightgray;
	}
	#topBknArea .bknBox .bkn .topBknName{
		padding: 0 5px 5px;
		margin-bottom: 5px;
		border-bottom: solid 1px lightgray;
		position:relative;
	}
	#topBknArea .bknBox .bkn .topBknName .topBknIcon_01 img{
		position: absolute;
		z-index: 150;
		height: 12px;
		width: auto;
		right: 0;
		top: 0;
	}
	#topBknArea .bknBox .bkn .col-xs-4{
		padding-right: 0;
	}
	#topBknArea .bknBox .bkn .col-xs-8{
		padding-left: 5px;
	}
	#topBknArea .bknBox .bkn .topBknImage{
		height: auto;
		overflow: visible;
	}
	#topBknArea .bknBox .bkn .topBknImage a img{
		width: 100%;
	}
	#topBknArea .bknBox .bkn .topBknInfo .table_list{
		font-size: 0.7rem;
		font-weight: bold;
		margin-top: 0;
	}
	#topBknArea .bknBox .bkn .topBknInfo .table_list th{
		white-space:nowrap;
		padding: 3px;
		vertical-align: middle;
		background-color: antiquewhite;
		color: #4d4842;
		border-radius: 5px;
		border-bottom: solid 2px white;
	}
	#topBknArea .bknBox .bkn .topBknInfo .table_list td{
		padding: 3px;
		vertical-align: middle;
	}
	#topBknArea .bknBox .bkn .topBknIllustInner img{
		margin-top: 10px;
		width: 50px;
	}
	#topBknArea .bknBox .bkn .col-xs-2{
		padding-right: 5px;
	}
	#topBknArea .bknBox .bkn .topBknComment{
		margin-top: 5px;
	}
	#topBknArea .bknBox .bkn .topBknCommentInner{
		position: relative;
		height: 80px;
		background-color: #f0f0f0;
		border-radius: 6px;
		box-shadow: -2px -2px 4px rgba(0, 0, 0, .1) inset;
		padding: 3px 10px;
		text-overflow: ellipsis;
	}
	#topBknArea .bknBox .bkn .topBknCommentInner::after {
		position: absolute;
		top: 20px;
		left: -25px;
		content: '';
		width: 0;
		height: 0;
		border: 15px solid transparent;
		border-right: 10px solid #f0f0f0;
		z-index: 100;
	}
	#topBknArea .bknBox .bkn .topBknComment p{
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 4;
		font-size: 0.7rem;
		overflow-y: hidden;
		line-height: 1.2rem;
	}
	.forListBtn{
		margin: 5px 0;
	}
}

/*------------------------------------

#listBknArea

------------------------------------*/	
#listBknArea{
	width: 100%;
}
#listBknArea .bknBox{
	padding: 10px;
}
#listBknArea .bknBox .bkn{
	margin-bottom: 5px;
	padding: 10px 10px 5px;
	border: solid 1px lightgray;
}
#listBknArea .bknBox .bkn .listBknName{
	padding: 0 5px 5px;
	margin-bottom: 5px;
	border-bottom: solid 1px lightgray;
	position:relative;
}
#listBknArea .bknBox .bkn .listBknName a{
	color: #222;
}
#listBknArea .bknBox .bkn .listBknName .listBknIcon_01 img{
	position: absolute;
	z-index: 150;
	height: 12px;
	width: auto;
	right: 0;
	top: 0;
}
#listBknArea .bknBox .bkn .listBknImage{
	padding-right: 0;
}
#listBknArea .bknBox .bkn .listBknImage .listBknImage_01 img{
	width: 100%;
	height: auto;
}
#listBknArea .bknBox .bkn .listBknImage .listBknImage_02 img{
	width: 100%;
	height: auto;
}
#listBknArea .bknBox .bkn .listBknInfo .table_list{
	font-size: 1rem;
	font-weight: 100;
}
#listBknArea .bknBox .bkn .listBknInfo .table_list th{
	white-space:nowrap;
	padding: 11px;
	vertical-align: middle;
	background-color: antiquewhite;
	color: #4d4842;
	border-radius: 5px;
	border-bottom: solid 2px white;
}
#listBknArea .bknBox .bkn .listBknInfo .table_list td{
	padding: 11px;
	vertical-align: middle;
}
#listBknArea .bknBox .bkn .listBknInfo .red{
	font-size: 1.2em;
	color: red;
	font-weight: bold;
}
#listBknArea .bknBox .bkn .listBknIcon_02{
	width: 80%;
	margin-top: 3px;
	float: left;
}
#listBknArea .bknBox .bkn .listBknIcon_02 img{
	height: 20px;
	width: auto;
}
#listBknArea .bknBox .bkn .listBknLink{
	float: right;
	padding-top: 1px;
}
#listBknArea .bknBox .bkn .listBknLink a{
	color: white;
	padding: 3px 3px 2px 6px;
	border: solid 1px orange;
	background-color: orange;
	display: block;
	transition-duration: 0.5s;
	border-radius: 5px;
}
#listBknArea .bknBox .bkn .listBknLink a:hover{
	background-color: white;
	color: orange;
	text-decoration: none;
	transition-duration: 0.5s;
}
@media screen and (max-width:768px) {
	#listBknArea{
		width: 100%;
	}
	#listBknArea .bknBox{
		padding: 15px;
	}
	#listBknArea .bknBox .bkn{
		margin-bottom: 5px;
		padding: 10px 10px 5px;
		border: solid 1px lightgray;
	}
	#listBknArea .bknBox .bkn .listBknName{
		padding: 0 5px 5px;
		margin-bottom: 5px;
		border-bottom: solid 1px lightgray;
		position:relative;
	}
	#listBknArea .bknBox .bkn .listBknName a{
		color: #222;
	}
	#listBknArea .bknBox .bkn .listBknName .listBknIcon_01 img{
		position: absolute;
		z-index: 150;
		height: 12px;
		width: auto;
		right: 0;
		top: 0;
	}
	#listBknArea .bknBox .bkn .listBknImage{
		padding-right: 0;
	}
	#listBknArea .bknBox .bkn .listBknImage .listBknImage_01 img{
		width: 100%;
		height: auto;
		padding-right: 0;
	}
	#listBknArea .bknBox .bkn .listBknImage .listBknImage_02 img{
		width: 100%;
		height: auto;
		padding-right: 0;
	}
	#listBknArea .bknBox .bkn .listBknInfo{
		padding-left: 5px;
	}
	#listBknArea .bknBox .bkn .listBknInfo .table_list{
		font-size: 0.7rem;
		font-weight: 100;
	}
	#listBknArea .bknBox .bkn .listBknInfo .table_list th{
		white-space:nowrap;
		padding: 3px;
		vertical-align: middle;
		background-color: antiquewhite;
		color: #4d4842;
		border-radius: 5px;
		border-bottom: solid 2px white;
	}
	#listBknArea .bknBox .bkn .listBknInfo .table_list td{
		padding: 3px 3px 3px 5px;
		vertical-align: middle;
		font-weight:bold;
	}
	#listBknArea .bknBox .bkn .listBknInfo .red{
		font-size: 1.2em;
		color: red;
		font-weight: bold;
	}
	#listBknArea .bknBox .bkn .listBknIcon_02{
		width: 100%;
		margin-top: 3px;
		float: none;
	}
	#listBknArea .bknBox .bkn .listBknIcon_02 img{
		height: 20px;
		width: auto;
	}
}

/*---------------------
#sortToolsArea
----------------------*/
#sortToolsArea{
	width: 96%;
	margin: 10px 2%;
	padding: 10px;
	border: solid 1px #007700;
	background-color: #009900;
}
#sortToolsArea table td select{
	height: 30px;
	padding: 0 5px;
	margin-right: 1px;
}
.sortTools{
	margin-right: 10px;
	float: left;
}
@media screen and (max-width:768px) {
	#sortToolsArea{
		width: 92%;
		height: auto;
		font-size: 0.8em;
		margin: 10px 4%;
		padding: 5px;
	}
	.sortTools{
		margin-right: 5px;
		float: left;
	}
	#sortToolsArea table td{
		list-style: none;
		display: inline-block;
		width: 100%;
	}
	#sortToolsArea select{
		width: 100%;
	}
}

/*------------------------------------

.detailArea

------------------------------------*/
.detailArea{
	font-size: 0.8rem;
}
.detailArea .col-md-10{
	padding: 0;
}

/*-------------------
comment
-------------------*/
.detailArea .detailCommentArea .detailComment{
	position: relative;
	padding: .5em .75em;
	background-color: #f0f0f0;
	border-radius: 6px;
	box-shadow: 2px 2px 4px rgba(0, 0, 0, .1) inset;
}
.detailArea .detailCommentArea .detailComment::after {
	position: absolute;
	top: 100%;
	left: 30px;
	content: '';
	width: 0;
	height: 0;
	border: 10px solid transparent;
	border-top: 15px solid #f0f0f0;
}
.detailArea .detailCommentArea .detailCommentImage{
	margin-top: 20px;
	margin-left: 10px;
}
.detailArea .detailCommentArea .detailCommentTitle{
	font-weight: bold;
	font-size: 1.2rem;
	color: orange;
	padding: 5px 0;
}
.detailArea .detailCommentArea .detailContact{
	margin: 0;
}
@media screen and (max-width:768px) {
	.detailArea .detailCommentArea .detailComment{
		position: relative;
		padding: .5em .75em;
		background-color: #f0f0f0;
		border-radius: 6px;
		box-shadow: -2px -2px 4px rgba(0, 0, 0, .1) inset;
		width: 80%;
		float: right;
	}
	.detailArea .detailCommentArea .detailComment::after {
		position: absolute;
		top: 20px;
		left: -20px;
		content: '';
		width: 0;
		height: 0;
		border: 10px solid transparent;
		border-right: 15px solid #f0f0f0;
		z-index: 100;
	}
	.detailArea .detailCommentArea .detailCommentImage{
		margin: 0;
		width: 20%;
		float: left;
	}
	.detailArea .detailCommentArea .detailCommentImage img{
		width: 80%;
	}
}

/*-------------------
detailcontact
-------------------*/
.detailArea .detailContactArea{
	clear: both;
}
.detailArea .detailContactArea .inqBtn{
	border-radius: 3px;
    line-height: 50px;
    text-align: center;
    background: -webkit-gradient(radial, 75% 0%, 0, 75% 0%, 182, color-stop(1.00, #ff901a), color-stop(0.00, #ffba70));
    background: -webkit-radial-gradient(75% 0%, circle, #ffba70, #ff901a);
    background: -moz-radial-gradient(75% 0%, circle, #ffba70, #ff901a);
    background: -o-radial-gradient(75% 0%, circle, #ffba70, #ff901a);
    background: -ms-radial-gradient(75% 0%, circle, #ffba70, #ff901a);
    background: radial-gradient(75% 0%, circle, #ffba70, #ff901a);
    border: 1px solid #FFF;
    -moz-box-shadow: 0px 0px 2px rgba(000,000,000,0.3);
    -webkit-box-shadow: 0px 0px 2px rgba(000,000,000,0.3);
    float: left;
    width: 50%;
    margin: 10px 0;
    float: left;
    font-size: 1rem;
}
.detailArea .detailContactArea .inqBtn:first-child{
	 width: 49%;
	 margin: 10px 1% 10px 0;
}
.detailArea .detailContactArea .inqBtn a{
	display: block;
	color: white;
}
.detailArea .detailContactArea .inqBtn a:hover{
	text-decoration: none;
}
.detailArea .detailContactArea .detailPhone{
	padding-top: 5px;
}
.detailArea .detailContactArea .detailPhone button{
	width: 100%;
	text-align: center;
	padding: 5px;
	background: -webkit-gradient(radial, 75% 0%, 0, 75% 0%, 182, color-stop(1.00, #ff901a), color-stop(0.00, #ffba70));
    background: -webkit-radial-gradient(75% 0%, circle, #ffba70, #ff901a);
    background: -moz-radial-gradient(75% 0%, circle, #ffba70, #ff901a);
    background: -o-radial-gradient(75% 0%, circle, #ffba70, #ff901a);
    background: -ms-radial-gradient(75% 0%, circle, #ffba70, #ff901a);
    background: radial-gradient(75% 0%, circle, #ffba70, #ff901a);
    border: 1px solid #FFF;
    -moz-box-shadow: 0px 0px 2px rgba(000,000,000,0.3);
    -webkit-box-shadow: 0px 0px 2px rgba(000,000,000,0.3);
	color: white;
	border-radius: 3px;
}
.detailArea .detailContactArea .detailPhone button p{
	line-height: 1.2rem;
}
.detailArea .detailContactArea .detailPhone button .detailPhoneBknTel{
	font-size: 0.9rem;
	font-weight: bold;
}
.detailArea .detailContactArea .detailPhone button .detailPhoneBknNumber{
	font-size: 1.1rem;
	font-weight: bold;
}
.detailArea .detailContactArea .detailPhone button .detailPhoneNumber{
	font-size: 2rem;
	letter-spacing: 0.1rem;
	font-weight: bold;
}
.detailArea .detailContactArea .detailPhone button .fa{
	color: white;
}

/*-------------------
detailInfo
-------------------*/
.detailArea .detailInfo{
	margin: 0;
}
.detailArea .detailInfo .col-md-6:first-child{
	padding-right: 0;
}
.detailArea .detailInfo .col-md-6:nth-child(2){
	padding-left: 0;
}
.detailArea .detailInfo .table_detail{
	width: 100%;
	margin: auto;
	line-height: 1.2rem;
	border-left: solid 1px lightgray;
	border-top: solid 1px lightgray;
	font-size: 0.8rem;
}
.detailArea .detailInfo .table_detail p{
	width: 100%;
	text-align: center;
	margin: auto;
	padding: 5px;
	background-color: antiquewhite;
	border-radius: 5px;
	line-height: 1rem;
}
.detailArea .detailInfo .table_detail p .detailIcon{
	width: 100%;
	margin: auto;
	text-align: center;
	color: #4d4842;
}
.detailArea .detailInfo .table_detail th{
	background-color: antiquewhite;
	color: #4d4842;
	padding: 8px 5px 8px 10px;
	width: 200px;
	text-align:center;
	vertical-align: middle;
	border-bottom: solid 1px lightgray;
}
.detailArea .detailInfo .table_detail td{
	padding: 8px 5px 8px 10px;
	vertical-align: middle;
	border-right: solid 1px lightgray;
	border-bottom: solid 1px lightgray;
	font-weight: bold;
}
@media screen and (max-width:768px) {
	.detailArea .detailInfo{
		margin: 0;
	}
	.detailArea .detailInfo .col-md-6:first-child{
		padding-right: 15px;
	}
	.detailArea .detailInfo .col-md-6:nth-child(2){
		padding-left: 15px;
	}
	.detailArea .detailInfo .table_detail{
		width: 100%;
		line-height: 1.2rem;
		border-left: solid 1px lightgray;
		border-top: solid 1px lightgray;
		font-size: 0.8rem;
	}
	.detailArea .detailInfo .table_detail p{
		width: 100%;
		text-align: center;
		margin: auto;
		padding: 5px;
		background-color: antiquewhite;
		border-radius: 5px;
		line-height: 1rem;
	}
	.detailArea .detailInfo .table_detail p .detailIcon{
		width: 100%;
		margin: auto;
		text-align: center;
		color: #4d4842;
	}
	.detailArea .detailInfo .table_detail th{
		background-color: antiquewhite;
		color: #4d4842;
		padding: 8px 5px 8px 10px;
		width: 35%;
		vertical-align: middle;
		text-align: left;
		border-bottom: solid 1px lightgray;
	}
	.detailArea .detailInfo .table_detail td{
		padding: 8px 5px 8px 10px;
		font-weight: bold;
		vertical-align: middle;
		border-right: solid 1px lightgray;
		border-bottom: solid 1px lightgray;
	}
}

/*-------------------
contactArea
-------------------*/
.detailArea #contactArea .std_btn{
	width: 150px;
	margin: 0 auto;
	font-size: 1rem;
	background: -webkit-gradient(radial, 75% 0%, 0, 75% 0%, 182, color-stop(1.00, #ff901a), color-stop(0.00, #ffba70));
    background: -webkit-radial-gradient(75% 0%, circle, #ffba70, #ff901a);
    background: -moz-radial-gradient(75% 0%, circle, #ffba70, #ff901a);
    background: -o-radial-gradient(75% 0%, circle, #ffba70, #ff901a);
    background: -ms-radial-gradient(75% 0%, circle, #ffba70, #ff901a);
    background: radial-gradient(75% 0%, circle, #ffba70, #ff901a);
    border: 1px solid #FFF;
    -moz-box-shadow: 0px 0px 2px rgba(000,000,000,0.3);
    -webkit-box-shadow: 0px 0px 2px rgba(000,000,000,0.3);
	color: white;
	padding: 5px 0;
	border-radius: 3px;
}
@media screen and (max-width:768px) {
	.detailArea #contactArea .std_btn{
		width: 70%;
	}
}

/*-------------------
detailContactBottomArea
-------------------*/
.detailContactBottomArea{
	position: fixed;
	z-index: 2000;
	bottom: 0;
	left: 0;
	padding: 5px;
	width: 100%;
	background-color: white;
}
#fixedBottom{
	box-shadow: 0px -2px 5px lightgray;
}

/*-------------------
favorite
-------------------*/
.detailArea #favorite_list li{
	float: left;
	list-style: none;
	margin: 5px;
	background-color: whitesmoke;
	padding: 2px;
	border-radius: 3px;
	-moz-box-shadow: 0px 0px 1px rgba(000,000,000,0.3);
    -webkit-box-shadow: 0px 0px 1px rgba(000,000,000,0.3);
}
.detailArea #favorite_list li a p{
	line-height: 1.2rem;
	color: #222;
}
.detailArea #favorite_list li .deleteBtn{
	text-align: right;
}
.detailArea #favorite_list li .deleteBtn a{
	color: #222;
	font-size:1rem;
}
.detailArea #favorite_list li .favImage{
	height:113px;
	overflow: hidden;
}
.detailArea #favorite_list li a:hover{
	text-decoration: none;
}
/*------------------------------------

footer

------------------------------------*/
footer{
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0.00, #078303), color-stop(1.00, #004513));
	background: -webkit-linear-gradient(#078303, #004513);
	background: -moz-linear-gradient(#078303, #004513);
	background: -o-linear-gradient(#078303, #004513);
	background: -ms-linear-gradient(#078303, #004513);
	background: linear-gradient(#078303, #004513);
	margin-top: 20px;
}
#footerNav{
	font-size: 0.8rem;
	margin: 50px 0 20px;
}
#footerNav ul{
	display: inline-table;
}
#footerNav ul li{
	margin: 0 20px 12px 0;
}
#footerNav ul li a{
	color: rgba(255,255,255,1);
	line-height: 1rem;
}
#footerInfo{
	text-align: right;
	margin-top: 50px;
	padding: 0 10px 0 0;
	color: white;
	font-size: 0.8em;
}
#footerInfo img.footerLogo{
	width: 300px;
}
#footerInfo img.footerTel{
	width: 300px;
}
#footerInfo .tel{
	display: none;
	position: relative;
	top: 0;
	right: 5px;
}
#copyRight{
	color: white;
	text-align: center;
	font-size: 0.7rem;
	letter-spacing: 0.1rem;
}
@media screen and (max-width:768px) {
	footer{
		margin-top: 5px;
	}
	#footer .container-fluid{
		width: 93%;
		margin: 0 6% 0 1%;
	}
	#footerInfo{
		text-align: center;
		margin-top: 20px;
		padding: 0 10px 0 0;
		color: white;
		font-size: 0.8em;
	}
	#footerInfo .tel{
		display:none;
	}
	#footerInfo .tel p{
		text-align: center;
	}
	#footerInfo .tel a{
		color: rgba(255,255,255,1);
	}
	#copyRight{
		padding: 10px 0 5px;
	}
}





/*------------------------------------

form

------------------------------------*/
.formBox{
	background-color: antiquewhite;
	padding: 15px;
	margin-top: 5px;
	margin-bottom: 10px;
	border-radius: 5px;
	-moz-box-shadow: 0px 0px 2px rgba(000,000,000,0.3);
	-webkit-box-shadow: 0px 0px 2px rgba(000,000,000,0.3);
	box-shadow: 0px 0px 2px rgba(000,000,000,0.3);
}
.formBox table{
	width: 100%;
}
.formBox table tr{
	display: block;
}
.formBox table th,
.formBox table td{
	display: list-item;
	list-style-type: none;
}
.formBox table th{
	color: #4d4842;
	padding: 15px 0 5px;
}
.formBox table input.input,
.formBox table input.inputHarf,
.formBox table input.inputQuarter,
.formBox table input.inputMin,
.formBox table textarea{
	width: 100%;
	padding: 5px;
	line-height: 1.2rem;
	border: solid 1px lightgray;
	background-color: white;
}
.formBox table input.inputHarf{
	width: 40%;
}
.formBox table input.inputQuarter{
	width: 20%;
}
.formBox table input.inputMin{
	width: 50px;
}
.formBox table input.check{
	vertical-align: bottom;
}
.formBox table .checkArea{
	display: inline-block;
	background-color: white;
	border: solid 1px lightgray;
	padding: 6px 10px 10px;
}
.formBox table textarea{
	height: 10rem;
	resize: vertical;
}
.formBox table select{
	height: 30px;
    padding: 0 5px;
    background: white;
	vertical-align: baseline;
    text-transform: none;
	border: solid 1px lightgray;
    margin: 0;	
}
.formArea .std_btn{
	padding: 5px 30px;
	margin: 10px auto;
	background-color: antiquewhite;
	border: 1px solid white;
	border-radius: 3px;
	-moz-box-shadow: 0px 0px 2px rgba(000,000,000,0.3);
	-webkit-box-shadow: 0px 0px 2px rgba(000,000,000,0.3);
	box-shadow: 0px 0px 2px rgba(000,000,000,0.3);
	color: #4d4842;
}
.formArea .std_btn:hover{
	background-color: white;
}
@media screen and (max-width:768px) {
	.formBox{
		padding: 5px;
	}
	.formBox table th{
		padding: 10px 0 2px;
	}
	.formBox table .checkArea{
		width: 100%;
	}
	.formBox table input.inputQuarter{
		width: 40%;
	}
	.formBox table input.inputHarf.phoneFull,
	.formBox table input.inputQuarter.phoneFull{
		width: 100%;
	}
	.formBox table textarea{
		height: 8rem;
	}
}


/*------------------------------------

.titleStyle

------------------------------------*/
/*----------------
.titleStyle_207
-----------------*/
.titleStyle_207{
	position: relative;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0.00, #fff), color-stop(1.00, #cecece));
	background: -webkit-linear-gradient(#fff, #cecece);
	background: -moz-linear-gradient(#fff, #cecece);
	background: -o-linear-gradient(#fff, #cecece);
	background: -ms-linear-gradient(#fff, #cecece);
	background: linear-gradient(#fff, #cecece);
	border: solid 1px rgba(204,204,204,1);
	padding: .6em 0 .5em .75em;
	color: rgba(51,51,51,1);
	font-weight: bold;
}
.subTitle{
	font-size: 0.7rem;
	color: rgba(0,153,102,1);
}

/*----------------
.titleStyle_301
-----------------*/
.titleStyle_301{
	margin: 0 0 15px;
	position: relative;
	padding: 10px 0 10px 5px;
	color: white;
	font-size: 1.2em;
	text-shadow: 0 1px 3px rgba(204,204,204,1);
	z-index: 20;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(1.00, #004c41), color-stop(0.00, #009900));
	background: -webkit-linear-gradient(#00c3a4, #009900);
	background: -moz-linear-gradient(#00c3a4, #009900);
	background: -o-linear-gradient(#00c3a4, #009900);
	background: -ms-linear-gradient(#00c3a4, #009900);
	background: linear-gradient(#00c3a4, #009900);
	border-radius: 4px 4px 0 0 ;
}



#shopArea .attention{
	padding: 15px;
}
#shopArea .attention li{
	line-height: 1.5rem;
}