@charset "utf-8";
/* CSS Document */

@font-face{
  font-family: 'Hannari';
  src:url(../font/Hannari.woff);
}

*{
	font-weight: 200;
	padding: 0;
	margin:0;
	-webkit-box-sizing: border-box;
			box-sizing: border-box;
/*	font-family: "Yu Gothic";*/
/*	font-family: "Mplus 1p";*/
/*	font-family: "Rounded Mplus 1c";*/
	font-family: "Hannari";
}

a{
	text-decoration: none;
	letter-spacing: 5px;
	transition: .3s;
/*    -webkit-transform: scale(1.001,1);
    -moz-transform: scale(1.001,1);
    -ms-transform: scale(1.001,1);
    -o-transform: scale(1.001,1);
    transform: scale(1.001,1);*/
}

a:hover{
  opacity: .5;
	transition: .4s;
}

li{
	list-style: none;
}

h1,h2,h3,h4,h5,h6,p{
	color:#111;
/*    -webkit-transform: scale(1.001,1);
    -moz-transform: scale(1.001,1);
    -ms-transform: scale(1.001,1);
    -o-transform: scale(1.001,1);
    transform: scale(1.001,1);*/
}

h1{	
	letter-spacing: 10px;
}
h2{
  font-size: 32px;
  line-height: 45px;
	letter-spacing: 9px;
}
h3{	
	letter-spacing: 8px;
}
h4{	
	letter-spacing: 7px;
}
h5{	
	letter-spacing: 6px;
}
h6{	
	letter-spacing: 5px;
}
p{
	font-weight: 200;
  font-size: 16px;
  line-height: 32px;
	letter-spacing: 2px;
}
hr{
}

.clear{
	clear:both;
}

.fa{
	color: #fff;
}
body{
	overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

.spOnly{
  display: none;
}

a.linkBtn{
  display: block;
  width: 220px;
  text-align: center;
  font-family: "Mplus 1p";
	color:#333;
  border: 1px solid #333;
  padding: 15px 0;
}

a.linkBtn:hover{
  opacity: 1;
  background-color: #333;
  color: #fff;
}

.flexBox{
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.spbr{
  display: none;
}

/*==============================
ヘッダ
==============================*/

header{
	width: 100%;
  display: flex;
  justify-content: center;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 99999;
}

#pcNav{
  width: 100%;
  padding: 10px 20px;
  background-color: rgba(255,255,255,.8)
}

#pcNav h1,
#pcNav h1 a{
}

#pcNav h1 img{
  width: 250px;
}

#pcNav ul{
  display: flex;
  align-items: center;
}

#pcNav ul li{
  margin-right: 30px;
}

#pcNav ul li:first-child {
   margin-right: auto;
}

#pcNav ul li:last-of-type{
  margin-right: 0px;  
}

#pcNav ul li a{
  display: block;
}

#pcNav ul li a p{
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 1px;
  color: #444;
  padding: 5px 0;
}

#pcNav ul li a p:hover{
}
/*==============================
SPメニュー
==============================*/


#spNav{
  display: none;
  padding: 10px 0;
  width: 100%;
  text-align: center;
  background-color: rgba(255,255,255,.9)
}

#spNav h1{
  display: inline-block;
  margin: 0 auto;
}

#spNav h1 > a{
  display: block;
}

#spNav h1 > a img{
  width: 200px;
}

#nav-drawer {
  position: relative;
}

/*チェックボックス等は非表示に*/
.nav-unshown {
  display:none;
}

/*アイコンのスペース*/
#nav-open {
  position: absolute;
  top:-46px;
  right: 15px;
  width: 45px;
  height: 45px;
  vertical-align: middle;
  border: 2px solid #555;
  padding: 11px 9px;
}
@media screen and (max-width: 414px){
  #spNav{
    padding-bottom: 5px;
  }
  
  #nav-open {
    top:-49px;
    right: 5px;
  }
}
/*ハンバーガーアイコンをCSSだけで表現*/
#nav-open span, #nav-open span:before, #nav-open span:after {
  position: absolute;
  height: 2px;/*線の太さ*/
  width: 23px;/*長さ*/
  border-radius: 3px;
  background: #555;
  display: block;
  content: '';
  cursor: pointer;
}
#nav-open span:before {
  bottom: -9px;
}
#nav-open span:after {
  bottom: -17px;
}

/*閉じる用の薄黒カバー*/
#nav-close {
  display: none;/*はじめは隠しておく*/
  position: fixed;
  z-index: 99;
  top: 0;/*全体に広がるように*/
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0;
  transition: .3s ease-in-out;
}

/*中身*/
#nav-content {
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;/*最前面に*/
  width: 90%;/*右側に隙間を作る（閉じるカバーを表示）*/
  max-width: 330px;/*最大幅（調整してください）*/
  height: 100%;
  background: #fff;/*背景色*/
  transition: .3s ease-in-out;/*滑らかに表示*/
  -webkit-transform: translateX(-105%);
  transform: translateX(-105%);/*左に隠しておく*/
}

/*チェックが入ったらもろもろ表示*/
#nav-input:checked ~ #nav-close {
  display: block;/*カバーを表示*/
  opacity: .5;
}

#nav-input:checked ~ #nav-content {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);/*中身を表示（右へスライド）*/
  box-shadow: 6px 0 25px rgba(0,0,0,.15);
}

#nav-content{
  padding: 30px 10px 0;
  text-align: center;
}

#nav-content h1{
  height: 50px;
  margin-bottom: 15px;
}

#nav-content li{
  margin-bottom: 10px;
}

#nav-content li a{
  padding: 10px 0 13px;
  border: 1px solid #555;
  display: block;
}

#nav-content p{
  color: #555;
  font-size: 18px;
}

/*==============================
TOPボタン
==============================*/


/*==============================
メインコンテンツ
==============================*/

/*==============================
フッタ
==============================*/
#footContent{
  background-color: #c8dcd4;
  padding: 60px 0;
}

#footContent .flexBox{
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.footMap{
  flex-basis: 100%;
  margin-right: 50px;
}

.footFacebook{
  flex-basis: 300px;
}

.footMap iframe,
.footFacebook iframe{
  border: 1px solid #ccc;
}

.footMap h2,
.footFacebook h2{
  text-align: center;
  margin-bottom: 15px;
}

.footMap h2{
  letter-spacing: 0px;
}

.footFacebook h2{  
  font-family: "Mplus 1p";
  font-size: 24px;
}

#footNav{
  border-bottom: 1px solid #ccc;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

#footNav ul.flexBox{
  align-items: center;
  justify-content: center;
}

#footNav ul li a{
  display: block;
  padding: 20px 10px;
}

#footNav ul li a p{
  font-size: 18px;
}

#copyRight{
  padding: 30px 0;
  text-align: center;
}

#copyRight p{
  font-size: 14px;
}

/*==============================
レスポンシブ
==============================*/

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

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

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

@media screen and (max-width: 1000px) {
  #pcNav{
    display: none;
  }
  
  #spNav{
    display: block;
  }
  h2{
    font-size: 26px;
    letter-spacing: 5px;
  }
  
  #footContent{
    padding: 60px 15px;
  }
  .footMap {
    margin-right: 20px;
  }
}

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

@media screen and (max-width: 800px) {
  #mainSlide {
    padding: 15px;
    padding-top: 0;
  }
  #footContent .flexBox{
    flex-wrap: wrap;
  }
  
  .footMap{
    margin-bottom: 15px;
    margin-right: 0;
  }
  
  .footMap,
  .footFacebook{
    flex-basis: 100%;
  }
  
  .footFacebookapi iframe{
    display: block;
    margin: 0 auto;
  }
  
  #footNav{
    margin-top: 30px;
    border-bottom:0;
    padding-right: 10px;
    padding-left: 10px;
  }
  
  #footNav .flexBox{
    flex-wrap: wrap;
    max-width: 500px;
    margin: 0 auto;
  }
  
  #footNav .flexBox li{
    text-align: center;
    flex-basis: 50%;
    border-top: 1px solid #333;
    border-left: 1px solid #333;
  }
  
  #footNav .flexBox li:nth-of-type(2n){
    border-right: 1px solid #333;
  }
  
  #footNav .flexBox li:nth-of-type(5),
  #footNav .flexBox li:nth-of-type(6){
    border-bottom: 1px solid #333;
  }
}

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

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

@media screen and (max-width: 414px){
  #mainSlide{
    padding: 0;
  }
  #mainTitle{
    margin-top: 0;
  }
  
  h2{
    font-size: 22px;
    line-height: 36px;
  }
  p{
    font-size: 14px;
    line-height: 20px;
  }
  .spbr{
    display: block;
  }
  #footNav ul li a p{
    font-size: 16px;
  }
  br.pc{
    display: none;
  }
}


/*==============================
ローディングアニメーション
==============================*/
