@charset "utf-8";
/* CSS Document */

#top_page{
	font-size: 14px;
}
#top_page .btn_1{
	font-size: 16px;
}

/*ヘッダー*/
#top_page header .inner,
#contact_page header .inner{
	display: flex;
	justify-content: space-between;
}
#top_page header .header_right,
#contact_page header .header_right{
	display: flex;
	justify-content: right;
}
#top_page header .header_right p,
#contact_page header .header_right p{
	width: 100px;
    height: 60px;
    line-height: 4rem;
}
#top_page header .header_right a,
#contact_page header .header_right a{
	color: #3f3f3f;
}
@media(max-width:767px){
	#top_page header .inner,
	#contact_page header .inner{
		width: 100%;
	}
	#top_page header img,
	#contact_page header img{
		margin-left: 15px;
	}
}

/*ハンバーガーメニュー*/
.nav_btn{
	position: relative;
	width: 50px;
	height: 60px;
	background: #8fc31f;
	padding-left: 20px;
	z-index: 100;
}
.nav_btn span{
	display: block;
	width: 30px;
	border-bottom: 3px solid #fff;
	position: absolute;
	transition: .35s ease-in-out;
}
.nav_btn span:nth-child(1){
	top: 18px;
}
.nav_btn span:nth-child(2){
	top: 28px;
}
.nav_btn span:nth-child(3){
	top: 38px;
}
/*クラス名openが付与された時にspanタグを45度にする*/
.nav_btn.open span:nth-child(1){
	transform: rotate(-45deg);
	top: 28px;
}
.nav_btn.open span:nth-child(2),
.nav_btn.open span:nth-child(3){
	transform: rotate(45deg);
	top: 28px;
}
nav{
	background: rgba(255,255,255,0.95);
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	text-align: center;
	padding-top: 60px;
	height: 100vh;
	transform: translateY(-100%);
	transition: all .6s;
}
nav.open{
	transform: translateY(0);
}		
nav.open ul{
	display: block;
	background: none;
	padding: 0;
}	
nav.open li{
	border-top: 1px solid #009a3e;
	margin: 0;
	padding: 15px 0;
}				
nav.open li a,
nav.open li a::before{
	color: #009a3e;
}	
nav.open li:last-child p,
nav.open li:last-child a{
	color: #fff;
	font-size: 1.2rem;
	margin: 0;
}
nav.open li:last-child a::before{
	display: none;
}

/*フッダー*/
#top_page footer img,
#contact_page footer img{
	display: block;
	width: 10%;
	margin: 0 auto 30px;
}
#top_page footer ul,
#contact_page footer ul{
	display: flex;
	justify-content: center;
	background: #8fc31f;
}
#top_page footer li,
#contact_page footer li{
	padding: 10px 30px;
}
#top_page footer li a,
#contact_page footer li a{
	color: #fff;
}
#top_page footer small,
#contact_page footer small{
	color: #3f3f3f;
	background: #fff;
	margin-bottom: 12px;
}
#top_page footer small a,
#contact_page footer small a{
	color: #3f3f3f;
}
@media(max-width:767px){
	#top_page footer img,
	#contact_page footer img{
		width: 25%;
		margin: 0 auto 15px;
	}
	#top_page footer ul,
	#contact_page footer ul{
		display: none;
	}
}

/*トップページ　共通*/
#top_page main{
	margin-top: 60px;
}
#top_page section{
	margin: 100px 0;
}
#top_page .inner{
	max-width: 1000px;
	margin: 0 auto;
}
#top_page h2{
	font-size: 24px;
	color: #fff;
	background: #8fc31f;
	padding: 15px 0;
	z-index: 1;
}
@media(max-width:1100px){
	#top_page h2{
		font-size: 18px;
		padding: 0;	
	}
}
@media(max-width:767px){
	#top_page section{
		margin: 50px 0;
	}
}

/*トップページ　メインビジュアル*/
#top_page .mv{
	position: relative;
	height: 47vw;
}
#top_page .mv .mv_img{
	width: 80%;
	position: absolute;
	top: 0;
	right: 0;
	margin: 0;
}
#top_page .mv .mv_content{
	position: absolute;
	top: 10%;
	left: 5%;
	z-index: 1000;
}
#top_page .mv .mv_content img{
	display: block;
	width: 30%;
	margin:0 0 100px 0;
}
#top_page .mv .mv_content p:nth-child(2){
	width: 100%;
    font-size: 30px;
    font-weight: bold;
	color: #fff;
    background: #8fc31f;
    padding: 10px 0;
	margin: 0 0 30px 0;
}
#top_page .mv .mv_content p:nth-child(3){
	width: 110%;
    font-size: 40px;
    font-weight: bold;
	color: #009a3e;
    background: #fff;
    padding: 10px 0;
	margin: 0 0 30px 0;
}
#top_page .mv .mv_content p:nth-child(4){
	width: 400px;
	margin: 0;
}
#top_page .mv .mv_content a{
	font-size: 20px;
	margin: 0;
}
@media(max-width:1200px){
	#top_page .mv .mv_content img{
		width: 30%;
		margin-bottom: 20px;
	}
	#top_page .mv .mv_content p:nth-child(2){
		font-size: 20px;
		margin-bottom: 15px;
	}
	#top_page .mv .mv_content p:nth-child(3){
		font-size: 24px;
		margin-bottom: 15px;
	}
	#top_page .mv .mv_content p:nth-child(4){
		font-size: 16px;
	}
}
@media(max-width:767px){
	#top_page .mv{
		position: static;
		height: 78vh;
	}
	#top_page .mv .mv_img{
		width: 100%;
		position: static;
	}
	#top_page .mv .mv_content{
		top: 25%;
	}
	#top_page .mv .mv_content img{
		width: 40%;
		margin-bottom: 50px;
	}
	#top_page .mv .mv_content p:nth-child(2){
		font-size: 16px;
		width: 80%;
		margin-bottom: 15px;
	}
	#top_page .mv .mv_content p:nth-child(3){
		font-size: 20px;
		width: 95%;
		margin-bottom: 15px;
	}
	#top_page .mv .mv_content p:nth-child(4){
		width: 70%;
	}
	#top_page .mv .mv_content a{
		font-size: 14px;
	}
}

/*トップページ　コンセプト*/
#top_page #concept h2{
	font-size: 28px;
	line-height: 15px;
	color: #009a3e;
	background: none;
	width: 80%;
	background: linear-gradient(transparent 60%, #dae000 60%);
}
#top_page #concept img{
	width: 80%;
	margin: 30px auto 0;
}
@media(max-width:1100px){
	#top_page #concept h2{
		font-size: 18px;
		line-height: 25px;
		background: linear-gradient(transparent 70%, #dae000 70%);
	}
}

/*トップページ　サービス案内*/
#top_page #service{
	height: 132vh;
	position: relative;
	background-image: url("../img/bg.jpg");
	background-size:contain;
	background-repeat: no-repeat;
	background-position: bottom;
}
#top_page #service h2{
	width: 600px;
	position: absolute;
	top: 0;
	left: 0;
}
#top_page #service .service_box{
	background: #fff;
	border: 2px solid #009a3e;
	padding: 70px 0 60px;
	width: 1000px;
	max-width: 1000px;
	position: absolute;
	top: 5%;
	right: 5%;
}
#top_page #service .service_box img{
	width: 90%;
	margin: 30px auto 0;
}
@media(max-width:1100px){
	#top_page #service{
		height: 103vh;
	}
	#top_page #service .service_box{
		width: 700px;
	}
}
@media(max-width:767px){
	#top_page #service,
	#top_page #service h2,
	#top_page #service .service_box{
		position: static;
	}
	#top_page #service{
		height: 96vh;
	}
	#top_page #service h2{
		width: 100%;
	}
	#top_page #service .service_box{
		padding: 20px 10px;
		width: auto;
	}
	#top_page #service .service_box img{
		width: 100%;
	}
}

/*トップページ　料金案内*/
#top_page #plan{
	height: 70vh;
	position: relative;
}
#top_page #plan h2{
	width: 600px;
	position: absolute;
	top: 0;
	right: 0;
}
#top_page #plan .plan_box{
	background: #fff;
	border: 2px solid #009a3e;
	padding: 70px 0 60px;
	width: 1000px;
	position: absolute;
	top: 8%;
	left: 5%;
}
#top_page #plan .plan_box table{
	width: 80%;
	text-align: center;
	border-collapse: collapse;
	border-spacing: 0;
	margin-top: 30px;
}
#top_page #plan .plan_box tr:nth-child(2n+1){
	background: rgba(143,195,31,0.1); 
}
/* #top_page #plan .plan_box tr:nth-child(2n){
	
} */
#top_page #plan th{
	font-size: 16px;
	font-weight: bold;
	border: 1px solid #969696;
	padding: 15px 10px;
}
#top_page #plan td{
	border: 1px solid #969696;
	padding: 15px 10px;
}
@media(max-width:1100px){
	#top_page #plan .plan_box{
		width: 700px;
	}
}
@media(max-width:767px){
	#top_page #plan,
	#top_page #plan h2,
	#top_page #plan .plan_box{
		position: static;
	}
	#top_page #plan{
		height: 116vh;
	}
	#top_page #plan h2{
		width: 100%;
	}
	#top_page #plan .plan_box{
		width: auto;
		padding: 20px 10px;
	}
	
}

/*トップページ　導入事例（店舗）*/
#top_page #introduce{
	height: 20vh;
}
#top_page #introduce .inner{
	display: flex;
}
#top_page #introduce h2{
	font-size: 28px;
	line-height: 15px;
	color: #009a3e;
	background: linear-gradient(transparent 60%, #dae000 60%);
	width: 70%;
}
#top_page #introduce .introduce_content{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
#top_page #introduce .introduce_content p{
	font-size: 20px;
	font-weight: bold;
	color: #009a3e;
	background: rgba(255,255,255,0.95);
	border: 2px solid #009a3e;
	border-radius: 30px;
	padding: 10px 30px;
	margin: 10px;
}
#top_page #introduce img{
	width: 20%;
	margin-top: 20px;
}
@media(max-width:1100px){
	#top_page #introduce h2{
		font-size: 18px;
		line-height: 25px;
		width: 100%;
		background: linear-gradient(transparent 50%, #dae000 50%);
	}
	#top_page #introduce .introduce_content p{
		font-size: 16px;
		padding: 8px 18px;
	}
}
@media(max-width:767px){
	#top_page #introduce{
		height: 44vh;
	}
	#top_page #introduce .inner{
		display: block;
	}
	/*#top_page #introduce h2{
		font-size: 18px;
		line-height: 25px;
		width: 100%;
		background: linear-gradient(transparent 50%, #dae000 50%);
	}*/
	#top_page #introduce .introduce_content{
		background: url("../img/introduce.png");
		background-size: contain;
		background-repeat: no-repeat;
    	background-position: bottom;
	}
	#top_page #introduce img{
		display: none;
	}
}

/*トップページ　登録までの流れ*/
#top_page #flow{
	position: relative;
	height: 130vh;
	background-image: url("../img/bg.jpg");
	background-size:contain;
	background-repeat: no-repeat;
	background-position: bottom;
}
#top_page #flow h2{
	width: 600px;
	position: absolute;
	top: 0;
	left: 0;
}
#top_page #flow ul{
	background: #fff;
	border: 2px solid #009a3e;
	padding: 70px 0 60px;
	margin: 0;
	width: 1000px;
	max-width: 1000px;
	position: absolute;
	top: 4%;
	right: 5%;
}
#top_page #flow li{
	position: relative;
	width: 80%;
	padding: 0 0 10px 30px;
	margin: 0 auto;
}
#top_page #flow li:before{
	content: '';
	width: 3px;
	background: #cccccc;
	display: block;
	position: absolute;
	top: 26px;
	bottom: 0;
	left: 6px;
}
#top_page #flow .btn_01,
#top_page #flow .btn_02{
	content: '';
	display: inline-block;
	position: absolute;
	top: 5px;
	left: 0;
	width: 15px;
	height: 15px;
	border-radius: 50%;
	background: #009a3e;
}
#top_page #flow .btn_02{
	background: #8fc31f;
}
#top_page #flow .label{
	padding-top: 3px;
	margin: 5px 0;
	color: #009a3e;
	font-size: 14px;
	font-weight: bold;
	text-align: left;
}
#top_page #flow .title{
	font-size: 20px;
	font-weight: bold;
	line-height: 20px;
	text-align: left;
	margin-top: 15px;
}
#top_page #flow .content{
	line-height: 1.5rem;
	margin-top: 15px;
	padding: 0 0 30px;
	border-bottom: 1px dashed #cccccc;
	text-align: left;
}
#top_page #flow .tel_box{
	margin-top: 30px;
}
#top_page #flow .tel_box a{
	font-size: 30px;
	font-weight: bold;
	color: #009a3e;
	border-bottom: 2px solid  #009a3e;
}
#top_page #flow .tel_box p{
	font-size: 16px;
	line-height: 40px;
	color: #009a3e;
}
@media(max-width:1100px){
	#top_page #flow ul{
		width: 700px;
	}
	#top_page #flow .title{
		font-size: 16px;
	}
}
@media(max-width:767px){
	#top_page #flow,
	#top_page #flow h2,
	#top_page #flow ul{
		position: static;
	}
	#top_page #flow{
		height: 173vh;
	}
	#top_page #flow h2{
		width: 100%;
	}
	#top_page #flow ul{
		width: auto;
		padding: 20px 10px;
	}
	#top_page #flow .btn_1{
		width: 100%;
	}
}


/*会社概要*/
#top_page #company{
	position: relative;
}
#top_page #company h2{
	width: 600px;
	position: absolute;
	top: 0;
	right: 0;
}
#top_page #company .company_flex{
	display: flex;
	padding-top: 120px;
}
#top_page #company div img{
	width: 80%;
	margin: 30px auto;
}
#top_page #company .modal{
    display: none;
	width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
	z-index: 1000;
}
#top_page #company .modal__bg{
    background: rgba(0,0,0,0.8);
	width: 100%;
    height: 100%;
    position: absolute;

}
#top_page #company .modal__content{
    background: #fff;
    left: 50%;
    padding: 40px;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 80%;
	height: 60%;
	overflow: scroll;
}
#top_page #company .modal__content h3{
    font-size: 20px;
	margin-bottom: 30px;
}
#top_page #company .modal__content span{
    display: block;
	text-align: center;
	border-bottom: 1px solid #3f3f3f;
	padding-bottom: 5px;
    margin: 30px 0 15px;
}
#top_page #company .modal__content .btn_1{
	margin-top: 30px;
}
@media(max-width:767px){
	#top_page #company,
	#top_page #company h2{
		position: static;
	}
	#top_page #company h2{
		width: auto;
	}
	#top_page #company .company_flex{
		display: block;
		padding-top: 0px;
	}
	#top_page #company iframe{
		width: 100%;
	}
	#top_page #company div img{
		width: 90%;
    	margin: 15px auto;
	}
	#top_page #company .modal__content{
		width: 70%;
	}
}

/*お問合せページ*/
#contact_page dd{
	margin: 0 0 30px;
}
#contact_page dt{
	text-align: left;
	background: rgba(143,195,31,0.2);
	padding: 5px 0px 5px 10px;
	margin-bottom: 15px;
}
#contact_page input[type="text"],
#contact_page input[type="email"],
#contact_page input[type="tel"],
#contact_page textarea{
	border: 1px solid #3f3f3f;
	width: 97%;
	padding: 6px 10px;
	border-radius: 4px;
	text-align: left;
}
#contact_page ::placeholder{
	color: #cccccc;
}
#contact_page textarea{
	min-height: 150px;
}