:root {
	--blue: #005eaa;
	--deep-blue: #003c88;
	--orange: #ff6b00;
	--yellow: #ffe777;
	--green: #dff4a6;
	--green2:#8fdf1d;
	--mint: #d6f0df;
	--pale: #fbeaa7;
	--text: #222;
	--page-gutter: 2rem;
	--hero-width: 72.5rem;
	--content-width: 45rem;
	--compact-width: 40.625rem;
	--wide-width: 72.5rem;
	--wide-content-width: 49.5rem;
	--section-y: 3.5rem;
	--heading-decor-width: 1.375rem;
	--heading-decor-height: 3.25rem;
	--jagged-size: 2.875rem;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: var(--text);
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
	font-weight: 500;
	line-height: 1.8;
	background: #fff;
	overflow-x: hidden;
}
@font-face {
  font-family: 'CorporateLogo';
  src: url('../assets/Corporate-Logo-Bold-ver3.woff2') format('woff2');
  font-weight: bold;
  font-display: swap;
}
img {
	display: block;
	max-width: 100%;
	height: auto;
}

a {
	color: inherit;
	text-decoration: none;
}
.arial-black{
	font-family:Arial Black;
}
.site-header {
	position: sticky;
	top: 0;
	z-index: 20;
	background: rgba(255, 255, 255, .96);
	border-bottom: 1px solid #e7eef6;
	box-shadow: none;
}

.site-header__inner {
	width: min(var(--hero-width), calc(100% - var(--page-gutter) * 2));
	height: 3.75rem;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.25rem;
}

.site-logo img {
	width: clamp(18rem, 37vw, 21.25rem);
}

.header-tel {
	display: flex;
	align-items: center;
	gap: .375rem;
	margin-left: auto;
	color: var(--deep-blue);
	font-size: 1.25rem;
	font-weight: 900;
	line-height: 1;
	white-space: nowrap;
}

.header-tel img {
	width: 1.75rem;
}

.header-mail {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .375rem;
	min-width: 8.25rem;
	height: 2.25rem;
	border-radius: 1.125rem;
	color: #fff;
	background: var(--blue);
	padding-left: 1.125rem;
	padding-right: 1.125rem;
	font-size: .875rem;
	font-weight: 800;
}

.header-mail img {
	width: 1.125rem;
}
.header-tel span{
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: .375rem;
	color: black;
	letter-spacing: .05em;
	font-weight: bold;
}
.header-tel small{
	font-size: .5875rem;
	display: block;
	letter-spacing: 0;
}

.hero {
	background: #0079c8 url("../img/hero-bg.jpg") center top / cover no-repeat;
}

.hero__inner {
	width: min(var(--hero-width), 100%);
	margin: 0 auto;
	padding: 0 1.25rem;
}

.hero__campaign {
	width: 100%;
	margin: 0 auto;
}

.section-inner {
	width: min(var(--content-width), calc(100% - var(--page-gutter) * 2));
	margin: 0 auto;
	padding: var(--section-y) 0;
}

.section-inner--narrow {
	width: min(var(--wide-width), calc(100% - var(--page-gutter) * 2));
}

.section-title {
	margin: 0 0 3.125rem;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 3rem;
	text-align: center;
	color: #111;
	font-size: clamp(1.625rem, 3.2vw, 2.375rem);
	font-weight: 900;
	line-height: 1.35;
	letter-spacing: 0;
	white-space: nowrap;
	font-family: CorporateLogo, sans-serif;
}
.section-title span{
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.section-title::before,
.section-title::after {
	content: "";
	display: block;
	flex: 0 0 auto;
	width: var(--heading-decor-width);
	height: var(--heading-decor-height);
	margin: 0;
	border: 0;
	background: url("../img/heading-decorate-left.png") center / contain no-repeat;
	transform: none;
}

.section-title::before {
	background-image: url("../img/heading-decorate-left.png");
}

.section-title::after {
	background-image: url("../img/heading-decorate-right.png");
}

.section-title small {
	display: block;
	margin-bottom: .15rem;
	color: var(--blue);
	font-size: 1.5375rem;
	font-weight: 900;
}

.cta {
	padding: 1.5rem 1rem 2rem;
	background: #fff;
}

.cta--top {
	z-index: 2;
	padding-top: 1rem;
}

.cta__inner {
	width: min(var(--compact-width), 100%);
	margin: -2rem auto 0;
	text-align: center;
}

.cta__note {
	display: inline-block;
	margin: 0 0 .875rem;
	min-width: min(37.5rem, 100%);
	padding: .6875rem 2.375rem;
	border: 2px solid #111;
	border-radius: 6px;
	background: #fff8d2;
	font-size: .875rem;
	font-weight: 800;
	line-height: 1.65;
	position: relative;
}

.cta__note::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -.875rem;
	width: 1.375rem;
	height: 1.375rem;
	border-right: 2px solid #111;
	border-bottom: 2px solid #111;
	background: #fff8d2;
	transform: translateX(-50%) rotate(45deg) translateY(-2px);
}

.cta__label {
	font-family: CorporateLogo, sans-serif;
	margin: .625rem 0;
	letter-spacing: .1rem;
	color: var(--deep-blue);
	font-size: 1.125rem;
	font-weight: 900;
}

.cta__label--phone {
	margin-top: 1.5rem;
}

.cta__subnote {
	margin: -.5rem 0 .75rem;
	font-size: .6875rem;
}

.cta__subnote--phone {
	margin: .25rem 0 0;
}

.estimate-button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: min(35.25rem, 100%);
	min-height: 2.875rem;
	margin: 0 auto 1.125rem;
	border-radius: 62.4375rem;
	color: #fff;
	background: #f85d00;
	font-size: clamp(1.25rem, 2.2vw, 1.625rem);
	font-weight: 900;
	transition: letter-spacing .2s ease;
}

.estimate-button span{
	width: 1.125em;
	height: 1.125em;
	margin-right: .375em;
	border-radius: 100%;
	background: #fff;
	position: relative;

}
.estimate-button span::before {
	content: "";
	display: inline-grid;
	place-items: center;
	width: .7em;
	height: 2px;
	background: var(--orange);
	font-size: .65em;
	line-height: 1;
	position: absolute;
	top: calc(50% - 3px);
	left: calc(50% + 1px);
	transform: translate(-50%, -50%) rotate(30deg);
}
.estimate-button span::after {
	content: "";
	display: inline-grid;
	place-items: center;
	width: .7em;
	height: 2px;
	background: var(--orange);
	font-size: .65em;
	line-height: 1;
	position: absolute;
	top: calc(50% + 3px);
	left: calc(50% + 1px);
	transform: translate(-50%, -50%) rotate(-30deg);
}

.estimate-button:hover {
	letter-spacing: .1em;
}

.tel-large {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: .625rem;
	color: #111;
	font-size: clamp(2.25rem, 4vw, 3.125rem);
	font-weight: 900;
	line-height: 1.1;
	white-space: nowrap;
}

.tel-large img {
	width: 2.575rem;
}

.cta__phone {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 1.125rem;
}

.business-hours {
	display: inline-block;
	margin: 0;
	padding: .375rem .75rem;
	border-radius: .5rem;
	color: #fff;
	background: var(--blue);
	font-size: .75rem;
	font-weight: 800;
	line-height: 1.3;
}

.worry-section {
	background: #fff;
}

.aircon-line {
	width: 26.875rem;
	margin: -.375rem auto 1.125rem;
}

.worry-list-wrap{
	width: min(50rem, 100%);
	margin: 0 auto;
	width: min(50rem, 100%);
	margin: 3.5rem auto 0;
	background: var(--mint);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 2.125rem;
	position: relative;
}
.worry-list {
	list-style: none;
	font-size: 1.0625rem;
	font-weight: 900;
	line-height: 1.7;
}

.worry-list-wrap::before {
	content: "";
	position: absolute;
	left: 38.5%;
	top: -3rem;
	width: 25%;
	height: 3rem;
	background: var(--mint);
	clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.worry-list li {
	position: relative;
	padding-left: 2.625rem;
}

.worry-list li + li {
	margin-top: .625rem;
}

.worry-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: .45em;
	width: 1rem;
	height: 1rem;
	border: 0;
	background: url("../img/icon-checkbox.png") center / contain no-repeat;
}

.people {
	display: grid;
	width: min(60rem, calc(100vw - var(--page-gutter) * 2));
	grid-template-columns: 14.25rem 1fr 15.75rem;
	align-items: end;
	gap: 2rem;
	margin: -5.25rem 50% 0;
	transform: translateX(-50%);
}

.people img {
	width: 100%;
}

.people p {
	letter-spacing: .3rem;
	font-weight: bold;
	align-self: start;
	padding-top: 8.375rem;
	margin: 0;
	color: var(--blue);
	font-size: 1.7375rem;
	font-weight: 900;
	line-height: 1.45;
	text-align: center;
}

.reason-card--photo {
	display: grid;
	grid-template-columns: 1fr 17.5rem;
	gap: 1.75rem;
	align-items: center;
	margin-bottom: 1.75rem;
}

.reason-card h3,
.reason-item h3 {
	margin: 0 0 .875rem;
	display: flex;
	align-items: center;
	gap: .625rem;
	color: var(--green2);
	font-size: 1.375rem;
	font-weight: 900;
	line-height: 1.45;
}
.reason-card.reason-card--photo h3{
	color: var(--blue);
}

.reason-num {
	flex: 0 0 var(--jagged-size);
	width: var(--jagged-size);
	height: var(--jagged-size);
	object-fit: contain;
}

.reason-card p,
.reason-item p,
.labo-box p {
	font-size: .9375rem;
}

.labo-box {
	display: grid;
	grid-template-columns: 2fr 18.875rem;
	gap: 1.375rem;
	align-items: center;
	margin: 2.125rem 0 2.625rem;
	padding: 1.25rem 1.5rem;
	background: #ffe679;
	border: 0;
	border-radius: .25rem;
}

.labo-box__label {
	margin-left: -2.625rem;
	display: block;
	width: calc(100% + 2.625rem);
	margin-bottom: .875rem !important;
	padding: .3125rem .875rem;
	color: #fff;
	background: var(--blue);
	font-weight: 900;
	position: relative;
	text-align: center;
	font-size: 1.1rem;
}
.labo-box__label:after{
	background: var(--blue);
	display: inline-block;
	content: "";
	height: 100%;
	width: 2.2em;
	clip-path: polygon(0% 0%, 0% 100%, 100% 100%);
	position: absolute;
	right: -2rem;
	top: 0;;
}
.labo-box > div{
	padding: 0 1.125rem;
}

.labo-logo {
	width: 24.375rem;
	margin-bottom: .875rem;
}

.labo-link {
	margin-top: .5rem !important;
	text-align: right;
	font-weight: 900;
	text-decoration: underline;
}

.reason-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 5.375rem;
	width: min(var(--compact-width), 100%);
	margin: 2.625rem auto 0;
}

.reason-item {
	display: grid;
	grid-template-columns: 1fr 7.25rem;
	column-gap: 2.125rem;
	align-items: center;
}

.reason-item > img {
	grid-row: 1 / span 2;
	grid-column: 2;
	width: 6.625rem;
	justify-self: center;
}

.reason-item h3,
.reason-item p {
	grid-column: 1;
}
.reason-item p small{
	display: block;
	margin-top: 1em;
}

.reason-item small {
	font-size: .75rem;
}

.reason-item:nth-child(2) h3 {
	color: #f8b52b;
}

.reason-item:nth-child(3) h3 {
	color: #f2673a;
}

.reason-item:nth-child(4) h3 {
	color: #b24eea;
}

.reason-item:nth-child(5) {
	grid-column: auto;
	width: 100%;
	margin: 0 auto;
}

.reason-item:nth-child(5) h3 {
	color: #777;
}

.reason-section .section-inner {
	width: min(var(--content-width), calc(100% - var(--page-gutter) * 2));
}

.flow-section {
	background: var(--pale);
}

.price-section {
	background: #fff;
}

.price-list {
	display: grid;
	gap: 2rem;
	width: min(43.5rem, 100%);
	margin: 0 auto;
	padding:2rem;
	background: #fff9bd;
	border-radius: .7875rem;
	overflow: hidden;
}

.price-card {
	display: grid;
	grid-template-columns: minmax(0, 13.875rem) minmax(0, 1fr);
	align-items: flex-start;
	background: #fff9bd;
	border: 0;
	gap: 1rem;
}

.price-card:nth-child(even) {
	grid-template-columns: minmax(0, 1fr) minmax(0, 13.875rem);
}

.price-card:nth-child(even) h3{
	margin-left: -2rem;
}

.price-card:nth-child(odd) h3{
	margin-right: -2rem;
}

.price-card:nth-child(even) img {
	order: 2;
}

.price-card img {
	width: 100%;
	height: 10.3125rem;
	object-fit: cover;
}

.price-card div {
	min-width: 0;
}

.price-card h3 {
	margin: 0 0 .625rem;
	padding: .2375rem 1rem;
	color: #fdef84;
	background: var(--blue);
	font-size: 1.25rem;
	font-weight: 900;
	text-align: center;
}

.price-card__normal {
	margin: 0;
	color: #111;
	font-weight: 900;
	text-align: center;
}

.price-card__campaign {
	display: grid;
	grid-template-columns: 6rem minmax(0, 1fr) auto;
	align-items: center;
	margin: .875rem 0 0;
	padding: 0 !important;
	border: 2px solid #bd1b16;
	border-radius: .4375rem;
	background: #fff;
	overflow: hidden;
}

.price-card__campaign span {
	display: grid;
	place-items: center;
	align-self: stretch;
	color: #fff;
	background: #d91510;
	font-size: .875rem;
	font-weight: 900;
	line-height: 1.25;
	text-align: center;
	padding: 1rem .5rem;
}

.price-card__campaign strong {
	padding-left: .875rem;
	color: #d91510;
	font-size: 1.625rem;
	font-weight: 900;
	line-height: 1;
	white-space: nowrap;
}

.price-card__campaign strong small{
font-size: .6em;
color: #000;
display: inline-block;
}

.price-card__campaign em {
	padding-right: .75rem;
	color: #111;
	font-size: .75rem;
	font-style: normal;
	font-weight: 900;
	white-space: nowrap;
}

.price-card p:last-child {
	margin: .5rem 0 0;
	font-size: .65rem;
	text-align: right;
}
.caution {
	margin: 1.5rem auto 0;
	width: min(34rem, 100%);
	padding: .75rem 1.125rem;
	border: 1px solid #333;
	background: #fff;
	font-size: .75rem;
	font-weight: 700;
	line-height: 1.65;
	text-align: center;
}

.before-after,
.movie-section {
	background: var(--green);
}

.before-after picture {
	display: block;
	width: min(37.5rem, 100%);
	margin: 3rem auto;
}
.before-after picture:last-child{
	margin-bottom: 0;
}

.before-after img {
	width: 100%;
}

.voice {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	margin: 2.125rem auto;
	width: min(var(--compact-width), 100%);
}

.voice--right {
	flex-direction: row-reverse;
}

.voice figure {
	flex: 0 0 7.375rem;
	margin: 0;
	text-align: center;
	font-size: .75rem;
	font-weight: 800;
	line-height: 1.45;
}

.voice img {
	width: 6.25rem;
	margin: 0 auto .375rem;
	background: #d0e3fe;
	border-radius: 100%;
	
}

.voice p {
	position: relative;
	margin: 0;
	padding: 1.125rem 1.5rem;
	border: 3px solid #1b5591;
	border-radius: .75rem;
	background: #fff;
	font-size: .9375rem;
	font-weight: 700;
	letter-spacing: .1em;
	line-height: 1.8;
}

.voice--left p::before,
.voice--right p::before {
	content: "";
	position: absolute;
	top: 42%;
	width: 2rem;
	height: 2rem;
	background: #fff;
	border-width: 3px;
	border-style: solid;
	transform: rotate(45deg);
}

.voice--left p::before {
	left: -1rem;
	border-color: transparent transparent #1b5591 #1b5591;
}

.voice--right p::before {
	right: -1rem;
	border-color: #1b5591 #1b5591 transparent transparent;

}

.flow-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2.125rem;
	width: min(45.625rem, 100%);
	margin: 0 auto;
}

.flow-grid article {
	background: transparent;
}

.flow-grid h3 {
	margin: 0 0 1rem;
	padding: .3125rem .5rem;
	color: #fff;
	background: var(--blue);
	font-size: .8125rem;
	font-weight: 900;
	text-align: center;
	border-radius: .325rem;
	position: relative;
}
.flow-grid h3:after{
	position: absolute;
	display: block;
	content: "";
	background: var(--blue);
	width: 1rem;
	height: .7rem;
	clip-path: polygon(100% 0%, 50% 100%, 0% 0%);
	bottom: -.7rem;
	left: calc(50% - .5rem);

}
.flow-grid span{
	color: var(--blue);
	background: #fff;
	width: 1.2em;
	height: 1.2em;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	border-radius: 100%;
}

.flow-grid p {
	margin: 0;
	padding: .5rem .625rem 0;
	font-size: .6875rem;
	font-weight: bold;
	line-height: 1.6;
}

.youtube {
	aspect-ratio: 16 / 9;
	width: min(36.25rem, 100%);
	margin: 0 auto;
	border: .5rem solid #009bd8;
	background: #009bd8;
}

.youtube iframe {
	width: 100%;
	height: 100%;
	border: 0;
}

.faq-item {
	margin: .8125rem auto;
	width: min(var(--compact-width), 100%);
	background: var(--blue);
	color: #fff;
}

.faq-item button {
	position: relative;
	display: grid;
	grid-template-columns: 1.875rem 1fr 1.5rem;
	align-items: center;
	column-gap: 1.125rem;
	width: 100%;
	padding: .9375rem 1.375rem;
	border: 0;
	color: inherit;
	background: transparent;
	font: inherit;
	font-size: .875rem;
	font-weight: 900;
	text-align: left;
	cursor: pointer;
	letter-spacing: .1em;
}

.faq-item button::before {
	content: "Q";
	display: grid;
	place-items: center;
	width: 1.875rem;
	height: 1.875rem;
	border-radius: 50%;
	color: var(--blue);
	background: #fff;
	position: static;
	transform: none;
}

.faq-item button::after {
	content: "▼";
	position: static;
	justify-self: end;
	font-size: 1.175rem;
	line-height: 1;
	transform: none;
}

.faq-item.is-open button::after {
	content: "▲";
}

.faq-item div {
	display: block;
	padding: 0 3.25rem .9375rem 4.5rem;
	font-size: .6875rem;
	line-height: 1.7;
}

.faq-item.is-open div {
	display: none;
}

.site-footer {
	padding: 1.5rem 1rem 2.625rem;
	border-top: 3px solid var(--deep-blue);
	text-align: center;
}

.site-footer img {
	width: 13.125rem;
	margin: 0 auto .875rem;
}

.site-footer p {
	margin: 0 0 .5rem;
	color: #666;
	font-size: .6875rem;
}

.site-footer ul {
	display: flex;
	justify-content: center;
	gap: 1.75rem;
	margin: .625rem 0 0;
	padding: 0;
	list-style: none;
	font-size: .75rem;
}

.site-footer a {
	color: var(--blue);
	text-decoration: underline;
}
.sp-block{
	display: none;
}
@media (max-width: 47.9375em) {
	.site-header__inner {
		width: calc(100% - 1.25rem);
		height: 3.25rem;
	}

	.site-logo img {
		width: min(12rem, 62vw);
	}

	.header-tel {
		font-size: 0;
	}

	.header-tel img {
		width: 1.475rem;
	}

	.header-mail {
		display: none;
	}

	.hero {
		background: #0079c8;
	}

	.section-inner,
	.section-inner--narrow {
		width: calc(100% - 1.75rem);
		padding: 2.8125rem 0;
	}

	.section-title {
		margin-bottom: 1.5rem;
		font-size: 1.375rem;
		white-space: normal;
	}

	.section-title::before,
	.section-title::after {
		display: inline-block;
		width: 1.125rem;
		height: 2.625rem;
		margin: 0 .4375rem .25rem;
	}

	.cta {
		padding: 1.25rem .875rem 1.75rem;
	}

	.cta__note {
		width: 100%;
		padding: .5rem .75rem;
		font-size: .75rem;
		border-radius: 10px;
	}

	.estimate-button {
		min-height: 2.75rem;
		font-size: 1.125rem;
	}

	.tel-large {
		font-size: 1.9375rem;
	}

	.tel-large img {
		width: 1.75rem;
	}

	.cta__phone {
		display: flex;
		flex-wrap: wrap;
		gap: .5rem .75rem;
	}

	.business-hours {
		font-size: .6875rem;
	}

	.worry-list {
		width: 100%;
		padding: 1.5rem 1.25rem;
		font-size: .875rem;
	}

	.worry-list::before {
		top: -1rem;
		border-left-width: .75rem;
		border-right-width: .75rem;
		border-top-width: 1.25rem;
	}

	.worry-list li {
		padding-left: 1.75rem;
	}

	.worry-list li::before {
		width: .8125rem;
		height: .8125rem;
	}

	.people {
		width: 100%;
		display: flex;
		justify-content: space-between;
		gap: .25rem;
		margin: -2.25rem 0 0;
		transform: none;
		z-index: 1;
        position: relative;
	}
	.people img:first-child{
		max-height: 25vw;
		width: auto;
	}
	.people img:last-child{
		max-height: 25vw;
		width: auto;
	}

	.reason-card--photo,
	.labo-box,
	.price-card,
	.price-card:nth-child(even) {
		grid-template-columns: 1fr;
	}

	.reason-card--photo {
		gap: 1rem;
	}

	.reason-card h3,
	.reason-item h3 {
		font-size: 1.1875rem;
	}

	.reason-num {
		flex-basis: 2.375rem;
		width: 2.375rem;
		height: 2.375rem;
	}

	.labo-box {
		padding: 1.125rem;
	}

	.labo-box > img {
		order: -1;
	}

	.reason-grid {
		grid-template-columns: 1fr;
		gap: 2.75rem;
	}

	.reason-item{
		display: flex;
		flex-direction: column;
	}
	.reason-item,
	.reason-item:nth-child(5) {
		width: 100%;
		grid-column: auto;
		grid-template-columns: 4.375rem 1fr;
	}

	.reason-item > img {
		order: 2;
		grid-column: 1;
		grid-row: 1 / span 2;
		width: 5.875rem;
		margin-bottom: 1rem;
	}
	.reason-item h3{
		order: 1;
		margin-left: 0;
		margin-right: auto;
	}
	.reason-item p{
		order: 3;
	}
	.reason-item h3,
	.reason-item p {
		grid-column: 2;
	}

	.price-list{
		padding: 1.5rem;
	}

	.price-card h3{
		position: relative;
	}
	.price-card:nth-child(odd) h3:after{
		display: inline-block;
		content: "";
		width: 1rem;
		height: 100%;
		background: var(--blue);
		position: absolute;
		left: -1rem;
		top:0;
		clip-path: polygon(100% 0%, 0% 100%, 100% 100%);
	}

	.price-card:nth-child(even) h3:after{
		display: inline-block;
		content: "";
		width: 1rem;
		height: 100%;
		background: var(--blue);
		position: absolute;
		right: -1rem;
		top:0;
		clip-path: polygon(0% 0%, 0% 100%, 100% 100%);
	}

	.price-card:nth-child(even) img {
		order: 0;
	}

	.price-card img {
		height: auto;
	}

	.price-card div {
		padding: 0;
	}

	.price-card h3 {
		font-size: 1.1875rem;
	}

	.price-card__campaign {
		grid-template-columns: 4.375rem 1fr;
	}

	.price-card__campaign strong {
		padding-left: .75rem;
		font-size: 1.5625rem;
	}

	.price-card__campaign em {
		grid-column: 2;
		padding: 0 .75rem .375rem;
		font-size: .75rem;
	}

	.before-after picture {
		margin: 3rem auto;
		width: min(100%, 37.5rem);
	}

	.voice,
	.voice--right {
		align-items: flex-start;
		gap: .75rem;
	}

	.voice img {
		width: 7.25rem;
	}

	.voice p {
		padding: .8125rem;
		font-size: .8125rem;
	}

	.flow-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.flow-grid article {
		padding: .75rem;
	}

	.faq-item button {
		padding: .875rem;
		font-size: .875rem;
	}

	.faq-item button::before {
		left: .75rem;
		width: 1.75rem;
		height: 1.75rem;
	}

	.faq-item button::after {
		right: .9375rem;
	}

	.faq-item div {
		padding: 0 2.625rem .875rem 3.125rem;
		font-size: .8125rem;
	}

	.sp-none{
		display: none;
	}
	.sp-block{
		display: block;
	}
	.hero__inner{
		padding: 0;
	}
	.header-tel span{
		font-size: 1.2rem;
	}
	.cta__inner{
		margin-top: 0;
	}
	.aircon-line{
		width: 16.875rem;
	}
	.section-title small{
		font-size: 1.0375rem;
	}
	.section-title{
		gap:1rem;
	}
	.reason-card img.sp-block,
	.labo-box img.sp-block,
	.price-card img.sp-block{
		margin-bottom: 1rem;
	}
	.labo-box__label{
		margin-left: -1.125rem;
		width: calc(100% + 2.25rem);
	}
	.labo-box__label:after{
		content: none;
	}
	.labo-box > div{
		padding: 0;
	}
	.labo-link{
		text-align: center;
	}
	.price-card__campaign{
		grid-template-columns: 5.375rem 1fr;
	}
	.voice{
		flex-direction: column;
		align-items: center;
	}
	.voice figure{
		flex: 0 0 6.375rem;
	}
	.voice--right p::before,
	.voice--left p::before{
		content: none;
	}
	.flow-section .flow-grid article{
		padding: .75rem 2.75rem;
	}
	.worry-list-wrap p{
        align-self: center;
        padding-top: 0;
        font-size: 1rem;
        white-space: nowrap;
		color: var(--blue);
		font-weight: 900;
		line-height: 1.45;
    	text-align: center;
    }
}
