/* ========================================
	WEB FONTS
======================================== */
@import url('https://fonts.googleapis.com/css?family=Roboto+Slab:400,700');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700');

/* ========================================
	RESET
======================================== */
a, abbr, acronym, address, applet, article, aside, audio, 
b, big, blockquote, body, caption, canvas, center, cite, code,
dd, del, details, dfn, dialog, div, dl, dt, em, embed, 
fieldset, figcaption, figure, form, footer, 
header, hgroup, h1, h2, h3, h4, h5, h6, html, 
i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav,
object, ol, output, p, pre, q, ruby, 
s, samp, section, main, small, span, strike, strong, sub, summary, sup, 
tt, table, tbody, textarea, tfoot, thead, time, tr, th, td,
u, ul, var, video { 
	font-family: inherit; 
	font-size: 100%; 
	font-weight: inherit; 
	font-style: inherit; 
	vertical-align: baseline; 
	white-space: normal;
	margin: 0; 
	padding: 0; 
	border: 0; 
	outline: 0;
	background: transparent;
}
article, aside, details, figcaption, figure, footer, header, hgroup,
menu, nav, section, main { 
	display: block; 
}								  
ol, ul { 
	list-style: none; 
}
blockquote, q {
	quotes: none; 
}
table { 
	border-collapse: collapse; 
	border-spacing: 0; 
}
img{
	vertical-align:bottom;
}
*, *:before, *:after {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
}
::selection {background: #5ac2d8; color: #fff;}
::-moz-selection {background: #5ac2d8; color: #fff;}

/* ========================================
	Common
======================================== */
body{
	font-family:"Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	font-size:14px;
	-webkit-text-size-adjust:100%;
	-webkit-font-smoothing:antialiased;
	color: #555;
}

/* link */
a{ transition-duration: .3s; }
a:link { color: #37a0b4; text-decoration:none; }
a:visited { color: #37a0b4; text-decoration:none; }
a:hover { color: #6eb92b; text-decoration:none; }
a:active { color: #6eb92b; text-decoration:none; }

.pc_ver{display:block;}
.sp_ver{display:none;}

#container{
  position: relative;
  overflow: hidden;
  width: 100%;
}

/* ========================================
	header
======================================== */
#header{
  position: absolute;
  width: 100%;
  height: 80px;
  z-index: 9999;
}
#header .logo{
  position: absolute;
  width: 100%;
  height: 80px;
  right: 80px;
}
#header h1{
  text-align: right;
  width: 85%;
  margin: 20px auto 0;
}
.snsNaviSp{
  display: none;
}

/*menu-btn*/
#menu-btn{
  position: fixed;
  cursor:pointer;
  right: 0;
  width: 80px;
  height: 80px;
}
#menu-btn p{
  position: absolute;
  bottom: 0;
  text-align: center;
  width: 80px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 10px;
  color: #fff;
}
#menu-btn-icon{
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 30px;
	height: 2px;
	margin: -2px 0 0 -15px;
	background: #fff;
	transition-duration: .2s;
}
#menu-btn-icon:before, #menu-btn-icon:after{
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	width: 30px;
	height: 2px;
	background: #fff;
	transition-duration: .2s;
}
#menu-btn-icon:before{
	margin-top: -10px;
}
#menu-btn-icon:after{
	margin-top: 9px;
}
#menu-btn .close{
	background: transparent;
  color: #fff;
}
#menu-btn .close:before, #menu-btn .close:after{
	margin-top: 0;
	width: 30px;
    background: #fff;
}
#menu-btn .close:before{
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
}
#menu-btn .close:after{
	transform: rotate(-135deg);
	-webkit-transform: rotate(-135deg);
}
#menu-btn p.close{
  color: #fff;
}

/* ========================================
	snsNavi
======================================== */
#snsNavi{
  position: fixed;
  right: 0;
  width: 80px;
  background: #5ac2d8;
}
#snsNavi ul{
  position: absolute;
  bottom: 30px;
  width: 80px;
  text-align: center;
}
#snsNavi li+li{
  margin-top:10px;
}

/* ========================================
	contents
======================================== */
#mainArea{
  position: fixed;
  overflow:hidden;
  width: 100%;
}
#mainArea .mainPhoto{
  background: #eef9fb;
}
#contents{
  position: relative;
  margin-right: 80px;
  float: right;
}
#contents img{
  max-width: 100%;
  height: auto;
}
#contents {
  padding: 120px 0;
}
#contents .section{
  width: 85%;
  margin: 0 auto;
}
#contents .section+.section{
    margin-top: 60px;
}
#contents p{
  font-size: 13px;
  line-height: 1.8;
}
#contents p+p{
  margin-top: 1em;
}
#contents h2{
  width: 85%;
  margin: 0 auto;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size:22px;
  color:#5bc1d8;
  line-height: 1.2;
  margin-bottom: 40px;
}
.tCenter{
  text-align: center;
}

/*column*/
#contents .col3-list{
	font-size: 0;
	margin-bottom: -2%;
}
#contents .col3-list li{
	display: inline-block;
	vertical-align: top;
	width: 32%;
	height: auto;
	margin-right: 2%;
	margin-bottom: 2%;
}
#contents .col3-list li:nth-child(3n){
	margin-right: 0;
}
#contents .col2-list{
	font-size: 0;
	margin-bottom: -2%;
}
#contents .col2-list li{
	display: inline-block;
	vertical-align: top;
	width: 46%;
	height: auto;
	margin-right: 8%;
	margin-bottom: 2%;
}
#contents .col2-list li:nth-child(2n){
	margin-right: 0;
}

#footer{
  width: 85%;
  margin: 120px auto 0;
  border-top:1px solid #E3E3E3;
  padding-top: 60px;
  position: relative;
}
#footer .btPagetop{
  position: absolute;
  top:-25px;
  width: 100%;
  text-align: center;
}
#footer .btPagetop a{
  display: block;
  height: 50px;
  width: 50px;
  background: #5ac2d8;
  margin: 0 auto;
  border-radius: 25px;
  transition-duration: .4s;
  transition-property: background;
}
#footer .btPagetop a:hover{
  background: #6eb92b;
}
.snsArea{
  position: absolute;
	display:table;
}
#fb{
	width:160px;
	height:22px;
	float:left;
}
#tw{
	width:100px;
	height:22px;
	float:left;
}
#footer .copyright{
  position: absolute;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 11px;
  color: #666;
  right: 0;
}

#contents .contactArea{
  background: #5ac2d8;
  border-radius: 5px;
  text-align: center;
  padding: 20px;
  color: #fff;
}
#contents .contactArea h3.ttl{
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  background: none;
  padding: 0;
  margin: 0;
}
#contents .contactArea p+p{
  margin-top: 5px;
}
#contents .contactArea .tel{
  font-family: 'Roboto Slab', serif;
  font-size:30px;
  line-height: 1.2;
  margin-top: 15px;
  letter-spacing: 0.05em;
}
#contents .contactArea .bt_contact a{
  display: block;
  width: 100%;
  background: #fff;
  border-radius: 5px;
  padding: 10px;
  margin-top: 10px;
  font-size: 18px;
  font-weight: bold;
  color: #5ac2d8;
  box-shadow: 3px 3px 0 0 rgba(0,0,0,.1);
}
#contents .contactArea .bt_contact a:hover{
  background: #6eb92b;
  color: #fff;
}
#contents .contactArea .tel a{
  color: #fff;
}
#contents .contactArea .bt_contact a::before{
  content: "";
  display: inline-block;
  width: 12px;
  height: 15px;
  vertical-align: middle;
  background: url("../../common/img/ic_external.png")no-repeat;
  background-size: 12px 12px;
  margin-right: 8px;
}
#contents .contactArea .bt_contact a:hover::before{
  content: "";
  display: inline-block;
  width: 12px;
  height: 15px;
  vertical-align: middle;
  background: url("../../common/img/ic_external_sp.png")no-repeat;
  background-size: 12px 12px;
  margin-right: 8px;
}


/* Responsive Styles
======================================== */
/*PC ONLY*/
@media screen and (min-width: 769px) {
  #gnavArea{
    display: none;
    position: fixed;
    background:rgba(255,255,255,1);
    right: 80px;
    z-index: 9999;
  }
  #gnavArea .inner{
    width: 100%;
    margin: 0 auto;
    display: table;
    height: 100%;
  }
  #gnavArea .navSet{
    display: table-cell;
    vertical-align: middle;
  }
  #gnavArea .navSet .logo{
    text-align: center;
    margin-bottom: 30px;
  }
  #gnavArea .gnav a{
    color: #5ac2d8;
    display: block;
    padding: 15px 0 15px 0;
  }
  #gnavArea .gnav a:hover{
    background: rgba(90,195,215,.15);
  }
  #gnavArea .gnav li:first-child{
    border-top: solid 1px rgba(90,195,215,.15);
  }
  #gnavArea .gnav li{
    font-size: 15px;
    font-weight: bold;
    text-align: right;
    position: relative;
    text-align: center;
    border-bottom: solid 1px rgba(90,195,215,.15);
  }
  a.fadeBt{
    transition-duration: .4s;
    transition-property: opacity;
  }
  a.fadeBt:hover{
    opacity: .7;
  }
  #gnavArea .gnav li a.external::before{
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    background: url("../../common/img/ic_external.png");
    background-size: 12px 12px;
    margin-right: 5px;
  }
}

@media only screen and (max-width: 768px) {
	.pc_ver{display:none;}
	.sp_ver{display:block;}
    
  /* ========================================
      header
  ======================================== */
  #header{
    position: fixed;
    width: 100%;
    height: 60px;
    z-index: 9999;
    background: #fff;
  }
  #header .logo{
    position: absolute;
    width: 100%;
    height: 80px;
    right: auto;
    left: 10px;
    top:8px;
  }
  #header h1{
    text-align: right;
    width: auto;
    margin: auto;
  }
  #header h1 img{
    height: 40px;
    width: auto;
  }

  #gnavArea{
    display: none;
    position: fixed;
    background:rgba(90,195,215,1);
    right: 0;
    top:60px;
    z-index: 9999;
  }
  #gnavArea .inner{
    width: 90%;
    margin: 0 auto;
  }
  #gnavArea .navSet .logo{
    display: none;
  }
  #gnavArea .gnav a{
    color: #fff;
    display: block;
    padding: 12px 0;
  }
  #gnavArea .gnav li{
    font-size: 15px;
    font-weight: bold;
    text-align: center;
    border-bottom: solid 1px rgba(255,255,255,.2);
  }
  #gnavArea .gnav li:last-child{
      margin-bottom: 0;
  }
  #gnavArea .gnav li a.external::before{
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    background: url("../../common/img/ic_external_sp.png");
    background-size: 12px 12px;
    margin-right: 5px;
  }
  
  .snsNaviSp{
    display: block;
    margin-top: 20px;
    letter-spacing: -.4em;
    text-align: center;
  }
  .snsNaviSp li{
    display: inline-block;
    letter-spacing: normal;
    margin-right: 10px;
  }
  .snsNaviSp li:last-child{
    margin-right: 0;
  }
  
  /*menu-btn*/
  #menu-btn{
    position: absolute;
    cursor:pointer;
    right: 0;
    width: 60px;
    height: 60px;
    background: #5ac2d8;
    right: 0;
    top:0;
  }
  #menu-btn p{
    display: none;
  }
    
  /* ========================================
      contents
  ======================================== */
  #mainArea{
    position: static;
    overflow:hidden;
    width: 100%;
    margin-top: 60px;
    margin-left: 0;
  }
  #mainArea .mainPhoto{
    background: #eef9fb;
  }
  #contents{
    position: static;
    margin-right: 0;
    float: none;
  }

  #contents {
    padding: 60px 0;
  }
  #contents .section{
    width: 90%;
    margin: 0 auto;
  }
  #contents h2{
    width: 90%;
    font-size:19px;
    margin-bottom: 30px;
  }
  
  #footer{
    width: 85%;
    margin: 60px auto 0;
    border-top:1px solid #E3E3E3;
    padding-top: 60px;
  }
  .snsArea{
    position: static;
    display:table;
  }
  #fb{
    width:160px;
    height:22px;
    float:left;
  }
  #tw{
    width:100px;
    height:22px;
    float:left;
  }
  #footer .copyright{
    position: static;
    margin-top: 20px;
    font-size: 11px;
    color: #666;
  }
}

@media only screen and (max-width: 480px) {
	
}



.BannerMoto{
  overflow: hidden;
  border-radius: 5px;
}