@charset 'UTF-8';

/*
css
　 ├ style.css--------：WEB 1,400px以上
　 ├ pc.css-----------：WEB 1,399px以下、1,024以上
　 ├ tablet.css-------：WEB 1,023以下、601px以上
　 └ smart.css--------：WEB 600px以下
*/

/* css記載順序
01. 固定ページのh1,h2見出し
02. toppage
03. form
04. 下層ページ
end css記載順序*/

/*************************** 00. カスタムプロパティ *******************/
:root {
	/* color */
	--text-color-01: #313131;
	--text-color-02: #222;
	--text-color-03: #272727;
	--gradation: linear-gradient(76deg, #e76800 2.73%, #ee931b 50.11%, #f6c438 97.31%);
	--accent-color: #e76c00;
	--bg-color: #f6f6f6;

	/* font-family */
	--ff-en: 'Alexandria', sans-serif;
	--ff-ja: 'Noto Sans JP', sans-serif;
	--ff-both: 'Alexandria', 'Noto Sans JP', sans-serif;

	/* layout */
	--pc-inner: 1200px;
	--pc-sidePadding: 50px;
	--pc-inner-sum: calc(var(--pc-inner) + var(--pc-sidePadding) * 2);
	--pc-narrow-inner: 1100px;
	--pc-narrow-inner-sum: calc(var(--pc-narrow-inner) + var(--pc-sidePadding) * 2);

	/* SP版の設定 */
	--sp-sidePadding: 15px;
	--sp-sidePadding-narrow: 25px;
	--sp-inner: 500px;
	--sp-inner-sum: calc(var(--sp-inner) + var(--sp-sidePadding) * 2);
	--sp-narrow-inner-sum: calc(var(--sp-inner) + var(--sp-sidePadding-narrow) * 2);
}

/*************************** 00. 共通設定 *******************/
html {
	overflow-x: clip;
}

body {
	overflow-x: clip;
	background-color: white;
	color: var(--text-color-01);
	font-size: 16px;
	line-height: 1.8;
	font-family: var(--ff-ja);
}

.inner {
	position: relative;
	width: 100%;
	height: inherit;
	max-width: var(--pc-inner-sum);
	margin-inline: auto;
	padding-inline: var(--pc-sidePadding);
}

.inner.-narrow {
	max-width: var(--pc-narrow-inner-sum);
}

.onlyPc {
	display: block !important;
}

.onlyTab {
	display: none !important;
}

.onlySp {
	display: none !important;
}

.onlyXl {
	display: block !important;
}

/* 上書き */
#content {
	padding-top: 0 !important;
}
.post-template-default #content,
.archive #content{
	padding-top: 2em!important;
}

p {
	margin-block: 0;
}

/*************************** 00. 共通パーツ *******************/
/*===============================
	ボタン
================================*/
.buttonArrow {
	display: grid;
	place-content: center;
	position: relative;
	width: 100%;
	min-height: 72px;
	padding: 10px 15px;
	border: 2px solid #e76c00;
	border-radius: 100px;
	transition: all 0.3s ease-out;
	will-change: opacity;
}

@media (any-hover: hover) {
	.buttonArrow:hover,
	.buttonArrow:focus-visible {
		opacity: 0.8;
		outline: none;
	}
}

@media (any-hover: hover) {
	.buttonArrow:hover::before,
	.buttonArrow:focus-visible::before {
		right: 0;
		opacity: 0;
	}
}

@media (any-hover: hover) {
	.buttonArrow:hover::after,
	.buttonArrow:focus-visible::after {
		right: 31px;
		opacity: 1;
	}
}

.buttonArrow::before,
.buttonArrow::after {
	position: absolute;
	top: 50%;
	right: 31px;
	mask-position: center center;
	mask-repeat: no-repeat;
	mask-size: contain;
	mask-image: url(../../img/icon_arrow.svg);
	width: 11px;
	height: 11px;
	translate: 0 -50%;
	transition: all 0.3s ease-out;
	content: '';
}

.buttonArrow::after {
	right: 60px;
	opacity: 0;
}

.buttonArrow__sub {
	font-size: 14px;
	font-weight: 600;
	line-height: 1.5;
	text-align: center;
	text-box-trim: trim-both;
}

.buttonArrow__main {
	font-weight: 700;
	font-size: 18px;
	line-height: 1.5;
	text-align: center;
	text-box-trim: trim-both;
}

.buttonArrow__main span {
	font-size: 15px;
}

.buttonArrow.-first {
	background: var(--accent-color);
	color: white;
}

.buttonArrow.-first::before,
.buttonArrow.-first::after {
	background: white;
}

.buttonArrow.-secondary {
	background: white;
}

.buttonArrow.-secondary::before,
.buttonArrow.-secondary::after {
	background: var(--accent-color);
}

.buttonArrow.-secondary .buttonArrow__sub {
	color: var(--accent-color);
}

/*===============================
	流れるテキスト
================================*/
.scroll-infinity {
	width: 100%;
	overflow: hidden;
}

.scroll-infinity__wrap {
	display: flex;
	width: 100%;
	position: relative;
}

.scroll-infinity__list {
	display: flex;
	flex-shrink: 0;
	list-style: none;
	padding: 0;
	margin: 0;
}

.scroll-infinity__list.-left {
	animation: infinity-scroll-left 80s infinite linear 0.5s both;
}

.scroll-infinity__item {
	flex-shrink: 0;
}

.scroll-infinity__item img,
.scroll-infinity__item picture {
	display: block;
	width: 100%;
}

@keyframes infinity-scroll-left {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-100%);
	}
}

/* TOP-ABOUT */
.scroll-infinity.-top-about {
	position: absolute;
	top: 50%;
	left: 0;
	translate: 0 -50%;
}

.scroll-infinity.-top-about .scroll-infinity__list {
	width: calc(3323px * 2);
}

.scroll-infinity.-top-about .scroll-infinity__list.-left {
	animation: infinity-scroll-left 80s infinite linear 0.5s both;
}

.scroll-infinity.-top-about .scroll-infinity__item {
	/* 画像の幅 */
	width: 3323px;
}

.scroll-infinity.-top-about .scroll-infinity__item img,
.scroll-infinity.-top-about .scroll-infinity__item picture {
	/* 画像の高さ */
	height: 108px;
}

/* GRADATION */
.scroll-infinity.-gradation {
	position: absolute;
	top: 0;
	left: 0;
}

.scroll-infinity.-gradation .scroll-infinity__list {
	width: calc(3678px * 2);
}

.scroll-infinity.-gradation .scroll-infinity__list.-left {
	animation: infinity-scroll-left 80s infinite linear 0.5s both;
}

.scroll-infinity.-gradation .scroll-infinity__item {
	/* 画像の幅 */
	width: 3678px;
}

.scroll-infinity.-gradation .scroll-infinity__item img,
.scroll-infinity.-gradation .scroll-infinity__item picture {
	/* 画像の高さ */
	height: 141px;
}

/*===============================
	ドット
================================*/
.dot-pattern::before {
	display: block;
	position: absolute;
	inset: 0;
	z-index: 1;
	background-image: radial-gradient(circle, rgba(255, 255, 255, 0.3) 1.5px, transparent 1.5px), radial-gradient(circle, rgba(255, 255, 255, 0.3) 1.5px, transparent 1.5px);
	background-position: 0 0, 2.5px 7px;
	background-size: 7px 14px;
	content: '';
}

/*===============================
	スクロールヒント
================================*/
.scroll-hint-icon-wrap {
	z-index: 100;
}

/*************************** 01. 固定ページのh1,h2見出し *******************/
/*===============================
	heading-underline
================================*/
.heading-underline {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 4px;
	position: relative;
	padding-block-end: 20px;
}

.heading-underline::before {
	display: block;
	position: absolute;
	bottom: 0;
	left: 50%;
	translate: -50%;
	width: 64px;
	height: 4px;
	background: var(--gradation);
	content: '';
}

.heading-underline h2 > span {
	display: block;
	font-weight: 700;
	font-size: 24px;
	line-height: 1.5;
	letter-spacing: 0.04em;
	text-align: center;
	text-box-trim: trim-both;
}

.heading-underline h2 {
	font-weight: 700;
	font-size: 36px;
	line-height: 1.5;
	letter-spacing: 0.04em;
	text-align: center;
	text-box-trim: trim-both;
}

.heading-underline.-white h2 {
	color: white !important;
}

.heading-underline.-white span {
	color: white !important;
}

.heading-underline.-left {
	align-items: flex-start;
}

.heading-underline.-left h2,
.heading-underline.-left span {
	text-align: left;
}

.heading-underline.-left::before {
	left: 0;
	translate: 0;
}

.heading-underline.-pcBig h2 {
	font-size: 38px;
}

.heading-underline.-pcSmall h2 {
	font-size: 32px;
}

/*===============================
	heading
================================*/
.heading {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 6px;
}

.heading span {
	background: var(--gradation);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-weight: 400;
	font-size: 68px;
	font-family: var(--ff-en);
	line-height: 1;
	text-transform: uppercase;
	text-align: center;
	text-box-trim: trim-both;
}

.heading h2 {
	font-size: 16px;
	font-weight: 600;
	line-height: 1.5;
	letter-spacing: 0.08em;
	text-align: center;
	text-box-trim: trim-both;
}

.heading.-white h2 {
	color: white !important;
}

.heading.-white span {
	background: initial;
	background-clip: initial;
	-webkit-background-clip: initial;
	-webkit-text-fill-color: initial;
	color: white !important;
}

.heading.-left {
	justify-content: flex-start;
	align-items: flex-start;
}

.heading.-left h2 {
	text-align: left;
}

.heading.-left span {
	text-align: left;
}

.heading.-pcLeft {
	justify-content: flex-start;
	align-items: flex-start;
}

.heading.-pcLeft h2 {
	text-align: left;
}

.heading.-pcLeft span {
	text-align: left;
}

.heading.-mini span {
	font-size: 56px;
}

/*************************** 02. toppage ***********************/

/*===============================
	FV
================================*/
.top-fv {
	position: relative;
	padding-block: 125px 101px;
}

.top-fv__deco {
	position: absolute;
	width: 440px;
}

.top-fv__deco.-first {
	top: -140px;
	right: calc(50% - 500px);
}

.top-fv__deco.-second {
	top: 70px;
	right: calc(50% - 620px);
}

.top-fv__deco.-third {
	top: 410px;
	right: calc(50% - 650px);
}

.top-fv__deco.-fourth {
	top: -194px;
	left: calc(50% - 467px);
	rotate: -131deg;
	z-index: -1;
	width: 336px;
}

.top-fv__deco.-fifth {
	top: 500px;
	left: calc(50% - 766px);
	rotate: 33deg;
	z-index: -1;
	width: 585px;
}

.top-fv__inner.inner.-narrow {
	max-width:1280px;
}

.top-fv__content {
	position: relative;
	z-index: 3;
}

.top-fv__content .top-fv__catch {
	font-size: 55px;
	font-weight: 600;
	line-height: 1.5;
	letter-spacing: 0.01em;
	text-box-trim: trim-both;
}

.top-fv__content p {
	margin-block-start: 30px;
	font-weight: 500;
	font-size: 16px;
	line-height: 1.8;
	letter-spacing: 0.05em;
	text-box-trim: trim-both;
}

.top-fv__buttons {
	display: flex;
	flex-direction: column;
	gap: 9px;
	width: 444px;
	margin-block-start: 30px;
}

/*===============================
	about
================================*/
.top-about {
	position: relative;
}

.top-about::before {
	display: block;
	position: absolute;
	bottom: -1px;
	right: 0;
	left: 0;
	width: 100%;
	height: 295px;
	background: url(../../img/top-about_bg-min.webp) no-repeat center center / cover;
	content: '';
}

.top-about__inner {
	padding-inline: 54px;
	max-width: calc(1338px + 54px * 2);
}

.top-about__content {
	width: 100%;
	max-width: 1338px;
	margin-inline: auto;
	overflow: hidden;
	border-radius: 10px;
	border: 2px solid rgba(0, 0, 0, 0.08);
	background: rgba(255, 255, 255, 0.4);
	backdrop-filter: blur(76.5px);
}

.top-about__wrapper {
	display: flex;
	align-items: center;
	gap: 24px;
	padding-block: 80px;
}

.top-about__textArea {
	flex-shrink: 0;
	position: relative;
	z-index: 2;
	width: calc(636 / 1100 * 100%);
}

.top-about__textArea h1 {
	font-weight: 700;
	font-size: 24px;
	line-height: 1.5;
	letter-spacing: 0.05em;
	text-box-trim: trim-both;
}

.top-about__textArea p {
	width: calc(574 / 636 * 100%);
	margin-block-start: 40px;
	font-size: 16px;
	line-height: 2;
	letter-spacing: 0.05em;
	text-box-trim: trim-both;
}

.top-about__wrapper figure {
	flex-grow: 1;
	position: relative;
	z-index: 2;
}

/*===============================
	problem
================================*/
.problem {
	background: var(--bg-color);
	padding-block: 70px 85px;
}

.problem__heading {
}

.problem__content {
	margin-block-start: 37px;
}

.problem__content ul {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(356px, 1fr));
	gap: 15px;
}

.problem__content ul li {
	display: grid;
	place-content: center;
	position: relative;
	padding: 10px;
	min-height: 119px;
	border-radius: 12px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	background: white;
	font-weight: 600;
	font-size: 18px;
	line-height: 1.5;
	text-align: center;
	text-box-trim: trim-both;
}

.problem__content ul li:before {
	display: block;
	position: absolute;
	top: 12px;
	left: 13px;
	width: 27px;
	height: 23px;
	background: url(../../img/icon_checkbox-min.webp) no-repeat center center / cover;
	content: '';
}

/*===============================
	STRENGTH
================================*/
.top-strength {
	position: relative;
	padding-block: 125px 86px;
}

.top-strength__deco {
	position: absolute;
}

.top-strength__deco.-first {
	top: -100px;
	left: calc(50% - 900px);
	width: 396px;
}

.top-strength__deco.-second {
	right: calc(50% - 900px);
	bottom: -51px;
	width: 286px;
}

.top-strength__deco.-third {
	top: 481px;
	right: calc(50% - 904px);
	rotate: -126deg;
	width: 431px;
}

.top-strength__deco.-fourth {
	bottom: 285px;
	left: calc(50% - 819px);
	rotate: -53deg;
	width: 289px;
}

.top-strength__content {
	margin-block-start: 54px;
}

/*===============================
	LIST
================================*/
.list {
	display: flex;
	flex-direction: column;
}
.disabled-link{
	pointer-events: none;
    cursor: default;
}
.list__item {
	padding-block: 39px;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.list__item section {
	display: flex;
	flex-direction: row-reverse;
	align-items: center;
	gap: 47px;
}

.list__textArea {
	flex-grow: 1;
}

.list__item:nth-child(even) section {
	flex-direction: row;
}

.list__item:first-child .list__head {
	padding-inline-start: 100px;
}

.list__textArea p {
	margin-block-start: 32px;
	font-size: 14px;
	line-height: 2;
	text-box-trim: trim-both;
}

.list__head {
	position: relative;
	padding-inline-start: 110px;
}

.list__head.-onlyH3 {
	padding-inline-start: 80px;
}

.list__item:first-child .list__head.-onlyH3 {
	padding-inline-start: 66px;
}

.list__head.-onlyH3 .list__number {
	top: 50%;
	translate: 0 -50%;
	font-size: 48px;
}

.list__head h3 {
	background: var(--gradation);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-weight: 700;
	font-size: 26px;
	line-height: 1.6;
	letter-spacing: 0.04em;
	text-box-trim: trim-both;
}

.list__head p {
	margin-block-start: 4px;
	font-weight: 600;
	font-size: 18px;
	line-height: 1.6;
	letter-spacing: 0.04em;
	text-box-trim: trim-both;
}

.list__number {
	display: inline-block;
	position: absolute;
	top: -8px;
	left: 0;
	background: var(--gradation);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-size: 68px;
	font-family: var(--ff-en);
	line-height: 1;
	text-box-trim: trim-both;
}

.list__item section figure {
	flex-shrink: 0;
	position: relative;
	width: calc(490 / 1100 * 100%);
}

.list__item section figure img {
	border-radius: 500px;
}

/*===============================
	CTA
================================*/
.cta {
	position: relative;
	background: url(../../img/cta_bg-min.webp) no-repeat center center / cover;
}

.cta::before {
	display: block;
	position: absolute;
	z-index: 2;
	bottom: 0;
	right: calc(50% - 720px);
	width: 340px;
	height: 415px;
	background: url(../../img/cta-min.webp) no-repeat center center / cover;
	content: '';
}

.cta__heading {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 11px;
	margin-inline-end: calc(50% - 50vw);
	margin-inline-start: calc(50% - 50vw);
	padding-block: 24px 23px;
	background: var(--accent-color);
}

.cta__heading > div {
	display: contents;
}

.cta__heading span {
	display: grid;
	place-content: center;
	padding-inline: 20px;
	height: 34px;
	border-radius: 100px;
	background: white;
	color: #e76c00;
	font-weight: 700;
	line-height: 1.7;
	letter-spacing: 0.04em;
	text-align: center;
	text-box-trim: trim-both;
}

.cta__heading h2 {
	color: white;
	font-size: 28px;
	font-weight: 700;
	line-height: 1.7;
	letter-spacing: 0.04em;
	text-align: center;
	text-box-trim: trim-both;
}

.cta__content {
	padding-block: 30px 50px;
}

.cta__content h3 {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 23px;
	color: white;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.7;
	letter-spacing: 0.04em;
	text-align: center;
	text-box-trim: trim-both;
}

.cta__content h3 img {
	width: 25px;
}

.cta__buttons {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 15px;
	position: relative;
	z-index: 3;
	width: 925px;
	margin-block-start: 18px;
	margin-inline: auto;
}

.cta__buttons a {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 29px;
	width: 100%;
	padding: 10px 16px;
	min-height: 140px;
	border-radius: 12px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	background: white;
	font-size: 30px;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0.04em;
	text-align: center;
	text-box-trim: trim-both;
}

@media (any-hover: hover) {
	.cta__buttons a:hover {
		opacity: 0.8 !important;
	}
}

@media (any-hover: hover) {
	.cta__buttons a:hover span::before {
		left: 120%;
	}
}

@media (any-hover: hover) {
	.cta__buttons a:hover span::after {
		left: 50%;
	}
}

.cta__buttons a:focus-visible {
	outline: none;
	opacity: 0.8 !important;
}

.cta__buttons a:focus-visible span::before {
	left: 120%;
}

.cta__buttons a:focus-visible span::after {
	left: 50%;
}

.cta__buttons a span {
	flex-shrink: 0;
	position: relative;
	width: 46px;
	height: 46px;
	overflow: hidden;
	background: var(--gradation);
	border-radius: 50%;
}

.cta__buttons a span::before,
.cta__buttons a span::after {
	display: block;
	position: absolute;
	top: 50%;
	translate: -50% -50%;
	width: 11px;
	height: 11px;
	mask-position: center center;
	mask-repeat: no-repeat;
	mask-size: contain;
	mask-image: url(../../img/icon_arrow.svg);
	background: white;
	content: '';
	transition: left 0.3s ease-out;
}

.cta__buttons a span::before {
	left: 50%;
}

.cta__buttons a span::after {
	left: -50%;
}

/*===============================
	SERVICE
================================*/
.top-service {
	padding-block: 117px 130px;
	background: url(../../img/top-service_bg-min.webp) no-repeat center center / cover;
}

.top-service__heading p {
	margin-block-start: 30px;
	color: white;
	font-size: 16px;
	line-height: 2;
	text-align: center;
	text-box-trim: trim-both;
}

.top-service__content {
	margin-block-start: 55px;
}

.top-service__head ul {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 24px;
}

.top-service__head ul li {
	display: contents;
}

.top-service__head ul li a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: calc((100% - 24px * 2) / 3);
	min-height: 127px;
	padding: 10px;
	border-radius: 12px;
	border: 2px solid rgba(0, 0, 0, 0.1);
	background: #fff;
}

@media (any-hover: hover) {
	.top-service__head ul li a:hover,
	.top-service__head ul li a:focus-visible {
		outline: none;
		opacity: 0.8;
		transition: all 0.3s ease-in-out;
	}
}

.top-service__head > ul > li a > section > h3 {
	font-size: 20px;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0.04em;
}

.top-service__head ul li section {
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
	align-items: center;
	gap: 19px;
	width: 100%;
}

.top-service__head ul li section figure {
	flex-shrink: 0;
	width: 107px;
}

.top-service__head ul li section figure img {
	border-radius: 6px;
	aspect-ratio: 1 / 1;
}

.top-service__head ul li section h3 {
	flex-grow: 1;
	width: 100%;
}

.top-service__foot {
	margin-block-start: 90px;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	gap: 36px;
}

.top-service__foot > section {
	width: 100%;
	padding-block: 40px 20px;
	border-radius: 12px;
	border: 2px solid rgba(0, 0, 0, 0.1);
	background: white;
}

.top-service__foot section h3 {
	position: relative;
	width: fit-content;
	margin-inline: auto;
	padding-inline-start: 67px;
	font-weight: 700;
	font-size: 28px;
	line-height: 1.5;
	letter-spacing: 0.04em;
	text-box-trim: trim-both;
}

.top-service__foot section h3::before {
	display: block;
	position: absolute;
	width: 50px;
	height: 50px;
	top: 50%;
	left: 0;
	translate: 0 -50%;
	background: url(../../img/deco_circle-min.webp) no-repeat center center / cover;
	content: '';
}

.top-service__foot section h3.-noGood::before {
	width: 56px;
	background: url(../../img/deco_triangle-min.webp) no-repeat center center / cover;
}

.top-service__foot section h3 span {
	display: block;
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 0.04em;
	text-box-trim: trim-both;
}

.top-service__foot section ul {
	max-width: 512px;
	margin-block-start: 30px;
	margin-inline: auto;
	padding-inline: 20px;
}

.top-service__foot section ul li section {
	padding-block: 20px;
	border-top: 1px dashed rgba(0, 0, 0, 0.4);
}

.top-service__foot section ul li section h4 {
	position: relative;
	padding-inline-start: 35px;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.55;
	letter-spacing: 0.04em;
	text-box-trim: trim-both;
}

.top-service__foot section ul li section h4::before {
	display: block;
	position: absolute;
	top: 2px;
	left: 0;
	width: 27px;
	height: 23px;
	background: url(../../img/icon_checkbox-min.webp) no-repeat center center / cover;
	content: '';
}

.top-service__foot section ul li section h4.-noGood::before {
	background: url(../../img/icon_checkbox-d-min.webp) no-repeat center center / cover;
}

.top-service__foot section ul li section p {
	margin-block-start: 16px;
	font-size: 14px;
	line-height: 1.8;
	text-box-trim: trim-both;
}

/*===============================
	CASE
================================*/
.top-case {
	position: relative;
	background: url(../../img/top-case_bg-min.webp) no-repeat top center / 100% auto;
	padding-block: 120px 70px;
}

.top-case__inner {
	position: relative;
}

.top-case__button {
	position: absolute;
	z-index: 2;
	top: 0;
	right: 50px;
}

.top-case__button a {
	display: flex;
	align-items: center;
	position: relative;
	padding-inline: 50px 70px;
	height: 64px;
	border-radius: 100px;
	background: white;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.5;
	text-box-trim: trim-both;
}

.top-case__button a::before,
.top-case__button a::after {
	display: block;
	position: absolute;
	top: 50%;
	right: 31px;
	translate: 0 -50%;
	width: 11px;
	height: 11px;
	mask-position: center center;
	mask-repeat: no-repeat;
	mask-size: contain;
	mask-image: url(../../img/icon_arrow.svg);
	background-color: var(--accent-color);
	transition: all 0.3s ease-out;
	content: '';
}

.top-case__button a::after {
	right: 60px;
	opacity: 0;
	visibility: hidden;
}

@media (any-hover: hover) {
	.top-case__button a:hover,
	.top-case__button a:focus-visible {
		outline: none;
		opacity: 1 !important;
	}
}

@media (any-hover: hover) {
	.top-case__button a:hover::before,
	.top-case__button a:focus-visible::before {
		right: 0;
		opacity: 0;
		visibility: hidden;
	}
}

@media (any-hover: hover) {
	.top-case__button a:hover::after,
	.top-case__button a:focus-visible::after {
		right: 31px;
		opacity: 1;
		visibility: visible;
	}
}

.top-case__heading {
}

.top-case__content {
	margin-block-start: 45px;
}

.top-case__swiper-container,
.top-case__swiper,
.top-case__swiper-wrapper,
.top-case__swiper-slide {
	position: relative;
	height: fit-content;
}

.top-case__swiper-container {
	margin-inline-end: calc(50% - 50vw);
}

.top-case__swiper-wrapper {
	padding-block-end: 10px;
}

.top-case__swiper-slide {
	width: 516px;
	padding-block-end: 50px;
	overflow: hidden;
	border-radius: 12px;
	border: 1px solid rgba(0, 0, 0, 0.2);
	background: rgba(255, 255, 255, 0.5);
	backdrop-filter: blur(50px);
}

.top-case__swiper-slide > section > h3 {
	width: 100%;
	padding-block: 12px 11px;
	background: var(--gradation);
	color: white;
	font-weight: 700;
	font-size: 24px;
	line-height: 1.45;
	letter-spacing: 0.04em;
	text-align: center;
	text-box-trim: trim-both;
}

.top-case__swiper-slide > section > p {
	padding-block-start: 27px;
	font-weight: 700;
	font-size: 18px;
	line-height: 1.77;
	letter-spacing: 0.04em;
	text-align: center;
}

.top-case__swiper-slide > section > p > span {
	color: var(--accent-color);
}

.top-case__swiper-slide section > section {
	max-width: 472px;
	margin-block-start: 20px;
	margin-inline: auto;
	padding-inline: 20px;
}

.top-case__swiper-slide section > section h4 {
	position: relative;
	padding-block-end: 10px;
	font-size: 20px;
	font-weight: 600;
	line-height: 1.75;
	letter-spacing: 0.04em;
	text-box-trim: trim-both;
}

.top-case__swiper-slide section > section h4::before,
.top-case__swiper-slide section > section h4::after {
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	height: 2px;
	content: '';
}

.top-case__swiper-slide section > section h4::before {
	width: 100%;
	background: var(--text-color-01);
	opacity: 0.2;
}

.top-case__swiper-slide section > section h4::after {
	width: 84px;
	background: var(--gradation);
}

.top-case__swiper-slide section > section ul {
	display: flex;
	flex-direction: column;
	gap: 5px;
	margin-block-start: 13px;
	padding-left: 1.5em;
}

.top-case__swiper-slide section > section ul li {
	list-style: inside;
	font-weight: 600;
	font-size: 16px;
	letter-spacing: 0.04em;
	text-box-trim: trim-both;
	text-indent: -1.5em;
}

.top-case__swiper-slide section > section ul li::marker {
	margin-inline-end: 0.5em;
}

.top-case__swiper-slide section > section figure {
	width: 100%;
	margin-block-start: 15px;
	margin-inline: auto;
}

.top-case__swiper-slide section section figure img {
	aspect-ratio: 341 / 206;
}

.swiper-button-prev,
.swiper-button-next,
.swiper-pagination,
.swiper-pagination-bullets.swiper-pagination-horizontal {
	position: relative !important;
	top: unset;
	bottom: unset;
	left: unset;
	right: unset;
	margin: 0;
	padding: 0;
	/* overflow: hidden; */
}

.swiper-button-prev,
.swiper-button-next {
	position: static;
	width: 46px;
	height: 46px;
	overflow: hidden;
	background: white;
	border-radius: 3px;
	border: 1px solid #ccc;
	transform: translateY(0);
	transition: all 0.3s ease-out;
}

.swiper-button-prev::before,
.swiper-button-next::before,
.swiper-button-prev::after,
.swiper-button-next::after {
	display: block;
	position: absolute;
	width: 11px;
	height: 11px;
	mask-position: center center;
	mask-repeat: no-repeat;
	mask-size: contain;
	mask-image: url(../../img/icon_arrow.svg);
	background-color: #ccc;
	transform: rotate(0) skew(0);
	color: transparent;
	transition: all 0.3s ease-out !important;
	content: '';
}

.swiper-button-prev::before,
.swiper-button-prev::after {
	rotate: 180deg;
}

.swiper-button-prev::before {
	left: unset;
	right: 39%;
}

.swiper-button-prev::after {
	left: unset !important;
	right: -40%;
}

.swiper-button-next::before {
	right: unset !important;
	left: 39%;
}

.swiper-button-next::after {
	right: unset !important;
	left: -40%;
}

@media (any-hover: hover) {
	/* ホバースタイル */
	.swiper-button-prev:hover,
	.swiper-button-prev:focus-visible,
	.swiper-button-next:hover,
	.swiper-button-next:focus-visible {
		border-color: transparent;
		outline: none;
		background: var(--gradation);
	}
}

@media (any-hover: hover) {
	.swiper-button-prev:hover::before,
	.swiper-button-prev:focus-visible::before {
		right: 105%;
		background-color: white;
	}
}

@media (any-hover: hover) {
	.swiper-button-prev:hover::after,
	.swiper-button-prev:focus-visible::after {
		right: 39%;
		background-color: white;
	}
}

@media (any-hover: hover) {
	.swiper-button-next:hover::before,
	.swiper-button-next:focus-visible::before {
		left: 105%;
		background-color: white;
	}
}

@media (any-hover: hover) {
	.swiper-button-next:hover::after,
	.swiper-button-next:focus-visible::after {
		left: 39%;
		background-color: white;
	}
}

/************/

.swiper-pagination-bullets.swiper-pagination-horizontal {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 13px;
	width: fit-content;
}

.swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet {
	opacity: 1;
	width: 7px;
	height: 7px;
	margin-inline: 0;
	background-color: var(--text-color-01);
	opacity: 0.2;
}

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

.top-case__swiper-nav {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 24px;
	margin-block-start: 45px;
}

/*===============================
	NEWS
================================*/
.top-news {
	position: relative;
	padding-block: 223px 121px;
}

.top-news__inner {
	display: flex;
	gap: 84px;
}

.top-news__heading {
	display: flex;
	justify-content: space-between;
	flex-direction: column;
	flex-shrink: 0;
	width: 214px;
	gap: 40px;
}

.top-news__heading a {
	display: flex;
	align-items: center;
	gap: 14px;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.55;
	letter-spacing: 0.04em;
}

@media (any-hover: hover) {
	.top-news__heading a:hover,
	.top-news__heading a:focus-visible {
		opacity: 1;
		outline: none;
	}
}

@media (any-hover: hover) {
	.top-news__heading a:hover span::before,
	.top-news__heading a:focus-visible span::before {
		left: 103%;
	}
}

@media (any-hover: hover) {
	.top-news__heading a:hover span::after,
	.top-news__heading a:focus-visible span::after {
		left: 39%;
	}
}

.top-news__heading a span {
	display: block;
	position: relative;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--text-color-01);
}

.top-news__heading a span::before,
.top-news__heading a span::after {
	display: block;
	position: absolute;
	top: 50%;
	translate: 0 -50%;
	width: 11px;
	height: 11px;
	overflow: hidden;
	mask-position: center center;
	mask-repeat: no-repeat;
	mask-size: contain;
	mask-image: url(../../img/icon_arrow.svg);
	background-color: white;
	transition: all 0.3s ease-out;
	content: '';
}

.top-news__heading a span::before {
	left: 39%;
}

.top-news__heading a span::after {
	left: -28%;
}

.top-news__content {
	display: flex;
	flex-direction: column;
	gap: 23px;
	flex-grow: 1;
	margin-block-start: 17px;
}

.top-news__content section {
	display: contents;
}

.top-news__content section a {
	position: relative;
	display: flex;
	align-items: flex-start;
	gap: 12px;
	position: relative;
	padding-block-end: 23px;
	border-bottom: 1px solid rgba(49, 49, 49, 0.2);
}

@media (any-hover: hover) {
	.top-news__content section a:hover,
	.top-news__content section a:focus-visible {
		opacity: 1;
		outline: none;
	}
}

@media (any-hover: hover) {
	.top-news__content section a:hover::before,
	.top-news__content section a:focus-visible::before {
		scale: 1;
	}
}

@media (any-hover: hover) {
	.top-news__content section a:hover span,
	.top-news__content section a:focus-visible span {
		background: var(--gradation);
	}
}

@media (any-hover: hover) {
	.top-news__content section a:hover span::before,
	.top-news__content section a:focus-visible span::before {
		opacity: 1;
	}
}

@media (any-hover: hover) {
	.top-news__content section a:hover span::after,
	.top-news__content section a:focus-visible span::after {
		background: white;
	}
}

.top-news__content section a::before {
	display: block;
	position: absolute;
	bottom: -1px;
	left: 0;
	right: 0;
	width: 100%;
	height: 1px;
	background: var(--gradation);
	transform-origin: top left;
	scale: 0 1;
	transition: all 0.3s ease-out;
	content: '';
}

@media (any-hover: hover) {
	.top-news__content a:hover,
	.top-news__content a:focus-visible {
		outline: none;
		opacity: 1;
	}
}

.top-news__content section a time {
	flex-shrink: 0;
	width: 110px;
	font-weight: 400;
	font-size: 18px;
	font-family: var(--ff-en);
	line-height: 2;
	opacity: 0.3;
}

.top-news__content section a h3 {
	flex-grow: 1;
	margin-block-start: -2px;
	font-weight: 500;
	font-size: 18px;
	line-height: 2;
	letter-spacing: 0.05em;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.top-news__content section a span {
	flex-shrink: 0;
	position: relative;
	width: 40px;
	height: 40px;
	border-radius: 50%;
}

.top-news__content a span::before,
.top-news__content a span::after {
	display: block;
	position: absolute;
	content: '';
}

.top-news__content a span::before {
	inset: 0;
	border-radius: 50%;
	background: var(--gradation);
	opacity: 0;
	transition: all 0.3s ease-out;
}

.top-news__content a span::after {
	top: 15px;
	right: 14px;
	width: 11px;
	height: 11px;
	mask-position: center center;
	mask-repeat: no-repeat;
	mask-size: contain;
	mask-image: url(../../img/icon_arrow.svg);
	background: var(--gradation);
	transition: all 0.3s ease-out;
}

/*===============================
	PROMISE
================================*/
.top-promise {
	position: relative;
	padding-block: 139px 70px;
	background: url(../../img/top-promise_bg-min.webp) no-repeat bottom center / cover;
}

.top-promise__deco {
	position: absolute;
}

.top-promise__deco.-first {
	top: 230px;
	left: calc(50% - 700px);
	width: 296px;
}

.top-promise__deco.-second {
	top: 300px;
	left: calc(50% - 850px);
	width: 296px;
}

.top-promise__deco.-third {
	bottom: 350px;
	right: calc(50% - 700px);
	width: 247px;
}

.top-promise__deco.-fourth {
	bottom: 170px;
	right: calc(50% - 530px);
	width: 171px;
}

.top-promise__content > section {
	position: relative;
	display: flex;
	align-items: flex-start;
	gap: 54px;
}

.top-promise__content > section:nth-child(even) {
	flex-direction: row-reverse;
	margin-block-start: 137px;
}

.top-promise__heading {
	flex-shrink: 0;
	width: 300px;
}

.top-promise__content > section ul {
	position: relative;
	z-index: 2;
	display: flex;
	flex-grow: 1;
	flex-direction: column;
	gap: 23px;
}

.top-promise__content > section ul li {
	padding: 48px;
	border-radius: 12px;
	border: 1px solid rgba(0, 0, 0, 0.2);
	background: #fff;
}

.top-promise__content > section ul li > section h3 {
	position: relative;
	padding-inline-start: 39px;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.04em;
	text-box-trim: trim-both;
}

.top-promise__content > section ul li > section h3::before {
	position: absolute;
	top: 50%;
	left: 0;
	translate: 0 -50%;
	width: 30px;
	height: 30px;
	background: url(../../img/deco_circle-b-min.webp) no-repeat bottom center / cover;
	content: '';
}

.top-promise__content > section.-notPromise ul li > section h3::before {
	position: absolute;
	top: 50%;
	left: 0;
	translate: 0 -50%;
	width: 30px;
	height: 30px;
	background: url(../../img/deco_cross-b-min.webp) no-repeat bottom center / cover;
	content: '';
}

.top-promise__content > section ul li > section p {
	margin-block-start: 20px;
	font-size: 14px;
	line-height: 1.8;
	text-box-trim: trim-both;
}

.top-promise__foot {
	margin-block-start: 80px;
}

.top-promise__foot h2 {
	color: white;
	text-shadow: 0 0 8px var(--4, #e76c00);
	font-size: 32px;
	font-weight: 700;
	line-height: 1.62;
	letter-spacing: 0.04em;
	text-align: center;
	text-box-trim: trim-both;
}

.top-promise__button {
	width: 444px;
	margin-block-start: 30px;
	margin-inline: auto;
}

/*===============================
	MESSAGE
================================*/
.top-message {
	padding-block: 115px 107px;
}

.top-message__inner {
	max-width: calc(1055px + var(--pc-sidePadding) * 2);
}

.top-message__content {
	display: flex;
	flex-direction: row-reverse;
	gap: 97px;
	margin-block-start: 59px;
}

.top-message__content > div {
	flex-grow: 1;
}

.top-message__content > div p {
	font-size: 14px;
	line-height: 2;
	text-box-trim: trim-both;
}
.top-message__content > div p.copy{
	font-size: 22px;
	margin-bottom: 30px;
}

.top-message__name {
	margin-block-start: 45px;
	margin-inline-start: 11px;
	font-size: 18px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-align: right;
	text-box-trim: trim-both;
}

.top-message__name span {
	display: inline-block;
	margin-inline-start: 11px;
	font-size: 18px;
	font-weight: 300;
	font-family: var(--ff-en);
	opacity: 0.3;
}

.top-message__content figure {
	flex-shrink: 0;
}

.top-message__content figure img {
	border-radius: 12px;
	width: 355px;
	aspect-ratio: 355 / 484;
}

/*===============================
	FAQ
================================*/
.faq {
	padding-block: 106px 117px;
	background: url(../../img/faq_bg-min.webp) no-repeat center center / cover;
}

.faq__inner {
	max-width: calc(841px + var(--pc-sidePadding) * 2);
}

.faq__content {
	display: flex;
	flex-direction: column;
	gap: 66px;
	margin-block-start: 73px;
}

/*===============================
	QA
================================*/
.p-qa-box__summary {
	list-style: none;
}

.p-qa-box__summary::-webkit-details-marker,
.p-qa-box__summary::marker {
	display: none;
}

.p-qa-box__summary:focus-visible {
	outline: none;
	opacity: 0.7;
}

.p-qa-box__q {
	display: block;
	padding: 19px 30px;
	position: relative;
	border-radius: 0 12px 12px 12px;
	background: var(--accent-color);
	box-shadow: 0 0 10px 0 rgba(60, 43, 0, 0.06);
}

.p-qa-box__q::before {
	display: block;
	position: absolute;
	top: 0;
	left: calc(-58px - 17px);
	width: 58px;
	height: 58px;
	background: url(../../img/icon_q-min.webp) no-repeat center center / cover;
	content: '';
}

@media (any-hover: hover) {
	.p-qa-box__q:hover {
		cursor: pointer;
	}
}

.p-qa-box__q-text {
	color: white;
	font-size: 18px;
	font-weight: 600;
	line-height: 2;
	text-box-trim: trim-both;
	list-style: none;
}

.p-qa-box__content {
	margin-block-start: 32px;
}

.p-qa-box__a {
	position: relative;
	padding: 25px 31px;
	border-radius: 12px 0 12px 12px;
	background: white;
	box-shadow: 0 0 10px 0 rgba(60, 43, 0, 0.06);
}

.p-qa-box__a::before {
	display: block;
	position: absolute;
	top: 0;
	right: calc(-58px - 17px);
	width: 58px;
	height: 58px;
	background: url(../../img/icon_a-min.webp) no-repeat center center / cover;
	content: '';
}

.p-qa-box__a-text {
	font-size: 16px;
	font-weight: 600;
	line-height: 2;
	text-box-trim: trim-both;
}

/*************************** 03. form  ***********************/
.inquiry-box{
	border-radius:8px;
	overflow: hidden;
	border: 1px solid var(--color_border--table,#dcdcdc);
}
.inquiry-01 button,.inquiry-01 input,.inquiry-01 select,.inquiry-01 textarea{
	width:100%;
	padding:1em .5em;
}
.inquiry-01 th span{
	background-color:#999;
	color:#fff;
	padding:2px 5px;
	margin-right:5px;
	line-height:1.6;
}
.inquiry-01 th span.CF7_req{
	background-color:#E76C00;
}
.inquiry-01 th{
	font-size:14px;
	max-width:164px;
	vertical-align:middle;
	border-bottom:1px solid var(--color_border--table,#dcdcdc);
}
.inquiry-01 [type=submit]{
	background:#e76c00;
	color:#fff;
	font-weight:bold;
	font-size:30px;
	margin-top:20px;
	transition:0.5s;
}
.inquiry-01 [type=submit]:hover{
	opacity:0.5;
}
.inquiry-01 a{
	color:#0053ff;
}
/*===============================
   フォーム要素
================================*/
/* セレクトボックス */
.form-select {
	display: block;
	position: relative;
	width: 100%;
	font-size: 16px;
}

.form-select::before {
	display: block;
	z-index: 1;
	position: absolute;
	top: 14px;
	right: 12px;
	width: 7px;
	height: 7px;
	rotate: -45deg;
	border-bottom: 1px solid #222222;
	border-left: 1px solid #222222;
	content: '';
	opacity: 0.3;
}

.form-select__input {
	display: block;
	width: 100%;
	height: 35px;
	padding: 4px 13px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 4px;
	background: #f2f2f2;
	font-weight: 500;
	font-size: 14px;
	transition: all 0.3s ease;
	appearance: none;
}

.form-select__input::-webkit-input-placeholder {
	opacity: 0.3;
}

.form-select__input:-ms-input-placeholder {
	opacity: 0.3;
}

.form-select__input::-ms-input-placeholder {
	opacity: 0.3;
}

.form-select__input::placeholder {
	opacity: 0.3;
}

@media (any-hover: hover) {
	.form-select__input:hover {
		border: 1px solid var(--accent-color);
		opacity: 0.7;
	}
}

.form-select__input:focus-visible,
.form-select__input:active {
	border: 1px solid var(--accent-color);
	outline: none;
}

/* Contact Form 7用のラッパー */
.wpcf7-form-control-wrap:has(.wpcf7-select) {
	width: 100%;
}

/* テキスト入力フィールド */
.form-text {
	display: block;
	width: 100%;
	height: 35px;
	padding: 4px 13px !important;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 4px !important;
	background: #f2f2f2;
	font-weight: 500;
	font-size: 14px;
	transition: all 0.3s ease;
}

.form-text::-webkit-input-placeholder {
	opacity: 0.7;
}

.form-text:-ms-input-placeholder {
	opacity: 0.7;
}

.form-text::-ms-input-placeholder {
	opacity: 0.7;
}

.form-text::placeholder {
	opacity: 0.7;
}

@media (any-hover: hover) {
	.form-text:hover {
		border: 1px solid var(--accent-color);
		opacity: 0.7;
	}
}

.form-text:focus,
.form-text:active {
	border: 1px solid var(--accent-color);
	outline: none;
}

/* テキストエリア */
.form-textarea {
	display: block;
	width: 100%;
	height: 126px;
	padding: 8px 13px !important;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 4px !important;
	background: #f2f2f2;
	font-weight: 500;
	font-size: 14px;
	resize: none;
	transition: all 0.3s ease;
}

.form-textarea::-webkit-input-placeholder {
	opacity: 0.7;
}

.form-textarea:-ms-input-placeholder {
	opacity: 0.7;
}

.form-textarea::-ms-input-placeholder {
	opacity: 0.7;
}

.form-textarea::placeholder {
	opacity: 0.7;
}

@media (any-hover: hover) {
	.form-textarea:hover {
		border: 1px solid var(--accent-color);
		opacity: 0.7;
	}
}

.form-textarea:focus,
.form-textarea:active {
	border: 1px solid var(--accent-color);
	outline: none;
}

/*===============================
   フォームレイアウト
================================*/
/* フォームテーブル */
.form__table {
	display: flex;
	flex-direction: column;
	width: 100%;
	gap: 15px;
}

.form__table tbody {
	display: contents;
}

/* ボタンラッパー */
.form__buttonWrapper {
	width: 302px;
	margin-inline: auto;
	margin-block-start: 25px;
}

/* フォームボタン */
.form__button {
	text-box-trim: trim-both;
	width: 100%;
	height: 60px;
	border-radius: 4px !important;
	background: var(--text-color-01);
	color: #ffffff;
	font-weight: 700;
	font-size: 16px;
	line-height: 1.5;
	letter-spacing: 0.04em;
	text-align: center;
	transition: background 0.3s ease-out;
}

@media (any-hover: hover) {
	.form__button:hover {
		background: #666;
	}
}

.form__button:focus {
	outline: none;
}

.form__button:focus-visible {
	outline: none;
	background: #666;
}

/*===============================
   Contact Form 7関連
================================*/

/* フォームコントロール全般 */
.wpcf7-form-control-wrap {
	width: 100%;
}

/* スピナー非表示 */
.wpcf7-spinner {
	display: none;
}

/* バリデーションエラー */
.wpcf7-not-valid-tip {
	-webkit-margin-before: 4px;
	margin: 0;
	margin-block-start: 4px;
	padding: 0;
	border: none !important;
	color: #e25700;
	font-weight: 700;
	font-size: 14px;
}

/* フォーム送信エラー */
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output.wpcf7-response-output {
	-webkit-margin-before: 4px !important;
	margin: 0 !important;
	margin-block-start: 4px !important;
	padding: 0 !important;
	border: none !important;
	color: #e25700 !important;
	font-weight: 700;
	font-size: 14px;
	text-align: center !important;
}

/* レスポンス出力 */
.wpcf7-response-output {
	-webkit-margin-before: 10px !important;
	width: 100%;
	margin: 0 !important;
	margin-block-start: 10px !important;
	padding: 10px 16px !important;
	border: none !important;
	border-radius: 6px;
	color: #e25700 !important;
	font-weight: 700;
	font-size: 14px;
	text-align: center !important;
}

/*===============================
   フォームアイテム
================================*/
.form-item {
	display: flex;
	align-items: center;
	gap: 18px;
	width: 100%;
}

.form-item__head {
	flex-shrink: 0;
	width: 100px;
	margin-block-start: 0;
}

.form-item__body {
	width: 100%;
	flex-grow: 1;
}

.form-item.-start {
	align-items: flex-start;
}

.form-item.-start .form-item__head {
	margin-block-start: 10px;
}

/* フォームヘッド */
.form-head {
	display: flex;
	position: relative;
	align-items: center;
	gap: 12px;
}

.form-head__name {
	text-box-trim: trim-both;
	display: flex;
	align-items: center;
	font-weight: 800;
	font-size: 14px;
	line-height: 1.71;
	letter-spacing: 0.02em;
}

.form-head__label {
	display: inline-block;
	padding: 5px 6px;
	border-radius: 4px;
	background: #8e8e8e;
	color: #fff;
	font-weight: 700;
	font-size: 12px;
	line-height: 1;
}

.form-head__label.-required {
	background: #e25700;
}

.form-head__text {
	position: absolute;
	top: 40px;
	left: 0;
	font-size: 12px;
	line-height: 1.6;
}

/*************************** 04. 下層ページ  ***********************/
/*===============================
   FV
================================*/
.page-fv {
	position: relative;
	overflow: hidden;
	padding-block: 28px;
	background: url(../../img/service-fv_bg-min.webp) no-repeat bottom right / cover;
}

.page-fv__deco {
	position: absolute;
}

.page-fv__deco.-first {
	top: -300px;
	left: calc(50% - 572px);
	width: 437px;
}

.page-fv__deco.-second {
	bottom: -412px;
	left: calc(50% - 774px);
	width: 587px;
}

.page-fv__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.page-fv__content {
}

.page-fv__content h2 {
	flex-grow: 1;
	font-size: 52px;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: 0.03em;
	text-box-trim: trim-both;
}

.page-fv__content h2 span {
	background: var(--gradation);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.page-fv__content p {
	margin-block-start: 20px;
	font-weight: 500;
	font-size: 16px;
	line-height: 2;
	letter-spacing: 0.05em;
}

.page-fv__content ul {
	display: flex;
	position: relative;
	margin-block-start: 53px;
	padding: 20px 127px 20px 13px;
	border-radius: 12px;
	background: var(--gradation);
}

.page-fv__content ul::after {
	display: block;
	position: absolute;
	right: 0;
	bottom: 0;
	width: 160px;
	height: 198px;
	background: url(../../img/service-fv-min.webp) no-repeat bottom right / cover;
	content: '';
}

.page-fv__content ul li {
	padding: 19px 24px;
	border-right: 1px solid rgba(255, 255, 255, 0.5);
	color: white;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: 0.1em;
	text-align: center;
	text-box-trim: trim-both;
}

.page-fv__content ul li:last-child {
	border: none;
}

/*===============================
   コンタクトセクション
================================*/
.page-fv__contact {
	flex-shrink: 0;
	width: 485px;
	padding-block: 22px 35px;
	border-radius: 12px;
	border: 1px solid rgba(0, 0, 0, 0.2);
	background: white;
}

.page-fv__contact > div {
	padding-inline: 44px;
}

.page-fv__contactHead {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
}

.page-fv__contactHead > div {
	-webkit-transform: rotate(-11.535deg);
	text-box-trim: trim-both;
	display: -ms-grid;
	display: grid;
	place-content: center;
	aspect-ratio: 1/1;
	width: 70px;
	height: 70px;
	margin-block: calc((1em - 1lh) / 2);
	transform: rotate(-11.535deg);
	border-radius: 50%;
	background: var(--gradation);
	color: #ffffff;
	font-weight: 700;
	font-size: 17px;
	line-height: 1.17;
	letter-spacing: 0.03em;
	text-align: center;
	white-space: nowrap;
}

.page-fv__contactHead > h3 {
	font-weight: 700;
	font-size: 22px;
	line-height: 1.1;
	letter-spacing: 0.02em;
	text-box-trim: trim-both;
}

.page-fv__contactWrapper {
	margin-block-start: 9px;
}

.page-fv__contact > div > p {
	margin-block-start: 7px;
	font-weight: 600;
	font-size: 12px;
	line-height: 1.5;
	text-align: center;
}

/*===============================
   SUPPORT
================================*/
.service-support {
	padding-block: 80px 103px;
	background: url(../../img/service-support_bg-min.webp) no-repeat top right / cover;
}

.service-support__content {
	margin-block-start: 40px;
}

.service-support__content ul {
	display: flex;
	gap: 38px;
}

.service-support__content ul li {
	width: 100%;
	height: auto;
	min-height: 257px;
	overflow: hidden;
	border-radius: 12px;
	border: 1px solid rgba(0, 0, 0, 0.2);
	background: white;
}
.service-support__content ul li ul{
	flex-direction: column;
	gap:10px;
	width:100%;
}
.service-support__content ul li ul li{
	min-height: initial;
	padding: 4px 10px;
	font-size: 14px;
	background-color: #f5f5f5;
	border:none;
}
.service-support__content ul li section {
	display: contents;
}

.service-support__content ul li section h3 {
	padding-block: 7px 6px;
	background: var(--gradation);
	color: white;
	font-size: 26px;
	font-weight: 700;
	line-height: 1.6;
	letter-spacing: 0.04em;
	text-align: center;
	text-box-trim: trim-both;
}

.service-support__content ul li section div {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	padding-block-start: 16px;
}

.service-support__content ul li section div p {
	font-size: 20px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.04em;
	text-box-trim: trim-both;
	text-align: center;
}

.service-support__content ul li section div p.-before > span {
	font-size: 24px;
}

.service-support__content ul li section div p span.-color {
	color: var(--accent-color);
}

.service-support__content ul li section div p span.-big {
	font-size: 32px;
	display: inline-block;
	translate: 0 2px;
}

.service-support__content ul li section div p span.-color.-big {
}

.service-support__content ul li section div img {
	width: 119px;
}
/*===============================
   PRICE
================================*/
.price-box.service-support__content ul li section div{
	padding-left:20px;
	padding-right:20px;
	padding-bottom:20px;
}
.service-support__content ul li section div p.text02{
	font-size: 18px;
}
/*===============================
   ABOUT
================================*/
.service-about {
	position: relative;
	padding-block: 96px 85px;
}

.service-about__deco {
	position: absolute;
}

.service-about__deco.-first {
	top: 88px;
	right: calc(50% - 835px);
	width: 287px;
	rotate: 126deg;
}

.service-about__deco.-second {
	bottom: 330px;
	left: calc(50% - 844px);
	width: 420px;
	rotate: 53deg;
}

.service-about__content {
	display: flex;
	flex-direction: column;
	gap: 65px;
	padding: 75px;
	border-radius: 12px;
	border: 2px solid rgba(0, 0, 0, 0.15);
	background: #fff;
}

.service-about__content section {
	display: flex;
	flex-direction: column;
	gap: 28px;
}

.service-about__content section h3 {
	position: relative;
	padding-block-end: 15px;
	font-size: 28px;
	font-weight: 700;
	letter-spacing: 0.03em;
	text-box-trim: trim-both;
}

.service-about__content section h3::before,
.service-about__content section h3::after {
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	height: 2px;
	content: '';
}

.service-about__content section h3::before {
	width: 100%;
	background: var(--text-color-01);
	opacity: 0.2;
}

.service-about__content section h3::after {
	width: 100px;
	background: var(--gradation);
}

.service-about__content section h4 {
	color: var(--accent-color);
	font-size: 22px;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: 0.05em;
	text-box-trim: trim-both;
}

.service-about__content section p {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.8;
	letter-spacing: 0.05em;
	text-box-trim: trim-both;
}

.service-about__box {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
	gap: 15px;
}

.service-about__box li {
	/* display: grid; */
	place-content: center;
	height: 101px;
	padding: 10px 7px;
	border-radius: 12px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	background: #f6f6f6;
	text-align: center;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.5;
	text-box-trim: trim-both;
}

.service-about__list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.service-about__list li {
	position: relative;
	padding-inline-start: 23px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: 0.05em;
	text-box-trim: trim-both;
}

.service-about__list li::before {
	display: block;
	position: absolute;
	top: 5px;
	left: 0;
	width: 15px;
	height: 15px;
	background: url(../../img/icon_circle-mini-min.webp) no-repeat center center / cover;
	content: '';
}

/*===============================
   REASON
================================*/
.reason {
	overflow: hidden;
	position: relative;
	padding-block: 253px 117px;
}

.reason__deco {
	position: absolute;
}

.reason__deco.-first {
	bottom: -80px;
	right: calc(50% - 861px);
	width: 287px;
	rotate: 314deg;
}

.reason__deco.-second {
	top: 265px;
	right: calc(50% - 800px);
	width: 421px;
	rotate: -126deg;
	z-index: -1;
}

.reason__deco.-third {
	bottom: 500px;
	left: calc(50% - 794px);
	width: 287px;
	rotate: -53deg;
}

.reason__content {
	margin-block-start: 53px;
}

.reason.-reason {
	padding-block-start: 100px;
}

/*===============================
   MERIT
================================*/
.service-merit {
	padding-block: 119px 132px;
	background: url(../../img/service-merit_bg-min.webp) no-repeat top center / cover;
}

.service-merit__content {
	display: flex;
	flex-direction: column;
	gap: 128px;
}

.service-merit__content section {
}

.service-merit__headList {
	display: flex;
	justify-content: center;
	align-items: stretch;
	gap: 24px;
	margin-block-start: 50px;
}

.service-merit__headList li {
	width: 100%;
	position: relative;
	padding: 34px 27px;
	border-radius: 12px;
	border: 2px solid rgba(0, 0, 0, 0.1);
	background: #fff;
}

.service-merit__headList li section {
	display: contents;
}

.service-merit__headList li section span {
	display: grid;
	place-content: center;
	position: absolute;
	top: -13px;
	left: -13px;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: var(--gradation);
	color: white;
	font-family: var(--ff-en);
	font-size: 26px;
	font-weight: 400;
	line-height: 1;
	text-align: center;
}

.service-merit__headList li section h3 {
	background: var(--gradation);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.6;
	letter-spacing: 0.04em;
	text-align: center;
	text-box-trim: trim-both;
}

.service-merit__headList li section p {
	margin-block-start: 26px;
	font-size: 14px;
	font-weight: 400;
	line-height: 2;
	text-box-trim: trim-both;
}

.service-merit__footList {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-block-start: 50px;
	padding: 50px 30px 30px;
	border-radius: 12px;
	border: 2px solid rgba(0, 0, 0, 0.1);
	background: white;
}

.service-merit__footList > li {
	max-width: 1100px;
	margin-inline: auto;
}

.service-merit__footList > li > section > {
	display: contents;
}

.service-merit__footList > li > section > div {
	display: flex;
	align-items: center;
	gap: 7px;
}

.service-merit__footList > li > section > div span {
	background: var(--gradation);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-size: 26px;
	font-weight: 400;
	font-family: var(--ff-en);
	text-align: center;
	text-box-trim: trim-both;
}

.service-merit__footList > li > section > div h3 {
	font-size: 20px;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: 0.04em;
	text-box-trim: trim-both;
}

.service-merit__footList > li > section > ul {
	margin-block-start: 10px;
	padding-block-end: 20px;
	display: flex;
	flex-wrap: wrap;
	gap: 8px 4px;
	border-bottom: 1px dashed rgba(0, 0, 0, 0.4);
}

.service-merit__footList > li:last-child > section > ul {
	border: none;
}

.service-merit__footList > li > section > ul > li {
	position: relative;
	font-size: 14px;
	text-box-trim: trim-both;
}

.service-merit__footList > li > section > ul > li:last-child::after {
	display: none;
}

/*===============================
   COMPARE
================================*/
.service-compare {
	padding-block: 87px 50px;
	background: url(../../img/service-compare_bg-min.webp) no-repeat top center / cover;
}

.service-compare__inner {
	padding-inline: 30px;
}

.service-compare__content {
	overflow-x: auto;
}

.service-compare__content::-webkit-scrollbar {
	height: 7px;
}

.service-compare__content::-webkit-scrollbar-thumb {
	border-radius: 20px;
	background: #373737;
}

.service-compare__content::-webkit-scrollbar-track {
	border-radius: 20px;
	background-color: #cacaca;
}

.service-compare__wrapper {
	display: flex;
	align-items: stretch;
	gap: 13px;
	width: 1200px;
	padding-block: 50px;
	margin-inline: auto;
}

.service-compare__wrapper > div {
	flex-shrink: 0;
	width: 145px;
}

.service-compare__wrapper > div ul {
	margin-block-start: 81px;
}

.service-compare__wrapper > div ul li {
	display: grid;
	place-content: center;
	height: 85px;
	font-weight: 700;
	font-size: 18px;
	line-height: 1.55;
	letter-spacing: 0.04em;
	text-align: center;
	text-box-trim: trim-both;
	border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.service-compare__wrapper > div ul li:last-child {
	border-bottom: none;
}

.service-compare__wrapper > section {
	width: 100%;
	border-radius: 6px;
}

.service-compare__wrapper > section.-main {
	position: relative;
	margin-inline: 16px 7px;
}

.service-compare__wrapper > section.-main::before {
	display: block;
	position: absolute;
	inset: -6px;
	background: var(--gradation);
	border-radius: 12px;
	content: '';
}

.service-compare__wrapper > section > div {
	position: relative;
	z-index: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 11px;
	height: 81px;
	background: #e0e0e0;
	border-radius: 6px 6px 0 0;
}

.service-compare__wrapper > section.-main > div {
	background: transparent;
}

.service-compare__wrapper > section > div img {
	width: 130px;
}

.service-compare__wrapper > section > div h3 {
	font-size: 18px;
	font-weight: 700;
	line-height: 1.55;
	letter-spacing: 0.04em;
	text-align: center;
	text-box-trim: trim-both;
}

.service-compare__wrapper > section.-main > div h3 {
	color: white;
	text-align: left;
}

.service-compare__wrapper > section > ul {
	position: relative;
	z-index: 1;
	border: 2px solid #e0e0e0;
	border-top: none;
	border-radius: 0 0 6px 6px;
	background: white;
}

.service-compare__wrapper > section.-main > ul {
	border-color: transparent;
}

.service-compare__wrapper > section > ul li {
	display: flex;
	align-items: center;
	gap: 12px;
	position: relative;
	height: 85px;
	padding-inline: 26px;
}

.service-compare__wrapper > section > ul li::after {
	display: block;
	position: absolute;
	bottom: 0;
	left: 50%;
	translate: -50%;
	width: calc(100% - 18px);
	height: 1px;
	background: rgba(0, 0, 0, 0.2);
	content: '';
}

.service-compare__wrapper > section > ul li:last-child::after {
	display: none;
}

.service-compare__wrapper > section > ul li img {
	flex-shrink: 0;
	width: 36px;
}

.service-compare__wrapper > section > ul li p {
	font-size: 18px;
	font-weight: 500;
	line-height: 1.55;
	letter-spacing: 0.04em;
	text-box-trim: trim-both;
}

/*===============================
   FLOW
================================*/
.service-flow {
	position: relative;
	padding-block: 121px 81px;
}

.service-flow__deco {
	position: absolute;
}

.service-flow__deco.-first {
	top: 300px;
	left: calc(50% - 700px);
	width: 296px;
}

.service-flow__deco.-second {
	top: 370px;
	left: calc(50% - 850px);
	width: 296px;
}

.service-flow__inner {
	display: flex;
	gap: 56px;
	justify-content: space-between;
}

.service-flow__heading {
	flex-shrink: 0;
	width: 332px;
}

.service-flow__content ol {
	display: flex;
	flex-grow: 1;
	flex-direction: column;
	gap: 48px;
	width: 100%;
}

.service-flow__content ol li {
	position: relative;
	width: 100%;
	padding: 32px 37px;
	border-radius: 12px;
	border: 1px solid rgba(0, 0, 0, 0.2);
	background: white;
}

.service-flow__content ol li::before {
	display: block;
	position: absolute;
	top: -35px;
	left: 50%;
	translate: -50%;
	width: 60px;
	height: 20px;
	background: url(../../img/icon_arrow-under-min.webp) no-repeat top center / cover;
	content: '';
}

.service-flow__content ol li:first-child:before {
	display: none;
}

.service-flow__content ol li section {
	display: contents;
}

.service-flow__content ol li section > div {
	display: flex;
	align-items: center;
	gap: 17px;
}

.service-flow__number {
	display: flex;
	align-items: center;
	gap: 3px;
	background: var(--gradation);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-family: var(--ff-en);
	font-size: 30px;
	font-weight: 400;
	line-height: 1;
	text-box-trim: trim-both;
	text-transform: uppercase;
}

.service-flow__number > span {
	display: inline-block;
	font-size: 18px;
}

.service-flow__content ol li section > div > h3 {
	margin-block-start: -7px;
	font-weight: 700;
	font-size: 24px;
	line-height: 1.16;
	letter-spacing: 0.04em;
	text-box-trim: trim-both;
}

.service-flow__content ol li section > div > h3 > span {
	margin-left: 10px;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.16;
	letter-spacing: 0.04em;
}

.service-flow__content ol li section > p {
	margin-block-start: 20px;
	font-size: 14px;
	line-height: 1.8;
}
/*===============================
   DOWNLOAD
================================*/
.download-ttl{
    font-size:3rem;
    text-align:center;
    margin-bottom:5rem;
}
.download-page {
    display: flex;
    gap: 40px;
	margin-top:60px;
    flex-wrap: wrap;
    padding-bottom: 60px;
    align-items: stretch;
}
.download-left {
    flex: 1 1 50%;
    max-width: 50%;
    background:#fff;
    padding:30px 50px 40px;
    border-radius:10px;
    box-shadow: 0 .1875rem .375rem rgba(0, 0, 0, .16);
}
.download-page h1{
    font-size:24px;
}
.download-page h2{
    padding:14px 20px;
    background:#eee;
    border-left:.3125rem solid #ccc;
    font-size:20px;
    margin-bottom:10px;
}
.download-cat{
    color:#999;
    font-size:12px;
    font-weight:bold;
}
.download-image{
    margin-top:10px;
    margin-bottom:20px;
} 
.download-right {
    flex: 1 1 45%;
    max-width: 45%;
    background: #fff;
    box-shadow: 0 .1875rem .375rem rgba(0, 0, 0, .16);
    padding: 34px 30px;
    border-radius: 8px;
}
.download-heading{
    background:#f2f2f2;
    padding:20px;
    font-size:24px;
    margin-top:80px;
}
/* フォーム全体 */
.l-contact__list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* 各項目のラップ */
.l-contact__item {
    display: flex;
    flex-direction: column;
}

/* 見出し部分（ラベル） */
.l-contact__item-head {
    font-weight: bold;
    margin-bottom: 6px;
    font-size: 16px;
}

/* 必須・任意ラベル */
._required {
    color: #e63c02;
    font-size: 12px;
    margin-left: 6px;
}

._optional {
    color: #999;
    font-size: 12px;
    margin-left: 6px;
}

/* 入力欄全体 */
.l-contact__item-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* 共通の input, select, textarea スタイル */
.l-contact__item-body input[type="text"],
.l-contact__item-body input[type="tel"],
.l-contact__item-body input[type="email"],
.l-contact__item-body select,
.l-contact__item-body textarea {
    width: 100%;
    max-width: 100%;
    padding: 10px 14px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background-color: #fff;
    box-sizing: border-box;
    transition: border-color 0.2s;
}

.l-contact__item-body input:focus,
.l-contact__item-body select:focus,
.l-contact__item-body textarea:focus {
    outline: none;
    border-color: #e63c02;
}

/* Submitボタン */
.l-contact__submit {
    margin-top: 32px;
    text-align: center;
}
.l-contact__submit p{
    text-align:center;
}

.l-contact__submit input[type="submit"] {
    background-color: #e63c02;
    color: #fff;
    border: none;
    padding: 14px 40px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.l-contact__submit input[type="submit"]:hover {
    background-color: #c53000;
}
.form-annotation{
    font-size:14px;
    color:gray;
    margin-top:20px;
}
.wpcf7-spinner{
    position:absolute;
}
.post_content h2.contact-ttl{
    margin-top:30px!important;
    margin-bottom:10px;
}
.three-col .download-grid{
    grid-template-columns: repeat(3, 1fr); 
}
.download-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 24px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.download-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease;
    display: flex;
    flex-direction: column;
}

.download-card:hover {
    transform: translateY(-4px);
}

.download-thumb img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.download-meta {
    padding: 16px;
}

.download-meta h3 {
    font-size: 18px;
    margin: 0 0 10px;
    padding-left:0;
    padding-bottom:0;
}
.download-meta h3:before{
    display:none;
}

.download-intro {
    font-size: 14px;
    color: #555;
}

/*ホームページ制作事例*/
.hp-box{
	margin-top: 30px!important;
}
.hp-box li{
	font-size: 16px;
	font-weight: bold;
}
.hp-box li a{
	display: inline;
	color:#3d79d5;
}