@charset "UTF-8";

/**
 * 汎用スタイルシート
**/



@media only screen and (max-width: 850px) {
	.pc_disp {
		display: none;
	}
}

.sp_none{
	display: block;
}

.pc_none{
	display: none;
}

span.pc_none.talk{
	display: none;
}

@media only screen and (max-width: 720px) {
	.sp_none{
		display: none;
	}
	
	.pc_none{
		display: block;
	}
	
	span.pc_none.talk{
		display: inline!important;
	}
	

}

/**
 * フォントファミリー
**/
.mincho {
    font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

.montserrat {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

/**
 * リンクテキスト
**/

.link_text a {
    text-decoration: underline;
}

.link_text a:hover {
    text-decoration: none;
}

/**
 * フォントウェイト
**/

.bold {
    font-weight: bold;
}


/**
 * テキストアライン
**/

.txt_right {
    text-align: right !important;
}

.txt_left {
    text-align: left !important;
}

.txt_center {
    text-align: center !important;
}

.txt_center img {
    margin-left: auto !important;
    margin-right: auto !important;
}

/**
 * テキストインデント
**/

.txt_indent {
    text-indent: 1em;
}




/**
 * フロート
**/

.fleft { float: left; }
.frright { float: right; }
.clear {
    clear: both;
}

.clearfix:after {
    content: ".";
    display: block;
    clear: both;
    height: 0;
    visibility: hidden;
}

.clearfix {
    min-height: 1px !important;
}

* html .clearfix {
    height: 1px !important;
}

.iblock { display: inline-block; }

ul {
    list-style: none;
}

#wrap {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 78px 0 0;
	overflow: hidden;
}
@media only screen and (max-width: 900px) {
	#wrap { padding: 105px 0 0; }
}

/*ヘッダー*/
#header {
	width: 100%;
	height: 78px;
	background: #fff;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100000;
	transition: all 0.6s 0s ease-in-out;
}

#header.scroll {}

#header .inner {
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	display: flex;
	justify-content: space-between;
}

#header img {
    width: 100%;
    height: auto;
    display: block;
}

#header .logo {
	width: 30%;
	max-width: 387px;
	margin: 0 0 0 33px;
	align-self: center;
	transition: all 0.3s 0s ease-in-out;
}

#header .inner .logo:hover {
    opacity: 0.6;
}

@media only screen and (max-width: 1200px) {
	#header .logo { margin: 0 0 0 15px; }
}

@media only screen and (max-width: 900px) {
	#header { height: 60px; }
	#header .inner { padding: 0 5px 0 0; }
	
    #header .logo {
    	width: 81%;
        max-width: 360px;
        transition: all 0.6s 0s ease-in-out;
    }

    .openbtn {
        width: 50px;
        height: 50px;
        color: #000;
        background-color: #000000;
        align-self: center;
        display: block;
        cursor: pointer;
        position: relative;
    }

    #header.scroll .inner .openbtn {
        top: 0px;
    }

    .openbtn.active {
    	background-color: #000;
    	
    }

    .openbtn span {
        display: inline-block;
        transition: all .4s;
        position: absolute;
        left: 10px;
        height: 3px;
        background: #fff;
        width: 30px;
    }

    .openbtn span:nth-of-type(1) {
        top: 12px;
    }

    .openbtn span:nth-of-type(2) {
        top: 23px;
    }

    .openbtn span:nth-of-type(3) {
        top: 35px;
    }

    .openbtn.active span:nth-of-type(1) {
        top: 23px;
        transform: rotate(-45deg);
        background-color: #fff;
    }

    .openbtn.active span:nth-of-type(2) {
        opacity: 0;
    }

    .openbtn.active span:nth-of-type(3) {
        top: 23px;
        transform: rotate(45deg);
        background-color: #fff;
    }

}

@media only screen and (max-width: 500px) {
	#header .logo {
    	width: 75%;
    }
}

/**
 * ナビゲーション
**/
#navi {
	width: max( calc(100% - 430px), calc( 70% - 43px ) );
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
@media only screen and (max-width: 1200px) {
	#navi { width: calc( 70% - 25px ); }
}
#navi ul {
	width: calc( 100% - 178px );
	margin: 0;
	padding:0;
	display: flex;
	justify-content: flex-end;
}

#navi ul li {
	width: fit-content;
	margin: 0;
	padding: 0 10px;
	text-align: center;
	position: relative;
	z-index: 0;
}

#navi ul li a {
	width: fit-content;
	height: 100%;
	margin: 0 0 0 0;
	padding: 6px 0.2em;
	color: #000;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.4em;
	text-decoration: none;
	box-sizing: border-box;
        display: flex;
        align-items: center;
        justify-content: center;
	position: relative;
}
@media only screen and (min-width: 1201px) {
	#navi ul li a .tablet { display: none; }
}
#navi ul li > a::after {
	content: "";
	width: 0;
	height: 3px;
	background: #03572F;
	transition: all 0.5s 0s;
	position: absolute;
	bottom: 0;
	left: 0;
}

#navi ul li > a.on::after {
    width: calc(100% - 17px);
}

#navi ul li > a:hover::after {
    width: 100%;
}
#navi ul li .subnavi {
	margin: 0;
	padding: 12px 0 0;
	transform: translateX(-50%);
	display: none;
	position: absolute;
	top: 100%;
	left: 50%;
}
#navi ul li .subnavi:before {
	content: "";
	margin: 0;
	padding: 0;
	border-bottom: solid 0px rgba(3,87,47,0.7);
	border-left: solid 10px rgba(255,255,255,0);
	border-right: solid 10px rgba(255,255,255,0);
	transition: all .7s;
	position: absolute;
	top: 2px;
	left: calc( 50% - 10px );
}
#navi ul li .subnavi.open:before { border-bottom-width: 10px; }
#navi ul li .subnavi a {
	width: 140px;
	margin: 0;
	padding: 0.8em 1.2em;
	color: #fff;
	font-weight: 500;
	text-align: left;
	line-height: 1.3;
	background-color: rgba(3,87,47,0.7);
	border-bottom: solid 1px rgba(255,255,255,0.7);
	transition: background .4s;
	box-sizing: border-box;
	display: block;
}
#navi ul li .subnavi.open a:hover { background-color: rgba(3,87,47,1); }


#navi .recruit {
	width: 178px;
	padding: 0 0 0 20px;
	font-size: 14px;
	font-weight: bold;
	line-height: 1.4;
	text-align: center;
	box-sizing: border-box;
	position: relative;
}

#navi .recruit::before {
	content: '';
	width: 100%;
	height: 200%;
	background-color: #00d200;
	transform-origin: left bottom;
	transform: skewX(-42deg);
	position: absolute;
	z-index: -1;
	left: 0;
	bottom: 0;
}

#navi .recruit a {
	padding: 6px 0;
        color: #fff;
        display: inline-block;
}

#navi .recruit a:hover{
    color: #000;
}

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

	#navi ul { width: calc( 100% - 120px ); }
	#navi ul li a { font-size: 13px; }
	#navi .recruit {
		width: 120px;
		
	}
	#navi .recruit::before { transform: skewX(-35deg); }
	#navi .recruit a {
		font-size: 13px;
		font-weight: 400;
	}
}

@media only screen and (max-width: 900px) {
	#navi {
		width: 100%;
		height: 100vh;
		padding: 11vw 0 0;
		background: rgb(0 210 0 / 85%);
		display: none;
		position: absolute;
		top: 60px;
		right: 0px;
		overflow: hidden;
		z-index: 10000;
	}

	#navi ul {
		width: 100%;
		margin: 0;
		padding: 0 0 0 0;
		display: block;
	}

	#navi ul li {
		width: 87%;
		max-width: 584px;
		margin: 0 auto 3vw;
		padding: 0 0 0 0;
	}
	
	#navi ul li a {
		width: 100%;
		margin: 0 0 0 0;
		padding: 0.8em 0.5em;
		color: #03572F;
		font-size: 18px;
		font-weight: 700;
		text-decoration: none;
		text-align: center;
		line-height: 1.4em;
		background-color: #FFFFFF;
		border: solid 2px #03572F;
		box-sizing: border-box;
		transform: skewX(-42deg);
		position: relative;
	}
	#navi ul li:not(.hassub) a:hover { color: #fff; }
	#navi ul li a::after {
		content: '';
		width: 0;
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
		z-index: -1;
	}
	#navi ul li.hassub a::after { content: none; }
	
	#navi ul li a > span { transform: skewX(42deg); }
	#navi ul li a .tablet { display: none; }

	#navi ul li a.top::before {
		display: none;
	}
	
	#navi ul li .subnavi {
		width: 100vw;
		padding: 0;
		display: none;
		position: relative;
		top: -2px;
	}
	#navi ul li .subnavi:before { content: none; }
	#navi ul li .subnavi a {
		width: 87%;
		max-width: 584px;
		height: 3.1em;
		margin: 0 auto -2px;
		color: #03572F;
		text-align: center;
		background-color: #c2f4c2;
		border-bottom: solid 2px #03572F;
		display: block;
		position: relative;
		top: -1px;
	}
	#navi ul li .subnavi a:first-child {
		margin-bottom: 0;
		top: 0;
	}
	#navi ul li .subnavi.open a:hover { background-color: unset; }
	#navi ul li .subnavi a > span { display: inline-block; }
    
	#navi .recruit {
		width: 87%;
		max-width: 584px;
		margin: 0 auto;
		padding: 0;
	}
	#navi .recruit::before { content: none; }
	#navi .recruit a {
		width: 100%;
		padding: 0.5em;
		color: #fff;
		font-size: 18px;
		font-weight: 700;
		line-height: 1.4em;
		background-color: #03572F;
		border: solid 2px #03572F;
		box-sizing: border-box;
		transform: skewX(-42deg);
		position: relative;
	}
	#navi .recruit a:hover { color: #fff; }
	#navi .recruit a::after {
		content: '';
		width: 0;
		height: 100%;
		background-color: rgba(255,255,255,0.2);
		transition: all .5s;
		position: absolute;
		top: 0;
		left: 0;
		z-index: -1;
	}
	#navi .recruit a:hover::after { width: 100%; }
	#navi .recruit a > span {
		transform: skewX(42deg);
		display: inline-block;
	}
}

a.btn_header_sp {
	display: none;
}
@media only screen and (max-width: 900px) {
	a.btn_header_sp {
		width: fit-content;
		margin: 0 0 2vw auto;
		padding: 0.5em 1.5em 0.5em 2em;
		color: #fff;
		font-weight: 700;
		position: absolute;
		top: 100%;
		right: 0;
		display: block;
	}
	a.btn_header_sp::before {
		content: '';
		width: 100%;
		height: 100%;
		background-color: #00d200;
		transform: skewX(-42deg);  
		position: absolute;
		z-index: -1;
		top: 0;
		left: 0;
	}
}


/* --------------- footer --------------- */

.l-footer {
  border-top: 1px solid #000;
  position: relative;
  z-index: 100;
}

.l-footer__inner {
	margin: 0 auto;
	padding: 50px 0 0 0;
	width: 90%;
	max-width: 1130px;
	text-align: left;
	display: flex;
	position: relative;
}

.l-footer__inner img {
	width: 100%;
	display: block;
}

.l-footer__pagetop {
	width: 62px;
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 1000;
	display: none;
}

.l-footer__pagetop a {
  transition: all 0.4s 0s;
}

.l-footer__pagetop a:hover {
  opacity: 0.6;
}

.l-footer__left-box {
  width: 30.2%;
  margin: 0 3vw 0 0;
}

.l-footer__right-box {
  width: 42.8%;
}

.l-footer__logo {
	width: 100%;
  max-width: 338px;
  margin: 0 0 4.5vw 0;
}

.l-footer__logo a {
  transition: all 0.4s 0s;
}

.l-footer__logo a:hover {
  opacity: 0.6;
}

.l-footer__info {
  padding: 0;
  width: 100%;
  text-align: left;
}

.l-footer__info-site {
  line-height: 1.6em;
  font-size: 15px;
  font-weight: bold;
  color: #000;
}

.l-footer__info-address {
  line-height: 1.6em;
  font-size: 15px;
  font-weight: normal;
  color: #3e3a39;
}

.l-footer__info-link {
  color: #cb1724;
  text-decoration: underline;
}

.l-footer__info-link:hover {
  color: #cb1724;
  text-decoration: none;
}


.l-footer__navigation-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.l-footer__navigation-list a {
  text-decoration: none;
}

.l-footer__navigation-list a:hover {
  text-decoration: underline;
}

.l-footer__navigation-list-item {
  padding: 0 0 10px 18px;
  width: 31%;
  line-height: 1.4em;
  font-size: 14px;
  font-weight: 400;
  position: relative;
  box-sizing: border-box;
}

.l-footer__navigation-list-item:nth-of-type(3n) {
  width: 35%;
}

.l-footer__navigation-list-item:nth-of-type(1) {
  padding: 0 0 20px 18px;
}

.l-footer__navigation-list-item:nth-of-type(2) {
	width: 34%;
  padding: 0 0 20px 18px;
}

.l-footer__navigation-list-item:nth-of-type(3) {
  padding: 0 0 20px 18px;
}

.l-footer__navigation-list-item::before {
  width: 11px;
  height: 13px;
  content: "";
  background: url("../img/footer_arrow.svg") no-repeat center center;
  background-size: 100% 100%;
  position: absolute;
  top: 5px;
  left: 0;
}

.l-footer__navigation-list-child01 {
  padding: 13px 0 0 0;
}

.l-footer__navigation-list-child02 {
  padding: 13px 0 0 0;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.l-footer__navigation-list-item-child {
  padding: 0 0 8px 1em;
  line-height: 1.4em;
  font-size: 11px;
  font-weight: normal;
  position: relative;
  box-sizing: border-box;
}

.l-footer__navigation-list-item-child::before {
  content: "-";
  position: absolute;
  top: 0;
  left: 0;
}

.l-footer__navigation-list-child02 .l-footer__navigation-list-item-child {
  width: 50%;
}

.l-footer_official-site {
  text-align: right;
}

.l-footer_official-site-link {
  text-decoration: none;
  line-height: 1.4em;
  font-size: 12px;
  font-weight: normal;
  color: #3e3a39;
  transition: all 0.4s 0s;
}

.l-footer_official-site-link::before {
  margin: 0 8px 0 0;
  width: 14px;
  height: 12px;
  content: "";
  background: url("../images/common/icon_blank_01.png") no-repeat center center;
  background-size: 100% 100%;
  display: inline-block;
  vertical-align: middle;
}

.l-footer_official-site-link:hover {
  opacity: 0.6;
}



.l-footer__copyright {
  width: 100%;
  color: #3e3a39;
  text-align: right;
  line-height: 1.4em;
  font-size: 12px;
  font-weight: 400;
  padding: 10px 0 0 0;
}

.c-link-btn01-container.pc_disp {
	background-color: #00D200;
	padding: 0.5em 1em;
	height: auto;
	max-height: 27px;
	font-size: 14px;
	position: relative; /* ← 必須 */
	overflow: hidden;   /* はみ出し防止 */
	display: inline-block;
}

.c-link-btn01-container.pc_disp a.c-link-btn02 {
	color: #fff;
	position: relative;
	z-index: 1; /* テキストが前に出るように */
	text-decoration: none;
}

/* 背景アニメーション */
.c-link-btn01-container.pc_disp::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 100%;
	background-color: #028c20; /* hover時の色（濃い緑にするとわかりやすい） */
	z-index: 0;
	transition: width 0.6s ease;
}

/* hoverで左から右へ */
.c-link-btn01-container.pc_disp:hover::after {
	width: 100%;
}

.footer_under{
	width: 90%;
	max-width: 1130px;
	margin: 0 auto 2vw;
	display: flex;
	align-items: flex-end;
}

.footer_link{
	width: 90%;
    max-width: 1130px;
    margin: 0 auto;
    padding: 0 5vw 0 0;
	text-align: right;
	font-size: 12px;
	font-weight: 400;
	display: flex;
    justify-content: flex-end;
}

.footer_link a.top_corporate{
	color: #03572F;
	position: relative;
	padding: 0 15px 0 0;
	margin: 0 25px 0 0;
}

.footer_link a.top_corporate:before{
	content: "";
	width: 20%;
	max-width: 11px;
	height: 10px;
	background-image: url(../img/footer_link.svg);
	background-size: 100%;
	position: absolute;
	top: 10px;
	right: 0;
}

.footer_link a.top_privacy{
	margin: 0 0 0 10px;
}

.copy{
	margin: 0;
    padding: 9px 0;
    text-align: center;
    color: #fff;
    font-size: 10px;
    font-weight: 400;
    background-color: #231815;
}

.in_trigger .in01 {
  transition: all 0.8s 0.0s ease-in-out;
  opacity: 0;
  transform: translate(0, 35px);
}

.in_trigger .in02 {
  transition: all 0.8s 0.3s ease-in-out;
  opacity: 0;
  transform: translate(0, 35px);
}

.in_trigger .in03 {
  transition: all 0.8s 0.6s ease-in-out;
  opacity: 0;
  transform: translate(0, 35px);
}

.in_trigger .in04 {
  transition: all 0.8s 0.9s ease-in-out;
  opacity: 0;
  transform: translate(0, 35px);
}

.in_trigger .in05 {
  transition: all 0.8s 1.2s ease-in-out;
  opacity: 0;
  transform: translate(0, 35px);
}

.in_trigger .in06 {
  transition: all 0.8s 1.5s ease-in-out;
  opacity: 0;
  transform: translate(0, 35px);
}

.in_trigger .in07 {
  transition: all 0.8s 1.8s ease-in-out;
  opacity: 0;
  transform: translate(0, 35px);
}

.in_trigger .in08 {
  transition: all 0.8s 2.1s ease-in-out;
  opacity: 0;
  transform: translate(0, 35px);
}

.in_trigger .in09 {
  transition: all 0.8s 2.4s ease-in-out;
  opacity: 0;
  transform: translate(0, 35px);
}

.in_trigger.scrollin .in01 {
  opacity: 1;
  transform: translate(0, 0);
}

.in_trigger.scrollin .in02 {
  opacity: 1;
  transform: translate(0, 0);
}

.in_trigger.scrollin .in03 {
  opacity: 1;
  transform: translate(0, 0);
}

.in_trigger.scrollin .in04 {
  opacity: 1;
  transform: translate(0, 0);
}

.in_trigger.scrollin .in05 {
  opacity: 1;
  transform: translate(0, 0);
}

.in_trigger.scrollin .in06 {
  opacity: 1;
  transform: translate(0, 0);
}

.in_trigger.scrollin .in07 {
  opacity: 1;
  transform: translate(0, 0);
}

.in_trigger.scrollin .in08 {
  opacity: 1;
  transform: translate(0, 0);
}

.in_trigger.scrollin .in09 {
  opacity: 1;
  transform: translate(0, 0);
}
.in_trigger.scrollin .slidein {
	opacity: 1;
  	transform: translateX(0);
}

@media only screen and (min-width: 768px) and (max-width: 1460px) {}

@media only screen and (max-width: 950px) {
	.l-footer__navigation-list-item{
		font-size: 13px;
	}
}

@media only screen and (max-width: 850px) {
  .l-footer {
    border-top: 1px solid #000;
    position: relative;
  }

	.l-footer__inner {
		max-width: 560px;
		padding: 9.89vw 0 1.8vw;
		text-align: left;
		display: flex;
		flex-direction: column;
		position: relative;
	}

  .l-footer__inner img {
    width: 100%;
    display: block;
  }

  .l-footer__pagetop {
    width: 62px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: none;
  }

  .l-footer__left-box {
    width: 100%;
  }

  .l-footer__right-box {
    width: 100%;
  }

  .l-footer__logo {
    width: 90%;
    max-width: 563px;
    margin: 0 auto 10px auto;
  }

  .l-footer__info {
  	margin: 0 0 2vw;
    padding: 0;
    width: 100%;
    text-align: center;
  }

  .l-footer__info-site {
    line-height: 1.6em;
    font-size: 14px;
    font-weight: bold;
    color: #000;
  }

  .l-footer__info-address {
    padding: 10px 0 0 0;
    line-height: 1.6em;
    font-size: min(4.08vw , 15px);
    font-weight: normal;
    color: #3e3a39;
  }

  .l-footer__info-link {
    color: #cb1724;
    text-decoration: underline;
  }

  .l-footer__info-link:hover {
    color: #cb1724;
    text-decoration: none;
  }


	.c-link-btn01-container.pc_disp { display: none; }

  .l-footer__copyright {
    width: 100%;
    color: #3e3a39;
    text-align: center;
    line-height: 1.4em;
    font-size: 12px;
    font-weight: 400;
    padding: 10px 0 0 0;
  }
  
  .footer_under{
  	display: block;
  	margin: 0 auto 6vw;
  }
  
  .footer_link{
  	justify-content: center;
  	padding: 0;
  }
  
  .footer_link a.top_corporate{
  	margin: 0 10px 0 0;
  }

}


/* --------------- ページ共通部分 --------------- */

/* ページタイトル */

.col_pagettl {
	width: 94%;
	max-width: 1060px;
	margin: 0 auto;
	padding: 0;
	position: relative;
	z-index: 0;
}
.col_pagettl::before {
	content: "";
	width: 50vw;
	height: 110%;
	margin: 0;
	padding: 0;
	background-color: #00d200;
	transform-origin: right top;
	transform: skewX(-45deg);
	position: absolute;
	top: 0;
	right: calc( 100% - 45px );
}
.col_pagettl .title {
	margin: 0;
	padding: 1.6em 0 1.2em;
	color: #00d200;
	font-size: 36px;
	font-weight: bold;
	text-align: left;
	line-height: 1.6;
}
.col_pagettl .title > span { color: #03572f; }

@media only screen and (max-width: 900px) {
	.col_pagettl::before {
		top: auto;
		right: calc( 100% - 100px );
		bottom: 50px;
	}
	.col_pagettl .title {
		padding: 1em 0;
		text-align: center;
	}
}


/* パンくずリスト */

.breadcramb {
	width: 94%;
	max-width: 1100px;
	margin: 0 auto 30px;
	padding: 0;
	font-size: 15px;
	font-weight: 500;
}
@media only screen and (max-width: 720px) {
	.breadcramb { display: none; }
}



/*エントリー*/

section.entry{
	width: 100%;
	margin: 0;
	padding: 3em 0 4.8em;
	background-color: #03572F;
}

.ttl_entry.montserrat{
	margin: 0 0 0.25em;
	color: #00D200;
	font-size: min(7vw , 80px);
	font-weight: 700;
	text-align: center;
	line-height: 1;
}

.ttl_entry.montserrat span.white{
	color: #FFFFFF;
}

.sub_ttl.entry{
	margin: 0 auto 2.5em;
	text-align: center;
	background-color: transparent;
}

.sub_ttl.entry span{
	color: #FFFFFF;
	font-size: 28px;
	font-weight: 700;
	display: inline-block;
}

.wrap_entry1{
	width: 80%;
	max-width: 1004px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
}

.btn_entry{
	width: calc((100% - 40px) / 3);
	margin: 0 20px 0 0;
	padding: 0;
	position: relative;
}

.btn_entry:last-of-type{
	margin: 0;
}

.btn_entry:before{
	content: "→";
	position: absolute;
	right: -4%;
	top: 72%;
	font-size: 18px;
	color: #FFFFFF;
	z-index: 1;
}

.btn_entry:after{
	content: "";
	display: inline-block;
	width: 0;
	height: 0;
	border-left: 49.5px solid transparent;
	border-right: 49.5px solid transparent;
	border-bottom: 49px solid #777;
	transform: skewX(-6deg);
	position: absolute;
	right: -51px;
	top: 54%;
	z-index: 0;
}

.btn_entry a{
	width: 100%;
	margin: 0;
	padding: 12px 0 35px;
	color: #03572F;
	font-size: 25px;
	font-weight: 700;
	text-align: center;
	display: inline-block;
	position: relative;
	z-index: 0;
}

.btn_entry a::before{
	content: "";
	width: 100%;
	height: 100%;
	background-color: #FFFFFF;
	transform: skewX(42deg);
	position: absolute;
	top: 0;
	right: 0;
	z-index: -1;
	transition: background-color 0.6s ease;
}

.btn_entry a::after {
	content: "";
	width: 0;
	height: 100%;
	background-color: #00D200;
	transform: skewX(42deg);
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1; /* ←文字の下・白の上に */
	transition: width 0.6s ease;
}

.btn_entry a:hover {
	color: #fff;
}

.btn_entry a:hover::after {
	width: 100%;
}

.en_ttl_entry1.montserrat{
	margin: 0 0 0 1.6vw;
	text-align: left;
	font-size: 14px;
	font-weight: 700;
	color: #00D200;
}

.btn_entry a span.small{
	font-size: 15px;
	line-height: 1;
}

.btn_entry a:hover .en_ttl_entry1.montserrat{
	color: #fff;
}

@media only screen and (max-width: 960px) {
	.wrap_entry1{
		display: block;
	}
	
	.btn_entry{
		width: 84%;
		max-width: 563px;
		margin: 0 auto 4vw;
	}
	
	.btn_entry:last-of-type{
		margin: 0 auto;
	}
	
	.btn_entry:before{
		right: -2%;
	}
	
	.sub_ttl.entry{
		margin: 0 auto 3vw;
		max-width: 100%;
	}

}

@media only screen and (max-width: 720px) {
	section.entry{
		padding: 10vw 0 6.7vw;
		overflow: hidden;
	}
	
	.sub_ttl.entry{
		margin: 0 auto 7vw;
	}
	
	.sub_ttl.entry span{
		font-size: min(4.44vw , 32px);
	}
	
	.wrap_entry1{
		width: 85%;
	}
	
	.btn_entry a::before{
		content: "";
		width: 100%;
		max-width: 657px;
		height: 22vw;
		background-image: url(../img/top/btn_bg2.svg);
		background-repeat: no-repeat;
		background-size: 100%;
		background-color: #ffffff00;
		transform: skewX(0deg);
	}

	
	h1.ttl_entry.montserrat{
		font-size: min(13.89vw , 100px);
	}
	
	.en_ttl_entry1.montserrat{
		font-size: min(3.5vw, 23px);
		margin: 0 0 2.2vw 10.6vw;
		line-height: 1;
	}
	
	.btn_entry{
		width: 100%;
		max-width: 585px;
	}
	
	.btn_entry a{
		padding: 4vw 0 9vw;
		font-size: min(5.83vw , 42px);
	}
	
	.btn_entry a span.small{
		font-size: min(3.61vw , 26px);
	}
	
	.btn_entry:before{
		display: none;
		right: -5%;
		top: 75%;
	}
	
	.btn_entry:after{
		display: none;
	}
	
	.btn_entry a::after{
		height: 22vw;
		background-color: #00D200;
		transform: skewX(45deg);
		transition: width 0.6s ease;
		position: absolute;
		top: 0;
		left: 13%;
		z-index: -1;
	}
	
	.btn_entry a:hover::after{
		display: none;
	}
}

@media only screen and (max-width: 600px) {
	.btn_entry:after{
		width: 34%;
		right: -17%;
	}
}

@media only screen and (max-width: 480px) {
	.btn_entry:after{
		width: 34%;
		right: -17.5%;
		bottom: -6.2vw;
	}
}

@media only screen and (max-width: 450px) {
	.btn_entry:after{
		bottom: -6.41vw;
	}
}

@media only screen and (max-width: 400px) {
	.btn_entry:after{
		width: 38%;
		right: -18%;
		bottom: -5.9vw;
	}
}

@media only screen and (max-width: 400px) {
	.btn_entry:before {
		right: -3%;
		top: 67%;
	}
}
@media only screen and (max-width: 390px) {
	 .btn_entry:after{
		width: 39%;
		right: -18%;
		bottom: -6vw;
	}
}

@media only screen and (max-width: 360px) {
	.btn_entry:after{
		width: 40%;
		right: -19%;
		bottom: -6.2vw;
	}
}



