@charset "utf-8";
/* CSS Document */
/******************************************************************************
 Default CSS Reset
******************************************************************************/
body{
	position: relative;
}
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td,figure{
 margin:0;
 padding:0;
}
table{
 border-collapse:collapse;
 table-layout:fixed;
}
fieldset,img{
 border:0;
}
address,caption,cite,code,dfn,em,th,var{
 font-style:normal;
 font-weight:normal;
}
ol,ul{
 list-style:none;
}
caption{
 text-align:left;
}
h1,h2,h3,h4,h5,h6{
 font-size:100%;
 font-weight:normal;
}
img {
 vertical-align: bottom;
 /* chormeで画像のぼやけ回避 */
 -webkit-backface-visibility: hidden; 
}
/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
}
input[type="submit"]:-webkit-search-decoration,
input[type="button"]:-webkit-search-decoration {
  display: none;
}
input[type="submit"]:focus,
input[type="button"]:focus {
  outline-offset: -2px;
}
/******************************************************************************
 General Setting
******************************************************************************/
body {
 margin:0;
 padding:0;
 font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", 'Noto Sans JP', "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
 color: #000;
 word-wrap : break-word;
 -webkit-font-smoothing: antialiased;
 position: relative;
 background: #FFF;
 font-size: 16px;
 line-height: 1.4em;
}
body.is-fixed { 
 position: fixed;
 width: 100%;
 height: 100%;
 overflow-y: scroll;
}
@media screen and (max-width: 767px) {
 body {
  font-size: 16px;
  line-height: 1.75em;
 }
}
@media screen and (max-width: 400px) {
 body {
  font-size: 14px;
  line-height: 1.75em;
 }
}
a {
 color: #666;
 outline:none;
 -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
 -webkit-transition: 0.3s ease-in-out;
 transition: 0.3s ease-in-out;
	text-decoration: none;
}
a:focus, *:focus { outline:none; }

/*** align ***/
.ar { text-align:right;}
.al { text-align:left;}
.ac { text-align:center;}

/*** clearfix ***/
.cf:after{
 content: "."; 
 display: block; 
 height: 0; 
 font-size:0; 
 clear: both; 
 visibility:hidden;
}

/*** img ***/
.imgLeft {
 float: left;
 margin-right: 1em;
}
.imgRight {
 float: right;
 margin-left: 1em;
}

/*** text style ***/
.red { color:#C00;}
.big { font-size: 125%;}
.small { font-size: 85%;}

/*** font ***/
.serif{
 line-height:1.5em;
 font-weight:bold;
 font-family: 'Noto Serif JP',"游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

/*** none ***/
.pcnone { display: none;}
.spnone { display: block;}
@media screen and (max-width: 767px) {
 .pcnone { display: block;}
 .spnone { display: none;}
}


/******************************************************************************
 Layout
******************************************************************************/
#wrapper {
  width: 100%;
  position: relative;
  height: 100%;
  min-height: 100vh;
  overflow: hidden;
  padding-bottom: 10em;
  box-sizing: border-box;
}
#wrapper img {
 width: 100%;
 height: auto;
}
@media screen and (max-width: 767px) {
#wrapper {
  padding-bottom: 6em;
}
}
/* header ****************************************************/
header {
 width:100%;
 margin: 0 auto;
 height:auto;
 box-sizing: border-box;
 background:#000;
/*
position: fixed;
	left: 0;
	right: 0;
*/
	z-index: 40;
	
}
.header_inner{
	max-width: 768px;
	margin: 0 auto;
	display: flex;
	align-items: center;
}
.logo{
	width: 21%;
	margin: 0 auto;
	 padding: 10px 3%;
	text-align: center;
	display: block;
	color: #fff;
}
.header_btn_wrap{
	display: flex;
	justify-content: space-between;
	background: #4b4b4b;
	align-items: center;
}
.header_btn{
	order:1;
	width: 56%;
}
.header_btn a{
display: block;
	padding: 0.5em;
}
.header_tel_btn{
	order: 2;
	width: 44%;
}
.header_tel_btn a{
background-color: #ff6600;
display: block;
padding: 0.3em 0.2em;
margin: 0.3em;
border-radius: 5px;
text-align: center;
color: #ffff00;
font-size: 106%;
font-weight: 600;
line-height: 1.4;
}
.header_tel_btn a span{
	color: #fff;
}
/* nav ****************************************************/
nav#gNav {
 display: block;
 background:#FFF;
}
 nav#gNav {
  position:fixed;
  z-index:50;
  clear:both;
  margin:0;
  background: none;
  display:none;
  width: 100%;
  height: 100%;
  /*overflow-y: scroll;*/
  top:0;
  left: 0;
 }
 
nav#gNav ul li a{
 display: block;
	padding:0.5em 1em;
 text-decoration: none;
color: #fff;
}
/* contents ****************************************************/
#container {
 margin:0 auto;
 height: auto;
}
section {
 padding: 0;
}
.inner {
 clear:both;
 margin:0 auto;
 padding: 0;
 max-width:768px;
 height:auto;
 width:94%;
}

/* footer ****************************************************/
footer {
 background:#fff;
	text-align: center;
}
footer .footer_inner{
	width: 96%;
	margin: 0 auto;
	max-width: 768px;
}
footer .footer_access{
 font-weight: 600;
	margin-bottom: 1em;
}

footer .footer_name{
	font-size: 156%;
 font-weight: 600;
	margin-bottom: 0.4em;
}

footer .footer_address{
	margin-bottom: 1em;
	line-height: 1.4;;
}
footer .footer_tel{
	width: 80%;
	margin: 0 auto 0.5em;
}
footer .footer_time{
	width: 90%;
	margin: 0 auto;
	margin-bottom: 0.5em;
	display: flex;
	flex-wrap: wrap;
}
footer .footer_time dt{
width:30%;
text-align: left;
margin: 0.2em 0;
}
footer .footer_time dd{
width: 70%;
text-align: left;
}
footer .footer_btn{
	width: 100%;
	margin-bottom: 3em;
}
footer .footer_btn a{
background-color: #ff6600;
display: block;
border-radius: 5px;
text-align: center;
color: #ffff00;
font-size:200%;
font-weight: 600;
	padding: 0.5em;
}
footer .footer_btn a span{
	color: #fff;
font-size:65%;
padding-top: 0.5em;
display: block;}

/******************************************************************************
 menu
******************************************************************************/


 #menu { display:none;}
 #overlay{  display:none;}
 #menu {
  display:block;
  margin:5px 5px 5px 0;
  width:40px;
  height:40px;
  cursor:pointer;
  position:fixed;
  top:0px;
  right:0px;
  z-index:51;
 }
 /* animation */
.menu-trigger,
.menu-trigger span {
 display: inline-block;
 transition: all .4s;
 box-sizing: border-box;
}
.menu-trigger {
 position: relative;
 width: 40px;
 height: 40px;
}
.menu-trigger span {
 position: absolute;
 left: 20%;
 width: 60%;
 height: 3px;
 background-color: #fff;
 border-radius: 4px;
}
.menu-trigger span:nth-of-type(1) {top:10px;}
.menu-trigger span:nth-of-type(2) {top: 18px;}
.menu-trigger span:nth-of-type(3) {bottom: 10px;}
.menu-trigger.active span {background-color: #FFF;}
.menu-trigger.active span:nth-of-type(1) {-webkit-transform: translateY(8px) rotate(-45deg);transform: translateY(8px) rotate(-45deg);}
.menu-trigger.active span:nth-of-type(2) {opacity: 0;}
.menu-trigger.active span:nth-of-type(3) {-webkit-transform: translateY(-9px) rotate(45deg);transform: translateY(-9px) rotate(45deg);}

#overlay{
 z-index:50;
 position:fixed;
 top:0px;
 left:0;
 width:100%;
 height:120%;
 background:rgba(0,0,0,0.9);
 text-align:center;
 display:none;
}

/******************************************************************************

 scrollbar

******************************************************************************/
/* chrome safari */
.scrbar::-webkit-scrollbar{
 overflow:hidden;
 width:6px;
 background:#999;
 -webkit-border-radius:4px;
 border-radius:4px;
}
.scrbar::-webkit-scrollbar:horizontal{
 height:5px;
}
.scrbar::-webkit-scrollbar-button{
 display:none;
}
.scrbar::-webkit-scrollbar-piece{
 background:#000;
}
.scrbar::-webkit-scrollbar-piece:start{
 background:#000;
}
.scrbar::-webkit-scrollbar-thumb{
 overflow:hidden;
 -webkit-border-radius:4px;
 border-radius:4px;
 background:#626262;
}
.scrbar::-webkit-scrollbar-corner{
 overflow:hidden;
 -webkit-border-radius:4px;
 border-radius:3px;
 background:#626262;
}

/* scrollbar - IE */
html,body {
scrollbar-arrow-color:#999;
scrollbar-face-color:#999;
scrollbar-3dlight-color:#333;
scrollbar-darkshadow-color:#333;
scrollbar-highlight-color:#333;
scrollbar-shadow-color:#333;
scrollbar-track-color:#333;
scrollbar-base-color:#333;
}

