/* header */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  /* height: 90px; */
  background: #fff;
  transition: transform 0.3s ease; /* topじゃなくtransformに */
  z-index: 99999;
  border-bottom: 1px solid #B3B3B3;
  transform: translateY(0); /* 初期位置 */
  padding: 16px 0;
}
.head_nav{
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 1280px;
	margin: 0 auto;
}
.head_logo--box{
	width: 200px;
}
.head_nav--logo{
	width: 124px;
	margin-top: 10px;
}
.head_nav--logo a:hover{
	opacity: 0.6;
}
.head_nav--logo img{
	width: 100%;
}
.sp_nav--list{
	display: none;
}
h1{
	font-size: 1rem;
}
h1 span{
	font-weight: bold;
}
.head_nav--list01{
	display: flex;
	justify-content: space-between;
	width: 666px;
	font-size: 1.8rem;
	font-weight: bold;
	align-items: center;
}
.head_nav--list02{
	display: flex;
	justify-content: space-between;
	font-size: 1.4rem;
}
.head_nav--list02 li{
	padding: 0 10px;
}
.head_nav--link{
	width: 136px;
	background: #FF6733;
	border-radius: 6px;
	text-align: center;
}
.head_nav--link a{
	color: #fff;
	display: block;
	font-size: 1.6rem;
	font-weight: bold;
	/* padding: 6px 18px; */
	border-radius: 6px;
}
.sp_nav--btm{
	display: none;
}
.head_nav--list01 li a:hover,
.head_nav--list02 li a:hover{
	color: rgba(0, 155, 74, 1);
}
.head_nav--link a:hover{
	background: #fff;
	color: rgba(255, 103, 51, 1);
	border: 1px solid rgba(255, 103, 51, 1);
}
.main_kv{
	width: 100%;
	/* max-width: 1400px; */
	margin: 90px auto 0;
}
.main_kv img{
	width: 100%;
}

/* news */
.news_sec{
}
.font_ab {
  font-family: "Archivo Black", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 5.6rem;
  text-align: center;
  padding-top: 100px;
}
.font_ab span{
	display: block;
	font-size: 2.4rem;
	color: rgba(0, 155, 74, 1);
	font-weight: bold;
	position: relative;
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
	margin-bottom: 1em;
}
.font_ab span:before {
	content: '';
	position: absolute;
	bottom: -15px;
	display: inline-block;
	width: 116px;
	height: 2px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	background-color:rgba(0, 155, 74, 1);
	border-radius: 2px;
  }
.top_news--list{
	margin: 60px 0;
	border-top: 1px #B3B3B3 solid;
}
.top_news--list li{
	border-bottom: 1px #B3B3B3 solid;
}
.top_news--list li a{
	display: flex;
    align-items: center;
	padding: 16px 40px 16px 0;
	position: relative;
}
.top_news--list li a:hover{
	background: rgb(229, 245, 237);
	color: rgba(0, 155, 74, 1);
}
.top_news--list li a:after{
	content: " ";
    display: inline-block;
    width: 8px;
    height: 11px;
    background: url(../img/arrow.svg) no-repeat center bottom;
    background-size: contain;
    vertical-align: baseline;
    z-index: 1;
    position: absolute;
    right: 20px;
    top: 42%;
}
.link_icon--01:after{
	width: 13px !important;
	height: 12px !important;
	background: url(../img/link_external.svg) no-repeat center bottom !important;
	right: 18px !important;
	top: 45% !important;
}
.link_icon--02:after{
	width: 20px !important;
    height: 20px !important;
    background: url(../img/link_pdf.svg) no-repeat center bottom !important;
	right: 18px !important;
	top: 40% !important;
}
.top_news--list li a.no-link:after {
  content: none !important;
}
.top_news--list li a.no-link:hover {
  color: inherit;      /* 色の変化を無効化 */
  background: none;    /* 背景の変化を無効化 */
  cursor: default;     /* カーソルも通常に */
}
.top_news--day{
	color: #999;
	font-size: 1.2rem;
	padding: 0 20px;
}
.more_btn{
	width: 384px;
	text-align: center;
	margin: 0 auto;
	font-size: 2rem;
	font-weight: bold;
	box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.2);
	background: #fff;
	border-radius: 12px;
	line-height: 125%;
}
.more_btn a{
	color: rgba(0, 155, 74, 1);
	display: block;
	padding: 20px 38px 20px 20px;
	border-radius: 12px;
	position: relative;
}
.more_btn a:after {
    content: " ";
    display: inline-block;
    width: 8px;
    height: 11px;
    background: url(../img/arrow.svg) no-repeat center bottom;
    background-size: contain;
    vertical-align: baseline;
    z-index: 1;
    position: absolute;
    right: 30px;
    top: 45%;
}
.more_btn a:hover{
	background: rgba(0, 155, 74, 1);
	color: #fff;
}
.more_btn a:hover::after {
	background: url(../img/foot-arrow.svg) no-repeat center bottom;
}
/* .call_tel{
	width: 302px;
} */
.call_tel p{
	font-size: 3.5rem;
	font-weight: bold;
	position: relative;
}
.call_tel p a,
.foot-btm__txt p a{
	pointer-events: none;
}
.call_tel p:before{
	content: " ";
    display: inline-block;
    width: 44px;
    height: 26px;
    background: url(../img/icon_navid.svg) no-repeat center bottom;
    background-size: contain;
    vertical-align: baseline;
    z-index: 1;
    position: absolute;
	left: -50px;
	top: 22px;
}
.call_tel p span{
	font-size: 1.6rem;
}

/* gotos */

.gotos_sec{
	position: relative;
	margin-top: 100px;
}
.gotos_bg{
	position: absolute;
    top: 57%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    z-index: 1;
    height: 980px;
    width: 100%;
}
.gotos_bg img{
	width: 100%;
    height: 100%;
}
/* .gotos_sec{
	background-image: url(../img/bg_photo.png);
    background-repeat: no-repeat;
    background-position: left;
    background-size: cover;
} */
.font_ab--02{
	font-family: "Archivo Black", serif;
	font-weight: 400;
	font-style: normal;
	font-size: 5.6rem;
	text-align: center;
	color: #fff;
	padding-top: 150px;
}
.font_ab--02 span{
	display: block;
	font-size: 2.4rem;
	color: #fff;
	font-weight: bold;
	position: relative;
	margin-bottom: 1em;
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}
.font_ab--02 span:before {
	content: '';
	position: absolute;
	bottom: -15px;
	display: inline-block;
	width: 185px;
	height: 2px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	background-color: #fff;
	border-radius: 2px;
}
.about_flex{
	display: flex;
	justify-content: space-between;
	margin: 0px 0 60px;
	padding-top: 60px;
}
.about_flex--img{
	width: 600px;
}
.about_flex--img img{
	width: 100%;
}
.about_flex--txt{
	width: 522px;
	color: #fff;
}
.about_flex--txt h4{
	font-size: 4rem;
	line-height: 150%;
	font-weight: bold;
}
.about_flex--txt p{
	padding-top: 40px;
}

/* service */
.service_sec{
	background-image: url(../img/bg-03.png);
	background-repeat: no-repeat;
	background-position: left;
	background-size: cover;
	padding-bottom: 124px;
	padding-top: 124px;
}
.service_sec--ttl{
	text-align: center;
	font-size: 4rem;
	padding-top: 60px;
	font-weight: bold;
	line-height: 1.5;
}
.service_sec--txtbox{
	width: 800px;
	margin: 60px auto 0;
}
.service_list{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin: 60px 0;
}
.service_list li{
	width: 384px;
	border: 1px solid #0A7A00;
	background: #fff;
	padding: 30px 20px;
}
/* .service_list li:nth-child(n+3){
	margin-top: 24px;
} */
.service_list--icon{
	width: 80px;
	margin: 0 auto;
}
.service_list--icon img{
	width: 100%;
}
.service_list li h4{
	text-align: center;
	font-size: 3rem;
	font-family: "Archivo Black", serif;
}
.service_list li h4 span{
	display: block;
	font-size: 1.6rem;
	font-weight: bold;
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}
.service_list li p{
	text-align: center;
	padding-top: 20px;
	font-size: 1.2rem;
}

/* product */
/* .products_sec{
	background-image: url(../img/pro-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
} */
.products_sec{
	position: relative;
	z-index: 3;
}
 .pro_bg{
	position: absolute;
    top: 54%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    z-index: 1;
    height: 1150px;
    width: 100%;
}
 .pro_bg img{
	width: 100%;
	height: 100%;
 }
.co-w{
	color: #fff;
}
.products_list{
	padding: 60px 0;
	display: flex;
	justify-content: space-between;
}
.products_list li{
	width: 282px;
}
.products_list li img{
	width: 100%;
}

/* company */
.company_sec{
	margin-top: 100px;
}
.co_flex{
	display: flex;
	justify-content: space-between;
	padding: 60px 0 0px;
}
.co_flex--txt{
	width: 522px;
}
.co_flex--txt h4{
	font-weight: bold;
	font-size: 3.2rem;
	line-height: 175%;
}
.co_flex--txt p{
	font-size: 1.6rem;
	padding-top: 40px;
}

.co_flex--img{
	width: 600px;
}
.co_flex--img img{
	width: 100%;
}


/* recruit */
.recruit_sec{
	margin-top: 120px;
}
.rec_btn{
	margin: 40px 0 0 0;
}

/* call */
.call_sec{
	background: #F5F5F5;
	padding: 60px 0;
	margin-top: 10px;
	margin-bottom: 10px;
}
.call_sec--txt{
	text-align: center;
	font-size: 1.8rem;
	font-weight: bold;
}
.call_sec--flex{
	width: 450px;
	margin:0 auto;
	padding-top: 20px;
	align-items:center;
}
.call_btn{
	width: 100%;
	border-radius: 12px;
	background: rgba(255, 103, 51, 1);
	color: #fff;
	font-size: 2rem;
	font-weight: bold;
}
.call_btn a{
	display: block;
	padding: 20px 40px 20px 40px;
	border-radius: 12px;
	border: 1px solid transparent;
	position: relative;
}
.call_btn a:after{
	content: " ";
    display: inline-block;
    width: 8px;
    height: 11px;
    background: url(../img/foot-arrow.svg) no-repeat center bottom;
    background-size: contain;
    vertical-align: baseline;
    z-index: 1;
    position: absolute;
    right: 20px;
    top: 30px;
}
.call_btn a:hover{
	background: #fff;
	color: rgba(255, 103, 51, 1);
	border: 1px solid  rgba(255, 103, 51, 1);;
}
.call_btn a:hover::after {
	background: url(../img/arrow_hover.svg) no-repeat center bottom;
}

.top_inner{
	width: 1200px;
	margin: 0 auto;
	position: relative;
	z-index: 9999;
}


/* footer */
footer{
	background:rgba(0, 130, 67, 1);
	color: #fff;
}
.foot-nav{
	width: 1060px;
	margin: 0 auto;
	padding: 60px 0;
	display: flex;
	justify-content: space-between;
}
.foot-nav ul li{
	padding-top: 20px;
}
.foot-nav ul li:first-child{
	padding-top: 0;
}
.foot-nav ul li a{
	position: relative;
	line-height: 1.25;
}
.foot-nav ul li a:hover{
	color: rgba(17, 204, 0, 1);
}
.foot-nav ul li a:after{
	content: " ";
	display: inline-block;
	width: 8px;
	height: 11px;
	background: url(../img/foot-arrow.svg) no-repeat center bottom;
	background-size: contain;
	vertical-align: baseline;
	z-index: 1;
	position: absolute;
    right: -20px;
    top: 5px;
}
.foot-nav ul li a:hover::after{
	background: url(../img/arrow_hover02.svg) no-repeat center bottom;
} 
/* .nav_fix li:last-child a::after {
    top: 15px !important;
} */
.foot-nav ul li h4{
	font-weight: bold;
	font-size: 1.8rem;
}
.foot-nav__mid{
	width: 1200px;
	margin: 0 auto;
	border-top: 1px solid #B3B3B3;

}
.foot-nav__mid ul{
	display: flex;
	justify-content: space-between;
	padding:40px 0;
	width: 316px;
	margin: 0 auto;
}
.foot-nav__mid ul li:hover{
	color: rgba(17, 204, 0, 1);
}
.foot-nav__btm{
	background:rgba(0, 105, 54, 1);
	border-top: 1px solid #B3B3B3;
	padding:60px 0 40px;
}
.nav-btm__flex{
	width: 570px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.btm-dtl{
	display: flex;
}
.foot-logo{
	width: 124px;
	margin-right: 30px;
}
.foot-logo img{
	width: 100%;
}
.foot-btm__txt{
	font-size: 1rem;
}
.foot-btm__txt h4{
	font-weight: bold;
}

.copy{
	font-size: 1rem;
}
.sp{
	display: none;
}
.pc{
    display: block;
}



@media (max-width: 767px) {
	.pc{
		display: none;
	}
	.sp{
		display: block !important;
	}
	.head_nav{
		width: 90%;
		padding: 10px 0 16px 0;
		justify-content: space-between;
	}
	.top_inner{
		width: 90%;
	}
	.font_ab{
		font-size: 4rem;
		padding-top:60px;
	}
	.font_ab span,
	.font_ab--02 span{
		font-size: 1.6rem;
	}
	.top_news--list li{
		font-size: 1.4rem;
	}
	.top_news--day{
		padding: 0;
		font-size: 1rem;
	}
	.top_news--ttl{
		display: block;
		padding-top: 10px;
		width: 100%;
	}
	.top_news--day{
		display: block;
	}
	.top_news--list li a{
		padding: 16px 38px 16px 20px;
		flex-wrap: wrap;
	}
	.more_btn{
		width: 100%;
		font-size: 1.6rem;
	}
	.more_btn a{
		padding: 16px 38px 16px 20px;
	}
	.font_ab--02{
		font-size: 4rem;
		padding-top: 90px;
	}
	.about_flex{
		display: block;
	}
	.about_flex--img{
		width: 100%;
	}
	.about_flex--txt{
		width: 100%;
	}
	.about_flex--txt h4{
		font-size: 2.1rem;
		padding-top: 30px;
		text-align: center;
	}
	.about_flex--txt p{
		padding-top: 30px;
		font-size: 1.4rem;
	}
	.service_sec--ttl{
		font-size: 2.1rem;
		line-height: 1.75;
	}
	.service_sec--txtbox{
		width: 100%;
		margin-top: 30px;
	}
	.service_list li{
		width: 100%;
	}
	.service_list li h4{
		font-size: 2.4rem;
	}
	.service_list li h4 span{
		font-size: 1.4rem;
	}
	.service_list li p{
		font-size: 1rem;
	}
	.service_list li:nth-child(n+2){
		margin-top: 20px;
	}
	.service_list li:nth-child(n+3){
		margin-top: 20px;
	}
	.products_list{
		padding: 30px 0;
	}
	.products_list{
		flex-wrap: wrap;
	}
	.products_list li{
		width: 48%;
	}
	.co_flex{
		flex-wrap: wrap;
	}
	.co_flex--txt{
		width: 100%;
		order: 2;
	}
	.co_flex--img{
		order: 1;
		width: 100%;
	}
	.co_flex--txt h4{
		font-size: 1.8rem;
		padding-top: 30px;
		text-align: center;
		line-height: 1.75;
	}
	.co_flex--txt p{
		padding-top: 30px;
	}
	.call_sec--flex{
		width: 100%;
		display: block;
	}
	.call_btn{
		width: 90%;
		font-size: 1.6rem;
		text-align: center;
		margin: 0 auto;
	}
	.call_btn a{
		padding: 16px 44px 16px 26px;
	}
	.call_btn a:after{
		right: 35px;
		top: 23px;
	}
	.call_tel p{
		text-align: center;
		font-size: 2.8rem;
		color: rgb(255, 103, 51);
		padding-top: 20px;
		padding-left: 10%;
	}
	.call_tel p a{
		position: relative;
	}
	.call_tel p a:before{
		top: 64%;
        left: 70px;
		transform: translate(-50%, -50%);
		-webkit-transform: translate(-50%, -50%);
		-ms-transform: translate(-50%, -50%);
	}
	.foot-nav{
		width: 90%;
		flex-wrap: wrap;
		padding: 40px 0;
	}
	.foot-nav ul{
		width: 48%;
	}
	.foot-nav ul:nth-child(n+3) {
        margin-top: 40px;
    }
	.foot-nav__mid{
		width: 90%;
	}
	.foot-nav__mid ul{
		width: 100%;
		padding: 20px 0;
		justify-content: center;
        gap: 0 40px;
	}
	.nav-btm__flex{
		display: block;
		width: 100%;
	}
	.btm-dtl{
		align-items: center;
		justify-content: center;
	}
	.foot-nav__btm{
		padding:40px 0;
	}
	.copy{
		text-align: center;
		padding-top: 20px;
	}
	.gotos_sec{
		margin-top: 60px;
	}
	.foot-nav ul li h4{
		font-size: 1.6rem;
	}
	.foot-nav ul li p{
		font-size: 1.2rem;
	}
	.foot-nav__mid ul li p{
		font-size: 1.2rem;
	}
	header {
		position: fixed;
		background: #fff;
		width: 100%;
		z-index: 99999;
		border-bottom: 1px solid #B3B3B3;
		top: 0;
		padding: 0;
	}
	.call_sec{
		margin-top: 10px;
	}
	.bdr_btm{
		margin-top: 60px !important;
	}
	.head_nav--list01 li a:hover,
	.head_nav--list02 li a:hover{
		 color: inherit; /* 元の色に戻す */
	}
	.call_tel p a,
	.foot-btm__txt p a{
	    pointer-events: unset;
	}



/* ハンバーガーボタン */
.hamburger {
	/* position: fixed;
	top: 20px;
	right: 20px; */
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	z-index: 99999;
	background: none; /* 背景色を無しに設定 */
	border-radius: 6px;
	order: 3;
	position: absolute;
	right: 26px;
  }
  
  .hamburger span {
	display: block;
	width: 20px;
	height: 2px; /* 線の太さを2pxに変更 */
	background-color: rgba(0, 130, 67, 1); 
	border-radius: 5px;
	transition: transform 0.3s, opacity 0.3s,;
  }
  
  .hamburger span:nth-child(2) {
	margin: 6px 0;
  }
  
  .hamburger.active {
	background-color:rgba(0, 130, 67, 1); 
	width: 32px;
	height: 32px;
  }
  
  .hamburger.active span:nth-child(1) {
	transform: translateY(15px) rotate(45deg);
  }
  
  .hamburger.active span:nth-child(2) {
	opacity: 0;
  }
  
  .hamburger.active span:nth-child(3) {
	transform: translateY(-15px) rotate(-45deg);
  }
  
  .hamburger.active span {
	background-color: #FFF; /* ばつ印の色を白 (#FFF) に変更 */
  }
  /* メニュー全体 */
  .sp_nav {
	position: fixed;
	top: -100%;
	left: 0;
	width: 100%;
	height: 100vh; /* 高さを画面いっぱいに */
	/* background-color:rgba(0, 130, 67, 1); */
	/* transition: top 0.3s ease-in-out; */
	/* padding-top: 60px; */
	overflow-y: auto; /* メニュー内をスクロール可能に */
	z-index: 1;
	color: #fff;
	padding-bottom: 150px;
  }
  .foot-btm__txt p{
	font-size: 1rem;
  }
  
  /* メニューが開いたときに背景スクロールを防ぐ */
	body.no-scroll {
		overflow: hidden;
	}
  
	  .sp_nav.open {
		top: 90px;
		background-color: rgba(0, 130, 67, 1);
	  }
  
	  .head_nav--list01 {
		list-style: none;
		padding-top: 20px;
		margin: 0;
		width: 100%;
		display: block;
	  }
  
	  .sp_nav--top {
		position: relative;
		font-size: 1.6rem;
	  }
  
	  .sp_nav--top a {
		display: block;
		text-decoration: none;
		font-weight: bold;
		cursor: pointer;
		padding: 20px;
	  }
	  /* サブメニュー */
	  .sp_nav--list {
		list-style: none;
		padding: 0;
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.3s ease-out;
		font-size: 1.2rem;
	  }
  
	  .sp_nav--list.open {
		max-height: 500px;
	  }
  
	  .sp_nav--list li a {
		display: block;
		padding: 10px 20px;
		text-decoration: none;
	  }
  
	  /* .sp_nav--list li a:hover {
		background: #eee;
	  } */
	  .sp_nav--list li a:after{
		content: " ";
		display: inline-block;
		width: 8px;
		height: 11px;
		background: url(../img/foot-arrow.svg) no-repeat center bottom;
		background-size: contain;
		vertical-align: middle;
		z-index: 1;
		padding-left: 30px;
	  }
  
	  /* プラス・マイナスの擬似要素 */
	  .sp_nav--top::before {
		content: "+";
		position: absolute;
		right: 20px;
		top: 30px;
		transform: translateY(-50%);
		font-size: 20px;
		color: #fff;
		transition: opacity 0.3s ease, transform 0.3s ease;
	  }
  
	  .sp_nav--top.open::before {
		content: "-";
		opacity: 1;
		transform: translateY(-50%);
	  }
	.sp_nav--list{
		display: block;
	  }
	  .head_nav--link{
		width: 100px;
		margin-right: 50px;
	  }
	  .head_nav--link a{
		/* padding: 6px 14px; */
		font-size: 1.2rem;
	  }
	  header h1{
		padding-left: 20px;
		padding-top: 16px;
	  }
	  .head_nav--logo{
		width: 102px;
		margin-top: 0;
	  }
	  .head_nav--list02{
		display: none;
	  }
	  .sp_nav--btm{
		display: flex;
		border-top: 1px solid #fff;
		width: 90%;
		margin: 20px auto 0;
		padding-top: 20px;
		font-size: 1.2rem;
		justify-content: space-around;
	  }
	  .link_icon--01:after{
		    top: 50% !important;
	  }
	  .link_icon--02:after{
		    top: 46% !important;
	  }
	  .font_ab span:before{
		width: 84px;
	  }
	  .font_ab--02 span:before{
		width: 130px;
	  }

}
.top_kv {
  position: relative;
}
.full-screen {
  margin-top: 80px;
  overflow: hidden;
}
.full-screen li {
  width: 100%;
  height: auto;
}
.full-screen li img {
  width: 100%;
  filter: brightness(0.8);
}
@keyframes zoomOut {
  0% {
    transform: scale(1.15); /* 初期状態：拡大 */
  }
  100% {
    transform: scale(1); /* 終了状態：元のサイズ */
  }
}
.slick-slide.add-animation img {
  animation: zoomOut 15s ease forwards;
}
.top_kv--txt {
  width: 1200px;
  margin: 0 auto;
  position: absolute;
  z-index: 9999;
  color: #fff;
  top: 40%;
  left: 90px;
  transition: opacity 0.4s ease;
}
.top_kv--ttl01,
.top_kv--ttl02 {
  font-family: Archivo Black;
  font-weight: bold;
  font-size: 6.4rem;
  line-height: 125%;
}
.top_kv--subttl {
  font-size: 2.4rem;
  font-weight: bold;
}
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}
/* media queries */
@media (max-width: 767px) {
  .top_kv--txt {
    width: 90%;
    top: 30%;
    left: 20px;
  }
  .top_kv--ttl01,
  .top_kv--ttl02 {
    font-size: 4rem;
  }
  .top_kv--subttl {
    font-size: 1.6rem;
  }
  .sp_nav--btm{
	display: flex;
	width: 90%;
	margin: 20px auto 0;
  }
  .sp_nav--top.nav-ar::before {
	background: url(../img/foot-arrow.svg) no-repeat center bottom !important;
	content: "";
	width: 8px;
	height: 11px;
	top: 35px;
  }
  .current{
	color:#fff;
  }
  .current:after{
	content: none !important;
  }
}


.bdr_btm{
	border-top: 1px solid rgba(179, 179, 179, 1);
	margin-top: 100px;
}


/* 初期状態 */
.fadein {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* 表示状態 */
.fadein.show {
  opacity: 1;
  transform: translateY(0);
}
.nav-current {
	color: rgba(0, 155, 74, 1);
	position: relative;
}
.nav-current:after{
	content: "";
	border-bottom: 4px solid #009B4A;
	position: absolute;
	width: 140px;
	bottom: -43px;
	right: -44%;
}
.head_nav--list01 li:first-child.nav-current::after{
	right: -6%;
}
.head_nav--list01 li:nth-child(2).nav-current::after {
	right: -3%;
	width: 130px;
}
.head_nav--list01 li:nth-child(3).nav-current::after {
	right: -19%;
	width: 150px;
	bottom: -30px;
}
.head_nav--list01 li:nth-child(4).nav-current::after {
    bottom: -31px;
	right: -30%;
}

  .sp_nav {
	display: block; /* 初期は非表示 */
}


@media (max-width: 767px) {
  .nav-current{
	color:#fff;
  }
  .nav-current:after{
	content: none !important;
  }
  .sp_nav {
	display: none; /* 初期は非表示 */
}
.sp_nav.open {
	display: block; /* openがついたら表示 */
	}	
	.call_tel p:before{
	left: 70px;
	top: 34px;
	}
	h1 span{
		display: block;
	}
}



body.no-scroll {
  overflow: hidden;
}

.topbtn a:hover{
    background: #11CC00 !important;
}



@media (max-width: 390px) {
	.call_tel p:before{
		left: 50px;
	}
}
@media (max-width: 375px) {
	.call_tel p:before{
		left: 40px;
	}
}

@media (max-width: 320px) {
	.call_tel p:before{
		left: 20px;
	}
}


.en_ar--01:after{
    right: -50px !important;
    top: 16px !important;
}
.en_ar--02:after{
	right: -30px !important;
    top: 16px !important;
}
.en_ar--03:after{
    top: 13px !important;
    right: -35px !important;
}
.en_ar--04:after{
	top: 10px !important;
}
.en_ar--05:after{
	right: -20px !important;
	top: 12px !important;
}



@media (max-width: 767px) {
	.en_ar--01:after{
		right: -41px !important;
		top: 7px !important;
	}
	.en_ar--02:after{
		right: -30px !important;
	}
	.en_ar--03:after{
		right: -30px !important;
		top: 7px !important;
	}
	.sp_ar--01:after{
		top: 20px !important;
	}
}

.sub404{
    margin-top: 66px;
}
.sub404 p{
    margin-top: 143px;
}
.sub404 p a{
    color: rgba(0, 155, 74, 1);
    display: block;
    padding-left: 16px;
    position: relative;
    text-decoration: underline;
}

.sub404 p a:before {
    content: " ";
    display: inline-block;
    width: 8px;
    height: 11px;
    background: url(../img/philosophy/btm_arrow.svg) no-repeat center bottom;
    background-size: contain;
    vertical-align: baseline;
    z-index: 1;
    position: absolute;
    top: 10px;
    left: 0;
}