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

*{
	font-family: 'BIZ UDPGothic', sans-serif;
	font-family: 'Noto Sans JP', sans-serif;
}

.sp{
	display: none;
}


:root{
	--green: #009B4A;
	--glay01: #707070;
	--glay02: #F4F4F4;
}





/*---------------------------------------------global-nav-pc---------------------------------------------*/
header{
	max-width: 1300px;
	display: flex;
	justify-content: space-between;
	padding: 40px 0 30px 0;
	margin: 0 auto;
}

.header-logo{
	width: 310px;
}

.header-logo img{
	width: 100%;
}


nav{
	position: relative;
	z-index: 100;
	text-align: center;
}

/*level.1*/

nav ul{
	display: flex;
	justify-content: flex-end;
}

nav ul li{
	position: relative;
	width: 110px;
}

.header-nav-text01{
	font-size: 16px;
	color: var(--glay01);
}

.header-nav-text02{
	font-size: 10px;
	color: var(--green);
}

nav ul li a{
	display: block;
}

/*hover-border*/
.has-border{
	transition: all .3s;
	position: relative;
}

.has-border::after{
	content: '';
	position: absolute;
	bottom: -5;
	left: 0%;
	width: 100%;
	height: 5px;
	background: #009B4A;
	transition: all .3s;
	transform: scale(0,1);
	transform-origin: center top;
}
			
.has-border:hover::after{
	transform: scale(1,1);
}
		

/*level.2*/
nav ul ul{
	display: block;
}

nav li.has-child ul{
	position: absolute;
	left: 0;
	top: 55px;
	z-index: 10;
	width: 127px;
	
	visibility: hidden;
	opacity: 0;
	
	transition: all 0.3s;
}

nav ul li li a{
	font-size: 13px;
	padding: 10px 0;
	
	background-color: #009B4A;
	color: rgba(255,255,255,1.00);
	
	transition: all 0.8s;
}

nav ul li li a:hover{
	background-color: #00E06B;
	color: rgba(0,0,0,1.00);
}


/*hover*/
nav li.has-child:hover > ul,
nav li.has-child ul li:hover > ul,
nav li.has-child:active > ul,
nav li.has-child ul li:active > ul{
	visibility: visible;
	opacity: 1;
}







/*------------------------------------------------------------------------------------------common------------------------------------------------------------------------------------------*/
.main-wrapper{
	max-width: 1100px;
	margin: 0 auto 50px auto;
}


/*large-title*/

.large-title{
	color: var(--green);
	position: relative;
	padding-bottom: 40px;
	margin-bottom: 50px;
}

.large-title:before{
	content: "";
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 80px;
	height: 2px;
	background: var(--green);
}

.large-title p:first-of-type{
	font-size: 22px;
	font-weight: 500;
	position:relative;
	text-indent:2.5em;
	margin-bottom: 30px;
}

.large-title p:first-of-type::before{
	position:absolute;
	left:0;
	bottom: 0;
	content: '';
	display: inline-block;
	width: 50px;
	height: 42px;
	background-image: url("../img/large-title-icon.png");
	background-size: contain;
	vertical-align: middle;
}

.large-title p:last-of-type{
	font-size: 53px;
	font-weight: 700;
	line-height: 1;
}


/*more-button01*/
.more-button-01{
	position: relative;
	display: inline-block;
	padding: 20px 230px 20px 30px;;
	background-color: var(--green);
	color: rgba(255,255,255,1.00);
	font-size: 22px;
	opacity: 1;
	transition: all 0.3s;
}

.more-button-01:hover{
	opacity: 0.5;
}

.more-button-01::before{
	position: absolute;
	content: "";
	bottom: 34px;
	right: 25px;
	width: 30px;
	height: 2px;
	background: rgba(255,255,255,1.00);
	transition: all 0.3s;
}

.more-button-01::after{
	position: absolute;
	content: "";
	bottom: 39px;
	right: 25px;
	width: 15px;
	height: 2px;
	background: rgba(255,255,255,1.00);
	transform: rotate(35deg);
	transition: all 0.3s;
}

.more-button-01:hover::before{
	right: 5px;
}

.more-button-01:hover::after{
	right: 5px;
}


/*more-button02*/
.more-button-02{
	position: relative;
	display: block;
	padding: 20px 230px 20px 30px;
	background-color: rgba(255,255,255,1.00);
	color: var(--green);
	font-size: 22px;
	opacity: 1;
	transition: all 0.3s;
	border: 1px solid var(--green);
	width: 600px;
	margin-bottom: 30px;
	margin-left: 20px;
}

.more-button-02:hover{
	opacity: 0.5;
}

.more-button-02::before{
	position: absolute;
	content: "";
	bottom: 34px;
	right: 25px;
	width: 30px;
	height: 2px;
	background: var(--green);
	transition: all 0.3s;
}

.more-button-02::after{
	position: absolute;
	content: "";
	bottom: 39px;
	right: 25px;
	width: 15px;
	height: 2px;
	background: var(--green);
	transform: rotate(35deg);
	transition: all 0.3s;
}

.more-button-02:hover::before{
	right: 5px;
}

.more-button-02:hover::after{
	right: 5px;
}






/*middle-title01*/
.middle-title01{
	color: var(--green);
	font-size: 35px;
	font-weight: 500;
	padding: 20px 20px;
	margin-bottom: 65px;
	border-left: 10px solid var(--green);
}



/*middle-title02*/
.middle-title02{
	background-color: var(--green);
	color: rgba(255,255,255,1.00);
	font-size: 28px;
	font-weight: 400;
	padding: 20px 25px;
	background-image: url("../img/middle-title-back.png");
	background-repeat: no-repeat;
	background-position: bottom right;
	background-size: 92px 67px;
	margin-bottom: 50px;
}

/*middle-title03*/
.middle-title03{
	background-color: var(--green);
	color: rgba(255,255,255,1.00);
	font-size: 24px;
	font-weight: 400;
	padding: 15px 20px;
	margin-bottom: 50px;
}


/*small-title01*/
.small-title01{
	font-size: 24px;
	font-weight: 500;
	color: var(--green);
	padding: 0 0 0 40px;
	border-top: 2px solid var(--green);
	border-bottom: 2px solid var(--green);
	margin-bottom: 30px;
}

.small-title01 p{
	display: inline-block;
	padding: 20px;
	border-left: 2px solid var(--green);
	border-right: 2px solid var(--green);
}


/*small-title02*/
.small-title02{
	color: var(--green);
	font-size: 28px;
	font-weight: 400;
	padding: 15px 20px;
	border: 1px solid var(--green);
	margin: 0 0 50px 0;
	background-color: rgba(255,255,255,1.00);
}








/*------------------------------------------------------------------------------------------toppage------------------------------------------------------------------------------------------*/
.top-image-wrapper{
	display: flex;
	background-color: var(--glay02);
	padding: 50px 0;
	margin: 0 0 90px 0;
	max-height: 600px;
}


.swiper01{
	border-radius: 0 120px 120px 0;
	
}

.swiper02{
	border-radius: 120px 0 0 120px;
	
}

.swiper-slide img{
	object-fit: cover;
	transform: scale(1.1,1.1);
	
}



.top-image-text-wrapper{
	min-width: 520px;
	padding: 65px;
}

.top-image-text-wrapper p:first-of-type{
	font-size: 48px;
	line-height: 80px;
	color: var(--green);
	font-weight: 100;
	margin-bottom: 64px;
}

.top-image-text-wrapper p:last-of-type{
	font-size: 21px;
	line-height: 2em;
	font-weight: 100;
	margin-bottom: 64px;
}






.top-read-text{
	background-color: var(--green);
	border-radius: 0 120px 120px 0;
	margin: 0 auto 150px 0;
	width: calc(100% - 50% + 430px);
}

.top-read-text div{
	width: 980px;
	margin: 0 0 0 auto;
	padding: 75px 85px;
	background-image: url("../img/top-read-back01.png"),url("../img/top-read-back02.png");
	background-repeat: no-repeat,no-repeat;
	background-position: top left, right bottom -2px;
}

.top-read-text p:first-of-type{
	font-size: 50px;
	font-weight: 100;
	color: rgba(255,255,255,1.00);
	margin-bottom: 45px;
}

.top-read-text p:last-of-type{
	font-size: 24px;
	font-weight: 200;
	line-height: 2em;
	text-align: justify;
}





.top-business-wrapper{
	display: flex;
	column-gap: 50px;
	justify-content: space-between;
	margin-bottom: 65px;
}

.top-business-wrapper p{
	font-size: 24px;
	line-height: 2em;
	text-align: justify;
	font-weight: 100;
}

.top-business-wrapper div img{
	width: 400px;
	height: 275px;
	object-fit: cover;
}






.top-about-back{
	margin: 0 0 0 auto;
	width: calc(100% - 50% + 680px);
	background-color: var(--glay02);
	border-radius: 120px 0 0 120px;
	padding: 100px 130px;
}

.top-about-link{
	width: 1100px;
	display: flex;
	justify-content: space-between;
}

.top-about-link dd{
	width: 320px;
	height: 230px;
	overflow: hidden;
}

.top-about-link dd img{
	width: 320px;
	height: 230px;
	object-fit: cover;
	transition: all 0.3s;
}

.top-about-link a:hover dd img{
	transform: scale(1.1,1.1);
}

.top-about-link dt{
	position: relative;
	padding: 45px 0 60px 0;
	background-color: var(--green);
	text-align: center;
	color: rgba(255,255,255,1.00);
	font-size: 24px;
	opacity: 1;
	transition: all 0.3s;
}


.top-about-link dt::before{
	position: absolute;
	content: "";
	bottom: 30px;
	right: calc(50% - 15px);
	width: 30px;
	height: 2px;
	background: rgba(255,255,255,1.00);
	transition: all 0.3s;
}

.top-about-link dt::after{
	position: absolute;
	content: "";
	bottom: 35px;
	right: calc(50% - 15px);
	width: 15px;
	height: 2px;
	background: rgba(255,255,255,1.00);
	transform: rotate(35deg);
	transition: all 0.3s;
}

.top-about-link a:hover dt::before{
	right: 110px;
}

.top-about-link a:hover dt::after{
	right: 110px;
}








.top-greening-wrapper{
	display: flex;
	column-gap: 100px;
	justify-content: space-between;
	margin-bottom: 60px;
}

.top-greening-text p:first-of-type{
	font-size: 30px;
	line-height: 2em;
	font-weight: 500;
	margin-bottom: 65px;
}

.top-greening-text p:last-of-type{
	font-size: 24px;
	line-height: 2em;
	font-weight: 200;
	text-align: justify;
}


.top-greening-wrapper div img{
	width: 400px;
	height: 275px;
	object-fit: cover;
}














/*------------------------------------------------------------------------------------------company------------------------------------------------------------------------------------------*/
.company-left-back{
	background-color: var(--glay02);
	border-radius: 0 120px 120px 0;
	margin: 0 auto 0 0 ;
	width: calc(100% - 50% + 610px);
	padding: 60px 60px;
}

.company-right-back{
	background-color: var(--glay02);
	border-radius: 120px 0 0 120px;
	margin: 0 0 0 auto;
	width: calc(100% - 50% + 610px);
	padding: 60px 60px;
}

.company-inner-l{
	width: 1100px;
	margin: 0 0 0 auto;
}

.company-inner-r{
	width: 1100px;
	margin:30px auto 0 0;
}

.company-greeting p{
	font-size: 24px;
	line-height: 2em;
	font-weight: 100;
	text-align: justify;
	margin-bottom: 70px;
}

.company-greeting p:last-of-type{
	text-align: right;
	margin: 100px 100px 0 0;
}



.company-management p{
	font-size: 24px;
	line-height: 2em;
	font-weight: 100;
	text-align: justify;
}






.company-behavioral th{
	color: var(--green);
	text-align: center;
	padding: 15px 20px 15px 0;
	font-size: 30px;
	font-weight: 700;
	border-right: 1px solid var(--green);
}

.company-behavioral td{
	font-size: 24px;
	line-height: 2em;
	font-weight: 100;
	padding: 0 0 0 20px;
}



.company-profile table{
	width: 100%;
}

.company-profile th{
	padding: 35px 1em;
	text-align: left;
	font-size: 24px;
	font-weight: 400;
	border-bottom: 1px solid rgba(0,0,0,1.00);
}

.company-profile td{
	padding: 35px 20px 35px 50px;
	text-align: left;
	font-size: 24px;
	line-height: 2em;
	font-weight: 100;
	border-bottom: 1px solid rgba(0,0,0,1.00);
}

.map{
	font-weight: 700;
	color: var(--green);
	margin-left: 1em;
	border-bottom: 0px solid var(--green);
	transition: all 0.3s;
}

.map:hover{
	color: var(--green);
	border-bottom: 3px solid var(--green);
}






.histry-list{
	border-left: 5px solid var(--glay02);
}

.histry-list li{
	border-bottom: 2px dotted rgba(0,0,0,0.2);
	margin-left: 60px;
}

.histry-list li p:first-of-type{
	font-size: 24px;
	color: var(--green);
	font-weight: 500;
	margin:40px auto 10px auto;
	position: relative;
}

.histry-list li p:first-of-type::before{
	content: "";
	position: absolute;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background-color: var(--green);
	left: -77px;
	top:8px;
}

.histry-list li p:first-of-type::after{
	content: "";
	position: absolute;
	width: 55px;
	height: 3px;
	background-color: var(--green);
	left: -63px;
	top:18px;
}

.histry-list li p:last-of-type{
	font-size: 24px;
	margin-bottom: 40px;
	font-weight: 100;
}


.company-histry-li05{
	position: relative;
}
.company-histry-li05 div{
	position: absolute;
	top: -20px;
	right: 20px;
}




.company-base-link{
	display: flex;
	justify-content: space-between;
	margin-bottom: 100px;
}

.company-base-link dl dd{
	width: 340px;
	height: 170px;
	overflow: hidden;
}

.company-base-link dd img{
	width: 100%;
	transition: all 0.3s;
}

.company-base-link a:hover dd img{
	transform: scale(1.1);
}

.company-base-link dt{
	position: relative;
	background-color: var(--green);
	padding: 30px 0;
	text-align: center;
	color: rgba(255,255,255,1.00);
	font-size: 35px;
}


.company-base-link dt::before{
	position: absolute;
	content: "";
	bottom: 50px;
	right: 40px;
	width: 30px;
	height: 2px;
	background: rgba(255,255,255,1.00);
	transition: all 0.3s;
}


.company-base-link dt::after{
	position: absolute;
	content: "";
	bottom: 55px;
	right: 40px;
	width: 15px;
	height: 2px;
	background: rgba(255,255,255,1.00);
	transform: rotate(35deg);
	transition: all 0.3s;
}

.company-base-link a:hover dt::before{
	right: 10px;
}

.company-base-link a:hover dt::after{
	right: 10px;
}



.company-base-wrapper{
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	column-gap: 45px;
	margin-bottom: 100px;
}

.company-base-wrapper div{
	width: 550px;
	height: 350px;
}

.company-base-wrapper div img{
	width: 550px;
	height: 350px;
	object-fit: cover;
}

.company-base-wrapper dl{
	margin: 0;
	width: 100%;
}

.company-base-wrapper dt{
	font-size: 26px;
	font-weight: 300;
	padding: 15px 0;
	border-top: 1px solid rgba(0,0,0,1.00);
	border-bottom: 1px solid rgba(0,0,0,1.00);
	margin-bottom: 35px;
}

.company-base-wrapper dd{
	font-size: 26px;
	font-weight: 100;
	line-height: 2em;
}

.company-shide{
	padding-left: 50px;
}

.company-shide dt{
	margin: 0;
}





.company-kozan-histry{
	margin:0 0 100px 50px;
}

.company-kozan-histry th{
	font-size: 24px;
	font-weight: 400;
	color: var(--green);
	margin-right: 1em;
}

.company-kozan-histry th:last-of-type{
	text-align: right;
}

.company-kozan-histry td{
	font-size: 24px;
	font-weight: 100;
	padding: 10px 0 10px 1em;
}





.company-joubu-text{
	font-size: 24px;
	font-weight: 100;
	line-height: 2em;
	margin-bottom: 70px;
	padding-left: 50px;
}

.company-joubu-text p{
	margin-bottom: 70px;
}





.company-img-wrapper{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding-left: 50px;
	margin-bottom: 100px;
}

.company-img-wrapper figure{
	margin: 0 0 100px 0;
	width: 485px;
	height: 335px;
	text-align: center;
}

.company-img-wrapper figure p{
	font-size: 22px;
	font-weight: 200;
	margin-top: 10px;
}



.company-saiseki-text{
	padding-left: 50px;
	font-size: 24px;
	line-height: 2em;
	font-weight: 100;
	margin-bottom: 70px;
}



.company-shide-zou{
	background-color: rgba(255,255,255,1.00);
	border-radius: 0 0 60px 0;
	padding: 40px 40px 40px 50px;
}

.company-shide-zou div{
	display: flex;
	justify-content: space-between;
	column-gap: 30px;
}

.company-shide-zou p{
	font-size: 24px;
	line-height: 2em;
	font-weight: 100;
}

.company-shide-zou div p:last-of-type{
	border-radius: 0 0 20px 0;
	min-width: 415px;
	overflow: hidden;
}











/*------------------------------------------------------------------------------------------product------------------------------------------------------------------------------------------*/

.product-link-wrapper{
	width: 1100px;
	margin: 0 auto 100px auto;
	display: flex;
	justify-content: space-between;
}

.product-link-wrapper dd{
	width: 515px;
	overflow: hidden;
}

.product-link-wrapper dd img{
	width: 100%;
	transition: all 0.3s;
}

.product-link-wrapper a:hover dd img{
	transform: scale(1.1);
}

.product-link-wrapper dt{
	position: relative;
	background-color: var(--green);
	padding: 30px 0;
	text-align: center;
	color: rgba(255,255,255,1.00);
	font-size: 35px;
}

.product-link-wrapper dt::before{
	position: absolute;
	content: "";
	bottom: 50px;
	right: 40px;
	width: 30px;
	height: 2px;
	background: rgba(255,255,255,1.00);
	transition: all 0.3s;
}

.product-link-wrapper dt::after{
	position: absolute;
	content: "";
	bottom: 55px;
	right: 40px;
	width: 15px;
	height: 2px;
	background: rgba(255,255,255,1.00);
	transform: rotate(35deg);
	transition: all 0.3s;
}

.product-link-wrapper a:hover dt::before{
	right: 10px;
}

.product-link-wrapper a:hover dt::after{
	right: 10px;
}

.product-middle-wrapper{
	width: 1100px;
	margin: 0 auto;
	padding-left: 35px;
}

.product-text{
	font-size: 24px;
	line-height: 2em;
	font-weight: 100;
	margin-bottom: 50px;
}

.product-ibuki-link-wrapper{
	display: flex;
	justify-content: space-between;
	margin-bottom: 100px;
}

.product-ibuki-link-wrapper dd{
	width: 250px;
	overflow: hidden;
	border: 1px solid var(--green);
}

.product-ibuki-link-wrapper dd img{
	width: 100%;
	transition: all 0.3s;
}

.product-ibuki-link-wrapper a:hover dd img{
	transform: scale(1.1);
}

.product-ibuki-link-wrapper dt{
	position: relative;
	padding: 15px 0;
	text-align: center;
	font-size: 24px;
	line-height: 2em;
	font-weight: 300;
	color: var(--green);
	background-color: var(--glay02);
	border: 1px solid var(--green);
	min-height: 170px;
}


.product-ibuki-link-wrapper dt::before{
	position: absolute;
	content: "";
	bottom: 25px;
	right: 108px;
	width: 30px;
	height: 2px;
	background: var(--green);
	transition: all 0.3s;
}

.product-ibuki-link-wrapper dt::after{
	position: absolute;
	content: "";
	bottom: 29px;
	right: 107px;
	width: 15px;
	height: 2px;
	background: var(--green);
	transform: rotate(35deg);
	transition: all 0.3s;
}

.product-ibuki-link-wrapper a:hover dt::before{
	right: 50px;
}

.product-ibuki-link-wrapper a:hover dt::after{
	right: 50px;
}


.product-middle-titla02-span01,
.product-middle-titla02-span02{
	font-weight: 100;
	margin-left: 290px;
	position: relative;
}

.product-middle-titla02-span01::before{
	content: "";
	position: absolute;
	bottom: 15px;
	right: 355px;
	width: 250px;
	height: 1px;
	background: rgba(255,255,255,1.00);
}

.product-middle-titla02-span02::before{
	content: "";
	position: absolute;
	bottom: 15px;
	right: 390px;
	width: 250px;
	height: 1px;
	background: rgba(255,255,255,1.00);
}




.product-card-wrapper{
	display: flex;
	justify-content: flex-start;
	column-gap: 75px;
	margin-bottom: 100px;
	flex-wrap: wrap;
}

.product-card-wrapper dl{
	padding: 30px 35px 45px 35px;
	border-radius: 10px;
	box-shadow: 0 0 15px rgba(0,0,0,0.1);
	text-align: center;
	margin-bottom: 30px;
}

.product-card-wrapper dt{
	font-size: 22px;
	font-weight: 100;
	margin-top: 40px;
}




.product-table{
	width: 100%;
	margin-bottom: 100px;
}

.product-table th{
	background-color: #E5E5E5;
	padding: 15px 1em;
	font-size: 18px;
	font-weight: 500;
	border-bottom: 1px solid rgba(0,0,0,1.00);
	text-align: left;
}

.product-table td{
	background-color: #FAFAFA;
	padding: 15px 1em;
	font-size: 18px;
	font-weight: 500;
	border-bottom: 1px solid rgba(0,0,0,1.00);
	text-align: left;
}

.product-table td:first-of-type{
	color: var(--green);
}

.product-table caption{
	caption-side: bottom;
	 text-align: right;
	margin-top: 5px;
}



.product-text-span{
	font-size: 22px;
	font-weight: 100;
}



.product-glayback{
	background-color: var(--glay02);
	padding: 35px 35px 30px 35px;
	margin-bottom: 100px;
}


.product-meritlist dt{
	font-size: 20px;
	color: var(--green);
	font-weight: 500;
}

.product-meritlist dd{
	font-size: 18px;
	font-weight: 100;
	line-height: 2em;
	margin-bottom: 30px;
}

.product-meritlist dd:last-of-type{
	margin-bottom: 0;
}


.product-meritlist-p{
	font-size: 22px;
	line-height: 2em;
	font-weight: 100;
	padding-bottom: 35px;
}



.product-ibuki-contact{
	position: relative;
	background-color: var(--glay02);
	text-align: center;
	margin-bottom: 100px;
	padding: 90px 150px;
	background-image: url("../product/img/green-back.png");
	background-repeat: no-repeat;
	background-position: bottom right 25px;
	background-size: 290px 211px;
	z-index: -1;
}

.product-ibuki-contact::before{
	content: "";
	position: absolute;
	width: 300px;
	height: 300px;
	background-color: rgba(255,255,255,1.00);
	transform: rotate(45deg);
	top: -300px;
	right: calc(100% - 50% - 150px);
}

.product-ibuki-contact p:nth-of-type(1){
	font-size: 28px;
	font-weight: 500;
	color: var(--green);
	background-color: rgba(255,255,255,1.00);
	border: 1px solid var(--green);
	padding: 15px 0px;
}

.product-ibuki-phone,.product-ibuki-fax{
	font-size: 60px;
	font-weight: 700;
	padding-left: 130px;
	position: relative;
	padding-top: 50px;
}

.product-ibuki-fax{
	border-top: 1px dotted #707070;
}

.product-ibuki-phone::before{
	position: absolute;
	content: "";
	width: 85px;
	height: 85px;
	background-image: url("../product/img/call-icon.png");
	background-repeat: no-repeat;
	background-size: contain;
	vertical-align: middle;
	left:130px;
}

.product-ibuki-contact p:nth-of-type(3){
	font-size: 22px;
	font-weight: 300;
	padding-left: 130px;
	margin-bottom: 30px;
}

.product-ibuki-fax::before{
	position: absolute;
	content: "";
	width: 85px;
	height: 85px;
	background-image: url("../product/img/fax-icon.png");
	background-repeat: no-repeat;
	background-size: contain;
	vertical-align: middle;
	left:130px;
}














/*------------------------------------------------------------------------------------------greening------------------------------------------------------------------------------------------*/

.greening-left-wrapper{
	margin:0 auto 100px 0;
	width: calc(100% - 50% + 610px);
	background-color: var(--glay02);
	border-radius: 0 120px 120px 0;
	padding: 60px 60px 60px 0;
	background-image: url("../greening/img/greening-back.png");
	background-repeat: no-repeat;
	background-position: bottom -20px right 180px;
}

.greening-right-wrapper{
	margin:0 0 100px auto;
	width: calc(100% - 50% + 610px);
	background-color: var(--glay02);
	border-radius: 120px 0 0 120px;
	padding: 60px 0 60px 60px;
	background-image: url("../greening/img/greening-back.png");
	background-repeat: no-repeat;
	background-position: bottom -20px left 180px;
}

.greening-title{
	background-color: var(--green);
	color: rgba(255,255,255,1.00);
	font-size: 32px;
	font-weight: 500;
	padding: 25px 0;
	margin-bottom: 60px;
}

.greening-inner-l .greening-title p{
	width: 1100px;
	margin: 0 0 0 auto;
	padding-left: 1em;
}

.greening-inner-r .greening-title p{
	width: 1100px;
	margin: 0 auto 0 0;
	padding-left: 1em;
}

.greening-inner-l{
	border-radius: 0 60px 0px 0;
	overflow: hidden;
}

.greening-inner-r{
	border-radius: 60px 0 0 0px;
	overflow: hidden;
}

.greeting-inner-inner-l,
.greeting-inner-inner-r{
	width: 1100px;
	display: flex;
	column-gap: 30px;
}

.greeting-inner-inner-l{
	margin: 0 0 0 auto;
}

.greeting-inner-inner-r{
	margin: 0 auto 0 0;
}

.greeting-inner-inner-l div{
	min-width: 450px;
	border-radius: 0 60px 60px 0;
	overflow: hidden;
}

.greeting-inner-inner-r div{
	min-width: 450px;
	border-radius: 60px 0 0 60px;
	overflow: hidden;
}

.greeting-inner-inner-l p,
.greeting-inner-inner-r p{
	font-size: 24px;
	line-height: 2em;
	font-weight: 300;
	text-align: justify;
}

.greeting-inner-inner-l div img,
.greeting-inner-inner-r div img{
	height: 100%;
}

.greeting-inner-inner-l dt,
.greeting-inner-inner-r dt{
	font-size: 28px;
	font-weight: 500;
	color: var(--green);
	margin-bottom: 35px;
}

.greeting-inner-inner-l dd,
.greeting-inner-inner-r dd{
	font-size: 24px;
	line-height: 2em;
	font-weight: 300;
	text-align: justify;
}

.greeting-inner-inner-r dd p{
	font-size: 0.8em;
}




.greeting-middle-wrapper{
	padding-left: 50px;
}

.greeting-middle-wrapper p:nth-child(2){
	font-size: 24px;
	line-height: 2em;
	font-weight: 100;
}

.greeting-middle-wrapper ul{
	background-color: var(--glay02);
	padding: 30px;
	margin-bottom: 100px;
}

.greeting-middle-wrapper li{
	font-size: 24px;
	line-height: 2em;
	font-weight: 100;
}



.greeting-img{
	width: 100%;
	margin-bottom: 100px;
}

.greeting-img img{
	width: 100%;
}



.greening-kabu-wrapper{
	display: flex;
	justify-content: space-between;
	column-gap: 30px;
}

.greening-kabu-wrapper div:first-of-type{
	width: 100%;
}

.greening-kabu-wrapper div:first-of-type img{
	width: 100%;
}


.greening-kabu-wrapper div:last-of-type p{
	font-size: 24px;
	line-height: 2em;
	font-weight: 100;
	text-align: justify;
	padding-bottom: 50px;
}

.greening-kabu-wrapper div:last-of-type p:last-of-type{
	padding-top: 40px;
	border-top: 1px solid var(--glay01);
}












/*------------------------------------------------------------------------------------------access------------------------------------------------------------------------------------------*/
.access-wrapper{
	padding: 0 20px;
	display: flex;
	justify-content: space-between;
}

.access-wrapper p{
	font-size: 22px;
	line-height: 1em;
	font-weight: 300;
	margin-bottom: 1em;
}

.access-contact-wrapper dl{
	margin-left: 1em;
	font-size: 22px;
	line-height: 2em;
	font-weight: 300;
}

.access-contact-wrapper dt{
	color: rgba(255,255,255,1.00);
	background-color: var(--green);
	border-radius: 10px;
	display: inline-block;
	line-height: 1;
	padding: 10px;
	margin-top: 20px;
}

.access-img-wrapper{
	width: 380px;
}

.access-img-wrapper img{
	width: 100%;
	margin-bottom: 30px;
}

.access-small-title{
	font-size: 28px;
	font-weight: 500;
	margin-top: 60px;
}

.access-small-title::before{
	content: "";
	background-repeat: no-repeat;
	vertical-align: middle;
	display: inline-block;
	margin-right: 0.5em;
}

.access-small-title.car::before{
	width: 37px;
	height: 27px;
	background-image: url("../access/img/car-icon01.png");
}

.access-small-title.train::before{
	width: 37px;
	height: 32px;
	background-image: url("../access/img/train-icon.png");
}

.access-small-title.train + p{
	font-size: 22px;
	font-weight: 300;
	margin-left: 20px;
}









/*------------------------------------------------------------------------------------------contact------------------------------------------------------------------------------------------*/
.contact-text01{
	font-size: 24px;
	line-height: 2em;
	color: var(--glay01);
	font-weight: 300;
	margin-bottom: 20px;
}

.contact-text01+a .more-button-01{
	margin-bottom: 150px;
}

.contact-text02{
	font-size: 18px;
	line-height: 2em;
	color: var(--glay01);
	font-weight: 100;
	margin-bottom: 20px;
}

.contact-glayback{
	background-color: var(--glay02);
	padding: 20px;
}

.contact-glayback p{
	font-size: 22px;
	line-height: 2em;
	font-weight: 300;
}

.contact-glayback p:first-of-type{
	color: var(--green);
	font-weight: 500;
}

.contact-glayback p a{
	color: var(--green);
	font-weight: 500;
}







/*------------------------------------------------------------------------------------------privacy------------------------------------------------------------------------------------------*/

.privacy h1{
	font-size: 24px;
	font-weight: 500;
	color: var(--green);
	line-height: 1em;
	margin-bottom: 50px;
}

.privacy h1::before{
	content: "";
	display: inline-block;
	width: 50px;
	height: 42px;
	background-image: url("../privacy/img/privacy-head-img.png");
	background-repeat: no-repeat;
	background-size: contain;
	vertical-align: bottom;
	margin-right: 10px;
}

.privacy dl{
	color: var(--glay01);
	font-size: 22px;
	line-height: 2em;
	margin-bottom: 50px;
}

.privacy dt{
	margin-bottom: 0px;
}

.privacy li{
	text-indent: -1em;
	padding-left: 1em;
}




























/*------------------------------------------------------------------------------------------totop------------------------------------------------------------------------------------------*/
#page-top{
	width: 50px;
	height: 50px;
}

#page-top img{width: 100%;}

#page-top a{
	color: #fff;
	transition:all 0.3s;
	opacity: 0.8;
}

#page-top a:hover{
	opacity: 0.5;
}

#page-top {
	position: fixed;
	right: 20px;
	z-index: 99;
	opacity: 0;
	transform: translateY(100px);
}

#page-top.UpMove{
	animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}

#page-top.DownMove{
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
  	opacity: 1;
	transform: translateY(0);
  }
  to {
  	opacity: 1;
	transform: translateY(100px);
  }
}












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

footer{
	border-top: 15px solid var(--green);
	position: relative;
	background-color: var(--glay02);
	
	background-image: url("../img/footer_back.png");
	background-repeat: no-repeat;
	background-position: right bottom;
	
	padding-bottom: 50px;
}

footer::after{
	content: "";
	position: absolute;
	top: -15px;
	right: 0;
	width: 30%;
	height: 15px;
	background: #C9C4C4;
	
}

.footer-wrapper{
	max-width: 1300px;
	margin: 0 auto;
	padding: 85px 0 100px 0;
}

.footer-logo{
	width: 500px;
	margin-bottom: 45px;
}

.footer-logo img{
	width: 100%;
}


.footer-inner{
	display: flex;
	column-gap: 100px;
	justify-content: space-between;
}


.footer-access p{
	font-size: 22px;
	line-height: 2em;
}

.footer-access p:nth-child(1){
	margin-bottom: 55px;
	transform: translateY(-5px);
}

.footer-link{
	display: flex;
	column-gap: 5px;
}

.footer-link-wrapper01{
	display: flex;
	text-align: center;
}

.footer-link-wrapper01 dl{
	margin-top: 0;
}

.footer-link-wrapper01 dt{
	width: 150px;
	border-bottom: 1px solid rgba(0,0,0,1.00);
	font-size: 22px;
	font-weight: 500;
	padding-bottom: 20px;
	margin-bottom: 20px;
}

.footer-link-wrapper01 dd{
	font-size: 20px;
	padding-bottom: 10px;
}




.footer-link-wrapper02{
	display: flex;
	flex-direction: column;
	/*border-left: 1px solid rgba(0,0,0,1.00);*/
	font-size: 22px;
	font-weight: 500;
	padding-left: 20px;
	position: relative;
}

.footer-link-wrapper02::before{
	content: '';
	position: absolute;
	top: 0%;
	left: 0px;
	display: inline-block;
	width: 1px;
	height: 220px;
	background-color: black;
}

.footer-link-wrapper02 a{
	margin-bottom: 30px;
}


small{
	display: block;
	text-align: center;
}

































.m-b150{
	margin-bottom: 150px;
}

.m-t110{
	margin-top: 110px;
}

