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

*{
	font-weight: 200;
	padding: 0;
	margin:0;
	-webkit-box-sizing: border-box;
			box-sizing: border-box;
  font-family: 'Overpass', sans-serif;
}

a{
	text-decoration: none;
	letter-spacing: 0px;
	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:#000;
  font-weight: 600;
/*    -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{	
}
h2{
  font-size: 35px;
  line-height: 45px;
}
h3{	
}
h4{	
}
h5{	
}
h6{	
}
p{
  font-size: 17px;
  line-height: 32px;
}
hr{
}

.clear{
	clear:both;
}

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

.spOnly{
  display: none;
}

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

.spbr,.spnavonly{
  display: none;
}

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

nav{
	width: 100%;
  display: flex;
  justify-content:flex-end;
  align-items: center;
  position: -webkit-sticky;
  position: sticky;
  height: 80px;
  padding:0 50px;
  top: 0;
  z-index: 99999;
  background-color: #fff;
  transition: .2s;
}

nav > a{
  position: absolute;
  top: 30px;
  left: 50px;
  display: flex;
}

nav > a img{
  margin-right: 10px;
  align-self: flex-start;
}

nav > a div{
  transition: .3s;
}

nav > a h1{
  font-size: 50px;
  line-height: 60px;
  
}

nav.smaller > a{
  top: 10px;
}

nav.smaller > a img{
  width: 53px;
}

nav.smaller > a div h1{
  font-size: 32px;
}

nav.smaller > a div h1 br{
  display: none;
}

nav.smaller > a div p{
  display: none;
}

nav ul{
  display: flex;
  align-items: center;
}

nav ul li{
  margin-right: 30px;
  padding-top: 20px;
}

nav ul li:last-of-type{
  margin-right: 0;
}

nav ul li a{
  position: relative;
  display: block;
  padding: 0;
  overflow: hidden;
}

nav ul li a i{
  font-size: 26px;
  color: #111;
}

/*==============================
SPメニュー
==============================*/

.spnavBack{
  display: none;
}

.spLogo{
	display: none;
}

.nav-unshown {
  display:none;
}
@media screen and (max-width: 1100px){
  nav > a div h1{
    font-size: 24px;
  }
}
@media screen and (max-width: 1000px){
.spnavBack{
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  height: 50px;
  width: 100%;
  z-index: 999998;
  background-color: #fff;
}
  
  nav.smaller > a{
    top: auto;
  }
  
  nav > a,nav.smaller > a{
    position: relative;
    top: auto;
    left: auto;
    margin-bottom: 10px;
  }
  
  nav > a h1,nav.smaller > a div h1,nav > a div h1{
    font-size: 26px;
    line-height: 30px;
    margin-bottom: 3px;
  }
  
  nav.smaller > a div p{
    display: block;
  }
  
  nav > a div h1 br{
    display: none;
  }
  
  nav > a p{
    font-size: 14px;
    line-height: 16px;
  }

nav a{
  display: block;
}

nav a img,nav.smaller > a img{
  width: 50px;
}

#nav-drawer {
  position: relative;
}

/*チェックボックス等は非表示に*/

/*アイコンのスペース*/
#nav-open {
  position: fixed;
  top:5px;
	right: 5px;
  width: 40px;
  height: 40px;
  vertical-align: middle;
  padding:10px 9px;
	z-index: 999999;
}
/*ハンバーガーアイコンをCSSだけで表現*/
#nav-open span, #nav-open span:before, #nav-open span:after {
  position: absolute;
  height: 2px;/*線の太さ*/
  width: 20px;/*長さ*/
  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: 999999;
  top: 0;/*全体に広がるように*/
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0;
  transition: .3s ease-in-out;
}

/*中身*/
nav {
  overflow: auto;
  position: fixed;
	display: block;
  top: 0;
  left: 0;
	margin: 0;
  z-index: 1000000;/*最前面に*/
  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 {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);/*中身を表示（右へスライド）*/
  box-shadow: 6px 0 25px rgba(0,0,0,.15);
}

nav{
  padding: 30px 30px 0;
  text-align: center;
}
	
	nav ul{
		display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-right: 20px;
    padding-left: 20px;
	}
  
nav ul li{
  width: 100%;
  margin-bottom: 10px;
  margin-right: 0;
  padding-top: 0;
}

nav ul li a{
  padding-bottom: 5px;
  padding: 3px 0 7px;
  border-bottom: 1px solid #111;
  display: block;
}
  
  nav ul li:nth-of-type(8),
  nav ul li:nth-of-type(9){
    width: auto;
    margin: 10px 15px;
  }
  
  nav ul li:nth-of-type(8) a,
  nav ul li:nth-of-type(9) a{
    padding: 0;
    border-bottom: none;
  }

nav ul li a p{
	font-size: 16px;
}

  nav ul li a i{
    font-size: 32px;
  }
	
.spLogo{
	display: block;
	position: fixed;
	top: 10px;
	left: 10px;
  z-index: 999999;
}
	
  .spLogo h1{
    font-size: 22px;
    line-height: 22px;
    vertical-align: bottom;
    margin-top: 6px;
  }
}

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


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

/*==============================
フッタ
==============================*/

#contactWrap{
  padding: 100px 15px;
  padding-bottom: 100px;
  text-align: center;
}

#contactWrap h2{
  display: inline-block;
  font-size: 40px;
  padding: 10px 20px;
  border-bottom: 4px solid rgba(20,58,16,.5);
  color: rgba(20,58,16,1);
  margin-bottom: 30px;  
}

#contactWrap h3{
  font-size: 35px;
  color: rgba(20,58,16,1);
  margin-bottom: 20px;  
}

#contactWrap p{
  margin-bottom: 50px;
}

#contactWrap > div{
  display: flex;
  justify-content: center;
  align-items: center;
}

#contactWrap > div a{
  display: block;
}

#contactWrap > div a img{
  display: block;
  margin: 0 auto;
  margin-bottom: 30px;
}

#contactWrap > div a span{
  display: block;
  width: 220px;
  text-align: center;
  padding: 12px 20px 7px;
  border: 2px solid #143a10;
  color: #143a10;
  background-color: rgba(20,58,16,.1);
  font-size: 15px;
  font-weight: bold;
  transition: .3s;
}

#contactWrap > div a:hover{
  opacity: 1;
  transition: .3s;
}

#contactWrap > div a:hover span{
  background-color: #143a10;
  color: #fff;
}

#contactWrap > div > p{
  font-size: 30px;
}

footer{
  width: 100%;
}

footer > div{
  background-color: #f5f5f2;
  padding: 30px 180px;
  display: flex;
  justify-content: space-between;
}

footer > div > div > ul{
  display: flex;
  align-items: center;
  margin-bottom: 20px;
} 

footer > div > div > ul li{
  margin-right: 40px;
}

footer > div > div > ul li:last-of-type{
  margin-right: 0;
}

footer > div > div > ul li a{
  display: inline-block;
}

footer > div > div > ul li i{
  color: #000;
  font-size: 24px;
}

footer > div > div > a{
  display: inline-block;
  margin-right: 20px;
  font-weight: 600;
  color: #000;
  font-size: 13px;
}

footer > p{
  padding: 5px 180px 3px;
  background-color: #143a10;
  color: #fff;
  font-size: 10px;
  line-height: 10px;
}

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

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

  footer > div{
    padding: 50px 90px;
  }
  
  footer > p{
    padding: 10px 90px 8px;
  }
}

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

@media screen and (max-width: 1200px) {
  footer > div{
    padding: 50px 15px;
  }
  
  footer > p{
    padding: 10px 15px 8px;
  }
}

@media screen and (max-width: 1000px) {
  .spnavonly{
    display: block;
  }
  
  footer > div h1{
    margin-bottom: 20px;
  }
  footer > div{
    flex-wrap: wrap;
  }
}

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

@media screen and (max-width: 800px) {
  footer > div > div > ul{
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 600px){
  
  #contactWrap{
    padding: 30px 15px;
  }
  
  #contactWrap h2{
    font-size: 26px;
  }
  
  #contactWrap h3{
    font-size: 18px;
    text-align: left;
  }
  
  #contactWrap p{
    text-align: left;
  }
  
  #contactWrap > div{
    flex-wrap: wrap;
    margin: 0 auto;
    width: 220px;
  }
  
  #contactWrap > div a{
    margin-bottom: 20px;
  }
  
  #contactWrap > div > p{
    margin-bottom: 20px;
  }
  
  #contactWrap > div a span{
    width: 250px;
  }
  
  footer > div{
    display: none;
  }
  
  footer > p{
    text-align: center;
  }
}

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

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


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