@charset "UTF-8";
/*------------------------------------------------------------

 リパワリング

------------------------------------------------------------*/
/*------------------------------------------------------------
 リパワリングの基礎知識
------------------------------------------------------------*/
.repowering{
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 4em;
}
.repowering .outline{
	display: inline-block;
	padding: 1.5em 3em;
	border: 1px solid #aaa;
	background-color: var(--coloer-white);
	box-shadow: 3px 3px 6px rgba(0,0,0,0.15);
	position: relative;
}
.repowering .outline::after{
	display: inline-block;
	content: "";
	width: 100px;
  height: 40px;
  background: var(--color-main);
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
  position: absolute;
  left: 50%;
  bottom: -41px;
  transform: translateX(-50%);
}
.repowering .outline-title{
	width: 80%;
	max-width: 320px;
	color: var(--color-white);
	font-size: 1.25em;
	font-weight: bold;
	line-height: 44px;
	text-align: center;
	border-radius: 22px;
	background-color: var(--color-main);
	position: absolute;
	top: -22px;
	left: 50%;
	transform: translateX(-50%);
}
.repowering .outline-list{
	margin-top: 1em;
}
.repowering .outline-list li{
	font-size: 1.125em;
	font-weight: bold;
	text-indent: -1.6em;
	margin: 2px 0 0 1.6em;
}
.repowering .point{
	width: 100%;
	text-align: center;
	margin-top: 60px;
}
.repowering .point > .fbox{
	flex-wrap: wrap;
	justify-content: center;
	gap: 1em 1.875em;
}
.repowering .point-title{
	color: var(--color-main);
	font-size: 1.5em;
	font-weight: bold;
	margin-bottom: 0.5em;
}
.repowering .point-item{
	width: 90%;
	max-width: 320px;
	padding: 1em;
	background-color: var(--color-white);
	border: 1px solid var(--color-main);
	border-radius: 10px;
	box-shadow: 3px 3px 0 0 var(--color-main);
}
.repowering .point-item dt{
	font-size: 1.5em;
	font-weight: bold;
	line-height: 1.4;
}
.repowering .point-item dd{
	display: flex;
	align-items: center;
	gap: 5px;
	text-align: left;
	padding: 0.75em 0.5em 0.5em;
}
.repowering .point-item dd img{
	width: 100px;
	height: 100px;
	object-fit: cover;
}
@media screen and (max-width: 559px) {
	.repowering .outline{
		padding: 1.5em 1em;
	}
	.repowering .point-item dd{
		padding-top: 0.5em;
	}
	.repowering .point-item dd img{
		width: 80px;
		height: 80px;
	}
}

/*------------------------------------------------------------
 リパワリングによるメリット
------------------------------------------------------------*/
.merit + .merit{
	margin-top: 3.75em;
}
.merit-header{
	display: flex;
	font-size: 1.125em;
	font-weight: bold;
	margin-bottom: 1em;
	border-radius: 3px;
	background-color: var(--color-lightpink);
}
.merit-number{
	width: 7em;
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--color-white);
	padding: 0 1em;
	margin-right: 0.8em;
	border-radius: 3px 0 0 3px;
	background-color: var(--color-pink);
}
.merit-number span{
	display: inline-block;
}
.merit-title{
	width: calc(100% - 7em);
	color: var(--color-pink);
	padding: 0.3em;
}