:root {
	--color-main: #3e4042;
	--color-accent: #F89129;
	--color-accent-yellow: #f6dd3a;
	--color-accent-green: #3facb0;
	--color-accent-navy: #233768;
	--color-accent-orange: #c55c3d;
	--color-accent-black: #333333;
	--color-text: #4c4c4c;
	--color-white: #ffffff;
	--color-black: #1F1D1D;
	--color-bg-yellow: #fff29c;
	--color-bg-yellow-light: #fffad7;
	--color-bg-gray: #e4e4e4;
	--color-bg-sec02-heading: #5a5a5a;
	--color-light: #F7F7F7;
	--color-border: #BFBFBF;
	--color-text-form: #6b6b6b;
	--gradient-soft-sky: linear-gradient(
    90deg,
    #ffffff 0%,
    #f4f8fb 35%,
    #d9edf6 100%
  );
	--font-jp: "Zen Kaku Gothic New", sans-serif;
	--font-mincho: 'Noto Serif JP', serif;
	--font-en: "Lato", sans-serif;
	--font-normal: 400;
	--font-medium: 500;
	--font-semibold: 600;
	--font-bold: 700;
	--font-black: 900;
	--font-size: 1rem;
	--line-height: 1.8;
	--letter-sp: 0.04em;
}

/* reset
---------------------------------------------------------------------------*/

* {
	box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
	margin: 0;
	padding: 0;
	border: 0;
	font: inherit;
	font-size: 100%;
	vertical-align: baseline;
}

html {
	line-height: 1;
}

ol,
ul {
	list-style: none;
}

li,
dd {
	list-style-type: none;
}

header,
footer,
nav,
section,
article,
aside,
figure,
figcaption {
	display: block;
}

img {
	border: none;
	vertical-align: bottom;
}

a {
	text-decoration: none;
	cursor: pointer;
}

/* base
---------------------------------------------------------------------------*/

html {
	font-size: 100%;
}

body {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	color: var(--color-text);
	font-weight: var(--font-medium);
	font-size: var(--font-size);
	line-height: var(--line-height);
	font-family: var(--font-jp);
	letter-spacing: var(--letter-sp);
}

a {
	color: inherit;
}

img {
	width: 100%;
	max-width: 100%;
	height: auto;
}

.is-pc {
	display: block;
}

.is-sp {
	display: none;
}

br.is-br-sp {
	display: none;
}

br.is-br-pc {
	display: none;
}

/* Web Font
---------------------------------------------------------------------------*/

.img-max-730 {
	width: 100%;
	max-width: 45.625rem;
	margin-inline: auto;
}

.img-max-730 img {
	display: block;
	width: 100%;
	height: auto;
}

.img-wrap {
	position: relative;
	overflow: hidden;
}

.img-wrap img {
	-o-object-fit: cover;
	-o-object-position: center;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.img-wrap.--16x9 {
	aspect-ratio: 16/9;
}

.img-wrap.--4x3 {
	aspect-ratio: 4/3;
}

.img-wrap.--3x2 {
	aspect-ratio: 3/2;
}

.img-wrap.--1x1 {
	aspect-ratio: 1/1;
}

.img-wrap.--2x3 {
	aspect-ratio: 2/3;
}

.img-wrap.--3x4 {
	aspect-ratio: 3/4;
}

.img-wrap.--9x16 {
	aspect-ratio: 9/16;
}

.img-circle {
	flex-shrink: 0;
	aspect-ratio: 1/1;
	overflow: hidden;
	border-radius: 50%;
}

.img-circle img {
	-o-object-fit: cover;
	-o-object-position: center top;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
}

.bg-img {
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.bg-img--fixed {
	background-attachment: fixed;
}

.bg-img--top {
	background-position: top center;
}

.bg-img--bottom {
	background-position: bottom center;
}

.bg-img--overlay {
	position: relative;
}

.bg-img--overlay::before {
	display: block;
	z-index: 0;
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
	content: "";
}

.bg-img--overlay > * {
	z-index: 1;
	position: relative;
}

.deco-img {
	-webkit-user-select: none;
	-moz-user-select: none;
	position: absolute;
	pointer-events: none;
	user-select: none;
}

.text-tile {
	color: var(--color-text);
	font-weight: var(--font-medium);
	font-size: 1.25rem;
	line-height: 32/20;
	font-family: var(--font-jp);
	letter-spacing: 0;
}

.text-tile--24 {
	color: var(--color-text);
	font-weight: var(--font-medium);
	font-size: 1.5rem;
	line-height: 36/24;
	font-family: var(--font-jp);
	letter-spacing: -0.025em;
}

.text-tile--36 {
	color: var(--color-text);
	font-weight: var(--font-medium);
	font-size: 2.25rem;
	line-height: 1.5;
	font-family: var(--font-jp);
	letter-spacing: -0.025em;
}

.text-border {
	--text-border-thickness: 1px;
	--text-border-offset: -0.88em;
	-webkit-box-decoration-break: clone;
	display: inline;
	box-decoration-break: clone;
	padding-bottom: var(--text-border-offset);
	border-bottom: var(--text-border-thickness) solid currentColor;
}

.text-accent--yellow {
	color: var(--color-accent-yellow);
}

.text-accent--green {
	color: var(--color-accent-green);
}

.text-accent--orange {
	color: var(--color-accent-orange);
}

.text-gray {
	color: #9d9d9d;
}

.text-size--30 {
	font-size: 1.875rem;
}

.text-center {
	text-align: center;
}

.text-right {
	text-align: right;
}

.text-shippori-48 {
	color: var(--color-text);
	font-weight: 500;
	font-size: 3rem;
	line-height: 1.5;
	font-family: "Shippori Mincho", var(--font-mincho), serif;
	letter-spacing: 0;
}

.bg-main {
	background-color: var(--color-main);
}

.bg-light {
	background-color: var(--color-light);
}

.bg-accent-yellow {
	background-color: var(--color-accent-yellow);
}

.bg-accent-green {
	background-color: var(--color-accent-green);
}

.bg-accent-navy {
	background-color: var(--color-accent-navy);
}

.bg-accent-orange {
	background-color: var(--color-accent);
}

.bg-yellow {
	background-color: var(--color-bg-yellow);
}

.bg-yellow-light {
	background-color: var(--color-bg-yellow-light);
}

.bg-white {
	background-color: var(--color-white);
}

.bg-gray {
	background-color: var(--color-bg-gray);
}

.bg-accent-black {
	background-color: var(--color-accent-black);
}

.bg-sec02-heading {
	background-color: var(--color-bg-sec02-heading);
}

.bg-gradient-sec07-image {
	background: var(--gradient-sec07-image);
}

.bg-gradient-soft-sky {
	background: var(--gradient-soft-sky);
}

.header {
	z-index: 30;
	width: 100%;
	padding-block: 0.375rem 0.25rem;
	background-color: #fff;
	text-align: center;
}

.header img {
	width: 9.3125rem;
}

.header-copy {
	padding-block: 1.25rem;
	background-color: var(--color-accent-yellow);
}

.footer {
	margin-top: auto;
	padding: 1.375rem 0 1.125rem;
	background-color: #333;
	text-align: center;
}

.footer__links {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 0 1rem;
	padding: 0;
	gap: 1.5rem;
	list-style: none;
}

.footer__link {
	color: #fff;
	font-weight: var(--font-medium);
	font-size: 0.875rem;
	line-height: 1.5;
	text-decoration: underline;
	text-underline-offset: 0.2em;
	transition: opacity 0.2s ease;
}

.footer small {
	display: block;
	color: #fff;
	font-size: 0.75rem;
	line-height: 1.5;
}

.container {
	--container-gutter: 2.5rem;
	width: 100%;
	max-width: calc(var(--container-content-width, 71.875rem) + var(--container-gutter) * 2);
	margin-inline: auto;
	padding-inline: var(--container-gutter);
}

.container--full {
	max-width: none;
}

.container--xl {
	--container-content-width: 120rem;
}

.container--l {
	--container-content-width: 75rem;
}

.container--m {
	--container-content-width: 71.875rem;
}

.container--s {
	--container-content-width: 68.75rem;
}

.container--xs {
	--container-content-width: 62.5rem;
}

.section {
	padding-block: 5rem;
}

.section--xs {
	padding-block: 1rem;
}

.section--sm {
	padding-block: 2rem;
}

.section--md {
	padding-block: 3.75rem;
}

.section--lg {
	padding-block: 6.25rem;
}

.section--xl {
	padding-block: 7.5rem;
}

.c-btn {
	display: inline-flex;
	position: relative;
	align-items: center;
	justify-content: center;
	min-width: 20rem;
	max-width: 35rem;
	min-height: 3.875rem;
	padding: 0.3125rem 2.5rem;
	border: 1px solid var(--color-main);
	background-color: var(--color-main);
	color: #fff;
	font-weight: var(--font-medium);
	font-size: 1.25rem;
	text-align: center;
	transition: all 0.3s;
}

.c-btn::before {
	position: absolute;
	right: 1.25rem;
	width: 0.5rem;
	height: 0.75rem;
	background: url(../img/btn-arrow.svg) no-repeat center center/contain;
	content: "";
	transition: all 0.3s;
}

.c-btn--accent {
	border-color: var(--color-accent);
	background-color: var(--color-accent);
}

.c-btn--ghost {
	background-color: transparent;
	color: var(--color-main);
}

.c-btn--ghost::before {
	background: url(../img/btn-arrow-black.svg) no-repeat center center/contain;
}

.c-check-list {
	display: flex;
	flex-direction: column;
	margin: 0;
	padding: 0;
	list-style: none;
}

.c-check-list__item {
	display: flex;
	position: relative;
	align-items: flex-start;
	padding-left: 2.375rem;
	padding-block: 1.25rem;
	gap: 0;
	border-bottom: 1px solid #c8b9b7;
}

.c-check-list__icon {
	display: block;
	position: absolute;
	top: 1.875rem;
	left: 0;
	flex: 0 0 auto;
	width: 1.625rem;
	height: 1.625rem;
}

.c-check-list__text {
	font-weight: var(--font-bold);
	font-size: 1.5rem;
	line-height: 1.3333333333;
	font-family: "Zen Kaku Gothic New", sans-serif;
	letter-spacing: 0;
}

.c-check-list--center-rule .c-check-list__item {
	display: block;
	position: relative;
	padding: 1.25rem 1rem;
	border-bottom-color: #e0e0e0;
}

.c-check-list--center-rule .c-check-list__icon {
	position: absolute;
	top: 50%;
	left: calc(1rem + (100% - 2rem - min(45rem, 100% - 2rem)) / 2);
	transform: translateY(-50%);
}

.c-check-list--center-rule .c-check-list__text {
	box-sizing: border-box;
	display: block;
	width: min(45rem, 100%);
	margin-right: auto;
	margin-left: auto;
	padding-left: calc(1.625rem + 0.75rem);
	text-align: left;
}

.c-gallery-col4 .container {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 5px;
}

.c-gallery-col4__item {
	min-width: 0;
}

.c-gallery-col4__item picture,
.c-gallery-col4__item img {
	display: block;
	width: 100%;
}

.c-gallery-col4__item img {
	height: auto;
	vertical-align: bottom;
}

.c-gallery-col3 {
	padding-bottom: 1.875rem;
}

.c-gallery-col3 .container {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 5px;
}

.c-gallery-col3__item {
	min-width: 0;
}

.c-gallery-col3__item img {
	display: block;
	width: 100%;
	height: auto;
}

.c-works-slider {
	--works-gap: 0.625rem;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-width: 0;
	max-width: 100%;
}

.c-works-slider__arrow {
	display: flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 0.5rem;
	border: 0;
	background: transparent;
	line-height: 0;
	cursor: pointer;
	transition: opacity 0.2s;
}

.c-works-slider__arrow:hover {
	opacity: 0.75;
}

.c-works-slider__arrow:focus-visible {
	outline: 2px solid var(--color-accent);
	outline-offset: 2px;
}

.c-works-slider__arrow img {
	display: block;
	width: auto;
	max-width: 2.5rem;
	height: auto;
}

.c-works-slider__viewport {
	container-name: works-slider;
	container-type: inline-size;
	flex: 1 1 auto;
	width: 100%;
	min-width: 0;
	max-width: calc(20.5rem * 3 + var(--works-gap) * 2);
	overflow: hidden;
	touch-action: pan-y;
}

.c-works-slider__track {
	display: flex;
	width: -moz-max-content;
	width: max-content;
	max-width: none;
	gap: var(--works-gap);
	transition: transform 0.4s ease;
	will-change: transform;
}

.c-works-slider__slide {
	flex: 0 0 20.5rem;
	flex: 0 0 calc((100cqi - var(--works-gap) * 2) / 3);
	width: 20.5rem;
	width: calc((100cqi - var(--works-gap) * 2) / 3);
	min-width: 0;
}

.c-works-slider__slide img {
	-o-object-fit: cover;
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
}

.c-media-strip {
	position: relative;
	padding-block: 0.625rem;
	isolation: isolate;
}

.c-heading-band {
	position: relative;
	margin-bottom: 1.6875rem;
	padding-block: 1.875rem;
	isolation: isolate;
}

.c-heading-band.bg-accent-yellow::after {
	position: absolute;
	bottom: -1.6875rem;
	border-top: 27px solid var(--color-accent-yellow);
	border-right: 55px solid transparent;
	border-bottom: 0;
	border-left: 55px solid transparent;
	content: "";
}

.c-heading-band.bg-accent-yellow::after {
	left: 50%;
	width: 0;
	height: 0;
	transform: translateX(-50%);
	border-style: solid;
}

.c-heading-band.bg-accent-green::after {
	position: absolute;
	bottom: -1.6875rem;
	border-top: 27px solid var(--color-accent-green);
	border-right: 55px solid transparent;
	border-bottom: 0;
	border-left: 55px solid transparent;
	content: "";
}

.c-heading-band.bg-accent-green::after {
	left: 50%;
	width: 0;
	height: 0;
	transform: translateX(-50%);
	border-style: solid;
}

.c-heading-band.bg-accent-navy::after {
	position: absolute;
	bottom: -1.6875rem;
	border-top: 27px solid var(--color-accent-navy);
	border-right: 55px solid transparent;
	border-bottom: 0;
	border-left: 55px solid transparent;
	content: "";
}

.c-heading-band.bg-accent-navy::after {
	left: 50%;
	width: 0;
	height: 0;
	transform: translateX(-50%);
	border-style: solid;
}

.c-heading-band.bg-accent-orange::after {
	position: absolute;
	bottom: -1.6875rem;
	border-top: 27px solid var(--color-accent);
	border-right: 55px solid transparent;
	border-bottom: 0;
	border-left: 55px solid transparent;
	content: "";
}

.c-heading-band.bg-accent-orange::after {
	left: 50%;
	width: 0;
	height: 0;
	transform: translateX(-50%);
	border-style: solid;
}

.c-heading-band.bg-yellow::after {
	position: absolute;
	bottom: -1.6875rem;
	border-top: 27px solid var(--color-bg-yellow);
	border-right: 55px solid transparent;
	border-bottom: 0;
	border-left: 55px solid transparent;
	content: "";
}

.c-heading-band.bg-yellow::after {
	left: 50%;
	width: 0;
	height: 0;
	transform: translateX(-50%);
	border-style: solid;
}

.c-heading-band.bg-yellow-light::after {
	position: absolute;
	bottom: -1.6875rem;
	border-top: 27px solid var(--color-bg-yellow-light);
	border-right: 55px solid transparent;
	border-bottom: 0;
	border-left: 55px solid transparent;
	content: "";
}

.c-heading-band.bg-yellow-light::after {
	left: 50%;
	width: 0;
	height: 0;
	transform: translateX(-50%);
	border-style: solid;
}

.c-heading-band.bg-white::after {
	position: absolute;
	bottom: -1.6875rem;
	border-top: 27px solid var(--color-white);
	border-right: 55px solid transparent;
	border-bottom: 0;
	border-left: 55px solid transparent;
	content: "";
}

.c-heading-band.bg-white::after {
	left: 50%;
	width: 0;
	height: 0;
	transform: translateX(-50%);
	border-style: solid;
}

.c-heading-band.bg-gray::after {
	position: absolute;
	bottom: -1.6875rem;
	border-top: 27px solid var(--color-bg-gray);
	border-right: 55px solid transparent;
	border-bottom: 0;
	border-left: 55px solid transparent;
	content: "";
}

.c-heading-band.bg-gray::after {
	left: 50%;
	width: 0;
	height: 0;
	transform: translateX(-50%);
	border-style: solid;
}

.c-heading-band.bg-accent-black::after {
	position: absolute;
	bottom: -1.6875rem;
	border-top: 27px solid var(--color-accent-black);
	border-right: 55px solid transparent;
	border-bottom: 0;
	border-left: 55px solid transparent;
	content: "";
}

.c-heading-band.bg-accent-black::after {
	left: 50%;
	width: 0;
	height: 0;
	transform: translateX(-50%);
	border-style: solid;
}

.c-heading-band.bg-main::after {
	position: absolute;
	bottom: -1.6875rem;
	border-top: 27px solid var(--color-main);
	border-right: 55px solid transparent;
	border-bottom: 0;
	border-left: 55px solid transparent;
	content: "";
}

.c-heading-band.bg-main::after {
	left: 50%;
	width: 0;
	height: 0;
	transform: translateX(-50%);
	border-style: solid;
}

.c-heading-band.bg-light::after {
	position: absolute;
	bottom: -1.6875rem;
	border-top: 27px solid var(--color-light);
	border-right: 55px solid transparent;
	border-bottom: 0;
	border-left: 55px solid transparent;
	content: "";
}

.c-heading-band.bg-light::after {
	left: 50%;
	width: 0;
	height: 0;
	transform: translateX(-50%);
	border-style: solid;
}

.c-heading-band.bg-sec02-heading::after {
	position: absolute;
	bottom: -1.6875rem;
	border-top: 27px solid var(--color-bg-sec02-heading);
	border-right: 55px solid transparent;
	border-bottom: 0;
	border-left: 55px solid transparent;
	content: "";
}

.c-heading-band.bg-sec02-heading::after {
	left: 50%;
	width: 0;
	height: 0;
	transform: translateX(-50%);
	border-style: solid;
}

.c-text-block {
	padding-block: 0.625rem 1.875rem;
}

.c-section-row {
	position: relative;
	padding-block: 1.875rem 1.25rem;
}

.c-grad-border {
	position: relative;
}

.c-grad-border picture,
.c-grad-border img {
	display: block;
	width: 100%;
}

.c-grad-border img {
	height: auto;
}

.c-section-cta {
	position: relative;
	padding-block: 1.25rem;
}

.c-section-cta {
	--cta-main-width: 100%;
	--cta-sub-width: 100%;
}

.c-section-cta__inner {
	display: block;
	position: relative;
}

.c-section-cta__figure img {
	display: block;
	width: 100%;
	height: auto;
}

.c-section-cta__overlay {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.c-section-cta__btn {
	display: block;
	position: absolute;
	transform: translate(-50%, -50%);
	line-height: 0;
	pointer-events: auto;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.c-section-cta__btn:hover {
	transform: translate(-50%, calc(-50% - 0.25rem));
	opacity: 0.92;
}

.c-section-cta__btn:focus-visible {
	transform: translate(-50%, calc(-50% - 0.25rem));
	outline: 2px solid var(--color-accent);
	outline-offset: 2px;
}

.c-section-cta__btn picture,
.c-section-cta__btn img {
	display: block;
}

.c-section-cta__btn img {
	width: 100%;
	height: auto;
}

.c-section-cta__btn--main {
	top: 10rem;
	left: 20.3125rem;
	width: var(--cta-main-width);
	max-width: 38.75rem;
}

.c-section-cta__btn--sub {
	top: 10.4375rem;
	right: -14.375rem;
	width: var(--cta-sub-width);
	max-width: 29.75rem;
}

.c-section-cta__note {
	padding-block: 0.625rem 0;
}

.c-section-cta__note p {
	color: var(--color-white);
}

.c-title {
	text-align: center;
}

.c-title__main {
	display: inline-block;
	font-weight: var(--font-bold);
	font-size: 2.5rem;
	line-height: 1.4;
	font-family: var(--font-mincho);
}

.c-title__main.--border {
	position: relative;
	padding-bottom: 1rem;
}

.c-title__main.--border::after {
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: var(--color-main);
	content: "";
}

.c-title__sub {
	margin-bottom: 0.75rem;
	color: var(--color-border);
	font-weight: var(--font-medium);
	font-size: 0.875rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
}

.c-faq {
	margin: 0 auto;
	padding: 0;
	list-style: none;
}

.c-faq__item {
	margin-bottom: 0.75rem;
	overflow: hidden;
	border: 1px solid #e0e0e0;
	border-radius: 1.5rem;
	background: var(--color-white);
}

.c-faq__item:last-child {
	margin-bottom: 0;
}

.c-faq__question {
	display: flex;
	position: relative;
	align-items: flex-start;
	padding: 1.25rem 2.5rem 1rem;
	gap: 0.75rem;
}

.c-faq__question::before {
	position: absolute;
	bottom: 0;
	left: 50%;
	width: calc(100% - 5rem);
	height: 1px;
	transform: translateX(-50%);
	background: #e0e0e0;
	content: "";
}

.c-faq__q-badge {
	display: flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	margin-top: 0.375rem;
	line-height: 0;
}

.c-faq__q-badge img {
	display: block;
	width: 2.3125rem;
	height: auto;
}

.c-faq__q-text {
	flex: 1;
	margin: 0;
	padding-top: 0.25rem;
	color: #35979b;
	font-weight: 700;
	font-size: 1.5rem;
	line-height: 1.7333333333;
}

.c-faq__answer {
	padding: 1.125rem 2.5rem 1.25rem;
}

.c-faq__answer-row {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	cursor: pointer;
}

.c-faq__a-badge {
	display: flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	margin-top: 0.375rem;
	line-height: 0;
}

.c-faq__a-badge img {
	display: block;
	width: 2.3125rem;
	height: auto;
}

.c-faq__answer-body {
	flex: 1;
	min-width: 0;
}

.c-faq__schema-text {
	min-width: 0;
}

.c-faq__answer-main {
	margin: 0;
	padding-top: 0.25rem;
	color: var(--color-black);
	font-weight: 700;
	font-size: 1.5rem;
	line-height: 1.7333333333;
}

.c-faq__answer-sub {
	display: none;
	width: calc(100% + 2.75rem);
	margin-top: 0.75rem;
	margin-right: -2.75rem;
	padding-top: 0.25rem;
}

.c-faq__answer-sub p {
	margin: 0;
	color: var(--color-text);
	font-weight: 500;
	font-size: 1.5rem;
	line-height: 1.7857142857;
}

.c-faq__answer-sub p + p {
	margin-top: 0.75rem;
}

.c-faq__toggle {
	display: flex;
	position: relative;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	margin: 0;
	padding: 0;
	border: none;
	background-color: transparent;
	cursor: pointer;
	transition: background 0.2s ease;
}

.c-faq__toggle:focus-visible {
	outline: 2px solid var(--color-accent);
	outline-offset: 2px;
}

.c-faq__toggle-icon {
	display: block;
	width: 100%;
	height: auto;
	transform: rotate(180deg);
	transition: transform 0.3s ease;
}

.c-faq__toggle.is-open .c-faq__toggle-icon {
	transform: rotate(0deg);
}

.c-faq__toggle-text {
	clip: rect(0, 0, 0, 0);
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	border: 0;
	white-space: nowrap;
}

.c-nav__list {
	display: flex;
	align-items: center;
	gap: 1.875rem;
}

.c-nav__item {
	height: 3.75rem;
	padding: 0 0.9375rem;
}

.c-nav__item--contact {
	height: auto;
	margin-left: 1.25rem;
	padding: 0;
}

.c-nav__item--contact a {
	display: block;
	height: 100%;
	padding: 1.5625rem 3.75rem;
	background-color: var(--color-main);
	color: #fff;
	font-weight: 700;
	font-size: 1.125rem;
	text-align: center;
	transition: opacity 0.3s;
}

.c-nav__item--has-child {
	position: relative;
}

.c-nav__item--has-child::after {
	position: absolute;
	top: 1.6875rem;
	right: 0;
	width: 0.3125rem;
	height: 0.3125rem;
	transform: rotate(45deg);
	border-right: 2px solid #000;
	border-bottom: 2px solid #000;
	content: "";
	transition: all 0.3s;
}

.c-nav__link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	font-size: 1rem;
}

.c-nav__under {
	background-image: linear-gradient(90deg, #333, #333);
	background-position: left bottom;
	background-size: 0 1px;
	background-repeat: no-repeat;
	color: #333;
	text-decoration: none;
	transition: background-size 0.6s;
}

.c-nav__submenu {
	display: none;
}

.c-menu-btn {
	display: none;
}

.c-menu-btn.is-open .c-menu-btn__line:nth-child(1) {
	top: 1.3125rem;
	left: 0.875rem;
	width: 55%;
	transform: translateY(0.375rem) rotate(-45deg);
}

.c-menu-btn.is-open .c-menu-btn__line:nth-child(2) {
	opacity: 0;
}

.c-menu-btn.is-open .c-menu-btn__line:nth-child(3) {
	top: 2.0625rem;
	left: 0.875rem;
	width: 55%;
	transform: translateY(-0.375rem) rotate(45deg);
}

.c-menu-btn__line {
	display: inline-block;
	position: absolute;
	left: 0.875rem;
	width: 55%;
	height: 2px;
	border-radius: 2px;
	background-color: #333;
	transition: all 0.4s;
}

.c-menu-btn__line:nth-child(1) {
	top: 1rem;
}

.c-menu-btn__line:nth-child(2) {
	top: 1.6875rem;
}

.c-menu-btn__line:nth-child(3) {
	top: 2.375rem;
}

.c-company-profile {
	--cp-teal: #35979b;
	--cp-border: #e0e0e0;
	width: 100%;
	max-width: 100%;
	border-collapse: collapse;
	font-size: 1.5rem;
	line-height: 1.75;
	font-family: var(--font-jp);
	letter-spacing: var(--letter-sp);
}

.c-company-profile caption {
	clip: rect(0, 0, 0, 0);
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	border: 0;
	white-space: nowrap;
}

.c-company-profile th,
.c-company-profile td {
	position: relative;
	padding: 1.25rem 0rem 1.25rem 1rem;
	border-bottom: 2px solid var(--cp-border);
	text-align: left;
	vertical-align: top;
}

.c-company-profile th::after {
	position: absolute;
	top: -2px;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: var(--cp-teal);
	content: "";
}

.c-company-profile tbody tr:last-child th,
.c-company-profile tbody tr:last-child td {
	border-bottom: none !important;
}

.c-company-profile thead th {
	color: var(--cp-teal);
	font-weight: var(--font-bold);
}

.c-company-profile thead th + th {
	color: var(--color-black);
	font-weight: 500;
}

.c-company-profile thead th + th::after {
	display: none;
}

.c-company-profile thead th:first-child {
	width: 12.375rem;
	min-width: 12.375rem;
	padding-left: 1.25rem;
}

.c-company-profile tbody th {
	width: 12.375rem;
	min-width: 12.375rem;
	padding-left: 1.25rem;
	color: var(--cp-teal);
	font-weight: var(--font-bold);
}

.c-company-profile tbody td {
	color: var(--color-black);
	font-weight: 500;
}

.c-company-profile thead tr:first-child th {
	border-top: 2px solid var(--cp-border);
}

.c-lawn-simulation {
	max-width: 53.125rem;
	margin-inline: auto;
	color: var(--color-black);
	font-family: var(--font-jp);
}

.c-lawn-simulation__form-panel {
	margin-bottom: 2.5rem;
	padding: 3.125rem 2.5rem;
	border-radius: 0;
	background: var(--color-white);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.c-lawn-simulation__header {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5625rem;
	gap: 1.25rem;
}

.c-lawn-simulation__logo img {
	display: block;
	width: 12.5rem;
	height: auto;
}

.c-lawn-simulation__title-area {
	display: flex;
	flex-direction: column;
}

.c-lawn-simulation__main-title {
	margin: 0 0 0.3125rem;
	color: #333;
	font-size: 2rem;
}

.c-lawn-simulation__sub-title {
	margin: 0;
	color: #6d8aac;
	font-size: 1.25rem;
	font-family: Georgia, "Times New Roman", serif;
}

.c-lawn-simulation__lead {
	margin-bottom: 1.875rem;
	color: #333;
	font-size: 0.875rem;
	text-align: center;
}

.c-lawn-simulation__form-table {
	width: 100%;
	max-width: 31.875rem;
	margin: 0 auto 1.875rem;
	border-top: 1px solid #c8c8c8;
}

.c-lawn-simulation__form-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.9375rem 0.625rem;
	border-bottom: 1px solid #c8c8c8;
}

.c-lawn-simulation__form-label {
	color: #333;
	font-size: 0.9375rem;
}

.c-lawn-simulation__form-input select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	width: 8.75rem;
	padding: 0.625rem;
	border: 1px solid #ccc;
	border-radius: 0;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='16' height='16' fill='%23333'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
	background-position: right 0.625rem center;
	background-repeat: no-repeat;
	background-color: #fff;
	color: #333;
	font-size: 0.9375rem;
	font-family: inherit;
	cursor: pointer;
}

.c-lawn-simulation__actions {
	text-align: center;
}

.c-lawn-simulation__submit {
	display: inline-flex;
	position: relative;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 17.5rem;
	padding: 1rem 1.25rem;
	border: none;
	border-radius: 0;
	background: #1a365d;
	color: #fff;
	font-weight: var(--font-bold);
	font-size: 0.9375rem;
	font-family: inherit;
	cursor: pointer;
	transition: background 0.3s;
}

.c-lawn-simulation__submit:hover {
	background: #24487a;
}

.c-lawn-simulation__submit-icon {
	position: absolute;
	right: 1.25rem;
	font-weight: var(--font-bold);
	font-size: 1.25rem;
}

.c-lawn-simulation__result {
	display: none;
	max-width: 53.125rem;
	margin: 0 auto;
}

.c-lawn-simulation__result.is-open {
	display: block;
}

.c-lawn-simulation__result-heading {
	position: relative;
	margin-bottom: 3.125rem;
	padding: 1.5rem 0.625rem;
	background: var(--color-accent-navy);
	text-align: center;
}

.c-lawn-simulation__result-heading h2 {
	margin: 0;
	color: #feff86;
	font-weight: 700;
	font-size: 1.75rem;
	letter-spacing: 0.2em;
}

.c-lawn-simulation__result-heading::after {
	position: absolute;
	right: 0;
	bottom: -1.8125rem;
	left: 0;
	height: 1.875rem;
	background: var(--color-accent-navy);
	content: "";
	clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.c-lawn-simulation__result-body {
	padding: 0;
}

.c-lawn-simulation__result-card {
	position: relative;
	margin-bottom: 0.625rem;
	padding: 2.5rem 1.875rem;
	border: 1px solid #ccc;
	border-radius: 0;
	background: #fff;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
	text-align: center;
}

.c-lawn-simulation__result-card--highlight {
	border: 2px solid var(--color-accent-green);
}

.c-lawn-simulation__result-label {
	margin-bottom: 1.25rem;
	color: #333;
	font-size: 1.25rem;
}

.c-lawn-simulation__result-label strong {
	font-weight: var(--font-bold);
}

.c-lawn-simulation__total {
	display: flex;
	align-items: baseline;
	justify-content: center;
	margin-bottom: 1.25rem;
	gap: 0.25rem;
}

.c-lawn-simulation__total-num {
	color: #1a365d;
	font-weight: var(--font-bold);
	font-size: 5.25rem;
	line-height: 1;
}

.c-lawn-simulation__total-unit {
	color: #1a365d;
	font-size: 1.5rem;
}

.c-lawn-simulation__sub-info {
	margin-bottom: 0.9375rem;
	padding: 1.125rem;
	border-radius: 0;
	background: #f5f5f5;
	color: #444;
	font-size: 0.875rem;
}

.c-lawn-simulation__note {
	color: #666;
	font-size: 0.875rem;
	line-height: 1.7;
	text-align: left;
}

.c-lawn-simulation__arrow-down {
	margin: 0.9375rem 0;
	color: var(--color-accent-green);
	font-size: 2rem;
	line-height: 1;
	text-align: center;
}

.c-lawn-simulation__savings {
	margin-bottom: 0.9375rem;
	padding: 0.9375rem;
	border-radius: 0;
	background: #f5f5f5;
}

.c-lawn-simulation__savings-num {
	color: #c0392b;
	font-weight: var(--font-bold);
	font-size: 2.5rem;
}

.c-lawn-simulation__savings-text {
	color: #c0392b;
	font-weight: var(--font-bold);
	font-size: 1.25rem;
}

.c-lawn-simulation__contact {
	max-width: 24rem;
	margin: 2.5rem auto 0;
	text-align: center;
}

.c-lawn-simulation__contact-lead {
	margin-bottom: 0.25rem;
	color: #333;
	font-weight: var(--font-bold);
	font-size: 1.05rem;
}

.c-lawn-simulation__contact-btn {
	display: block;
	width: 100%;
	transition: opacity 0.4s ease, transform 0.4s ease;
}

.c-lawn-simulation__contact-btn:hover {
	transform: translateY(-2px);
	opacity: 0.8;
}

.c-lawn-simulation__contact-btn img {
	display: block;
	width: 100%;
	height: auto;
}

.c-lawn-simulation__sp-only {
	display: none;
}

.c-mail-form {
	max-width: 69rem;
	margin-inline: auto;
	padding: 4.0625rem 1.5rem;
	border: 1px solid #e0e0e0;
	border-radius: 0.5rem;
	background: var(--color-white);
	box-shadow: 0 4px 1.25rem rgba(0, 0, 0, 0.06);
}

.c-mail-form__inner {
	max-width: 48.25rem;
	margin-inline: auto;
}

.c-mail-form__required-note {
	margin: 0 0 1.75rem;
	padding: 0.75rem 0.875rem;
	border-radius: 0.25rem;
	background: var(--color-bg-yellow-light);
	color: var(--color-text-form);
	font-weight: var(--font-semibold);
	font-size: 2rem;
	line-height: 1.6;
}

.c-mail-form__field {
	margin-bottom: 1.375rem;
}

.c-mail-form__label {
	display: block;
	margin-bottom: 0.5rem;
	color: var(--color-text-form);
	font-weight: var(--font-bold);
	font-size: 1.6rem;
	line-height: 1.5;
}

.c-mail-form__control {
	margin: 0;
}

.c-mail-form__input,
.c-mail-form__select,
.c-mail-form__textarea {
	box-sizing: border-box;
	width: 100%;
	max-width: 100%;
	padding: 0.75rem 0.875rem;
	border: 1px solid #ccc;
	border-radius: 0.25rem;
	background: var(--color-white);
	color: var(--color-black);
	font-weight: var(--font-medium);
	font-size: 1rem;
	line-height: 1.5;
	font-family: inherit;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.c-mail-form__input::-moz-placeholder,
.c-mail-form__select::-moz-placeholder,
.c-mail-form__textarea::-moz-placeholder {
	color: #999;
}

.c-mail-form__input::placeholder,
.c-mail-form__select::placeholder,
.c-mail-form__textarea::placeholder {
	color: #999;
}

.c-mail-form__input:hover,
.c-mail-form__select:hover,
.c-mail-form__textarea:hover {
	border-color: #aaa;
}

.c-mail-form__input:focus,
.c-mail-form__select:focus,
.c-mail-form__textarea:focus {
	border-color: var(--color-accent-green);
	outline: none;
	box-shadow: 0 0 0 3px rgba(63, 172, 176, 0.2);
}

.c-mail-form__textarea {
	display: block;
	min-height: 8.75rem;
	resize: vertical;
}

.c-mail-form__select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	padding-right: 2.5rem;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23333' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
	background-position: right 0.875rem center;
	background-size: 0.75rem 0.5rem;
	background-repeat: no-repeat;
	cursor: pointer;
}

.c-mail-form__actions {
	margin-top: 2.25rem;
	margin-bottom: 0;
	text-align: center;
}

.c-mail-form__submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: min(100%, 22.5rem);
	padding: 1.6rem 3.5rem;
	border: none;
	border-radius: 0.45rem;
	background: var(--color-accent);
	color: var(--color-white);
	font-weight: var(--font-bold);
	font-size: 2rem;
	line-height: 1.4;
	font-family: inherit;
	cursor: pointer;
	transition: background 0.2s ease, opacity 0.2s ease, transform 0.15s ease;
}

.c-mail-form__submit:focus-visible {
	outline: 2px solid var(--color-accent-navy);
	outline-offset: 3px;
}

.c-mail-form__submit:active {
	transform: translateY(1px);
}

.c-mail-form__footer {
	margin: 1.5rem 0 0;
	padding-top: 1.25rem;
	border-top: 1px solid #eee;
	font-size: 0.75rem;
	line-height: 1.5;
	text-align: center;
}

.c-mail-form__powered {
	color: var(--color-text);
	text-decoration: underline;
}

.thanks-page .thanks-main {
	padding-block: 7.5rem 5rem;
	text-align: center;
}

.thanks-page .thanks-main__title {
	margin: 0 0 2.5rem;
	font-weight: var(--font-bold, 700);
	font-size: 1.75rem;
	line-height: 1.4;
}

.thanks-page .thanks-main__lead {
	margin: 0 0 3.75rem;
	font-size: 1rem;
	line-height: 1.8;
}

.thanks-page .thanks-main__action {
	margin: 0;
}

.fv {
	z-index: 0;
	position: relative;
	background-color: var(--color-bg-gray);
}

.fv-point {
	padding-block: 0.9375rem;
}

.fv-main {
	position: relative;
	overflow: hidden;
}

.fv-content {
	z-index: 1;
	position: relative;
	padding-bottom: 1.875rem;
}

.fv-content img {
	position: relative;
	top: 1.875rem;
}

.fv-left {
	z-index: 0;
	position: absolute;
	top: 50%;
	left: 0;
	width: 61.5%;
	height: 26.0625rem;
	transform: translateY(-50%);
	border-radius: 0 3.125rem 3.125rem 0;
	background: rgba(255, 255, 255, 0.8);
}

.fv-right {
	z-index: -1;
	position: absolute;
	top: 0.75rem;
	right: 0;
	width: 61.5%;
	height: 29.25rem;
	overflow: hidden;
	border-radius: 3.125rem 0 0 3.125rem;
}

.fv-right img {
	-o-object-fit: cover;
	-o-object-position: center;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transform: scale(1.15);
}

.intro-copy {
	z-index: 0;
	position: relative;
	margin-bottom: 1.6875rem;
	padding-block: 1.25rem;
	background-color: var(--color-accent-green);
}

.intro-copy img {
	position: relative;
}

.intro-copy::after {
	position: absolute;
	bottom: -1.6875rem;
	border-top: 27px solid var(--color-accent-green);
	border-right: 55px solid transparent;
	border-bottom: 0;
	border-left: 55px solid transparent;
	content: "";
}

.intro-copy::after {
	left: 50%;
	width: 0;
	height: 0;
	transform: translateX(-50%);
	border-style: solid;
}

.intro-gallery {
	padding-block: 0.625rem;
	overflow: hidden;
}

.intro-gallery__slider {
	width: 100%;
	overflow: hidden;
}

.intro-gallery__track {
	display: flex;
	width: -moz-max-content;
	width: max-content;
	animation: introGalleryScroll 50s linear infinite;
}

.intro-gallery__group {
	display: flex;
}

.intro-gallery__item {
	display: block;
	flex: 0 0 200px;
	width: 200px;
	height: auto;
	margin-inline: 0.5rem;
	box-shadow: 0px 4px 10px 0 rgba(0, 0, 0, 0.3);
}

.intro-text {
	padding-block: 1.25rem 3.125rem;
}

.sec01-1 {
	padding-block: 1.25rem 2.5rem;
}

.sec02-heading {
	position: relative;
	margin-bottom: 1.6875rem;
	padding-block: 2.5rem;
	background-image: url(../img/sec02-bg-heading.webp);
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
}

.sec02-heading::after {
	position: absolute;
	bottom: -1.6875rem;
	border-top: 27px solid var(--color-bg-sec02-heading);
	border-right: 55px solid transparent;
	border-bottom: 0;
	border-left: 55px solid transparent;
	content: "";
}

.sec02-heading::after {
	left: 50%;
	width: 0;
	height: 0;
	transform: translateX(-50%);
	border-style: solid;
}

.sec02-list {
	padding-block: 1.25rem 2.5rem;
}

.sec02-image {
	position: relative;
	isolation: isolate;
}

.sec02-image::before {
	z-index: -1;
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 100vw;
	height: calc(100% - 2.5rem);
	transform: translateX(-50%);
	background: var(--gradient-soft-sky);
	content: "";
	pointer-events: none;
}

.sec02-text {
	padding-block: 1.25rem 3.75rem;
}

.sec03-heading {
	position: relative;
	padding-block: 0.625rem 2.5rem;
}

.sec03-text {
	padding-block: 1.25rem 3.75rem;
}

.sec03-image {
	padding-block: 2.5rem;
}

.sec03-image img {
	display: block;
	margin-inline: auto;
}

.sec04-heading {
	position: relative;
	padding-block: 1.25rem 0.625rem;
}

.sec04-content {
	padding-block: 2.5rem;
}

.sec04-content img {
	display: block;
	margin-inline: auto;
}

.sec04-text {
	padding-block: 1.875rem 3.125rem;
}

.sec05-heading {
	position: relative;
	padding-block: 0.625rem 2.5rem;
}

.sec05-text {
	padding-block: 1.875rem 3.125rem;
}

.sec06 {
	padding-block: 2.5rem;
}

.sec06-works {
	padding-block: 0.625rem;
}

.sec07-image {
	position: relative;
	padding-block: 2.5rem 0;
	isolation: isolate;
}

.sec07-text {
	padding-block: 0.625rem 1.875rem;
}

.sec09-heading {
	position: relative;
	width: 27.0625rem;
	max-width: 100%;
	margin-inline: auto;
	padding-block: 3.125rem 0;
}

.sec09-slider {
	padding-block: 1.875rem 3.125rem;
}

.sec10-heading {
	position: relative;
	padding-block: 0.625rem 1.875rem;
	isolation: isolate;
}

.sec10-text {
	padding-block: 1.25rem;
}

.sec10-desc {
	padding-block: 2.5rem;
}

.sec10-list {
	padding-block: 0rem 0rem;
}

.sec10-arrow {
	text-align: center;
}

.sec10-arrow img {
	width: 4.625rem;
}

.sec11-heading {
	position: relative;
	padding-block: 0.625rem 1.875rem;
	background-color: var(--color-accent-yellow);
	isolation: isolate;
}

.sec11-image {
	max-width: 45.625rem;
	margin-inline: auto;
	padding-block: 1.25rem 1.25rem;
}

.sec11-text {
	padding-block: 0 3.75rem;
}

.sec12-heading {
	position: relative;
	padding-block: 0.625rem 1.875rem;
	background-color: var(--color-accent-yellow);
	isolation: isolate;
}

.sec12-image {
	padding-block: 1.25rem 1.25rem;
}

.sec12-text {
	padding-block: 1.25rem 3.75rem;
}

.sec12-text p + p {
	margin-top: 1.875rem;
}

.sec13-heading {
	position: relative;
	padding-block: 0.625rem 0rem;
	isolation: isolate;
}

.sec13-grid {
	padding-block: 0rem 0rem;
}

.sec13-grid__list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	margin: 0;
	padding: 0;
	gap: 20px;
	list-style: none;
}

.sec13-grid__item {
	min-width: 0;
	margin: 0;
}

.sec13-grid__item img {
	display: block;
	width: 100%;
	height: auto;
}

.sec13-image {
	padding-block: 1.875rem 1.25rem;
}

.sec13-text {
	padding-block: 1.25rem 3.75rem;
}

.sec13-text p + p {
	margin-top: 1.875rem;
}

.sec14-heading {
	position: relative;
	padding-block: 0.625rem 1.875rem;
	isolation: isolate;
}

.sec14-text {
	padding-block: 1.25rem 3.75rem;
}

.sec14-text p + p {
	margin-top: 1.875rem;
}

.sec15-heading {
	position: relative;
	padding-block: 0.625rem 1.875rem;
	isolation: isolate;
}

.sec15-image {
	padding-block: 1.875rem 1.25rem;
}

.sec15-text {
	padding-block: 1.25rem 3.75rem;
}

.sec15-text p + p {
	margin-top: 1.875rem;
}

.sec16-heading {
	position: relative;
	padding-block: 2.5rem 0rem;
	isolation: isolate;
}

.sec16-image {
	padding-block: 1.875rem 1.25rem;
}

.sec16-content {
	padding-block: 3.75rem;
}

.sec17-heading {
	position: relative;
	padding-block: 0.625rem 1.875rem;
	isolation: isolate;
}

.sec17-content {
	padding-block: 1.875rem 1.25rem;
}

.sec17-image {
	padding-block: 0rem 1.875rem;
}

.sec18-heading {
	position: relative;
	padding-block: 0.9375rem;
	isolation: isolate;
}

.sec18-image {
	padding-block: 1.875rem 1.25rem;
}

.sec18-image img {
	display: block;
	max-width: 62.5rem;
	margin-inline: auto;
}

.sec18-text {
	padding-block: 1.25rem 3.75rem;
}

.sec18-text p + p {
	margin-top: 1.875rem;
}

.sec20-heading {
	position: relative;
	padding-block: 2.5rem 0.9375rem;
	isolation: isolate;
}

.sec20-lists {
	padding-block: 1.25rem 3.75rem;
}

.sec20-image {
	padding-block: 1.875rem 1.25rem;
}

.sec20-text {
	padding-block: 1.25rem 3.75rem;
}

.sec20-text p + p {
	margin-top: 1.875rem;
}

.sec21-heading {
	position: relative;
	padding-block: 0.9375rem 0rem;
	isolation: isolate;
}

.sec21-desc {
	padding-block: 1.875rem 1.25rem;
}

.sec21-image {
	padding-block: 1.875rem 1.25rem;
}

.sec21-lists {
	padding-block: 1.875rem 1.25rem;
}

.sec21-content {
	padding-block: 1.875rem 3.75rem;
}

.sec21-content p + p {
	margin-top: 1.875rem;
}

.sec22-copy {
	padding-block: 1.25rem;
}

.sec22-heading {
	position: relative;
	padding-block: 0.9375rem;
	isolation: isolate;
}

.sec22-content {
	padding-block: 1.875rem 3.125rem;
}

.sec22-flow {
	-moz-column-gap: 0.625rem;
	display: flex;
	column-gap: 0.625rem;
	row-gap: 1rem;
	flex-direction: column;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	margin-top: 1.875rem;
}

.sec22-flow__step {
	min-width: 0;
}

.sec22-flow__step picture,
.sec22-flow__step img {
	display: block;
}

.sec22-flow__step img {
	width: 100%;
	height: auto;
}

.sec22-flow__arrow {
	flex: 0 0 auto;
}

.sec22-flow__arrow picture,
.sec22-flow__arrow img {
	display: block;
}

.sec22-flow__arrow img {
	width: auto;
	max-width: 4.6875rem;
	height: auto;
	margin-inline: auto;
}

.sec23 {
	padding-block: 1.25rem 3.75rem;
}

.sec23-simulation {
	padding-block: 0rem 1.25rem;
}

.sec23-heading {
	position: relative;
	padding-block: 0.9375rem;
	isolation: isolate;
}

.sec23-profile {
	padding-block: 1.875rem 1.25rem;
}

.sec23-image {
	padding-block: 1.875rem 1.25rem;
}

.sec23-text {
	padding-block: 1.25rem 3.75rem;
}

.sec23-text p + p {
	margin-top: 1.875rem;
}

.sec23-heading-sub {
	padding-block: 1.25rem 0;
}

.sec24-heading {
	position: relative;
	padding-block: 3.125rem;
	isolation: isolate;
}

.sec24-image {
	position: relative;
	padding-block: 1.875rem 0rem;
}

.sec24-image::before {
	z-index: -1;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: calc(100% - 0.625rem);
	background: var(--gradient-soft-sky);
	content: "";
}

.sec24-text {
	padding-block: 1.25rem 3.75rem;
}

.sec24-text p + p {
	margin-top: 1.875rem;
}

.sec25-heading {
	position: relative;
	margin-bottom: 2.5rem;
	padding-block: 2.5rem;
	isolation: isolate;
}

.sec25-heading::after {
	position: absolute;
	bottom: -1.6875rem;
	border-top: 27px solid var(--color-accent-yellow);
	border-right: 55px solid transparent;
	border-bottom: 0;
	border-left: 55px solid transparent;
	content: "";
}

.sec25-heading::after {
	left: 50%;
	width: 0;
	height: 0;
	transform: translateX(-50%);
	border-style: solid;
}

.sec25-image {
	padding-block: 1.875rem 1.25rem;
}

.sec25-text {
	padding-block: 1.25rem 3.75rem;
}

.sec25-text p + p {
	margin-top: 1.875rem;
}

.sec25-form {
	padding-block: 0rem 3.75rem;
}

.sec26 {
	padding-block: 1.25rem 3.75rem;
}

.sec26-heading {
	position: relative;
	isolation: isolate;
}

@media (hover: hover) {

.footer__link:hover {
	opacity: 0.75;
}

.c-btn:hover,
.c-btn:active {
	background-color: #fff;
	color: var(--color-main);
}

.c-btn:hover::before,
.c-btn:active::before {
	background: url(../img/btn-arrow-black.svg) no-repeat center center/contain;
}

.c-btn--accent:hover,
.c-btn--accent:active {
	background-color: #fff;
	color: var(--color-accent);
}

.c-btn--ghost:hover,
.c-btn--ghost:active {
	background-color: var(--color-main);
	color: #fff;
}

.c-btn--ghost:hover::before,
.c-btn--ghost:active::before {
	background: url(../img/btn-arrow.svg) no-repeat center center/contain;
}

.c-nav__item--contact a:hover,
.c-nav__item--contact a:active {
	opacity: 0.8;
}

.c-mail-form__submit:hover {
	background: #e67d1f;
}

.c-mail-form__powered:hover {
	color: var(--color-accent);
}

}

@media (prefers-reduced-motion: reduce) {

.c-works-slider__track {
	transition: none;
}

.intro-gallery__track {
	animation: none;
}

}

@media screen and (min-width: 768px) {

br.is-br-pc {
	display: inline;
}

.c-nav__item:hover .c-nav__under,
.c-nav__item:active .c-nav__under {
	background-size: 100% 1px;
}

}

@media screen and (min-width: 1201px) {

.c-nav__item--has-child {
	cursor: default;
}

.c-nav__item--has-child:hover .c-nav__submenu,
.c-nav__item--has-child:active .c-nav__submenu {
	display: flex !important;
}

.c-nav__item--has-child:hover::after,
.c-nav__item--has-child:active::after {
	top: 1.875rem;
	transform: rotate(45deg) scale(-1);
}

.c-nav__submenu {
	display: none !important;
	position: absolute;
	top: 3.75rem;
	width: 100%;
}

}

@media (max-width: 1440px) {

.fv-left {
	top: 49%;
	height: 85%;
}

.fv-right {
	aspect-ratio: 872/468;
	height: calc(100% - 2.0625rem);
}

}

@media (max-width: 1230px) {

.c-section-cta__btn--main {
	top: 24vw;
	left: 50%;
	max-width: 83vw;
}

.c-section-cta__btn--sub {
	top: 64vw;
	right: auto;
	left: 50%;
	max-width: 68vw;
}

}

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

.c-nav {
	z-index: -1;
	position: fixed;
	top: -300%;
	left: 0;
	width: 100%;
	height: 100vh;
	background: var(--color-light);
	transition: all 0.6s;
}

.c-nav.is-open {
	top: 0;
}

.c-nav.is-open .c-nav__inner {
	-webkit-overflow-scrolling: touch;
	z-index: 40;
	position: relative;
	width: 100%;
	height: 100vh;
	padding: 3.75rem 1rem;
	overflow: auto;
}

.c-nav__list {
	flex-direction: column;
	width: 100%;
	max-width: 25rem;
	margin: 0 auto;
	gap: 0;
}

.c-nav__item {
	width: 100%;
	height: auto;
	padding: 0;
}

.c-nav__item:not(:last-child) {
	border-bottom: 1px solid #CCCCCC;
}

.c-nav__item--contact {
	margin-top: 3.75rem;
	margin-left: 0;
}

.c-nav__item--has-child {
	cursor: pointer;
}

.c-nav__item--has-child.is-open::after {
	top: 1.875rem;
	transform: rotate(45deg) scale(-1);
}

.c-nav__link {
	padding: 1.25rem;
}

.c-nav__submenu {
	border-top: 1px solid #CCCCCC;
}

.c-menu-btn {
	display: block;
	z-index: 40;
	position: relative;
	width: 3.75rem;
	height: 3.75rem;
	cursor: pointer;
}

}

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

html {
	font-size: 1.584vw;
}

}

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

html {
	font-size: 100%;
}

.is-pc {
	display: none;
}

.is-sp {
	display: block;
}

br.is-br-sp {
	display: inline;
}

.img-wrap.--sp-16x9 {
	aspect-ratio: 16/9;
}

.img-wrap.--sp-4x3 {
	aspect-ratio: 4/3;
}

.img-wrap.--sp-3x2 {
	aspect-ratio: 3/2;
}

.img-wrap.--sp-1x1 {
	aspect-ratio: 1/1;
}

.img-wrap.--sp-free {
	aspect-ratio: auto;
	height: auto;
}

.img-wrap.--sp-free img {
	height: auto;
}

.bg-img--fixed {
	background-attachment: scroll;
}

.text-tile {
	font-size: 0.8125rem;
}

.text-tile--24 {
	font-size: 0.9375rem;
}

.text-tile--36 {
	font-size: 1.375rem;
	letter-spacing: -0.04em;
}

.text-size--30 {
	font-size: 1.5625rem;
}

.text-size--10-sp {
	font-size: 0.625rem;
	line-height: 1.7;
}

.text-size--15-sp {
	font-size: 0.9375rem;
	line-height: 1.7;
}

.text-size--20-sp {
	font-size: 1.25rem;
	line-height: 1.7;
}

.text-shippori-48 {
	font-size: 1.5rem;
}

.header {
	padding-block: 0.25rem 0.125rem;
}

.header img {
	width: 7.5rem;
}

.header-copy {
	padding-block: 0.46875rem;
}

.footer {
	padding: 0.75rem 0 1rem;
}

.footer__links {
	margin-bottom: 0.75rem;
	gap: 1rem;
}

.footer small {
	font-size: 0.6875rem;
}

.container {
	--container-gutter: 1rem;
}

.container--sp-full {
	max-width: none;
	padding-inline: 0;
}

.section {
	padding-block: 2rem;
}

.c-btn {
	min-width: 17.5rem;
	max-width: 100%;
	min-height: 3.625rem;
	padding: 0.3125rem 1.5625rem;
	font-size: 1rem;
}

.c-btn::before {
	right: 0.75rem;
	width: 0.4375rem;
	height: 0.6875rem;
}

.c-check-list__item {
	padding-left: 1.25rem;
	padding-block: 0.625rem;
}

.c-check-list__item:last-child {
	border-bottom: none;
}

.c-check-list__icon {
	top: 0.875rem;
	width: 0.9375rem;
	height: 0.9375rem;
}

.c-check-list__text {
	font-size: 0.9375rem;
}

.c-check-list--center-rule .c-check-list__item {
	padding: 0.625rem 0;
}

.c-check-list--center-rule .c-check-list__icon {
	top: 1.3125rem;
	left: 0;
}

.c-check-list--center-rule .c-check-list__text {
	padding-left: calc(0.625rem + 0.75rem);
}

.c-gallery-col4 .container {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	max-width: none;
	padding-inline: 0;
	gap: 2.5px;
}

.c-gallery-col3 {
	padding-bottom: 0rem;
}

.c-gallery-col3 .container {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 2.5px;
}

.c-works-slider {
	padding-inline: 0.3125rem;
	gap: 0rem;
}

.c-works-slider__arrow img {
	max-width: 1.25rem;
}

.c-works-slider__viewport {
	max-width: min(80vw, 18.75rem);
}

.c-works-slider__slide {
	flex: 0 0 100cqi;
	width: 100cqi;
}

.c-works-slider__slide img {
	aspect-ratio: 600/420;
}

.c-heading-band.bg-accent-yellow::after {
	bottom: -1.0625rem;
	border-top: 17px solid var(--color-accent-yellow);
	border-right: 30.5px solid transparent;
	border-bottom: 0;
	border-left: 30.5px solid transparent;
}

.c-heading-band.bg-accent-green::after {
	bottom: -1.0625rem;
	border-top: 17px solid var(--color-accent-green);
	border-right: 30.5px solid transparent;
	border-bottom: 0;
	border-left: 30.5px solid transparent;
}

.c-heading-band.bg-accent-navy::after {
	bottom: -1.0625rem;
	border-top: 17px solid var(--color-accent-navy);
	border-right: 30.5px solid transparent;
	border-bottom: 0;
	border-left: 30.5px solid transparent;
}

.c-heading-band.bg-accent-orange::after {
	bottom: -1.0625rem;
	border-top: 17px solid var(--color-accent);
	border-right: 30.5px solid transparent;
	border-bottom: 0;
	border-left: 30.5px solid transparent;
}

.c-heading-band.bg-yellow::after {
	bottom: -1.0625rem;
	border-top: 17px solid var(--color-bg-yellow);
	border-right: 30.5px solid transparent;
	border-bottom: 0;
	border-left: 30.5px solid transparent;
}

.c-heading-band.bg-yellow-light::after {
	bottom: -1.0625rem;
	border-top: 17px solid var(--color-bg-yellow-light);
	border-right: 30.5px solid transparent;
	border-bottom: 0;
	border-left: 30.5px solid transparent;
}

.c-heading-band.bg-white::after {
	bottom: -1.0625rem;
	border-top: 17px solid var(--color-white);
	border-right: 30.5px solid transparent;
	border-bottom: 0;
	border-left: 30.5px solid transparent;
}

.c-heading-band.bg-gray::after {
	bottom: -1.0625rem;
	border-top: 17px solid var(--color-bg-gray);
	border-right: 30.5px solid transparent;
	border-bottom: 0;
	border-left: 30.5px solid transparent;
}

.c-heading-band.bg-accent-black::after {
	bottom: -1.0625rem;
	border-top: 17px solid var(--color-accent-black);
	border-right: 30.5px solid transparent;
	border-bottom: 0;
	border-left: 30.5px solid transparent;
}

.c-heading-band.bg-main::after {
	bottom: -1.0625rem;
	border-top: 17px solid var(--color-main);
	border-right: 30.5px solid transparent;
	border-bottom: 0;
	border-left: 30.5px solid transparent;
}

.c-heading-band.bg-light::after {
	bottom: -1.0625rem;
	border-top: 17px solid var(--color-light);
	border-right: 30.5px solid transparent;
	border-bottom: 0;
	border-left: 30.5px solid transparent;
}

.c-heading-band.bg-sec02-heading::after {
	bottom: -1.0625rem;
	border-top: 17px solid var(--color-bg-sec02-heading);
	border-right: 30.5px solid transparent;
	border-bottom: 0;
	border-left: 30.5px solid transparent;
}

.c-text-block {
	padding-block: 0 1.25rem;
}

.c-section-row {
	padding-block: 1.25rem;
}

.c-section-cta {
	padding-block: 1.25rem;
}

.c-section-cta {
	--cta-main-left: 50%;
	--cta-main-top: 48%;
	--cta-main-width: 95%;
	--cta-sub-left: 50%;
	--cta-sub-top: 78%;
	--cta-sub-width: 88%;
}

.c-section-cta__btn--main {
	top: 23vw;
	max-width: 88vw;
}

.c-section-cta__btn--sub {
	top: 63.5vw;
	max-width: 77vw;
}

.c-title__main {
	font-size: 1.625rem;
}

.c-title__main.--border {
	padding-bottom: 0.625rem;
}

.c-title__sub {
	margin-bottom: 0.5rem;
	font-size: 0.75rem;
}

.c-faq__item {
	border-radius: 0.9375rem;
}

.c-faq__question {
	padding: 0.625rem 0.625rem 0.5rem;
}

.c-faq__question::before {
	width: calc(100% - 1.25rem);
}

.c-faq__q-badge {
	margin-top: 0.3125rem;
}

.c-faq__q-badge img {
	width: 1.09375rem;
}

.c-faq__q-text {
	padding-top: 0;
	font-size: 0.9375rem;
	line-height: 1.7142857143;
}

.c-faq__answer {
	padding: 0.625rem 0.625rem 0.5rem;
}

.c-faq__a-badge {
	margin-top: 0.3125rem;
}

.c-faq__a-badge img {
	width: 1.09375rem;
}

.c-faq__answer-main {
	padding-top: 0;
	font-size: 0.9375rem;
	line-height: 1.7142857143;
}

.c-faq__answer-sub {
	width: calc(100% + 2.03125rem);
	margin-top: 0.375rem;
	margin-right: -2.03125rem;
}

.c-faq__answer-sub p {
	font-size: 0.875rem;
	line-height: 1.7142857143;
}

.c-faq__toggle {
	width: 1.28125rem;
	height: 1.28125rem;
}

.c-menu-btn {
	width: 3.125rem;
	height: 3.125rem;
}

.c-menu-btn.is-open .c-menu-btn__line:nth-child(1) {
	top: 1.1875rem;
	left: 0.75rem;
}

.c-menu-btn.is-open .c-menu-btn__line:nth-child(3) {
	top: 1.9375rem;
	left: 0.75rem;
}

.c-menu-btn__line {
	left: 0.75rem;
}

.c-menu-btn__line:nth-child(2) {
	top: 1.5625rem;
}

.c-menu-btn__line:nth-child(3) {
	top: 2.125rem;
}

.c-company-profile {
	font-size: 0.9375rem;
	line-height: 1.7;
}

.c-company-profile th,
.c-company-profile td {
	padding: 0.625rem 0rem;
}

.c-company-profile thead th:first-child {
	width: 5.46875rem;
	min-width: 5.46875rem;
	padding-left: 0;
}

.c-company-profile tbody th {
	width: 5.46875rem;
	min-width: 5.46875rem;
	padding-left: 0;
}

.c-lawn-simulation__form-panel {
	padding: 1.875rem 1.25rem;
}

.c-lawn-simulation__header {
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.625rem;
}

.c-lawn-simulation__logo img {
	width: 9.375rem;
}

.c-lawn-simulation__title-area {
	align-items: center;
	text-align: center;
}

.c-lawn-simulation__main-title {
	line-height: 1.4;
}

.c-lawn-simulation__form-input select {
	width: 6.875rem;
}

.c-lawn-simulation__result-card {
	padding: 1.875rem 1.25rem;
}

.c-lawn-simulation__total-num {
	font-size: 2.75rem;
}

.c-lawn-simulation__savings-num {
	font-size: 1.75rem;
}

.c-lawn-simulation__sp-only {
	display: block;
}

.c-mail-form {
	padding: 1.5rem 1rem;
}

.c-mail-form__required-note {
	font-size: 1rem;
}

.c-mail-form__label {
	font-size: 1rem;
}

.c-mail-form__submit {
	padding: 1rem 2.5rem;
	font-size: 1rem;
}

.thanks-page .thanks-main__title {
	font-size: 1.375rem;
}

.fv-point {
	padding-block: 0.625rem 0;
}

.fv-main {
	margin-bottom: -0.625rem;
}

.fv-content {
	padding-bottom: 2.5rem;
}

.fv-left {
	top: 48%;
	width: 81%;
	height: 76%;
	border-radius: 0 1.5625rem 1.5625rem 0;
}

.fv-right {
	height: calc(100% - 2.0625rem);
	border-radius: 1.5625rem 0 0 1.5625rem;
}

.intro-copy {
	margin-bottom: 1.125rem;
}

.intro-copy::after {
	bottom: -1.0625rem;
	border-top: 17px solid var(--color-accent-green);
	border-right: 30.5px solid transparent;
	border-bottom: 0;
	border-left: 30.5px solid transparent;
}

.intro-copy {
	padding-inline: 1.25rem;
}

.intro-gallery {
	margin-block: 0rem;
	padding-block: 0.3125rem;
}

.intro-gallery__item {
	flex: 0 0 120px;
	width: 120px;
	margin-inline: 0.3125rem;
}

.intro-text {
	margin-top: 0rem;
	padding-block: 0rem 0.9375rem;
}

.sec01-1 {
	padding-block: 0.625rem 1.5625rem;
}

.sec02-heading {
	margin-bottom: 1.0625rem;
}

.sec02-heading::after {
	bottom: -1.0625rem;
	border-top: 17px solid var(--color-bg-sec02-heading);
	border-right: 30.5px solid transparent;
	border-bottom: 0;
	border-left: 30.5px solid transparent;
}

.sec02-heading {
	padding-block: 1.25rem;
}

.sec02-heading img {
	display: block;
	width: 90%;
	margin-inline: auto;
}

.sec02-list {
	padding-block: 0 0rem;
}

.sec02-image::before {
	height: calc(100% - 1.25rem);
}

.sec02-text {
	padding-block: 0.625rem 0.9375rem;
}

.sec03-heading {
	padding-inline: 0.625rem;
	padding-block: 0.625rem 1.25rem;
}

.sec03-text {
	padding-block: 0.625rem 0.9375rem;
}

.sec03-image {
	padding-block: 1.25rem;
}

.sec04-content {
	padding-block: 1rem;
}

.sec04-text {
	padding-block: 1rem 1.25rem;
}

.sec05-heading {
	padding-block: 0.625rem 1.5625rem;
}

.sec05-text {
	padding-block: 1rem 1.25rem;
}

.sec06 {
	padding-block: 0.625rem 1.25rem;
}

.sec07-image {
	padding-block: 1.25rem 0;
}

.sec07-text {
	padding-block: 0.625rem;
}

.sec09-heading {
	width: 13.75rem;
	padding-block: 1.25rem 0;
}

.sec09-slider {
	padding-block: 1.25rem 1.875rem;
}

.sec10-heading {
	padding-inline: 0.625rem;
	padding-block: 0.625rem 0.9375rem;
}

.sec10-text {
	padding-block: 0.625rem 0.625rem;
}

.sec10-desc {
	padding-block: 1.25rem;
}

.sec10-arrow img {
	width: 3.25rem;
}

.sec11-heading {
	padding-block: 0.625rem 1.25rem;
}

.sec11-image {
	padding-block: 0.625rem 0.625rem;
}

.sec11-text {
	padding-block: 0 2.5rem;
}

.sec12-image {
	padding-block: 0.625rem 0.625rem;
}

.sec12-text {
	padding-block: 0rem 1.25rem;
}

.sec12-text p + p {
	margin-top: 0.625rem;
}

.sec13-grid__list {
	grid-template-columns: repeat(1, 1fr);
	gap: 0.625rem;
}

.sec13-text {
	padding-block: 1.25rem 1.875rem;
}

.sec14-heading {
	padding-block: 0.625rem 1.25rem;
}

.sec14-text {
	padding-block: 1.25rem 1.25rem;
}

.sec15-heading {
	padding-block: 0.9375rem 1.5625rem;
}

.sec15-image {
	padding-block: 0.625rem 0.625rem;
}

.sec15-text {
	padding-block: 0rem 1.875rem;
}

.sec16-heading {
	padding-block: 1.25rem 0rem;
}

.sec16-content {
	padding-block: 1.25rem 1.875rem;
}

.sec17-heading {
	padding-block: 0.625rem 1.25rem;
}

.sec17-content {
	padding-block: 1.25rem;
}

.sec17-image {
	padding-block: 0rem 0.9375rem;
}

.sec17-lists {
	padding-inline: 0.3125rem;
}

.sec18-image {
	padding-block: 0.625rem 0rem;
}

.sec18-text {
	padding-block: 0rem 1.875rem;
}

.sec20-heading {
	padding-block: 1.875rem 0rem;
}

.sec20-lists {
	padding-block: 0.9375rem 1.875rem;
}

.sec21-desc {
	padding-block: 0.625rem 0.625rem;
}

.sec21-content {
	padding-block: 0.9375rem 1.875rem;
}

.sec22-copy {
	padding-block: 0.625rem;
}

.sec22-content {
	padding-block: 0.9375rem 1.875rem;
}

.sec22-flow {
	row-gap: 0.5rem;
	flex-direction: column;
	margin-top: 1.25rem;
}

.sec22-flow__step {
	flex: 0 0 auto;
	width: 100%;
	max-width: 25rem;
}

.sec22-flow__arrow img {
	max-width: 2.34375rem;
}

.sec22-flow__arrow {
	margin-block: 0.25rem;
}

.sec23-heading-sub {
	padding-block: 0.625rem 0;
}

.sec24-heading {
	padding-block: 1.875rem;
}

.sec24-image::before {
	height: calc(100% - 1.0625rem);
}

.sec24-image {
	padding-block: 0rem 0rem;
}

.sec24-text {
	padding-block: 0.625rem 1.875rem;
}

.sec25-heading {
	margin-bottom: 1.5625rem;
	padding-block: 1.25rem;
}

.sec25-heading::after {
	bottom: -1.0625rem;
	border-top: 17px solid var(--color-accent-yellow);
	border-right: 30.5px solid transparent;
	border-bottom: 0;
	border-left: 30.5px solid transparent;
}

.sec25-text {
	padding-block: 0rem 1.875rem;
}

.sec25-form {
	padding-block: 0rem 1.875rem;
}

.sec26 {
	padding-block: 0.625rem 1.25rem;
}

}

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

html {
	font-size: 4.267vw;
}

}

@keyframes introGalleryScroll {

from {
	transform: translateX(0);
}

to {
	transform: translateX(-50%);
}

}

