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

body {
	background-color: #F4F3F3;
	color: #333333;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 16px;
	font-weight: 400;
}

.pc-only {
	display: none;
}

html {
	font-size: 16px;
	font-size: 4.2666666667vw;
}

/* ヘッダー固定した場合、ページ内リンクの遷移先がズレる問題解消 */

html {
	scroll-padding-top: 6.5rem;
}

/* 画面の高さに合わせてフッターを下に広げる */

body {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

main {
	margin-top: 4rem;
}

footer {
	margin-top: auto;
}

/* ドロワー表示時、 背景を固定してスクロールできないようにする */

body.is-fixed {
	height: 100%;
	overflow: hidden;
	width: 100%;
}

/* pcの電話番号発信対応 */

/* ホバー */

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

/* 非表示設定（視覚的に隠しつつスクリーンリーダーでは読み上げられる） */

/* https://gist.github.com/roatnek/c24d5257c4f6d5b1ef0f2328609a0221 */

.visually-hidden {
	clip: rect(1px, 1px, 1px, 1px) !important;
	height: 1px !important;
	overflow: hidden !important;
	position: absolute !important;
	width: 1px !important;
}

.wbr {
	display: inline-block;
}

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

/* Remove default padding */

ul,
ol {
	padding: 0;
}

/* Remove default margin */

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

/* Set core root defaults */

html {
	scroll-behavior: smooth;
}

/* Set core body defaults */

body { /* 実機端末を横向きにした際のブラウザの自動拡大をオフ */
	-moz-text-size-adjust: 100%;
	text-size-adjust: 100%; /* 上記のSafari用 */
	-webkit-text-size-adjust: 100%; /* フォントを滑らかに（GoogleFontsがデザインより太く見える時の対処） */
	-webkit-font-smoothing: antialiased;
	line-height: 1;
	min-height: 100vh;
	text-rendering: optimizeSpeed;
}

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

ul,
ol {
	list-style: none;
}

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

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

/* Make images easier to work with */

img {
	display: inline-block;
	max-width: 100%;
	vertical-align: bottom;
	width: 100%;
}

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

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

/* Inherit fonts for inputs and buttons */

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

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

img:not([alt]) {
	filter: blur(10px);
}

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

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

textarea {
	resize: vertical;
}

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

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

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

hr {
	border: 0;
	height: 0;
	margin: 0;
	padding: 0;
}

address {
	font-style: normal;
}

summary {
	cursor: pointer;
	list-style: none;
}

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

summary::marker {
	display: none;
}

fieldset {
	border: none;
	margin: 0;
	padding: 0;
}

.c-badge {
	align-items: center;
	border-radius: 50%;
	color: #fff;
	display: flex;
	filter: drop-shadow(0.05rem 0.05rem 0.35rem rgba(0, 0, 0, 0.05));
	flex-direction: column;
	font-family: "Inter", sans-serif;
	height: 2.75rem;
	justify-content: center;
	padding-top: 0.125rem;
	position: relative;
	width: 2.75rem;
}

.c-badge.-lg {
	height: 3.375rem;
	width: 3.375rem;
}

.c-badge.-lg::after {
	--border-width: 0.1875rem;
}

.c-badge.-xl {
	gap: 0.09375rem;
	height: 4.125rem;
	padding-top: 0.3125rem;
	width: 4.125rem;
}

.c-badge.-xl::after {
	--border-width: 0.1875rem;
}

.c-badge.-xl .c-badge__text {
	font-size: 0.625rem;
}

.c-badge.-xl .c-badge__number {
	font-size: 1.5rem;
}

.c-badge::before {
	background: linear-gradient(180deg, #FFEB89 0%, #D3AB1A 100%);
	border-radius: 50%;
	content: "";
	height: 100%;
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	z-index: -1;
}

.c-badge::after {
	--border-width: 0.125rem;
	background: #006574;
	border-radius: 50%;
	content: "";
	height: calc(100% - 0.125rem * 2);
	height: calc(100% - var(--border-width) * 2);
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: calc(100% - 0.125rem * 2);
	width: calc(100% - var(--border-width) * 2);
	z-index: -1;
}

.c-badge .c-badge__text {
	font-size: 0.5rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1;
}

.c-badge .c-badge__number {
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1;
}

.c-badge--yellow-green {
	align-items: center;
	border-radius: 50%;
	color: #073D45;
	display: flex;
	filter: drop-shadow(0.05rem 0.05rem 0.35rem rgba(0, 0, 0, 0.05));
	flex-direction: column;
	font-family: "Inter", sans-serif;
	height: 3.125rem;
	justify-content: center;
	padding-top: 0.125rem;
	position: relative;
	width: 3.125rem;
}

.c-badge--yellow-green::before {
	background: linear-gradient(180deg, #FFEB89 0%, #D3AB1A 100%);
	border-radius: 50%;
	content: "";
	height: 100%;
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	z-index: -1;
}

.c-badge--yellow-green::after {
	--border-width: 0.15625rem;
	background: #FBFFF3;
	border-radius: 50%;
	content: "";
	height: calc(100% - 0.15625rem * 2);
	height: calc(100% - var(--border-width) * 2);
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: calc(100% - 0.15625rem * 2);
	width: calc(100% - var(--border-width) * 2);
	z-index: -1;
}

.c-badge--yellow-green .c-badge__text {
	font-size: 0.625rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1;
}

.c-badge--yellow-green .c-badge__number {
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1;
}

.c-btn {
	overflow: hidden;
}

.c-btn__link {
	align-items: center;
	background: linear-gradient(180deg, #FFEB89 0%, #D3AB1A 100%);
	border-radius: 0.25rem;
	color: #513a00;
	display: inline-flex;
	font-size: 1.125rem;
	font-weight: 700;
	justify-content: center;
	letter-spacing: 0.04em;
	line-height: 130%;
	padding: 1.125rem 1rem;
	position: relative;
	width: 100%;
}

.c-btn__link::after {
	-webkit-mask-image: url("../img/common/arrow-right-01.svg");
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-size: contain;
	background-color: currentColor;
	background-color: #4D3700;
	content: "";
	display: block;
	flex-shrink: 0;
	height: 0.625rem;
	mask-image: url("../img/common/arrow-right-01.svg");
	mask-repeat: no-repeat;
	mask-size: contain;
	position: absolute;
	right: 0.625rem;
	top: 50%;
	transform: translateY(-50%);
	width: 0.625rem;
}

.c-fixed-btn {
	bottom: 0;
	left: 0;
	opacity: 0;
	padding: 0.75rem 1.25rem;
	position: fixed;
	right: 0;
	transition: opacity 0.4s ease, visibility 0.4s ease;
	visibility: hidden;
	z-index: 90;
}

.c-fixed-btn.is-visible {
	opacity: 1;
	visibility: visible;
}

.c-fixed-btn__inner {
	margin: 0 auto;
	max-width: 25rem;
}

.c-heading {
	font-feature-settings: "palt" on;
	color: #006574;
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 140%;
	text-align: center;
}

.c-heading.-white {
	color: #fff;
}

.cta {
	background: linear-gradient(102deg, #00B3BC 2.05%, #24A8C5 97.95%);
	padding-bottom: 3.125rem;
	padding-top: 3.125rem;
}

.cta__heading {
	color: #fff;
	font-size: 1.25rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 140%;
	margin-bottom: 1.5rem;
	text-align: center;
	text-shadow: 0 0.25rem 2.375rem rgba(0, 103, 141, 0.2);
}

.cta__btn {
	text-align: center;
}

.footer {
	background-color: #fff;
	padding-bottom: 2.625rem;
	padding-top: 2.5rem;
}

.footer__inner {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.footer__logo a {
	display: block;
}

.footer__logo img {
	-o-object-fit: cover;
	aspect-ratio: 340/67;
	object-fit: cover;
}

.footer__copy-right small {
	color: #333333;
	display: block;
	font-size: 0.625rem;
	letter-spacing: 0.02em;
	line-height: 1.9;
	text-align: center;
}

/* =========================================== */

/*                   Header                    */

/* =========================================== */

.header {
	background-color: #fff;
	box-shadow: 0 4px 34px 0 rgba(0, 0, 0, 0.1);
	height: 4rem;
	left: 0.5rem;
	position: fixed;
	right: 0.5rem;
	top: 0.5rem;
	width: auto;
	z-index: 200;
}

main {
	margin-top: 4.5rem !important;
}

.header__inner {
	height: inherit;
}

.header__sp-only {
	align-items: center;
	background-color: #fff;
	display: flex;
	gap: 1.25rem;
	height: inherit;
	padding-left: 0.25rem;
	position: relative;
	z-index: 50;
}

.header__logo {
	display: block;
	flex-shrink: 0;
}

.header__logo-link {
	align-items: center;
	display: flex;
}

.header__logo-link:hover {
	opacity: 1;
}

.header__logo-link img {
	-o-object-fit: cover;
	aspect-ratio: 340/67;
	height: 2.625rem;
	object-fit: cover;
	width: auto;
}

/* =========================================== */

/*                  PC Header                  */

/* =========================================== */

.header__pc-nav {
	display: none;
}

.header__pc-nav-btns {
	display: none;
}

/* =========================================== */

/*                  SP Header                  */

/* =========================================== */

.header__drawer {
	background: linear-gradient(97deg, #00B9D1 2%, #89CDEC 98%);
	display: none;
	height: 100vh;
	height: 100dvh;
	left: 0;
	overflow-y: auto;
	position: fixed;
	right: 0;
	top: 0;
	width: 100%;
	z-index: 40;
}

.header__drawer-body {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 3.75rem;
	justify-content: center;
	min-height: 100%;
	padding-bottom: 2.5rem;
	padding-left: 1.25rem;
	padding-right: 1.25rem;
	padding-top: 4rem;
}

.header__sp-nav-items {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
}

.header__sp-nav-item a {
	color: #fff;
	font-size: 1.125rem;
	font-weight: 700;
	letter-spacing: 0.09em;
}

.header__sp-nav-btns {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	max-width: 20.9375rem;
	width: 100%;
}

.header__sp-nav-btn a {
	align-items: center;
	background: linear-gradient(180deg, #FFEB89 0%, #D3AB1A 100%);
	border-radius: 0.25rem;
	color: #513a00;
	display: flex;
	font-size: 1rem;
	font-weight: 700;
	justify-content: center;
	letter-spacing: 0.04em;
	line-height: 1.3;
	padding: 1.125rem 2.25rem;
	position: relative;
	width: 100%;
}

.header__sp-nav-btn a::after {
	-webkit-mask-image: url("../img/common/arrow-right-01.svg");
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-size: contain;
	background-color: #513a00;
	content: "";
	display: block;
	height: 0.5rem;
	mask-image: url("../img/common/arrow-right-01.svg");
	mask-repeat: no-repeat;
	mask-size: contain;
	position: absolute;
	right: 0.875rem;
	top: 50%;
	transform: translateY(-50%);
	width: 0.5rem;
}

.header__sp-nav-btn.-contact a {
	background: linear-gradient(178deg, #fff 7.9%, #EAFDFF 92.1%);
	color: #1d8999;
}

.header__sp-nav-btn.-contact a::after {
	background-color: #1d8999;
}

/* =========================================== */

/*                 Hamburger                   */

/* =========================================== */

.header__hamburger {
	background-color: #006574;
	color: #fff;
	display: flex;
	flex-direction: column;
	gap: 0.375rem;
	height: inherit;
	justify-content: center;
	margin-left: auto;
	padding-left: 1rem;
	padding-right: 1rem;
	position: relative;
	transition: background-color 0.3s ease, color 0.3s ease;
	width: 4rem;
	z-index: 50;
}

.header__hamburger:hover {
	opacity: 1;
}

.header__hamburger span {
	background-color: currentColor;
	border-radius: 0.0625rem;
	display: block;
	height: 0.125rem;
	transition: transform 0.4s ease, opacity 0.4s ease;
	width: 100%;
}

.header__hamburger.is-open span:nth-of-type(2) {
	transform: translateY(0.5rem) rotate(45deg);
}

.header__hamburger.is-open span:nth-of-type(3) {
	opacity: 0;
	transform: scaleX(0);
}

.header__hamburger.is-open span:nth-of-type(4) {
	transform: translateY(-0.5rem) rotate(-45deg);
}

.inner {
	margin-left: auto;
	margin-right: auto;
	padding-left: 1.25rem;
	padding-right: 1.25rem;
	width: 100%;
}

.benefits-corp--layout {
	margin-bottom: 3.75rem;
	margin-top: -18.125rem;
}

.benefits-corp__content {
	background: url("../img/top/sp/benefits-corp-bg.webp") no-repeat center/cover;
	border-radius: 0.625rem;
	box-shadow: 1rem 1rem 0.625rem rgba(42, 0, 0, 0.05);
	overflow: hidden;
	padding: 2.5rem 1.25rem;
	position: relative;
}

.benefits-corp__heading {
	margin-bottom: 2.5rem;
	text-align: left;
}

.benefits-corp__list {
	grid-gap: 2.5rem;
	display: grid;
	gap: 2.5rem;
}

.benefits-corp__item {
	grid-gap: 0.875rem;
	background-color: #fff;
	border-radius: 0.375rem;
	display: grid;
	gap: 0.875rem;
	padding: 2.625rem 1.25rem 2rem;
	position: relative;
}

.benefits-corp__item-badge {
	left: 0.5rem;
	position: absolute;
	top: -1.25rem;
}

.benefits-corp__item-title {
	font-feature-settings: "palt";
	color: #006574;
	font-size: 1.125rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	line-height: 1.4;
	position: relative;
	z-index: 1;
}

.benefits-corp__item-title .-marker {
	display: inline-block;
	position: relative;
}

.benefits-corp__item-title .-marker::before {
	background-color: #FFE063;
	bottom: 0.0625rem;
	content: "";
	display: block;
	height: 0.5rem;
	left: 0;
	opacity: 0.7;
	position: absolute;
	width: 100%;
	z-index: -1;
}

.benefits-corp__item-body {
	color: #333333;
	font-size: 0.8125rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 1.7;
}

.benefits-corp__item-list {
	list-style: disc;
	padding-left: 1.25rem;
}

.benefits-corp__item-list li + li {
	margin-top: 0.125rem;
}

.benefits {
	background-color: #DDE7E8;
	padding-bottom: 21.875rem;
	padding-top: 4.375rem;
}

.benefits__heading {
	margin-bottom: 1.875rem;
}

.benefits__list {
	display: flex;
	flex-direction: column;
	gap: 3.125rem;
}

.benefits__item {
	grid-gap: 1.25rem;
	background: #fff;
	border-radius: 0.375rem;
	box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.07);
	display: grid;
	gap: 1.25rem;
	padding: 2.625rem 1.25rem 2rem;
	position: relative;
}

.benefits__item-img {
	border-radius: 0.25rem;
	overflow: hidden;
}

.benefits__item-img img {
	-o-object-fit: cover;
	aspect-ratio: 306/220;
	object-fit: cover;
}

.benefits__item-badge {
	left: 0.5625rem;
	position: absolute;
	top: -2.0625rem;
	z-index: 1;
}

.benefits__item-content {
	grid-gap: 0.875rem;
	display: grid;
	gap: 0.875rem;
}

.benefits__item-title {
	font-feature-settings: "palt";
	color: #006574;
	font-size: 1.25rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1.5;
}

.benefits__item-description {
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: 0.02em;
	line-height: 1.9;
}

.certification {
	overflow: hidden;
}

.certification--layout {
	margin-bottom: 5rem;
}

.certification__header {
	grid-gap: 0.5rem;
	align-items: center;
	display: grid;
	gap: 0.5rem;
	justify-items: center;
	margin-bottom: 1.5rem;
}

.certification__label {
	background-color: #006574;
	border-radius: 0.125rem;
	color: #fff;
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	line-height: 1.3;
	padding: 0.625rem 0.9375rem;
}

.certification__heading .-inter {
	font-family: "Inter", sans-serif;
}

.certification__video {
	aspect-ratio: 16/9;
	background-color: #D9D9D9;
	border-radius: 0.25rem;
	margin-bottom: 7.5rem;
	overflow: hidden;
	position: relative;
	width: 100%;
}

.certification__video-player {
	-o-object-fit: cover;
	bottom: 0;
	height: 100%;
	left: 0;
	object-fit: cover;
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
}

.certification__container {
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}

.certification__list {
	display: flex;
	flex-direction: column;
	gap: 5rem;
}

.certification__item {
	position: relative;
}

.certification__item:not(.-reverse) {
	padding-right: 1.25rem;
}

.certification__item.-reverse {
	padding-left: 1.25rem;
}

.certification__item { /* CMA: 日本証券アナリスト協会認定アナリスト */
}

.certification__item.-cma {
	--certification-color: #B6242A;
}

.certification__item.-cma .certification__item-label { /* SP用画像 */
	background-image: url("../img/top/sp/certification--item-label-cma.webp");
}

.certification__item { /* PB: プライベートバンカー資格 */
}

.certification__item.-pb {
	--certification-color: #2056AE;
}

.certification__item.-pb .certification__item-label { /* SP用画像なし → PC用を流用 */
	background-image: url("../img/top/certification--item-label-pb.webp");
}

.certification__item { /* ABC: 日本証券アナリスト協会認定 資産形成コンサルタント資格 */
}

.certification__item.-abc {
	--certification-color: #5EB62C;
}

.certification__item.-abc .certification__item-label { /* SP用画像 */
	background-image: url("../img/top/sp/certification--item-label-abc.webp");
}

.certification__item-label {
	align-items: center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	color: #fff;
	display: inline-grid;
	font-size: 1.0625rem;
	font-weight: 700;
	left: 0;
	letter-spacing: 0.02em;
	line-height: 1.7;
	overflow: hidden;
	padding: 0.375rem 2rem 0.375rem 0.75rem;
	position: absolute;
	top: 0;
	transform: translateY(-50%);
	z-index: 1;
}

.-reverse .certification__item-label {
	left: auto;
	padding: 0.375rem 1rem 0.375rem 1.75rem;
	right: 0;
}

.certification__item-body {
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
}

.-reverse .certification__item-body {
	gap: 1.875rem;
}

.certification__item-media {
	aspect-ratio: 3/2;
	overflow: hidden;
}

.certification__item-media img {
	-o-object-fit: cover;
	aspect-ratio: 733/480;
	border-radius: 0 0.25rem 0.25rem 0;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.-reverse .certification__item-media img {
	border-radius: 0.25rem 0 0 0.25rem;
}

.certification__item-content {
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
	padding-left: 1.25rem;
}

.-reverse .certification__item-content {
	padding-left: 0;
	padding-right: 1.25rem;
}

.certification__item-content-main {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.certification__item-logo img {
	height: auto;
	max-height: 2.5rem;
	width: auto;
}

.certification__item-text {
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: 0.08em;
	line-height: 1.7;
}

.certification__item-btn {
	align-items: center;
	background-color: var(--certification-color);
	border-radius: 1.875rem;
	color: #fff;
	display: inline-flex;
	font-size: 0.9375rem;
	font-weight: 700;
	justify-content: space-between;
	line-height: 1.7;
	padding: 0.75rem;
	width: 12.5rem;
}

.certification__item-btn span {
	flex: 1;
	text-align: center;
}

.certification__item-btn::after {
	-webkit-mask-image: url("../img/common/arrow-right-02.svg");
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-size: contain;
	background-color: #fff;
	content: "";
	display: block;
	flex-shrink: 0;
	height: 1.125rem;
	mask-image: url("../img/common/arrow-right-02.svg");
	mask-repeat: no-repeat;
	mask-size: contain;
	width: 1.125rem;
}

.certification__item-content-sub {
	grid-gap: 1rem;
	background-color: #fff;
	border-radius: 0.375rem;
	box-shadow: 1rem 1rem 0.625rem rgba(0, 0, 0, 0.03);
	display: grid;
	gap: 1rem;
	padding: 2.875rem 1rem 1.5rem;
	position: relative;
}

.certification__item-content-sub-badge {
	background-color: #004D8D;
	border-radius: 0.375rem 0 0.375rem 0;
	color: #fff;
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 700;
	left: 0;
	letter-spacing: 0.08em;
	line-height: 1.6;
	padding: 0.25rem 1rem;
	position: absolute;
	top: 0;
}

.certification__item-content-sub-header {
	align-items: center;
	display: flex;
	gap: 1.375rem;
}

.certification__item-content-sub-logo {
	flex-shrink: 0;
	width: 3.1875rem;
}

.certification__item-content-sub-logo img {
	-o-object-fit: cover;
	aspect-ratio: 70/69;
	height: auto;
	object-fit: cover;
	width: 100%;
}

.certification__item-content-sub-title {
	font-feature-settings: "palt" on;
	color: #00a08c;
	font-size: 1rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	line-height: 1.7;
}

.certification__item-content-sub-text {
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: 0.08em;
	line-height: 1.7;
}

.faq--layout {
	margin-bottom: 3.75rem;
	margin-top: 3.75rem;
}

.faq__inner {
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
}

.faq__item {
	border-bottom: 1px solid #E1D9D9;
}

.faq__item:first-child {
	border-top: 1px solid #E1D9D9;
}

.faq__question {
	align-items: center;
	cursor: pointer;
	display: flex;
	gap: 1rem;
	padding-bottom: 1.25rem;
	padding-top: 1.25rem;
}

.faq__q-badge {
	align-items: center;
	background-color: #006574;
	border-radius: 0.125rem;
	color: #fff;
	display: flex;
	flex-shrink: 0;
	font-family: "Inter", sans-serif;
	font-size: 0.875rem;
	font-weight: 700;
	height: 2rem;
	justify-content: center;
	letter-spacing: 0.05em;
	line-height: 1;
	width: 2rem;
}

.faq__question-text {
	font-feature-settings: "palt" on;
	color: #333333;
	flex: 1;
	font-size: 0.9375rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	line-height: 1.6;
}

.faq__toggle {
	display: block;
	flex-shrink: 0;
	height: 1.875rem;
	position: relative;
	width: 1.875rem;
}

.faq__toggle::before,
.faq__toggle::after {
	background-color: #006574;
	border-radius: 0.125rem;
	content: "";
	left: 50%;
	position: absolute;
	top: 50%;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.faq__toggle::before {
	height: 0.125rem;
	transform: translate(-50%, -50%);
	width: 0.875rem;
}

.faq__toggle::after {
	height: 0.875rem;
	transform: translate(-50%, -50%);
	width: 0.125rem;
}

[open] .faq__toggle::after {
	opacity: 0;
	transform: translate(-50%, -50%) rotate(90deg);
}

.faq__answer {
	padding-bottom: 1.25rem;
}

.faq__answer-inner {
	align-items: baseline;
	background-color: rgba(255, 255, 255, 0.6);
	border-radius: 0.1875rem;
	display: flex;
	gap: 1rem;
	padding: 1rem;
}

.faq__a-badge {
	align-items: center;
	background-color: #DDE7E8;
	border-radius: 0.125rem;
	color: #006574;
	display: flex;
	flex-shrink: 0;
	font-family: "Inter", sans-serif;
	font-size: 0.875rem;
	font-weight: 700;
	height: 2rem;
	justify-content: center;
	letter-spacing: 0.05em;
	line-height: 1;
	width: 2rem;
}

.faq__answer-text {
	font-feature-settings: "palt" on;
	color: #333333;
	flex: 1;
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	line-height: 1.9;
}

.flow--layout {
	margin-bottom: 3.75rem;
}

.flow__content {
	background-color: #DDE7E8;
	border-radius: 0.5rem;
	padding: 2.5rem 1.25rem;
}

.flow__heading {
	margin-bottom: 1.875rem;
}

.flow__list {
	grid-gap: 2.125rem;
	display: grid;
	gap: 2.125rem;
}

.flow__item {
	align-items: center;
	background-color: #fff;
	border-radius: 0.375rem;
	display: flex;
	flex-direction: row;
	gap: 0.625rem;
	padding-bottom: 0.75rem;
	padding-left: 0.625rem;
	padding-right: 1.875rem;
	padding-top: 0.75rem;
	position: relative;
}

.flow__item:not(:last-child)::after {
	-webkit-mask-image: url("../img/common/arrow-right-01.svg");
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-size: contain;
	background-color: #006574;
	bottom: -1.5rem;
	content: "";
	height: 0.9375rem;
	left: 50%;
	mask-image: url("../img/common/arrow-right-01.svg");
	mask-repeat: no-repeat;
	mask-size: contain;
	position: absolute;
	transform: translateX(-50%) rotate(90deg);
	width: 0.6875rem;
	z-index: 1;
}

.flow__item-badge {
	flex-shrink: 0;
}

.flow__item-title {
	flex: 1;
	font-size: 1rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	line-height: 1.5;
	text-align: center;
}

.flow__item-subtitle {
	display: block;
	font-size: 0.75rem;
}

.flow__item-img {
	display: none;
}

.flow__item-img img {
	-o-object-fit: cover;
	aspect-ratio: 1/1;
	object-fit: cover;
}

.fv {
	background: linear-gradient(96deg, #00B9D1 2.05%, #89CDEC 97.95%);
	overflow: hidden;
}

.fv--layout {
	margin-bottom: 3.75rem;
	margin-top: -4.5rem;
}

.fv__inner {
	display: flex;
	flex-direction: column;
	min-height: 43.75rem;
	padding: 6.25rem 1.25rem 4.25rem;
	position: relative;
}

.fv__content {
	display: flex;
	flex-direction: column;
	gap: 1.375rem;
	position: relative;
	z-index: 2;
}

.fv__title {
	font-feature-settings: "palt";
	color: #fff;
	font-size: 2.25rem;
	font-weight: 700;
	letter-spacing: 0.01em;
	line-height: 1.3;
}

.fv__info {
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
}

.fv__label {
	background-color: #1d8999;
	color: #fff;
	font-size: 0.875rem;
	font-weight: 600;
	line-height: 1.3;
	padding: 0.625rem 0.875rem;
	text-align: center;
}

.fv__logos {
	display: flex;
	gap: 0.5rem;
	justify-content: center;
}

.fv__logo-item {
	border-radius: 0.1875rem;
	flex: 1;
	overflow: hidden;
}

.fv__logo-item img {
	display: block;
	height: auto;
	width: 100%;
}

.fv__persons {
	align-items: flex-end;
	display: flex;
	gap: 1.0625rem;
	left: 50%;
	position: absolute;
	top: 47%;
	transform: translateX(calc(-50% + 0.1875rem));
	z-index: 1;
}

.fv__person {
	animation: fv-person-rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
	animation-delay: calc(0.25s + 0 * 0.16s), calc(1.15s + 0 * 0.16s);
	animation-delay: calc(0.25s + var(--person-delay, 0) * 0.16s), calc(1.15s + var(--person-delay, 0) * 0.16s);
	flex-shrink: 0;
	opacity: 0;
	width: 4.25rem;
}

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

.fv__btns {
	grid-gap: 0.5rem;
	display: grid;
	gap: 0.5rem;
	z-index: 3;
}

.fv__btn {
	-webkit-text-decoration: none;
	align-items: center;
	border-radius: 0.25rem;
	display: flex;
	font-size: 1.125rem;
	font-weight: 700;
	justify-content: center;
	letter-spacing: 0.04em;
	line-height: 1.3;
	padding: 1.125rem 1rem;
	position: relative;
	text-decoration: none;
	width: 100%;
}

.fv__btn::after {
	-webkit-mask-image: url("../img/common/arrow-right-01.svg");
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-size: contain;
	content: "";
	display: block;
	height: 0.625rem;
	mask-image: url("../img/common/arrow-right-01.svg");
	mask-repeat: no-repeat;
	mask-size: contain;
	position: absolute;
	right: 0.625rem;
	top: 50%;
	transform: translateY(-50%);
	width: 0.625rem;
}

.fv__btn.-primary {
	background: linear-gradient(180deg, #FFEB89 0%, #D3AB1A 100%);
	color: #513a00;
}

.fv__btn.-primary::after {
	background-color: #4D3700;
}

.fv__btn.-secondary {
	background: linear-gradient(178deg, #fff 7.9%, #EAFDFF 92.1%);
	color: #1d8999;
}

.fv__btn.-secondary::after {
	background-color: #1d8999;
}

.fv__bottom {
	background-color: #006574;
	overflow: hidden;
	padding: 2.625rem 2.25rem 1rem;
	text-align: center;
}

.fv__bottom-text {
	font-feature-settings: "palt";
	color: #fff;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	line-height: 1;
	white-space: nowrap;
}

.fv__bottom-number {
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background: linear-gradient(to right, #ffdaa2, #e3a13c);
	background-clip: text;
	display: inline-block;
	font-size: 1.375rem;
}

.fv__bottom-unit {
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background: linear-gradient(to right, #ffdaa2, #e3a13c);
	background-clip: text;
	font-size: 0.75rem;
	letter-spacing: 0.03em;
}

.how-to-proceed--layout {
	margin-bottom: 3.75rem;
}

.how-to-proceed__content {
	background: url("../img/top/sp/how-to-proceed-bg.webp") no-repeat center/cover;
	border-radius: 0.25rem;
	padding: 3.125rem 1.25rem 1.875rem 0.625rem;
	position: relative;
}

.how-to-proceed__content-inner {
	display: contents;
}

.how-to-proceed__label {
	left: -0.3125rem;
	position: absolute;
	top: -1.375rem;
	width: 14.625rem;
	z-index: 1;
}

.how-to-proceed__label img {
	height: auto;
	width: 100%;
}

.how-to-proceed__label-text {
	color: #513a00;
	font-size: 1.25rem;
	font-weight: 700;
	left: 50%;
	line-height: 104%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
}

.how-to-proceed__list {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	position: relative;
	z-index: 1;
}

.how-to-proceed__item {
	align-items: start;
	display: flex;
	gap: 0.875rem;
}

.how-to-proceed__item-badge {
	flex-shrink: 0;
}

.how-to-proceed__item-content {
	grid-gap: 0.5rem;
	display: grid;
	gap: 0.5rem;
}

.how-to-proceed__item-title {
	font-feature-settings: "palt";
	color: #fff;
	font-size: 1.125rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	line-height: 1.4;
}

.how-to-proceed__item-description {
	font-feature-settings: "palt";
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1.8;
}

.issues--layout {
	margin-bottom: 3.75rem;
}

.issues__inner {
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
}

.issues__stat {
	display: flex;
	flex-direction: column;
	gap: 1.125rem;
}

.issues__stat-media {
	flex-shrink: 0;
}

.issues__stat-img {
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: 15.8125rem;
}

.issues__stat-note {
	font-size: 0.625rem;
	letter-spacing: 0.05em;
	line-height: 2;
	margin-top: 0.5rem;
	text-align: center;
}

.issues__stat-title {
	font-feature-settings: "palt";
	color: #006574;
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	line-height: 1.5;
}

.issues__stat-text {
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	line-height: 2;
}

.issues__stat-emphasis {
	color: #006574;
	font-weight: 700;
}

.issues__problem {
	background: #fff;
	border-radius: 0.25rem;
	box-shadow: 1rem 1rem 0.625rem 0px rgba(0, 0, 0, 0.03);
	overflow: hidden;
	position: relative;
}

.issues__problem-question {
	font-feature-settings: "palt";
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1.6;
	padding: 1.1875rem 1rem;
}

.issues__problem-highlight {
	color: #940E24;
	display: inline-block;
	position: relative;
	z-index: 1;
}

.issues__problem-highlight::before {
	background-color: #FFE063;
	bottom: 0.1875rem;
	content: "";
	display: block;
	height: 0.375rem;
	left: 50%;
	opacity: 0.7;
	position: absolute;
	transform: translateX(-50%);
	width: 100%;
	z-index: -1;
}

.issues__problem-body {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.issues__problem-illust {
	display: none;
}

.issues__problem-illust img {
	display: block;
	width: 100%;
}

.issues__problem-list {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.issues__problem-item {
	align-items: start;
	display: flex;
	font-size: 0.875rem;
	font-weight: 700;
	gap: 0.625rem;
	letter-spacing: 0.02em;
	line-height: 1.7;
}

.issues__problem-item::before {
	background-image: url("../img/top/issue-problem-item-check.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	flex-shrink: 0;
	height: 1rem;
	margin-top: 0.375rem;
	width: 1rem;
}

.price--layout {
	margin-bottom: 5rem;
}

.price__heading {
	margin-bottom: 1.875rem;
}

.price__list {
	display: flex;
	gap: 0.625rem;
}

.price__item {
	border-radius: 4px;
	box-shadow: 0px 0px 32px 0px rgba(0, 0, 0, 0.03);
	flex: 1;
	overflow: hidden;
}

.price__item-head {
	align-items: center;
	background-color: #006574;
	color: #fff;
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
	padding: 1rem 0.625rem;
	text-align: center;
}

.price__item-title {
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1.2;
}

.price__item-target {
	font-size: 0.625rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1.5;
	opacity: 0.8;
}

.price__item-body {
	background-color: #fff;
	border: 2px solid #006574;
	border-radius: 0 0 4px 4px;
	border-top: none;
	padding: 0 0.625rem 0.625rem;
}

.price__item-fee {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
	padding: 1.5rem 0;
	text-align: center;
}

.price__item-fee:not(:last-child) {
	border-bottom: 1px solid #EFE6E6;
}

.price__item-fee-label {
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	opacity: 0.7;
}

.price__item-fee-value {
	font-size: 0.9375rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1.2;
}

.voice--layout {
	margin-bottom: 5rem;
	margin-top: 5rem;
}

.voice__header {
	margin-bottom: 2.5rem;
}

.voice__slider-wrap {
	position: relative;
}

.voice__card {
	background: #fff;
	border-radius: 0.375rem;
	box-shadow: 0 0 32px rgba(0, 0, 0, 0.03);
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	height: 100%;
}

.voice__card-header {
	align-items: center;
	display: flex;
	gap: 1.25rem;
}

.voice__card-img {
	-o-object-fit: cover;
	background-color: #D9D9D9;
	border-radius: 0.375rem 0 0.375rem 0;
	flex-shrink: 0;
	height: 5.625rem;
	object-fit: cover;
	width: 7.5rem;
}

.voice__card-company {
	color: #006574;
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	line-height: 1.5;
}

.voice__card-body {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	padding: 0 1.25rem 1.5rem;
}

.voice__card-title {
	color: #333333;
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	line-height: 1.6;
}

.voice__card-text {
	color: #333333;
	font-size: 0.875rem;
	letter-spacing: 0.02em;
	line-height: 1.9;
}

.voice__arrow {
	align-items: center;
	background: #006574;
	border: none;
	border-radius: 50%;
	box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.1);
	cursor: pointer;
	display: flex;
	height: 3.125rem;
	justify-content: center;
	opacity: 1;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	transition: opacity 0.2s ease;
	width: 3.125rem;
	z-index: 10;
}

.voice__arrow svg {
	fill: none;
	height: 1.125rem;
	width: 1.125rem;
}

.voice__arrow--prev {
	left: 0.375rem;
}

.voice__arrow--prev svg {
	transform: rotate(180deg);
}

.voice__arrow--next {
	right: 0.375rem;
}

@media (hover: hover) and (pointer: fine) {

a:hover,
button:hover {
	opacity: 0.8;
}

.header__pc-nav-item a:hover {
	opacity: 0.6;
}

.voice__arrow:hover {
	opacity: 0.8;
}

}

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

.pc-only {
	display: block;
}

.sp-only {
	display: none;
}

html {
	font-size: 1.4545454545vw;
}

main {
	margin-top: 5rem;
}

body.is-fixed {
	position: static;
	position: initial;
}

a[href^="tel:"] {
	pointer-events: none;
}

a:not([href]):hover {
	opacity: 1;
}

.c-badge {
	height: 3.375rem;
	width: 3.375rem;
}

.c-badge.-lg {
	height: 3.75rem;
	width: 3.75rem;
}

.c-badge.-xl {
	height: 5.5rem;
	padding-top: 0.4375rem;
	width: 5.5rem;
}

.c-badge.-xl::after {
	--border-width: 0.25rem;
}

.c-badge.-xl .c-badge__text {
	font-size: 0.875rem;
}

.c-badge.-xl .c-badge__number {
	font-size: 2rem;
}

.c-badge .c-badge__text {
	font-size: 0.625rem;
}

.c-badge .c-badge__number {
	font-size: 1.375rem;
}

.c-badge--yellow-green {
	height: 5rem;
	width: 5rem;
}

.c-badge--yellow-green .c-badge__text {
	font-size: 0.9375rem;
}

.c-badge--yellow-green .c-badge__number {
	font-size: 2.125rem;
}

.c-btn.-w-420 .c-btn__link {
	width: 26.25rem;
}

.c-btn__link {
	font-size: 1.75rem;
	padding: 1.75rem 1rem;
}

.c-btn__link::after {
	height: 0.9375rem;
	right: 1rem;
	width: 0.6875rem;
}

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

.c-heading {
	font-size: 2.5rem;
}

.cta {
	padding-bottom: 5rem;
	padding-top: 5rem;
}

.cta__heading {
	font-size: 2.5rem;
	margin-bottom: 2.125rem;
}

.footer {
	padding-bottom: 1.875rem;
	padding-top: 1.875rem;
}

.footer__logo img {
	width: 21.25rem;
}

.header {
	height: 5rem;
	left: 1.25rem;
	right: 1.25rem;
	top: 0.625rem;
}

main {
	margin-top: 5.625rem !important;
}

.header__inner {
	align-items: center;
	display: flex;
	gap: 1.25rem;
	justify-content: space-between;
	padding-left: 0.5rem;
	padding-right: 0.5rem;
}

.header__sp-only {
	display: contents;
}

.header__logo-link img {
	height: 3.375rem;
}

.header__pc-nav {
	align-items: center;
	display: flex;
	gap: 1.875rem;
}

.header__pc-nav-items {
	align-items: center;
	display: flex;
	gap: 1.875rem;
}

.header__pc-nav-item a {
	color: #333333;
	font-size: 0.9375rem;
	font-weight: 500;
	white-space: nowrap;
	word-break: keep-all;
}

.header__pc-nav-btns {
	align-items: center;
	display: flex;
	gap: 0.5rem;
}

.header__pc-nav-btn a {
	align-items: center;
	background: linear-gradient(180deg, #FFEB89 0%, #D3AB1A 100%);
	color: #4D3700;
	display: inline-flex;
	font-size: 1rem;
	font-weight: 700;
	justify-content: center;
	letter-spacing: 0.04em;
	line-height: 1.3;
	padding-bottom: 1.25rem;
	padding-left: 0;
	padding-right: 0.5rem;
	padding-top: 1.25rem;
	position: relative;
	white-space: nowrap;
	width: 11.25rem;
}

.header__pc-nav-btn a::after {
	-webkit-mask-image: url("../img/common/arrow-right-01.svg");
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-size: contain;
	background-color: #4D3700;
	content: "";
	display: block;
	height: 0.5rem;
	mask-image: url("../img/common/arrow-right-01.svg");
	mask-repeat: no-repeat;
	mask-size: contain;
	position: absolute;
	right: 0.5rem;
	top: 50%;
	transform: translateY(-50%);
	width: 0.5rem;
}

.header__pc-nav-btn.-contact a {
	background: linear-gradient(176deg, #fff 7.9%, #EAFDFF 92.1%);
	color: #006574;
	outline: 0.03125rem solid #006574;
	outline-offset: -0.0625rem;
}

.header__pc-nav-btn.-contact a::after {
	background-color: #006574;
}

.header__hamburger {
	display: none;
}

.header__drawer {
	display: none !important;
}

.header__hamburger {
	display: none;
}

.inner {
	max-width: 73.75rem;
	padding-left: 2.5rem;
	padding-right: 2.5rem;
}

.benefits-corp--layout {
	margin-bottom: 7.5rem;
	margin-top: -16.875rem;
}

.benefits-corp__inner {
	max-width: 117.5rem;
}

.benefits-corp__content {
	background-image: url("../img/top/benefits-corp-bg.webp");
	padding: 3.125rem 5rem;
}

.benefits-corp__heading {
	margin-bottom: 3rem;
}

.benefits-corp__list {
	gap: 1rem;
}

.benefits-corp__item {
	align-items: center;
	gap: 3rem;
	grid-template-columns: 26.25rem 1fr;
	padding: 1.875rem 2.8125rem 1.875rem 3.125rem;
}

.benefits-corp__item-badge {
	left: -1.75rem;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.benefits-corp__item-title {
	font-size: 1.5rem;
}

.benefits-corp__item-body {
	flex: 1;
	font-size: 1.0625rem;
}

.benefits-corp__item-list li + li {
	margin-top: 0.25rem;
}

.benefits {
	padding-bottom: 25rem;
	padding-top: 7.5rem;
}

.benefits__heading {
	margin-bottom: 3.75rem;
}

.benefits__list {
	gap: 4.375rem;
}

.benefits__item {
	align-items: center;
	gap: 0;
	min-height: 12.5rem;
	padding: 1.875rem 3.125rem 1.875rem 24.125rem;
}

.benefits__item-img {
	height: 13.75rem;
	left: 2.1875rem;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 19.125rem;
}

.benefits__item-badge {
	left: 0.875rem;
	top: -2.25rem;
}

.benefits__item-title {
	font-size: 1.5rem;
}

.benefits__item-description {
	font-size: 1rem;
}

.certification--layout {
	margin-bottom: 10rem;
}

.certification__header {
	gap: 1.125rem;
	margin-bottom: 2.5rem;
}

.certification__label {
	border-radius: 0.25rem;
	font-size: 1.25rem;
	padding: 0.75rem 1.25rem;
}

.certification__heading {
	font-size: 2.875rem;
	letter-spacing: 0.05em;
}

.certification__video {
	border-radius: 0.625rem;
	margin-bottom: 11.25rem;
}

.certification__list {
	gap: 7.5rem;
	margin-left: auto;
	margin-right: auto;
	max-width: 112.5rem;
}

.certification__item:not(.-reverse) {
	padding-right: 2.5rem;
}

.certification__item.-reverse {
	padding-left: 2.5rem;
}

.certification__item.-cma .certification__item-label { /* PC用画像 */
	background-image: url("../img/top/certification--item-label-cma.webp");
}

.certification__item.-cma .certification__item-content-main {
	margin-top: 3.25rem;
}

.certification__item.-cma .certification__item-logo {
	max-width: 34.1875rem;
}

.certification__item.-pb .certification__item-label {
	background-image: url("../img/top/certification--item-label-pb.webp");
}

.certification__item.-pb .certification__item-logo {
	max-width: 25.75rem;
}

.certification__item.-abc .certification__item-label { /* PC用画像なし → SP用を流用（後で差し替え可） */
	background-image: url("../img/top/sp/certification--item-label-abc.webp");
}

.certification__item.-abc .certification__item-logo {
	max-width: 28.4375rem;
}

.certification__item-label {
	display: inline-flex;
	flex-wrap: wrap;
	font-size: 1.875rem;
	padding: 0.25rem 3.125rem 0.375rem 2.125rem;
}

.-reverse .certification__item-label {
	padding: 0.25rem 2.125rem 0.375rem 3.125rem;
}

.certification__item-body {
	gap: 5rem !important;
}

.certification__item-body {
	align-items: stretch;
	flex-direction: row;
}

.-reverse .certification__item-body {
	flex-direction: row-reverse;
}

.certification__item-media {
	aspect-ratio: auto;
	flex: 0 0 52.358%;
}

.certification__item-media img {
	border-radius: 0 0.625rem 0.625rem 0;
}

.-reverse .certification__item-media img {
	border-radius: 0.625rem 0 0 0.625rem;
}

.certification__item-content {
	flex: 1;
	gap: 3.125rem;
	justify-content: center;
	max-width: 34.1875rem;
	padding: 0;
}

.-reverse .certification__item-content {
	padding: 0;
}

.certification__item-content-main {
	gap: 2rem;
}

.certification__item-logo img {
	max-height: none;
	max-height: initial;
}

.certification__item-text {
	font-size: 1.0625rem;
}

.certification__item-btn::after {
	height: 1.25rem;
	width: 1.25rem;
}

.certification__item-content-sub {
	padding: 2.75rem 1.5rem 1.5rem;
}

.certification__item-content-sub-badge {
	font-size: 0.9375rem;
	line-height: 1.7;
	padding: 0.25rem 1.5rem;
}

.certification__item-content-sub-logo {
	width: 4.375rem;
}

.certification__item-content-sub-title {
	font-size: 1.25rem;
}

.certification__item-content-sub-text {
	font-size: 1rem;
}

.faq--layout {
	margin-bottom: 7.5rem;
	margin-top: 7.5rem;
}

.faq__inner {
	gap: 3.125rem;
}

.faq__question {
	gap: 1.25rem;
	padding-bottom: 2.25rem;
	padding-top: 2.25rem;
}

.faq__q-badge {
	font-size: 1rem;
	height: 2.25rem;
	width: 2.25rem;
}

.faq__question-text {
	font-size: 1.125rem;
}

.faq__toggle {
	height: 2.5rem;
	width: 2.5rem;
}

.faq__toggle::before {
	width: 1rem;
}

.faq__toggle::after {
	height: 1rem;
}

.faq__answer {
	padding-bottom: 2.25rem;
}

.faq__answer-inner {
	padding: 1.25rem;
}

.faq__a-badge {
	font-size: 1rem;
	height: 2.25rem;
	width: 2.25rem;
}

.faq__answer-text {
	font-size: 1rem;
}

.flow--layout {
	margin-bottom: 7.5rem;
}

.flow__inner {
	max-width: 83.75rem;
}

.flow__content {
	margin-left: auto;
	margin-right: auto;
	padding-bottom: 3.125rem;
	padding-top: 3.125rem;
}

.flow__heading {
	margin-bottom: 3.75rem;
}

.flow__list {
	grid-template-columns: repeat(4, 1fr);
	margin-left: auto;
	margin-right: auto;
	max-width: 68.75rem;
}

.flow__item {
	flex-direction: column;
	gap: 1rem;
	padding: 2.625rem 1.5625rem 1.5rem;
}

.flow__item:not(:last-child)::after {
	bottom: auto;
	left: auto;
	right: -1.5625rem;
	top: 50%;
	transform: translateY(-50%);
}

.flow__item-badge {
	left: 50%;
	position: absolute;
	top: -1.6875rem;
	transform: translateX(-50%);
}

.flow__item-title {
	align-items: center;
	display: grid;
	flex: none;
	font-size: 1.25rem;
	min-height: 3.75rem;
}

.flow__item-subtitle {
	font-size: 0.875rem;
}

.flow__item-img {
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: 3.75rem;
}

.fv--layout {
	margin-bottom: 5rem;
	margin-top: -5.625rem;
}

.fv__inner {
	gap: 5rem;
	margin-left: auto;
	margin-right: auto;
	max-width: 85rem;
	min-height: 46.875rem;
	padding: 8.75rem 5rem 3.125rem;
}

.fv__content {
	gap: 3rem;
}

.fv__title {
	font-size: 4.5rem;
	letter-spacing: 0.01em;
}

.fv__info {
	gap: 1.25rem;
	width: -moz-fit-content;
	width: fit-content;
}

.fv__label {
	display: inline-block;
	font-size: 1.375rem;
	padding: 0.625rem 2.125rem;
	text-align: left;
}

.fv__logos {
	gap: 0.75rem;
	justify-content: flex-start;
}

.fv__logo-item {
	border-radius: 0.25rem;
	flex: none;
	width: 10.625rem;
}

.fv__persons {
	bottom: 0;
	gap: 2.25rem;
	left: 50%;
	top: auto;
	transform: none;
}

.fv__person {
	width: 9.25rem;
}

.fv__person:nth-child(1) {
	height: 23.3125rem;
}

.fv__person:nth-child(2) {
	height: 29.75rem;
}

.fv__person:nth-child(3) {
	height: 35.125rem;
}

.fv__person:nth-child(4) {
	height: 40.5rem;
}

.fv__btns {
	gap: 7.5rem;
	grid-template-columns: repeat(2, 1fr);
	position: relative;
}

.fv__btn {
	flex: 1;
	font-size: 1.75rem;
	letter-spacing: 0.04em;
	padding: 1.75rem 1rem;
}

.fv__btn::after {
	height: 0.875rem;
	right: 1rem;
	width: 0.875rem;
}

.fv__bottom {
	padding: 0.75rem 2.25rem 1.5rem;
}

.fv__bottom-text {
	font-size: 2rem;
}

.fv__bottom-number {
	font-size: 3.75rem;
}

.fv__bottom-unit {
	font-size: 2rem;
}

.how-to-proceed--layout {
	margin-bottom: 7.5rem;
}

.how-to-proceed__inner {
	max-width: 112.5rem;
}

.how-to-proceed__content {
	align-items: center;
	background-image: url("../img/top/how-to-proceed-bg.webp");
	border-radius: 0.625rem;
	display: flex;
	gap: 2.5rem;
	padding: 2.5rem 5rem;
}

.how-to-proceed__content-inner {
	display: block;
	margin-left: auto;
	margin-right: auto;
	max-width: 65rem;
	padding-left: 9.375rem;
	position: relative;
	width: 100%;
}

.how-to-proceed__label {
	left: 0.625rem;
	top: -3.125rem;
	width: 5.3125rem;
}

.how-to-proceed__label-text {
	font-size: 2.25rem;
}

.how-to-proceed__list {
	flex: 1;
	gap: 2rem;
}

.how-to-proceed__list::before {
	background-color: #fff;
	content: "";
	display: block;
	height: 80%;
	left: 2.3125rem;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 0.1875rem;
}

.how-to-proceed__item {
	align-items: center;
	gap: 2.5rem;
}

.how-to-proceed__item-content {
	gap: 0.3125rem;
}

.how-to-proceed__item-title {
	font-size: 1.75rem;
	letter-spacing: 0.04em;
}

.how-to-proceed__item-description {
	font-size: 1rem;
	line-height: 2;
}

.issues--layout {
	margin-bottom: 7.5rem;
}

.issues__inner {
	gap: 3.75rem;
}

.issues__stat {
	align-items: center;
	flex-direction: row;
	gap: 3.125rem;
	padding-right: 2.5rem;
}

.issues__stat-media {
	width: 29.375rem;
}

.issues__stat-img {
	width: 100%;
}

.issues__stat-note {
	font-size: 0.6875rem;
}

.issues__stat-title {
	font-size: 2.375rem;
	line-height: 1.4;
	margin-bottom: 2.375rem;
}

.issues__stat-text {
	font-size: 1.25rem;
}

.issues__problem-question {
	font-size: 1.5rem;
	line-height: 2;
	padding: 1.1875rem 1.0625rem;
	text-align: center;
}

.issues__problem-highlight::before {
	bottom: 0.625rem;
	height: 0.5rem;
	left: 50%;
	width: 98%;
}

.issues__problem-body {
	align-items: center;
	flex-direction: row;
	gap: 1.5rem;
	justify-content: center;
	padding-left: 1.875rem;
	padding-top: 0.3125rem;
}

.issues__problem-illust {
	display: block;
	flex-shrink: 0;
	width: 11.8125rem;
}

.issues__problem-item {
	align-items: center;
	font-size: 1.25rem;
	gap: 0.875rem;
}

.issues__problem-item::before {
	height: 1.625rem;
	margin-top: 0;
	width: 1.625rem;
}

.price--layout {
	margin-bottom: 7.5rem;
}

.price__heading {
	margin-bottom: 3.75rem;
}

.price__list {
	gap: 1rem;
}

.price__item-head {
	gap: 0.75rem;
	padding: 1.25rem;
}

.price__item-title {
	font-size: 1.5rem;
}

.price__item-target {
	font-size: 1rem;
}

.price__item-body {
	padding: 0 1.5rem 0.625rem;
}

.price__item-fee-label {
	font-size: 1rem;
}

.price__item-fee-value {
	font-size: 1.5rem;
}

.voice--layout {
	margin-bottom: 7.5rem;
	margin-top: 7.5rem;
}

.voice__header {
	margin-bottom: 3.75rem;
}

.voice__card {
	gap: 1.875rem;
}

.voice__card-header {
	gap: 1.875rem;
}

.voice__card-img {
	height: 6.875rem;
	width: 10rem;
}

.voice__card-company {
	font-size: 1rem;
}

.voice__card-body {
	gap: 1rem;
	padding: 0 1.5rem 1.875rem;
}

.voice__card-title {
	font-size: 1.25rem;
}

.voice__card-text {
	font-size: 1rem;
}

.voice__arrow {
	height: 5rem;
	width: 5rem;
}

.voice__arrow svg {
	height: 1.625rem;
	width: 1.625rem;
}

.voice__arrow--prev {
	left: 2.25rem;
}

.voice__arrow--next {
	right: 2.25rem;
}

}

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

html {
	scroll-padding-top: 10rem;
}

}

@media (min-width: 1100px) {

html {
	font-size: 16px;
}

}

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

.issues__problem-body {
	gap: 2.5rem;
}

.issues__problem-item {
	font-size: 1.3125rem;
	gap: 1.25rem;
}

}

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

.how-to-proceed__content-inner {
	padding-left: 13.4375rem;
}

}

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

.certification__item.-cma .certification__item-content-main {
	margin-top: 0;
}

}

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

.certification__item-content {
	max-width: none;
	max-width: initial;
	padding-right: 2.5rem;
}

.-reverse .certification__item-content {
	padding-left: 2.5rem;
	padding-right: 0;
}

}

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

.footer__copy-right {
	max-width: 13.4375rem;
}

.benefits-corp__heading {
	font-size: 1.375rem;
}

.benefits-corp__item-body p {
	line-height: 1.9;
}

.benefits__item-img {
	order: 1;
}

.certification__heading {
	font-size: 1.75rem;
}

.fv__btns {
	bottom: -2rem;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	width: 90%;
}

.how-to-proceed__label-text {
	padding-left: 0.8125rem;
	width: 100%;
}

.how-to-proceed__item-content {
	margin-top: 0.375rem;
}

.issues__stat-content {
	display: contents;
}

.issues__stat-title {
	order: -1;
	text-align: center;
}

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

.issues__problem-body {
	padding: 1.25rem;
}

.price__item-head {
	min-height: 7.625rem;
}

}

@keyframes fv-person-rise {

from {
	clip-path: inset(0 0 100% 0);
	opacity: 0;
	transform: translateY(24px) scale(0.97);
}

15% {
	opacity: 1;
}

to {
	clip-path: inset(0 0 0% 0);
	opacity: 1;
	transform: translateY(0) scale(1);
}

}


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