@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@500&display=swap");

/* リキッドレイアウト対応 */

/* hero 全体：ここを基準にする */

body {
	font-family: "Noto Sans JP", serif;
}

.t-mobile {
	display: block;
}

.t-desktop {
	display: none;
}

.u-mobile {
	display: none;
}

/* =========================
   Base
========================= */

html,
body {
	margin: 0;
	padding: 0;
}

body {
	background-color: #ffffff;
	color: #000000;
	font-family: "Noto Sans JP", "Roboto", sans-serif;
	font-size: 16px;
	line-height: 1.8; /* 最小サイズ16px */
}

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

a {
	color: inherit;
	text-decoration: none;
}

a:hover {
	opacity: 0.7;
}

/* 共通インナー（.xxx__inner 用） */

.header__inner,
.hero__inner,
.service__inner,
.greeting__inner,
.concept__inner,
.works__inner,
.contact__inner {
	margin: 0 auto;
	max-width: 960px;
	padding: 0 20px;
}

/* 共通セクション余白 */

.service,
.greeting,
.concept,
.works,
.contact {
	padding-bottom: 120px;
	padding-top: 120px;
}

/* =========================
   Brand Colors
========================= */

/* ホバー */

a {
	color: inherit;
	text-decoration: none;
	-webkit-transition: opacity 0.3s;
	transition: opacity 0.3s;
}

/* =========================
   Brand Colors
========================= */

*,
*::before,
*::after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

/* Remove default padding */

ul,
ol {
	padding: 0;
}

/* Remove default margin */

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
	margin: 0;
}

/* Set core root defaults */

html {
	scroll-behavior: smooth;
}

/* Set core body defaults */

body {
	line-height: 1.5;
	min-height: 100vh;
	text-rendering: optimizeSpeed;
}

/* Remove list styles on ul, ol elements with a class attribute */

ul,
ol {
	list-style: none;
}

/* A elements that don't have a class get default styles */

a:not([class]) {
	-webkit-text-decoration-skip: ink;
	text-decoration-skip-ink: auto;
}

/* Make images easier to work with */

img {
	display: block;
	max-width: 100%;
	width: 100%;
}

/* Natural flow and rhythm in articles by default */

article > * + * {
	margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */

input,
button,
textarea,
select {
	font: inherit;
}

/* Blur images when they have no alt attribute */

img:not([alt]) {
	filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
	-webkit-filter: blur(10px);
	filter: blur(10px);
}

/* フォームリセット */

input,
button,
select,
textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: transparent;
	border: none;
	border-radius: 0;
	font: inherit;
	outline: none;
}

textarea {
	resize: vertical;
}

input[type=checkbox],
input[type=radio] {
	display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
	cursor: pointer;
}

select::-ms-expand {
	display: none;
}

.accordion__container {
	margin-left: auto;
	margin-right: auto;
	max-width: 740px;
	max-width: 46.25rem;
	width: 100%;
}

.accordion__item {
	-webkit-transition: 1s;
	transition: 1s;
}

.accordion__item:not(first-child) {
	margin-top: 10px;
	margin-top: 0.625rem;
}

.accordion__title {
	background-color: #3498db;
	border-radius: 6px;
	color: #fff;
	cursor: pointer;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 21px 50px 20px 20px;
	padding: 1.3125rem 3.125rem 1.25rem 1.25rem;
	position: relative;
}

.accordion__title::before,
.accordion__title::after {
	background-color: #fff;
	content: "";
	height: 2px;
	height: 0.125rem;
	position: absolute;
	right: 21px;
	right: 1.3125rem;
	top: 50%;
	width: 18px;
	width: 1.125rem;
}

.accordion__title::before {
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
	-webkit-transition: 0.1s;
	transition: 0.1s;
}

.accordion__title.is-open::before {
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
	-webkit-transition: 0.1s;
	transition: 0.1s;
}

.accordion__title-text {
	color: #fff;
	font-family: "Noto Sans JP", serif;
	font-size: 18px;
	font-size: 1.125rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	margin-left: 14px;
	margin-left: 0.875rem;
	padding-left: 1em;
	text-indent: -1em;
}

.accordion__content {
	background: #fff;
	display: none;
	padding-bottom: 21px;
	padding-bottom: 1.3125rem;
	padding-left: 20px;
	padding-left: 1.25rem;
	padding-right: 20px;
	padding-right: 1.25rem;
	padding-top: 21px;
	padding-top: 1.3125rem;
}

.accordion__text {
	font-family: "Noto Sans JP", serif;
	font-size: 18px;
	font-size: 1.125rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 1.867;
}

.article {
	background-color: #fff;
	border-radius: 8px;
	color: #333;
	line-height: 1.8;
	margin: 0 auto;
	max-width: 720px;
	padding: 40px 20px;
}

.article__title {
	color: #007acc;
	font-size: 28px;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 24px;
}

.article__meta {
	gap: 16px;
	color: #888;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	font-size: 14px;
	margin-bottom: 16px;
}

.article__content {
	color: #444;
	font-size: 16px;
}

.article__content h2,
.article__content h3,
.article__content h4 {
	color: #007acc;
	line-height: 1.5;
	margin-bottom: 16px;
	margin-top: 40px;
}

.article__content p {
	margin-bottom: 24px;
}

.article__content ul,
.article__content ol {
	margin-bottom: 24px;
	padding-left: 1.5em;
}

.article__content blockquote {
	background-color: #f9fafb;
	border-left: 4px solid #007acc;
	color: #555;
	margin: 32px 0;
	padding-left: 16px;
}

.article__content img {
	border-radius: 4px;
	height: auto;
	margin: 24px 0;
	max-width: 100%;
}

.blog .blog__wrapper {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-top: 100px;
	margin-top: 6.25rem;
}

.blog__list {
	max-width: 740px;
	max-width: 46.25rem;
	width: 100%;
}

.blog__item {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	max-width: 740px;
	max-width: 46.25rem;
	width: 100%;
}

.blog__item + .blog__item {
	margin-top: 32px;
	margin-top: 2rem;
}

.blog__info {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	max-width: 236.8px;
	max-width: 14.8rem;
	width: 100%;
}

.blog__date {
	display: inline-block;
	font-size: 16px;
	font-size: 1rem;
	line-height: 1;
}

.blog__category {
	background: -webkit-gradient(linear, right top, left top, from(#3bade3), color-stop(25%, #576fe6), color-stop(51%, #9844b7), to(#ff357f)) 99% 50%/200% auto;
	background: linear-gradient(270deg, #3bade3 0%, #576fe6 25%, #9844b7 51%, #ff357f 100%) 99% 50%/200% auto;
	border: 1px solid #fff;
	border-radius: 4px;
	color: #fff;
	display: inline-block;
	font-size: 16px;
	font-size: 1rem;
	letter-spacing: 0.04em;
	line-height: 1;
	margin-left: 27px;
	margin-left: 1.6875rem;
	padding: 7px 22px;
	padding: 0.4375rem 1.375rem;
}

.blog__block {
	margin-left: 44px;
	margin-left: 2.75rem;
	max-width: 740px;
	max-width: 46.25rem;
	text-align: left;
	width: 100%;
}

.blog__text {
	font-size: 16px;
	font-size: 1rem;
	letter-spacing: 0.04em;
	line-height: 1.4375;
}

.blog__text:hover {
	-webkit-text-decoration-color: #3466db;
	text-decoration-thickness: 3px;
	text-decoration: underline;
	text-decoration-color: #3466db;
}

.blog-btn {
	margin-top: 80px;
	margin-top: 5rem;
}

.btn-a {
	background: -webkit-gradient(linear, right top, left top, from(#3bade3), color-stop(25%, #576fe6), color-stop(51%, #9844b7), to(#ff357f)) 99% 50%/200% auto;
	background: linear-gradient(270deg, #3bade3 0%, #576fe6 25%, #9844b7 51%, #ff357f 100%) 99% 50%/200% auto;
	border-radius: 0.375rem;
	color: #fff;
	display: inline-block;
	font-family: "Noto Sans JP", serif;
	font-size: 18px;
	font-size: 1.125rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	overflow: hidden;
	padding: 10px 110px;
	padding: 0.625rem 6.875rem;
	padding-bottom: 16px;
	padding-bottom: 1rem;
	padding-left: 90px;
	padding-left: 5.625rem;
	padding-right: 110px;
	padding-right: 6.875rem;
	padding-top: 16px;
	padding-top: 1rem;
	position: relative;
	text-align: center;
	-webkit-transition: 1s;
	transition: 1s;
	white-space: nowrap;
}

.btn-a:hover {
	border-radius: 10px;
	-webkit-box-shadow: 0px 39px 31px -6px #777777;
	box-shadow: 0px 39px 31px -6px #777777;
	-webkit-transition: 1s;
	transition: 1s;
}

.btn-a::before {
	background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, .3)));
	background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
	content: "";
	height: 100%;
	left: -75%;
	position: absolute;
	top: 0;
	-webkit-transform: skewX(-25deg);
	transform: skewX(-25deg);
	width: 50%;
}

.btn-a:hover::before {
	left: 125%;
	-webkit-transition: left 0.7s;
	transition: left 0.7s;
}

.btn-a::after { /* くの字を山なりに見た時、左側の太さと色 */
	border-right: 2px solid #fff; /* くの字を山なりに見た時、右側の長さ */
	border-top: 2px solid #fff;
	content: ""; /* くの字を山なりに見た時、左側の長さ */
	height: 10px;
	margin: auto;
	position: absolute;
	right: 30px;
	right: 1.875rem;
	top: 43%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%); /* くの字を山なりに見た時、右側の太さと色 */
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg); /* お問い合わせはこちらのテキストの幅 + 右側のスペース */
	width: 10px; /* くの字の向き */
}

.btn-a--re {
	background: #fff;
	border: 1px solid #576fe6;
	color: #576fe6;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}

.btn-a--re:hover {
	background: #576fe6;
	border-color: #576fe6;
	color: #fff;
}

.btn-a--re::after { /* くの字を山なりに見た時、左側の太さと色 */
	border-right: 2px solid #576fe6; /* くの字を山なりに見た時、右側の長さ */
	border-top: 2px solid #576fe6; /* くの字を山なりに見た時、右側の太さと色 */
}

.btn-a--re:hover::after {
	border-right: 2px solid #fff;
	border-top: 2px solid #fff;
}

.btn-l {
	color: #fff;
	font-family: "Noto Sans JP", serif;
	font-size: 16px;
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: 0;
	line-height: 1.2;
}

/* =========================
   Page Top Button
   （アクセントカラーで統一）
========================= */

.btn-pageTop {
	background: #062d24; /* 角丸控えめの四角ボタン */
	background-color: #062d24;
	border: none;
	bottom: 40px;
	bottom: 2.5rem;
	-webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, .22);
	box-shadow: 0 4px 10px rgba(0, 0, 0, .22);
	position: fixed;
	right: 30px;
	right: 1.875rem;
	z-index: 999;
}

.btn-pageTop a {
	display: block;
	height: 50px;
	height: 3.125rem;
	position: relative;
	-webkit-transition: background-color 0.3s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
	transition: background-color 0.3s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
	transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
	transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
	width: 50px;
	width: 3.125rem;
}

.btn-pageTop a:hover {
	background-color: #084136;
	-webkit-box-shadow: 0 6px 14px rgba(0, 0, 0, .28);
	box-shadow: 0 6px 14px rgba(0, 0, 0, .28);
	-webkit-transform: translateY(-0.125rem);
	transform: translateY(-0.125rem);
}

/* 矢印アイコン（白） */

.btn-pageTop a::before {
	border-right: 2px solid #ffffff;
	border-top: 2px solid #ffffff;
	bottom: 0;
	content: "";
	display: block;
	height: 18px;
	height: 1.125rem;
	left: 0;
	margin: auto;
	position: absolute;
	right: 0;
	top: 12px;
	top: 0.75rem;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	width: 18px;
	width: 1.125rem;
}

.btn {
	background: #fff;
	border: 1px solid #062d24;
	border-radius: 6px;
	color: #062d24;
	font-weight: 700;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}

.btn:hover {
	background: #062d24;
	color: #fff;
}

.cat__wrap {
	margin-bottom: 120px;
	margin-bottom: 7.5rem;
	margin-top: 100px;
	margin-top: 6.25rem;
}

.coming-soon {
	background-color: #f9f9f9;
	padding: 250px 20px;
	text-align: center;
}

.coming-soon__title {
	color: #333;
	font-size: 36px;
	font-weight: bold;
	margin-bottom: 20px;
}

.coming-soon__text {
	color: #666;
	font-size: 18px;
	line-height: 1.7;
	margin-bottom: 30px;
}

.coming-soon__btn-wrapper {
	text-align: center;
}

.coming-soon__btn {
	background-color: #007acc;
	border-radius: 4px;
	color: #fff;
	display: inline-block;
	font-weight: bold;
	padding: 12px 24px;
	text-decoration: none;
	-webkit-transition: background-color 0.3s ease;
	transition: background-color 0.3s ease;
}

.coming-soon__btn:hover {
	background-color: #005a99;
}

/* =========================
   Concept
========================= */

.concept__inner {
	position: relative;
}

/* 全体2カラム（基本はHTML順のまま：テキスト→画像） */

.concept__body {
	gap: 56px;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: start;
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
}

/* ✅ PCだけ “見た目” を 左=画像 / 右=テキスト に入れ替える */

/* 右：テキスト */

.concept__content {
	min-width: 0;
}

/* 見出し（装飾線） */

.concept__heading {
	color: #222222;
	font-size: 28px;
	font-weight: 700;
	letter-spacing: 0.01em;
	line-height: 1.35;
	margin: 0 0 18px;
	padding-left: 18px;
	position: relative;
}

.concept__heading::before {
	background-color: #f28c28;
	border-radius: 2px;
	content: "";
	height: 1.25em;
	left: 0;
	position: absolute;
	top: 0.15em;
	width: 6px;
}

.concept__desc {
	margin-bottom: 22px;
}

.concept__text {
	color: #222222;
	font-size: 16px;
	line-height: 1.9;
	margin: 0 0 14px;
}

.concept__text--last {
	margin-bottom: 0;
}

/* 要点（アイコン付き） */

.concept__points {
	gap: 14px;
	display: grid;
	list-style: none;
	margin: 0;
	padding: 0;
}

.concept__point {
	gap: 12px;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: start;
	display: grid;
	grid-template-columns: 34px 1fr;
}

.concept__icon {
	background-color: #1f5d3b;
	border-radius: 999px;
	color: #ffffff;
	display: grid;
	font-size: 16px;
	font-weight: 700;
	height: 34px;
	line-height: 1;
	place-items: center;
	width: 34px;
}

.concept__point-text {
	color: #222222;
	font-size: 16px;
	line-height: 1.7;
	margin: 0;
}

/* 左：画像タイル */

.concept__gallery {
	min-width: 0;
}

.concept__tiles {
	gap: 16px;
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.concept__tile {
	background-color: #ffffff;
	-webkit-box-shadow: 0 14px 30px rgba(0, 0, 0, .08);
	box-shadow: 0 14px 30px rgba(0, 0, 0, .08);
	margin: 0;
	overflow: hidden;
}

.concept__img {
	-o-object-fit: cover;
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

/* PC：4枚構成 */

.concept__tile--main {
	grid-column: 1/2;
	grid-row: 1/3;
}

.concept__tile--sub1 {
	grid-column: 2/3;
	grid-row: 1/2;
}

.concept__tile--sub2 {
	grid-column: 2/3;
	grid-row: 2/3;
}

.concept__tile--wide {
	aspect-ratio: 16/9;
	grid-column: 1/3;
	grid-row: 3/4;
}

/* =========================
   SP
========================= */

/* =========================
   Concept Gallery animation
========================= */

/* 初期状態 */

.concept__tile {
	opacity: 0;
	-webkit-transform: translateY(18px);
	transform: translateY(18px);
	-webkit-transition: opacity 1s ease, -webkit-transform 1s cubic-bezier(0.16, 1, 0.3, 1);
	transition: opacity 1s ease, -webkit-transform 1s cubic-bezier(0.16, 1, 0.3, 1);
	transition: opacity 1s ease, transform 1s cubic-bezier(0.16, 1, 0.3, 1);
	transition: opacity 1s ease, transform 1s cubic-bezier(0.16, 1, 0.3, 1), -webkit-transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

/* 発火後 */

.concept.is-inview .concept__tile {
	opacity: 1;
	-webkit-transform: translateY(28px) scale(0.98);
	transform: translateY(28px) scale(0.98);
}

/* motion配慮 */

.contact-cta {
	background-color: #f5faff;
	border-radius: 8px;
	margin-top: 60px;
	padding: 40px 20px;
	text-align: center;
}

.contact-cta__text {
	color: #333;
	font-size: 18px;
	margin-bottom: 24px;
}

.contact-cta__btns {
	gap: 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.contact-cta__btn {
	border-radius: 8px;
	display: inline-block;
	font-size: 18px;
	font-weight: 600;
	min-width: 240px;
	padding: 18px 32px;
	text-align: center;
	text-decoration: none;
	-webkit-transition: background-color 0.3s ease;
	transition: background-color 0.3s ease;
}

.contact-cta__btn--mail {
	background-color: #007acc;
	color: #fff;
}

.contact-cta__btn--mail:hover {
	background-color: #005b96;
}

.contact-cta__btn--tel {
	background-color: #fff;
	border: 2px solid #007acc;
	color: #007acc;
}

.contact-cta__btn--tel:hover {
	background-color: #e6f4ff;
}

/* スマホ時：縦並び */

/* =========================
   Contact Page (CleanTech Reform)
========================= */

.contact-page {
	background: #ffffff;
	color: #000000;
}

/* =========================
   HERO
========================= */

.contact-hero {
	padding: 72px 16px 28px;
}

.contact-hero__inner {
	margin: 0 auto;
	max-width: 960px;
	text-align: center;
}

.contact-hero__en {
	color: #062d24;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.22em;
	margin: 0 0 10px;
}

.contact-hero__title {
	font-size: 28px;
	font-weight: 800;
	letter-spacing: 0.06em;
	margin: 0;
}

/* =========================
   CONTENT
========================= */

.contact-area {
	padding: 0 16px 96px;
}

.contact-area__inner {
	margin: 0 auto;
	max-width: 960px;
}

/* =========================
   PANEL
========================= */

.contact-panel {
	margin: 26px auto 34px;
	max-width: 840px;
	padding: 22px 20px;
}

.contact-panel__text {
	color: #333333;
	font-size: 14px;
	line-height: 1.9;
	margin: 0;
	text-align: center;
}

.contact-panel__strong {
	color: #062d24;
	font-weight: 800;
}

/* =========================
   FORM
========================= */

.contact-form {
	margin: 0 auto;
	max-width: 840px;
	padding: 0;
}

/* フォーム全体を「薄い面」で整える（青は使わない） */

.contact-form__surface {
	background: #f7f7f5;
	border: 1px solid #e6e6e6;
	padding: 26px 26px 18px;
}

/* 1行 */

.contact-form__row {
	gap: 16px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border-bottom: 1px solid rgba(0, 0, 0, .1);
	display: grid;
	grid-template-columns: 220px 1fr;
	padding: 16px 0;
}

.contact-form__row--textarea {
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: start;
}

.contact-form__label {
	gap: 10px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: #000000;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 14px;
	font-weight: 800;
}

.contact-form__field {
	width: 100%;
}

/* 必須・任意 */

.contact-form__badge {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: #ffffff;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	font-size: 12px;
	font-weight: 800;
	height: 22px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	letter-spacing: 0.06em;
	padding: 0 8px;
}

.contact-form__badge--required {
	background: #d43b3b;
}

.contact-form__badge--optional {
	background: #666666;
}

/* input / textarea（角は丸すぎず、誠実に） */

.contact-form__input {
	background: #ffffff;
	border: 1px solid #cccccc;
	color: #000000;
	font-size: 15px;
	outline: none;
	padding: 12px 14px;
	width: 100%;
}

.contact-form__textarea {
	background: #ffffff;
	border: 1px solid #cccccc;
	color: #000000;
	font-size: 15px;
	line-height: 1.7;
	min-height: 160px;
	outline: none;
	padding: 12px 14px;
	resize: vertical;
	width: 100%;
}

.contact-form__input::-moz-placeholder,
.contact-form__textarea::-moz-placeholder {
	color: #8a8a8a;
}

.contact-form__input::-webkit-input-placeholder,
.contact-form__textarea::-webkit-input-placeholder {
	color: #8a8a8a;
}

.contact-form__input::-moz-placeholder,
.contact-form__textarea::-moz-placeholder {
	color: #8a8a8a;
}

.contact-form__input::-ms-input-placeholder,
.contact-form__textarea::-ms-input-placeholder {
	color: #8a8a8a;
}

.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
	color: #8a8a8a;
}

/* フォーカス */

.contact-form__input:focus,
.contact-form__textarea:focus {
	border-color: #062d24;
	-webkit-box-shadow: 0 0 0 3px rgba(0, 0, 0, .08);
	box-shadow: 0 0 0 3px rgba(0, 0, 0, .08);
}

/* ヒント */

.contact-form__hint {
	color: #555555;
	font-size: 12px;
	margin: 8px 0 0;
}

/* radios / checks */

.contact-form__radios {
	gap: 10px;
	display: grid;
}

.contact-form__checks {
	gap: 10px;
	display: grid;
}

.contact-form__choice {
	gap: 10px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: #000000;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	font-size: 14px;
}

.contact-form__choice input {
	accent-color: #062d24;
	height: 16px;
	width: 16px;
}

/* =========================
   AGREE
========================= */

.contact-form__agree {
	padding: 18px 0 10px;
}

.contact-form__agree-label {
	gap: 10px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: #000000;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	font-size: 14px;
	font-weight: 800;
}

.contact-form__agree-label input {
	accent-color: #062d24;
	height: 16px;
	width: 16px;
}

.contact-form__agree-note {
	color: #555555;
	font-size: 12px;
	margin: 8px 0 0;
}

/* =========================
   SUBMIT
========================= */

.contact-form__actions {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 24px 0 0;
}

.contact-form__submit {
	background: #062d24;
	border: 1px solid #062d24;
	color: #ffffff;
	cursor: pointer;
	font-size: 16px;
	font-weight: 800;
	height: 56px;
	letter-spacing: 0.06em;
	max-width: 420px;
	-webkit-transition: background-color 0.2s ease, opacity 0.2s ease, -webkit-transform 0.15s ease;
	transition: background-color 0.2s ease, opacity 0.2s ease, -webkit-transform 0.15s ease;
	transition: background-color 0.2s ease, opacity 0.2s ease, transform 0.15s ease;
	transition: background-color 0.2s ease, opacity 0.2s ease, transform 0.15s ease, -webkit-transform 0.15s ease;
	width: 100%;
}

.contact-form__submit:hover {
	opacity: 0.92;
}

.contact-form__submit:active {
	-webkit-transform: translateY(1px);
	transform: translateY(1px);
}

/* =========================
   TEL CTA
========================= */

.contact-tel {
	margin: 52px auto 0;
	max-width: 840px;
	text-align: center;
}

.contact-tel__note {
	color: #333333;
	font-size: 14px;
	line-height: 1.9;
	margin: 0 0 48px;
	margin: 0 0 3rem;
}

.contact-tel__box {
	background: #ffffff;
	border: 1px solid #e6e6e6;
	-webkit-box-shadow: 0 10px 26px rgba(0, 0, 0, .06);
	box-shadow: 0 10px 26px rgba(0, 0, 0, .06);
	padding: 22px 18px;
}

.contact-tel__label {
	color: #062d24;
	font-weight: 900;
	letter-spacing: 0.06em;
	margin: 0 0 10px;
}

.contact-tel__link {
	gap: 10px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background: #ffffff;
	border: 1px solid rgba(0, 0, 0, .18);
	color: #062d24;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	font-size: 22px;
	font-weight: 900;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 10px 14px;
	text-decoration: none;
	-webkit-transition: background-color 0.2s ease, opacity 0.2s ease;
	transition: background-color 0.2s ease, opacity 0.2s ease;
}

.contact-tel__link:hover {
	background: rgba(0, 0, 0, .04);
}

.contact-tel__icon {
	font-size: 18px;
}

.contact-tel__num {
	letter-spacing: 0.04em;
}

.contact-tel__hours {
	color: #555555;
	font-size: 12px;
	margin: 10px 0 0;
}

.contact-tel__small {
	color: #555555;
	font-size: 12px;
	margin: 8px 0 0;
}

/* =========================
   Responsive
========================= */

/* =====================================
   CF7 radio / checkbox（ここだけで管理）
===================================== */

.contact-form__field {
	text-align: left;
}

.contact-form__radios .wpcf7-form-control,
.contact-form__checks .wpcf7-form-control {
	margin: 0;
	padding: 0;
}

.contact-form__radios .wpcf7-list-item,
.contact-form__checks .wpcf7-list-item {
	margin: 0;
}

/* radio：横並び（安定） */

.contact-form__radios {
	gap: 24px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

/* checkbox：縦並び（バラつき防止） */

.contact-form__checks {
	gap: 14px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

/* labelクリックで確実に反応 */

.contact-form__radios .wpcf7-list-item label,
.contact-form__checks .wpcf7-list-item label {
	gap: 12px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	cursor: pointer;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
}

/* inputを必ず表示＆クリック可能に戻す */

.contact-form__radios input[type=radio],
.contact-form__checks input[type=checkbox] {
	-webkit-appearance: auto !important;
	-moz-appearance: auto !important;
	appearance: auto !important;
	accent-color: #062d24;
	display: inline-block !important;
	height: 18px;
	margin: 0;
	opacity: 1 !important;
	pointer-events: auto !important;
	visibility: visible !important;
	width: 18px;
}

/* ==============================
   CF7 radio / checkbox 破綻修正
============================== */

/* CF7が挟むwrapの余計な挙動を止める */

.contact-form__radios .wpcf7-form-control-wrap,
.contact-form__checks .wpcf7-form-control-wrap {
	display: block;
}

/* 本体（ラジオ・チェック）をレイアウト対象にする */

.contact-form__radios .wpcf7-radio {
	gap: 24px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.contact-form__checks .wpcf7-checkbox {
	gap: 14px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

/* 1項目（list-item）の余計な余白を消す */

.contact-form__radios .wpcf7-list-item,
.contact-form__checks .wpcf7-list-item {
	margin: 0;
}

/* labelをクリック領域にして input と文字を揃える */

.contact-form__radios .wpcf7-list-item label,
.contact-form__checks .wpcf7-list-item label {
	gap: 12px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	cursor: pointer;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
}

/* “メール と ○ が離れる” の原因になりがちな label側spanをリセット */

.contact-form__radios .wpcf7-list-item-label,
.contact-form__checks .wpcf7-list-item-label {
	display: inline-block;
	margin: 0;
	padding: 0;
}

/* inputを確実に表示＆クリック可能に戻す（globalで消してる対策） */

.contact-form__radios input[type=radio],
.contact-form__checks input[type=checkbox] {
	-webkit-appearance: auto !important;
	-moz-appearance: auto !important;
	appearance: auto !important;
	accent-color: #062d24;
	display: inline-block !important;
	height: 18px;
	margin: 0;
	opacity: 1 !important;
	pointer-events: auto !important;
	visibility: visible !important;
	width: 18px;
}

/* =========================
   acceptance 微調整
========================= */

.contact-form__agree-label { /* ← 縦中央揃え */
	gap: 10px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	line-height: 1.4;
}

/* チェックボックスの微調整 */

.contact-form__agree-label input[type=checkbox] {
	position: relative;
	top: 3px; /* ← ここで上下を微調整（0〜2pxで好みに） */
}

/* =====================================
   CF7 acceptance（同意チェック）復活
===================================== */

.contact-form__agree .wpcf7-form-control-wrap {
	display: block;
}

.contact-form__agree .wpcf7-acceptance {
	display: block;
	margin: 0;
}

.contact-form__agree .wpcf7-list-item {
	margin: 0;
}

/* inputを確実に表示＆クリック可能に戻す（globalで消してる対策） */

.contact-form__agree input[type=checkbox] {
	-webkit-appearance: auto !important;
	-moz-appearance: auto !important;
	appearance: auto !important;
	accent-color: #062d24;
	display: inline-block !important;
	height: 18px;
	margin: 0;
	opacity: 1 !important;
	pointer-events: auto !important;
	visibility: visible !important;
	width: 18px;
}

.contact-form__agree-label input[type=checkbox] {
	position: relative;
	top: 2px;
}

/* =========================
   Top Contact Section
========================= */

.contact {
	background: #ffffff;
	padding: 120px 20px 140px;
}

.contact__inner {
	margin: 0 auto;
	max-width: 920px;
	text-align: center;
}

/* ===== title ===== */

.contact__title {
	margin-bottom: 48px;
}

/* ===== lead ===== */

.contact__lead {
	color: #333;
	font-size: 15px;
	line-height: 1.9;
	margin: 0 auto 32px;
	max-width: 720px;
}

/* ===== info ===== */

.contact__info {
	margin-top: 24px;
}

/* tel */

.contact__tel {
	font-size: 16px;
	margin-bottom: 12px;
}

.contact__tel-link {
	color: #0b3b2e;
	font-weight: 700;
	text-decoration: none;
}

.contact__tel-note {
	color: #555;
	font-size: 14px;
	margin-left: 4px;
}

/* sub note */

.contact__sub {
	color: #666;
	font-size: 13px;
	margin-bottom: 32px;
	margin-bottom: 80px;
	margin-bottom: 5rem;
}

/* button */

.contact__btn {
	background: #ffffff;
	border: 1px solid #0b3b2e;
	color: #0b3b2e;
	display: inline-block;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.05em;
	min-width: 260px;
	padding: 16px 32px;
	text-decoration: none;
	-webkit-transition: background 0.3s ease, color 0.3s ease;
	transition: background 0.3s ease, color 0.3s ease;
}

.contact__btn:hover {
	background: #0b3b2e;
	color: #ffffff;
}

/* =========================
   Responsive
========================= */

.faq {
	background-color: rgba(106, 182, 232, .0980392157);
}

.faq__accordion {
	margin-top: 100px;
	margin-top: 6.25rem;
}

.feature-card {
	max-width: 400px;
	max-width: 25rem;
	width: 100%;
}

.feature-card__img {
	padding-top: 66.6666%;
	position: relative;
}

.feature-card__img img {
	-o-object-fit: cover;
	border-radius: 14% 0 0 0;
	height: 100%;
	left: 50%;
	object-fit: cover;
	position: absolute;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 100%;
}

.feature-card__body {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	justify-items: center;
	padding: 10px;
	padding: 0.625rem;
}

.feature-card__title {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: #2d2d37;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-family: "Noto Sans JP", serif;
	font-size: 18px;
	font-size: 1.125rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	line-height: 1;
	margin-top: 10px;
	margin-top: 0.625rem;
}

.feature-card__title span {
	color: #576fe6;
	font-size: 20px;
	font-size: 1.25rem;
}

.feature-card__text {
	color: #2d2d37;
	font-family: "Noto Sans JP", serif;
	font-size: 15px;
	font-size: 0.9375rem;
	font-weight: 500;
	letter-spacing: 0;
	line-height: 1.75;
	margin-top: 10px;
	margin-top: 0.625rem;
}

.feature {
	background-color: rgba(106, 182, 232, .0980392157);
}

.feature__card-wrap {
	-moz-column-gap: 2.8125rem;
	row-gap: 50px;
	row-gap: 3.125rem;
	-webkit-column-gap: 2.8125rem;
	column-gap: 2.8125rem;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
	justify-items: center;
	margin-top: 100px;
	margin-top: 6.25rem;
}

.floating-btn {
	bottom: 16px;
	bottom: 1rem;
	position: fixed;
	right: 16px;
	right: 1rem;
	z-index: 999;
}

.floating-btn a {
	background: -webkit-gradient(linear, left top, right top, from(#3ba3ff), to(#bc48ff));
	background: linear-gradient(to right, #3ba3ff, #bc48ff);
	border-radius: 3.125rem;
	-webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, .2);
	box-shadow: 0 4px 8px rgba(0, 0, 0, .2);
	color: #fff;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	padding: 12px 20px;
	padding: 0.75rem 1.25rem;
	text-align: center;
	text-decoration: none;
}

.floating-btn a:hover {
	opacity: 0.9;
}

.t-mobile {
	display: block;
}

.flow-detail {
	background-color: #f9fcff;
	padding: 100px 20px;
}

.flow-detail__inner {
	margin: 0 auto;
	max-width: 1000px;
}

.flow-detail__intro {
	margin-top: 80px;
	text-align: center;
}

.flow-detail__intro-text {
	color: #333;
	font-size: 16px;
	line-height: 1.8;
}

.flow-detail__steps {
	gap: 40px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	margin-top: 60px;
}

.flow-detail__step {
	background-color: #fff;
	border-radius: 8px;
	-webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
	box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
	padding: 30px 20px;
	position: relative;
	text-align: center;
}

.flow-detail__step-header {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-bottom: 20px;
	position: relative;
}

.flow-detail__step-number {
	color: #3498db;
	font-size: 28px;
	font-weight: 700;
	left: 10px;
	opacity: 0.7;
	position: absolute;
	top: -10px;
}

.flow-detail__step-img img {
	display: block;
	height: auto;
	width: 50px;
}

.flow-detail__step-title {
	color: #3466db;
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 10px;
}

.flow-detail__step-text {
	color: #444;
	font-size: 14px;
	line-height: 1.6;
}

.flow-detail__contact {
	margin-top: 120px;
	text-align: center;
}

.flow-detail__contact-text {
	color: #333;
	font-size: 16px;
	margin-bottom: 30px;
}

.flow-detail__btn .btn-a {
	background-color: #3498db;
	border-radius: 5px;
	color: #fff;
	display: inline-block;
	font-size: 16px;
	font-weight: 600;
	max-width: 360px;
	padding: 12px 32px;
	text-decoration: none;
	-webkit-transition: background-color 0.3s;
	transition: background-color 0.3s;
	width: 100%;
}

.flow-detail__btn .btn-a:hover {
	background-color: #217dbb;
}

.flow__list {
	-moz-column-gap: 2.1875rem;
	row-gap: 50px;
	row-gap: 3.125rem;
	-webkit-column-gap: 2.1875rem;
	column-gap: 2.1875rem;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(11.25rem, 1fr));
	margin-left: auto;
	margin-right: auto;
	margin-top: 100px;
	margin-top: 6.25rem;
	max-width: 820px;
}

.flow__item {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border-radius: 10px;
	-webkit-box-shadow: none;
	box-shadow: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	opacity: 0;
	position: relative;
	-webkit-transform: translateY(20px);
	transform: translateY(20px);
	-webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
	transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
	transition: opacity 0.6s ease, transform 0.6s ease;
	transition: opacity 0.6s ease, transform 0.6s ease, -webkit-transform 0.6s ease;
}

.flow__item {
	-webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, .05);
	box-shadow: 0 4px 12px rgba(0, 0, 0, .05);
	opacity: 0;
	-webkit-transform: translateY(20px);
	transform: translateY(20px);
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.flow__item.is-show {
	-webkit-box-shadow: 0 10px 15px rgba(0, 0, 0, .1), 0 4px 6px rgba(0, 0, 0, .05);
	box-shadow: 0 10px 15px rgba(0, 0, 0, .1), 0 4px 6px rgba(0, 0, 0, .05);
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0);
}

/* hoverでさらに浮かぶ演出 */

.flow__item.is-show:hover {
	-webkit-box-shadow: 0 12px 24px rgba(0, 0, 0, .12), 0 6px 12px rgba(0, 0, 0, .08);
	box-shadow: 0 12px 24px rgba(0, 0, 0, .12), 0 6px 12px rgba(0, 0, 0, .08);
	-webkit-transform: translateY(-4px);
	transform: translateY(-4px);
}

.flow__item01::before,
.flow__item02::before,
.flow__item03::before,
.flow__item04::before,
.flow__item05::before,
.flow__item06::before {
	color: #3466db;
	font-family: "Noto Sans JP", serif;
	font-size: 50px;
	font-size: 3.125rem;
	font-weight: 700;
	left: 15%;
	letter-spacing: 0.02em;
	line-height: 1;
	position: absolute;
	top: 0%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.flow__item01::before {
	content: "01";
}

.flow__item02::before {
	content: "02";
}

.flow__item03::before {
	content: "03";
}

.flow__item04::before {
	content: "04";
}

.flow__item05::before {
	content: "05";
}

.flow__item06::before {
	content: "06";
}

.flow__item__title {
	color: #3466db;
	font-family: "Noto Sans JP", serif;
	font-size: 18px;
	font-size: 1.125rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1;
	margin-top: 42px;
	margin-top: 2.625rem;
	text-align: center;
}

.flow__item__img {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-top: 14px;
	margin-top: 0.875rem;
}

.flow__item__img img {
	max-width: 50px;
	max-width: 3.125rem;
	width: 100%;
}

.flow__item__text-wrap {
	padding-bottom: 14px;
	padding-bottom: 0.875rem;
	padding-left: 14px;
	padding-left: 0.875rem;
	padding-right: 14px;
	padding-right: 0.875rem;
	padding-top: 14px;
	padding-top: 0.875rem;
}

.flow__item__text {
	color: #2d2d37;
	font-family: "Noto Sans JP", serif;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1;
}

.flow-btn {
	margin-top: 100px;
	margin-top: 6.25rem;
	text-align: center;
}

/* =========================
   Footer
========================= */

.footer {
	background-color: #f8f8f8;
	padding-bottom: 40px;
	padding-top: 40px;
}

.footer__inner {
	text-align: center;
}

.footer__name {
	font-size: 14px;
	font-weight: 600;
	margin: 0 0 8px;
}

.footer__tel {
	font-size: 14px;
	margin: 0 0 16px;
}

.footer__tel a {
	color: #000000;
	text-decoration: none;
}

.footer__tel a:hover {
	text-decoration: underline;
}

.footer__copy {
	color: #666666;
	font-size: 12px;
	margin: 0;
}

/* =========================
   Greeting
========================= */

.greeting__body {
	gap: 40px;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: start;
	display: grid;
	grid-template-columns: 1fr 1fr;
}

/* Lead（キャッチ） */

.greeting__lead {
	color: #222222;
	font-size: 24px;
	font-weight: 600;
	letter-spacing: 0.02em;
	line-height: 1.4;
	margin: 0 0 16px;
	padding-left: 18px;
	position: relative;
}

.greeting__lead::before {
	background-color: #f28c28;
	border-radius: 2px;
	content: "";
	height: 34px;
	left: 0;
	position: absolute;
	top: 3px;
	width: 6px;
}

/* Text（ここをフェード対象にする） */

.greeting__text {
	opacity: 0;
	padding-left: 0;
	-webkit-transform: translateY(12px);
	transform: translateY(12px);
	-webkit-transition: opacity 0.9s ease, -webkit-transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
	transition: opacity 0.9s ease, -webkit-transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
	transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
	transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
	-webkit-transition-delay: 0.18s;
	transition-delay: 0.18s;
}

.greeting__p {
	font-size: 16px;
	line-height: 1.9;
	margin: 0 0 16px;
}

.greeting__p:last-child {
	margin-bottom: 0;
}

/* Photo */

.greeting__photo {
	margin: 0;
	position: relative;
}

/* 右下にずらした装飾スクエア（右下からフェード） */

.greeting__photo::after {
	background-color: rgba(242, 140, 40, .22);
	bottom: -20px;
	content: "";
	height: 100%;
	opacity: 0;
	position: absolute;
	right: -28px;
	-webkit-transform: translate(22px, 18px);
	transform: translate(22px, 18px);
	-webkit-transition: opacity 1s ease, -webkit-transform 1s cubic-bezier(0.22, 1, 0.36, 1);
	transition: opacity 1s ease, -webkit-transform 1s cubic-bezier(0.22, 1, 0.36, 1);
	transition: opacity 1s ease, transform 1s cubic-bezier(0.22, 1, 0.36, 1);
	transition: opacity 1s ease, transform 1s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 1s cubic-bezier(0.22, 1, 0.36, 1);
	width: 100%;
	z-index: 1;
}

/* 画像（左上からフェード） */

.greeting__img {
	-webkit-box-shadow: 0 12px 28px rgba(0, 0, 0, .08);
	box-shadow: 0 12px 28px rgba(0, 0, 0, .08);
	display: block;
	height: auto;
	opacity: 0;
	position: relative;
	-webkit-transform: translate(-18px, -18px);
	transform: translate(-18px, -18px);
	-webkit-transition: opacity 0.9s ease, -webkit-transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
	transition: opacity 0.9s ease, -webkit-transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
	transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
	transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
	width: 100%;
	z-index: 2;
}

/* Caption */

.greeting__caption {
	color: #555555;
	font-size: 15px;
	letter-spacing: 0.05em;
	margin-top: 12px;
	text-align: right;
}

.greeting__caption-name {
	color: #222222;
	font-weight: 600;
	margin-left: 8px;
}

/* Inview（発火後） */

.greeting.is-inview .greeting__img {
	opacity: 1;
	-webkit-transform: translate(0, 0);
	transform: translate(0, 0);
}

.greeting.is-inview .greeting__photo::after {
	opacity: 1;
	-webkit-transform: translate(0, 0);
	transform: translate(0, 0);
	-webkit-transition-delay: 0.12s;
	transition-delay: 0.12s;
}

.greeting.is-inview .greeting__text {
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0);
}

/* Responsive */

/* Motion */

/* =========================
   Header base
========================= */

.header {
	background-color: #ffffff;
	border-bottom: 1px solid #e0e0e0;
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 100;
}

.header__inner {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	max-width: 1200px;
	padding-bottom: 12px;
	padding-top: 12px;
}

.header__inner {
	margin: 0 auto;
	max-width: 1200px;
	padding-left: 16px;
	padding-right: 16px;
}

.header__logo-link {
	font-size: 18px;
	font-weight: 600;
	letter-spacing: 0.08em;
}

.header__nav-list {
	gap: 24px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
}

.header__nav-link {
	font-size: 16px;
}

/* PC ヘッダー内の電話リンク（小さめ） */

.header__nav-link--tel {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border: 1px solid #000000;
	border-radius: 999px;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	font-size: 16px;
	font-weight: 600;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 10px 18px;
}

/* ヘッダー分だけ main を下げる */

main {
	padding-top: 64px;
}

/* ハンバーガー & SP用問い合わせは PC では非表示 */

.header__toggle {
	display: none;
}

.header__nav-contacts {
	display: none;
}

/* =========================
   PC の右上 お問い合わせボタン
========================= */

.header__contact-pc {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.header__contact-btn {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background: #062d24;
	border: none;
	border-radius: 0;
	color: #ffffff;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	font-size: 16px;
	font-weight: 700;
	height: 50px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	letter-spacing: 0.05em;
	min-width: 200px;
	padding: 0 24px;
	text-decoration: none;
	-webkit-transition: 0.3s ease;
	transition: 0.3s ease;
}

.header__contact-btn:hover {
	background: #084136;
	color: #ffffff;
}

/* =========================
   1000px 以下：全画面ドロワー
========================= */

.hero {
	background-color: #ffffff; /* ★ こっちは必要 */
	height: 90vh;
	min-height: 600px;
	overflow: hidden;
	position: relative;
}

/* 中央 960px コンテナ。position: relative; は不要 */

.hero__inner {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: 100%;
	margin: 0 auto;
	max-width: 1280px;
	padding: 0 20px;
	padding-top: 80px;
}

/* 斜めカット画像：画面右端基準で配置 */

.hero__visual {
	background-position: center; /* 横の広さはお好みで */
	background-size: cover; /* ★ 画面の右端にくっつく */
	bottom: 0;
	-webkit-clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
	clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
	filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="1.08" /><feFuncG type="linear" slope="1.08" /><feFuncB type="linear" slope="1.08" /></feComponentTransfer></filter></svg>#filter');
	-webkit-filter: brightness(1.08);
	filter: brightness(1.08);
	position: absolute;
	right: 0;
	top: 0;
	width: 75vw;
}

/* テキストブロック */

.hero__content {
	-webkit-backdrop-filter: blur(4px);
	backdrop-filter: blur(4px);
	background: rgba(255, 255, 255, .8); /* ★ 追加：薄めのソフトシャドウ */
	-webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, .15);
	box-shadow: 0 4px 16px rgba(0, 0, 0, .15);
	padding: 40px 20px;
	position: relative;
	width: 45%;
	z-index: 1;
}

.hero__tagline {
	font-size: 16px;
	letter-spacing: 0.1em;
	margin-bottom: 16px;
	opacity: 0.9;
}

/* Google Fonts */

.hero__title {
	font-family: "Zen Maru Gothic", sans-serif;
	font-size: 46px;
	letter-spacing: 0.02em;
}

.hero__title {
	border-left: 4px solid #f0e4c3;
	display: inline-block;
	font-size: 46px;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 24px;
	padding-left: 16px; /* 木村電工テイストのアクセントライン */
}

.hero__title-cursor--done {
	-webkit-animation: none;
	animation: none;
	opacity: 0;
	-webkit-transition: opacity 0.4s ease;
	transition: opacity 0.4s ease; /* フェードアウト演出 */
}

.hero__lead {
	font-size: 17px;
	letter-spacing: 0.06em;
	line-height: 1.6;
	margin-bottom: 32px;
	max-width: 600px;
	opacity: 0.95;
}

.hero__contact {
	gap: 24px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	margin-bottom: 40px;
}

.hero__btn { /* 文字中央 */
	background-color: #f0e4c3;
	color: #000000;
	display: inline-block;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0.03em;
	margin: 0 auto; /* ★幅を狭めた */
	min-width: 200px;
	padding: 12px 28px; /* ★ボタン横幅をコンパクトに固定 */
	text-align: center; /* ★中央揃え */
}

.hero__btn {
	background: #fff;
	border: 1px solid #000;
	color: #000;
	font-weight: 700;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}

.hero__btn:hover {
	background: #000;
	color: #fff;
}

.hero__scroll {
	bottom: 26px;
	font-size: 12px;
	left: 50%;
	letter-spacing: 0.12em;
	opacity: 0.6;
	position: absolute;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

.hero__tel {
	font-size: 16px;
}

.hero__tel-note {
	font-size: 15px;
	margin-left: 4px;
}

/* ============================
   SP レスポンシブ（〜768px）
============================ */

.inner {
	margin-left: auto;
	margin-right: auto;
	max-width: 1050px;
	max-width: 65.625rem;
	padding-left: 25px;
	padding-left: 1.5625rem;
	padding-right: 25px;
	padding-right: 1.5625rem;
	width: 100%;
}

/*========= LoadingのためのCSS ===============*/

/* Loading背景画面設定　*/

#splash {
	color: #fff;
	height: 100%; /*fixedで全面に固定*/
	position: fixed;
	text-align: center;
	width: 100%;
	z-index: 9999;
}

/* Loading画像中央配置　*/

#splash_text {
	color: #fff;
	left: 50%;
	position: absolute;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 100%;
	z-index: 999;
}

/*IE11対策用バーの線の高さ※対応しなければ削除してください*/

/*割れる画面のアニメーション*/

.loader_cover {
	background-color: #333;
	background-image: -webkit-gradient(linear, left top, right top, from(#1d406c), color-stop(25%, #2d62a5), color-stop(75%, #2d62a5), to(#1d406c));
	background-image: linear-gradient(to right, #1d406c, #2d62a5 25%, #2d62a5 75%, #1d406c);
	height: 50%;
	-webkit-transform: scaleY(1);
	transform: scaleY(1);
	-webkit-transition: all 0.2s cubic-bezier(0.04, 0.435, 0.315, 0.9);
	transition: all 0.2s cubic-bezier(0.04, 0.435, 0.315, 0.9);
	width: 100%;
}

/*上の画面*/

.loader_cover-up {
	-webkit-transform-origin: center top;
	transform-origin: center top;
}

/*下の画面*/

.loader_cover-down {
	bottom: 0;
	position: absolute;
	-webkit-transform-origin: center bottom;
	transform-origin: center bottom;
}

/*クラス名がついたらY軸方向に0*/

.coveranime {
	-webkit-transform: scaleY(0);
	transform: scaleY(0);
}

.menu-btn {
	margin-top: 100px;
	margin-top: 6.25rem;
	text-align: center;
}

.menu__wrap {
	margin-top: 100px;
	margin-top: 6.25rem;
}

.menu__list {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-left: auto;
	margin-right: auto;
	max-width: 960px;
	max-width: 60rem;
	width: 100%;
}

.menu__list__item {
	background: #3498db;
	background: -webkit-gradient(linear, right top, left top, from(#3bade3), color-stop(25%, #576fe6), color-stop(51%, #9844b7), to(#ff357f)) 99% 50%/200% auto;
	background: linear-gradient(270deg, #3bade3 0%, #576fe6 25%, #9844b7 51%, #ff357f 100%) 99% 50%/200% auto;
	border-radius: 10px;
	color: #000;
	color: #fff;
	font-family: "Noto Sans JP", serif;
	font-size: 18px;
	font-size: 1.125rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	line-height: 1;
	margin: 10px;
	margin: 0.625rem;
	padding: 10px 26px;
	padding: 0.625rem 1.625rem;
	-webkit-transition: 1s;
	transition: 1s;
	white-space: nowrap;
}

.menu__list__item:hover {
	border-radius: 10px;
	-webkit-box-shadow: 0px 39px 31px -6px #777777;
	box-shadow: 0px 39px 31px -6px #777777;
	-webkit-transition: 1s;
	transition: 1s;
}

.menu__img-wrap { /* Two rows with equal height */
	gap: 20px;
	display: grid;
	grid-template-columns: 1fr 1fr; /* Two columns with equal width */
	grid-template-rows: 1fr 1fr;
	margin-left: auto;
	margin-right: auto;
	margin-top: 40px;
	margin-top: 2.5rem;
	max-width: 820px;
	max-width: 51.25rem;
	padding-bottom: 21px;
	padding-bottom: 1.3125rem;
	padding-left: 21px;
	padding-left: 1.3125rem;
	padding-right: 21px;
	padding-right: 1.3125rem;
	padding-top: 21px;
	padding-top: 1.3125rem;
	width: 100%; /* Gap of 30px between grid items */
}

.menu__img {
	padding-top: 50.71875%;
	position: relative;
}

.menu__img img {
	-o-object-fit: cover;
	border-radius: 6px;
	height: 100%;
	left: 50%;
	object-fit: cover;
	position: absolute;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-webkit-transition: 1s;
	transition: 1s;
	width: 100%;
}

.menu__img img:hover {
	border-radius: 6px;
	-webkit-box-shadow: 0px 39px 31px -6px #777777;
	box-shadow: 0px 39px 31px -6px #777777;
	-webkit-transition: 1s;
	transition: 1s;
}

/* モバイル表示（768px以下）での電話ボタン設定 */

.mobile-tel-btn {
	display: none !important;
}

.desktop-tel-btn {
	display: inline-block !important;
}

/* モバイル環境（768px以下）でのスタイル切り替え */

.mv {
	height: 100vh;
	padding-top: -75px;
	padding-top: -4.6875rem;
	width: 100%;
}

.mv_inner {
	height: inherit;
	position: relative;
	width: 100%;
}

.mv__slider {
	height: inherit;
}

.mv__slide {
	height: inherit;
}

.mv__title-wrapper {
	left: 50%;
	padding-left: 8.3333%;
	position: absolute;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 100%;
	z-index: 10;
}

.mv__title {
	color: #333;
	font-family: "Noto Sans JP", serif;
	font-size: 36px;
	font-size: 2.25rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	line-height: 1.5263;
	text-shadow: 1px 1px 0 #FFF, -1px -1px 0 #FFF, -1px 1px 0 #FFF, 1px -1px 0 #FFF, 0px 1px 0 #FFF, -1px 0 #FFF, -1px 0 0 #FFF, 1px 0 0 #FFF;
}

.mv__title__text {
	color: #2d2d37;
	font-family: "Noto Sans JP", serif;
	font-size: 20px;
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1;
	margin-top: 10px;
	margin-top: 0.625rem; /* テキストの周囲にパディングを追加 */
	text-shadow: 1px 1px 0 #FFF, -1px -1px 0 #FFF, -1px 1px 0 #FFF, 1px -1px 0 #FFF, 0px 1px 0 #FFF, -1px 0 #FFF, -1px 0 0 #FFF, 1px 0 0 #FFF;
}

.news-archive {
	padding: 60px 20px;
}

.news-archive__inner {
	margin: 0 auto;
	max-width: 800px;
}

.news-archive__section {
	text-align: left;
}

.news-archive__title {
	border-bottom: 2px solid #333;
	font-size: 28px;
	font-weight: bold;
	margin-bottom: 30px;
	padding-bottom: 10px;
}

.news-archive__items {
	list-style: none;
	margin: 0;
	padding: 0;
}

.news-archive__item {
	border-bottom: 1px solid #ddd;
	margin-bottom: 30px;
	padding-bottom: 20px;
}

.news-archive__link {
	color: inherit;
	text-decoration: none;
}

.news-archive__meta {
	gap: 10px;
	color: #666;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 14px;
	margin-bottom: 5px;
}

.news-archive__date {
	font-style: normal;
}

.news-archive__category {
	background-color: #eee;
	border-radius: 3px;
	font-size: 13px;
	padding: 2px 6px;
}

.news-archive__item-title {
	font-size: 18px;
	font-weight: 500;
}

.news-archive__pagination {
	margin-top: 40px;
	text-align: center;
}

.news-archive__no-posts {
	color: #999;
	font-size: 16px;
}

.news-category {
	padding: 60px 20px;
}

.news-category__inner {
	margin: 0 auto;
	max-width: 800px;
}

.news-category__title {
	border-bottom: 2px solid #333;
	font-size: 28px;
	font-weight: bold;
	margin-bottom: 30px;
	padding-bottom: 10px;
}

.news-category__items {
	list-style: none;
	margin: 0;
	padding: 0;
}

.news-category__item {
	border-bottom: 1px solid #ddd;
	margin-bottom: 30px;
	padding-bottom: 20px;
}

.news-category__link {
	color: inherit;
	text-decoration: none;
}

.news-category__meta {
	color: #666;
	font-size: 14px;
	margin-bottom: 5px;
}

.news-category__date {
	font-style: normal;
}

.news-category__item-title {
	font-size: 18px;
	font-weight: 500;
}

.news-category__pagination {
	margin-top: 40px;
	text-align: center;
}

.news-category__no-posts {
	color: #999;
	font-size: 16px;
}

.news-list {
	padding: 150px 20px;
}

.news-list__inner {
	margin: 0 auto;
	max-width: 800px;
}

.news-list__section {
	text-align: left;
}

.news-list__title {
	border-bottom: 2px solid #333;
	font-size: 28px;
	font-weight: bold;
	margin-bottom: 30px;
	padding-bottom: 10px;
}

.news-list__items {
	list-style: none;
	margin: 0;
	padding: 0;
}

.news-list__item {
	border-bottom: 1px solid #ddd;
	margin-bottom: 30px;
	padding-bottom: 20px;
}

.news-list__link {
	color: inherit;
	text-decoration: none;
}

.news-list__meta {
	gap: 10px;
	color: #666;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 14px;
	margin-bottom: 5px;
}

.news-list__date {
	font-style: normal;
}

.news-list__category {
	background-color: #eee;
	border-radius: 3px;
	font-size: 13px;
	padding: 2px 6px;
}

.news-list__item-title {
	font-size: 18px;
	font-weight: 500;
}

.news-list__pagination {
	margin-top: 40px;
	text-align: center;
}

.news-list__no-posts {
	color: #999;
	font-size: 16px;
}

.news-list__title {
	border-bottom: 2px solid #007acc;
	color: #007acc;
	font-size: 28px;
	font-weight: bold;
	margin-bottom: 30px;
	padding-bottom: 10px;
}

.news-list__category {
	background-color: #e0f3ff;
	border-radius: 3px;
	color: #007acc;
	font-size: 13px;
	padding: 2px 6px;
}

.news-list__link:hover {
	color: #007acc;
}

.news-single {
	padding: 60px 20px;
}

.news-single__inner {
	margin: 0 auto;
	max-width: 800px;
}

.news-single__header {
	margin-bottom: 30px;
}

.news-single__title {
	font-size: 28px;
	font-weight: bold;
	letter-spacing: 0.04em;
	margin-bottom: 10px;
}

.news-single__meta {
	gap: 10px;
	color: #666;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 14px;
}

.news-single__date {
	font-style: normal;
	letter-spacing: 0.04em;
}

.news-single__category {
	background-color: #eee;
	border-radius: 3px;
	font-size: 13px;
	letter-spacing: 0.04em;
	padding: 2px 6px;
}

.news-single__content {
	font-size: 18px;
	letter-spacing: 0.04em;
	line-height: 1.8;
}

.news-single__content h1 {
	border-bottom: 2px solid #15b8f6;
	color: #111;
	font-size: 28px;
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1.5;
	margin-bottom: 32px;
	padding-bottom: 8px;
}

.news-single__content h2 {
	background: linear-gradient(172deg, #15b8f6 0%, #008cd6 100%);
	border-radius: 4px;
	color: #fff;
	font-size: 24px;
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1.45;
	margin-bottom: 24px;
	margin-top: 56px;
	padding: 12px 28px;
}

.news-single__content h3 {
	color: #333;
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1.5;
	margin-bottom: 16px;
	margin-top: 40px;
	padding-left: 20px;
	position: relative;
}

.news-single__content h3::before {
	background-color: #0080cc;
	border-radius: 2px;
	content: "";
	height: 24px;
	left: 0;
	position: absolute;
	top: 6px;
	width: 4px;
}

.news-single__content h4 {
	border-bottom: 1px dashed #007acc;
	color: #007acc;
	font-size: 18px;
	font-weight: 600;
	letter-spacing: 0.04em;
	margin-bottom: 12px;
	margin-top: 32px;
	padding-bottom: 4px;
}

.news-single__content img {
	border-radius: 8px;
	-webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, .05);
	box-shadow: 0 2px 8px rgba(0, 0, 0, .05);
	display: block;
	height: auto;
	margin: 32px auto;
	max-width: 100%;
}

.news-single__content ul {
	letter-spacing: 0.04em;
	list-style: none;
	margin: 32px 0;
	padding-left: 1.5em;
}

.news-single__content ul li {
	font-size: 18px;
	letter-spacing: 0.04em;
	line-height: 1.7;
	margin-bottom: 0.5em;
	padding-left: 1em;
	position: relative;
}

.news-single__content ul li::before {
	color: #00a3e0;
	content: "●";
	font-size: 0.6em;
	left: 0;
	position: absolute;
	top: 0.7em;
}

.news-single__content ol {
	letter-spacing: 0.04em;
	list-style: decimal;
	margin: 32px 0;
	padding-left: 1.5em;
}

.news-single__content ol li {
	font-size: 18px;
	letter-spacing: 0.04em;
	line-height: 1.7;
	margin-bottom: 0.5em;
}

.news-single__content blockquote {
	background-color: #f6fbff;
	border-left: 5px solid #00a3e0;
	color: #333;
	font-style: italic;
	line-height: 1.7;
	margin: 40px 0;
	padding: 20px 24px;
}

.news-single__content blockquote p {
	margin: 0;
}

.not-found {
	padding: 100px 20px;
	text-align: center;
}

.not-found__inner {
	margin: 0 auto;
	max-width: 600px;
}

.not-found__title {
	font-size: 32px;
	font-weight: bold;
	margin-bottom: 20px;
}

.not-found__text {
	color: #666;
	font-size: 16px;
	margin-bottom: 30px;
}

.not-found__link {
	background-color: #333;
	border-radius: 5px;
	color: #fff;
	display: inline-block;
	padding: 10px 20px;
	text-decoration: none;
	-webkit-transition: background-color 0.3s;
	transition: background-color 0.3s;
}

.not-found__link:hover {
	background-color: #555;
}

.parts {
	margin-top: 200px;
	margin-top: 12.5rem;
}

.price-cta {
	background-color: #fff;
	border-radius: 8px;
	margin: 60px 0;
	padding: 40px 20px;
	text-align: center;
}

.price-cta__inner {
	margin: 0 auto;
	max-width: 800px;
	padding: 0 20px;
}

.price-cta__text {
	color: #333;
	font-size: 18px;
	line-height: 1.8;
	margin-bottom: 24px;
}

.price-cta__buttons {
	gap: 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.price-cta__button {
	border-radius: 8px;
	display: inline-block;
	font-size: 18px;
	font-weight: 600;
	min-width: 240px;
	padding: 18px 32px;
	text-align: center;
	text-decoration: none;
	-webkit-transition: background-color 0.3s ease;
	transition: background-color 0.3s ease;
}

.price-cta__button--mail {
	background-color: #007acc;
	color: #fff;
}

.price-cta__button--mail:hover {
	background-color: #005b96;
}

.price-cta__button--tel {
	background-color: #fff;
	border: 2px solid #007acc;
	color: #007acc;
}

.price-cta__button--tel:hover {
	background-color: #e6f4ff;
}

.price-lead {
	background-color: #007ACC;
	padding: 230px 0 100px;
	text-align: center;
}

.price-lead__inner {
	margin: 0 auto;
	max-width: 800px;
	padding: 0 20px;
}

.price-lead__heading {
	color: #fff;
	font-size: 28px;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 24px;
}

.price-lead__text {
	color: #fff;
	font-size: 20px;
	line-height: 1.8;
}

.price-notes {
	background-color: #f9fafb;
	padding: 40px 20px;
	text-align: left;
}

.price-notes__inner {
	margin: 0 auto;
	max-width: 800px;
	padding: 0 20px;
}

.price-note-title {
	color: #007acc;
	font-size: 28px;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 24px;
	text-align: center;
}

.price-notes__text {
	background-color: #fff;
	border-left: 4px solid #007acc;
	border-radius: 4px;
	-webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, .05);
	box-shadow: 0 2px 6px rgba(0, 0, 0, .05);
	color: #444;
	font-size: 16px;
	line-height: 1.8;
	padding: 24px;
}

.price {
	background-color: rgba(106, 182, 232, .0980392157);
}

.price__list {
	margin-top: 100px;
	margin-top: 6.25rem;
}

.price__list__item {
	background: #fff;
	border-radius: 10px;
	-webkit-box-shadow: 0px 0px 20px -10px #777777;
	box-shadow: 0px 0px 20px -10px #777777;
	margin-left: auto;
	margin-right: auto;
	margin-top: 40px;
	margin-top: 2.5rem;
	max-width: 740px;
	max-width: 46.25rem;
	padding-bottom: 21px;
	padding-bottom: 1.3125rem;
	padding-left: 21px;
	padding-left: 1.3125rem;
	padding-right: 21px;
	padding-right: 1.3125rem;
	padding-top: 21px;
	padding-top: 1.3125rem;
	text-align: left;
	-webkit-transition: 1s;
	transition: 1s;
	width: 100%;
}

.price__list__item + .price__list__item {
	margin-top: 40px;
	margin-top: 2.5rem;
}

.price__list__item-lead {
	background: #fff;
	border-radius: 10px;
	-webkit-box-shadow: 0px 0px 20px -10px #777777;
	box-shadow: 0px 0px 20px -10px #777777;
	margin-left: auto;
	margin-right: auto;
	margin-top: 66px;
	margin-top: 4.125rem;
	max-width: 940px;
	max-width: 58.75rem;
	padding-bottom: 21px;
	padding-bottom: 1.3125rem;
	padding-left: 21px;
	padding-left: 1.3125rem;
	padding-right: 21px;
	padding-right: 1.3125rem;
	padding-top: 21px;
	padding-top: 1.3125rem;
	text-align: left;
	width: 100%;
}

.price__lead__main-text {
	margin-top: 10px;
	margin-top: 0.625rem;
	text-align: center;
}

.price__lead__title {
	color: #2d2d37;
	font-family: "Noto Sans JP", serif;
	font-size: 20px;
	font-size: 1.25rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1.75;
}

.price__lead__sub-text {
	padding-bottom: 6px;
	padding-bottom: 0.375rem;
	padding-left: 21px;
	padding-left: 1.3125rem;
	padding-right: 21px;
	padding-right: 1.3125rem;
	padding-top: 21px;
	padding-top: 1.3125rem;
	text-align: center;
}

.price__lead__title-sub {
	color: #2d2d37;
	font-family: "Noto Sans JP", serif;
	font-size: 18px;
	font-size: 1.125rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 1;
}

.price__lead__text {
	text-align: center;
}

.price__main-text {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.price__title {
	color: #333;
	font-family: "Noto Sans JP", serif;
	font-size: 18px;
	font-size: 1.125rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	line-height: 1;
}

.price__title-sub {
	color: #333;
	font-family: "Noto Sans JP", serif;
	font-size: 17px;
	font-size: 1.0625rem;
	font-weight: 500;
	letter-spacing: 0.02em;
	line-height: 1;
	margin-left: 20px;
	margin-left: 1.25rem;
}

.price__charge {
	color: #333;
	font-family: "Noto Sans JP", serif;
	font-size: 17px;
	font-size: 1.0625rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	line-height: 1;
	margin-left: 20px;
	margin-left: 1.25rem;
}

.price__text {
	margin-top: 6px;
	margin-top: 0.375rem;
}

.price__fee {
	color: #3466db;
	font-family: "Noto Sans JP", serif;
	font-size: 16px;
	font-size: 1rem;
	font-weight: 400;
	letter-spacing: 0.06em;
	line-height: 1.4;
}

.Reasons-btn {
	margin-top: 100px;
	margin-top: 6.25rem;
	text-align: center;
}

.Reasons-card {
	background: #fff;
	border-radius: 14% 2% 2% 2%;
	max-width: 360px;
	max-width: 22.5rem;
	-webkit-transition: 1s;
	transition: 1s;
	width: 100%;
}

.Reasons-card:hover {
	border-radius: 10px;
	-webkit-box-shadow: 0px 39px 31px -6px #777777;
	box-shadow: 0px 39px 31px -6px #777777;
	-webkit-transition: 1s;
	transition: 1s;
}

.Reasons-card__img {
	padding-top: 66.6666%;
	position: relative;
}

.Reasons-card__img img {
	-o-object-fit: cover;
	border-radius: 14% 0 0 0;
	height: 100%;
	left: 50%;
	object-fit: cover;
	position: absolute;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 100%;
}

.Reasons-card__body {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	justify-items: center;
	padding-bottom: 10px;
	padding-bottom: 0.625rem;
	padding-left: 21px;
	padding-left: 1.3125rem;
	padding-right: 21px;
	padding-right: 1.3125rem;
	padding-top: 10px;
	padding-top: 0.625rem;
}

.Reasons-card__title {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: #2d2d37;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-family: "Noto Sans JP", serif;
	font-size: 18px;
	font-size: 1.125rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	line-height: 1;
	margin-top: 10px;
	margin-top: 0.625rem;
}

.Reasons-card__title span {
	color: #576fe6;
	font-size: 20px;
	font-size: 1.25rem;
}

.Reasons-card__text {
	color: #2d2d37;
	font-family: "Noto Sans JP", serif;
	font-size: 15px;
	font-size: 0.9375rem;
	font-weight: 500;
	letter-spacing: 0;
	line-height: 1.75;
	margin-top: 14px;
	margin-top: 0.875rem;
}

.Reasons {
	background-color: rgba(106, 182, 232, .0980392157);
}

.Reasons__card-wrap {
	-moz-column-gap: 2.5rem;
	row-gap: 50px;
	row-gap: 3.125rem;
	-webkit-column-gap: 2.5rem;
	column-gap: 2.5rem;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(17.5rem, 1fr));
	justify-items: center;
	margin-top: 100px;
	margin-top: 6.25rem;
}

/* =========================
   Responsive
========================= */

/* =========================
   Section Title with EN + JA
========================= */

.section-title {
	margin: 0 0 48px;
	padding: 20px 0;
	position: relative;
	text-align: center;
}

/* 左右のライン */

.section-title::before,
.section-title::after {
	background-color: #c3c3be;
	content: "";
	height: 1px;
	max-width: 240px;
	position: absolute;
	top: 50%;
	width: 30%;
}

.section-title::before {
	left: 0;
}

.section-title::after {
	right: 0;
}

/* 英語タイトル（上・大きめ） */

.section-title__en {
	color: #075b3c; /* お好みのグリーンに調整OK */
	display: inline-block;
	font-family: "Roboto", sans-serif;
	font-size: 46px;
	font-weight: 500;
	letter-spacing: 0.3em;
	opacity: 0;
	text-indent: 0.3em; /* 先頭の字詰まり防止 */
	-webkit-transform: rotateX(90deg);
	transform: rotateX(90deg); /* 初期は寝かせておく */
	-webkit-transform-origin: bottom;
	transform-origin: bottom;
	-webkit-transition: opacity 0.7s ease, -webkit-transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
	transition: opacity 0.7s ease, -webkit-transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
	transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.7s ease;
	transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.7s ease, -webkit-transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

/* 日本語サブタイトル（下・グレー） */

.section-title__ja {
	color: #999999;
	display: block;
	font-size: 16px;
	letter-spacing: 0.4em;
	margin-top: 8px;
}

/* スクロールで表示されたときの状態 */

.section-title--inview .section-title__en {
	opacity: 1;
	-webkit-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

/* ---------- SP調整 ---------- */

/* =========================
   Section Title Animation（回転→フェードイン）
========================= */

/* 英語タイトル 初期状態 */

.section-title__en {
	color: #075b3c;
	display: inline-block;
	font-family: "Roboto", sans-serif;
	font-size: 46px;
	font-weight: 500;
	letter-spacing: 0.3em;
	opacity: 0;
	-webkit-transform: rotateX(640deg) scale(0.9);
	transform: rotateX(640deg) scale(0.9);
	-webkit-transform-origin: center;
	transform-origin: center;
	-webkit-transition: opacity 0.8s ease, -webkit-transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
	transition: opacity 0.8s ease, -webkit-transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
	transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s ease;
	transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s ease, -webkit-transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

/* アニメーション発火時（ふわっと着地） */

.section-title--inview .section-title__en {
	opacity: 1;
	-webkit-transform: rotateX(0deg) scale(1);
	transform: rotateX(0deg) scale(1);
}

.section-title {
	color: #062d24;
}

.section-title::before,
.section-title::after {
	background: #c3c3be;
}

.service-detail {
	background-color: #f9f9f9;
	padding: 80px 0;
}

.service-detail__inner {
	margin: 0 auto;
	max-width: 960px;
	padding: 0 20px;
}

.service-detail__lead {
	margin-bottom: 48px;
	margin-top: 80px;
}

.service-detail__lead-text {
	color: #333;
	font-size: 16px;
	line-height: 1.8;
	margin-bottom: 1.5em;
}

.service-detail__section {
	margin-bottom: 60px;
}

.service-detail__heading {
	border-left: 5px solid #007acc;
	color: #007acc;
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 20px;
	padding-left: 12px;
}

.service-detail__list,
.service-detail__features {
	list-style: disc inside;
	padding-left: 0;
}

.service-detail__list li,
.service-detail__features li {
	color: #444;
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 8px;
}

.service-detail__features li strong {
	color: #007acc;
	font-weight: 600;
}

.service-detail__text {
	color: #333;
	font-size: 16px;
	line-height: 1.7;
}

/* =========================
   Service
========================= */

.service { /* 共通余白は base で指定済み */
}

.service__lead {
	font-size: 17px;
	margin-bottom: 48px;
	margin-bottom: 3rem;
	margin-left: auto;
	margin-right: auto;
	max-width: 720px;
	text-align: center;
}

.service__list {
	gap: 24px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-bottom: 24px;
}

.service__item {
	background-color: #ffffff;
	border: 1px solid #c3c3be;
	-webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, .03);
	box-shadow: 0 2px 4px rgba(0, 0, 0, .03);
	-webkit-box-flex: 1;
	-ms-flex: 1 1 30%;
	flex: 1 1 30%;
	min-width: 260px;
	padding: 24px 20px;
}

.service__item-title {
	border-left: 9px solid #c3c3be;
	font-size: 18px;
	font-weight: 600;
	margin: 0 0 12px;
	padding-left: 10px;
}

.service__item-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.service__item-li {
	font-size: 16px;
	margin-bottom: 8px;
}

.service__item-li:last-child {
	margin-bottom: 0;
}

.service__note {
	color: #666666;
	font-size: 16px;
	margin: 0;
	text-align: right;
}

.service__list {
	gap: 24px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-bottom: 24px; /* 3D空間（回転に立体感） */
	-webkit-perspective: 1200px;
	perspective: 1200px;
}

.service__item {
	background-color: #ffffff;
	border: 1px solid #c3c3be; /* 影を“1段だけ”強化（上品） */
	-webkit-box-shadow: 0 10px 24px rgba(0, 0, 0, .06);
	box-shadow: 0 10px 24px rgba(0, 0, 0, .06);
	-webkit-box-flex: 1;
	-ms-flex: 1 1 30%;
	flex: 1 1 30%;
	min-width: 260px;
	padding: 24px 20px;
}

/* 表示時 */

.service__item.is-active {
	opacity: 1;
	-webkit-transform: rotateY(360deg);
	transform: rotateY(360deg);
}

/* 動きの速さ（好みで調整OK） */

.service__item.is-active {
	-webkit-transition: opacity 0.2s ease, -webkit-transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
	transition: opacity 0.2s ease, -webkit-transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
	transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.2s ease;
	transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.2s ease, -webkit-transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

/* 端末で動きを減らしたい場合 */

/* =========================
   Service　テキストマーカー
========================= */

.service__lead-marker { /* 太め・やさしい黄色マーカー */
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(55%, transparent), color-stop(55%, rgba(253, 234, 116, .95)));
	background-image: linear-gradient(transparent 55%, rgba(253, 234, 116, .95) 55%);
	background-position: 0 0;
	background-repeat: no-repeat;
	background-size: 0% 100%;
	display: inline; /* 追加：少しだけ強調 */
	font-size: 20 px; /* 通常16px想定 → +1px */
	font-weight: 600;
	padding: 0 4px; /* ここを変更 */
	-webkit-transition: background-size 1.1s cubic-bezier(0.22, 1, 0.36, 1);
	transition: background-size 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

/* 表示時にマーカーが伸びる */

.service__lead-marker.is-active {
	background-size: 100% 100%;
}

/* 動きを減らす設定 */

.shadow {
	-webkit-box-shadow: 5px 10px 20px rgba(0, 0, 0, .25);
	box-shadow: 5px 10px 20px rgba(0, 0, 0, .25);
}

.sp__980 {
	display: none;
}

.sp__974 {
	display: none;
}

.sp__960 {
	display: none;
}

.sp__954-425 {
	display: none;
}

.sp__768 {
	display: none;
}

.sp__684 {
	display: none;
}

.sp__680 {
	display: none;
}

.sp__610 {
	display: none;
}

.sp__610-430 {
	display: none;
}

.sp__570 {
	display: none;
}

.sp__552 {
	display: none;
}

.sp__550 {
	display: none;
}

.sp__512 {
	display: none;
}

.sp__470 {
	display: none;
}

.sp__465 {
	display: none;
}

.sp__450 {
	display: none;
}

.sp__440 {
	display: none;
}

.sp__430 {
	display: none;
}

.sp__405 {
	display: none;
}

.sp__375 {
	display: none;
}

.sp__367 {
	display: none;
}

.swiper-slide picture {
	height: inherit;
}

.swiper-slide img {
	-o-object-fit: cover;
	height: inherit;
	object-fit: cover;
}

.test {
	background-color: red;
	color: #fff;
	font-size: 20px;
	font-size: 1.25rem;
}

.square {
	background-color: red; /* 任意の背景色を指定 */
	height: 200px;
	-webkit-transform: skewX(10deg);
	transform: skewX(10deg);
	-webkit-transform: skewY(10deg);
	transform: skewY(10deg);
	width: 200px;
}

.text {
	color: #141414;
	font-family: "Noto Sans JP", serif;
	font-size: 15px;
	font-size: 0.9375rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 1.8666;
}

.text.text--large {
	color: #141414;
	font-family: "Noto Sans JP", serif;
	font-size: 24px;
	font-size: 1.5rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 1.75;
}

.text.text--white {
	color: #fff;
}

/* =========================
   Thanks (CleanTech Reform)
========================= */

.thanks {
	background: #f7f7f5;
	overflow: hidden;
	padding: 120px 16px 120px;
	position: relative;
}

/* 背景の斜め帯：薄いグリーン（主張しすぎない） */

.thanks::before {
	background: rgba(0, 0, 0, .04); /* ←黒の薄塗りで“上品”寄せ */
	content: "";
	height: 220px;
	position: absolute;
	right: -220px;
	top: 110px;
	-webkit-transform: rotate(-12deg);
	transform: rotate(-12deg);
	width: 70%;
}

/* もう1枚、アクセント色をほんのり */

.thanks::after {
	background: rgba(0, 0, 0, .02);
	bottom: 80px;
	content: "";
	height: 200px;
	left: -260px;
	position: absolute;
	-webkit-transform: rotate(10deg);
	transform: rotate(10deg);
	width: 70%;
}

.thanks__inner {
	margin: 0 auto;
	max-width: 1100px;
	position: relative;
	z-index: 1;
}

.thanks__card {
	background: #ffffff;
	border: 1px solid #e6e6e6;
	border-radius: 16px;
	-webkit-box-shadow: 0 10px 26px rgba(0, 0, 0, .1);
	box-shadow: 0 10px 26px rgba(0, 0, 0, .1);
	margin: 0 auto;
	max-width: 920px;
	padding: 70px 44px 60px;
	text-align: center;
}

.thanks__title {
	color: #000000;
	font-size: 34px;
	font-weight: 900;
	letter-spacing: 0.02em;
	line-height: 1.55;
	margin: 0 0 26px;
}

/* タイトル下のアクセントライン */

.thanks__title::after {
	background: #062d24;
	border-radius: 999px;
	content: "";
	display: block;
	height: 4px;
	margin: 22px auto 0;
	width: 72px;
}

.thanks__notes {
	color: rgba(0, 0, 0, .78);
	font-size: 14px;
	line-height: 1.9;
	list-style: none;
	margin: 0 auto 38px;
	max-width: 720px;
	padding: 0;
	text-align: left;
}

.thanks__notes li {
	margin: 0 0 10px;
	padding-left: 18px;
	position: relative;
}

/* 箇条書きの点をアクセント色に */

.thanks__notes li::before {
	background: #062d24;
	border-radius: 999px;
	content: "";
	height: 8px;
	left: 0;
	position: absolute;
	top: 10px;
	width: 8px;
}

.thanks__btn {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background: #062d24;
	border: 1px solid #062d24;
	border-radius: 999px;
	color: #ffffff;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	font-size: 16px;
	font-weight: 900;
	height: 56px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	letter-spacing: 0.06em;
	min-width: 280px;
	padding: 0 26px;
	text-decoration: none;
	-webkit-transition: opacity 0.2s ease, -webkit-transform 0.15s ease;
	transition: opacity 0.2s ease, -webkit-transform 0.15s ease;
	transition: opacity 0.2s ease, transform 0.15s ease;
	transition: opacity 0.2s ease, transform 0.15s ease, -webkit-transform 0.15s ease;
}

.thanks__btn:hover {
	opacity: 0.92;
}

.thanks__btn:active {
	-webkit-transform: translateY(1px);
	transform: translateY(1px);
}

.top-blog {
	padding: 80px 0 120px;
	text-align: center;
}

.top-contact {
	background-color: #fff;
	padding: 100px 150px;
}

.top-contact__inner {
	margin: 0 auto;
	max-width: 800px;
}

.top-contact__lead {
	color: #666;
	font-size: 16px;
	line-height: 1.8;
	margin-bottom: 30px;
	margin-top: 100px;
	text-align: center;
}

.top-contact__btns {
	gap: 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.top-contact__btn {
	background-color: #007ACC;
	border-radius: 4px;
	color: #fff;
	display: inline-block;
	font-weight: 600;
	min-width: 230px;
	padding: 14px 28px;
	text-align: center;
	text-decoration: none;
	-webkit-transition: background-color 0.3s ease;
	transition: background-color 0.3s ease;
}

.top-contact__btn:hover {
	background-color: #005ea8;
}

.top-contact__btn--tel {
	background-color: #fff;
	border: 2px solid #007ACC;
	color: #000;
}

.top-contact__btn--tel:hover {
	background-color: #007ACC;
	color: #fff;
}

.top-concept {
	padding-bottom: 150px;
	padding-bottom: 9.375rem;
	padding-top: 120px;
	padding-top: 7.5rem;
}

.top-feature {
	padding-bottom: 150px;
	padding-bottom: 9.375rem;
	padding-top: 100px;
	padding-top: 6.25rem;
}

.top-Reasons {
	padding-bottom: 150px;
	padding-bottom: 9.375rem;
	padding-top: 100px;
	padding-top: 6.25rem;
}

.top-menu {
	padding-bottom: 150px;
	padding-bottom: 9.375rem;
	padding-top: 100px;
	padding-top: 6.25rem;
}

.top-price {
	padding-bottom: 150px;
	padding-bottom: 9.375rem;
	padding-top: 100px;
	padding-top: 6.25rem;
}

.top-flow {
	padding-bottom: 150px;
	padding-bottom: 9.375rem;
	padding-top: 100px;
	padding-top: 6.25rem;
}

.top-faq {
	padding-bottom: 150px;
	padding-bottom: 9.375rem;
	padding-top: 100px;
	padding-top: 6.25rem;
}

.u-hover-glow {
	border-radius: 10px;
	-webkit-transition: 1s;
	transition: 1s;
}

.u-hover-glow:hover {
	border-radius: 10px;
	-webkit-box-shadow: 2px 4px 43px 10px #777777;
	box-shadow: 2px 4px 43px 10px #777777;
}

/* =========================
   Works
========================= */

.works__lead {
	font-size: 16px;
	line-height: 1.8;
	margin-bottom: 32px;
	margin-left: auto;
	margin-right: auto;
	max-width: 720px;
	text-align: center;
}

/* --- PC：3枚並び（デフォルト） --- */

.works__list {
	gap: 24px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.works__item {
	background-color: #ffffff;
	border: 1px solid #e0e0e0;
	-webkit-box-flex: 1;
	-ms-flex: 1 1 30%;
	flex: 1 1 30%;
	margin: 0;
	min-width: 260px;
	overflow: hidden;
}

.works__img {
	display: block;
	width: 100%;
}

.works__caption {
	padding: 12px;
}

.works__caption-title {
	display: block;
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 4px;
}

.works__caption-text {
	color: #666666;
	display: block;
	font-size: 14px;
	line-height: 1.6;
}

.works__note {
	color: #666666;
	font-size: 14px;
	line-height: 1.8;
	margin-top: 32px;
	text-align: center;
}

/* =========================
   SP：Swiper（SPのみ表示）
========================= */

.works__slider {
	display: none;
}

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

.concept__tile {
	opacity: 1;
	-webkit-transform: none;
	transform: none;
	-webkit-transition: none;
	transition: none;
	-webkit-transition: -webkit-transition-duration;
	transition: -webkit-transition-duration;
	transition: transition-duration;
	transition: transition-duration, -webkit-transition-duration;
}

.greeting__img,
.greeting__photo::after,
.greeting__text {
	opacity: 1;
	-webkit-transform: none;
	transform: none;
	-webkit-transition: none;
	transition: none;
}

.service__item {
	opacity: 1;
	-webkit-transform: none;
	transform: none;
	-webkit-transition: none;
	transition: none;
}

.service__lead-marker {
	background-size: 100% 100%;
	-webkit-transition: none;
	transition: none;
}

}

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

.sp__367 {
	display: block;
}

}

@media (min-width: 769px) {

.concept__gallery {
	-webkit-box-ordinal-group: 2;
	-ms-flex-order: 1;
	order: 1;
}

.concept__content {
	-webkit-box-ordinal-group: 3;
	-ms-flex-order: 2;
	order: 2;
}

.concept__content {
	-ms-flex-item-align: center;
	align-self: center;
}

}

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

.hero {
	height: auto;
	min-height: auto;
	padding-bottom: 40px;
}

.hero__inner {
	display: block;
	margin: 0 auto;
	max-width: 100%;
	padding: 0 16px;
	padding-left: 5%;
}

/* 斜めカット画像を上部に独立表示へ */

.hero__visual {
	bottom: auto; /* SP：カット量を少し弱くして自然に */
	-webkit-clip-path: polygon(18% 0%, 100% 0%, 100% 100%, 0% 85%);
	clip-path: polygon(18% 0%, 100% 0%, 100% 100%, 0% 85%);
	height: 480px;
	left: 50%;
	position: relative; /* 好みで 220〜300px */
	right: auto;
	top: auto;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 100vw;
}

/* テキストブロック */

.hero__content {
	-webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, .16);
	box-shadow: 0 4px 16px rgba(0, 0, 0, .16);
	margin-top: -40px; /* 写真にやさしく重なる演出 */
	padding: 28px 20px;
	width: 60%;
}

.hero__title {
	font-size: 32px;
	line-height: 1.35;
}

.hero__lead {
	font-size: 16px;
}

.hero__btn {
	font-size: 17px;
	margin: 0;
	padding: 14px 0;
	width: 100%;
}

.hero__scroll {
	display: none;
}

}

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

.t-mobile {
	display: none;
}

.t-desktop {
	display: block;
}

.t-mobile {
	display: none;
}

}

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

.header {
	z-index: 1000;
}

.header__inner {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 12px 16px;
}

/* PC ナビレイアウト → 全画面ドロワーに切り替え */

.header__nav {
	inset: 0;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background-color: #ffffff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	opacity: 0;
	pointer-events: none;
	position: fixed;
	-webkit-transform: translateY(-10px);
	transform: translateY(-10px);
	-webkit-transition: opacity 0.25s ease, visibility 0.25s ease, -webkit-transform 0.25s ease;
	transition: opacity 0.25s ease, visibility 0.25s ease, -webkit-transform 0.25s ease;
	transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
	transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease, -webkit-transform 0.25s ease;
	visibility: hidden;
	z-index: 900;
}

.header--open .header__nav {
	opacity: 1;
	pointer-events: auto;
	-webkit-transform: translateY(0);
	transform: translateY(0);
	visibility: visible;
}

.header__nav-list {
	gap: 16px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	list-style: none;
	margin: 0 0 24px;
	padding: 0;
	text-align: center;
}

.header__nav-item {
	margin: 0;
}

.header__nav-link {
	font-size: 18px;
	letter-spacing: 0.08em;
}

/* PC用電話ボタンは SP では非表示 */

.header__nav-item--tel {
	display: none;
}

/* ▼ ドロワー内 問い合わせボタン2つ */

.header__nav-contacts {
	gap: 12px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	width: 100%;
}

.header__nav-contact {
	border-radius: 0;
	display: block;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0.04em;
	max-width: 280px;
	padding: 12px 0;
	text-align: center;
	text-decoration: none;
	-webkit-transition: 0.3s ease;
	transition: 0.3s ease;
	width: 80%;
}

.header__nav-contact--tel {
	background: #062d24;
	border: none;
	color: #ffffff;
}

.header__nav-contact--form {
	background: #ffffff;
	border: 1px solid #062d24;
	color: #062d24;
}

/* ▼ ハンバーガーボタン */

.header__toggle {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background: #062d24;
	border: none;
	border-radius: 0;
	cursor: pointer;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	height: 52px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 0;
	width: 52px;
	z-index: 1001;
}

.header__toggle-line {
	background-color: #f0e4c3;
	display: block;
	height: 2px;
	position: relative;
	-webkit-transition: background-color 0.2s ease, -webkit-transform 0.3s ease;
	transition: background-color 0.2s ease, -webkit-transform 0.3s ease;
	transition: background-color 0.2s ease, transform 0.3s ease;
	transition: background-color 0.2s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
	width: 22px;
}

.header__toggle-line::before,
.header__toggle-line::after {
	background-color: #f0e4c3;
	content: "";
	height: 2px;
	left: 0;
	position: absolute;
	-webkit-transition: top 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
	transition: top 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
	transition: transform 0.3s ease, top 0.3s ease, opacity 0.3s ease;
	transition: transform 0.3s ease, top 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
	width: 22px;
}

.header__toggle-line::before {
	top: -6px;
}

.header__toggle-line::after {
	top: 6px;
}

/* OPEN 時は「×」に変形 */

.header--open .header__toggle-line {
	background-color: transparent;
}

.header--open .header__toggle-line::before {
	top: 0;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.header--open .header__toggle-line::after {
	top: 0;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

/* PC お問い合わせボタンは SP では非表示 */

.header__contact-pc {
	display: none;
}

}

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

.sp__980 {
	display: block;
}

}

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

.sp__974 {
	display: block;
}

}

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

.sp__960 {
	display: block;
}

}

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

.sp__954-425 {
	display: block;
}

}

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

.u-desktop {
	display: none;
}

.u-mobile {
	display: block;
}

.service,
.greeting,
.concept,
.works,
.contact {
	padding-bottom: 80px;
	padding-top: 80px;
}

a:hover {
	opacity: 0.8;
}

.accordion__item:not(first-child) {
	margin-top: 0.5rem;
}

.accordion__title {
	padding: 1.3125rem 2.1875rem 1.25rem 0.625rem;
}

.accordion__title::before,
.accordion__title::after {
	right: 0.75rem;
	width: 1rem;
}

.accordion__title-text {
	font-size: 1rem;
	line-height: 1.857;
}

.accordion__content {
	padding-bottom: 1.5rem;
	padding-left: 0.625rem;
	padding-right: 0.625rem;
	padding-top: 1rem;
}

.accordion__text {
	font-size: 1rem;
	line-height: 1.857;
}

.article {
	padding: 60px 40px;
}

.blog__list {
	width: 80%;
}

.blog__item {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.blog__block {
	margin-left: 0rem;
	margin-top: 0.9375rem;
}

.btn-a {
	font-size: 1rem;
	max-width: 22.5rem;
	width: 100%;
}

.btn-a::after {
	top: 40%;
}

.btn-pageTop {
	bottom: 2rem;
	right: 1.25rem;
}

.btn-pageTop a {
	height: 2.375rem;
	width: 2.375rem;
}

.btn-pageTop a::before {
	height: 0.875rem;
	top: 0.5rem;
	width: 0.875rem;
}

.coming-soon {
	padding: 150px 20px;
}

.contact-cta__btns {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.contact {
	padding: 80px 16px 100px;
}

.contact__lead {
	font-size: 14px;
}

.contact__btn {
	padding: 16px 0;
	width: 100%;
}

.feature-card__title {
	font-size: 1.125rem;
}

.feature-card__text {
	font-size: 0.9375rem;
}

.feature__card-wrap {
	row-gap: 2.5rem;
	margin-top: 6.25rem;
}

.flow-detail__intro {
	margin-top: 40px;
}

.flow-detail__contact {
	margin-top: 80px;
}

.flow-detail__contact-text {
	margin-bottom: 20px;
}

.flow__list {
	row-gap: 3.125rem;
	gap: 3.75rem;
	grid-template-columns: auto;
	margin-top: 5rem;
}

.flow__item01::before,
.flow__item02::before,
.flow__item03::before,
.flow__item04::before,
.flow__item05::before,
.flow__item06::before {
	font-size: 2.8125rem;
}

.flow__item__title {
	font-size: 1rem;
}

.flow__item__text {
	font-size: 0.875rem;
}

.flow-btn {
	margin-top: 5rem;
}

.hero__content {
	margin-top: -50%;
	width: 90%;
}

.inner {
	padding-left: 0.9375rem;
	padding-right: 0.9375rem;
}

.menu-btn {
	margin-top: 5rem;
}

.menu__list__item {
	font-size: 0.9375rem;
	padding: 0.375rem 1rem;
}

.menu__img-wrap {
	gap: 15px;
}

.mobile-tel-btn {
	cursor: pointer !important;
	display: inline-block !important;
	max-width: 230px;
	pointer-events: auto !important;
	position: relative !important;
	width: 100%;
	z-index: 9999 !important;
}

.desktop-tel-btn {
	display: none !important;
}

.mv__title-wrapper {
	top: 60%;
}

.mv__title {
	font-size: 1.5rem;
	letter-spacing: 0;
	line-height: 1.75;
}

.mv__title__text {
	font-size: 1rem;
	margin-top: 0.625rem;
}

.price-cta__buttons {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.price__list__item {
	padding-left: 0.9375rem;
	padding-right: 0.9375rem;
}

.price__lead__title {
	font-size: 1.125rem;
}

.price__lead__sub-text {
	padding-bottom: 0.375rem;
	padding-left: 0.625rem;
	padding-right: 0.625rem;
	padding-top: 0.625rem;
}

.price__lead__title-sub {
	font-size: 1rem;
}

.price__main-text {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.price__title {
	font-size: 1rem;
}

.price__sub-text {
	margin-top: 0.875rem;
}

.price__title-sub {
	font-size: 1rem;
}

.price__charge {
	font-size: 1rem;
}

.price__text {
	margin-top: 0.875rem;
}

.price__fee {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0.9375rem;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.Reasons-btn {
	margin-top: 5rem;
}

.Reasons-card__title {
	font-size: 1.125rem;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.Reasons-card__text {
	font-size: 0.9375rem;
}

.Reasons__card-wrap {
	row-gap: 2.5rem;
	margin-top: 6.25rem;
}

body {
	font-size: 16px;
}

main {
	padding-top: 56px;
}

.hero {
	min-height: 70vh;
	padding-bottom: 80px;
	padding-top: 96px;
}

.hero__title {
	font-size: 26px;
}

.service,
.greeting,
.concept,
.works,
.contact {
	padding-bottom: 56px;
	padding-top: 56px;
}

.greeting__body {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.greeting__photo {
	width: 100%;
}

.works__list {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.u-mobile {
	display: block;
}

.section-title {
	margin-bottom: 32px;
	padding: 16px 0;
}

.section-title::before,
.section-title::after {
	width: 20%;
}

.section-title__en {
	font-size: 32px;
	letter-spacing: 0.2em;
	text-indent: 0.2em;
}

.section-title__ja {
	font-size: 16px;
	letter-spacing: 0.3em;
}

.sp__768 {
	display: block;
}

.text {
	font-size: 0.875rem;
	line-height: 2.1482;
}

.text.text--large {
	font-size: 1.25rem;
	line-height: 1.9;
}

.top-blog {
	padding: 60px 0 80px;
}

.top-contact {
	padding: 80px 20px;
}

.top-feature {
	padding-bottom: 7.5rem;
	padding-top: 5rem;
}

.top-Reasons {
	padding-bottom: 7.5rem;
	padding-top: 5rem;
}

.top-menu {
	padding-bottom: 7.5rem;
	padding-top: 5rem;
}

.top-price {
	padding-bottom: 7.5rem;
	padding-top: 5rem;
}

.top-flow {
	padding-bottom: 7.5rem;
	padding-top: 5rem;
}

.top-faq {
	padding-bottom: 7.5rem;
	padding-top: 5rem;
}

}

@media (max-width: 768px) {

.concept__body {
	gap: 28px;
	grid-template-columns: 1fr;
}

/* ✅ SPは 画像→テキスト にしたい */

.concept__gallery {
	-webkit-box-ordinal-group: 2;
	-ms-flex-order: 1;
	order: 1;
}

.concept__content {
	margin-top: 4rem;
	-webkit-box-ordinal-group: 3;
	-ms-flex-order: 2;
	order: 2;
}

.concept__heading {
	font-size: 22px;
	margin-bottom: 14px;
	padding-left: 16px;
}

.concept__heading::before {
	width: 5px;
}

.concept__tiles {
	gap: 12px;
}

/* SPは自然な並びにリセット */

.concept__tile--main {
	aspect-ratio: 16/10;
	grid-column: 1/3;
	grid-row: auto;
}

.concept__tile--sub1,
.concept__tile--sub2 {
	aspect-ratio: 1/1;
	grid-column: auto;
	grid-row: auto;
}

.concept__tile--wide {
	aspect-ratio: 16/9;
	grid-column: 1/3;
	grid-row: auto;
}

.concept__inner::before {
	inset: -40px -20px auto -20px;
	height: 240px;
}

.greeting__body {
	gap: 24px;
	grid-template-columns: 1fr;
}

.greeting__lead {
	font-size: 20px;
}

.greeting__lead::before {
	height: 30px;
	top: 5px;
}

.greeting__photo::after {
	background-color: rgba(242, 140, 40, .16);
	bottom: -10px;
	right: -12px;
	-webkit-transform: translate(6px, 6px);
	transform: translate(6px, 6px);
}

.greeting__text {
	-webkit-transition-delay: 0.12s;
	transition-delay: 0.12s;
}

.news-single__content h1 {
	font-size: 22px;
	margin-bottom: 24px;
}

.news-single__content h2 {
	font-size: 20px;
	margin-top: 40px;
	padding: 10px 20px;
}

.news-single__content h3 {
	font-size: 18px;
	margin-top: 32px;
}

.news-single__content h4 {
	font-size: 18px;
	margin-top: 24px;
}

.news-single__content img {
	margin: 24px auto;
}

}

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

.contact-hero {
	padding: 56px 16px 24px;
}

.contact-hero__title {
	font-size: 22px;
}

.contact-panel {
	margin: 20px auto 24px;
	padding: 18px 16px;
}

.contact-form__surface {
	padding: 18px 16px 12px;
}

.contact-form__row {
	gap: 10px;
	grid-template-columns: 1fr;
	padding: 14px 0;
}

.contact-form__label {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.contact-form__actions {
	padding-top: 18px;
}

.contact-tel__link {
	font-size: 20px;
	width: 100%;
}

.thanks {
	padding: 90px 16px 90px;
}

.thanks::before {
	height: 180px;
	right: -260px;
	top: 70px;
	width: 90%;
}

.thanks::after {
	bottom: 40px;
	height: 160px;
	left: -280px;
	width: 90%;
}

.thanks__card {
	padding: 46px 18px 40px;
}

.thanks__title {
	font-size: 24px;
}

.thanks__btn {
	min-width: 0;
	width: 100%;
}

/* SPではPC用リストを非表示 */

.works__list {
	display: none;
}

/* SPではSwiperを表示 */

.works__slider {
	display: block;
}

/* Swiper本体：左右の余白＋pagination分の下余白 */

.works-swiper {
	padding-bottom: 24px;
	padding-left: 16px;
	padding-right: 16px;
}

/* 1枚を少し小さくして「次がチラ見え」＝スライダー感 */

.works-swiper .swiper-slide {
	width: 88%;
}

.works__pagination {
	margin-top: 12px;
	position: static;
	text-align: center;
}

.works__pagination .swiper-pagination-bullet {
	opacity: 0.3;
}

.works__pagination .swiper-pagination-bullet-active {
	opacity: 1;
}

}

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

.sp__684 {
	display: block;
}

}

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

.sp__680 {
	display: block;
}

}

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

.sp__610 {
	display: block;
}

.sp__610-430 {
	display: block;
}

}

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

.btn-a {
	max-width: 16.25rem;
	padding-bottom: 1rem;
	padding-left: 2.5rem;
	padding-right: 3.125rem;
	padding-top: 1rem;
	text-align: center;
	width: 100%;
}

}

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

.sp__570 {
	display: block;
}

}

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

.sp__552 {
	display: block;
}

}

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

.sp__550 {
	display: block;
}

}

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

.sp__512 {
	display: block;
}

}

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

.sp__470 {
	display: block;
}

}

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

.sp__465 {
	display: block;
}

}

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

.sp__450 {
	display: block;
}

}

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

.sp__440 {
	display: block;
}

}

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

.sp__610-430 {
	display: none;
}

.sp__430 {
	display: block;
}

}

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

.sp__954-425 {
	display: none;
}

}

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

.sp__405 {
	display: block;
}

}

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

.sp__375 {
	display: block;
}

}

@-webkit-keyframes hero-cursor-blink {

0% {
	opacity: 1;
}

50% {
	opacity: 0;
}

100% {
	opacity: 1;
}

}

@keyframes hero-cursor-blink {

0% {
	opacity: 1;
}

50% {
	opacity: 0;
}

100% {
	opacity: 1;
}

}


/*# sourceMappingURL=styles.css.map */
