@charset "utf-8";

/* =============== 初期設定 =============== */

*{
	margin: 0px;
	padding: 0px;

	font-family: "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

img{
	vertical-align: middle;
}



/* ============= ページレイアウト ============= */

/*----------------- body レイアウト------------------*/

	body{	
	width: 100%;	
	-webkit-text-size-adjust: 100%;
	}


@media only screen and (min-width:801px) {/*大画面*/
	body{	

		
		padding: 0px 0px;
		margin: 0px auto;
		overflow-x:hidden;
	}

}

@media only screen and (max-width:800px) {/*中小画面*/

	body{	
	
		padding: 0px 0px;		
		margin: 0px auto;
		overflow-x:hidden;/*横スクロール対策*/
	}

}


/*----------------- header レイアウト------------------*/

@media only screen and (min-width:1201px)  {/*大画面*/
header .contents_nav{/*--グローバルメニュー--*/
	position: fixed;
	width: 100%;
	height:80px;
	margin-top: 0;
	padding-left: 5px;
	background-color:#db000b;
	z-index: 140;
}

.fixed {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10000;
}

header{
	display: none;	
}
}
	
@media only screen and (max-width:1200px) {/*小画面*/
.contents_nav{
	display: none;
}

header{
	position: fixed;
	width: 100%;
	height:80px;
	margin-top: 0;
	background-color:#db000b;
	z-index: 140;

}

.fixed {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10000;
}

	}		

/*----------------- main レイアウト------------------*/


#container {
	width: 100%;
	background-color:#000;
	overflow: hidden; /*横スクロール対策*/
	/*text-align: center;*/
}



/*----------------- wrapper main------------------*/

#wrapper {
	max-width: 1280px;
	margin: 80px auto auto auto;
	text-align: left;
	background: #000;
	position: relative;
	z-index: 110;
}

#wrapper_white {
	max-width: 1280px;
	margin: 80px auto auto auto;
	text-align: left;
	background: #fff;
	position: relative;
	z-index: 110;
}

	#main{
		display:block;
		width: 100%;
	    /*border-top: solid 1px #e8e8e8;*/
	    padding-top: 80px;		
		z-index: 120;

	}
	






aside:after{
	display: table;
	content: "";
	clear: both;
}




/****************************************
.ヘッダー ドロワーメニュー 中小画面 (script.js)
****************************************/
header {
	background-color: #db000b;
}
header .headerTop{
	padding:10px 10px 10px 20px;
}
header .siteTitle a{
	display: block;
	font-size: 18px;
	color: #fff;
	font-weight: bold;
	text-decoration: none;
}
.navDrawr>ul:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}
.navDrawr>ul>li {
	float: left;
	width: 25%;
	position: relative;
}
.navDrawr a {
	display: block;
	color: #fff;
	text-decoration: none;
	background: #db000b;/*メニュー背景*/
	padding: 10px;
}
.navDrawr .sub li:last-child a {
	border: none;
}
.navDrawr>ul>li>a {
	border-right: 1px solid #fff;/*ボーダー*/
	text-align: center;
}
.navDrawr>ul>li>a:hover {
	background: #e55516;/*ホバー時*/
}
.navDrawr .sub {
	position: absolute;
	left: 0;
	right: 0;
	z-index: 9999;
}
.navDrawr .sub a {
	background: #3C0;/*メニュー背景　サブ*/
	border-bottom: 1px solid #CF9;/*ボーダー*/
	padding: 10px 10px 10px 20px;
}
.navDrawr .sub a:hover {
	background: #3C6;/*ホバー時*/
}
/*
#contents{
	padding-top:20px;
}*/

@media only screen and (max-width: 1200px) {
	#wrapper_head{
		overflow:hidden;
	}
	.navDrawr {
		background-color: #db000b;/*メニュー帯全体背景*/
		position: fixed;
		width: 270px;
		top: 80px;
		bottom: 0;
		right: -270px;
		overflow: auto;
		-webkit-overflow-scrolling: touch;
	}
	body.menuOpen #wrapper{
		padding-top:0px !important;
	}
	.overlay {
		display: none;
		background-color: rgba(0,0,0,0.49);
		position: fixed;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
	}
	header {
		position:relative;
		height: 80px;
		border-bottom: 1px solid #000;
		padding:0;
	}
	body.menuOpen header{
		position: fixed;
		top:0;
		width: 100%;
	}
	header .headerTop{
		padding:inherit;
	}
	header .siteTitle a{
		margin-left: 20px;
		line-height: 80px;
	}
	.navDrawrBtn {
		text-align: right;
	}
	.navDrawrBtn span {
		position: absolute;
		top: 0;
		bottom: 0;
		right: 0;
		margin: auto;
		display: block;
		width: 60px;
		height: 60px;
		cursor: pointer;
	}
	.navDrawrBtn span::before {
		font-family: FontAwesome;
		content: "\f0c9";
		font-size: 24px;
		color: #fff;/*ナビボタン　色*/
		position: absolute;
		left: 0;
		width: 100%;
		text-align: center;
		line-height: 60px;
	}
	body.menuOpen .navDrawrBtn span::before {
		content: "\f00d";
	}
	.navDrawr a {
		position: relative;
	}
	.navDrawr a::after {
		position: absolute;
		top: 50%;
		margin-top: -10px;
		right: 15px;
		font-family: FontAwesome;
		content: "\f054";
	}
	.navDrawr>ul>li {
		float: none;
		width: auto;
	}
	.navDrawr>ul>li>a {
		text-align: left;
		border-right: none;
		border-bottom: 1px solid #fff;/*ナビボタンの仕切り*/
	}
	.navDrawr .sub {
		position: static;
		display: block!important;
	}
}




ul.imgList{}
ul.imgList::after{
	display: table;
	line-height: 0;
	content: "";
	clear:both;
}
ul.imgList li{
	float: left;
	width: 31.33333333%;
	margin: 1%;
}
ul.imgList li .thumbnail{
	background-color: #FFF;
	padding: 20px;
	border:solid 1px #CF9;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
}
ul.imgList li img{
	margin-bottom:10px;
}
ul.imgList li .caption{}
ul.imgList li .title{
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 10px;
}

@media only screen and (max-width: 1200px) {
	ul.imgList li{
		float: none;
		width: 98%;
		margin: 1%;
	}
}


#wrapper_head:after{
	display: table;
	content: "";
	clear: both;
}

/*------------------反証　大　ここから -------------------------*/



@media only screen and (min-width: 1201px) {

	.navDrawr {
		display:none;
	}
	body.menuOpen #wrapper{
		display:none;
	}
	.overlay {
		display:none;
	}
	header {
		display:none;
	}
	body.menuOpen header{
		display:none;
	}
	header .headerTop{
		display:none;
	}
	header .siteTitle a{
		display:none;
	}
	.navDrawrBtn {
		display:none;
	}
	.navDrawrBtn span {
		display:none;
	}
	.navDrawrBtn span::before {
		display:none;
	}
	body.menuOpen .navDrawrBtn span::before {
		display:none;
	}
	.navDrawr a {
		display:none;
	}
	.navDrawr a::after {
		display:none;
	}
	.navDrawr>ul>li {
		float: none;
		width: auto;
	}
	.navDrawr>ul>li>a {
		display:none;
	}
	.navDrawr .sub {
		display:none;
	}
}


@media only screen and (min-width: 1201px) {
	ul.imgList li{
		display:none;
	}
}


/*------------------反証　ここまで -------------------------*/

/***************************************************
.ヘッダー グローバルメニュー 大画面用 (cssのみ)　
****************************************************/
.contents_nav {
	width: 100%;
	height: 80px;
	margin: 0px;
	background-color: #db000b;
}

#gb_nav  {
    margin: 0px;
    padding: 0px;
    list-style-type: none;
	display: table;
    table-layout: fixed;
    width:100%;	
	height: 80px;
}

#gb_nav li {
  height: 80px;
  margin: 0px;
  padding: 0px;
  width: 20%;
  display:table-cell;
  vertical-align: bottom;
}

#head_logo a {
  text-indent: -9999px;
  display: block;
  text-decoration: none;
  width:256px;
  height:80px; 
  background-image: url("../img/rogo_01.png");
  background-repeat: no-repeat;
  background-position: 0 0; 
}

#gb_nav00 a {
  text-indent: -9999px;
  display: block;
  text-decoration: none;
  width:256px;
  height:80px; 
  background-image: url("../img/00_gm_02_02_off.gif");
  background-repeat: no-repeat;
  background-position: 0 0; 
}
#gb_nav01 a {
  text-indent: -9999px;
  display: block;
  text-decoration: none;
  width:256px;
  height:80px; 
  background-image: url("../img/00_gm_03_02_off.gif");
  background-repeat: no-repeat;
  background-position: 0 0; 
}
#gb_nav02 a {
  text-indent: -9999px;
  display: block;
  text-decoration: none;
  width:256px;
  height:80px; 
  background-image: url("../img/00_gm_04_01_off.gif");
  background-repeat: no-repeat;
  background-position: 0 0; 
}
#gb_nav03 a {
  text-indent: -9999px;
  display: block;
  text-decoration: none;
  width:256px;
  height:80px; 
  background-image: url("../img/00_gm_05_01_off.gif");
  background-repeat: no-repeat;
  background-position: 0 0; 
}



#gb_nav00 a:hover {
  text-decoration: none;
  background-image: url("../img/00_gm_02_02_on.gif");
  background-repeat: no-repeat;
  background-position: 0 0px;
}
#gb_nav01 a:hover {
  text-decoration: none;
  background-image: url("../img/00_gm_03_02_on.gif");
  background-repeat: no-repeat;
  background-position: 0 0px;
}
#gb_nav02 a:hover {
  text-decoration: none;
  background-image: url("../img/00_gm_04_01_on.gif");
  background-repeat: no-repeat;
  background-position: 0 0px;
}
#gb_nav03 a:hover {
  text-decoration: none;
  background-image: url("../img/00_gm_05_01_on.gif");
  background-repeat: no-repeat;
  background-position: 0 0px;
}


#wrapper_head02:after{
	display: table;
	content: "";
	clear: both;
}






/* =============== メイン 詳細=============== */

/*----------------- contents 詳細------------------*/

@media only screen and (min-width:801px)  {/*大画面*/
	

#contents{
	margin: 0px 30px 0px 30px;
}


}

@media only screen and (min-width:651px) and (max-width:800px) {/*中画面*/
	

#contents{
	margin: 0px 30px 0px 30px;
}

}



@media only screen and (max-width:650px) {/*小画面*/

#contents{
	margin: 0px 20px 0px 20px;
	
}

}

/*------------- コンテンツページ トップ画像 ---------------*/

/****************************************
.イメージ
****************************************/

@media only screen and (max-width:800px) {/*小 中 画面*/
.photo{
	position:relative;
}

.title-sm-1-div{
	display: block;
	float: left;
	padding: 0px 0px;
	margin: 0px;
}

.title-sm-1-div{
	width: 100%;
}


.title-bg-1-div{
		display:none;
		}
		

}

@media only screen and (min-width:801px)  {/*大画面*/
.photo{
	position:relative;
}

.title-bg-1-div{
	display: block;
	float: left;
	padding: 0px 0px;
}

.title-bg-1-div{
	width: 100%;
	margin: 0px auto;
	}
	
	
.title-sm-1-div{
		display:none;
		}
		

}



/*追加は「 汎用クラス」に記す*/



/* ============== フッター用 =============== */

/****************************************
.footer
****************************************/


@media screen and (min-width:801px) {/*大画面*/

.footer {

    width: auto;
  background: #db000b;
  bottom:0;
  

  }

}





  .footer-nav>div {
    max-width: 25%;
    text-align: left;
  }
}

@media only screen and (max-width:800px) {/*中画面*/

.footer {

    width: auto;
  } 
  

  .footer-nav>div {
    float: left;
    max-width: 50%;
  }
}


@media screen and (min-width:651px) {/*中画面*/
  .footer {
  background: #db000b;
  bottom:0;
}
}

@media only screen and (max-width:650px) {/*小画面*/

.footer {
  margin-left: 0px;
  
  background: #db000b;
  bottom:0px;
}

}


.footer .footer-container {
  padding: 0px 15px;
}

.footer-nav {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 34px;
  margin: 0;
  color: #CCC;
}

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


.footernav-title {
  font-size: 16px;
  margin: 0;
  padding: 5px 0 10px 0;
  border-bottom: 2px solid #999;
}

.footernav-title .glyphicon-chevron-down:before {
  margin-right: 10px;
}

@media screen and (min-width:651px) {/*中画面*/
  .footernav-title .glyphicon-chevron-down:before {
    display: none;
  }
  .map-title .glyphicon-chevron-down:before {
	display: none;
  }
  
}

.list-group {
  font-size: 14px;
  position: relative;
  display: block;
  padding: 10px 15px;
  color: #fff;
  line-height: 2.8;

}

.list-group a {
  font-size: 14px;
  position: relative;
  display: block;
  padding: 10px 15px;
  color: #fff;
}

.list-group a:hover {
  text-decoration: none;
  color: #666;
}

.footer-logo {
  margin-top: 20px;
}

.footer-icon .container {
  list-style-type: none;
}

.footer-icon p,
.footer-icon ul {
  width: 100%;
  text-align: center;
}

.footer-icon li {
  display: inline-block;
  float: none;
}

.footer-icon li a:hover {
  opacity: 0.6;
}

.footer-icon li img {
  width: 40px;
  height: auto;
  border: 2px solid #fff;
}


.copyright {
  text-align: center;
  color: #fff;
  line-height: 2.5;
}


/* ============= グリッドシステム ============= */

.row{
	margin: 10px 10px !important;
}
.row:after{
	display: table;
	content: "";
	clear: both;
}


.sm-1-div, .sm-2-div, .sm-3-div, .sm-4-div, .sm-5-div{
	display: block;
	float: left;
	padding: 11px 7.5px !important;
}
.sm-1-div{width: 100%;}
.sm-2-div{width:  50%;}
.sm-3-div{width:  33.33333333%;}
.sm-4-div{width:  25%;}
.sm-5-div{width:  50%;}


@media only screen and (min-width:801px) {/*大画面*/

	.bg-1-div{width: 100%;}
	.bg-2-div{width:  50%;}
	.bg-3-div{width:  33.33333333%;}
	.bg-4-div{width:  25%;}
	.bg-3-center-div{width:  60%;}
	.bg-3-lr-div{width:  20%;}
}




/* ============== 汎用クラス =============== */

/*----- main 詳細-----*/
h1,h2,h3 {
	padding: 0px;
	margin: 0px;
}

.main-text {
  text-align: justify;
  font-size: 16px;
  line-height: 2.5;
  padding-left: 30px;
  color: #fff;
  }
  
  .main-text_02 {
  text-align: justify;
  font-size: 16px;
  line-height: 2.5;
  padding-left: 30px;
  }
@media only screen and (max-width:800px) {
	.main-text {
	  padding-left: 10px;
	  }
}

.text-right {
	text-align: end;
}

/*----text 真ん中寄せ----*/
.text_box_cen{
	max-width: 600px;
	margin: 0 auto;
}



/*---------*/
dl {
  width:100%;
}
dt {
  float:left;
  clear:left;
  width:35%;
}
dd {
  float:left;
  width:65%;
}

/*---------*/
@media only screen and (min-width:801px) {
	.float_l {
		float: left;
	}
	.float_rl {
		float: right;
	}
}
@media only screen and (max-width:800px) {
	.float_rl {
		float: left;
	}
}


/* 縦方向の間隔調整 */
.height-space{
	height: 0px;
	margin-bottom: 95px;
}

.height-space20{
	height: 0px;
	margin-bottom: 20%;
}

.height-space25{
	height: 0px;
	margin-bottom: 25%;
}


/* 小画面-内余白ゼロ */
@media only screen and (max-width:800px) {
	.sm-nopad{
		padding: 0;
	}
}

@media only screen and (max-width:800px) {
	.sm-hide{
	display: none;	
	}
}

/*中大画面・小画面-切り替え*/
@media only screen and (min-width:801px)  {/*大画面*/
	.sm-screen{
		display:none;
		overflow: hidden;
	   } 
	   
	   
} 

@media only screen and (max-width:800px) {/*中小画面*/
	.l-screen{
		display:none;
		overflow: hidden;
	}
	
}

/*「電話問い合わせ」中小画面用*/

@media only screen and (min-width:499px)  {/*大中画面*/
	.to-tel{
		display:none;
		overflow: hidden;
	} 
	
} 

/*大食いチャレンジ画像*/
.event_01 {
	width: 50%;
	max-width: 610px;
	max-height: 890px;
	margin: 50px auto 0;
}
@media only screen and (max-width:800px) {/*大画面*/
	.event_01 {
		width: 100%;
	}
}

/****************************************
.大見出し
****************************************/


.maintitle {/*h1*/
  display: block;
  text-indent: inherit;
  font-size: 25px;
  margin-left: 15px;
  margin-right: 15px;
  }

.maintitle span {
  font-size: 14px;
  font-weight: normal;
  display: block;
}

  
@media screen and (max-width:800px) {/*小画面*/
  .maintitle {/*h1*/
    font-size: 22px;
  }

  .maintitle span {
    font-size: 14px;
    font-weight: normal;
    display: inline;
    margin-left: 20px;
  }
}


/****************************************
.中見出し
****************************************/
.subtitle {/*h2*/
     max-width: 600px;
	 height:auto;
	 margin: 50px auto 20px;
     text-shadow: 0px -2px 0px #333,0px 2px 3px #666;
	 background-color: #F00;
	 text-align:center;
	 font-size: 35px;
	 font-weight: bold;
	 color: #fff;
	 font-family:"ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
	 line-height: 1.5em;
	 padding: 10px 0;
}
.subtitle span{
	 font-size: 22px;
	 color: #fff;
	 font-family:"ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
	 line-height: 1em;
}

@media screen and (max-width:450px) {/*小画面*/
	.subtitle {/*h2*/
		 font-size: 28px;
		 font-weight: bold;
		 color: #fff;
		 font-family:"ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
		 line-height: 1.5em;
		 padding-bottom: 10px;
	}
	.subtitle span{
		 font-size: 20px;
		 color: #fff;
		 font-family:"ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
		 line-height: 1.5em;
	}
}


/******************************************
google map
*****************************************/

/*中大画面・小画面-切り替え*/

.google-maps {
position: relative;
padding-bottom: 75%; // 縦横比
height: 0;
overflow: hidden;
}
.google-maps iframe {
position: absolute;
top: 0;
left: 0;
width: 100% !important;
height: 100% !important;
}

/*================================================
 *  ページトップへの戻り
 ================================================*/
.totop {
    position:fixed;
    bottom:75px;
    right:15px;
	z-index: 150;
}
.totop a {
    display:block;
    text-decoration:none;
}

.totop img:hover {
    background:#3b3b3b;
}







/* =======================================
	フェードイン エフェクト
======================================= */

.fadein-up {
	opacity : 0.1;
	transform : translate(0px, 100px);
	-webkit-transform : translate(0px, 100px);
	transition : all 500ms;
	-webkit-transition : all 500ms;
	}
.fadein-up.scrollin-up {
	opacity : 1;
	transform : translate(0px, 0px);
	-webkit-transform : translate(0px, 0px);
	}

#effect2 .fadein-up:nth-of-type(2) {
	-moz-transition-delay:200ms;
	-webkit-transition-delay:200ms;
	-o-transition-delay:200ms;
	-ms-transition-delay:200ms;
	}
#effect2 .fadein-up:nth-of-type(3) {
	-moz-transition-delay:400ms;
	-webkit-transition-delay:400ms;
	-o-transition-delay:400ms;
	-ms-transition-delay:400ms;
	}
#effect2 .fadein-up:nth-of-type(4) {
	-moz-transition-delay:600ms;
	-webkit-transition-delay:600ms;
	-o-transition-delay:600ms;
	-ms-transition-delay:600ms;
	}	
	
/*---------------------------------*/


.fadein-down {
	opacity : 0.1;
	transform : translate(0px, -100px);
	-webkit-transform : translate(0px, -100px);
	transition : all 500ms;
	-webkit-transition : all 500ms;
	}
.fadein-down.scrollin-down {
	opacity : 1;
	transform : translate(0px, 0px);
	-webkit-transform : translate(0px, 0px);
	}

#effect2 .fadein-down:nth-of-type(2) {
	-moz-transition-delay:200ms;
	-webkit-transition-delay:200ms;
	-o-transition-delay:200ms;
	-ms-transition-delay:200ms;
	}
#effect2 .fadein-down:nth-of-type(3) {
	-moz-transition-delay:400ms;
	-webkit-transition-delay:400ms;
	-o-transition-delay:400ms;
	-ms-transition-delay:400ms;
	}
#effect2 .fadein-down:nth-of-type(4) {
	-moz-transition-delay:600ms;
	-webkit-transition-delay:600ms;
	-o-transition-delay:600ms;
	-ms-transition-delay:600ms;
	}
	
	
/*---------------------------------*/


/*.fadein-right {
	opacity : 0.1;
	transform : translate(100px, 0px);
	-webkit-transform : translate(100px, 0px);
	transition : all 500ms;
	-webkit-transition : all 500ms;
	}
.fadein-right.scrollin-right {
	opacity : 1;
	transform : translate(0px, 0px);
	-webkit-transform : translate(0px, 0px);
	}

#effect2 .fadein-right:nth-of-type(2) {
	-moz-transition-delay:200ms;
	-webkit-transition-delay:200ms;
	-o-transition-delay:200ms;
	-ms-transition-delay:200ms;
	}
#effect2 .fadein-right:nth-of-type(3) {
	-moz-transition-delay:400ms;
	-webkit-transition-delay:400ms;
	-o-transition-delay:400ms;
	-ms-transition-delay:400ms;
	}
#effect2 .fadein-right:nth-of-type(4) {
	-moz-transition-delay:600ms;
	-webkit-transition-delay:600ms;
	-o-transition-delay:600ms;
	-ms-transition-delay:600ms;
	}*/
	
	
	
/*---------------------------------*/


.fadein-left {
	opacity : 0.1;
	transform : translate(-100px, 0px);
	-webkit-transform : translate(-100px, 0px);
	transition : all 500ms;
	-webkit-transition : all 500ms;
	}
.fadein-left.scrollin-left {
	opacity : 1;
	transform : translate(0px, 0px);
	-webkit-transform : translate(0px, 0px);
	}

#effect2 .fadein-left:nth-of-type(2) {
	-moz-transition-delay:200ms;
	-webkit-transition-delay:200ms;
	-o-transition-delay:200ms;
	-ms-transition-delay:200ms;
	}
#effect2 .fadein-left:nth-of-type(3) {
	-moz-transition-delay:400ms;
	-webkit-transition-delay:400ms;
	-o-transition-delay:400ms;
	-ms-transition-delay:400ms;
	}
#effect2 .fadein-left:nth-of-type(4) {
	-moz-transition-delay:600ms;
	-webkit-transition-delay:600ms;
	-o-transition-delay:600ms;
	-ms-transition-delay:600ms;
	}
	





/******************************************
問合せフォーム
*****************************************/
.formStyle{
	max-width:380px;
	margin:auto;
}
/* デフォルトのスタイルを削除
*****************************************/
input,
button,
textarea,
select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	margin-top: 1em;
}
label {
	margin-top: 1em;
}

/* フォーカスした時の幅を変更
*****************************************/
input[type="text"].focus {
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	transition: all .3s;
	width: 200px;
}
input[type="text"].focus:focus {
	width: 300px;
}

/* テキストインプットとテキストエリアの基本装飾
*****************************************/
input[type="text"],
input[type="password"],
textarea {
	padding: 0.8em;
	outline: none;
	border: 1px solid #DDD;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	
	font-size: 16px;
}

/* フォーカスした時のスタイルを変更
*****************************************/
input[type="text"]:focus,
input[type="password"]:focus,
.formStyle textarea:focus {
	box-shadow: 0 0 7px #3498db;
	border: 1px solid #3498db;
}

/* disabled時のスタイルを変更
*****************************************/
input[type="text"]:disabled {
	background-color: #eee;
	cursor: not-allowed;
}

/* ラジオボタンのスタイルを変更
*****************************************/
input[type="radio"] {
	display: none;
}
input[type="radio"] + label {
	position: relative;
	display: inline-block;
	padding: 3px 10px 3px 24px;
	cursor: pointer;
}
input[type="radio"] + label::before,
input[type="radio"] + label::after {
	content: '';
	top: 50%;
	position: absolute;
	border-radius: 100%;
	-webkit-transition: all .2s;
  -moz-transition: all .2s;
	transition: all .2s;
}
input[type="radio"] + label::before {
	width: 16px;
	height: 16px;
	margin-top: -9px;
	left: 0;
	background: #EEE;
	border: 1px solid #ccc;
}
input[type="radio"] + label:hover::before {
	background: #FEFEFE;
}
input[type="radio"] + label::after {
	opacity: 0;
	left: 4px;
	width: 10px;
	height: 10px;
	margin-top: -5px;
	background: #2980b9;
	-webkit-transform: scale(0.5);
	-moz-transform: scale(0.5);
	transform: scale(0.5);
}
input[type="radio"]:checked + label::before {
	background: #fff;
	border: 1px solid #2980b9;
}
input[type="radio"]:checked + label::after {
	opacity: 1;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	transform: scale(1);
}


/* チェックボックスのスタイルを変更
*****************************************/
input[type="checkbox"] {
	display: none;
}
input[type="checkbox"] + label {
	position: relative;
	display: inline-block;
	padding: 3px 10px 3px 22px;
	cursor: pointer;
	-webkit-transition: all .2s;
	-moz-transition: all .2s;
	transition: all .2s;
}
input[type="checkbox"] + label::before,
input[type="checkbox"] + label::after {
	position: absolute;
	content: '';
}
input[type="checkbox"] + label::before {
	top: 50%;
	left: 0;
	width: 14px;
	height: 14px;
	margin-top: -8px;
	background: #f4f4f4;
	border: 1px solid #ccc;
	border-radius: 3px;
}
input[type="checkbox"] + label::after {
	opacity: 0;
	top: 50%;
	left: 3px;
	width: 8px;
	height: 4px;
	margin-top: -4px;
	border-left: 2px solid #3498db;
	border-bottom: 2px solid #3498db;
	-webkit-transform: rotate(-45deg) scale(.5);
	-moz-transform: rotate(-45deg) scale(.5);
	transform: rotate(-45deg) scale(.5);
}
input[type="checkbox"] + label:hover::before {
	background: #fff;
}
input[type="checkbox"]:checked + label::before {
	background: #fff;
	border: 1px solid #3498db;
}
input[type="checkbox"]:checked + label::after {
	opacity: 1;
	-webkit-transform: rotate(-45deg) scale(1);
	-moz-transform: rotate(-45deg) scale(1);
	transform: rotate(-45deg) scale(1);
}

/* ボタンのスタイルを変更
*****************************************/
button {
	border-radius: 0;
	
	background: -moz-linear-gradient(top, #FFF 0%, #EEE);
	background: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#EEE));
	border: 1px solid #DDD;
	color: #111;
	padding: 10px 30px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
button:hover {
	background: -moz-linear-gradient(top, #EFEFEF 0%, #EEE);
	background: -webkit-gradient(linear, left top, left bottom, from(#EFEFEF), to(#EEE));
}

@media screen and (max-width:800px) {/*中画面 小画面*/
	input[type="text"],
	.formStyle textarea {
		width:94%;
		padding:3%;
	}
	input[type="text"].focus {
		width: 50%;
	}
	input[type="text"].focus:focus {
		width: 94%;
	}
	.formStyle button{
		width:100%;
		padding: 10px 0;
	}
}






/****************************************
.フォント
****************************************/


.fs9{
	font-size:9px
}


.fs10{
	font-size:10px
}

.fs11{
	font-size:11px
}

.fs12{
	font-size:12px
}


.fs13{
	font-size:13px
}

.fs14{
	font-size:14px
}


.fs15{
	font-size:15px
}

.fs16{
	font-size:16px
}


.fs17{
	font-size:17px
}

.fs18{
	font-size:18px
}

.fs20{
	font-size:20px;
}

.fs25{
	font-size:25px
}

.fs30{
	font-size:30px
}

.fs35{
	font-size:35px
}

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

.black{
	color:#333;
}

.white{
	color:#fff;
}

.red{
	color:#F30;
}



/* space
----------------------------------------------------*/
.mt-15p {
	margin-top: -15%;
}

/* space
----------------------------------------------------*/
.pt10 {
	padding-top: 10px;
	
}

.pt20 {
	padding-top: 20px;
	
}

.pt30 {
	padding-top: 30px;
	
}

.pt50 {
	padding-top: 50px;
	
}

.pt70 {
	padding-top: 70px;
	
}

.pt100 {
	padding-top: 100px;
	
}

.pt150 {
	padding-top: 150px;
	
}


/* space 
----------------------------------------------------*/
.mb0 {
	margin-bottom: 0;
	
}

.mb5 {
	margin-bottom: 5px;
}

.mb10 {
	margin-bottom: 10px;
}

.mb15 {
	margin-bottom: 15px;
}

.mb20 {
	margin-bottom: 20px;
}

.mb25 {
	margin-bottom: 25px;
}

.mb30 {
	margin-bottom: 30px;
}


.mb35 {
	margin-bottom: 35px;
}


.mb40 {
	margin-bottom: 40px;
}


.mb45 {
	margin-bottom: 45px;
}


.mb50 {
	margin-bottom: 50px;
}

.mb60 {
	margin-bottom: 60px;
}

.mb70 {
	margin-bottom: 70px;
}

.mb80 {
	margin-bottom: 80px;
}

.mb90 {
	margin-bottom: 90px;
}

.mb100 {
	margin-bottom: 100px;
}

.mb110 {
	margin-bottom: 110px;
}

.mb120 {
	margin-bottom: 120px;
}



.mb200 {
	margin-bottom: 200px;
}



.mb300 {
	margin-bottom: 300px;
}



.mb400 {
	margin-bottom: 400px;
}



.mb500 {
	margin-bottom: 500px;
}



.mb600 {
	margin-bottom: 600px;
}



/* space left
----------------------------------------------------*/
.ml0 {
	margin-left: 0;
}

.ml5 {
	margin-left: 5px;
}


.ml7 {
	margin-left: 7px;
}


.ml10 {
	margin-left: 10px;
}


.ml13 {
	margin-left: 13px;
}

.ml15 {
	margin-left: 15px;
}

.ml20 {
	margin-left: 20px;
}

.ml25 {
	margin-left: 25px;
}

.ml30 {
	margin-left: 30px;
}

.ml40 {
	margin-left: 40px;
}

.ml48 {
	margin-left: 48px;
}

.ml50 {
	margin-left: 50px;
}


.ml60 {
	margin-left: 60px;
}


.ml70 {
	margin-left: 70px;
}


.ml80 {
	margin-left: 80px;
}


.ml90 {
	margin-left: 90px;
}


.ml100 {
	margin-left: 100px;
}

.ml110 {
	margin-left: 110px;
}


.ml120 {
	margin-left: 120px;
}


.ml130 {
	margin-left: 130px;
}

.ml20p {/*問合せページ*/
	margin-left: 20%;
}
@media only screen and (min-width:801px) and (max-width:1300px) {
	.ml20p {
		margin-left: 10%;
	}
}




/* space right
----------------------------------------------------*/
.mr0 {
	margin-right: 0;
}

.mr5 {
	margin-right: 5px;
}


.mr7 {
	margin-right: 7px;
}


.mr10 {
	margin-right: 10px;
}


.mr13 {
	margin-right: 13px;
}

.mr15 {
	margin-right: 15px;
}

.mr20 {
	margin-right: 20px;
}

.mr25 {
	margin-right: 25px;
}

.mr30 {
	margin-right: 30px;
}

.mr40 {
	margin-right: 40px;
}

.mr50 {
	margin-right: 50px;
}

.mr60 {
	margin-right: 60px;
}

.mr70 {
	margin-right: 70px;
}


.mr80 {
	margin-right: 80px;
}

.mr90 {
	margin-right: 90px;
}

.mr100 {
	margin-right: 100px;
}



/* line-height 
----------------------------------------------------*/
.l_height1 {
	line-height:1;
}

.l_height12 {
	line-height:1.2;
}

.l_height14 {
	line-height:1.4;
}


.l_height15 {
	line-height:1.5;
}


.l_height18 {
	line-height:1.8;
}

.l_height21 {
	line-height:2.1;
}

.l_height26 {
	line-height:2.6;
}

.l_height45 {
	line-height:4.5;
}


/*ラベル
--------------------------------------------------------*/
.label-red {/*おすすめメニュー*/
   border-radius: 5px;        
   -webkit-border-radius: 5px;   
   -moz-border-radius: 5px;  
   padding: 0.1em 0.3em 0.1em 0.3em;
   text-align: center;
   color: #fff;
   background: #F70408;
}

