@charset "utf-8";
/*
=======================================
  Reset CSS
=======================================
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, main, menu, nav, section, summary,
time, mark, audio, video{
  margin:0;
  padding:0;
}

article,aside,details,figcaption,figure,
footer,header,main,menu,nav,section{
  display:block;
}

html{
  -webkit-text-size-adjust: 100%;
}

body{
  color: #000;
  line-height: 1.5;
  font-size: 16px;
  font-family: 'Noto Sans JP', sans-serif;
}
@media screen and (max-width: 600px) {
body{
  font-size: 14px;
}
}
main{
	background:#f5f1e6;
	margin-top: 80px;
}

img{
  border: 0;
  max-width: 100%;
  height: auto;
  transition:0.5s;
	/* じわっと画像が表示される */
 	animation: fadeIn 3s ease 0s 1 normal;
    -webkit-animation: fadeIn 3s ease 0s 1 normal;
}
@keyframes fadeIn { /*上のbody内で呼び出しているアニメーションと名前をそろえる*/
    0% {opacity: 0} /* 始め */
    100% {opacity: 1} /* 終わり */
}
 
/*古いブラウザ用　---------　一度追加していたら不要*/
@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

ul,ol{
  list-style-type: none;
}

table {
  border-collapse: collapse; 
  border-spacing: 0;
}

img, input, select, textarea { 
  vertical-align: middle;
}

a {
  color: #111;
  transition: 0.5s;
  text-decoration:none;
}
a:hover {
  color: #333;
}
::selection {
    background: #cbdd99;
    color: #fff;
}

//Firefox
::-moz-selection {
    background: #cbdd99;
    color: #fff;
}
.btn_w{
	border:1px solid #3f9543;
	color:#3f9543;
	margin:15px auto 0 auto;
	text-align:center;
	display:block;
	padding: 8px 30px;
	max-width:150px;
	border-radius:5px;
	position: relative;
}
.btn_w:hover{
	color:#3f9543;
}
.btn_w::before { /* くの字の表示設定 */
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px; 
  width: 10px;
  height: 10px;
  border-top: 2px solid #3f9543;
  border-right: 2px solid #3f9543;
  transform: rotate(45deg);
}
.btn_g{
	border:1px solid #3f9543;
	color:#fff;
	background:#3f9543;
	margin:2rem auto 0 auto;
	text-align:center;
	display:block;
	padding:18px 30px;
	max-width:230px;
	border-radius:5px;
	position: relative;
	clear:both;
}
.btn_g:hover{
	color:#fff;
}
.btn_g::before { /* くの字の表示設定 */
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px; 
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}

p{
	line-height:2;
}

@media screen and (max-width: 600px) {
.btn_g{
	margin:1rem auto 0 auto;
	padding:12px 20px;
	max-width:240px;
}

}




/*
=========================================
  Base Layout
=========================================
*/

.inner{
	margin: 0 auto;
	max-width:1100px;
	overflow:hidden;
	padding: 5rem 0 0 0;
}
.pankuzu{
	margin: 0 auto;
	max-width:1100px;
	overflow:hidden;
	padding: 2rem 0 0 0;
}
.inner:after {
	  content: "";
	  clear: both;
	  display: block;
}

@media screen and (max-width:1400px) {
.inner,
.pankuzu{
	margin: 0 8%;
}
}

@media screen and (max-width:900px) {
.inner{
	padding: 3rem 0 0 0;
}
.pankuzu{
	padding: 0.5rem 0 0 0;
}
}
@media screen and (max-width:600px) {
.inner{
	margin:0 5%;
	padding: 2rem 0 1rem 0;
}
.pankuzu{
	margin:0 5%;
	padding: 1rem 0 0 0;
}
}


#contents{
	background: url(../img/footer_img_bg.png) no-repeat bottom #f5f1e6;
	background-size: 100%;
	padding-bottom: 13rem;
}
@media screen and (max-width:1400px) {
#contents{
	background: url(../img/footer_img.png) no-repeat bottom #f5f1e6;
	background-size: 100%;
	padding-bottom: 13rem;
}
}
@media screen and (max-width:600px) {
#contents{
	background: url(../img/footer_img_sp.png) no-repeat bottom #f5f1e6;
	background-size:100%;
	margin-top: 70px;
	padding-bottom: 8rem;
}
}


/*
=========================================
  Modules（Block）
=========================================
*/

.logo_fadein{
	background: #FFF;
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 999;
}
.logo_fadein p {
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	display: none;
	z-index: 9999;
	width: 280px;
}
/* じわっと画像が表示される ---------　一度追加していたら不要*/
@keyframes fadeIn { /*上のbody内で呼び出しているアニメーションと名前をそろえる*/
    0% {opacity: 0} /* 始め */
    100% {opacity: 1} /* 終わり */
}
 
/*古いブラウザ用　---------　一度追加していたら不要*/
@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
/*header
--------------------*/

h1{
	left: 25px;
	top: 18px;
	position:absolute;
}

h2{
	font-size: 220%;
	text-align:center;
	letter-spacing:1px;
	display: block;
	position: relative;
	margin-bottom:3rem;
	padding-bottom:10px;
  transition:0.5s;
}
h2:before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0; /*下線の上下位置調整*/
  display: inline-block;
  width: 40px; /*下線の幅*/
  height: 3px; /*下線の太さ*/
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translate(-50%); /*位置調整*/
  background-color: #3f9543; /*下線の色*/
}
.greetings h3{
	font-size: 150%;
	margin-left:50px;
	margin-bottom:15px;
	border-bottom:2px dashed #3f9543;
	display:inline-block;
}
.greetings h3::before{
	margin-left:-50px;
	content:'';
  display: inline-block;
  width: 50px;
  height: 60px;
  background-image: url(../img/icon_leaf.jpg);
  background-repeat:no-repeat;
  background-size: contain;
  vertical-align: middle;
}


@media screen and (max-width: 1200px) {
h1{
	left: 15px;
}
h1 img{
	width:170px;
}
}

@media screen and (max-width: 900px) {
h2{
	font-size: 160%;
}
h3{
	font-size: 125%;
	letter-spacing:1px;
}
}

@media screen and (max-width: 600px) {
h2{
	margin-bottom:1.5rem;
}
.greetings h3{
	margin-left: 33%;
}
.greetings h3::before{
	margin-left:-40px;
  width: 40px;
  height: 50px;
}
}



/*
=========================================
  header
=========================================
*/
  
#top-head {
	top: -80px;
	position: absolute;
	width: 100%;
	margin: 80px auto 0;
	padding: 0;
	line-height: 1;
	background-color: #000;
}
#top-head {
	  text-decoration: none;
	  background:#fff;
}
#global-nav{
	  float: right;
	  height:80px;
	  top:0;
	  left:0;
} 
.sns{
	float:right;
	height:80px;
	text-align:right;
}
.sns img{
	margin:23px 20px 0 20px;
	width:30px;
}
.sns img:hover{
	opacity:0.7;
}
header .mail{
	float:right;
	padding:30px 20px 0 20px;
}
.mail a{
	color:#fff;
	background:#3f9543;
	border-radius:5px;
	padding: 10px;
	line-height:0.5;
}
.mail a i{
	margin-right:5px;
}
.mail img{
	max-width: 20px;
}
.mail span{
	padding:0 0 0 40px;
	font-size:14px;
}

#global-nav ul {
	  list-style: none;
	  overflow:hidden;
}
  #global-nav ul li {
	  float: left;
	  margin-top: 30px;
	  margin-left: 10px;
	 }
@media screen and (max-width: 1300px) { 
#global-nav ul li {
	  margin-left: 0;
}
.sns img{
	margin:23px 10px 0 10px;
}
header .mail{
	padding:30px 0 0 10px;
}
}

@media screen and (max-width: 1160px) { 
#global-nav ul li {
  	margin-top: 35px;
	  margin-left: 0;
	  font-size:90%;
}
.sns{
	position:absolute;
	top:0;
	right:50px;
}
.sns img{
	margin:23px 20px 0 20px;
}
header .mail{
	position:absolute;
	top:0;
	right:70px;
}
header .mail_sp{
	position:absolute;
	top:22px;
	right:70px;
}
header .mail_sp i{
	color:#3f9543;
}
}


/*---------------------------------------
  共通
---------------------------------------*/
.waku{
	background:#fff;
	border-radius:5px;
	padding:1rem 5%;
	overflow:hidden;
}







/*
=========================================
  footer
=========================================
*/


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

#sp_navi .map{
	float:right;
	border-left:1px solid #fff;
	padding:8px 1% 12px;
	height:45px;
	color:#fff;
	width:16%;
	text-align:center;
	display:block;
}

#sp_navi .map i{
	font-size:30px;
	display:block;
	margin-bottom:3px;
}
}
@media screen and (max-width: 600px) {


}


#global-nav ul li a {
	  padding: 10px 10px;

}
#global-nav ul li a:hover {
	  color: #ba8528;	
}
  
  #global-nav .btn a{
	  padding: 18px 25px;
	  margin-top: 20px;
	  letter-spacing:0.2rem;
	  color: #fff;
	  background:#ba8528;
	  position: relative;
  }
  #global-nav .btn a:hover {
	  color: #fff;
	  background:#b25c07;
  }

  

  /* Fixed */
 #top-head.fixed {
  	z-index:10;
  	margin-top: 0;
  	top: 0;
  	position: fixed;
  	height: 80px;
  	transition: top 0.65s ease-in;
  	box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  	-webkit-transition: top 0.65s ease-in;
  	-moz-transition: top 0.65s ease-in;
  }
@media screen and (max-width: 910px) {
  #top-head.fixed {
  	box-shadow:none;
  }
}



  #top-head.fixed .btn a {
  	padding:10px 15px;
	 }
  #top-head.fixed .btn a:hover{
	  color: #fff;　
	  background:#b25c07 !important;
  }
  #top-head.fixed .btn a:after{
	  display:none;
  }
   
  /* Toggle Button */
  #nav-toggle {
	  display: none;
	  position: absolute;
	  right: 12px;
	  top: 14px;
	  width: 34px;
	  height: 36px;
	  cursor: pointer;
	  z-index: 101;
  }
  #nav-toggle div {
	  position: relative;
  }
  .open #nav-toggle span {
	  background: #fff;
  }
  #nav-toggle div:after{
  content: "MENU";
  position: absolute;
  top: 35px;
  font-size:12px;
  color: #3f9543;
}
  #nav-toggle span {
	  display: block;
	  position: absolute;
	  height: 4px;
	  width: 100%;
	  background: #3f9543;
	  left: 0;
	  -webkit-transition: .35s ease-in-out;
	  -moz-transition: .35s ease-in-out;
	  transition: .35s ease-in-out;
	 }
  #nav-toggle span:nth-child(1) {
	  top: 0;
  }
  #nav-toggle span:nth-child(2) {
	  top: 11px;
  }
  #nav-toggle span:nth-child(3) {
	  top: 22px;
  }
  
 @media screen and (max-width: 1160px) {
  #global-nav ul li {
	  margin-right:0;
	 }  
  }

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

  #global-nav .btn a {
	  filter:none;
	  color:#fff;
  }

  #global-nav ul li {
	  margin-top:0;
	  margin-right:0;
	  padding:10px;
	 }
	  
	  #top-head{
	  	width:100%;
	  	padding-top:0;
		z-index:25;
	  }

	  #top-head {
		  top: 0;
		  position: fixed;
		  margin-top: 0;
		  background:#fff;
		 }
	  /* Fixed reset */
	  #top-head.fixed {
		  padding-top: 0;
		  background:#fff;
	  }
	  #mobile-head {
		  width: 100%;
		  height: 76px;
		  z-index: 1;
		 }  
	  
	  #global-nav {
		  position: absolute;
		  /* 開いてないときは画面外に配置 */
		  top: -557px;
		  background: #3f9543;
		  width: 100%;
		  text-align: center;
		  padding: 10px 0;
		  -webkit-transition: .5s ease-in-out;
		  -moz-transition: .5s ease-in-out;
		  transition: .5s ease-in-out;
		  height:400px;
		 }
	  #global-nav ul {
		  list-style: none;
		  position: static;
		  right: 0;
		  bottom: 0;
	  }
	  #global-nav ul li {
		  float: none;
		  position: static;
		  font-size:16px;
	  }
#top-head.fixed ul li {
    margin-top: 0;
}

	  
	  #top-head #global-nav ul li a,
	  #top-head.fixed #global-nav ul li a {
		  width: 100%;
		  display: block;
		  color: #fff;
		  padding: 15px 0;
		  background:none;
		 }
		#global-nav .btn a{
			margin-top:0;
		}
	  #nav-toggle {
		  display: block;
		 }
	  /* #nav-toggle 切り替えアニメーション */
	  .open #nav-toggle span:nth-child(1) {
		  top: 11px;
		  -webkit-transform: rotate(315deg);
		  -moz-transform: rotate(315deg);
		  transform: rotate(315deg);
	  }
	  .open #nav-toggle span:nth-child(2) {
		  width: 0;
		  left: 50%;
	  }
	  .open #nav-toggle span:nth-child(3) {
		  top: 11px;
		  -webkit-transform: rotate(-315deg);
		  -moz-transform: rotate(-315deg);
		  transform: rotate(-315deg);
	  }
	  /* #global-nav スライドアニメーション */
	  .open #global-nav {
		  /* #global-nav top + #mobile-head height */
		  -moz-transform: translateY(556px);
		  -webkit-transform: translateY(556px);
		  transform: translateY(556px);
	  }
	  
}
  
@media screen and (max-width: 600px) {
	  #top-head .logo {
	  	position:absolute;
	  	left: 15px;
	  	top: 27px;
	  	font-size: large;
	  	width:150px;
	  }

}





/*
=========================================
  Footer
=========================================
*/

#footer{
	background:#005f2d;
	padding:2rem 5%;
	color:#fff;
	overflow:hidden;
}
#footer .mail{
	margin-top:20px;
}
#footer .copyright{
	width:30%;
	margin-top:5rem;
	float:right;
}
#footer .f_navi{
	width:70%;
	float:left;
}
#footer .f_navi img{
	float:left;
	width:208px;
}
#footer .f_navi .txt{
	margin-left:250px;
}
#footer a{
	color:#fff;
}


@media screen and (max-width: 1100px) {
#footer .copyright{
	width:100%;
	margin-top:2rem;
	float:none;
	margin-left:250px;
}
#footer .f_navi{
	width:100%;
	float:none;
}

}
@media screen and (max-width: 600px) {
#footer .f_navi img{
	width:180px;
	float:none;
}
#footer .f_navi .txt{
	margin-left:0;
	padding:1.5rem 0;
	font-size:90%;
}
#footer .copyright{
	margin-top:0;
	margin-left:0;
	font-size:90%;
}
#footer{
	padding-bottom:1rem;
}
}



/*
=========================================
  ページ上部へ
=========================================
*/

#pageTop {
      position: fixed;
      bottom: 20px;
      right: 20px;
	  z-index: 100;
}

#pageTop i {
      padding-top: 12px;
      font-size:1.5em;
}

#pageTop a {
      display: block;
      z-index: 999;
      padding: 8px;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background-color: #3f9543;
      color: #fff;
      font-weight: bold;
      text-decoration: none;
      text-align: center;
}

#pageTop a:hover {
      text-decoration: none;
      opacity: 0.7;
}


  .pc{
	  display:block;
  }
  .sp{
	  display:none;
  }

@media screen and (max-width: 600px) {
#pageTop {
      position: fixed;
      bottom: 8px;
      right: 8px;
}
#pageTop a {
      padding: 0;
}


  .pc{
	  display:none;
  }
  .sp{
	  display:block;
  }

}


#anc{
	margin-top:-30px;
	padding-top:30px;
}
