:root {
	--container-lg: 1046px;
	--container-md: 1020px;
	--container-sm: 996px;
	--container-xs: 906px;
	--gutter: 16px;

	--radius-lg: 40px;
	--radius-md: 10px;

	--space-1: 8px;
	--space-2: 12px;
	--space-3: 16px;
	--space-4: 24px;
	--space-5: 32px;

	--ink: #383838;
	--ink-2: #707070;
	--paper: #fff;
	--pink: #fd5bb6;
	--sky: #52dcff;

	--gradation1: linear-gradient(135deg, rgba(82, 220, 255, 1) 0%, rgba(253, 91, 182, 1) 100%);
	--gradation2: linear-gradient(325deg, rgba(82, 220, 255, 1) 0%, rgba(253, 91, 182, 1) 100%);
}

@font-face {
	font-family: 'EXD_Sans';
	font-display: swap;
	font-style: normal;
	src: url('../font/EXD_Sans_Light.woff2') format('woff2');
	font-weight: 300;
}
@font-face {
	font-family: 'EXD_Sans';
	font-display: swap;
	font-style: normal;
	src: url('../font/EXD_Sans_Regular.woff2') format('woff2');
	font-weight: 500;
}
@font-face {
	font-family: 'EXD_Sans';
	font-display: swap;
	font-style: normal;
	src: url('../font/EXD_Sans_Bold.woff2') format('woff2');
	font-weight: 700;
}

html {
	font-size: 16px;
	scroll-behavior: smooth;
	scroll-padding-top: 120px;
}

body {
	margin: 0;
	font-family:
		'Noto Sans JP', 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans',
		Meiryo, sans-serif;
	line-height: 1.7;
	color: var(--ink);
	letter-spacing: 0.05em;
}

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

a {
	transition: all 0.3s;
}

:focus-visible {
	outline: 1px solid rgba(82, 220, 255, 1);
	outline-offset: 1px;
}

.container-lg {
	width: min(var(--container-lg), calc(100% - 32px));
	margin-inline: auto;
}

.container-md {
	width: min(var(--container-md), calc(100% - 32px));
	margin-inline: auto;
}

.container-sm {
	width: min(var(--container-sm), calc(100% - 32px));
	margin-inline: auto;
}

.container-xs {
	width: min(var(--container-xs), calc(100% - 32px));
	margin-inline: auto;
}

.c-skiplink {
	position: absolute;
	left: -9999px;
	top: 0;
}
.c-skiplink:focus {
	left: 16px;
	top: 16px;
	background: #fff;
	padding: 8px 12px;
}

.font-exd {
	font-family: 'EXD_Sans', sans-serif;
	font-optical-sizing: auto;
}

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

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

.sp-content {
	display: none;
}

.d-flex {
	display: flex;
}

.c-pink {
	color: var(--pink);
}

.gradient-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 30px;
	width: fit-content;
	position: relative;
	z-index: 0;
	background: transparent;
	border-radius: 18px;
	overflow: hidden;
	cursor: pointer;
	color: #fff;
	text-align: center;
	font-size: 20px;
	padding: 0.6em 1.3em 0.6em 2em;
}

.gradient-btn::before,
.gradient-btn::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
}

.gradient-btn::before {
	transition: all 0.6s;
	z-index: -1;
	background: var(--gradation1);
}

.gradient-btn::after {
	z-index: -2;
	background: var(--gradation2);
}

.gradient-btn:hover::before {
	opacity: 0;
}

/* =========================
MARK: Header
========================= */
/* ヘッダー固定 */
.l-header {
	position: sticky;
	top: 28px;
	left: 0;
	margin-inline: auto;
	background: rgba(255, 255, 255, 0.5);
	width: 95%;
	z-index: 50;
	backdrop-filter: blur(4px) brightness(110%);
	box-shadow: 0px 0px 19px rgba(0, 0, 0, 0.15);
	border-radius: 20px;
}

.l-header__inner {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-inline: 40px 12px;
}

.l-header__brand {
	display: flex;
	gap: 27px;
	align-items: center;
}

.l-header__nav {
	display: flex;
	align-items: center;
	padding: 12px 0;
}

.c-gnav {
	display: flex;
	align-items: center;
	gap: 2em;
	list-style: none;
	margin: 0;
	padding: 0;
}
.c-gnav a {
	display: flex;
	gap: 10px;
	text-decoration: none;
	color: #969696;
	font-weight: 400;
	text-transform: uppercase;
}

.c-gnav .btn {
	padding: 0.9em 1.4em;
	border-radius: 12px;
}

/* =========================
MARK: Hero
========================= */
.p-hero {
	position: relative;
	overflow: hidden;
	padding-top: 90px;
	z-index: 1;
}

.mv-copy img {
	margin-inline: auto;
}

#mv-illust {
	display: block;
	padding-top: 30px;
}

#mv-illust img {
	animation: shake-up 3.5s infinite ease-in-out;
}

@keyframes shake-up {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(11px);
	}
}

/* =========================
MARK: メインコンテンツ
========================= */
.sect-item {
	opacity: 0;
	transform: translateY(20px); /* 少し深めから浮かび上がらせる */
	transition:
		opacity 1.2s cubic-bezier(0.33, 1, 0.68, 1),
		transform 1.2s cubic-bezier(0.33, 1, 0.68, 1);
	will-change: opacity, transform;
}

/* 表示時 */
.section-root.is-active .sect-item {
	opacity: 1;
	transform: translateY(0);
}
.sect-title {
	transition-delay: 0.1s;
}
.sect-lead {
	transition-delay: 0.3s;
}
.sect-content {
	transition-delay: 0.5s;
}

.delay-item {
	transition-delay: calc(0.5s + (var(--i) * 0.2s));
}

/* 基本状態：アニメーションなしでも文字は見える */
.reveal-text {
	position: relative;
	display: inline-block;
	font-size: 2rem;
	color: currentColor; /* デフォルトの色 */
	line-height: 1.4;
}

.is-ready .reveal-text {
	overflow: hidden;
	color: transparent; /* テキストを透明にして矩形に備える */
}

.is-ready .reveal-text span {
	display: inline-block;
	opacity: 0;
}

/* 矩形の基本設定 */
.is-ready .reveal-text::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--sky);
	transform: scaleX(0);
	transform-origin: left;
	pointer-events: none; /* クリックを邪魔しない */
}

/* 発火状態（.is-active） */
.is-ready .reveal-text.is-active span {
	opacity: 1;
	transition: opacity 0.01s 0.6s; /* 矩形が伸びきった瞬間に出す */
}

.is-ready .reveal-text.is-active::after {
	animation: reveal-box 1.2s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

@keyframes reveal-box {
	0% {
		transform: scaleX(0);
		transform-origin: left;
	}
	50% {
		transform: scaleX(1);
		transform-origin: left;
	}
	50.1% {
		transform-origin: right;
	}
	100% {
		transform: scaleX(0);
		transform-origin: right;
	}
}

/* 動きを抑えたいユーザーへの配慮 */
@media (prefers-reduced-motion: reduce) {
	.is-ready .reveal-text::after {
		display: none;
	}
	.is-ready .reveal-text span {
		opacity: 1;
		transition: none;
	}
}

.page-content {
	background-image: url(../img/bg_gradation.png);
	background-repeat: no-repeat;
	background-position: top center;
	background-size: 145%;
	margin-top: -110px;
}

section.lead {
	padding-top: 170px;
}

.lead-text {
	font-size: 1.25rem;
	font-weight: 500;
	line-height: 2.8;
}

.worries {
	position: relative;
	background: #fff;
	box-shadow: 0 3px 19px rgb(0 0 0 / 0.14);
	border-radius: 160px 60px 160px 60px;
	margin-top: 50px;
	padding: 80px 95px;
	z-index: 1;
}

.worries h3 {
	font-size: 1.375rem;
	font-weight: 500;
	margin-bottom: 0.5em;
}

.worries h3 + p {
	font-weight: 500;
}

.worries .grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: auto;
	grid-column-gap: 29px;
	grid-row-gap: 0px;
	margin-top: 45px;
}

.worries h4 {
	font-weight: 500;
	margin-block: 0.6em;
}

.worries .btn-wrap {
	margin-top: 70px;
}

.worries .btn-wrap .btn {
	margin-inline: auto;
}

.section-heading {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: start;
	gap: 1rem;
}

.section-heading h2 {
	margin-bottom: 25px;
}

.section-heading .reveal-text.subtitle {
	color: #969696;
	font-size: 13px;
	font-family: 'EXD_Sans', 'Noto Sans JP';
	font-weight: 300;
}

.separator {
	display: block;
	width: 1.2em;
	height: 1px;
	background-color: #707070;
}

#about {
	position: relative;
	margin-top: 75px;
}

#about .section-heading::before {
	content: '';
	display: block;
	width: 737px;
	height: 737px;
	background-image: url(../img/about_bg.png);
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	top: -270px;
	left: -17%;
	z-index: -1;
}

#about .strengths {
	padding-left: 40px;
	margin-top: 20px;
	gap: 46px;
}

#about .strengths .strengths-summary {
	font-weight: 500;
	line-height: 2.8;
	padding-top: 20px;
}

#about .strengths .col-right {
	flex: 1;
}

#about .strengths .col-right h3 {
	font-size: 1.375rem;
	font-weight: 500;
}

#about .strengths .col-right .sect-content {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: auto;
	grid-column-gap: 23px;
	grid-row-gap: 0px;
	margin-top: 30px;
}

#about .strengths .col-right .sect-content .sect-item {
	position: relative;
	background: #fff;
	border-radius: 30px;
	box-shadow: 0 3px 19px rgb(0 0 0 / 0.14);
	padding: 60px 20px 25px;
}

#about .strengths .col-right .sect-content .sect-item h4 {
	display: grid;
	align-content: center;
	height: 2.5em;
	color: #00b6e5;
	font-weight: 500;
	line-height: 1.4;
	font-size: 1.125rem;
	margin-bottom: 13px;
}

#about .strengths .col-right .sect-content .sect-item .--num {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: -8px;
	left: 50%;
	transform: translateX(-50%);
	color: #fff;
	background: var(--sky);
	font-size: 1.25rem;
	font-weight: 300;
	border-radius: 50%;
	width: 51px;
	height: 51px;
}

.strengths-list {
	gap: 19px;
	margin-top: 42px;
}

.strengths-list h5 {
	background: #e6f5ff;
	color: var(--ink-2);
	border-radius: 10px;
	padding: 5px 10px;
	margin-bottom: 13px;
}

.strengths-list .d-flex {
	gap: 25px;
}

.list li {
	position: relative;
	padding-left: 1.2em;
}
.list li::before {
	content: '';
	display: block;
	background-color: var(--sky);
	width: 0.9em;
	height: 0.9em;
	border-radius: 50%;
	position: absolute;
	top: 0.5em;
	left: 0;
}

#plan {
	margin-top: 95px;
	margin-inline: 30px;
	padding-bottom: 66px;
	border-radius: 10px;
	background: #d0ecff;
	background: linear-gradient(
		0deg,
		rgba(208, 236, 255, 1) 0%,
		rgba(233, 246, 254, 1) 35%,
		rgba(247, 251, 253, 1) 100%
	);
}

#plan .section-heading {
	transform: translateY(-20px);
}

.plan-table .inner {
	display: flex;
	gap: 17px;
	font-size: 13px;
}

.plan-scroll {
	display: flex;
	gap: 17px;
	flex: 1;
	overflow-x: auto;
}

.plan-col {
	text-align: center;
	overflow: hidden;
	border-radius: 10px;
	width: min(24%, 190px);
}

.ttl01 {
	background: #e1edf2;
	display: grid;
	place-content: center;
	border-bottom: 2px solid #fff;
}

.plan .ttl01 {
	border-color: #f1f1f3;
}

.ttl01:last-child {
	border: none;
}

.ttl01 span {
	font-size: 11px;
}

.ttl01 h3 {
	font-size: 1.25rem;
}

.ttl02 {
	background: #f6f8f8;
	display: grid;
	place-content: center;
	border-bottom: 1px solid #fff;
}

.ttl02:last-child {
	border-bottom: 2px solid #fff;
}

.row-multi {
	display: flex;
	align-items: stretch;
}

.row-multi .item {
	flex: 1;
}

.row-multi .ttl01 {
	writing-mode: vertical-rl;
	letter-spacing: 0.3em;
	width: 2em;
	border-right: 1px solid #fff;
}

.plan-col .row {
	background: #ffffff;
	display: grid;
	place-content: center;
	border-bottom: 2px solid #f1f1f3;
}

.plan-col .row:last-child {
	border: none;
}

.plan-col .line01 {
	height: 4rem;
}
.plan-col .line04 {
	height: 4rem;
}
.plan-col .line02,
.plan-col .line03,
.plan-col .line05,
.plan-col .line06,
.plan-col .line07,
.plan-col .line08,
.plan-col .line09,
.plan-col .line10,
.plan-col .line11,
.plan-col .line12,
.plan-col .line13,
.plan-col .line14,
.plan-col .line15,
.plan-col .line16,
.plan-col .line17 {
	height: 1.8rem;
}

.row.line04 {
	font-size: 1.375rem;
	line-height: 1.3;
}
.row.line04 span {
	font-size: 14px;
}

.row.line02 {
	font-size: 16px;
}

.row.line05,
.row.line06,
.row.line07,
.row.line09,
.row.line10,
.row.line11,
.row.line12,
.row.line13,
.row.line14,
.row.line15 {
	border-bottom: 1px solid #f1f1f3;
}

.standard .ttl01 {
	background-color: #bae3f4;
	border-color: #fff;
}
.standard .row {
	background-color: #e1edf2;
	border-color: #fff;
}

.fukidashi {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #bae3f4;
	border-radius: 50em;
	text-align: center;
	font-size: 1.125rem;
	padding: 9px 35px 9px 15px;
	margin-top: 35px;
	gap: 29px;
}

.fukidashi::before {
	content: '';
	position: absolute;
	right: 28.8%;
	bottom: 100%;
	height: calc(25px / 2 * tan(60deg));
	width: 19px;
	clip-path: polygon(50% 0, 100% 100%, 0 100%);
	background: #bae3f4;
}

.option-table {
	margin-top: 40px;
}

.subheading {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 15px;
}

.subheading h3 {
	font-size: 1.875rem;
	color: #969696;
}

.table-scroll .table {
	width: 100%;
	font-size: 13px;
}

.table-scroll .table.--01 {
	border-top: 2px solid #d7d7d7;
}
.table-scroll .table.--03 {
	border-bottom: 2px solid #d7d7d7;
}

.table-scroll .table th {
	font-weight: 400;
	background: #e1edf2;
	text-align: center;
	border-top: 1px solid #d7d7d7;
	border-bottom: 1px solid #d7d7d7;
	border-right: 1px solid #d7d7d7;
	vertical-align: middle;
}

.table-scroll .table .vertical {
	width: 2.1em;
	letter-spacing: 0.1em;
	word-break: break-all;
	padding-inline: 5px;
}
.table-scroll .table .sub {
	background: #f6f8f8;
}

.table-scroll .table td {
	background: #fff;
	border-top: 1px solid #d7d7d7;
	border-bottom: 1px solid #d7d7d7;
	vertical-align: middle;
	line-height: 1.4;
	padding: 10px 15px;
}

.table-scroll .table .detail {
	border-right: 1px solid #d7d7d7;
	width: 55%;
}

.table-scroll .table .price {
	width: 28%;
}

#plan .btn-wrap {
	margin-top: 60px;
}

#plan .btn-wrap .btn {
	margin-inline: auto;
}

#plus {
	margin-top: 60px;
}

#plus .section-heading {
	margin-bottom: 55px;
}

#plus .lead {
	font-weight: 500;
	line-height: 2;
	margin-bottom: 3em;
}

.c-content-box {
	position: relative;
	background: #e6f5ff;
	border-radius: 10px;
	overflow: hidden;
	padding: 50px;
	margin-bottom: 2rem;
}

.c-content-box h3 {
	font-weight: 500;
	font-size: 25px;
	color: #fff;
	background: var(--sky);
	border-radius: 10px;
	padding: 0.45em 1em;
}

.c-content-box .list li::before {
	background-color: #ff95d0;
}

.plus-grid {
	position: relative;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: auto;
	grid-column-gap: 14px;
	grid-row-gap: 0px;
	margin-top: 74px;
}

.plus-items {
	position: relative;
	background: #fff;
	border-radius: 10px;
	padding: 18px 17px;
}

.plus-items::before {
	content: '';
	display: block;
	width: 36px;
	height: 36px;
	background-image: url(../img/icon_plus.svg);
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	bottom: calc(100% + 20px);
	left: 50%;
	transform: translateX(-50%);
}

.plus-items .item-heading h4 {
	display: grid;
	place-content: center;
	color: var(--pink);
	text-align: center;
	font-size: 1.25rem;
	font-weight: 500;
	line-height: 1.4;
	height: 3em;
}

#plus .case {
	font-size: 1.375rem;
	font-weight: 500;
}

#plus .d-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: auto;
	grid-column-gap: 46px;
	grid-row-gap: 0px;
	margin-top: 30px;
}

.c-content-box .example {
	position: absolute;
	top: 0;
	left: 0;
	background-color: var(--sky);
	color: #fff;
	font-weight: 500;
	border-radius: 0 0 10px 0;
	font-size: 1.25rem;
	padding: 7px 0.7em;
}

.d-grid .c-content-box {
	padding-top: 30px;
}

.d-grid .c-content-box p {
	font-weight: 500;
	font-size: 1.25rem;
	margin-inline: -1em;
}

.d-grid .c-content-box h3 {
	margin-top: 1.4em;
}

.d-grid .c-content-box ul {
	position: relative;
	margin-top: 74px;
}

.d-grid .c-content-box ul::before {
	content: '';
	display: block;
	width: 36px;
	height: 36px;
	background-image: url(../img/icon_plus.svg);
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	bottom: calc(100% + 20px);
	left: 50%;
	transform: translateX(-50%);
}

.d-grid .c-content-box li {
	background: #fff;
	border-radius: 10px;
	color: #fd5bb6;
	text-align: center;
	font-size: 1.25rem;
	margin-bottom: 13px;
	padding: 5px;
}

.d-grid .c-content-box li:last-child {
	margin-bottom: 0;
}

#plus .btn-wrap {
	margin-top: 30px;
}

#plus .btn-wrap .btn {
	margin-inline: auto;
}

#flow {
	position: relative;
	margin-top: 115px;
	padding-bottom: 128px;
	border-radius: 160px 160px 0 0;
	background: #d0ecff;
	background: linear-gradient(
		0deg,
		rgba(208, 236, 255, 1) 0%,
		rgba(233, 246, 254, 1) 35%,
		rgba(247, 251, 253, 1) 100%
	);
}

#flow .inner {
	position: relative;
}

#flow .section-heading {
	transform: translateY(-20px);
}

.flow-circle {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	z-index: 0;
}

.flow-circle img {
	position: absolute;
	width: max(490px, 50%);
	bottom: -7%;
	right: -15%;
	animation: rotate 60s linear infinite;
}

@keyframes rotate {
	0% {
		transform: rotate(0);
	}
	100% {
		transform: rotate(-360deg);
	}
}

#flow .container-lg .inner {
	background: #0007ff;
	background: linear-gradient(0deg, rgba(0, 7, 255, 0.03) 0%, rgba(150, 219, 255, 0.3) 100%);
	border-radius: 80px;
	padding: 60px 50px 120px 50px;
	margin-top: 20px;
}

#flow .container-lg .inner p {
	max-width: 48%;
	margin-left: auto;
	margin-top: 35px;
}

#flow .container-lg .flow-outline {
	padding-inline: 40px;
}

.flow-list {
	position: relative;
	display: grid;
	gap: 0 5%;
	grid-template-columns: 1fr 1fr;
	margin-top: -120px;
}

.flow-item {
	background-color: #fff;
	border-radius: 60px;
	height: fit-content;
	padding: 30px 45px 50px 45px;
	box-shadow: 0 0 19px rgb(215 215 215 / 0.16);
}

.flow-item:nth-child(odd) {
	margin-top: -40px;
}

.flow-item:nth-child(even) {
	margin-top: 20%;
}

.flow-num {
	position: relative;
	display: inline-block;
	font-size: 60px;
	color: #707070;
	line-height: 1.3;
	padding-inline: 3px;
}
.flow-num::after {
	content: '';
	display: block;
	height: 7px;
	width: 100%;
	background: #52dcff;
	background: linear-gradient(90deg, rgba(82, 220, 255, 1) 0%, rgba(208, 236, 255, 1) 100%);
	border-radius: 50em;
	position: absolute;
	bottom: 0;
	left: 0;
}

.flow-heading {
	margin-top: 1.2em;
}

.flow-heading h4 {
	font-size: 1.375rem;
	font-weight: 500;
	margin-bottom: 10px;
}

.flow-heading p {
	text-align: center;
	background: #ebfbff;
	background: linear-gradient(135deg, rgba(235, 251, 255, 1) 0%, rgba(208, 236, 255, 1) 100%);
	padding: 5px;
}

.flow-summary {
	margin-top: 15px;
}

.flow-summary ul {
	margin-top: 1em;
}

.flow-item .point {
	display: flex;
	align-items: center;
	gap: 20px;
	border-radius: 8px;
	background: #ebfbff;
	background: linear-gradient(135deg, rgba(235, 251, 255, 1) 0%, rgba(208, 236, 255, 1) 100%);
	padding: 18px 15px;
	margin-top: 1.3em;
}

.flow-item .point .ttl {
	writing-mode: vertical-rl;
	text-align: center;
	font-size: 13px;
}

.flow-item .point p:not(.ttl) {
	flex: 1;
	font-size: 14px;
	letter-spacing: normal;
}

.flow-item.--05 ul {
	margin-bottom: 1.4rem;
}

.flow-item.--05 ul:nth-of-type(2) {
	margin-top: 0;
	flex-wrap: wrap;
	column-gap: 1em;
}

.flow-list .btn-wrap {
	justify-self: center;
	margin-top: 100px;
}

#faq {
	padding-block: 100px 115px;
}

#faq .inner {
	position: relative;
	background: #fff;
	box-shadow: 0 3px 19px rgb(0 0 0 / 0.14);
	border-radius: 160px 60px 160px 60px;
	margin-top: 50px;
	padding: 130px 105px 100px 105px;
	z-index: 1;
}

#faq .section-heading {
	flex-direction: row;
	align-items: center;
}

#faq .section-heading h2 {
	color: #969696;
	font-size: 30px;
	margin-bottom: 0;
	letter-spacing: 0.15em;
}

.ac-wrap {
	position: relative;
	margin-top: 55px;
}

.ac-wrap::before,
.ac-wrap::after {
	content: '';
	display: block;
	height: 2px;
	position: absolute;
	bottom: 0;
	left: 0;
}
.ac-wrap::before {
	width: 100%;
	background: #d7d7d7;
}
.ac-wrap::after {
	width: 60px;
	background: #9bc1cb;
}

/* ========================
MARK: アコーディオン
========================= */

summary {
	display: block;
	&::-webkit-details-marker {
		display: none;
	}
}

.accordion-faq {
	padding-block: 25px;
	position: relative;
}

.accordion-faq::before,
.accordion-faq::after {
	content: '';
	display: block;
	height: 2px;
	position: absolute;
	top: 0;
	left: 0;
}
.accordion-faq::before {
	width: 100%;
	background: #d7d7d7;
}
.accordion-faq::after {
	width: 60px;
	background: #9bc1cb;
}

.details-summary {
	position: relative;
	display: flex;
	gap: 10px;
	cursor: pointer;
	padding-right: 40px;
}

.ac-num {
	display: grid;
	place-content: center;
	align-items: start;
	color: #fff;
	background-image: url(../img/faq_q.svg);
	background-repeat: no-repeat;
	background-position: top center;
	background-size: contain;
	width: 60px;
	height: 40px;
	font-size: 15px;
	padding-bottom: 3px;
}

.faq-detail .ac-num {
	background-image: url(../img/faq_a.svg);
}

.details-summary p {
	padding-top: 4px;
	flex: 1;
}

.accordion-btn {
	position: absolute;
	right: 15px;
	top: 1em;
	width: 12px;
	height: 12px;
}

.accordion-btn::before,
.accordion-btn::after {
	content: '';
	display: block;
	background: #9bc1cb;
	position: absolute;
}

.accordion-btn::before {
	width: 100%;
	height: 2px;
	top: calc(50% - 1px);
	left: 0;
}

.accordion-btn::after {
	height: 100%;
	width: 2px;
	top: 0;
	left: calc(50% - 1px);
	transition: 0.2s;
}

/* is-openedクラスが付与されたときのスタイル */
details.is-opened .accordion-btn::after {
	height: 2px;
	top: calc(50% - 1px);
}

/* --------アコーディオンの中身のスタイル-------- */
.details-content {
	overflow: hidden;
}

.faq-detail {
	padding-right: 40px;
	padding-top: 10px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.faq-detail p {
	font-size: 14px;
	line-height: 1.8;
	flex: 1;
}

#form {
	position: relative;
	margin-top: 20px;
	padding-bottom: 128px;
	border-radius: 160px;
	background: #d0ecff;
	background: linear-gradient(0deg, rgba(208, 236, 255, 1) 0%, rgba(232, 246, 254, 1) 100%);
}

#form .section-heading {
	transform: translateY(-20px);
}

#form .inner {
	gap: 40px;
	margin-top: 30px;
	align-items: start;
}

#form .col-left {
	border-radius: 40px;
	background: #fff;
	flex: 1;
	padding: 75px 45px 0 45px;
}

#form .col-left .lead {
	font-weight: 500;
	line-height: 2.2;
}

#form .col-left dl {
	margin-top: 1em;
	margin-bottom: 30px;
}

#form .col-left dt {
	font-weight: 500;
	background: #000;
	background: #e6f5ff;
	font-size: 1.25rem;
	letter-spacing: 0.15em;
	padding: 4px 10px;
	margin-bottom: 12px;
}

#form .col-left .notice {
	text-indent: -1em;
	padding-left: 1em;
}
#form .col-left .notice:last-of-type {
	margin-top: 5px;
}

.form-illust {
	margin-inline: -25px;
	transform: translateY(55px);
}

.form-illust img {
	animation: shake-up02 3.5s infinite ease-in-out;
}

@keyframes shake-up02 {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(8px);
	}
}

#form .forms {
	max-width: 453px;
}

.smf-item__label__text {
	display: inline-block;
	position: relative;
	margin-bottom: 0.5em;
}

.wp-block-snow-monkey-forms-item.smf-item {
	margin-bottom: 1.2em;
}

#form .smf-item__label__text {
	display: block;
}

.smf-item:has([data-validations~='required']) .smf-item__label__text::after {
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	content: '必須';
	font-size: 0.75rem;
	color: #fff;
	background: #d33d7c;
	border-radius: 3px;
	width: 3em;
	text-align: center;
}

#form .smf-select-control {
	width: 100%;
}

#form input.smf-text-control__control {
	border-color: #cccccc;
	border-radius: 2px;
	width: 100%;
	font-size: 14px;
	padding: 0.6rem 1rem;
}

#form textarea.smf-textarea-control__control {
	border-color: #cccccc;
	border-radius: 10px;
	width: 100%;
	font-size: 14px;
	padding: 0.6rem 1rem;
}

#form select.smf-select-control__control {
	border-color: #cccccc;
	border-radius: 10px;
	width: 100%;
	font-size: 14px;
	padding: 0.6rem 1rem;
}

#form input::placeholder,
#form textarea::placeholder {
	color: #cccccc;
}

.form-notice {
	font-size: 12px;
	text-indent: -1em;
	padding-left: 1em;
	margin-top: 5px;
	letter-spacing: normal;
}

.disclaimer {
	background: #f6f8f8;
	border: 1px solid #cccccc;
	padding: 1.2rem 1.3rem;
	max-height: 116px;
	overflow-y: scroll;
	font-size: 13px;
	border-radius: 10px;
}

.acceptance {
	margin-block: 1.3em 1.5em;
}

.acceptance input.consent {
	position: relative;
	border-radius: 0;
	border: 2px solid #d7d7d7;
	background: #fff;
	height: 1.2em;
	width: 1.2em;
}

.acceptance input.consent:checked {
	background-color: var(--pink);
}

.acceptance input.consent:checked:before {
	content: '';
	display: block;
	position: absolute;
	visibility: visible;
}
.acceptance input.consent:before {
	border-color: var(--_color-white);
	border-style: solid;
	border-width: 0 2px 2px 0;
	height: 8px;
	left: calc(50% - 3px);
	margin: 0 !important;
	top: calc(50% - 5px);
	transform: rotate(45deg);
	visibility: hidden;
	width: 6px;
}

.acceptance .item-label {
	font-size: 15px;
}

.acceptance .item-label a {
	color: var(--pink);
}

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

.smf-action .smf-button-control__control {
	border: none;
	border-radius: 50em;
	font-size: 14px;
	padding: 0.3em 2.5em;
	background: var(--pink);
	color: #fff;
}

.snow-monkey-forms-turnstile {
	display: flex;
	justify-content: end;
	margin-top: 3em;
}

.snow-monkey-form[data-screen='confirm'] .smf-placeholder {
	background: #fff;
	color: #888;
	padding: 0.5em 1em;
	font-size: 14px;
	border-radius: 5px;
}

.snow-monkey-form[data-screen='confirm'] .acceptance {
	pointer-events: none;
	filter: grayscale(1);
}

.smf-complete-content h2 {
	font-weight: 500;
	font-size: 1.25rem;
	margin-bottom: 1em;
}

/* ========================
MARK: Footer
========================= */
.l-footer {
	position: relative;
	padding-block: 62px 60px;
}

.l-footer .d-flex {
	justify-content: space-between;
	align-items: center;
}

.l-footer .recruit {
	display: flex;
	align-items: stretch;
	background: #e6f5ff;
	background: linear-gradient(125deg, rgba(230, 245, 255, 1) 0%, rgba(252, 237, 250, 1) 100%);
	border-radius: 50em;
	padding: 1rem 2.5rem 1rem 1rem;
	gap: 20px;
}

.recruit-ttl {
	display: grid;
	place-content: center;
	background: #fff;
	border-radius: 50em;
	padding: 10px 1.8em;
}

.recruit-ttl h4 {
	font-weight: 500;
	font-size: 18px;
	letter-spacing: 0.3em;
}

.recruit-detail {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 35px;
	padding-block: 5px;
}

.recruit-detail p {
	font-size: 17px;
	letter-spacing: 0.1em;
}

.arrow {
	position: relative;
	border: 1px solid #707070;
	background: #fff;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	overflow: hidden;
	line-height: 1;
}

.arrow .a-before,
.arrow .a-after {
	position: absolute;
	top: calc(50% - 6px);
	right: 20%;
	animation-fill-mode: forwards;
	animation-duration: 0.2s;
}
.arrow .a-after {
	transform: translateX(-150%);
}
.recruit:hover .arrow .a-before {
	animation-name: transformRightLeft; /* 修正: hover時のアニメーションを指定 */
	animation-delay: 0s;
}
.recruit:hover .arrow .a-after {
	animation-name: transformLeftRight; /* 修正: hover時のアニメーションを指定 */
	animation-delay: 0.2s;
}

@keyframes transformLeftRight {
	0% {
		transform: translateX(-150%);
	}
	100% {
		transform: translateX(0);
	}
}
@keyframes transformRightLeft {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(150%);
	}
}

.footer-link {
	display: flex;
	gap: 30px;
}

.link-external {
	display: block;
	font-size: 14px;
}

.link-external::after {
	content: '';
	display: inline-block;
	background-image: url(../img/icon_external.svg);
	background-repeat: no-repeat;
	background-size: contain;
	width: 14px;
	height: 10px;
	margin-left: 4px;
}

.l-footer__copyright {
	font-size: 14px;
	margin-top: 17px;
}

/* =========================
MARK: Responsive
========================= */
@media (max-width: 900px) {
}

@media (max-width: 720px) {
	.pc-content {
		display: none !important;
	}
	.sp-content {
		display: block;
	}

	.gradient-btn {
		font-size: 15px;
		gap: 25px;
	}

	.gradient-btn img {
		width: 20px;
	}

	/* =========================
	MARK: Header
	========================= */
	.sp-nav {
		position: relative;
	}

	/* トグルボタンは常にクリックできるよう最前面へ */
	.c-navToggle {
		position: fixed;
		top: 10px;
		right: 10px;
		width: 50px;
		height: 50px;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		row-gap: 5px;
		border: 0;
		background: rgba(255, 255, 255, 0.5);
		backdrop-filter: blur(4px) brightness(110%);
		box-shadow: 0px 0px 19px rgba(0, 0, 0, 0.15);
		border-radius: 50%;
		z-index: 1100;
	}

	.u-visuallyHidden {
		position: absolute !important;
		width: 1px;
		height: 1px;
		padding: 0;
		margin: -1px;
		overflow: hidden;
		clip: rect(0, 0, 0, 0);
		white-space: nowrap;
		border: 0;
	}

	.menu-button__line,
	.menu-button::before,
	.menu-button::after {
		content: '';
		flex-shrink: 0;
		display: block;
		width: 17px;
		height: 2px;
		background: #707070;
		border-radius: 50em;
		transition:
			transform 0.3s,
			opacity 0.3s;
		will-change: opacity;
	}

	.is-nav-open .menu-button .menu-button__line {
		opacity: 0;
	}

	.is-nav-open .menu-button::before {
		transform: translateY(7px) rotate(-40deg);
		width: 20px;
	}

	.is-nav-open .menu-button::after {
		transform: translateY(-7px) rotate(40deg);
		width: 20px;
	}

	/* ハンバーガー（オフキャンバス） */
	nav.hamburger {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		transform: translateY(-100%);
		transition: transform 0.28s ease;
		z-index: 1000;
		background: #ffffff;
		background: linear-gradient(
			160deg,
			rgba(255, 255, 255, 0.96) 0%,
			rgba(218, 237, 253, 0.96) 54%,
			rgba(253, 239, 247, 0.96) 100%
		);
		overflow: auto;
		overscroll-behavior: contain;
		-webkit-overflow-scrolling: touch;
	}

	/* 開いた */
	html.is-nav-open nav.hamburger {
		transform: translateY(0%);
	}

	/* 背景オーバーレイ（実体は擬似要素） */
	html.is-nav-open::before {
		content: '';
		position: fixed;
		inset: 0;
		background: none;
		z-index: 15;
	}

	html.is-nav-open,
	html.is-nav-open body {
		overflow: hidden;
	}

	#hamburgerNav {
		padding-inline: min(2%, 30px);
	}

	.l-header__navInner {
		height: 100%;
	}

	.l-header__navInner .hamburger_inner {
		display: flex;
		align-items: start;
		flex-direction: column;
		gap: 45px;
		padding-left: 20%;
		padding-block: 100px;
	}

	#hamburgerNav .c-navToggle {
		position: absolute;
		top: 60px;
		right: 0;
		transform: translateY(0);
	}

	#hamburgerNav .c-gnav {
		flex-direction: column;
		align-items: start;
		gap: 1.6em;
	}

	#hamburgerNav .c-gnav a {
		font-size: 1.625rem;
		color: #383838;
	}

	#hamburgerNav .to-contact {
		margin-top: 10px;
	}

	#hamburgerNav .gradient-btn {
		font-size: 15px;
		font-weight: 400;
		padding: 0.6em 1.3em 0.6em 2em;
	}

	#hamburgerNav .c-subnav {
		line-height: 2.7;
	}

	#hamburgerNav .link-external {
		font-size: 1rem;
	}
	#hamburgerNav .link-external::after {
		width: 18px;
		height: 13px;
	}

	/* =========================
	MARK: MV
	========================= */
	.p-hero > .container-sm {
		display: flex;
		flex-direction: column-reverse;
	}

	.sp-brand img {
		margin-inline: auto;
	}

	.mv-copy {
		margin-top: 30px;
	}

	/* =========================
	MARK: メインコンテンツ
	========================= */
	.page-content {
		margin-top: 30px;
		border-radius: 80px 80px 0 0;
		background: #ffffff;
		background: linear-gradient(0deg, rgba(255, 255, 255, 0) 98%, rgba(230, 245, 255, 1) 100%);
		overflow-x: hidden;
	}

	section.lead {
		padding-top: 90px;
	}

	.lead-text {
		font-size: 18px;
		line-height: 2;
	}

	.worries {
		border-radius: 80px 30px 80px 30px;
		margin-top: 35px;
		padding: 80px 20px;
	}

	.worries h3 {
		font-size: 1.175rem;
		margin-bottom: 1em;
	}

	.worries h3 + p {
		line-height: 2.2em;
	}

	.worries .grid {
		grid-template-columns: repeat(2, 1fr);
		grid-column-gap: 10px;
		grid-row-gap: 40px;
		margin-top: 35px;
	}

	.worries h4 {
		font-size: 14px;
	}

	.worries p {
		font-size: 14px;
		line-height: 1.9;
	}

	#about .section-heading::before {
		left: -50%;
		top: -380px;
	}

	.section-heading {
		padding-left: 25px;
	}

	#about .strengths {
		flex-direction: column;
		padding-left: 0;
		gap: 100px;
	}

	#about .strengths > .col-left {
		padding-left: 25px;
	}

	#about .strengths .strengths-summary {
		padding-top: 0px;
	}

	#about .strengths .col-right .sect-content {
		grid-template-columns: repeat(1, 1fr);
		grid-column-gap: 0;
		grid-row-gap: 30px;
	}

	#about .strengths .col-right .sect-content .sect-item {
		margin-left: 20px;
		padding: 15px 20px 15px 3em;
	}

	#about .strengths .col-right .sect-content .sect-item .--num {
		top: 50%;
		left: -18px;
		transform: translateY(-50%);
	}

	#about .strengths .col-right .sect-content .sect-item h4 {
		height: auto;
		margin-bottom: 5px;
	}

	#about .strengths .col-right .sect-content .sect-item p {
		font-size: 14px;
	}

	.strengths-list {
		flex-direction: column;
		padding-inline: 20px;
		gap: 30px;
	}

	.strengths-list .d-flex {
		gap: 0;
		flex-direction: column;
	}

	#plan {
		margin-inline: 0;
		border-radius: 0;
		padding-bottom: 50px;
	}

	.sp-guide {
		width: calc(51% - 10px);
		margin-left: auto;
	}

	.sp-guide p {
		color: #969696;
		font-size: 15px;
		position: relative;
		padding-bottom: 0.4em;
		margin-bottom: 1.5em;
	}
	.sp-guide p:before,
	.sp-guide p:after {
		content: '';
		position: absolute;
		right: 0;
		height: 1px;
		background: #969696;
	}

	.sp-guide p:before {
		width: 100%;
		top: 100%;
	}

	.sp-guide p:after {
		top: 100%;
		width: 12px;
		transform: rotate(35deg);
		transform-origin: right center;
	}

	.plan-table .inner {
		gap: 10px;
		font-size: 12px;
	}

	.plan-col {
		width: 49%;
		min-width: 170px;
	}

	.plan-scroll {
		gap: 10px;
	}

	.ttl01 span {
		font-size: 10px;
	}

	.fukidashi {
		flex-direction: column;
		border-radius: 23px;
		padding: 15px 10px;
		gap: 10px;
		font-size: 1rem;
	}

	.fukidashi::before {
		right: 50%;
		bottom: calc(100% - 1px);
		transform: translateX(50%);
		height: calc(20px / 2 * tan(60deg));
		width: 25px;
	}

	.subheading {
		flex-direction: column;
		align-items: start;
		gap: 3px;
	}

	.table-scroll {
		overflow-x: scroll;
	}

	.table-scroll .table {
		width: 100%;
		min-width: 920px;
		border-collapse: collapse;
	}

	#plus .section-heading {
		margin-bottom: 40px;
	}

	#plus .lead {
		padding-left: 25px;
	}

	.c-content-box {
		padding: 20px 20px 25px 20px;
	}

	.c-content-box h3 {
		font-size: 20px;
		padding: 0.3em 1em;
	}

	.plus-grid {
		grid-template-columns: repeat(2, 1fr);
		grid-column-gap: 10px;
		grid-row-gap: 18px;
		margin-top: 60px;
	}

	.plus-grid::before {
		content: '';
		display: block;
		width: 36px;
		height: 36px;
		background-image: url(../img/icon_plus.svg);
		background-repeat: no-repeat;
		background-size: contain;
		position: absolute;
		bottom: calc(100% + 10px);
		left: 50%;
		transform: translateX(-50%);
	}

	.plus-items::before {
		content: none;
	}

	.plus-items {
		padding: 10px 10px 30px 10px;
	}

	.plus-items .item-heading h4 {
		font-size: 1.125rem;
	}

	.plus-items .item-heading {
		margin-bottom: 10px;
	}

	.plus-items .list li {
		font-size: 14px;
		letter-spacing: 0;
	}

	#plus .d-grid {
		margin-top: 20px;
		grid-template-columns: repeat(1, 1fr);
	}

	.d-grid .c-content-box {
		padding-top: 40px;
	}

	.d-grid .c-content-box ul {
		margin-top: 60px;
	}

	.d-grid .c-content-box ul::before {
		bottom: calc(100% + 10px);
	}

	.d-grid .c-content-box h3 {
		margin-top: 1.2em;
	}

	#plus .btn-wrap {
		margin-top: 10px;
	}

	#flow {
		margin-top: 80px;
		padding-bottom: 140px;
		border-radius: 80px 80px 0 0;
	}

	#flow .container-lg .inner {
		border-radius: 40px;
		padding: 45px 40px 40px 40px;
		margin-top: 20px;
	}

	.flow-list {
		margin-top: 50px;
		grid-template-columns: repeat(1, 1fr);
		grid-row-gap: 35px;
	}

	.flow-item:nth-child(odd) {
		margin-top: 0;
	}

	.flow-item:nth-child(even) {
		margin-top: 0;
	}

	#flow .container-lg .inner p {
		max-width: 85%;
		margin-inline: auto;
		margin-top: 30px;
	}

	#flow .container-lg .flow-outline {
		padding-inline: 0;
	}

	#flow .container-lg .flow-outline ul {
		display: grid;
		grid-template-columns: repeat(1, 1fr);
		grid-row-gap: 20px;
	}

	#flow .container-lg .flow-outline li {
		display: flex;
		align-items: center;
		background: #52dcff;
		background: linear-gradient(120deg, rgba(82, 220, 255, 1) 0%, rgba(0, 186, 255, 1) 100%);
		color: #fff;
		border-radius: 9px;
		padding: 9px 20px;
	}

	#flow .container-lg .flow-outline li .font-exd {
		display: block;
		width: 2.5em;
		font-size: 20px;
	}

	#flow .container-lg .flow-outline li .main {
		display: block;
		text-align: center;
		flex: 1;
		font-size: 18px;
	}

	.flow-item {
		display: flex;
		flex-direction: column;
		align-items: center;
		border-radius: 30px;
		padding: 30px 20px 50px 20px;
	}

	.flow-heading,
	.flow-summary,
	.point {
		width: 100%;
	}

	.flow-heading h4 {
		text-align: center;
	}

	.flow-summary {
		letter-spacing: normal;
	}

	.flow-summary p span {
		font-weight: 500;
	}

	.flow-list .btn-wrap {
		margin-top: 30px;
	}

	.flow-circle img {
		bottom: -4%;
	}

	#faq {
		padding-block: 10px 65px;
	}

	#faq .inner {
		border-radius: 80px 30px 80px 30px;
		padding: 60px 25px 90px 25px;
	}

	#faq .section-heading {
		flex-direction: column;
		align-items: center;
		padding-left: 0;
		gap: 10px;
	}

	.faq-detail {
		align-items: start;
	}

	.faq-detail .ac-num {
		margin-top: 0.8em;
	}

	#form {
		border-radius: 0;
	}

	#form .inner {
		flex-direction: column;
		gap: 70px;
		margin-top: 10px;
	}

	#form .col-left {
		padding: 55px 40px 0 40px;
	}

	#form .col-left dl {
		margin-top: 2em;
		margin-bottom: 20px;
	}

	.form-illust {
		margin-inline: -25px;
		transform: translateY(25px);
	}

	#form input.smf-text-control__control {
		font-size: 16px;
	}

	#form textarea.smf-textarea-control__control {
		font-size: 16px;
	}

	.l-footer .d-flex {
		flex-direction: column;
		gap: 40px;
	}

	.l-footer .d-flex .col-left {
		width: 100%;
	}

	.l-footer .recruit {
		padding: 1rem 2rem;
	}

	.recruit-detail p {
		font-size: 14px;
	}

	.recruit-detail p span {
		font-size: 16px;
		font-weight: 500;
	}

	.recruit-detail {
		padding-block: 0;
		width: 100%;
	}

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