@charset "utf-8";
/* sdgs CSS
---------------------------------- */
body{
	counter-reset: number 0; 
}
.pagettl {
    background-color: #eaf9cc;
}
 .left-cont .ttl{
	letter-spacing: 0.05em;
	line-height: 1.8;
	transform: translateY(-0.2em);
}

/* sec-intro */
#sec-intro .img  span{
	max-width: 600px;
	height: auto;
	margin: 0 auto;
	aspect-ratio: 300/37;
}

/* sec-example */
#sec-example .sec-style{
	display: flex;
	flex-wrap: wrap;
}
#sec-example .sec-style .left-cont{
	width: 35%;
	min-width: 360px;
	padding-left: 70px;
	position: relative;
}
#sec-example .sec-style .left-cont .num::before{
	content: "";
    position: absolute;
	display: inline-block;
    counter-increment: number 1;
    content: counter(number);
    background-color: #258a0a;
    border-radius: 5px;
	width: 45px;
	line-height: 45px;
    aspect-ratio: 1 / 1;
    top: 0;
    left: 0;
}
#sec-example .sec-style .right-cont{
	flex: 1;
}
.icon-row {
	display: flex;
	flex-wrap: wrap;
}
.icon-row .icon {
	display: block;
	width: 120px;
	aspect-ratio: 1/1;
}
.icon-row .icon:not(:last-child) {
	margin-right: 20px;
}
.exp .exp-list{
	gap: 20px 60px;
}
.exp .exp-list li{
	position: relative;
	padding-left: 30px;
}
.exp .exp-list li::before{
	content: "";
	position: absolute;
	width: 20px;
	height: 20px;
	border-radius: 5px;
	border: solid 2px #b2b2b2;
	top: 0;
	left: 0;
}
.exp .exp-list li::after{
	content:"";
	position: absolute;
	width: 19px;
	height: 10px;
	border-left: 3px solid #e25333;
	border-bottom: 3px solid #e25333;
	transform: rotate(-45deg);
	top: 2px;
	left: 5px;
}

@media (max-width: 896px) {
	.pc-only-mm {display: none;}
	#sec-example .sec-style .left-cont{
		width: 100%;
		min-width: 0;
		padding-bottom: 10px;
	}
}

@media (max-width: 480px) {
	#sec-example .sec-style .left-cont{
		padding-left: 55px;
	}
	#sec-example .sec-style .left-cont .num::before{
		width: 40px;
		line-height: 40px;
	}
	.left-cont .ttl{
		margin-right: 0;
	}
	.exp .exp-list li{
		width: 100%;
	}
}































