@charset "utf-8";
* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
body {
	width: 100%;
	margin: 0 auto;
	font-family: '小塚ゴシック Pro','Kozuka Gothic Pro',sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: #333;
}
h2 {
	font-size: 30px;
	text-align: center;
	margin: 40px 0;
	font-weight: bold;
}
h2 span {
	font-size: 20px;
	color: #88BD43;
	display: block;
}
h3 {
	font-size: 26px;
	margin-bottom: 20px;
	font-weight: bold;
}
h3 span {
	font-size: 30px;
	display: block;
}
h4 {
	font-size: 22px;
	margin-bottom: 10px;
}
h5 {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 2px solid #88BD43;
}
h6 {
	font-size: 18px;
	font-weight: bold;
	margin-top: 10px;
	padding-bottom: 10px;
	color: #88BD43;
}
a {
	color: #fff;
}
a:hover {
	opacity: 0.7;
}
img {
	object-fit: cover;
	width: 100%;
	vertical-align: top;
}
.wrapper {
	max-width: 1280px;
	width: 100%;
	margin: 0 auto;
}
.inner {
	max-width: 980px;
	width: 100%;
	margin: 0 auto;
}
.flexBox {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-box;
	display: -webkit-flexbox;
	display: -moz-flexbox;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: flex;
	-webkit-box-lines: multiple;
	-moz-box-lines: multiple;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.block {
	display: block;
}
.container {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}
.pc {
	display: block;
}
.sp {
	display: none;
}


/*------------------------------------------------*/
/*-------------------- header --------------------*/
/*------------------------------------------------*/
/*	ハンバーガーメニュー	*/
.header {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 110px;
	border-bottom: 4px solid #88BD43;
	background: #fff;
	z-index: 10000;
}
.header_inner {
	position: relative;
	max-width: 1280px;
	width: 100%;
	margin: 0 auto;
}
.logo {
	position: absolute;
	top: 0;
	left: 0;
	padding: 34px 0 20px;
}
.logo img {
	width: 300px;
}
.logo h1 span {
	display: block;
	font-size: 12px;
	padding: 20px 0 0 60px;
}
.tittle {
	width: 100%;
}
.tittle a {
	display: block;
	width: 100%;
	height: 100%;
}
.nav_list {
	text-align: right;
	padding: 30px 0 0;
}
.nav_list > li {
	display: inline-block;
	text-align: right;
}
.nav_list li a {
	color: #333;
	font-weight: bold;
	padding: 12px 10px;
	display: block;
}
.contact {
	position: absolute;
	top: 0;
	right: 0;
	width: 140px;
	padding: 5px 15px;
	background: #88BD43;
	text-align: center;
	font-size: 16px;
	font-weight: bold;
}
.contact a {
	display: block;
	width: 100%;
	height: 100%;
}
/*  ドロップダウンメニュー  */
.nav_wrap {
	font-size:16px;
	color:#fff;
}
.nav_list .nav_item {
	position:relative;
	display:inline-block;
	cursor:pointer;
	display: inline-block;
	text-align: right;
}
.nav_list .nav_item:hover {
	background:#88BD43;
}
.nav_list .dropdown {
	z-index:100;
	background:#88BD43;
	position:absolute;
	left:0;
	top:50px;
	width:200px;
	display:none;
}
.nav_list li .dropdown li {
	text-align: center;
	border-top: 1px solid #fff;
}
.nav_list li .dropdown li a {
	color:#fff;
	display: block;
	width: 100%;
	padding: 10px;
}
.nav_list .nav-button-wrap,
.nav_list .open {
	display:block;
}
.nav_list .close {
	display:block;
}

@media screen and (max-width: 768px) {
	header {
		position:relative;
		width:100%;
	}
	.nav-button-wrap {
		display:block;
		position:absolute;
		right:0px;
		top:0px;
		z-index:1000;
		cursor: pointer;
		padding:15px;
		height:53px;
	}
	.nav_list {
		display:none;
	}
	.nav_list .close {
		display:none;
	}
	.nav_wrap.open .nav_list {
		display:block;
		padding:10% 5% 0;
		position: fixed;
		left: 0;
		top: 0;
		background-color: #88BD43;
		width: 100%;
		height: 100%;
		overflow-x: hidden;
		overflow-y: auto;
	}
	.nav_wrap.open .nav_list li {
		display:block;
	}
	.nav_wrap.open .nav_list li:hover {
		background:transparent;
	}
	.nav_wrap.open .nav_list .dropdown {
		display:block;
		position:static;
		background:transparent;
	}
}



/*------------------------------------------------*/
/*-------------------- footer --------------------*/
/*------------------------------------------------*/
.footer {
	margin-top: auto;
}
.footer_inner {
	max-width: 1280px;
	width: 100%;
	padding: 62px 0 20px;
	margin-left: auto;
	margin-right: auto;
}
.footer a {
	color: #333;
}
.footer_nav {
	flex-wrap: wrap;
	justify-content: space-between;
}
.footer_nav_item {
	padding: 0 0 10px;
}
.copyrightArea {
	background: #88BD43;
	color: #fff;
	padding: 10px 20px;
	font-size: 8px;
}
.copyrightArea .flexBox {
	flex-wrap: nowrap;
	justify-content: space-between;
}
.leftArea {
	text-align: left;
}
.leftArea ul li {
	padding-right: 20px;
}
.rightArea {
	text-align: right;
}

/*------------------------------------------------*/
/*--------------------- main ---------------------*/
/*------------------------------------------------*/
main {
	width: 100%;
	margin: 110px auto 0;
}
.mvArea img {
	height: 570px;
}
main a {
	color: #333;
}
section {
	padding: 40px 0;
}
.anchor {
	background: #808080;
	padding: 10px 0;
}
.anchor a {
	padding: 10px 10px 10px 15px;
	margin-right: 20px;
	color: #fff;
}
.breadcrumbs p {
	padding: 10px 0;
	font-size: 12px;
}
.breadcrumbs p a {
	margin-right: 10px;
}

/*------------------------------------------------*/
/*--------------------- top ----------------------*/
/*------------------------------------------------*/
.mvArea {
	position: relative;
}
.mvText {
	text-align: center;
	font-family: '小塚明朝 Pro','Kozuka Min Pro',serif;
	padding-bottom: 60px;
	position: absolute;
	width: 100%;
	height: auto;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
}
.catchL {
	font-size: 36px;
	font-weight: bold;
	margin-bottom: 30px;
}
.catchS {
	font-size: 24px;
}
/*  news  */
.tab {
	display: flex;
	flex-direction: row;
	text-align: center;
	border-bottom: 1px solid #88BD43;
}
.tab__item {
	margin-left: 20px;
}
.tab__item:first-child {
	margin-left: 0;
}
.tab__link {
	display: block;
	text-decoration: none;
	color: #333;
	border-top: 1px solid #88BD43;
	border-right: 1px solid #88BD43;
	border-left: 1px solid #88BD43;
	padding: 5px 10px;
	width: 200px;
	position: relative;
}
.tab__link.on {
	background: #88BD43;
	color: #fff;
}
.tab-body__item {
	padding: 30px 0;
	display: none;
	text-align: center;
}
.tab-body__item.on {
	display: block;
}
.tab-body dl {
	margin-bottom: 10px;
}
.tab-body dl dt {

}
.tab-body dl dt span {
	padding: 0 10px;
	margin: 0 10px;
	color: #fff;
	text-align: center;
}
.categoryA {
	background: #8A2786;
}
.categoryB {
	background: #88BD43;
}
.categoryC {
	background: #32A2D3;
}
.categoryD {
	background: #ED9027;
}
/*  banner01  */
.banner01 ul li {
	margin-bottom: 20px;
}
/*  service  */
.service ul {
	flex-wrap: wrap;
	justify-content: space-between;
}
.service ul li {
	width: calc(100% / 4);
	text-align: center;
	height: 200px;
}
.circle {
	background: url(/img/pc/top/bg_circle.png) no-repeat;
	background-size: contain;
	background-position: center;
	margin-bottom: 30px;
}
.mail {
	text-align: center;
	margin: 30px 0;
}
.mail a {
	position: relative;
	background: #88BD43;
	display: inline-block;
	padding: 20px 70px 20px 100px;
	color: #fff;
}
.mail a:before {
	position: absolute;
	content: '';
	top: 50%;
	left: 60px;
	transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	-moz-transform: translate(0, -50%);
	display: block;
	width: 36px;
	height: 25px;
	background: url(/img/pc/top/mail_icon.png) no-repeat;
	background-size: contain;
}
/*  banner02  */
.banner02 {
	background: #B8DEF3;
	padding: 80px 0;
}

/*------------------------------------------------*/
/*------------------- business -------------------*/
/*------------------------------------------------*/
#business figure.flexBox img,
#business figure.flexBox figcaption {
	width: 50%;
}
#business figure.flexBox figcaption {
	padding: 60px;
}
#business .mvArea img {
	height: 300px;
}
/*------------------------------------------------*/
/*------------------- contact --------------------*/
/*------------------------------------------------*/
#contact .contactArea{

}


/*------------------------------------------------*/
/*-------------------- module --------------------*/
/*------------------------------------------------*/
.ttl_bg {
	background: url(/img/pc/ecosolution/ttl_bg.jpg) no-repeat;
	background-size: cover;
}
.displayN {
	display: none;
}
.textR {
	text-align: right;
}
.textC {
	text-align: center;
}
.textL {
	text-align: left;
}
.spaceBetween {
	flex-wrap: wrap;
	justify-content: space-between;
}
.spaceBetweenN {
	flex-wrap: nowrap;
	justify-content: space-between;
}
.column2 {
	width: calc((100% - 30px) / 2);
}
.column3 {
	width: calc((100% - 60px) / 3);
}
.column4 {
	width: calc((100% - 90px) / 4);
}
.column5 {
	width: calc((100% - 120px) / 5);
}
.column6 {
	width: calc((100% - 150px) / 6);
}
.column40 {
	width: 40%;
}
.column60 {
	width: 60%;
}
.column25 {
	width: 25%;
}
.column75 {
	width: 75%;
	padding-left: 10px;
}
.pl10 {
	padding-left: 10px;
}
.pl30 {
	padding-left: 30px;
}

.arrow_s {
	position: relative;
	display: inline-block;
	padding-left: 12px;
	color: #333;
	text-decoration: none;
}
.arrow_s:before {
	content: '';
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 6px 0 6px 8px;
	border-color: transparent transparent transparent #333;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	-moz-transform: translate(0, -50%);
	margin-top: -2px;
}
.arrow_r {
	position: relative;
	display: inline-block;
	color: #88BD43;
	text-decoration: none;
}
.arrow_r:before {
	content: '';
	width: 6px;
	height: 6px;
	border: 0;
	border-top: solid 2px #88BD43;
	border-right: solid 2px #88BD43;
	position: absolute;
	top: 50%;
	left: 0;
	margin-top: -4px;
	transform: rotate(45deg);
}
.dot {
	position: relative;
}
.dot:before {
	display: inline-block;
	content: "";
	margin-top: 6px;
	margin-right: 7px;
	width: 10px;
	height: 10px;
	vertical-align: top;
	border-radius: 5px;
	background-color: #88BD43;
}
.triangle {
	position: relative;
}
.triangle:before {
	background-color: #fff;
	bottom: 0;
	clip-path: polygon(0 0, 50% 100%, 100% 0);
	content: "";
	width: 12px;
	height: 10px;
	position: absolute;
	top: 0;
	left: 0;
	margin: auto;
}
.triangleG {
	position: relative;
}
.triangleG:before {
	background-color: #88BD43;
	bottom: 0;
	clip-path: polygon(0 0, 50% 50%, 100% 0);
	content: "";
	width: 15px;
	height: 15px;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%, 0);
	-webkit-transform: translate(-50%, 0);
	-moz-transform: translate(-50%, 0);
}
.pdfIcon li{
	position: relative;
	border-bottom: 1px solid #ddd;
}
.pdfIcon li:first-child{
	border-top: 1px solid #ddd;
}
.pdfIcon li:before {
	position: absolute;
	content: '';
	top: 50%;
	left: 0%;
	transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	-moz-transform: translate(0, -50%);
	display: block;
	width: 30px;
	height: 36px;
	background: url(/img/pc/datadownload/pdf_icon.png) no-repeat;
	background-size: contain;
  }
.pdfIcon li a {
	display: block;
	padding: 10px 0 10px 40px;
}
.content img {
	margin-bottom: 30px;
}
.content figure img {
	margin-bottom: 10px;
}
.contBox {
	flex-wrap: nowrap;
	flex-direction: row;
	justify-content: flex-start;
	width: 100%;
}
.contBox .mainArea {
	width: 100%;
}
.contBox .sideArea {
	width: 32%;
	padding-left: 3%;
}
.contBox .sideArea li {
	background: #CCCDCC;
}
.contBox .sideArea li:hover {
	background: #88BD43;
}
.contBox .sideArea li a {
	display: block;
	height: 100%;
	width: 100%;
	padding: 10px 10px 10px 30px;
	margin-bottom: 1px;
}
.contBox .sideArea li a.arrow_s:before {
	left: 15px;
}
.contBox .sideArea li a:hover {
	color: #fff;
}
.campanyCont > li {
	border-bottom: 1px dotted #808080;
	padding: 15px 0;
}
.campanyCont > li:first-child {
	border-top: 1px dotted #808080;
}
.campanyCont li dl {
	width: 100%;
	flex-wrap: wrap;
	align-items: center;
}
.campanyCont li dl dt {
	width: 20%;
	font-weight: bold;
}
.campanyCont li dl dd {
	width: 80%;
}
#message .contBox .flexBox {
	margin: 30px 0;
}
#message .contBox .flexBox li {
	width: calc((100% - 120px) / 5);
}
#message .contBox img {
	margin-bottom: 30px;
}
.content {
	padding: 40px 0;
}
.ceo {
	font-size: 30px;
	text-align: right;
	margin-top: 20px;
}
.ceo span {
	font-size: 10px;
	display: block;
}
.slogan h2 {
	font-size: 40px;
	color: #88BD43;
	margin: 0 0 40px;
}
.slogan h2 span {
	font-size: 18px;
	color: #333;
}
.slogan h3 {
	font-size: 30px;
	color: #88BD43;
	text-align: center;
}
.slogan p {
	text-align: center;
}
#mission .mainArea img {
	margin: 30px;
}
#mission .boderBox {
	padding: 60px;
}
#mission .content .slogan h2 img {
	height: 60px;
	object-fit: contain;
	margin: 0;
}
.boderBox {
	border: 2px solid #88BD43;
	margin-bottom: 40px;
	padding: 20px;
}
.mb40 {
	margin-bottom: 40px;
}
.mb20 {
	margin-bottom: 20px;
}
#history .contBox ul {
	flex-wrap: wrap;
	justify-content: space-between;
}
#history .contBox ul li.rightCont ul {
	flex-wrap: nowrap;
	flex-direction: column;
}
#history h5 {
	overflow: hidden;
}
#history h5 span{
	float: right;
}
#groupcompany .contBox li.mainArea ul .campanyCont {
	padding: 0 0 40px;
}
#groupcompany .contBox li.mainArea ul .campanyCont li {
	width: 100%;
}
#groupcompany h3 span {
	font-size: 20px;
	display: inline-block;
	margin-left: 30px;
}
#groupcompany p span {
	font-weight: bold;
	display: block;
	font-size: 20px;
}
#groupcompany .column2 p.mb20 {
	height: 160px;
}
#groupcompany .campanyCont dd a {
	display: block;
	color: #88BD43;
}
#groupbace .contBox dl {
	width: 100%;
}
#groupbace .contBox dl dt  {
	width: 30%;
}
#groupbace .contBox dl dt span {
	display: block;
	font-size: 12px;
}
#groupbace .contBox dl dd {
	display: block;
	font-size: 14px;
	font-weight: initial;
	width: 70%;
}
#groupbace .contLink li {
	position: relative;
}
#groupbace .contLink .more {
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	-moz-transform: translate(0, -50%);
	font-size: 14px;
	font-weight: initial;
}
#groupbace .contLink .more a {
	color: #88BD43;
	padding: 20px;
}
#groupbace .contLink li {
	border-bottom: 2px solid #333;
	padding: 10px 0;
}
#groupbace .contLink li:first-child {
	border-top: 2px solid #333;
}
#ecosolution .ttlArea {
	flex-wrap: nowrap;
	flex-direction: row;
}
#ecosolution .ttlArea li:first-child {
	width: 15%;
}
.bgcolor {
	background: #B8DEF3;
}
h2.ttlObi {
	margin: 0;
	padding: 60px 0 40px;
	text-align: left;
}
h2.ttlObi .mvArea img {
	height: 40px;
	object-fit: contain;
}
h2.ttlObi .mvArea {
	display: inline-block;
}
h2.ttlObi {
	position: relative;
}
h2.ttlObi p {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	-moz-transform: translate(0, -50%);
	font-size: 20px;
}
.contArea h3 {
	font-size: 24px;
}
.contArea h3 div img {
	height: 40px;
	object-fit: contain;
}
.contArea h3 div {
	display: inline-block;
}
.contArea .ttlArea {
	position: relative;
}
.contArea .ttlArea p {
	position: absolute;
	top: 40px;
	left: 170px;
	font-size: 20px;
	font-weight: bold;
}
.contArea .wrapper > p.mb20 {
	font-size: 20px;
}
.contArea .wrapper > p.mb20 span {
	font-size: 22px;
	font-weight: bold;
}
.emphasis {
	font-size: 16px;
}
.emphasis span {
	font-size: 20px;
	font-weight: bold;
	font-family: '小塚明朝 Pro','Kozuka Min Pro',serif;
	margin-right: 30px;
}
#recycling .content h3 img {
	margin-bottom: 0;
}
.moreArea {
	text-align: center;
	margin: 30px 0;
}
.moreArea a {
	background: #88BD43;
	display: inline-block;
	padding: 20px 70px;
	color: #fff;
	font-weight: bold;
}
.region .contBox .sideArea li a {
	padding: 0;
	margin-bottom: 20px;
}
.colorGreen {
	color: #88BD43;
}
.ecosolution ul {
	flex-wrap: wrap;
	justify-content: space-between;
}
.ecosolution ul li {
	width: calc((100% - 60px) / 3);
	padding: 10px 40px;
}
.bgGlay {
	background: #E6E6E5;
}
.ttlImg {
	display: inline-block;
}
.ttlImg img {
	width: 500px;
}
.contArea ol {
	flex-wrap: wrap;
	flex-direction: column;
	background: #E6DFD0;
	border-radius: 12px;
	padding: 20px;
}
.contArea .dot:before {
	background-color: #333;
}
.contactArea p a {
	font-size: 24px;
	font-weight: bold;
}
.contactForm {
	padding: 40px;
	border: 1px solid #ccc;
	border-radius: 3px;
	background: #fafafa;
}
.contactForm dl {
	margin-bottom: 30px;
}
.contactForm dl dd {
	width: 100%;
	height: 40px;
	border: 1px solid #ccc;
	border-radius: 3px;
	background: #fff;
	font-size: 18px;
	padding: 5px 10px;
}
.contactForm dl dd.height200 {
	height: 200px;
}
.contactForm dl dd.width200 {
	width: 200px;
}
.send {
	width: 200px;
	background: #88BD43;
	text-align: center;
	margin: 0 auto;
	border-radius: 3px;
}
.send a {
	display: block;
	padding: 5px 10px;
	color: #fff;
}
.sdgs .content {
	width: 1080px;
	margin: 0 auto;
}
.sdgs .ttlArea {
	position: relative;
}
.sdgs .ttlArea h3  {
	font-size: 34px;
}
.sdgs .ttlArea img {
	position: absolute;
	bottom: -20px;
	right: 235px;
	width: 300px;
	height: 37px;
}
.csr .column3 {
	padding: 20px;
	border: 1px solid #ddd;
	border-radius: 12px;
}
.recruit .content {
	width: 1080px;
	margin: 0 auto;
}
.recruit ul {
	padding: 30px 0;
}
.recruit ul p {
	margin-bottom: 30px;
}
.recruit ul p span {
	font-size: 18px;
	font-weight: bold;
}

@media screen and (max-width: 768px) {
	.pc {
		display: none;
	}
	.sp {
		display: block;
	}
	.nav {
		position: fixed;
		right: -320px; /* 右から出てくる */
		top: 0;
		width: 300px; /* スマホに収まるサイズ */
		height: 100vh;
		padding-top: 60px;
		background-color: #fff;
		transition: all .6s;
		z-index: 200;
		overflow-y: auto; /* メニューが多くなったらスクロールできるように */
	}
	.hamburger {
		position: absolute;
		right: 15px;
		top: 8px;
		width: 40px; /* クリックしやすい幅 */
		height: 40px; /* クリックしやすい高さ */
		cursor: pointer;
		z-index: 300;
	}
	.nav_list {
		margin: 0;
		padding: 0;
		list-style: none;
	}
	.nav_list li a {
		color: #fff;
	}
	.nav_item {
		text-align: center;
		padding: 0 14px;
	}
	.nav_item a {
		display: block;
		padding: 8px 0;
		text-decoration: none;
		color: #fff;
	}
	.nav_item a:hover {
		background-color: #eee;
	}
	.hamburger_border {
		position: absolute;
		left: 11px;
		width: 18px;
		height: 2px;
		background-color: #333;
		transition: all .6s;
	}
	.hamburger_border_top {
		top: 14px;
	}
	.hamburger_border_center {
		top: 20px;
	}
	.hamburger_border_bottom {
		top: 26px;
	}
	.black_bg {
		position: fixed;
		left: 0;
		top: 0;
		width: 100vw;
		height: 100vh;
		z-index: 100;
		background-color: #333;
		opacity: 0;
		visibility: hidden;
		transition: all .6s;
		cursor: pointer;
	}
	/* 表示された時用のCSS */
	.nav-open .nav {
		right: 0;
	}
	.nav-open .black_bg {
		opacity: .8;
		visibility: visible;
	}
	.nav-open .hamburger_border_top {
		transform: rotate(45deg);
		top: 20px;
	}
	.nav-open .hamburger_border_center {
		width: 0;
		left: 50%;
	}
	.nav-open .hamburger_border_bottom {
		transform: rotate(-45deg);
		top: 20px;
	}
	section,
	.content {
		padding: 5% 2%;
	}
	.spaceBetween,
	.footer_nav {
		flex-wrap: nowrap;
		flex-direction: column;
	}
	.column2,
	.column3,
	.column4 {
		width: 100%;
	}
	.service ul li {
		width: calc((100% - 20px) / 2);
		text-align: center;
		height: auto
	}
	.circle {
		margin: 1%;
		padding: 40px;
	}
	.inner {
		padding: 0 2%;
	}
	.banner02 img {
		margin-bottom: 2%;
	}
	.footer_inner {
		padding: 5% 2%;
	}
	.contBox {
		flex-direction: column;
	}
	.contBox .sideArea {
		width: 100%;
		padding-left: 0;
	}
	.breadcrumbs p {
		padding: 5% 2%;
	}
	#business figure.flexBox img,
	#business figure.flexBox figcaption {
		width: 100%;
	}
	#business figure.flexBox figcaption,
	#mission .boderBox {
		padding: 5%;
	}
	

}