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

	sdgs style

------------------------------------------------------------ */
/* table */
.table_sdgs1 {
	width: 100%
}
.table_sdgs1 tr td {
	width: 25%;
}
@media screen and (max-width: 767px) {
	.table_sdgs1 {
		min-width: 760px;
	}
}
/* SDGs icons */
.ul_icon_sdgs, .ul_icon_sdgs > li {
	margin: 0;
	padding: 0;
}
.ul_icon_sdgs {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 100%;
	max-width: 100%;
	list-style-type: none;
}
.ul_icon_sdgs > li {
	flex-basis: 48%;
}
.ul_icon_sdgs > li:nth-child(n+3) {
	margin-top: 4%;
}
.ul_icon_sdgs > li img {
	display: block;
	width: 100%;
}
/* materiality icons */
.ul_icon_materiality, .ul_icon_materiality > li {
	margin: 0;
	padding: 0;
}
.ul_icon_materiality {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 100%;
	max-width: 100%;
	list-style-type: none;
}
.ul_icon_materiality > li img {
	width: auto;
}
@media screen and (max-width: 1000px) {
	.ul_icon_materiality > li {
		flex-basis: 50%;
	}
	.ul_icon_materiality > li:nth-child(n+3) {
		margin-top: 10px;
	}
}
@media screen and (max-width: 500px) {
	.ul_icon_materiality > li {
		flex-basis: 100%;
		margin-top: 10px;
	}
	.ul_icon_materiality > li:nth-child(1) {
		flex-basis: 100%;
		margin-top: 0;
	}
}
/* accordion */
.accordion {
	margin: 1em auto 0;
	max-width: 100%;
	font-size: 18px;
	line-height: 1.33;
}
.accordion .toggle {
	display: none;
}
.accordion .option {
	position: relative;
}
.accordion .title, .accordion .content {
	backface-visibility: hidden;
	transform: translateZ(0);
	transition: all 0.3s;
}
.accordion .title {
	display: block;
	background-color: #009900;
	border-top: 1px solid #fff;
	padding: 20px;
	color: #fff;
	font-weight: bold;
	cursor: pointer;
}
.accordion .title::after, .title::before {
	content: "";
	position: absolute;
	right: 30px;
	top: 20px;
	width: 2px;
	height: 20px;
	background-color: #fff;
	transition: all 0.2s;
}
.accordion .title::after {
	transform: rotate(90deg);
}
.accordion .content {
	max-height: 0;
	overflow: hidden;
}
.accordion .toggle:checked + .title + .content {
	max-height: 4000px;
	transition: all 2s;
}
.accordion .toggle:checked + .title::before {
	transform: rotate(90deg) !important;
}
@media screen and (max-width: 479px) {
	.accordion .title, .accordion .content {
		transition: all 0.1s;
	}
	.accordion .toggle:checked + .title + .content {
		max-height: 100%;
		transition: all 0.3s;
	}
}
/* table_accordion */
.table_accordion {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	border-right: 1px solid #009900;
	border-left: 1px solid #009900;
}
.accordion > .option:last-child .table_accordion {
	border-bottom: 1px solid #009900;
}
.table_accordion th, .table_accordion td {
	border-top: 1px solid #009900;
	padding: 10px;
	font-size: 1.6rem;
	line-height: 1.5;
	text-align: left;
}
.table_accordion tr th {
	width: 25%;
	font-weight: bold;
	border-right: 1px dashed #009900;
}
.table_accordion tr:nth-of-type(1) th, .table_accordion tr:nth-of-type(1) td {
	border-top-style: none;
}
.table_accordion tr td:nth-of-type(1) {
	border-right: 1px dashed #009900;
}
.table_accordion tr td:nth-of-type(2) {
	width: 70px;
}
@media screen and (max-width: 479px) {
	.table_accordion th, .table_accordion td {
		display: block;
		width: 100%;
		padding: 5px;
	}
	.table_accordion tr th {
		width: 100%;
		border-right-style: none;
		padding-bottom: 0;
		font-size: 1.6rem;
		text-align: center;
	}
	.table_accordion tr td {
		border-top-style: none;
		font-size: 1.4rem;
	}
	.table_accordion tr td:nth-of-type(1) {
		border-right-style: none;
		padding-right: 10px;
		padding-bottom: 0;
		padding-left: 10px;
	}
	.table_accordion tr td:nth-of-type(2) {
		width: 100%;
		text-align: center;
	}
	.table_accordion tr td:nth-of-type(2) img {
		width: auto;
		margin-right: auto;
		margin-left: auto;
	}
}
