
/*--------------
all
-------------*/
.align-center {
  align-items: center;
}
/*breadcrumbs*/
.breadcrumbs ol li {
  line-height: 2.4;
margin-left: 30px;
margin-bottom: 10px;
}
.breadcrumbs ol li::after {
content: url('../../assets/img/common/next_btn.png');
margin: 3px 10px 0;
position: absolute;
}

.breadcrumbs ol li:last-child::after{
  content: none;
}

.button_border {
  display: block;
  max-width: 180px;
  border-bottom: 1px solid #73be07;
  color: #73be07;
  line-height: 40px;
  font-size: 18px;
  letter-spacing: .1em;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  position: relative;
}
.button_border:hover {
   -webkit-transform: translateX(5px);
       -ms-transform: translateX(5px);
           transform: translateX(5px);
}
.button_border::before{
  content: "→";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}
.button {
  display: block;
  color: #73be07;
  text-align: center;
  font-size: 18px;
  letter-spacing: .1em;
  background-color: #fff;
  max-width: 350px;
  line-height: 60px;
  position: relative;
  border-radius: 3px;
}
.button:hover::before{
-webkit-transform: translateY(-50%) translateX(5px);
    -ms-transform: translateY(-50%) translateX(5px);
        transform: translateY(-50%) translateX(5px);
}
.button::before{
  content: "→";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 20px;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}
  h2 {
  font-size: 40px;
  line-height: 1.7;
  letter-spacing: .4em;
}
@media screen and (max-width: 769px){
  .button_border {
    display: block;
    max-width: 140px;
    border-bottom: 1px solid #73be07;
    color: #73be07;
    line-height: 40px;
    font-size: 16px;
    letter-spacing: .1em;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    position: relative;
  }
  h2 {
    font-size: 30px;
    line-height: 1.7;
    letter-spacing: .2em;
  }
}
/*-----------------
slick
------------------*/
.slide-arrow{
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.prev-arrow{
	background-image:	url('../img/common/arrow-prev.png');
	background-repeat:	no-repeat;
	background-position:right center;
	background-size:	100% auto;
	width: 30px;
	height: 50px;
	left: 0px;
	display:			block;
}
.next-arrow{
	background-image:	url('../img/common/arrow-next.png');
	background-repeat:	no-repeat;
	background-position:left center;
	background-size:	100% auto;
	width: 30px;
	height: 50px;
	right: 0px;
	display:			block;
}
.slider {
  padding: 0 30px;
}
.slider li {
  padding: 0 20px;
}

.slick-prev, .slick-next{
  display: none !important;
}
.slick-slide {
  outline: none !important;
}

a {outline:none;}
a img {outline:none;}

@media screen and (max-width: 769px){
  .slide-arrow{
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    z-index: 10;
  }
  .prev-arrow{
    left: 15px;
    width: 20px;
    height: 40px;
  }
  .next-arrow{
    right: 15px;
    width: 20px;
    height: 40px;
  }
  .slider {
    padding: 0 0px;
  }
  .slider li {
    padding: 0 10px;
  }
}
/*-----------slick*/
/*-----------
footer
----------*/

footer .bg-gray {
  background-color: #efefef;
  padding: 40px 0;
}
footer .bg-dark {
  background-color: #404040;
  color: #fff;
  padding: 30px;
}
/*-----------
contact
----------*/
.contact_fixed {
  display: block;
  position: fixed;
  right: 0;
  top: 20vh;
  color: #fff;
  width: 50px;
  height: 150px;
  border-radius: 4px 0 0 4px;
  background-color: #326840;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-size: 16px;
  text-align: center;
  line-height: 50px;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  z-index: 10;
}
.contact_fixed:hover {
  -webkit-transform: translateY(-5px);
      -ms-transform: translateY(-5px);
          transform: translateY(-5px);
}
.contact_fixed img {
    width: auto ;
    vertical-align: baseline;
}
/*-----------
header
----------*/
header {
  height: 110px;
  background-color: #fff;
  padding: 0 30px;
}
header .menu >ul {
	display: 			-webkit-flex;
	display: 			flex;
	align-items:		stretch;	/*  縦位置 */
	align-content: 		flex-start;	/* 横位置 */
	justify-content:	space-between;	/* 並べ方 */
	flex-wrap: 			nowrap;
}
header .menu >ul >li {
	
  height: 110px;
  /*line-height: 110px;*/
	font-weight: 500;
	line-height: 		1.4;
	display: 			-webkit-flex;
	display: 			flex;
	align-items:		center;
	
}
header .menu >ul >li >a {
	border-right: 1px solid #326840;
	text-decoration: 	none;
	display:			block;
	
	padding:			0 20px;

}
header .menu >ul >li >a:hover span{
 	border-bottom:	2px solid #0b8d2d;
	display: block;
	padding-bottom:		4px;
}
header .menu >ul >li:nth-child(5) a,
header .menu >ul >li:last-child a
{
	white-space: nowrap;
}
header .menu >ul >li:last-child a {
  border: none;
}
header > .flex {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 110px;
}
header .menu >ul >li >a:hover {
	color:#0b8d2d;
}
header .menu >ul >li >a {
	position: relative;
}
/*
header .menu >ul >li >a:hover::after {
  content: "";
  position: absolute;
  bottom: 30px;
  width: calc(100% - 40px);
  height: 2px;
  background-color: #0b8d2d;
  left: 20px;
}
*/
header .menu .sub_menu {
  position: absolute;
  display: none;
  width: 100vw;
  background: rgba(11,141,45,.9);
  padding: 20px;
  font-size: 16px;
  color: #fff;
  left: 0;
  top: 100%;
  line-height: 1.5;
  z-index: 999;
}
header .menu .sub_menu li {
  margin: 0 30px;
}
header .menu .sub_menu ul li a {
	display: block;
}
header .menu .sub_menu ul li a:hover {
  opacity: .7;
}
header .menu .sub_menu ul li a p:nth-child(2)
{
	margin-top:		0.5em;
}
.top header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: transparent;
  color: #000;
}
.top header .menu >ul >li >a {
  border-right: #000 1px solid;
}
.top .menu >ul >li:last-child a {
  border: none;
}

header h1
{
	min-width:		165px;
}
header .menu.pc
{
	width:				calc( ( 1400 / 1600 ) * 100% );
	/*max-width: 		900px;*/
}
header .menu.pc > ul
{
	justify-content:	flex-end;	/* 並べ方 */
}
header .menu.pc > ul > li
{
	text-align: 	center;
}
header .menu.pc > ul li a
{
	width:		100%;
	font-size:			1.5rem;
	box-sizing: border-box;
}
header .menu.pc > ul > li:nth-of-type(2) .sub_menu li {
  margin: 0 15px;
}
@media screen and (max-width: 1200px){
	header .menu.pc > ul
	{
		width:				96%;
		margin-left:		auto;
	}
	header .menu.pc > ul li a
	{
		font-size:			1.4rem;
	}
}
@media screen and (max-width: 900px){
	header .menu.pc > ul li a
	{
		font-size:			1.3rem;
	}
}
.accordion section {
  padding: 0;
  border-top: 1px solid #0b8d2d;
}
.accordion section h2 {
  padding: 0 20px;
  line-height: 60px;
  font-size: 16px;
}

.accordion section:last-child {
  border-bottom: 1px solid #0b8d2d;
}
.accordion-title a {
  display: block;
}
.accordion-content {
  /* 初期状態では非表示 */
  display: none;
}
.sub_menu2 {
  background-color: #0b8d2d;
  color: #fff;
  font-size: 14px;
}
.sub_menu2 >li> a{
  display: block;
  border-bottom: 1px solid #fff;
  padding: 0px 30px;
  line-height: 50px;
}
.sub_menu2 li:last-child {
  border-bottom: none;
}
.sub_menu2_sub {
  padding-left: 10px;
}
.sub_menu2_sub li {
  display: block;
  padding: 0px 30px;
  line-height: 50px;
}
.accordion-content.accordion-content-active {
  display: block;
}
.menu2 {
  display: none;
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  background-color: #fff;
  color: #000;
  height: auto;
  z-index: 99999;
}

.sub_menu3 {
  font-size: 13px;
  color: #777777;
  padding: 20px;
}
.sub_menu3 li{
  line-height: 25px !important;
  height: 25px !important;
}


@media screen and (max-width: 769px){
	main {
		margin-top: 60px;
	}
	main.index {
		margin-top: 0px;
	}
	.change-color {
		background-color: #fff !important;
	}
	header {
	  position: fixed !important;
	  top: 0;
	  left: 0;
	  width: 100%;
	  height: 60px;
	  background-color: #fff;
	  padding: 0 ;
	  z-index: 999;
	}
	header .menu >ul >li {
	  height: 60px;
	  font-weight: 500;
	  line-height: 60px;
	}
	header .flex {
	  -webkit-box-align: center;
		  -ms-flex-align: center;
			  align-items: center;
	  height: 60px;
	}
	header div.sp {
	  width: 120px;
	}
	header h1 {
		width:		calc( ( 165 / 768 ) * 100% );
		min-width:	120px;
		margin-left: 20px;
	}
	header h1 img{
	 /* width: 30vw;*/
	}
	footer .wrap_inner {
	  padding: 0;
	}
	
	
	header .menus
	{
		width:		120px;
		display: 	table;
	}
	header .menus > div
	{
		width:		50%;
		display: 	table-cell;
	}
	header .btn_menu
	{
		background-image:	url("../img/common/menu_open.png");
		background-repeat:	no-repeat;
		background-position:left center;
		background-size:	cover;
	}
	header .btn_menu.open
	{
		background-image:	url("../img/common/menu_close.png");
	}
	
}

.relative{
	position: relative;
}


/* トップへ戻る */
.top_btn{
	width: calc( ( 100 / 1400 ) * 100% );
	min-width: 60px;
	display: none;
}
.top_btn{
	position: fixed;
	bottom: 60px;
	right: calc( ( 60 / 1400 ) * 100% );
}
.top_btn img{
	width:	100%;
	height:	auto;
}
@media screen and (max-width: 769px){
	.top_btn{
		width: 40px;
	}
}




	
	
	
	

/* ================================================
	aaaa
================================================ */

/* aaaa
================================================ */

/* ================================
	aaaa
================================ */

/* aaaa
================================ */

/* ======== aaaa ======== */


/* ------------------------------------------------
	aaaa
------------------------------------------------ */

/* aaaa
------------------------------------------------ */

/* --------------------------------
	aaaa
-------------------------------- */

/* aaaa
-------------------------------- */

/* -------- aaaa -------- */

/* ---- aaaa ---- */

/* -- aaaa -- */

/* aaaa */

