@charset "UTF-8";

.service__content {
	width: 100%;
	max-width: 990px;
	margin: auto;
	padding: 0 15px;
}
.service__content h3 {
	margin-top: 60px;
}
.service__content h3::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    margin: 15px auto 0;
    background-image: linear-gradient(to left, var(--gradation-light-color) 0%, var(--gradation-deep-color) 100%);
}
.service__content .catch {
	font-size: 2rem;
	line-height: 1.8;
	font-family: "M PLUS 1p", serif;
	font-weight: 500;
	text-align: center;
	color: #EA5614;
	margin-top: 30px;
}
.service__content .read {
	font-size: 1.6rem;
	line-height: 2;
	margin-top: 40px;
	text-align: left;
}
.service__content .read small {
    color: #EA5515;
    font-size: 1.2rem;
    font-weight: 500;
    position: relative;
    top: -5px;
    display: inline;
    padding-right: 5px;
	padding-left: 1px;
}
.service__content .read span {
	position: relative;
	font-family: "M PLUS 1p", serif;
	font-weight: 500;
	display: inline;
	padding: 2px 8px;
	margin: 0 6px;
	color: #fff;
}
.service__content .read span.solar {
	background: -webkit-linear-gradient(transparent 0%, rgba(237, 121, 29, 1) 0%);
    background: -o-linear-gradient(transparent 0%, rgba(237, 121, 29, 1) 0%);
    background: linear-gradient(transparent 0%, rgba(237, 121, 29, 1) 0%);
}
.service__content .read span.lease {
	background: -webkit-linear-gradient(transparent 0%, rgba(78, 166, 54, 1) 0%);
    background: -o-linear-gradient(transparent 0%, rgba(78, 166, 54, 1) 0%);
    background: linear-gradient(transparent 0%, rgba(78, 166, 54, 1) 0%);
}
.service__content .read span.denki {
	background: -webkit-linear-gradient(transparent 0%, rgba(37, 120, 190, 1) 0%);
    background: -o-linear-gradient(transparent 0%, rgba(37, 120, 190, 1) 0%);
    background: linear-gradient(transparent 0%, rgba(37, 120, 190, 1) 0%);
}
.service__content .care {
	margin-top: 20px;
	font-size: 1.3rem;
}
.service__content .care li {
	counter-increment: custom-counter;
	position: relative;
    padding-left: 20px;
    margin-top: 5px;
}
.service__content .care li::before {
    content: "*" counter(custom-counter);
    position: absolute;
    left: 0;
    top: 0;
    color: #EA5515;
	font-size: 1.3rem;
    font-weight: 500;
}
.service-area {
	display: flex;
	background-color: #F5F7F9;
	border-radius: 7px;
	overflow: hidden;
	margin-top: 40px;
}
.service-area .ttl {
	width: 180px;
	background-color: #F3B33F;
	color: #fff;
	font-size: 1.8rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: "M PLUS 1p", serif;
	font-weight: 500;
}
.service-area p {
	width: calc(100% - 180px);
	padding: 20px 30px;
}
.service-flow {
	margin-top: 80px;
}
@media only screen and (max-width: 768px) {
	.service__content {
		width: 100%;
		max-width: 990px;
		margin: auto;
		padding: 0 15px;
	}
	.service__content .catch {
		font-size: 1.6rem;
		line-height: 1.8;
		font-family: "M PLUS 1p", serif;
		font-weight: 500;
		text-align: left;
		color: #EA5614;
	}
	.service__content .read {
		font-size: 1.4rem;
		line-height: 2;
		margin-top: 30px;
		text-align: left;
	}
	.service__content .read span {
		position: relative;
		font-family: "M PLUS 1p", serif;
		font-weight: 500;
		display: inline;
		padding: 2px 8px;
		margin: 0 6px;
		color: #fff;
	}
	.service__content .read span.solar {
		background: -webkit-linear-gradient(transparent 0%, rgba(237, 121, 29, 1) 0%);
		background: -o-linear-gradient(transparent 0%, rgba(237, 121, 29, 1) 0%);
		background: linear-gradient(transparent 0%, rgba(237, 121, 29, 1) 0%);
	}
	.service__content .read span.lease {
		background: -webkit-linear-gradient(transparent 0%, rgba(78, 166, 54, 1) 0%);
		background: -o-linear-gradient(transparent 0%, rgba(78, 166, 54, 1) 0%);
		background: linear-gradient(transparent 0%, rgba(78, 166, 54, 1) 0%);
	}
	.service__content .read span.denki {
		background: -webkit-linear-gradient(transparent 0%, rgba(37, 120, 190, 1) 0%);
		background: -o-linear-gradient(transparent 0%, rgba(37, 120, 190, 1) 0%);
		background: linear-gradient(transparent 0%, rgba(37, 120, 190, 1) 0%);
	}
	.service__content .care {
		margin-top: 20px;
		font-size: 1.3rem;
	}
	.service__content .care li {
		counter-increment: custom-counter;
		position: relative;
		padding-left: 20px;
		margin-top: 5px;
	}
	.service__content .care li::before {
		content: "*" counter(custom-counter);
		position: absolute;
		left: 0;
		top: 0;
		color: #EA5515;
		font-size: 1.3rem;
		font-weight: 500;
	}
	.service-area {
		display: block;
		background-color: #F5F7F9;
		border-radius: 5px;
		overflow: hidden;
		margin-top: 40px;
	}
	.service-area .ttl {
		width: 100%;
		background-color: #F3B33F;
		color: #fff;
		font-size: 1.6rem;
		display: flex;
		align-items: center;
		justify-content: center;
		font-family: "M PLUS 1p", serif;
		font-weight: 500;
	}
	.service-area p {
		width: 100%;
		padding: 15px;
		font-size: 1.4rem;
	}
	.service-flow {
		margin-top: 60px;
	}
}


@media only screen and (max-width: 540px) {

}











.service-info__content {
	width: 100%;
	max-width: 1270px;
	padding: 0 15px;
	margin: 60px auto 0;
}
.service-info__grid {
	display: flex;
	align-items: flex-start;
}
.service-info__anchor {
	position: sticky;
    top: 120px;
    bottom: 0;
	width: 100%;
	max-width: 310px;
	margin-right: 50px;
	margin-top: 60px;
}
.service-info__anchor ul {
	
}
.service-info__anchor ul li + li {
	margin-top: 10px;
}
.service-info__anchor ul li .btn {
	display: flex;
	align-items: center;
	position: relative;
	width: 100%;
	height: 96px;
    background-color: rgba(245, 247, 249, 1);
	padding: 15px 20px 15px 20px;
	color: #333;
	overflow: hidden;
	border-radius: 7px;
	font-family: "M PLUS 1p", serif;

	justify-content: unset;
    flex-wrap: unset;
    margin: unset;
}
.service-info__anchor ul li .btn:hover,
.service-info__anchor ul li .btn.active {
	color: #fff;
    background-color: rgba(245, 247, 249, 0);
    transition: .3s;
}
.service-info__anchor ul li .btn::before {
    content: '';
    position: absolute;
    top: calc(50% + 1px);
    right: 20px;
    transform: translateY(-50%);
    width: 22px;
    height: 9px;
    background: url(../img/allowO.svg) no-repeat center / cover;
    transition: .3s;
}
.service-info__anchor ul li .btn.orange::before {
	background: url(../img/allowO.svg) no-repeat center / cover;
}
.service-info__anchor ul li .btn.green::before {
	background: url(../img/allowG.svg) no-repeat center / cover;
}
.service-info__anchor ul li .btn.blue::before {
	background: url(../img/allowV.svg) no-repeat center / cover;
}
.service-info__anchor ul li .btn.persimmon::before {
	background: url(../img/allowP.svg) no-repeat center / cover;
}
.service-info__anchor ul li .btn::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(45deg, #EC6C00, #F3B33F);
    opacity: 0;
    transition: .3s;
    z-index: -1;
}
.service-info__anchor ul li .btn:hover::before,
.service-info__anchor ul li .btn.active::before {
	background: url(../img/allowW.svg) no-repeat center / cover;
    transition: .3s;
}
.service-info__anchor ul li .btn:hover::after,
.service-info__anchor ul li .btn.active::after {
    opacity: 1;
    transition: .3s;
}
.service-info__anchor ul li .btn figure {
	width: 100%;
	max-width: 60px;
	margin-right: 15px;
}
.service-info__anchor ul li .btn figure img {
	display: block;
}
.service-info__anchor ul li .btn .text {

}
.service-info__anchor ul li .btn span {
	display: block;
	font-weight: 500;
	line-height: 1.6;
}
.service-info__anchor ul li .btn span.ttl {
	font-size: 1.8rem;
}
.service-info__anchor ul li .btn.orange span.ttl {
	color: #ED7A1D;
}
.service-info__anchor ul li .btn.green span.ttl {
	color: #4EA635;
}
.service-info__anchor ul li .btn.blue span.ttl {
	color: #2778BE;
}
.service-info__anchor ul li .btn.persimmon span.ttl b {
	color: #EA5614;
}
.service-info__anchor ul li .btn span.ttl b {
	transition: .3s;
}
.service-info__anchor ul li .btn:hover span.ttl b,
.service-info__anchor ul li .btn.active span.ttl b {
	transition: .3s;
	color: #fff;
}
.service-info__anchor ul li .btn span.sub {
	font-size: 1.4rem;
	margin-left: -7px;
}

.service-info__frame {
	width: calc(100% - 360px);
}
.service-info__section {
	padding-top: 120px;
	margin-top: -60px;
}
.service-info__border {
	overflow: hidden;
	border-radius: 10px;
	border: 2px solid #ED7A1D;
}
.service-info__section#solar .service-info__border,
.service-info__section#lease-A .service-info__border {
	border: 2px solid #ED7A1D;
}
.service-info__section#lease-B .service-info__border {
	border: 2px solid #4EA635;
}
.service-info__section#denki .service-info__border {
	border: 2px solid #2578BE;
}
.service-info__section#after .service-info__border {
	border: 2px solid #EA5614;
}
.service-info__section h3.ttl {
	color: #fff;
	font-size: 2.1rem;
	text-align: center;
	line-height: 1;
	padding: 15px;
	background-color: #ED7A1D;
	font-family: "M PLUS 1p", serif;
	font-weight: 500;
}
.service-info__section#solar h3.ttl,
.service-info__section#lease-A h3.ttl {
	background-color: #ED7A1D;
}
.service-info__section#lease-B h3.ttl {
	background-color: #4EA635;
}
.service-info__section#denki h3.ttl {
	background-color: #2578BE;
}
.service-info__section#after h3.ttl {
	background-color: #EA5614;
}
@media only screen and (max-width: 768px) {
	.service-info__content {
		width: 100%;
		max-width: 1270px;
		padding: 0 15px;
		margin: 0 auto;
	}
	.service-info__grid {
		display: flex;
		flex-wrap: wrap;
		align-items: unset;
	}
	.service-info__anchor {
		position: static;
		top: 0;
		bottom: 0;
		width: 100%;
		max-width: 100%;
		margin-right: 0;
		margin-top: 60px;
	}
	.service-info__anchor ul {
		
	}
	.service-info__anchor ul li + li {
		margin-top: 10px;
	}
	.service-info__anchor ul li .btn {
		display: flex;
		align-items: center;
		position: relative;
		width: 100%;
		height: 100px;
		background-color: rgba(245, 247, 249, 1);
		padding: 15px 20px 15px 20px;
		color: #333;
		overflow: hidden;
		border-radius: 7px;
	}
	.service-info__anchor ul li .btn:hover {
		color: #fff;
		background-color: rgba(245, 247, 249, 0);
		transition: .3s;
	}
	.service-info__anchor ul li .btn::before {
		content: '';
		position: absolute;
		top: calc(50% + 1px);
		right: 20px;
		transform: translateY(-50%);
		width: 22px;
		height: 9px;
		background: url(../img/allowO.svg) no-repeat center / cover;
		transition: .3s;
	}
	.service-info__anchor ul li .btn::after {
		content: '';
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
		background: linear-gradient(45deg, #EC6C00, #F3B33F);
		opacity: 0;
		transition: .3s;
		z-index: -1;
	}
	.service-info__anchor ul li .btn:hover::after {
		opacity: 1;
		transition: .3s;
	}
	.service-info__anchor ul li .btn figure {
		width: 100%;
		max-width: 60px;
		margin-right: 15px;
	}
	.service-info__anchor ul li .btn figure img {
		display: block;
	}
	.service-info__anchor ul li .btn .text {

	}
	.service-info__anchor ul li .btn span {
		display: block;
		font-weight: bold;
		line-height: 1.6;
	}
	.service-info__anchor ul li .btn span.ttl {
		font-size: 1.8rem;
	}
	.service-info__anchor ul li .btn span.ttl b {
		transition: .3s;
	}
	.service-info__anchor ul li .btn:hover span.ttl b {
		transition: .3s;
		color: #fff;
	}
	.service-info__anchor ul li .btn span.sub {
		font-size: 1.4rem;
		margin-left: -7px;
	}

	.service-info__frame {
		width: 100%;
	}
	.service-info__section {
		padding-top: 120px;
		margin-top: -60px;
	}
	.service-info__border {
		overflow: hidden;
		border-radius: 10px;
		border: 2px solid #ED7A1D;
	}
	.service-info__section#solar .service-info__border,
	.service-info__section#lease-A .service-info__border {
		border: 2px solid #ED7A1D;
	}
	.service-info__section#lease-B .service-info__border {
		border: 2px solid #4EA635;
	}
	.service-info__section#denki .service-info__border {
		border: 2px solid #2578BE;
	}
	.service-info__section#after .service-info__border {
		border: 2px solid #EA5614;
	}
	.service-info__section h3.ttl {
		color: #fff;
		font-size: 1.8rem;
		text-align: center;
		line-height: 1;
		padding: 12px 10px;
		background-color: #ED7A1D;
	}
	.service-info__section#solar h3.ttl,
	.service-info__section#lease-A h3.ttl {
		background-color: #ED7A1D;
	}
	.service-info__section#lease-B h3.ttl {
		background-color: #4EA635;
	}
	.service-info__section#denki h3.ttl {
		background-color: #2578BE;
	}
	.service-info__section#after h3.ttl {
		background-color: #EA5614;
	}
}








.service-info__section .inner {
	padding: 50px;
}
.service-info__section p {
}
.service-info__list {
	margin-top: 30px;
	background-color: #F5F7F9;
	border-radius: 10px;
	padding: 30px 20px;
}
.service-info__list li {
	display: flex;
	align-items: flex-start;
}
.service-info__list li + li {
	margin-top: 20px;
}
.service-info__list li span {
	display: block;
	width: 100px;
	margin-right: 10px;
	background-color: #EC6C00;
	border-radius: calc(infinity * 1px);
	color: #fff;
	text-align: center;
	font-family: "Montserrat", sans-serif;
	font-weight: 500;
}
.service-info__section#solar .service-info__list li span {
	background-color: #EC6C00;
}
.service-info__section#lease-B .service-info__list li span {
	background-color: #4EA635;
}
.service-info__section#denki .service-info__list li span {
	background-color: #2578BE;
}
.service-info__section#after .service-info__list li span {
	background-color: #EA5614;
}
.service-info__list li p {
	width: calc(100% - 100px);
	margin-top: 0;
}
.service-info__list li p b {
	color: #EA5614;
}
@media only screen and (max-width: 1040px) {
	.service-info__section .inner {
		padding: 30px;
	}
}
@media only screen and (max-width: 768px) {
	.service-info__section .inner {
		padding: 30px 15px;
	}
	.service-info__section p {
	}
	.service-info__list {
		margin-top: 30px;
		background-color: #F5F7F9;
		border-radius: 10px;
		padding: 20px;
	}
	.service-info__list li {
		display: block;
		align-items: unset;
	}
	.service-info__list li + li {
		margin-top: 20px;
	}
	.service-info__list li span {
		display: block;
		width: 100px;
		margin-right: 10px;
		background-color: #EC6C00;
		border-radius: calc(infinity * 1px);
		color: #fff;
		text-align: center;
		line-height: 1.6;
	}
	.service-info__section#solar .service-info__list li span {
		background-color: #EC6C00;
	}
	.service-info__section#lease-B .service-info__list li span {
		background-color: #4EA635;
	}
	.service-info__section#denki .service-info__list li span {
		background-color: #2578BE;
	}
	.service-info__section#after .service-info__list li span {
		background-color: #EA5614;
	}
	.service-info__list li p {
		width: 100%;
		margin-top: 5px;
	}
	.service-info__list li p b {
		color: #EA5614;
	}
}





.solar-reason {
	margin-top: 50px;
	font-family: "M PLUS 1p", serif;
}
.solar-reason .reason {
	position: relative;
	display: block;
	background-color: #EA5614;
	font-size: 2.1rem;
	font-weight: bold;
	color: #fff;
	width: 320px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	border-radius: calc(infinity * 1px);
	margin: auto;
}
.solar-reason .reason::before {
	content: '';
	width: 15px;
	height: 14px;
	background-color: #EA5614;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: calc(100% - 1px);
	clip-path: polygon(50% 100%, 0 0, 100% 0);
}
.solar-reason .sub {
	text-align: center;
	font-size: 2.1rem;
	font-weight: bold;
	margin-top: 25px;
}
.solar-reason .grid {
	color: #EA5614;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	font-weight: bold;
	line-height: 1;
	margin-top: 10px;
}
.solar-reason .grid small {
	font-size: 2.8rem;
	display: block;
	padding-bottom: 5px;
}
.solar-reason .grid .num {
	font-size: 5.6rem;
	font-family: "Montserrat", sans-serif;
	padding: 0 5px 0 10px;
	letter-spacing: 2px;
}
.service-info__section#solar .image {
	width: 100%;
	max-width: 680px;
	margin: 50px auto 0;
}
.service-info__section .sunto-denki {
	width: auto;
	margin: 40px -30px 0;
}
@media only screen and (max-width: 768px) {
	.solar-reason {
		margin-top: 40px;
	}
	.solar-reason .reason {
		position: relative;
		display: block;
		background-color: #EA5614;
		font-size: 1.5rem;
		font-weight: bold;
		color: #fff;
		width: 250px;
		height: 40px;
		line-height: 40px;
		text-align: center;
		border-radius: calc(infinity * 1px);
		margin: auto;
	}
	.solar-reason .reason::before {
		content: '';
		width: 15px;
		height: 14px;
		background-color: #EA5614;
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		top: calc(100% - 1px);
		clip-path: polygon(50% 100%, 0 0, 100% 0);
	}
	.solar-reason .sub {
		text-align: center;
		font-size: 1.5rem;
		font-weight: bold;
		margin-top: 25px;
	}
	.solar-reason .grid {
		color: #EA5614;
		display: flex;
		justify-content: center;
		align-items: flex-end;
		font-weight: bold;
		line-height: 1;
		margin-top: 10px;
	}
	.solar-reason .grid small {
		font-size: 2.2rem;
		display: block;
		padding-bottom: 5px;
	}
	.solar-reason .grid .num {
		font-size: 4.4rem;
		font-family: "Montserrat", sans-serif;
		padding: 0 5px 0 10px;
		letter-spacing: 2px;
	}
	.service-info__section#solar .image {
		width: 100%;
		max-width: 480px;
		margin: 30px auto 0;
	}
	.service-info__section .sunto-denki {
		width: auto;
		margin: 40px -30px 0;
	}
}








.chikuden__grid {
	width: 100%;
	max-width: 720px;
	margin: 40px auto 0;
	display: flex;
	align-items: center;
	gap: 30px;
}
.chikuden__grid .chikuden__item {
	width: calc(50% - 15px);
}
.comparison-sunto {
	width: 100%;
	max-width: 500px;
	margin: 50px auto 0;
	font-family: "M PLUS 1p", serif;
}
.comparison-sunto__frame {
	background-color: #FDF1EB;
	border-radius: 15px;
	padding: 30px;
}
.comparison-sunto__ttl {
	display: block;
	text-align: center;
}
.comparison-sunto__ttl span {
	display: inline-block;
	padding: 7px 25px;
	background-color: #FFDD65;
	line-height: 1;
	border-radius: calc(infinity * 1px);
	color: #EA5614;
	font-size: 1.8rem;
	font-weight: bold;
}
.comparison-sunto__sunto {
	font-size: 2.2rem;
	font-weight: bold;
	display: block;
	text-align: center;
	color: #EA5614;
	margin-top: 15px;
}
.comparison-sunto__grid {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	margin-top: 15px;
}
.comparison-sunto__grid .all {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	width: 115px;
	line-height: 1.3;
	color: #EA5614;
	border: 1px solid #EA5614;
	padding: 17px 15px;
	margin-right: 20px;
	font-size: 1.6rem;
	font-weight: bold;
}
.comparison-sunto__price {
	width: auto;
	margin-top: -5px;
}
.comparison-sunto__price .price {
	display: flex;
	align-items: flex-end;
}
.comparison-sunto__price .price span {
	line-height: 1;
	display: block;
	color: #EA5614;
}
.comparison-sunto__price .price .num {
	font-size: 5.6rem;
	font-family: "Montserrat", sans-serif;
	font-weight: bold;
}
.comparison-sunto__price .price .en {
	font-size: 2rem;
	font-weight: bold;
	padding: 0 0 10px 5px;
}
.comparison-sunto__price p {
	font-size: 1.8rem;
}

.comparison__grid {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-top: 50px;
	font-family: "M PLUS 1p", serif;
}
.comparison__item {
	position: relative;
	width: calc(50% - 10px);
	background-color: #F5F7F9;
	border-radius: 15px;
}
.comparison__item .ttl {
	display: inline-block;
	background-color: #EA5614;
	border-radius: calc(infinity * 1px);
	color: #fff;
	width: 120px;
	height: 40px;
	line-height: 40px;
	font-size: 2rem;
	font-weight: 500;
	text-align: center;
	position: absolute;
	top: -15px;
	left: 50%;
	transform: translateX(-50%);
}
.comparison__item.A .ttl {
	background-color: #2578BE;
}
.comparison__item.B .ttl {
	background-color: #4EA635;
}
.comparison__inner {
	padding: 40px 30px 30px;
}
.comparison__inner .grid {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	margin-top: 15px;
}
.comparison__item .all {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	width: 70px;
	line-height: 1.3;
	color: #EA5614;
	border: 1px solid #EA5614;
	padding: 15px 15px 13px;
	margin-right: 15px;
	font-size: 1.6rem;
	font-weight: bold;
	white-space: nowrap;
}
.comparison__item.A .all {
	color: #2578BE;
	border: 1px solid #2578BE;
}
.comparison__item.B .all {
	color: #4EA635;
	border: 1px solid #4EA635;
}
.comparison__price {
	width: auto;
	margin-top: -5px;
}
.comparison__price .price {
	display: flex;
	align-items: flex-end;
}
.comparison__price .price span {
	line-height: 1;
	display: block;
}
.comparison__price .price .num {
	font-size: 4rem;
	font-family: "Montserrat", sans-serif;
	font-weight: bold;
}
.comparison__price .price .en {
	font-size: 1.8rem;
	font-weight: bold;
	padding: 0 0 5px 5px;
}
.comparison__price p {
	font-size: 1.8rem;
	margin-top: 7px;
}
@media only screen and (max-width: 1040px) {
	.comparison-sunto__grid {
		display: flex;
		flex-wrap: wrap;
	}
	.comparison-sunto__grid .all {
		display: flex;
		align-items: center;
		justify-content: center;
		text-align: center;
		width: 200px;
		line-height: 1.3;
		color: #EA5614;
		border: 1px solid #EA5614;
		padding: 8px 15px 5px;
		margin-right: 20px;
		font-size: 1.6rem;
		font-weight: bold;
		margin: auto;
	}
	.only-pc.comparison-br {
		display: none!important;
	}
	.comparison-sunto__price {
        width: auto;
        margin-top: 10px;
    }

	.comparison__grid {
		gap: 40px;
		margin-top: 40px;
	}
	.comparison__item {
		position: relative;
		width: 100%;
		background-color: #F5F7F9;
		border-radius: 15px;
	}
}
@media only screen and (max-width: 768px) {
	.chikuden__grid {
		width: 100%;
		max-width: 450px;
		margin: 20px auto 0;
		display: flex;
		flex-wrap: wrap;
		align-items: unset;
		justify-content: center;
		gap: 15px;
		padding: 0 20px;
	}
	.chikuden__grid .chikuden__item {
		width: 100%;
	}
	.comparison-sunto {
		width: 100%;
		max-width: 500px;
		margin: 50px auto 0;
	}
	.comparison-sunto__frame {
		background-color: #FDF1EB;
		border-radius: 15px;
		padding: 25px 15px;
	}
	.comparison-sunto__ttl {
		display: block;
		text-align: center;
		white-space: nowrap;
	}
	.comparison-sunto__ttl span {
		display: inline-block;
		padding: 7px 25px;
		background-color: #FFDD65;
		line-height: 1;
		border-radius: calc(infinity * 1px);
		color: #EA5614;
		font-size: 1.5rem;
		font-weight: bold;
	}
	.comparison-sunto__sunto {
		font-size: 2rem;
		font-weight: bold;
		display: block;
		text-align: center;
		color: #EA5614;
		margin-top: 15px;
	}
	.comparison-sunto__grid {
		display: block;
		align-items: flex-start;
		justify-content: center;
		margin-top: 15px;
	}
	.comparison-sunto__grid .all {
		display: flex;
		align-items: center;
		justify-content: center;
		text-align: center;
		width: 200px;
		line-height: 1.3;
		color: #EA5614;
		border: 1px solid #EA5614;
		padding: 8px 15px 5px;
		margin-right: 20px;
		font-size: 1.6rem;
		font-weight: bold;
		margin: auto;
	}
	.comparison-sunto__price {
		width: auto;
		margin-top: 10px;
	}
	.comparison-sunto__price .price {
		display: flex;
		align-items: flex-end;
		justify-content: center;
	}
	.comparison-sunto__price .price span {
		line-height: 1;
		display: block;
		color: #EA5614;
	}
	.comparison-sunto__price .price .num {
		font-size: 5.2rem;
		font-family: "Montserrat", sans-serif;
		font-weight: bold;
	}
	.comparison-sunto__price .price .en {
		font-size: 2rem;
		font-weight: bold;
		padding: 0 0 10px 5px;
	}
	.comparison-sunto__price p {
		font-size: 1.5rem;
		margin-top: 10px;
		text-align: center;
	}

	.comparison__grid {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: 40px;
		margin-top: 40px;
	}
	.comparison__item {
		position: relative;
		width: 100%;
		max-width: 500px;
		background-color: #F5F7F9;
		border-radius: 15px;
	}
	.comparison__item .ttl {
		display: inline-block;
		background-color: #EA5614;
		border-radius: calc(infinity * 1px);
		color: #fff;
		width: 120px;
		height: 38px;
		line-height: 38px;
		font-size: 1.8rem;
		font-weight: bold;
		text-align: center;
		position: absolute;
		top: -15px;
		left: 50%;
		transform: translateX(-50%);
	}
	.comparison__item.A .ttl {
		background-color: #2578BE;
	}
	.comparison__item.B .ttl {
		background-color: #4EA635;
	}
	.comparison__inner {
		padding: 30px;
	}
	.comparison__inner .grid {
		display: block;
		align-items: flex-start;
		justify-content: center;
		margin-top: 15px;
	}
	.comparison__item .all {
		display: flex;
		align-items: center;
		justify-content: center;
		text-align: center;
		width: 110px;
		line-height: 1.3;
		color: #EA5614;
		border: 1px solid #EA5614;
		padding: 8px 15px 5px;
		margin-right: 0;
		font-size: 1.6rem;
		font-weight: bold;
		margin: auto;
	}
	.comparison__item.A .all {
		color: #2578BE;
		border: 1px solid #2578BE;
	}
	.comparison__item.B .all {
		color: #4EA635;
		border: 1px solid #4EA635;
	}
	.comparison__price {
		width: auto;
		margin-top: 10px;
	}
	.comparison__price .price {
		display: flex;
		align-items: flex-end;
		justify-content: center;
	}
	.comparison__price .price span {
		line-height: 1;
		display: block;
	}
	.comparison__price .price .num {
		font-size: 4rem;
		font-family: "Montserrat", sans-serif;
		font-weight: bold;
	}
	.comparison__price .price .en {
		font-size: 1.8rem;
		font-weight: bold;
		padding: 0 0 5px 5px;
	}
	.comparison__price p {
		font-size: 1.5rem;
		margin-top: 7px;
		text-align: center;
	}
}









.ene-sav__grid {
	display: flex;
	gap: 10px;
	margin-top: 50px;
	font-family: "M PLUS 1p", serif;
}
.ene-sav__item {
	position: relative;
	width: calc(33.3333% - 6.66666667px);
	background-color: #F5F7F9;
	border-radius: 10px;
}
.ene-sav__item .ttl {
	display: inline-block;
	background-color: #4EA635;
	border-radius: calc(infinity * 1px);
	color: #fff;
	width: auto;
	height: 40px;
	line-height: 40px;
	font-size: 2rem;
	font-weight: 500;
	text-align: center;
	position: absolute;
	top: -15px;
	left: 50%;
	transform: translateX(-50%);
	padding: 0 20px;
	white-space: nowrap;
}
.ene-sav__inner {
	padding: 50px 20px 30px;
}
.ene-sav__img {
	position: relative;
	width: 100%;
	max-width: 120px;
	margin: auto;
	z-index: 0;
}
.ene-sav__img::before {
	content: '';
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background-color: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: -1;
}
.ene-sav__img img {
	display: block;
}
.ene-sav__item p {
	text-align: center;
	font-size: 1.6rem;
	font-weight: bold;
	margin-top: 15px;
	line-height: 1.5;
}
.ene-sav__item .all {
	display: block;
	text-align: center;
	width: 100%;
	max-width: 220px;
	height: 30px;
	line-height: 30px;
	border: 1px solid #EA5614;
	color: #EA5614;
	margin: 20px auto 0;
	font-size: 1.6rem;
	font-weight: bold;
}
.ene-sav__item .price {
	display: block;
	font-size: 3.3rem;
	font-family: "Montserrat", sans-serif;
	font-weight: bold;
	line-height: 1.1;
	text-align: center;
	margin-top: 10px;
	color: #EA5614
}
.ene-sav__item .price .min {
	font-size: 1.8rem;
	display: inline;
	padding-left: 5px;
}
.ene-sav__item .price + p {
	font-size: 1.5rem;
	margin-top: 5px;
	font-weight: normal;
}

.ene-sav__item.EcoCute .price {
	font-size: 3.8rem;
}

.ene-sav__item.LED p {
	font-size: 1.5rem;
	margin-top: 5px;
}
.ene-sav__item.LED .all {
	margin-top: 10px;
}
@media only screen and (max-width: 1040px) {
	.ene-sav__grid {
		display: flex;
		flex-wrap: wrap;
		gap: 40px;
		margin-top: 40px;
	}
	.ene-sav__item {
		position: relative;
		width: 100%;
		background-color: #F5F7F9;
		border-radius: 10px;
	}
}
@media only screen and (max-width: 768px) {
	.ene-sav__grid {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: 40px;
		margin-top: 40px;
	}
	.ene-sav__item {
		position: relative;
		width: 100%;
		max-width: 500px;
		background-color: #F5F7F9;
		border-radius: 10px;
	}
	.ene-sav__item .ttl {
		display: inline-block;
		background-color: #4EA635;
		border-radius: calc(infinity * 1px);
		color: #fff;
		width: auto;
		height: 38px;
		line-height: 38px;
		font-size: 1.8rem;
		font-weight: bold;
		text-align: center;
		position: absolute;
		top: -15px;
		left: 50%;
		transform: translateX(-50%);
		padding: 0 20px;
		white-space: nowrap;
	}
	.ene-sav__inner {
		padding: 40px 20px 30px;
	}
	.ene-sav__img {
		position: relative;
		width: 100%;
		max-width: 100px;
		margin: auto;
		z-index: 0;
	}
	.ene-sav__img::before {
		content: '';
		width: 100%;
		height: 100%;
		border-radius: 50%;
		background-color: #fff;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
		z-index: -1;
	}
	.ene-sav__img img {
		display: block;
	}
	.ene-sav__item p {
		text-align: center;
		font-size: 1.6rem;
		font-weight: bold;
		margin-top: 15px;
		line-height: 1.5;
	}
	.ene-sav__item .all {
		display: block;
		text-align: center;
		width: 100%;
		max-width: 220px;
		height: 30px;
		line-height: 30px;
		border: 1px solid #EA5614;
		color: #EA5614;
		margin: 15px auto 0;
		font-size: 1.6rem;
		font-weight: bold;
	}
	.ene-sav__item .price {
		display: block;
		font-size: 3.3rem;
		font-family: "Montserrat", sans-serif;
		font-weight: bold;
		line-height: 1.1;
		text-align: center;
		margin-top: 10px;
		color: #EA5614
	}
	.ene-sav__item .price .min {
		font-size: 1.5rem;
		display: inline;
		padding-left: 0;
	}
	.ene-sav__item .price + p {
		font-size: 1.5rem;
		margin-top: 10px;
		font-weight: normal;
	}

	.ene-sav__item.EcoCute .price {
		font-size: 3.8rem;
	}

	.ene-sav__item.LED p {
		font-size: 1.5rem;
		margin-top: 15px;
	}
	.ene-sav__item.LED .all {
		margin-top: 15px;
	}
}






.service-info__message {
	font-size: 2rem;
	font-weight: 500;
	text-align: center;
	font-family: "M PLUS 1p", serif;
}
.service-info__message strong {
	display: inline-block;
	font-size: 3.4rem;
	color: #EA5614;
	line-height: 1.5;
	padding-top: 5px;
}

.contract__grid {
	display: flex;
	gap: 10px;
	margin-top: 50px;
	font-family: "M PLUS 1p", serif;
}
.contract__item {
	position: relative;
	width: calc(33.3333% - 6.66666667px);
	background-color: #F5F7F9;
	border-radius: 10px;
}
.contract__item .ttl {
	display: inline-block;
	background-color: #EA5614;
	border-radius: calc(infinity * 1px);
	color: #fff;
	width: auto;
	height: 40px;
	line-height: 40px;
	font-size: 2rem;
	font-weight: 500;
	text-align: center;
	position: absolute;
	top: -15px;
	left: 50%;
	transform: translateX(-50%);
	padding: 0 20px;
	white-space: nowrap;
}
.contract__inner {
	padding: 50px 20px 30px;
}
.contract__inner .grid {
	display: flex;
	justify-content: center;
}
.contract__img {
	width: 100%;
	max-width: 90px;
	margin-right: 15px;
}
.contract__inner .grid text {
	text-align: center;
}
.contract__inner .grid .sub {
	font-size: 2rem;
	font-weight: bold;
	color: #EA5614;
}
.contract__inner .grid .nen {
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	line-height: 1;
}
.contract__inner .grid .nen .num {
	font-size: 5.2rem;
	font-family: "Montserrat", sans-serif;
	margin-right: 5px;
	color: #EA5614;
}
.contract__inner .grid .nen .nenkan {
	font-size: 2rem;	
}

.after-graph {
	position: relative;
	margin-top: 70px;
	font-family: "M PLUS 1p", serif;
}
.after-graph .ttl {
	display: inline-block;
	background-color: #EA5614;
	border-radius: calc(infinity * 1px);
	color: #fff;
	width: auto;
	height: 40px;
	line-height: 40px;
	font-size: 2rem;
	font-weight: 500;
	text-align: center;
	position: absolute;
	top: -15px;
	left: 50%;
	transform: translateX(-50%);
	padding: 0 25px;
	white-space: nowrap;
}
.after-graph__inner {
	padding: 70px 50px 50px;
	background-color: #F5F7F9;
}
.after-graph__img {
	width: 100%;
}
.after-graph-arrow {
	display: block;
	width: 70px;
	height: 25px;
	clip-path: polygon(50% 100%, 0 0, 100% 0);
	background-color: #FFD244;
	margin: 30px auto;
}
@media only screen and (max-width: 1200px) {
	.contract__img {
		max-width: 70px;
		margin-right: 10px;
	}
	.contract__inner .grid .sub {
		font-size: 1.6rem;
	}
	.contract__inner .grid .nen .num {
		font-size: 4.2rem;
	}
	.contract__inner .grid .nen .nenkan {
		font-size: 1.6rem;	
	}
}
@media only screen and (max-width: 1040px) {
	.service-info__message {
		font-size: 1.6rem;
		font-weight: 500;
		text-align: center;
	}
	.service-info__message strong {
		display: inline-block;
		font-size: 2.6rem;
		color: #EA5614;
		line-height: 1.5;
		padding-top: 5px;
	}

	.contract__grid {
		display: flex;
		flex-wrap: wrap;
		gap: 40px;
		margin-top: 40px;
	}
	.contract__item {
		position: relative;
		width: 100%;
		max-width: 450px;
		margin: auto;
		background-color: #F5F7F9;
		border-radius: 10px;
	}
	.contract__item .ttl {
		display: inline-block;
		background-color: #EA5614;
		border-radius: calc(infinity * 1px);
		color: #fff;
		width: auto;
		height: 38px;
		line-height: 38px;
		font-size: 1.8rem;
		font-weight: 500;
		text-align: center;
		position: absolute;
		top: -15px;
		left: 50%;
		transform: translateX(-50%);
		padding: 0 20px;
		white-space: nowrap;
	}
	.contract__inner {
		padding: 40px 20px 20px;
	}
	.contract__inner .grid {
		display: flex;
		justify-content: center;
	}
	.contract__img {
		width: 100%;
		max-width: 90px;
		margin-right: 20px;
	}
	.contract__inner .grid text {
		text-align: center;
	}
	.contract__inner .grid .sub {
		font-size: 2rem;
		font-weight: bold;
		color: #EA5614;
	}
	.contract__inner .grid .nen {
		display: flex;
		align-items: center;
		justify-content: center;
		font-weight: bold;
		line-height: 1;
	}
	.contract__inner .grid .nen .num {
		font-size: 5.2rem;
		font-family: "Montserrat", sans-serif;
		margin-right: 5px;
		color: #EA5614;
	}
	.contract__inner .grid .nen .nenkan {
		font-size: 2rem;	
	}

	.after-graph {
		position: relative;
		margin-top: 70px;
	}
	.after-graph .ttl {
		display: inline-block;
		background-color: #EA5614;
		border-radius: calc(infinity * 1px);
		color: #fff;
		width: auto;
		height: 38px;
		line-height: 38px;
		font-size: 1.7rem;
		font-weight: 500;
		text-align: center;
		position: relative;
		top: -15px;
		left: 50%;
		transform: translateX(-50%);
		padding: 0 15px;
		white-space: nowrap;
	}
	.after-graph__inner {
		padding: 0;
		background-color: transparent;
	}
	.after-graph__img {
		width: 100%;
		max-width: 450px;
		margin: 20px auto 0;
	}
	.after-graph-arrow {
		display: block;
		width: 70px;
		height: 25px;
		clip-path: polygon(50% 100%, 0 0, 100% 0);
		background-color: #FFD244;
		margin: 30px auto;
	}
}






.middle-ttl {
	font-size: 2.2rem;
	font-weight: 500;
	text-align: center;
	color: #EA5614;
	margin-top: 50px;
	font-family: "M PLUS 1p", serif;
}
.middle-ttl.g {
	color: #4EA635;
}
@media only screen and (max-width: 768px) {
	.middle-ttl {
		font-size: 1.8rem;
		font-weight: 500;
		text-align: center;
		color: #EA5614;
		margin-top: 40px;
	}
	.middle-ttl.g {
		color: #4EA635;
	}
}