@charset "UTF-8";
/*----------------------------------------

	+ wrapper
		- header
		- footer

-----------------------------------------*/


/*----------------------------------------
	body
-----------------------------------------*/

html {
 visibility: hidden;
}

html.wf-active {
 visibility: visible;
animation: fadeIn 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

html{
		font-size: 62.5%;
		box-sizing: border-box;
	}

header,footer {
width:100%;
}
a { transition:opacity .2s; }
a,a:visited { color: #333;text-decoration: none; }
a:hover { opacity: .5; }

body {
font-family: "Zen Kaku Gothic New", serif;
  font-weight: 400;
  font-style: normal;
line-height:2.5;
font-size:  2.0rem;
color: #000;
min-width:100%;
width:100%;
background:url("../img/cmn_bg.png") no-repeat left top #f8f8ec;
}

.en {
font-family: 'Montserrat', sans-serif;
font-weight:800;
}



/*縦書き*/
.text-vertical{
writing-mode:vertical-rl;
-ms-writing-mode:tb-rl;
-moz-writing-mode:vertical-rl;
-webkit-writing-mode:vertical-rl;
}

.pc{
	display:block;
}
.sp{
	display:none;
}



/*----------------------------------------
	header
-----------------------------------------*/

.header_band{
	padding:0px 3%;
	background:#fff;
	border-bottom: 1px #c0c0af solid;
	display: flex;
	align-items: center;
	height: 50px;
}
.header_band span{
	display: block;
	font-size: 15px;
	margin-left: 10px;
	font-weight: 700;
}

header{
	padding:0 3%;
	width: 100%;
	box-sizing: border-box;
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 100;
	margin-top: 30px;
	position: relative;
}


/*　ヘッダー追従設定　*/
header.is-fixed {
    position: fixed;
    background-color: #fff;
	padding:10px 3% 16px 3%;
	top:0px;
	border-bottom: 1px #c0c0af solid;
	margin-top: 0px;
}	
.globalLogo{
	display: flex;
	align-items: center;
}


/*　ハンバーガーボタン　*/
.hamburger {
  display : none;
}

.globalMenu nav{
	display: flex;
	align-items: center;
}
.globalMenu ul{
	display: flex;
}


.globalMenu li a{
	display: block;
	font-weight: 600;
	margin-right: 4rem;
	position: relative;
	text-decoration: none;
	overflow: hidden;
}
.globalMenu li a:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #333;
  transform: translate(-100%, 0);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s;
  content: "";
}

.globalMenu li a:hover:after {
  transform: translate(0, 0);
}

a.btn_green{
	display: block;
	background: #1b734a;
	border-radius: 50px;
	padding: 10px 20px 12px 20px;
	line-height: 1;
	text-align: center;
	font-weight: 700;
	margin: 0 auto;
	color: #f8f8ec;
}
	

/*----------------------------------------
	title
-----------------------------------------*/
.main_ttl {
	margin:30px auto 0 auto;
	background:url("../img/main_bg.jpg") repeat top left;
	text-align: center;
}
.main_ttl .main_ttl_bg{
	background:url("../img/cmn_ttl_bg01.png") no-repeat left top,url("../img/cmn_ttl_bg02.png") no-repeat right bottom;
	background-size:70%,30%;
}
.main_ttl h2{
	text-align: center;
	font-size:calc(30px + 30 * (100vw - 360px) / 840); 
	font-weight: 900;
	color:#f8f8ec;
	letter-spacing: 0.2em;
	padding:10% 30px;
	line-height: 1.3;
}
.main_lead {
	margin:0 auto ;
	background:url("../img/cmn_ttl_bg_tri.png") repeat-x top left #004c29;
	color: #fff;
	padding: 6%;
	line-height: 1.7;
}
.main_lead ul{
	margin: 40px 0 0 0;
}
.main_lead li{
	background:url("../img/cmn_lead_ico.png") no-repeat center left ;
	padding:0 0 0  40px ;
	margin: 15px 0 ;
}

.main_lead a{
	font-weight: 700;
	color: #fff;
}

.cmn_ttl {
	font-weight: 700;
	font-size:calc(20px + 10 * (100vw - 360px) / 840); 
	color: #1b734a;
	margin-bottom: 20px;
	text-align: center;
}

.cmn_subttl dl{
	display: flex;
	background: #f8f8ec;
	font-weight: 700;
	text-align: left;
	line-height: 1.7;
	margin: 40px 0;
}
.cmn_subttl dt{
	margin:0 auto;
	color: #fff;
	background: #1b734a;
	padding:15px 30px;
}
.cmn_subttl .en{
	 font-family: "Poppins", serif;
  font-weight: 700;
}
.cmn_subttl dd{
	flex:1;
	color: #1b734a;
	padding:15px 30px;
}
.cmn___subttl {
  color: #1b734a;
 font-weight: 900;
  background: #f8f8ec;/*背景色*/
  border-left: solid 20px #1b734a;/*左線（実線 太さ 色）*/
	padding:15px 30px 15px 20px;
	line-height: 1.7;
}
h5{
	display: flex;
	color: #1b734a;
	font-weight: 700;
	line-height: 1.7;
	margin: 40px 0;
	border-bottom: 1px #8db9a4 solid;
	padding-bottom: 20px;
}
h6{
	font-weight: 700;
	line-height: 1.7;
	color: #1b734a;
}
/*----------------------------------------
	wide
-----------------------------------------*/
.cmn_inner {
	position: relative;
	margin: 0 auto;
	max-width: 1200px;
}

.cmn_contents {
	background: #fff;
	border-radius:60px;
	border: 8px solid #b9b99f;
	padding:5% 10% 5% 10%;
	margin: 50px 5% 0 5%;
}

/*----------------------------------------
	footer
-----------------------------------------*/

footer{
	padding:0;
	margin: 0 auto;
}

footer .sns_foot{
	padding:30px 0;
	margin: 0 auto;
	background: #fff;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}
footer .sns_foot ul{
	display: flex;
	justify-content: center;
}
footer .sns_foot ul li{
	padding: 0 10px;
	width: 140px;
}
footer .sns_foot p{
	font-family: 'Montserrat', sans-serif;
font-weight:800;
	font-size: 2.0rem;
}
footer .sns_foot ul:after{
content: "";
	width: 120px;
	display: block;
}

footer .link_foot{
	padding:20px 0;
	margin: 0 auto;
}
footer .link_foot ul{
	display: flex;
	justify-content: center;
}
footer .link_foot ul li{
	padding: 0 10px;
	width: 220px;
}

footer .foot_area{
	background: #698c78;
	padding: 40px 0;
}
footer .foot_area .cmn_inner{
	display: flex;
	justify-content: space-between;
	align-items: center;
	
}
footer .foot_area .cmn_inner li a{
	background: url("../img/cmn_foot_menuico.png")no-repeat left center;
	padding: 0 0 0 20px;
	font-weight: 700;
	color: #d8d8bf;
}
footer .foot_area .foot_right{
	text-align: right;
}

footer .foot_area  .foot_right p{
	line-height: 1.7;
	font-weight: 700;
	font-size: 1.8rem;
	color: #d8d8bf;
}


footer .foot_copy{
	padding:20px 7% 0 7%;
	font-size: 12px;
	max-width: 1200px;
	margin: 0 auto;
	color: #d8d8bf;
	text-align: right;
}
/*ページトップボタン*/
.page-top{
	position: fixed;
	right: 40px;
	bottom: 40px;
	z-index: 9999;
	background: #d8d8bf url("../img/cmn_pagetop.png")no-repeat center center;
	display: block;
	border:3px #1b734a solid;
	width: 60px;
	height: 60px;
	border-radius: 50%;
}




/*media Queries タブレットサイズ（769px～1200px）のみで適応したいCSS -タブレットのみ
---------------------------------------------------------------------------------------------------*/
@media only screen and (max-width: 1100px) {
	


/*----------------------------------------
	header
-----------------------------------------*/
	
.globalMenu li a{
	display: block;
	font-weight: 600;
	margin-right: 3rem;
	font-size: 1.6rem;
}

header h1 img{
	width: 200px;
}
a.btn_green{
	font-size: 1.6rem;
}

	
	}

/*media Queries スマートフォンサイズ（767px以下）で適応したいCSS - スマホ
---------------------------------------------------------------------------------------------------*/
@media only screen and (max-width: 767px) {


body {
line-height:2;
font-size:  1.4rem;
background:url("../img/cmn_bg_sp.png") no-repeat left top #f8f8ec;
	background-size: 100%;
}

.pc{
	display:none;
}
.sp{
	display:block;
}

/*----------------------------------------
	header
-----------------------------------------*/

.header_band{
	padding:0px 3%;
	background:#fff;
	border-bottom: 1px #c0c0af solid;
	display: flex;
	align-items: center;
	height: 40px;
	margin-bottom: 0;
}
.header_band .logo img{
	width: 20px;
}
.header_band span{
	font-size: 13px;
	margin-left: 10px;
}
header{
	padding:0 3%;
	width: 100%;
	box-sizing: border-box;
	margin: 5px 0 0 0;
}
header h1{
	padding: 6px 0 4px 10px;
}
header h1 img{
	width: 220px;
}

/*　ヘッダー追従設定　*/
header.is-fixed {
    position: fixed;
    background-color: #fff;
	padding:5px 3% 10px 3%;
	top:0px;
}	
header.is-fixed .hamburger{
    top   : 10%;
}	

/*　ハンバーガーボタン　*/
.hamburger {
  display : block;
  position: absolute;
  z-index : 9999;
  right : 5%;
  top   : 7%;
  width : 45px;
  height: 45px;
  cursor: pointer;
  text-align: center;
background: #196a44;
	border-radius: 50%;
	
}
.hamburger span {
  display : block;
  position: absolute;
  width   : 22px;
  height  : 2px ;
  left    : 11px;
  background : #fff;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition   : 0.3s ease-in-out;
  transition        : 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 17px;
}
.hamburger span:nth-child(2) {
  top: 25px;
}

	
/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top : 21px;
  left    : 11px;
  background :#fff;
  -webkit-transform: rotate(-45deg);
  -moz-transform   : rotate(-45deg);
  transform        : rotate(-45deg);
}

.hamburger.active span:nth-child(2) {
  top: 21px;
  background :#fff;
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg);
}
.globalMenu nav {
	position: fixed;
	height: 100vh;
  z-index :999;
  top  : 0;
  left : 0;
  color: #fff;
  background:#698c78;
  text-align: center;
  width: 100%;
  opacity: 0;
	pointer-events: none;
  transition: opacity .6s ease, visibility .6s ease;
	overflow-y: scroll;
}
	
.globalMenu nav.is-active{
  pointer-events: auto;
  opacity: 1;
}
.globalMenu nav{
	display: block;
}
a.btn_green{
	margin: 0 auto;
	width: 88%;
	box-sizing: border-box;
	border-radius: 50px;
	padding: 20px 20px 22px 20px;
	line-height: 1;
	text-align: center;
	font-weight: 700;
	margin: 0 auto;
	color: #f8f8ec;
}
.globalMenu li a{
	display: block;
	font-weight: 600;
	margin-right: 4rem;
	position: relative;
	text-decoration: none;
	overflow: hidden;
}	


.globalMenu nav li{
	border-bottom: 1px #fff solid;
}
.globalMenu nav li a{
	text-align: left;
	position: relative;
	padding:2rem 0;
	background: url("../img/cmn_nav_arrow.png") no-repeat right center;
	background-size: 20px;
	margin-right: 0;
	color: #fff;
}
.globalMenu nav ul{
	display: block;
	width: 85%;
	margin: 10% auto 0 auto;
	padding: 3rem 0 0 0;
}
.globalMenu li a:after {
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  background-color: none;
}
.globalMenu nav li:last-of-type{
	border-bottom: none;
}


/* このクラスを、jQueryで付与・削除する */
.globalMenu nav.active {
  opacity: 100;
transition: 0.5s;
}


/*----------------------------------------
	title
-----------------------------------------*/
.main_ttl {
	margin:15px auto 0 auto;
	background:url("../img/main_bg.jpg") repeat top left;
	text-align: center;
}
.main_ttl h2{
	letter-spacing: 0.2em;
	padding:10% 30px;
}
.main_ttl h2.nosp{
	letter-spacing:0;
}
.main_lead {
	margin:0 auto;
	background-size:5%;
	padding: 6% 0;
}
.main_lead p{
	padding-top: 10px;
}
.main_lead ul{
	margin: 30px 0 0 0;
}
.main_lead li{
	background:url("../img/cmn_lead_ico.png") no-repeat center left ;
	background-size: 22px;
	padding:0 0 0 30px ;
	margin: 15px 0 ;
}

.main_lead a{
	font-weight: 700;
	color: #fff;
}


.cmn_ttl{
	line-height: 1.5;
	border-top:2px #1b734a solid;
	border-bottom:2px #1b734a solid;
	padding: 15px 0;
}

.cmn_subttl dl{
	display: block;
	margin: 40px 0 20px 0;
}
.cmn_subttl dt{
	text-align: center;
	padding:4px 20px;
}
.cmn_subttl dd{
	padding:10px;
	background: #fff;
}
.cmn___subttl {
 font-weight: 700;
  border-left: solid 10px #1b734a;/*左線（実線 太さ 色）*/
	padding:10px 20px 10px 10px;
	background: #fff;
}
h5{
	margin: 30px 0;
	padding-bottom: 10px;
}
/*----------------------------------------
	wide
-----------------------------------------*/
.cmn_inner {
	padding:0 3%;
}
.cmn_contents{
	border-radius:none;
	border: none;
	background: none;
	padding:0;
}

/*----------------------------------------
	footer
-----------------------------------------*/

footer{
	padding:0;
	margin: 0 auto;
}

footer .sns_foot{
	padding:30px 0;
	margin: 0 auto;
	background: #fff;
	position: relative;
	display: block;
}
footer .sns_foot ul{
	display: flex;
	justify-content: center;
}
footer .sns_foot ul li{
	padding: 0 10px;
	width: 120px;
}
footer .sns_foot p{
	text-align: center;
}
footer .sns_foot ul:after{
content: "";
	width: 0;
	display: block;
}

footer .link_foot{
	padding:20px 0;
	margin: 0 auto;
}
footer .link_foot ul{
	display: block;
}
footer .link_foot ul li{
	padding: 0 0;
	background: #fff;
	width:90%;
	margin: 0 auto 10px auto;
	text-align: center;
}
	footer .link_foot ul li img{
	padding: 0 0;
	width:60%;
		margin: 0 auto;
		text-align: center;
}

footer .foot_area{
	padding: 40px 0;
}
footer .foot_area .cmn_inner{
	display: block;
	
}
footer .foot_area .cmn_inner ul{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
footer .foot_area .cmn_inner li{
	width: 50%;
	padding:5px 0;
}
footer .foot_area .cmn_inner li a{
	font-size: 1.5rem;
}
footer .foot_area .foot_right{
	text-align: center;
	margin: 40px 0 0 0;
}
footer .foot_area  .foot_right .foot_mark img{
	width: 150px;
	margin: 0 auto;
	text-align: center;
}
footer .foot_area  .foot_right p{
	line-height: 1.7;
	font-weight: 700;
	font-size: 1.2rem;
	color: #d8d8bf;
	padding: 10px 0;
}


footer .foot_copy{
	padding:30px 7% 0 7%;
	font-size: 12px;
	line-height: 1.5;
	margin: 0 auto;
	color: #d8d8bf;
	text-align: center;
}
/*ページトップボタン*/
.page-top{
	position: fixed;
	right: 20px;
	bottom: 20px;
	width: 40px;
	height: 40px;
	background-size: 7px;
}
	
}/*解像度736px以下*/
