@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@100;200;300;400;500;600;700;800;900&family=Noto+Sans+JP:wght@100;300;400;500;700;900&family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&display=swap');
@import url("https://fonts.googleapis.com/css?family=Oswald:300,400,500&display=swap");

/* 共通カラー */
/* メイン #4FB847 */
/* サブ1 #098100 */


/*** -----------------------------------------------------------------------------

reset

-----------------------------------------------------------------------------  ***/
.clearfix:after {
	content:".";
	display:block;
	visibility:hidden;
	clear:both;
	height:0.1px;
	font-size:0.1em;
	line-height:0;
}
.clearfix {
	display:inline-table;
	zoom:1;
}
/*Hides from IE-mac \*/
* html .clearfix {
	height:1%;
}
.clearfix {
	display:block;
}
/* End hide from IE-mac */

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, textarea, p, blockquote, th, td {
	margin:0px;
	padding:0px;
}
table {
	border-collapse:collapse;
	border-spacing:0;
}
fieldset, img {
	border:0;
}
address, caption, cite, code, dfn, em, th, var {
	font-style:normal;
	font-weight:300;
}
li {
	list-style:none;
}
caption, th {
	text-align:left;
}
h1, h2, h3, h4, h5, h6 {
	font-size:100%;
	font-weight:300;
}
q:before, q:after {
	content:'';
}
abbr, acronym {
	border:0;
	font-variant:normal;
}
sup {
	vertical-align:top;
}
sub {
	vertical-align:text-bottom;
}
input, textarea, select {
	font-family:inherit;
	font-size:inherit;
	font-weight:inherit;
}
input, textarea, select {
	*font-size:100%;
}
legend {
	color:#000000;
}
img {
	vertical-align:bottom;
	width: 100%;
}

/*** ------------------------------------------------------------------------------

common

-----------------------------------------------------------------------------  ***/
img {
	vertical-align:bottom;
	width: 100%;
}

html, body{
  font-size: 62.5%;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  line-height:1.8;
  color:#333;
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
}
/*** ------------------------------------------------------------------------------

リンク

-----------------------------------------------------------------------------  ***/
/* 基本 */
a{
	outline:none;
	color: #333;
}
a:link {
	text-decoration:none;
	transition: 0.3s;
}
a:link:hover{
	text-decoration:none;
}
a:visited {
}
a:hover {
	text-decoration:none;
}
a:active {
	text-decoration:none;
}


.pc{display: block;}
.sp{display: none;}
br.br{
	display: block;
}@media (max-width: 1550px){
br.br{
	display: none;
}
}
@media (max-width: 768px){
	.pc{display: none;}
	.sp{display: block;}
}

/*** ------------------------------------------------------------------------------

header

-----------------------------------------------------------------------------  ***/
header {
	width: calc(100% - 300px);
	background: #fff;
	position: relative;
	z-index: 100;
	padding: 10px 30px;
	box-sizing: border-box;
}
header .inner{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
header h1{
	display: flex;
	align-items: center;
}
header h1 img{
	width: 292px;
}
header h1 span{
	font-size: 2rem;
	font-weight: 400;
	margin: -8px 0 0 20px;
	display: block;
}
header #navi{
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
header #navi nav .menu{
	font-size: 1.6rem;
	font-weight: 400;
	display: flex;
}
header #navi nav .menu li{
	margin: 0 0 0 20px;
}
header #navi nav .menu li a{
	transition: .3s;
}
header #navi nav .menu li a:hover{
	color: #4FB847;
}
header #navi nav .menu li.contact-btn{
	display: none;
}
header #nav-toggle {
	display: none;
}
@media (max-width: 1450px){
	header{
	}
	header h1 img{
		width: 55%;
	}
	header h1 span{
		font-size: 1.2vw;
		margin: -8px 0 0 8px;
	}
	header #navi nav .menu{
		font-size: 1.1vw;
		word-break: keep-all;
	}
	header #navi nav .menu li{
		margin: 0 0 0 10px;
	}
}
@media (max-width: 1024px){
	header {
		width: 100%;
	}
	header #navi nav .menu{
		font-size: 1.2vw;
		padding-right: 15px;
	}
}
@media (max-width: 768px){
	header {
		padding: 10px;
	}
	header h1 img{
		width: 140px;
	}
	header h1 span{
		font-size: 1.2rem;
		margin: -5px 0 0 10px;
	}
	header nav {
		right: -100%;
		top: 0;
		background: none;
		width: 100%;
		height: 100vh;
		position: fixed;
		text-align: center;
		-webkit-transition: .5s ease-in-out;
		-moz-transition: .5s ease-in-out;
		transition: .5s ease-in-out;
		overflow-y: auto;
		background-color: rgba(255,255,255,.95);
		opacity: 0;
	}
	header #nav-toggle {
		position: fixed;
		right: 0;
		top: 0;
		width: 28px;
		height: 28px;
		cursor: pointer;
		z-index: 10000;
		padding: 10px;
		display: block;
		transition: .5s;
		background-color: rgba(255,255,255,.8);
	}
	header #nav-toggle div {
		position: relative;
	}
	header #nav-toggle span {
		display: block;
		position: absolute;
		height: 2px;
		width: 100%;
		background-color: #4FB847;
		left: 0;
		-webkit-transition: .35s ease-in-out;
		-moz-transition: .35s ease-in-out;
		transition: .35s ease-in-out;
	}
	header #nav-toggle span:nth-child(1) {
		top: 4px;
	}
	header #nav-toggle span:nth-child(2) {
		top: 14px;
	}
	header #nav-toggle span:nth-child(3) {
		top: 24px;
	}
	header .open #nav-toggle span:nth-child(1) {
		top: 11px;
		-webkit-transform: rotate(45deg);
		-moz-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	header .open #nav-toggle span:nth-child(2) {
		width: 0;
		left: 50%;
	}
	header .open #nav-toggle span:nth-child(3) {
		top: 11px;
		-webkit-transform: rotate(-45deg);
		-moz-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
	.open nav {
		-moz-transform: translateX(-100%);
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%);
		opacity: 1;
	}
	header #navi nav .menu{
		font-size: 14px;
		display: block;
		border-top: solid 1px rgba(0,0,0,.5);
		padding: 0;
		margin-top: 50px;
	}
	header #navi nav .menu li{
		margin: 0;
		border-bottom: solid 1px rgba(0,0,0,.5);
	}
	header #navi nav .menu li a{
		padding: 10px 0;
		display: block;
	}
	header #navi nav .menu li a:hover{
		color: #00c2ba;
	}
	header #navi nav .menu li.contact-btn{
		display: block;
		border: solid 2px #FA0045;
		margin: 10px 10px 0;
	}
	header #navi nav .menu li.contact-btn a{
		color: #FA0045;
	}
}

main{
	background-color: #F9F9F9;
}
.bg-w{
	background-color: #fff;
}
/*** ------------------------------------------------------------------------------

mv

-----------------------------------------------------------------------------  ***/
#mv{
	width: calc(100% - 300px);
	position: relative;
	background: url(../img/mv.webp?ver=220214) no-repeat top 50% center / cover;
	height: calc(100% - 88px);
	color: #fff;
	z-index: 10;
}

@media all and (-ms-high-contrast: none) {
#mv{
	background: url(../img/mv.jpg?ver=220214) no-repeat top 50% center / cover;
}
}
#mv .ribbon{
	position: absolute;
	top: 0;
	left: 0;
	background: url(../img/mv-ribbon.png) no-repeat top center / contain;
	padding: 80px 15px;
}
#mv .ribbon strong{
	transform: rotate(-39deg) translate(-10px,-34px);
	display: block;
	font-size: 2.4rem;
}
#mv .txt-box{
	position: absolute;
	top: 60px;
	left: 180px;
	font-size: 2rem;
	font-weight: 500;
	text-shadow: 0 3px 6px rgba(0,0,0,.25);
}
#mv .txt-box h2{
	font-size: 5.8rem;
	line-height: 1.4;
	margin-bottom: 10px;
	font-weight: 500;
}
#mv .txt-box h2 span{
	display: block;
	font-size: 2rem;
}
#mv .map{
	position: absolute;
	top: 30px;
	right: 30px;
	max-width: 386px;
}
#mv .map .balloon{
	position:absolute;
	top: 32px;
	left: 0;
	width: 180px;
	text-align:center;
	color:#333;
	font-size:1.2rem;
	font-weight: 500;
	line-height: 1.2;
	display: inline-block;
}
#mv .map .balloon strong{
	color: #DC0034;
	display: block;
	font-size:2rem;
}
#mv .availability{
	position:absolute;
	bottom: 0;
	left: 0;
}
#mv .availability .txt01{
	background:#fff;
	display: inline-block;
	font-size:1.4rem;
	font-weight: 500;
	line-height: 1.4;
	color: #FA0045;
	padding: 5px 10px;
	border-radius: 5px;
	position: relative;
	margin: 0 0 10px 20px;
}
#mv .availability .txt01:after{
	border: solid transparent;
	content:'';
	height:0;
	width:0;
	pointer-events:none;
	position:absolute;
	border-color: rgba(255, 255, 255, 0);
	border-top-width:10px;
	border-bottom-width:10px;
	border-left-width:5px;
	border-right-width:5px;
	margin-left: -10px;
	border-top-color:#fff;
	top:100%;
	left:30%;
}
#mv .availability .txt02{
	background-color: #fff;
	border: solid 1px #FA0045;
	font-size:1.6rem;
	font-weight: 500;
	line-height: 1.4;
	display: flex;
}
#mv .availability .txt02 span{
	padding: 5px 10px;
	background-color: #FA0045;
	color: #fff;
	display: block;
}
#mv .availability .txt02 strong{
	padding: 5px 10px;
	display: block;
	color: #000;
	font-size:1.8rem;
}
#mv .scroll{
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	width: 58px;
	text-align: center;
	animation: arrowmove 2s ease-in-out infinite;
}
#mv .scroll p{
	font-size: 1.6rem;
	font-weight: 500;
	text-shadow: 0 3px 6px rgba(0,0,0,.25);
}
#mv .scroll .arrow{
	width: 58px;
	height: 58px;
	border: solid 1px #fff;
	border-radius: 50px;
	position: relative;
}
#mv .scroll .arrow img{
	width: 8px;
	display: block;
	position:absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.scroll_top {
 width: 45px;
 height: 45px;
 padding: 5px;
 display: inline-block;
 position: fixed;
 z-index: 99;
 bottom: 30px;
 right: 300px;
}
.scroll_top img {
 object-fit: contain;
 width: 100%;
 height: 100%;
}
.scroll_top:hover {
 opacity: 0.5;
}
@keyframes arrowmove{
	0%{bottom:30px;}
	50%{bottom:50px;}
	100%{bottom:30px;}
}
@media (max-width: 1560px){
	#mv .ribbon{
		padding: 7.3% 2%;
	}
	#mv .ribbon strong{
		transform: rotate(-39deg) translate(-3%,-76%);
		font-size: 1.6vw;
	}
	#mv .txt-box{
		top: 6%;
		left: 14%;
		font-size: 1.4vw;
		z-index:1;
	}
	#mv .txt-box h2{
		font-size: 3.6vw;
	}
	#mv .txt-box h2 span{
		display: block;
		font-size: 1.4vw;
	}
	#mv .map{
		width: 40%;
		top: 20px;
		right: 10px;
	}
	#mv .map .balloon{
		top: 9%;
		width: 44%;
		/* font-size: 1.3vw; */
	}
	#mv .map .balloon strong{
		font-size:1.5vw;
	}
}
@media (max-width: 1450px){
	#mv{
		min-height: calc(100% - 9%);
	}
	#mv .availability .txt01{
		font-size:1.2rem;
	}
	#mv .availability .txt02{
		background-color: #fff;
		border: solid 1px #FA0045;
		font-size:1.6rem;
		font-weight: 500;
		line-height: 1.4;
		display: flex;
	}
	#mv .availability .txt02 span{
		padding: 5px 10px;
		background-color: #FA0045;
		color: #fff;
		display: block;
	}
	#mv .availability .txt02 strong{
		font-size:1.6rem;
	}
}
@media (max-width: 1024px){
	#mv {
		width: 100%;
	}
	#mv .ribbon{
		padding: 77px 16px;
	}
	#mv .ribbon strong{
		transform: rotate(-39deg) translate(-5px,-34px);
		font-size: 2rem;
	}
	#mv .txt-box{
		position: absolute;
		top: 110px;
		left: 110px;
		font-size: 1.6vw;
	}
	#mv .txt-box h2{
		font-size: 4.6vw;
	}
	#mv .txt-box h2 span{
		display: block;
		font-size: 1.8vw;
	}
	#mv .map{
		bottom: 20px;
		right: 20px;
		width: 320px;
	}
	#mv .map .balloon{
		top: 20px;
		font-size: 1.4rem;
		width: 145px;
		left: -3px;
	}
	#mv .map .balloon strong{
		font-size:2rem;
	}
	#mv .map .balloon:after{
		border-top-width:30px;
	}
	#mv .availability .txt01{
		font-size:1.2rem;
	}
	#mv .availability .txt02{
		font-size:1.4rem;
	}
	#mv .availability .txt02 strong{
		font-size:1.6rem;
	}
	#mv .scroll{
		position: absolute;
		bottom: 30px;
		left: 50%;
		transform: translateX(-50%);
		width: 58px;
		text-align: center;
		animation: arrowmove 2s ease-in-out infinite;
	}
	#mv .scroll p{
		font-size: 1.6rem;
		font-weight: 500;
		text-shadow: 0 3px 6px rgba(0,0,0,.25);
	}
	#mv .scroll .arrow{
		width: 58px;
		height: 58px;
		border: solid 1px #fff;
		border-radius: 50px;
		position: relative;
	}
	#mv .scroll .arrow img{
		width: 8px;
		display: block;
		position:absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
	}
 .scroll_top {
  right: 0;
 }
}
@media (max-width: 768px){
	#mv{
		min-height: calc(100% - 52px);
		background: url(../img/mv_sp.jpg?ver=220214) no-repeat top center / contain;
		height: 0;
		min-height: auto;
		padding-top: 143%;
	}
	#mv .ribbon{
		background: none;
		padding: 5px 0;
		text-align: center;
		width: 100%;
		/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#35952e+0,0ec800+50,35952e+100 */
		background: #35952e; /* Old browsers */
		background: -moz-linear-gradient(left,  #35952e 0%, #0ec800 50%, #35952e 100%); /* FF3.6-15 */
		background: -webkit-linear-gradient(left,  #35952e 0%,#0ec800 50%,#35952e 100%); /* Chrome10-25,Safari5.1-6 */
		background: linear-gradient(to right,  #35952e 0%,#0ec800 50%,#35952e 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#35952e', endColorstr='#35952e',GradientType=1 ); /* IE6-9 */
	}
	#mv .ribbon strong{
		transform: none;
		font-size: 1.7rem;
	}
	#mv .txt-box{
		top: 60px;
		left: 0;
		padding-right: 0;
		font-size: 2.8vw;
		width: 100%;
		text-align: center;
	}
	#mv .txt-box h2{
		font-size: 9vw;
	}
	#mv .txt-box h2 span{
		font-size: 4vw;
	}
	#mv .txt-box .txt{
		display: none;
	}
	#mv .map{
		top: 27%;
		right:0;
		width:60%;
		/* right: initial;
		left: 50%;
		transform: translateX(-50%);
		width: 80%; */
	}
	#mv .map .balloon{
		top: 32px;
		width: 46%;
		font-size: 2.6vw;
	}
	#mv .map .balloon strong{
		font-size:3.2vw;
		/*font-size:4.2vw;*/
	}
	#mv .map .balloon:after{
		border-top-width:30px;
	}
	#mv .availability{
		position: initial;
		bottom: initial;
		left: initial;
		margin-top: -42px;
		text-align: center;
	}
	#mv .availability .txt01{
		font-size:1.6rem;
		padding: 5px 10px;
		margin: 0 auto 10px;
	}
	#mv .availability .txt01:after {
		left: 58%;
		transform: translateX(-50%);
	}
	#mv .availability .txt02{
		font-size:1.5rem;
		display: block;
		width: 100%;
		box-sizing: border-box;
	}
	#mv .availability .txt02 span{
		display: block;
		padding: 5px 0;
		width: 100%;
	}
	#mv .availability .txt02 strong{
		font-size:1.8rem;
		display: block;
		padding: 5px 0;
		width: 100%;
	}
	#mv .scroll{
		display: none;
	}
}
@media (max-width: 600px){
	#mv .map .balloon{
		top: 4.5%;
		/*top: 6%;*/
	}
}

/*** ------------------------------------------------------------------------------

intro

-----------------------------------------------------------------------------  ***/
#intro{
	width: calc(100% - 300px);
	padding: 100px 0 0;
	box-sizing: border-box;
	position: relative;
}
#intro:before{
	content: '';
	width: 100%;
	height: 100%;
	transform: skew( 0deg, -36deg);
	background-color: #4FB847;
	position: absolute;
	top: 0;
}
#intro .inner{
	max-width: 1200px;
	width: 90%;
	margin: 0 auto;
}
#intro .inner .tit{
	font-size:1.4rem;
	font-weight: 500;
	line-height: 1.4;
	margin-bottom: 10px;
}
#intro .inner .tit span{
	color: #4FB847;
	position: relative;
}
#intro .inner .tit span:after{
	content: '／';
	margin: 0 1rem;
}
#intro .inner .midashi{
	font-size:3.8rem;
	font-weight: 500;
	line-height: 1.4;
}
#intro .about{
	background: url(../img/about-img01.jpg) no-repeat center right / 65%;
	padding: 100px 0;
	position: relative;
	z-index: 1;
}
#intro .about .txt{
	font-size:1.6rem;
	line-height: 1.6;
	margin-top: 20px;
}
#intro .trouble{
	padding: 100px 0;
	position: relative;
	z-index: 1;
	background: url(../img/trouble-img01.png) no-repeat bottom right 18% / 460px;
}
#intro .trouble .bolloon{
	box-sizing: border-box;
	background-color: #fff;
	margin-top: 20px;
	padding: 30px 30px 30px 60px;
	position: relative;
	width: 56%;
}
#intro .trouble .bolloon:after{
	content: '';
	width: 100%;
	height: 100%;
	background-color: #098100;
	position: absolute;
	bottom: -10px;
	right: -10px;
	z-index: -1;
}
#intro .trouble .bolloon:before{
	content: '';
	width: 60px;
	height: 60px;
	position: absolute;
	top: 60px;
	right: -60px;
	background: url(../img/trouble-balloon.png) no-repeat center / contain;
}
#intro .trouble .bolloon li{
	font-size:2rem;
	font-weight: 500;
	line-height: 1.4;
	margin-bottom: 15px;
	position: relative;
}
#intro .trouble .bolloon li:before{
	content: '';
	display: block;
	position: absolute;
	top: .5em;
	left: -1em;
	width: 10px;
	height: 5px;
	border-left: 2px solid #4FB847;
	border-bottom: 2px solid #4FB847;
	transform: rotate(-45deg);
}
#intro .solution{
	background-color: #F9F9F9;
	padding: 100px 0 0;
	position: relative;
	z-index: 1;
}
#intro .solution:before{
	content: '';
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 50px 45px 0 45px;
	border-color: #4FB847 transparent transparent transparent;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}
#intro .solution .midashi{
	max-width: 1200px;
	width: 90%;
	margin: 0 auto;
	text-align: center;
	color: #098100;
	font-size:4rem;
	font-weight: 500;
	line-height: 1.4;
	margin-bottom: 30px;
}
#intro .solution .midashi strong{
	background-color: #FA0045;
	color: #fff;
	font-size:4.6rem;
	display: inline-block;
	margin: 0 2px;
	padding: 8px 8px;
	line-height: 1;
	position: relative;
}
#intro .solution .midashi strong:after{
	content: '';
	width: 100%;
	height: 100%;
	background-color: #AF0030;
	position: absolute;
	bottom: -3px;
	right: -3px;
	z-index: -1;
}
#intro .solution .wrap{
	background: url(../img/solution-img.jpg) no-repeat center left / 50%;
	padding: 30px 0;
	position: relative;
	z-index: 1;
}
#intro .solution .wrap .inner .txt-box{
	width: 46%;
	margin-left: 54%;
}
#intro .solution .wrap .inner .txt-box .txt01{
	font-size:2.6rem;
	font-weight: 500;
	line-height: 1.6;
}
#intro .solution .wrap .inner .txt-box .list{
	background-color: #ecf7eb;
	box-sizing: border-box;
	width: 100%;
	padding: 20px;
	margin-top: 30px;
}
#intro .solution .wrap .inner .txt-box .list li{
	font-size:1.8rem;
	font-weight: 500;
	line-height: 1.4;
	margin: 0 0 20px 3.8rem;
	color: #4FB847;
	text-indent: -3.8rem;
	position: relative;
	z-index: 1;
}
#intro .solution .wrap .inner .txt-box .list li:last-child{
	margin-bottom: 0;
}
#intro .solution .wrap .inner .txt-box .list li span{
	display: inline-block;
	font-family: 'Oswald', sans-serif;
	color: #fff;
	background-color: #4FB847;
	font-size: 2rem;
	font-weight: 400;
	line-height: 1;
	padding: 5px;
	margin-right: 8px;
	text-indent: 0;
	position: relative;
}
#intro .solution .wrap .inner .txt-box .list li span:after{
	content: '';
	width: 100%;
	height: 100%;
	background-color: #098100;
	position: absolute;
	bottom: -3px;
	right: -3px;
	z-index: -1;
}
@media (max-width: 1450px){
#intro .inner .tit{
	font-size:1.1vw;
}
#intro .inner .midashi{
	font-size:2.6vw;
}
#intro .about .txt{
	font-size:1.1vw;
}
#intro .trouble{
	background: url(../img/trouble-img01.png) no-repeat bottom right 18% / 46%;
}
#intro .trouble .bolloon:before{
	width: 40px;
	height: 40px;
	top: 40px;
	right: -40px;
}
#intro .trouble .bolloon li{
	font-size:1.4vw;
}
#intro .solution .midashi{
	font-size:2.8vw;
}
#intro .solution .midashi strong{
	font-size:3vw;
}
#intro .solution .midashi strong:after{
	content: '';
	width: 100%;
	height: 100%;
	background-color: #098100;
	position: absolute;
	bottom: -3px;
	right: -3px;
	z-index: -1;
}
#intro .solution .wrap{
	padding: 30px 0;
	position: relative;
	z-index: 1;
}
#intro .solution .wrap .inner .txt-box{
	width: 46%;
	margin-left: 54%;
}
#intro .solution .wrap .inner .txt-box .txt01{
	font-size:1.7vw;
}
#intro .solution .wrap .inner .txt-box .list li{
	font-size:1.3vw;
}
#intro .solution .wrap .inner .txt-box .list li span{
	font-size:1.4vw;
}
}
@media (max-width: 1024px){
#intro{
	width: 100%;
	padding: 50px 0;
}
#intro .inner .tit{
	font-size:1.2vw;
}
#intro .inner .midashi{
	font-size:2.8vw;
}
#intro .about{
	padding: 50px 0;
}
#intro .about .txt{
	font-size:1.2vw;
}
#intro .trouble{
	padding: 50px 0;
	background: url(../img/trouble-img01.png) no-repeat bottom right 5% / 46%;
}
#intro .trouble .bolloon li{
	font-size:1.8vw;
}
}
@media (max-width: 768px){
#intro{
	padding: 0;
}
#intro:before{
	transform: skew( 0deg, -55deg);
	top: 94%;
	height: 1120px;
}
#intro .inner .tit{
	font-size:2.6vw;
}
#intro .inner .midashi{
	font-size:4.5vw;
}
#intro .about{
	background: url(../img/about-img01.jpg) no-repeat center bottom / contain;
	padding: 30px 0 65%;
}
#intro .about .txt{
	font-size:1.4rem;
}
#intro .trouble{
	background: url(../img/trouble-img01.png) no-repeat bottom right 5% / 46%;
	padding: 30px 0 51%;
}
#intro .trouble .bolloon{
	padding: 15px 15px 15px 30px;
	position: relative;
	width: 96%;
}
#intro .trouble .bolloon:after{
	content: '';
	width: 100%;
	height: 100%;
	background-color: #098100;
	position: absolute;
	bottom: -10px;
	right: -10px;
	z-index: -1;
}
#intro .trouble .bolloon:before{
	width: 20px;
	height: 20px;
	top: initial;
	bottom: -20px;
	right: 26%;
	transform: rotate(90deg);
}
#intro .trouble .bolloon li{
	font-size:1.6rem;
}
#intro .trouble .bolloon li:before{
	content: '';
	display: block;
	position: absolute;
	top: .5em;
	left: -20px;
	width: 10px;
	height: 5px;
	border-left: 2px solid #4FB847;
	border-bottom: 2px solid #4FB847;
	transform: rotate(-45deg);
}
#intro .solution{
	padding: 50px 0;
	position: relative;
	z-index: 1;
}
#intro .solution:before{
	border-width: 30px 20px 0 20px;
}
#intro .solution .midashi{
	font-size:7vw;
	margin-bottom: 20px;
}
#intro .solution .midashi strong{
	font-size:8vw;
	margin: 0 3px;
}
#intro .solution .midashi strong:after{
	bottom: -2px;
	right: -2px;
}
#intro .solution .wrap{
	background: url(../img/solution-img.jpg) no-repeat center bottom / contain;
	padding: 0 0 65%;
	position: relative;
	z-index: 1;
}
#intro .solution .wrap .inner .txt-box{
	width: 100%;
	margin: 0 0 5%;
}
#intro .solution .wrap .inner .txt-box .txt01{
	font-size:4.5vw;
}
#intro .solution .wrap .inner .txt-box .list{
	padding: 10px;
	margin-top: 20px;
}
#intro .solution .wrap .inner .txt-box .list li{
	font-size:1.6rem;
	margin: 0 0 10px 3.4rem;
	text-indent: -3.4rem;
}
#intro .solution .wrap .inner .txt-box .list li span{
	font-size:1.6rem;
}
#intro .solution .wrap .inner .txt-box .list li span:after{
	content: '';
	width: 100%;
	height: 100%;
	background-color: #098100;
	position: absolute;
	bottom: -3px;
	right: -3px;
	z-index: -1;
}
}
@media (max-width: 530px){
#intro:before{
	transform: skew( 0deg, -55deg);
	top: 0;
	height: 120%;
}
}

/*** ------------------------------------------------------------------------------

共通タイトル

-----------------------------------------------------------------------------  ***/
.tit-box{
	text-align: center;
	position: relative;
	margin-bottom: 60px;
}
.tit-box h3{
	font-size:3.8rem;
	font-weight: 500;
	line-height: 1.4;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(0,-50%);
	width: 100%;
	text-align: center;
}
.tit-box h3 span{
	font-size:1.8rem;
	font-weight: 500;
	line-height: 1.4;
	display: block;
	color: #4FB847;
}
.tit-box .line-txt{
	text-stroke: 1px rgba(79,184,71,15);
	-webkit-text-stroke: 1px rgba(79,184,71,.15);
	color: transparent;
	font-size:12rem;
	font-weight: 500;
	line-height: 1;
}
@media (max-width: 1024px){
.tit-box{
	margin-bottom: 50px;
}
.tit-box h3{
	font-size:3rem;
}
.tit-box h3 span{
	font-size:1.6rem;
}
.tit-box .line-txt{
	font-size:9rem;
}
}
@media (max-width: 768px){
.tit-box{
	margin-bottom: 30px;
}
.tit-box h3{
	font-size:2rem;
}
.tit-box h3 span{
	font-size:1.4rem;
}
.tit-box .line-txt{
	font-size:4.8rem;
}
}

/*** ------------------------------------------------------------------------------

features

-----------------------------------------------------------------------------  ***/
#features{
	width: calc(100% - 300px);
	padding: 80px 0 0;
	position: relative;
}
#features .tit-box h3 strong{
	color: #4FB847;
}
#features .inner li{
	margin: -20px 80px 60px 0;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	position: relative;
	flex-wrap: wrap;
	z-index: 1;
}
#features .inner li:nth-child(even){
	flex-flow: row-reverse;
	margin: -20px 0 60px 80px;
	padding-right: 30px;
}
#features .inner li:last-child{
	margin-bottom: 0;
}
#features .inner li .img{
	margin: 30px 0 0 2%;
	position: relative;
	width: 48%;
}
#features .inner li .img:after{
	content: '';
	width: 65%;
	height: 100%;
	background-color: #4FB847;
	position: absolute;
	top: -30px;
	left: -30px;
	z-index: -1;
}
#features .inner li:nth-child(even) .img:after{
	left: initial;
	right: -30px;
}
#features .inner li .txt-box{
	margin-top: 30px;
	width: 48%;
}
#features .inner li .txt-box .num{
	font-family: 'Oswald', sans-serif;
	color: #4FB847;
	font-size: 6rem;
	line-height: 1;
	font-weight: 300;
	position: relative;
	display: inline;
}
#features .inner li .txt-box .num:after{
	content: '／';
	font-size: 2.5rem;
	position: absolute;
	bottom: 0;
	right: -15px;
}
#features .inner li .txt-box .txt01{
	font-size: 2.6rem;
	line-height: 1.6;
	margin: 0 0 0 70px;
	color: #4FB847;
	font-weight: 400;
}
#features .inner li .txt-box .txt01 br.br{
	display: block;
}
#features .inner li .txt-box .txt02{
	font-size: 1.6rem;
	line-height: 2;
	margin: 20px 0 0 70px;
}
@media (max-width: 1550px){
#features .inner li .txt-box .txt01 br.br{
	display: block;
}
}
@media (max-width: 1350px){
#features .inner li .txt-box .txt01 br.br{
	display: none;
}
}
@media (max-width: 1024px){
#features{
	width: 100%;
	padding: 50px 0;
}
#features .inner li .txt-box .num{
	font-size: 6vw;
}
#features .inner li .txt-box .txt01{
	font-size: 2.8vw;
}
#features .inner li .txt-box .txt02{
	font-size: 1.6vw;
}
}
@media (max-width: 768px){
#features{
	padding: 50px 0 0;
}
#features .inner li{
	margin: 0;
	display: block;
}
#features .inner li:nth-child(even){
	margin: 0;
	padding-right: 0;
}
#features .inner li .img{
	margin: 40px auto 10px;
	position: relative;
	width: 90%;
}
#features .inner li .img:after{
	top: -10px;
	left: -10px;
}
#features .inner li:nth-child(even) .img:after{
	right: -10px;
}
#features .inner li .txt-box{
	margin: 0 auto 50px;
	width: 90%;
}
#features .inner li .txt-box .num{
	font-size: 4rem;
}
#features .inner li .txt-box .txt01{
	font-size: 1.8rem;
	margin: 10px 0 0 30px;
}
#features .inner li .txt-box .txt02{
	font-size: 1.4rem;
	margin: 10px 0 0 30px;
}
}

/*** ------------------------------------------------------------------------------

equipment

-----------------------------------------------------------------------------  ***/
#equipment{
	width: calc(100% - 300px);
	padding: 100px 0 0;
	position: relative;
}
#equipment:before{
	content: '';
	width: 100%;
	height: 155%;
	transform: skew( 0deg, -36deg);
	background-color: #fff;
	position: absolute;
	top: 27%;
}
#equipment .inner{
	max-width: 1200px;
	width: 90%;
	margin: -30px auto 0;
	position: relative;
	z-index: 1;
}
#equipment .inner .midashi{
	font-size: 1.8rem;
	line-height: 1.4;
	font-weight: 500;
	margin-bottom: 10px;
}
#equipment .inner .midashi span{
	color: #4FB847;
}
#equipment .inner .midashi .scroll{
	display: none;
}
#equipment .inner table{
	width: 100%;
}
#equipment .inner .outline{
	margin-bottom: 50px;
}
#equipment .inner .outline tr{
	background-color: #F1F1F1;
}
#equipment .inner .outline tr:nth-child(even){
	background-color: #fff;
}
#equipment .inner .outline th{
	font-size: 1.6rem;
	line-height: 1.4;
	font-weight: 500;
	padding: 15px;
	vertical-align: top;
}
#equipment .inner .outline td{
	font-size: 1.6rem;
	line-height: 1.4;
	padding: 15px;
}
#equipment .inner .map{
	margin-bottom: 50px;
}
#equipment .inner .map iframe{
	width: 100%;
	height: 600px;
}
#equipment .inner .area{
	margin-bottom: 50px;
}
#equipment .inner .area .midashi{
	position: relative;
}
#equipment .inner .area .midashi .tani {
 position: absolute;
 right: 0;
 bottom:0;
 color:#000;
 font-size: 1.4rem;
 font-weight: normal;
}
#equipment .inner .area .wrap{
	width: 100%;
	box-sizing: border-box;
}
#equipment .inner .area table{
	border-left: solid 1px #ccc;
	border-top: solid 1px #ccc;
}
#equipment .inner .area th{
	font-size: 1.6rem;
	line-height: 1.4;
	font-weight: 500;
	padding: 10px;
	vertical-align: top;
	background-color: #F1F1F1;
	border-right: solid 1px #ccc;
	border-bottom: solid 1px #ccc;
	box-sizing: border-box;
}
#equipment .inner .area .head th{
	text-align: center;
}
#equipment .inner .area td{
	font-size: 1.6rem;
	line-height: 1.4;
	padding: 10px;
	background-color: #fff;
	border-right: solid 1px #ccc;
	border-bottom: solid 1px #ccc;
	text-align: right;
	box-sizing: border-box;
}
#equipment .inner .area th.head{
	min-width: 60px;
}
#equipment .inner .area .area-c{
	background-color: #D0F0FB;
	font-weight: 500;
	text-align: center;
}
#equipment .inner .area .area-b{
	background-color: #FFE5E5;
	font-weight: 500;
	text-align: center;
}
#equipment .inner .area .area-a{
	background-color: #D6E9C8;
	font-weight: 500;
	text-align: center;
}
#equipment .inner .area .notes{
	font-size: 1.4rem;
	margin-top: 10px;
}
#equipment .inner .flatmap{
}
#equipment .inner .flatmap .box{
	margin-bottom: 50px;
}
#equipment .inner .flatmap .box:last-child{
	margin-bottom: 0;
}
#equipment .inner .flatmap .box .img{
	box-sizing: border-box;
	border: solid 1px #F1F1F1;
	padding: 30px 0;
	background-color: #fff;
}
#equipment .inner .flatmap .box .img img{
	width: 60%;
	margin: 0 auto;
	display: block;
}
#equipment .inner .flatmap .box:nth-of-type(1) .img img{
	width:55%;
}
#equipment .inner .flatmap .box:nth-of-type(2) .img img{
	width:67%;
}
@media (max-width: 1200px){
#equipment .inner .area th{
	font-size: 1.3rem;
}
#equipment .inner .area td{
	font-size: 1.3rem;
}
}
@media (max-width: 1024px){
#equipment{
	width: 100%;
	padding: 50px 0;
}
#equipment .inner{
	width: 90%;
	margin: 0 auto;
}
#equipment .inner .midashi{
	font-size: 1.6rem;
}
#equipment .inner .outline th{
	font-size: 1.4rem;
}
#equipment .inner .outline td{
	font-size: 1.4rem;
}
#equipment .inner .area .wrap{
	width: 100%;
	box-sizing: border-box;
	overflow-x: scroll;
}
#equipment .inner .area th{
	font-size: 1.4rem;
}
#equipment .inner .area td{
	font-size: 1.4rem;
}
}
@media (max-width: 768px){
#equipment{
	padding: 30px 0;
}
#equipment .inner .midashi{
	font-size: 1.4rem;
	position: relative;
}
#equipment .inner .outline{
	margin-bottom: 30px;
}
#equipment .inner .outline th{
	font-size: 1.4rem;
	display: block;
	width: 100%;
	padding: 10px 10px 0;
	box-sizing: border-box;
}
#equipment .inner .outline td{
	font-size: 1.2rem;
	display: block;
	width: 100%;
	padding: 10px;
	box-sizing: border-box;
}
#equipment .inner .map iframe{
	height: 400px;
}
#equipment .inner .area{
	margin-bottom: 30px;
}
#equipment .inner .area th{
	font-size: 1.2rem;
}
#equipment .inner .area td{
	font-size: 1.2rem;
}
#equipment .inner .area .notes{
	font-size: 1.2rem;
	margin-top: 10px;
}
#equipment .inner .flatmap .box{
	margin-bottom: 20px;
}
#equipment .inner .flatmap .box .img img{
	width: 80%;
	height:auto !important;
}
}
@media (max-width: 680px){
#equipment .inner .midashi .scroll{
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	color: #4FB847;
	font-weight: 500;
}
#equipment .inner .area .midashi .tani {
 right: 75px;
}
}

/*** ------------------------------------------------------------------------------

gallery

-----------------------------------------------------------------------------  ***/
#gallery{
	width: calc(100% - 300px);
	padding: 100px 0 50px;
	position: relative;
	background-color: #fff;
}
#gallery .slick-slide{
	margin: 0 15px;
}
#gallery .slick-dots li.slick-active button{
	background-color: #098100 !important;
}
#gallery .txt{
	font-size: 1.6rem;
	margin-top: 10px;
}
@media (max-width: 1024px){
#gallery{
	width: 100%;
	padding: 50px 0;
}
#gallery .slick-dots {
	bottom: -25px!important;
}
}
@media (max-width: 768px){
#gallery{
	padding: 30px 0 60px;
}
#gallery .slick-slide{
	margin: 0 10px;
}
#gallery .txt{
	font-size: 1.4rem;
	margin-top: 10px;
}
}

/*** ------------------------------------------------------------------------------

service

-----------------------------------------------------------------------------  ***/
#service{
	width: calc(100% - 300px);
	padding: 140px 0 0;
	position: relative;
	z-index: 10;
}
#service .inner{
	background-color: #F9F9F9;
}
#service .inner .tit-box{
	transform: translateY(-50%);
	margin-bottom: -10px;
}
#service .inner .copy{
  font-size: 1.6rem;
  line-height: 1.4;
  text-align: center;
}
#service .inner .list{
	max-width: 1200px;
	width: 90%;
	margin: 50px auto 0;
	padding-bottom: 50px;
	position: relative;
	z-index: 1;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
#service .inner .list li{
	width: 32%;
	margin-bottom: 30px;
}
#service .inner .list li .txt01{
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 500;
  padding: 15px 0 10px;
}
#service .inner .list li .txt02{
  font-size: 1.6rem;
  line-height: 1.8;
}
@media (max-width: 1024px){
#service{
	width: 100%;
	padding: 50px 0;
}
#service .inner .list li .txt01{
  font-size: 1.8rem;
}
#service .inner .list li .txt02{
  font-size: 1.4rem;
}
}
@media (max-width: 768px){
#service{
	padding: 30px 0 60px;
}
#service .inner .list{
	padding-bottom: 0;
}
#service .inner .list li{
	width: 49%;
	margin-bottom: 30px;
}
#service .inner .list li .txt01{
  font-size: 1.6rem;
}
#service .inner .list li .txt02{
  font-size: 1.4rem;
}
}
@media (max-width: 500px){
#service .inner .list li{
	width: 100%;
	margin-bottom: 30px;
}
}

/*** ------------------------------------------------------------------------------

case

-----------------------------------------------------------------------------  ***/
#case{
	width: calc(100% - 300px);
	padding: 100px 0 50px;
	position: relative;
	z-index: 1;
	background-color: #4FB847;
}
#case:before{
	content: '';
	width: 100%;
	height: 50%;
	transform: skew( 0deg, -36deg);
	background-color: #fff;
	position: absolute;
	top: -25%;
}
#case .copy{
  font-size: 1.8rem;
  line-height: 1.4;
  font-weight: 500;
  text-align: center;
  margin: -30px 0 30px;
	position: relative;
	z-index: 1;
}
#case .logo{
	margin-bottom: 60px;
	position: relative;
	z-index: 1;
}
#case .logo .slick-slide{
	margin: 0 15px;
}
#case .inner{
	max-width: 1200px;
	width: 90%;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}
#case .inner > li{
	margin-bottom: 50px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
#case .inner > li .img{
	width: 36%;
	position: relative;
}
#case .inner > li .img span{
	position: absolute;
	top: 0;
	left: 0;
	background-color: #FA0045;
	color: #fff;
	font-size: 1.2rem;
	line-height: 1;
	padding: 8px 10px;
	display: block;
}
#case .inner > li .txt-box{
	width: 61%;
}
#case .inner > li .txt-box .midashi{
	font-size: 2.2rem;
	line-height: 1.6;
	font-weight: 500;
	margin-bottom: 20px;
	color: #fff;
}
#case .inner > li:first-child .txt-box .midashi{
	color: #000;
}
#case .inner > li .txt-box .balloon{
	padding: 20px;
	background-color: #82CC7A;
	position: relative;
	color: #fff;
	margin-bottom: 20px;
}
#case .inner > li .txt-box .balloon:after {
	content: '';
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 25px 20px 0 20px;
	border-color: #82CC7A transparent transparent transparent;
	position: absolute;
	bottom: -25px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
}
#case .inner > li .txt-box .balloon .txt01{
	font-size: 1.8rem;
	line-height: 1.6;
	font-weight: 500;
	margin-bottom: 10px;
}
#case .inner > li .txt-box .balloon .txt01 span{
	display: inline-block;
	width: 26px;
	margin-right: 10px;
	vertical-align: middle;
}
#case .inner > li .txt-box .balloon li{
	font-size: 1.6rem;
	line-height: 1.6;
	margin-left: 1.6rem;
	text-indent: -1.6rem;
}
#case .inner > li .txt-box .proposing{
	padding: 20px;
	background-color: #fff;
	position: relative;
}
#case .inner > li .txt-box .proposing .txt01{
	font-size: 1.8rem;
	line-height: 1.6;
	font-weight: 500;
	margin-bottom: 10px;
}
#case .inner > li .txt-box .proposing .txt01 span{
	display: inline-block;
	width: 26px;
	margin-right: 10px;
	vertical-align: middle;
}
#case .inner > li .txt-box .proposing .list1 li{
	font-size: 1.6rem;
	line-height: 1.6;
	margin-left: 1.6rem;
	text-indent: -1.6rem;
}
#case .inner > li .txt-box .proposing .efficacy{
	border: solid 1px #4FB847;
	margin-top: 15px;
}
#case .inner > li .txt-box .proposing .efficacy .tit{
	background-color: #4FB847;
	color: #fff;
	font-size: 1.6rem;
	line-height: 1.2;
	font-weight: 500;
	padding: 5px 10px;
}
#case .inner > li .txt-box .proposing .list2{
	padding: 10px;
}
#case .inner > li .txt-box .proposing .list2 li{
	font-size: 1.6rem;
	line-height: 1.6;
	margin-left: 1.6rem;
	text-indent: -1.6rem;
	color: #0D9103;
}
@media (max-width: 1450px){
#case .inner > li .img{
	width: 42%;
}
#case .inner > li .txt-box{
	width: 56%;
}
#case .inner > li .txt-box .midashi{
	font-size: 1.4vw;
}
#case .inner > li .txt-box .balloon .txt01{
	font-size: 1.3vw;
}
#case .inner > li .txt-box .balloon .txt01 span{
	width: 20px;
}
#case .inner > li .txt-box .balloon li{
	font-size: 1.3vw;
}
#case .inner > li .txt-box .proposing .txt01{
	font-size: 1.3vw;
}
#case .inner > li .txt-box .proposing .txt01 span{
	width: 20px;
}
#case .inner > li .txt-box .proposing .list1 li{
	font-size: 1.3vw;
}
#case .inner > li .txt-box .proposing .efficacy .tit{
	font-size: 1.3vw;
}
#case .inner > li .txt-box .proposing .list2 li{
	font-size: 1.3vw;
}
}
@media (max-width: 1024px){
#case{
	width: 100%;
	padding: 50px 0;
}
#case .inner > li .txt-box .midashi{
	font-size: 1.8vw;
}
#case .inner > li .txt-box .balloon .txt01{
	font-size: 1.5vw;
}
#case .inner > li .txt-box .balloon .txt01 span{
	width: 20px;
}
#case .inner > li .txt-box .balloon li{
	font-size: 1.5vw;
}
#case .inner > li .txt-box .proposing .txt01{
	font-size: 1.5vw;
}
#case .inner > li .txt-box .proposing .txt01 span{
	width: 20px;
}
#case .inner > li .txt-box .proposing .list1 li{
	font-size: 1.5vw;
}
#case .inner > li .txt-box .proposing .efficacy .tit{
	font-size: 1.5vw;
}
#case .inner > li .txt-box .proposing .list2 li{
	font-size: 1.5vw;
}
}
@media (max-width: 768px){
#case{
	padding: 30px 0 20px;
}
#case:before{
	height: 32%;
}
#case .copy{
  font-size: 1.4rem;
  margin: -10px 0 20px;
}
#case .logo{
	margin-bottom: 40px;
}
#case .logo .slick-slide{
	margin: 0 10px;
}
#case .inner > li{
	margin-bottom: 40px;
	display: block;
}
#case .inner > li .img{
	width: 100%;
	margin-bottom: 20px;
}
#case .inner > li .txt-box{
	width: 100%;
}
#case .inner > li .txt-box .midashi{
	font-size: 1.7rem;
}
#case .inner > li:first-child .txt-box .midashi{
	color: #fff;
}
#case .inner > li .txt-box .balloon{
	padding: 10px;
}
#case .inner > li .txt-box .balloon .txt01{
	font-size: 1.5rem;
}
#case .inner > li .txt-box .balloon .txt01 span{
	width: 20px;
}
#case .inner > li .txt-box .balloon li{
	font-size: 1.4rem;
	margin-left: 1.4rem;
	text-indent: -1.4rem;
}
#case .inner > li .txt-box .proposing{
	padding: 20px;
	background-color: #fff;
	position: relative;
}
#case .inner > li .txt-box .proposing .txt01{
	font-size: 1.5rem;
}
#case .inner > li .txt-box .proposing .txt01 span{
	width: 20px;
}
#case .inner > li .txt-box .proposing .list1 li{
	font-size: 1.4rem;
	margin-left: 1.4rem;
	text-indent: -1.4rem;
}
#case .inner > li .txt-box .proposing .efficacy .tit{
	font-size: 1.4rem;
}
#case .inner > li .txt-box .proposing .list2{
	padding: 10px;
}
#case .inner > li .txt-box .proposing .list2 li{
	font-size: 1.4rem;
	margin-left: 1.4rem;
	text-indent: -1.4rem;
}
}

/*** ------------------------------------------------------------------------------

faq

-----------------------------------------------------------------------------  ***/
#faq{
	width: calc(100% - 300px);
	padding: 100px 0 0;
	position: relative;
	z-index: 1;
}
#faq .inner{
	max-width: 900px;
	width: 90%;
	margin: 0 auto;
}
#faq .inner dl{
  margin-bottom: 10px;
}
#faq .inner dt{
  background-color: #fff;
  padding: 20px;
  font-size: 1.8rem;
  line-height: 1.4;
  font-weight: 500;
  cursor: pointer;
  position: relative;
}
#faq .inner dt span{
	color: #4FB847;
	margin-right: .5rem;
}
#faq .inner dt:after{
	content: '\02228';
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%) scale(1,.7);
	transition: .5s;
	color: #4FB847;
}
#faq .inner dt.open:after {
  -webkit-transform: rotate(180deg) scale(1,.7);
  transform: rotate(180deg) scale(1,.7);
  top: 25%;
}
#faq .inner dd{
  display: none;
  background-color: #fff;
  padding: 10px 20px 20px;
  margin-top: 2px;
}
#faq .inner dd p{
  font-size: 1.6rem;
  line-height: 1.8;
  text-indent: -2rem;
  margin-left: 2rem;
}
#faq .inner dd p span{
	color: #FA0045;
	margin-right: .5rem;
}
@media (max-width: 1024px){
#faq{
	width: 100%;
	padding: 50px 0;
}
#faq .inner dt{
  padding: 15px 3rem 15px 15px;
  font-size: 1.6rem;
}
#faq .inner dt p{
  text-indent: -2.3rem;
  margin-left: 2.3rem;
}
#faq .inner dt.open:after {
  top: 30%;
}
#faq .inner dd{
  display: none;
  background-color: #fff;
  padding: 10px 15px 15px;
  margin-top: 1px;
}
#faq .inner dd p{
  font-size: 1.4rem;
  text-indent: -1.4rem;
  margin-left: 1.4rem;
}
}

/*** ------------------------------------------------------------------------------

message

-----------------------------------------------------------------------------  ***/
#message{
	width: calc(100% - 300px);
	padding: 100px 0 0;
	background-color: #F9F9F9;
	position: relative;
	z-index: 1;
}
#message .inner{
	max-width: 1200px;
	width: 90%;
	margin: 0 auto;
	position: relative;
	z-index: 1;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
#message .inner .img{
	width: 36%;
}
#message .inner .txt-box{
	width: 61%;
}
#message .inner .txt-box .midashi{
	font-size: 2.2rem;
	line-height: 1.6;
	font-weight: 500;
	margin-bottom: 20px;
	color: #fff;
}
#message .inner .txt-box .txt01{
	font-size: 2.4rem;
	font-weight: 500;
	line-height: 1.4;
	margin-bottom: 20px;
}
#message .inner .txt-box .txt02{
	font-size: 1.6rem;
	line-height: 1.8;
}
@media (max-width: 1024px){
#message{
	width: 100%;
	padding: 50px 0;
}
#message .inner .txt-box .txt01{
	font-size: 2.4vw;
}
#message .inner .txt-box .txt02{
	font-size: 1.6vw;
}
}
@media (max-width: 768px){
#message{
	padding: 0 0 20px;
	margin: -1px 0;
}
#message .inner{
	margin: 0 auto;
	display: block;
}
#message .inner .img{
	margin: 0 auto 30px;
	position: relative;
	width: 100%;
}
#message .inner .txt-box{
	margin: 0 auto;
	width: 100%;
}
#message .inner .txt-box .txt01{
	font-size: 1.8rem;
	margin-bottom: 20px;
}
#message .inner .txt-box .txt02{
	font-size: 1.4rem;
}
}

/*** ------------------------------------------------------------------------------

about

-----------------------------------------------------------------------------  ***/
#about{
	width: calc(100% - 300px);
	padding: 100px 0 0;
	position: relative;
	z-index: 1;
	background-color: #F9F9F9;
}
#about:before{
	content: '';
	width: 100%;
	height: 155%;
	transform: skew( 0deg, -36deg);
	background-color: #fff;
	position: absolute;
	top: 65%;
}
#about .inner{
	margin: -40px 80px 0 0;
	display: flex;
	justify-content: space-between;
	flex-flow: row-reverse;
	align-items: flex-start;
	position: relative;
	flex-wrap: wrap;
	z-index: 1;
}
#about .inner .img{
	margin: 30px 0 0 2%;
	position: relative;
	width: 48%;
}
#about .inner .img:after{
	content: '';
	width: 45%;
	height: 100%;
	background-color: #4FB847;
	position: absolute;
	top: -40px;
	left: -30px;
	z-index: -1;
}
#about .inner .txt-box{
	margin-top: 30px;
	width: 48%;
}
#about .inner .txt-box .txt01{
	font-size: 1.6rem;
	line-height: 1.8;
}
@media (max-width: 1024px){
#about{
	width: 100%;
	padding: 50px 0;
}
#about .inner{
	margin: -40px 20px 0 0;
}
#about .inner .txt-box .txt01{
	font-size: 1.6vw;
}
}
@media (max-width: 768px){
#about{
	padding: 30px 0;
}
#about .inner{
	margin: 0;
	display: block;
}
#about:before{
	height: 110%;
	top: 67%;
}
#about .inner .img{
	margin: 30px auto 0;
	position: relative;
	width: 90%;
}
#about .inner .img:after{
	top: -20px;
	left: -10px;
}
#about .inner .txt-box{
	margin: 0 auto 50px;
	width: 90%;
}
#about .inner .txt-box .txt01{
	font-size: 1.4rem;
}
}

/*** ------------------------------------------------------------------------------

contact-banner

-----------------------------------------------------------------------------  ***/
.contact-banner{
	width: calc(100% - 300px);
	padding: 80px 0 0;
	position: relative;
	z-index: 1;
}
.contact-banner:after{
	content: '';
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 20px 40px 20px 0;
	border-color: transparent #FA0045 transparent transparent;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
	z-index: 10000;
	opacity: 0;
	transition: .3s;
}
.contact-banner.act:after{
	opacity: 1;
}
.contact-banner .inner{
	background-color: #4FB847;
	justify-content: space-between;
	max-width: 790px;
	width: 90%;
	margin: 0 auto;
	box-sizing: border-box;
	padding: 30px;
	position: relative;
	color: #fff;
}
.contact-banner .inner.pc{
	display: flex;
}
.contact-banner .inner.sp{
	display: none;
}
.contact-banner .inner:after{
	content: '';
	width: 100%;
	height: 100%;
	background-color: #098100;
	position: absolute;
	bottom: -10px;
	right: -10px;
	z-index: -1;
}
.contact-banner .txt01{
	position: absolute;
	top: 0;
	left: 30px;
	transform: translateY(-50%);
	background-color: #FA0045;
	font-size:1.8rem;
	font-weight: 500;
	line-height: 1.4;
	padding: 5px 10px;
}
.contact-banner .txt02{
	font-size:2.8rem;
	font-weight: 500;
	line-height: 1.4;
	margin-bottom: 10px;
}
.contact-banner .txt02 br{
	display: none;
}
.contact-banner .txt03{
	font-size:1.6rem;
	line-height: 1.6;
}
.contact-banner .inner .img{
	width: 186px;
	position: absolute;
	bottom: -10px;
	right: 10px;
}
@media (max-width: 1150px){
.contact-banner .txt02{
	font-size:2.4rem;
}
.contact-banner .txt03{
	font-size:1.4rem;
}
}
@media (max-width: 1024px){
.contact-banner{
	width: 100%;
	padding: 50px 0;
}
.contact-banner .inner:before{
	content: '\02228';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	text-align: center;
	transform: scale(1,.7);
	font-size: 3rem;
}
.contact-banner .inner.pc{
	display: none;
}
.contact-banner .inner.sp{
	display: block;
	width: 90%;
	padding: 20px 20px 100px;
}
.contact-banner .inner.sp a{
	color: #fff;
}
.contact-banner:after{
	display: none;
}
.contact-banner .txt02{
	font-size:2.4rem;
}
.contact-banner .txt03{
	font-size:1.4rem;
}
}
@media (max-width: 768px){
.contact-banner{
	padding: 30px 0;
}
.contact-banner .inner:after{
	bottom: -5px;
	right: -5px;
	z-index: -1;
}
.contact-banner .inner:before{
	font-size: 2rem;
}
.contact-banner .txt01{
	left: 20px;
	font-size:1.4rem;
}
.contact-banner .txt02{
	font-size:2rem;
}
.contact-banner .txt03{
	font-size:1.4rem;
}
.contact-banner .inner .img{
	width: 130px;
	position: absolute;
	bottom: -5px;
	right: 10px;
}
}
@media (max-width: 600px){
.contact-banner .inner.sp{
	padding: 20px 20px 30px;
}
.contact-banner .inner .img{
	bottom: initial;
	width: 100px;
	top: -40px;
}
.contact-banner .txt02 br{
	display: block;
}
}

/*** ------------------------------------------------------------------------------

company

-----------------------------------------------------------------------------  ***/
#company{
	width: calc(100% - 300px);
	padding: 100px 0;
	background-color: #4FB847;
	position: relative;
	z-index: 5;
}
#company h3{
	color: #fff;
}
#company .tit-box h3 span{
	color: #fff;
}
#company .tit-box .line-txt{
	text-stroke: 1px rgba(255,255,255,.15);
	-webkit-text-stroke: 1px rgba(255,255,255,.15);
}
#company table{
	max-width: 960px;
	width: 90%;
	margin: 0 auto;
	color: #fff;
}
#company table th{
	font-size:1.6rem;
	font-weight: 500;
	line-height: 1.6;
	padding: 15px 0;
	border-bottom: solid 1px #fff;
	vertical-align: top;
}
#company table td{
	font-size:1.6rem;
	line-height: 1.6;
	padding: 15px 0;
	border-bottom: solid 1px #fff;
}
#company table td a{
	color: #fff;
}
#company table td a:hover{
	text-decoration: underline;
}
@media (max-width: 1024px){
#company{
	width: 100%;
	padding: 50px 0;
}
}
@media (max-width: 768px){
#company{
	width: 100%;
	padding: 30px 0;
	margin-top: 0;
}
#company table th{
	font-size:1.4rem;
	border-bottom: none;
	width: 100%;
	display: block;
	padding: 15px 0 5px;
}
#company table td{
	font-size:1.4rem;
	width: 100%;
	display: block;
	padding: 0 0 15px;
}
}

/*** ------------------------------------------------------------------------------

footer

-----------------------------------------------------------------------------  ***/
footer{
	width: calc(100% - 300px);
}
footer .ft-menu ul{
	background-color: #F9F9F9;
	text-align: center;
	font-size:1.3rem;
	padding: 20px 0;
	display: flex;
	justify-content: center;
}
footer .ft-menu ul li{
	padding: 0 15px;
	border-right: solid 1px #000;
}
footer .ft-menu ul li a{
	transition: .3s;
}
footer .ft-menu ul li a:hover{
	opacity: .7;
}
footer .ft-menu ul li:last-child{
	border: none;
}
footer address{
	background-color: #FFFFFF;
	text-align: center;
	font-size:1.2rem;
	padding: 15px 0;
}
@media (max-width: 1024px){
footer{
	width: 100%;
}
}
@media (max-width: 768px){
footer{
	width: 100%;
}
footer .ft-menu ul{
	font-size:1.2rem;
	display: block;
	padding: 0;
}
footer .ft-menu ul li{
	padding: 10px 0;
	border-right: none;
	border-bottom: solid 1px #ccc;
}
footer address{
	font-size:1rem;
}
}

/*** ------------------------------------------------------------------------------

contact

-----------------------------------------------------------------------------  ***/
@media (min-width: 1025px){
#contact{
	width: 300px;
	height: 100%;
	position: fixed;
	top: 0;
	right: 0;
	background-color: #fff;
	box-sizing: border-box;
	box-shadow: 0 8px 20px rgba(0,0,0,.25);
	z-index: 100;
	transition: .3s;
}
#contact.act1,
#contact.act2,
#contact.act3{
	background-color: #FA0045;
}
#contact .form{
	width: 280px;
	padding: 20px;
	box-sizing: border-box;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	background-color: #fff
}
#contact .form .txt-box{
	text-align: center;
	margin-bottom: 15px;
}
#contact .form .txt-box .midashi{
	color: #FA0045;
	font-size:2rem;
	font-weight: 500;
	line-height: 1.4;
	margin-bottom: 5px;
}
#contact .form .txt-box .midashi span{
	background-color: #FA0045;
	display: block;
	width: 50px;
	height: 50px;
	padding: 10px;
	border-radius: 50px;
	margin: 0 auto 5px;
	border: solid 2px #FA0045;
	box-sizing: border-box;
}
#contact .form .txt-box .txt01{
	font-size: 1.2rem;
	line-height: 1.6;
	margin-bottom: 10px;
}
#contact .form .txt-box .tel{
	font-size:2.4rem;
	font-weight: 500;
	line-height: 1.4;
}
#contact .form .txt-box .tel span{
	width: 20px;
	height: 20px;
	margin: -5px 6px 0 -10px;
	display: inline-block;
	vertical-align: top;
}
#contact .form table{
	width: 100%;
}
#contact .form table th{
	font-size:1.2rem;
	font-weight: 500;
	line-height: 1.4;
	word-break: keep-all;
	padding: 5px 0 10px 0;
	vertical-align: top;
 width: 40px;
}
#contact .form table tr:first-child th{
 padding-top: 0;
}
#contact .form table td{
	font-size:1.2rem;
	font-weight: 500;
	line-height: 1.4;
	word-break: keep-all;
	padding: 0 0 10px 10px;
}
#contact .form table td .radio{
	display: flex;
	flex-wrap: wrap;
}
#contact .form table td .radio li{
	width: 40%;
	margin-bottom: 5px;
}
#contact .form table td .radio li:nth-child(odd){
	width: 58%;
}
#contact .form .textarea .th{
	font-size:1.2rem;
	font-weight: 500;
	line-height: 1.4;
	padding-bottom: 5px;
}
#contact .form .textarea .th,
#contact .form .textarea .td{
	display: block;
	width: 100%;
}
#contact .textarea .td textarea{
	max-width: 500px;
}
#contact .privacy{
	text-align: center;
	font-size:1.2rem;
	line-height: 1.4;
	margin: 2px 0 10px;
}
#contact .privacy a{
	text-decoration: underline;
	font-weight: 500;
}
#contact .privacy a:hover{
	text-decoration: none;
}
#contact .form .btn input[type="submit"],
#contact .form .btn input[type="button"] {
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  display: block;
  width: 140px;
  background: #FA0045;
  color: #ffffff;
  font-size: 1.4rem;
  margin: 0 auto;
  cursor: pointer;
  box-sizing: border-box;
  padding: 10px 0;
  border: solid 1px #FA0045;
  transition: .3s;
}
#contact .form .btn input[type="submit"]:hover,
#contact .form .btn input[type="button"]:hover {
  background-color: #fff;
  color: #FA0045;
}
}
@media all and (-ms-high-contrast: none) {
#contact .form table td .radio li:nth-child(odd){
	width: 35%;
}
}
@media (max-width: 1024px){
	#contact{
		width: 100%;
		padding: 50px 0;
		position: relative;
		height: auto;
		top: initial;
		right: initial;
		box-shadow: none;
		background-color: #F9F9F9;
		z-index: 1;
	}
	#contact .form{
		max-width: 760px;
		width: 90%;
		margin: 0 auto;
		position: initial;
		top: initial;
		left: initial;
		transform: none;
	}
	#contact .form .txt-box{
		text-align: center;
		margin-bottom: 20px;
	}
	#contact .form .txt-box .midashi{
		color: #FA0045;
		font-size:2rem;
		font-weight: 500;
		line-height: 1.4;
		margin-bottom: 10px;
	}
	#contact .form .txt-box .midashi span{
		background-color: #FA0045;
		display: block;
		width: 50px;
		height: 50px;
		padding: 10px;
		border-radius: 50px;
		margin: 0 auto 10px;
		box-sizing: border-box;
	}
	#contact .form .txt-box .txt01{
		font-size: 1.4rem;
		line-height: 1.6;
		margin-bottom: 10px;
	}
	#contact .form .txt-box .tel{
		font-size:2.6rem;
		font-weight: 500;
		line-height: 1.4;
	}
	#contact .form .txt-box .tel span{
		width: 20px;
		height: 20px;
		margin: -5px 6px 0 -10px;
		display: inline-block;
		vertical-align: top;
	}
	#contact .form table{
		width: 100%;
	}
	#contact .form table th{
		font-size:1.4rem;
		font-weight: 500;
		line-height: 1.4;
		padding: 10px 0;
  padding-top: 13px;
		border-bottom: solid 1px rgba(0,0,0,.25);
		word-break: keep-all;
		vertical-align: top;
  width: 45px;
	}
	#contact .form table td{
		font-size:1.4rem;
		font-weight: 500;
		line-height: 1.4;
		padding: 10px 0 10px 10px;
		border-bottom: solid 1px rgba(0,0,0,.25);
	}
	#contact .form table td .radio{
		display: flex;
	}
	#contact .form table td .radio li{
		margin-right: 10px;
	}
	#contact .form .textarea .th{
		font-size:1.4rem;
		font-weight: 500;
		line-height: 1.4;
		padding: 10px 0;
	}
	#contact .form .textarea .th,
	#contact .form .textarea .td{
		display: block;
		width: 100%;
	}
	#contact .textarea .td textarea{
		max-width: 800px;
	}
	#contact .privacy{
		text-align: center;
		font-size:1.4rem;
		line-height: 1.4;
		margin: 20px 0;
	}
	#contact .privacy a{
		text-decoration: underline;
		font-weight: 500;
	}
	#contact .privacy a:hover{
		text-decoration: none;
	}
	#contact .form .btn input[type="submit"],
	#contact .form .btn input[type="button"] {
	  -webkit-box-sizing: content-box;
	  -webkit-appearance: button;
	  appearance: button;
	  display: block;
	  width: 140px;
	  background: #FA0045;
	  color: #ffffff;
	  font-size: 1.4rem;
	  margin: 0 auto;
	  cursor: pointer;
	  box-sizing: border-box;
	  padding: 10px 0;
	  border: solid 1px #FA0045;
	  transition: .3s;
	}
	#contact .form .btn input[type="submit"]:hover,
	#contact .form .btn input[type="button"]:hover {
	  background-color: #fff;
	  color: #FA0045;
	}
}
@media (max-width: 768px){
	#contact .form table th{
		font-size:1.2rem;
  padding-top: 17px;
  width: 40px;
	}
	#contact .form table td{
		font-size:1.2rem;
	}
	#contact .form table td .radio{
		display: flex;
		flex-wrap: wrap;
	}
	#contact .form table td .radio li{
		width: 40%;
		margin: 0 0 5px;
	}
	#contact .form table td .radio li:nth-child(odd){
		width: 58%;
	}
	#contact .form .textarea .th{
		font-size:1.2rem;
	}
	#contact .form .btn input[type="submit"]:hover,
	#contact .form .btn input[type="button"]:hover {
	  background-color:#FA0045;
	  color: #fff;
	}
	#contact .privacy{
		font-size:1.2rem;
	}
}
#contact input[type="text"],
#contact select,
#contact textarea {
	padding: 3px;
	font-weight: 400;
	border: solid 1px #ccc;
	border-radius: 5px;
	outline: none;
	background: none;
	box-sizing: border-box;
	width: 100%;
  background-color: #fff;
  font-size: 1.2rem;
}
#contact input::placeholder{
	color:#CCC;
}
/* 旧Edge対応 */
#contact input::-ms-input-placeholder {
	color:#CCC;
}
/* IE対応 */
#contact input:-ms-input-placeholder {
	color:#CCC;
}
#contact input[type="radio"]{
	display: inline-block;
	vertical-align: bottom;
}

@media (max-width:768px){
	#contact input[type="text"],
	#contact select, #contact textarea{
		font-size:16px;
	}
}


/*** -----------------------------------------------------------------------------

thanks

-----------------------------------------------------------------------------  ***/

#form header {
	margin:0 auto;
}

#form header .inner{
	justify-content:center;
}

#thanks{
	padding:150px 0
}

#thanks .txt01{
	text-align:center;
	font-size:2rem;
	font-weight: 500;
	line-height: 1.6;
}

#thanks .btn {
  display: block;
  width: 140px;
  background: #FA0045;
  text-align:center;
  color: #ffffff;
  font-size: 1.4rem;
  line-height:1.5;
  margin: 25px auto 0;
  cursor: pointer;
  box-sizing: border-box;
  padding: 10px 0;
  border: solid 1px #FA0045;
  border-radius:5px;
  transition: .3s;
}

@media (min-width:769px){
	#thanks .btn:hover{
	  background-color: #fff;
	  color: #FA0045;
	}
}

@media (max-width:768px){
	#thanks .txt01{
		font-size:1.5rem;
	}
}

@media (max-width:320px){
	#thanks .txt01{
		font-size:1.3rem;
	}
}

/*** -----------------------------------------------------------------------------

バナー

-----------------------------------------------------------------------------  ***/
#bn{
	padding: 80px 20px 20px;
	position: relative;
	z-index: 1;
	width: calc(100% - 300px);
	box-sizing: border-box;
}
#bn ul{
	display: flex;
	justify-content: space-between;
}
#bn ul li{
	width: calc(100% / 2 - 10px);
	height: 287px;
	overflow: hidden;
}
#bn ul li a{
	display: block;
	color: #fff;
	position: relative;
	background-size: 100%;
	width: 100%;
	height: 100%;
}
#bn ul li a p{
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	z-index: 1;
	transform: translateY(-50%);
	font-size: 1.6rem;
	line-height: 1.6;
	text-align: center;
}
#bn ul li a strong{
	font-size: 2.7rem;
	font-weight: 500;
	display: block;
	margin-bottom: 5px;
}
#bn ul li a:before{
	content: '';
	position: absolute;
	top: 10px;
	right: 10px;
	width: 21px;
	height: 19px;
	background: url(../img/icon-window.png) no-repeat center center / cover;
	display: block;
	z-index: 1;
}
#bn ul li a:after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transition: .3s;
	display: block;
}
#bn ul li.bn1 a:after{
	background: url(../img/bn-center.jpg) no-repeat center center / cover;
}
#bn ul li.bn2 a:after{
	background: url(../img/bn-3pl.jpg) no-repeat center center / cover;
}
#bn ul li a:hover:after{
	transform: scale(1.1);
	opacity: .8;
}
@media (max-width: 1024px){
	#bn{
		width: 100%;
	}
}
@media (max-width:768px){
	#bn{
		padding: 40px 10px 10px;
		background-color: #fff;
	}
	#bn ul{
		display: block;
	}
	#bn ul li{
		width: 100%;
		height: 160px;
		margin-bottom: 10px;
	}
	#bn ul li a p{
		font-size: 1.4rem;
	}
	#bn ul li a strong{
		font-size: 2rem;
	}
}