@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: "Noto Sans JP";
}

a{
	text-decoration: none;
	letter-spacing: 2px;
	transition: .2s;
/*    -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: .6;
	transition: .2s;
}

li{
	list-style: none;
}

h1,h2,h3,h4,h5,h6,p,td,th{
	color:#333;
/*    -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: 32px;
  line-height: 45px;
}
h3{	
}
h4{	
}
h5{	
}
h6{	
}
p,td{
	font-weight: 200;
  font-size: 16px;
  line-height: 26px;
	letter-spacing: 2px;
}
hr{
}

.clear{
	clear:both;
}

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

.spOnly{
  display: none;
}

.spbr{
  display: none;
}

/*==============================
ヘッダ
==============================*/
nav{
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 99999;
  background-color: #fff;
  padding-left: 20px;
}

nav > h1 a img{
  width: 100%;
  vertical-align: bottom;
}

nav > ul{
  height: 100%;
  display: flex;
  align-items: center;
}

nav > ul li{
  height: 100%;
}

nav > ul li a{
  display: flex;
  align-items: center;
  height: 100%;
  color: #333;
  padding: 0 15px;
}

nav > ul li:last-of-type a{
  background-color: #006549;
  color: #fff;
  padding: 0 30px;
}
@media screen and (max-width: 1200px) {

  nav > ul li a{
    padding: 0 10px;
  }

  nav > ul li:last-of-type a{
    background-color: #006549;
    color: #fff;
    padding: 0 20px;
  }
}

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

/*==============================
SPメニュー
==============================*/
.nav-unshown {
  display:none;
}
@media screen and (max-width: 1000px){
nav{
  background-color: rgba(255,255,255,.9)
}

#nav-drawer {
  position: relative;
}

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

/*アイコンのスペース*/
#nav-open {
  position: fixed;
  top:13px;
  right: 0px;
  width: 55px;
  height: 50px;
  vertical-align: middle;
  padding:10px;
	z-index: 999999;
  background-color: #fff;
  border-radius: 5px 0 0 5px;
}
/*ハンバーガーアイコンをCSSだけで表現*/
#nav-open span, #nav-open span:before, #nav-open span:after {
  position: absolute;
  height: 4px;/*線の太さ*/
  width: 35px;/*長さ*/
  border-radius: 3px;
  background: #596f7f;
  display: block;
  content: '';
  cursor: pointer;
}
#nav-open span:before {
  bottom: -13px;
  background: #596f7f;
}
#nav-open span:after {
  bottom: -26px;
  background: #596f7f;
}

/*閉じる用の薄黒カバー*/
#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;
  width: 300px;
  max-width: 90%;
  height: 100vh;
  top: 0;
  left: 0;
  padding: 30px 20px;
	margin: 0;
  z-index: 1000000;/*最前面に*/
  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 > h1{
    margin-bottom: 15px;
  }
  
  nav > ul{
    display: block;
    height: auto;
  }
  
  nav > ul li{
    width: 100%;
    height: auto;
  }
  
  nav > ul li a{
    padding: 15px 10px;
    text-align: center;
    border-bottom: 2px solid #006549;
  }
  
  nav > ul li:nth-last-of-type(2) a{
    border-bottom: none;
  }
  
  nav > ul li:last-of-type a{
    padding: 15px 10px;
    justify-content: center;
    text-align: center;
  }
}

/*==============================
共通
==============================*/

a.linkBtn{
  display: block;
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
  padding: 20px;
  border-radius: 5px;
  background-color: #006549;
  color: #fff;
  font-weight: bold;
}

/*==============================
タイトル
==============================*/
.titleBox{
  position: relative;
  text-align: center;
  margin-bottom: 15px;
  top: -25px;
}

.titleBox span{
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 25px;
  padding-top: 13px;
  background-color: #006549;
  margin-bottom: 15px;
}

.titleBox span i{
  font-size: 26px;
  color: #fff;
}

.titleBox h2{
  font-size: 30px;
  line-height: 30px;
  letter-spacing: 4px;
  font-weight: bold;
  margin-bottom: 5px;
}

.titleBox h3{
  font-size: 16px;
  letter-spacing: 2px;
  line-height: 16px;
}
/*==============================
ブログ
==============================*/


#newsWrap{
  padding: 100px 0 70px;
  margin: 0 auto;
  width: calc(100% - 40px);
  max-width: 1000px;
  display: flex;
  justify-content: space-between;
}

.blogBox,.eventBox{
  width: 49%;
  background-color: #efefef;
  padding: 30px 20px;
  padding-top: 0;
}

.blogBox > ul{
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
}

.blogBox > ul li{
  width: 100%;
  margin-bottom: 10px;
}

.blogBox > ul li a{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blogBox > ul li a img{
  width: 28%;
}

.blogBox > ul li a div{
  width: 70%;
}

.blogBox > ul li a div h4{
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 1px;
  margin-bottom: 5px;
  font-weight: bold;
}

.blogBox > ul li a div p{
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 1px;
  text-decoration: underline;
}

.eventBox > ul{
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
}

.eventBox > ul li{
  width: 100%;
  display: flex;
  border-bottom: 2px solid #ccc;
  padding: 15px 10px;
}

.eventBox > ul li h4{
  display: inline-block;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 1px;
  font-weight: bold;
  margin-right: 10px;
}

.eventBox > ul li a{
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 1px;
  color: #006549;
}

@media screen and (max-width: 800px){
  #newsWrap{
    display: block;
    max-width: 500px;
  }

  .blogBox,.eventBox{
    width: 100%;
  }

  .eventBox{
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 600px){
  #newsWrap{
    padding: 80px 0 50px;
  }

  .blogBox,.eventBox{
    width: 100%;
  }

  .blogBox{
    margin-bottom: 50px;
  }
  
  .blogBox > ul li a img {
    width: 20%;
  }
  
  .blogBox > ul li a div{
    width: 78%;
  }
  
  .blogBox > ul li a div h4{
    margin-bottom: 0;
  }
  
  .eventBox > ul li,
  .eventBox > ul li h4,
  .eventBox > ul li a{
    display: block;
    text-align: center;
  }
  
  .eventBox > ul li{
    padding: 10px;
  }
}

/*==============================
メインコンテンツ
==============================*/
/*==============================
フッタ
==============================*/

#footNav{
  padding: 50px 20px;
  background-color: #55483d;
}

#footNav > div{
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

#footNav > div ul{
  max-width: 350px;
  justify-content: flex-start;
}

#footNav > div ul li{
  margin-bottom: 5px;
}

#footNav > div ul li a{
  display: block;
}

#footNav > div ul li a img{
  width: 100%;
  vertical-align: bottom;
}

#footNav > div div{
  text-align: right;
}

#footNav > div div h3{
  font-size: 22px;
  letter-spacing: 3px;
  margin-bottom: 10px;
  font-weight: bold;
  color: #fff;
}

#footNav > div div a{
  display: block;
  color: #fff;
  margin-bottom: 5px;
}

#footNav > div div a:nth-of-type(1){
  padding: 10px 20px;
  border: 2px solid #fff;
  margin-bottom: 10px;
}

#footNav > div div p{
  color: #fff;
}

footer > p{
  font-size: 12px;
  padding: 20px;
  color: #006549;
  text-align: center;
}

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

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

@media screen and (max-width: 800px){
  #footNav > div{
    max-width: 400px;
    margin: 0 auto;
    display: block;
  }
  
  #footNav > div ul{
    max-width: 100%;
    margin-bottom: 20px;
  }
  
  #footNav > div div{
    text-align: center;
  }
}

@media screen and (max-width: 600px){
}
/*==============================
レスポンシブ
==============================*/

@media screen and (max-width: 1400px) {
  p,td{
    font-weight: 200;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 1px;
  }
}

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

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

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

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

@media screen and (max-width: 800px) {
  p,td{
    font-size: 15px;
    letter-spacing: 1px;
    line-height: 22px;
  }
}

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

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

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


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