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

:root {
	--inner-value: 1100;
	--inner: 1100px;
	--padding-pc: 25px;
	--padding-sp: 20px;
}

:root {
	--base-font: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic",
    "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
	--second-font: "Noto Sans JP", sans-serif;
	--en-font: "Inter", sans-serif;
	--fw-extralight: 200;
	--fw-light: 300;
	--fw-regular: 400;
	--fw-medium: 500;
	--fw-semibold: 600;
	--fw-bold: 700;
	--leading-trim: calc((1em - 1lh) / 2);
}

:root {
	--black: #000;
	--white: #fff;
	--main-black: #231815;
	--black-dark: #262626;
	--red: #ff4b00;
	--orange: #ff986e;
	--light-gray: #c3c3c3;
}

:root {
	--z-index-loader: 1000;
	--z-index-header: 100;
	--z-index-pagetop: 90;
}

:root {
	--rem: 1rem / 16;
	--em: 1em / 16;
	--vw: 1440 * 100vw;
	--inner-percent: var(--inner-value) * 100%;
}

:root {
	--header-height: calc(98 / 16 * 1rem);
	--scrollbar-width: 0;
}

@property --scrollbar {
	syntax: "<length>";
	initial-value: 0;
	inherits: true;
}

html {
	scroll-padding-top: var(--header-height);
}

body {
	container-type: inline-size;
	background-color: var(--white);
	font-family: var(--base-font);
	color: var(--main-black);
	font-weight: var(--fw-medium);
	line-height: 1.8;
}

html {
	font-size: 16px;
}

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

/* Remove default padding */

ul,
ol {
	padding: 0;
}

/* Remove default margin */

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

/* Set core root defaults */

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

/* Set core body defaults */

body {
	min-height: 100svh;
	text-rendering: optimizeLegibility;
	line-height: 1.5;
	line-break: strict;
	overflow-wrap: anywhere;
}

/* 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 {
	max-width: 100%;
	width: 100%;
	height: auto;
	display: block;
}

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

/* Inherit fonts for inputs and buttons */

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

/* picture*/

picture {
	display: block;
}

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

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

:where(dialog) {
	width: unset;
	max-width: unset;
	height: unset;
	max-height: unset;
	padding: unset;
	color: unset;
	background-color: unset;
	border: unset;
	overflow: unset;
}

:where(dialog:focus-visible) {
	outline: none;
}

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

input,
button,
select,
textarea {
	margin: 0;
	padding: 0;
	-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;
}

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

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

.inner {
	width: 100%;
	max-width: calc(var(--inner) + var(--padding-pc) * 2);
	margin-inline: auto;
	padding-inline: var(--padding-pc);
}

.layout-top-concept {
	margin-top: 4.0625rem;
}

.layout-top-service {
	margin-top: 7.25rem;
}

.layout-top-features {
	margin-top: 9.8125rem;
	padding-bottom: 5rem;
}

.bg-base {
	background-image: -webkit-image-set(url(../images/bg.avif) type("image/avif"), url(../images/bg.jpg) type("image/jpg"));
	background-image: image-set(url(../images/bg.avif) type("image/avif"), url(../images/bg.jpg) type("image/jpg"));
	background-repeat: repeat;
	background-position: center;
	background-size: 100% auto;
}

.button {
	--base-color: var(--red);
	--arrow-size: clamp(14px, 24/var(--vw), 24px);
	display: grid;
	grid-template-columns: auto var(--arrow-size);
	gap: 0.5rem;
	place-content: center;
	align-items: center;
	padding-block: 1rem;
	padding-inline: calc(21 * var(--em));
	background-color: #303030;
	border-radius: 0.25rem;
	font-size: max(13px, 1rem);
	font-family: var(--second-font);
	color: var(--white);
	transition: background-color 0.3s ease-out, color 0.3s ease-out, border-color 0.3s ease-out;
}

.button--reverse {
	grid-template-columns: 1fr var(--arrow-size);
	padding-block: 0.9375rem;
	border: 1px solid;
	background-color: transparent;
	color: var(--main-black);
}

.button::after {
	content: "";
	width: 100%;
	aspect-ratio: 1;
	background-color: currentColor;
	-webkit-mask-image: url(../images/icon-arrow.svg);
	mask-image: url(../images/icon-arrow.svg);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-size: contain;
	mask-size: contain;
}

.confirm-header {
	padding: 5rem 0;
}

.confirm-header__content {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	align-items: flex-start;
}

.confirm-header__title {
	font-size: 2rem;
	font-weight: var(--fw-bold);
	font-family: var(--base-font);
	color: var(--main-black);
	line-height: 1.8;
	letter-spacing: 0.05em;
	white-space: nowrap;
}

.confirm-header__description {
	font-size: 1rem;
	font-weight: var(--fw-medium);
	font-family: var(--base-font);
	color: var(--black);
	line-height: 1.75;
	white-space: normal;
}

.contact-form {
	max-width: 40.3125rem;
	margin: 0 auto;
	padding: 1.5rem 0;
}

.contact-form__row {
	margin-bottom: 1.5rem;
}

.contact-form__field {
	position: relative;
}

.contact-form__label {
	margin-bottom: 0.9375rem;
	display: flex;
	align-items: center;
	gap: 0.625rem;
}

.contact-form__label-text {
	font-size: 1rem;
	font-weight: var(--fw-bold);
	font-family: var(--base-font);
	color: var(--main-black);
	line-height: 1.5;
	letter-spacing: -0.02em;
}

.contact-form__required {
	display: inline-block;
	padding: 0.1875rem 0.625rem;
	font-size: 0.875rem;
	font-weight: var(--fw-bold);
	font-family: var(--base-font);
	color: var(--white);
	line-height: 1.5;
	letter-spacing: -0.02em;
	background-color: #f14668;
	border-radius: 0.25rem;
}

.contact-form__name-fields {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
}

.contact-form__name-field {
	flex: 1;
}

.contact-form__input {
	width: 100%;
	height: 3rem;
	padding: 0.625rem 0.9375rem;
	font-size: 0.875rem;
	font-weight: var(--fw-medium);
	font-family: var(--base-font);
	color: var(--black);
	line-height: 1.75;
	background-color: var(--white);
	border: 1px solid #e2e1e5;
	border-radius: 0.3125rem;
	outline: none;
	transition: border-color 0.3s ease;
}

.contact-form__input::-moz-placeholder {
	color: #d2d2d2;
	font-weight: var(--fw-bold);
}

.contact-form__input::placeholder {
	color: #d2d2d2;
	font-weight: var(--fw-bold);
}

.contact-form__input:focus {
	border-color: var(--orange);
}

.contact-form__textarea {
	width: 100%;
	padding: 0.625rem 0.9375rem;
	font-size: 0.875rem;
	height: 8.25rem;
	overflow: auto;
	font-weight: var(--fw-medium);
	font-family: var(--base-font);
	color: var(--black);
	line-height: 1.75;
	background-color: var(--white);
	border: 1px solid #e2e1e5;
	border-radius: 0.3125rem;
	outline: none;
	resize: vertical;
	transition: border-color 0.3s ease;
}

.contact-form__textarea:focus {
	border-color: var(--orange);
}

.contact-form__textarea::-moz-placeholder {
	color: #d2d2d2;
	font-weight: var(--fw-bold);
}

.contact-form__textarea::placeholder {
	color: #d2d2d2;
	font-weight: var(--fw-bold);
}

.contact-form__checkbox-label {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.5rem;
}

.wpcf7-list-item {
	margin: unset;
}

.wpcf7-acceptance {
	display: inline-block;
	aspect-ratio: 1;
	width: 1.25rem;
	position: relative;
}

.wpcf7-acceptance::after {
	content: "";
	display: block;
	position: absolute;
	inset: 0;
	aspect-ratio: 3/2;
	width: 0.6875rem;
	border-left: 2px solid #000;
	border-bottom: 2px solid #000;
	transform: rotate(-45deg);
	top: 23%;
	left: 25%;
	opacity: 0;
	pointer-events: none;
}

.wpcf7-acceptance input[type=checkbox] {
	display: block !important;
	width: 1.25rem;
	height: 1.25rem;
	border: 2px solid #303030;
	border-radius: 0.125rem;
	margin: 0;
	cursor: pointer;
}

.wpcf7-acceptance:has(input:checked)::after {
	opacity: 1;
}

.contact-form__checkbox-text {
	margin-top: -0.375rem;
	display: inline-block;
	font-size: 1rem;
	font-weight: var(--fw-bold);
	font-family: var(--base-font);
	color: var(--black);
	line-height: 1.75;
}

.contact-form__privacy-link {
	color: #0094ff;
	text-decoration: underline;
	-webkit-text-decoration-skip-ink: none;
	text-decoration-skip-ink: none;
	text-underline-position: from-font;
	transition: 0.3s ease-in-out all;
}

.contact-form__privacy-link:hover {
	text-decoration-color: transparent;
}

.contact-form__submit {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin-top: 1.5rem;
}

.contact-form__button {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 1rem 1.3125rem;
	min-width: 11.5625rem;
	height: 3.5rem;
	font-size: 1rem;
	font-weight: var(--fw-bold);
	font-family: var(--base-font);
	color: #eeeeee;
	line-height: 1;
	text-align: center;
	background-color: #303030;
	border: none;
	border-radius: 0.25rem;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.contact-form__button:hover {
	background-color: #404040;
}

.wpcf7-not-valid-tip {
	font-size: 0.75rem;
	color: #f14668;
	margin-top: 0.25rem;
}

.wpcf7-validation-errors {
	background-color: #f14668;
	color: var(--white);
	padding: 0.75rem;
	border-radius: 0.25rem;
	margin-bottom: 1.5rem;
}

.wpcf7-mail-sent-ok {
	background-color: #4caf50;
	color: var(--white);
	padding: 0.75rem;
	border-radius: 0.25rem;
	margin-bottom: 1.5rem;
}

.wpcf7-spinner {
	margin-top: 0.625rem;
}

.contact-form__value {
	font-size: 1rem;
	font-weight: var(--fw-bold);
	font-family: var(--base-font);
	color: var(--main-black);
	line-height: 1.6;
	letter-spacing: -0.02em;
}

.contact-form__back {
	font-size: 1rem;
	font-weight: var(--fw-medium);
	font-family: var(--base-font);
	color: #6e6e6e;
	line-height: 1.5;
	letter-spacing: -0.02em;
}

.contact {
	padding-block: 5.75rem;
	background-color: #292929;
}

.contact__sub-title.title {
	margin-top: 1rem;
	color: var(--white);
}

.contact__container {
	margin-top: 2.5rem;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 431px));
	gap: 2.5rem;
	justify-content: center;
}

.contact__content {
	display: grid;
	place-items: center;
	gap: 1rem;
	padding: 2.375rem;
	border-radius: 0.5rem;
	background-color: var(--white);
}

.contact__icon {
	width: 4rem;
}

.contact__icon img {
	aspect-ratio: 1;
	object-fit: contain;
}

.contact__head {
	font-size: 1.5rem;
	font-weight: var(--fw-bold);
	line-height: 1.8;
	letter-spacing: 0.05em;
}

.contact__text {
	text-align: center;
}

.contact__button {
	margin-top: 0.625rem;
	min-width: max(184px, 15rem);
}

.footer__container {
	display: grid;
	padding-block: 5.75rem 1.25rem;
	border-bottom: 1px solid var(--black);
}

.footer__logo {
	width: 18.4375rem;
	transition: opacity 0.3s ease;
}

.footer__logo img {
	aspect-ratio: 295/39;
	object-fit: contain;
}

.footer__nav {
	display: grid;
	grid-auto-columns: minmax(0, 16.5625rem);
	grid-template-rows: repeat(5, auto);
	grid-auto-flow: column;
	-moz-column-gap: 1.5rem;
	column-gap: 1.5rem;
	margin-top: 1.25rem;
}

.footer__nav-item {
	display: flex;
	align-items: center;
}

.footer__nav-link {
	display: block;
	padding-block: 0.25rem;
	width: 100%;
	font-size: max(14px, 1rem);
	font-weight: var(--fw-medium);
	line-height: 1.8;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	transition: color 0.3s ease-out;
}

.footer__nav-link--bold {
	font-weight: var(--fw-bold);
}

.footer__copyright {
	padding-block: 1.375rem 2.3125rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.footer__copyright small {
	display: inline-block;
}

.footer__copyright .shinsa {
	padding: 0.125rem 0.25rem;
	border: 1px solid var(--black);
}

.footer__copyright small {
	font-size: 13px;
	font-weight: var(--fw-medium);
	line-height: 1.8;
	letter-spacing: 0.05em;
}

.header {
	position: sticky;
	top: 0;
	inset-inline: 0;
	z-index: var(--z-index-header);
	height: var(--header-height);
	transition: background-color 0.3s ease-out, height 0.3s ease-out;
}

.header.is-scrolled {
	height: calc(var(--header-height) * 0.8);
}

.header__inner {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	margin-inline: auto;
	padding-inline: min(25 / var(--vw), 25px) min(29 / var(--vw), 29px);
	max-width: 1318px;
	height: inherit;
}

.header__logo {
	flex-shrink: 0;
	width: clamp(140px, 236 / var(--vw), 236px);
	height: inherit;
}

.header__logo-link {
	display: grid;
	align-items: center;
	height: 100%;
	transition: opacity 0.3s ease;
}

.header__logo-link img {
	object-fit: contain;
}

.header__nav {
	display: flex;
	align-items: center;
	gap: min(32 / var(--vw), 32px);
	height: inherit;
	margin-left: min(72 / var(--vw), 72px);
	padding-bottom: 0.125rem;
}

.header__nav-item {
	height: inherit;
}

.header__nav-link {
	display: grid;
	align-items: center;
	height: inherit;
	font-size: max(13px, 1rem);
	font-family: var(--en-font);
	color: var(--black);
	text-transform: uppercase;
	transition: letter-spacing 0.3s ease-out;
}

.header__nav-link span {
	display: inline-block;
	position: relative;
}

.header__nav-link span::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	translate: -50%;
	width: 0;
	height: 1px;
	background-color: currentColor;
	transform-origin: center;
	transition: width 0.3s ease-out;
}

.header__buttons {
	display: flex;
	align-items: center;
	gap: min(8 / var(--vw), 8px);
	margin-left: auto;
	padding-top: 0.25rem;
}

.header__button {
	flex-shrink: 0;
	min-width: min(170 / var(--vw), 170px);
}

.header__hamburger {
	display: none;
}

.header__hamburger::before {
	content: "";
	position: absolute;
	inset: 0;
	translate: -0.25rem;
	border-radius: 50%;
	border: 1px solid var(--black-dark);
	opacity: 0;
	transition: opacity 0.3s ease-out, scale 0.3s ease-out;
}

.header__hamburger.is-open::before {
	animation: ripple2 0.3s ease-out forwards;
}

.header__hamburger-line {
	--gap: calc(8 * var(--rem));
	--base-color: var(--black);
	display: grid;
	grid-template-areas: "stack";
	align-self: stretch;
	background-color: var(--base-color);
	transition: background-color 0.3s ease-out;
}

.header__hamburger-line::before {
	content: "";
	grid-area: stack;
	background-color: var(--base-color);
	translate: 0 calc(var(--gap) * -1);
	transform-origin: top left;
	transition: rotate 0.3s ease-out;
}

.header__hamburger-line::after {
	content: "";
	grid-area: stack;
	background-color: var(--base-color);
	transform-origin: bottom left;
	translate: 0 var(--gap);
	transition: rotate 0.3s ease-out;
}

.header__hamburger.is-open .header__hamburger-line {
	background-color: transparent;
}

.header__hamburger.is-open .header__hamburger-line::before {
	rotate: 45deg;
}

.header__hamburger.is-open .header__hamburger-line::after {
	rotate: -45deg;
}

.header__drawer {
	--bg-color: rgb(255 255 255 / 0.2);
	position: fixed;
	inset: 0;
	padding-top: var(--header-height);
	opacity: 0;
	visibility: hidden;
	background-image: radial-gradient(var(--bg-color), var(--bg-color)), -webkit-image-set(url(../images/bg_texture.avif) type("image/avif"), url(../images/bg_texture.jpg) type("image/jpg"));
	background-image: radial-gradient(var(--bg-color), var(--bg-color)), image-set(url(../images/bg_texture.avif) type("image/avif"), url(../images/bg_texture.jpg) type("image/jpg"));
	background-repeat: no-repeat, repeat;
	background-position: center, center;
	background-size: cover, 100% auto;
	transition: opacity 0.3s ease-out, visibility 0.3s ease-out;
}

.header__drawer.is-open {
	opacity: 1;
	visibility: visible;
}

.header__drawer-wrapper {
	display: grid;
	overflow-y: auto;
	scrollbar-width: none;
	height: 100%;
	padding-block: 2.5rem;
}

.header__drawer-wrapper::-webkit-scrollbar {
	display: none;
}

.header__drawer.is-open .header__drawer-nav {
	opacity: 1;
}

.header__drawer-list {
	display: grid;
	grid-template-columns: 1fr;
}

.header__drawer-item {
	width: 100%;
}

.header__drawer-link {
	display: block;
	padding-block: 1.25rem;
	font-size: 1rem;
	text-align: center;
	text-transform: uppercase;
}

.header__drawer-buttons {
	margin-top: 2.5rem;
	display: grid;
	justify-content: center;
	gap: 1.25rem;
}

.header__drawer-button {
	width: 13.75rem;
}

.js-section-title span {
	display: inline-block;
}

.js-section-title {
	position: relative;
	width: -moz-fit-content;
	width: fit-content;
	--clip-path: inset(0% 0% 0% 0%);
}

.js-section-title::after {
	content: "";
	display: block;
	position: absolute;
	width: 100%;
	height: 1px;
	background-color: var(--black);
	top: calc(50% + 1.125rem);
	left: 0;
	clip-path: var(--clip-path);
}

.js-section-title.section-title--white::after {
	background-color: var(--white);
}

body {
	opacity: 0;
}

.loader {
	position: fixed;
	z-index: 100;
	inset: 0;
	width: 100%;
	height: 100vh;
	overflow: auto;
	overscroll-behavior: none;
	scrollbar-width: none;
	background-image: -webkit-image-set(url(../images/bg.avif) type("image/avif"), url(../images/bg.jpg) type("image/jpg"));
	background-image: image-set(url(../images/bg.avif) type("image/avif"), url(../images/bg.jpg) type("image/jpg"));
	background-repeat: repeat;
	background-position: center;
	background-size: 100% auto;
}

.loader__wave {
	position: absolute;
	bottom: 2.5rem;
	left: 0;
	right: 0;
	width: 100%;
}

.loader__inner {
	height: calc(100% + 1px);
	width: 100%;
}

.loader__texts {
	margin-top: -5rem;
	height: 100%;
	display: grid;
	grid-template-columns: 1fr;
	place-content: center;
	gap: 1rem;
}

.loader__read {
	text-align: center;
	font-size: 4.5rem;
	font-weight: var(--fw-bold);
	font-family: var(--base-font);
	color: #000;
	line-height: 1.8;
	letter-spacing: 0.05em;
	overflow: hidden;
}

.loader__read span {
	display: inline-block;
}

.loader__logo {
	aspect-ratio: 507/67;
	width: 31.6875rem;
	margin-inline: auto;
}

.loader__logo img {
	object-fit: contain;
}

.slash {
	opacity: 0.5;
	transform: translateX(0.3125rem);
	clip-path: inset(0% 100% 0% 0%);
}

.layout-top-loop {
	margin-top: 10.125rem;
}

.loop-text {
	overflow-x: clip;
}

.loop-text__wrap {
	width: -moz-max-content;
	width: max-content;
	white-space: nowrap;
}

.loop-text__item {
	font-size: 6.625rem;
	font-weight: var(--fw-extralight);
	font-family: var(--en-font);
	color: #D3D3D3;
	line-height: 1.2075471698;
	letter-spacing: 0.1em;
}

.outer {
	--scrollbar: calc(100vw - 100cqw);
	min-height: 100vh;
}

.page-header {
	padding: 5rem 0 0;
}

.page-header__content {
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
	align-items: flex-start;
}

.page-header__title {
	font-size: 3.5rem;
	font-weight: var(--fw-semibold);
	font-family: var(--en-font);
	color: var(--black);
	line-height: 1;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	white-space: nowrap;
}

.page-header__subtitle-text {
	font-size: 1.5rem;
	font-weight: var(--fw-bold);
	font-family: var(--base-font);
	color: var(--main-black);
	line-height: 1.8;
	letter-spacing: 0.05em;
	white-space: nowrap;
}

.page-header__description {
	font-size: 1rem;
	font-weight: var(--fw-medium);
	font-family: var(--base-font);
	color: var(--black);
	line-height: 1.75;
	white-space: nowrap;
}

.page-header__line {
	margin-top: 1.625rem;
}

.page-header__line img {
	aspect-ratio: 1440/223;
	object-fit: cover;
}

.personalized-svg .circle-inner {
	animation: circle-inner2 2s ease-in-out forwards infinite;
}

.personalized-svg .circle-outer {
	animation: circle-outer2 2s ease-in-out forwards infinite;
}

.personalized-svg .bg {
	-webkit-mask-image: linear-gradient(to right, transparent, black 50%, black 100%);
	mask-image: linear-gradient(to right, transparent, black 50%, black 100%);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-size: 200% 100%;
	mask-size: 200% 100%;
	-webkit-mask-position: -100% 0;
	mask-position: -100% 0;
}

.personalized-svg.is-active .bg {
	animation: bg-mask 1.7s ease-in-out forwards;
}

.personalized-svg .wave {
	opacity: 0;
}

.personalized-svg.is-active .wave {
	animation: wave-animation 1.7s ease-in-out forwards;
}

.wave:nth-of-type(1) {
	transform: translateX(-0.625rem);
}

.wave:nth-of-type(2) {
	transform: translateX(-1.25rem);
}

.wave:nth-of-type(3) {
	transform: translateX(-2.5rem);
}

.wave:nth-of-type(4) {
	transform: translateX(-4.375rem);
}

.wave:nth-of-type(5) {
	transform: translateX(-6.875rem);
}

.wave:nth-of-type(6) {
	transform: translateX(-10rem);
}

.wave:nth-of-type(7) {
	transform: translateX(-13.75rem);
}

.wave:nth-of-type(8) {
	transform: translateX(-18.125rem);
}

.wave:nth-of-type(9) {
	transform: translateX(-23.125rem);
}

.wave:nth-of-type(10) {
	transform: translateX(-28.75rem);
}

.wave:nth-of-type(11) {
	transform: translateX(-35rem);
}

.wave:nth-of-type(12) {
	transform: translateX(-41.875rem);
}

.personalized-svg .icon {
	opacity: 0;
}

.personalized-svg.is-active .icon {
	animation: icon-animation 1.7s ease-in-out forwards;
}

.personalized-svg.is-active .icon:nth-of-type(1) {
	animation-delay: 0.9s;
}

.personalized-svg.is-active .icon:nth-of-type(2) {
	animation-delay: 1s;
}

.personalized-svg.is-active .icon:nth-of-type(3) {
	animation-delay: 1.1s;
}

.personalized-svg.is-active .icon:nth-of-type(4) {
	animation-delay: 1.2s;
}

.personalized-svg.is-active .icon:nth-of-type(5) {
	animation-delay: 1.3s;
}

.personalized-svg.is-active .icon:nth-of-type(6) {
	animation-delay: 1.4s;
}

.personalized-svg.is-active .icon:nth-of-type(7) {
	animation-delay: 1.5s;
}

.personalized-svg.is-active .icon:nth-of-type(8) {
	animation-delay: 1.6s;
}

.personalized-svg.is-active .icon:nth-of-type(9) {
	animation-delay: 1.7s;
}

.personalized-svg.is-active .icon:nth-of-type(10) {
	animation-delay: 1.8s;
}

.section-lead {
	display: grid;
	gap: 1rem;
	margin-top: 1rem;
}

.section-lead__logo {
	width: min(100%, 31.75rem);
}

.section-lead__logo img {
	object-fit: contain;
}

.section-title {
	font-size: 2.5rem;
	font-weight: var(--fw-semibold);
	font-family: var(--en-font);
	color: var(--black);
	line-height: 1.2;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.section-title--white {
	color: var(--white);
}

.service-svg .circle {
	opacity: 0;
	transform-box: fill-box;
	transform-origin: center bottom;
}

.service-svg.is-active .circle {
	animation: circle 1.5s cubic-bezier(0.62, 0, 0.18, 1) forwards;
}

.service-svg.is-active .circle-outer {
	animation-delay: 0.15s;
}

.service-svg .point {
	opacity: 0;
	animation-delay: 0.7s;
}

.service-svg.is-active .point {
	animation: point 1s ease-in-out forwards;
	animation-delay: 0.7s;
}

.service-svg .point-1 {
	transform: translate(0.5rem, 0);
}

.service-svg .point-2 {
	transform: translate(0, 0.5rem);
}

.service-svg .point-3 {
	transform: translate(-0.5rem, 0);
}

.service-svg .text {
	opacity: 0;
}

.service-svg.is-active .text {
	animation: text 1s ease-in-out forwards;
	animation-delay: 1.5s;
}

.service-svg .points {
	transform-box: fill-box;
	transform-origin: bottom center;
	transition: transform 0.3s ease-out;
}

.service-svg .points.left {
	transform: translate(3.4375rem, -2.5rem) rotate(-70deg);
}

.service-svg .points.left .point-1 > .point-wrap {
	opacity: 0;
}

.service-svg .points.left .point-text {
	transform: rotate(70deg);
}

.service-svg .points.right {
	transform: translate(-3.4375rem, -2.5rem) rotate(73deg);
}

.service-svg .points.right .point-text {
	transform: rotate(-73deg);
}

.service-svg .points.right .point-3 > .point-wrap {
	opacity: 0;
}

.service-svg .point-wrap {
	transition: opacity 0.3s ease-out;
}

.service-svg .point-text {
	transform-origin: center;
	transform-box: fill-box;
	transition: transform 0.3s ease-out;
}

.service-svg .arrow {
	opacity: 0;
	animation: arrow 3s ease-in-out forwards;
	animation-delay: 1.8s;
	transition: transform 0.3s ease-out;
}

.service-svg .arrow-right {
	transform: translate(-0.0625rem, -0.3125rem);
}

.service-svg:has(.points.left) .arrow-right {
	fill: transparent;
}

.service-svg:has(.points.right) .arrow-left {
	fill: transparent;
}

.service-svg.is-active + .service-svg__finger {
	animation: finger 3.5s ease-in-out forwards;
	animation-delay: 2s;
}

.service-svg__finger {
	opacity: 0;
	padding: 0.9375rem;
	border-radius: 0.625rem;
	background-color: rgba(255, 255, 255, 0.7);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 9.375rem;
	object-fit: contain;
	pointer-events: none;
}

.technology {
	margin-bottom: 5rem;
}

.technology__inner.inner {
	position: relative;
	z-index: 2;
}

.technology__lead {
	margin-top: 1.5rem;
}

.technology__list {
	margin-inline: auto;
	display: grid;
	gap: 1.5rem;
	margin-top: 5rem;
	width: min(100%, 933px);
}

.technology__item {
	display: grid;
	grid-template-columns: 316fr 577fr;
	grid-template-areas: "label body";
	gap: 2.5rem;
	align-items: center;
}

.technology__img {
	grid-area: label;
}

.technology__img img {
	aspect-ratio: 316/117;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 0.25rem;
}

.technology__label {
	grid-area: label;
	justify-self: center;
	font-size: 1.5rem;
	font-weight: var(--fw-bold);
	color: var(--white);
	line-height: 1.8;
	letter-spacing: 0.05em;
}

.technology__body {
	grid-area: body;
	display: grid;
	gap: 0.5rem;
}

.technology__head {
	font-size: 1.5rem;
	font-weight: var(--fw-bold);
	line-height: 1.8;
	letter-spacing: 0.05em;
}

.technology__note {
	font-size: max(10px, 0.8125rem);
	font-weight: var(--fw-medium);
	line-height: 1.8;
}

.technology__line {
	pointer-events: none;
	margin-top: 0.625rem;
	position: relative;
	z-index: 1;
}

.text {
	font-size: max(13px, 1rem);
	line-height: 1.8;
}

.text-s {
	font-size: max(12px, 0.875rem);
	line-height: 1.8;
}

.title {
	font-size: 2rem;
	font-weight: var(--fw-bold);
	line-height: 1.8;
	letter-spacing: 0.05em;
}

.voicence-company.is-active .circle-inner {
	animation: circle-inner 2s ease-in-out forwards infinite;
}

.voicence-company.is-active .circle-outer {
	animation: circle-outer 2s ease-in-out forwards infinite;
}

.voicence-company .wave-circle {
	opacity: 0;
	transform-box: fill-box;
	transform-origin: center;
}

.voicence-company.is-active .wave-circle {
	animation: wave-circle 2s cubic-bezier(0.62, 0, 0.18, 1) forwards;
}

.voicence-company .text {
	opacity: 0;
}

.voicence-company.is-active .text {
	animation: text 1.2s cubic-bezier(0.62, 0, 0.18, 1) forwards;
	animation-delay: 0.7s;
}

.page-404 {
	margin-top: 2.5rem;
}

.page-404__text {
	margin-bottom: 2.5rem;
}

.page-404__button {
	width: -moz-fit-content;
	width: fit-content;
	margin-inline: auto;
}

.pc-origin {
	margin-top: -2.5rem;
	margin-bottom: 3.75rem;
}

.pc-origin__lead {
	margin-bottom: 2.5rem;
}

.pc-origin__img {
	max-width: 55rem;
	margin-inline: auto;
}

.pc-origin__img img {
	aspect-ratio: 880/442;
	object-fit: contain;
}

.pc-mission {
	padding: 5rem 0 3.75rem;
}

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

.pc-mission__subtitle {
	width: 100%;
	font-size: 1.125rem;
	font-weight: var(--fw-semibold);
	font-family: var(--en-font);
	color: #6e6e6e;
	line-height: 1;
	letter-spacing: 0.1em;
	white-space: nowrap;
}

.pc-mission__line {
	width: 100%;
	height: 1px;
	background-color: var(--black);
}

.pc-mission__item {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	align-items: flex-start;
	width: 100%;
}

.pc-mission__item-header {
	display: flex;
	gap: 0.5rem;
	align-items: center;
}

.pc-mission__icon {
	width: 4rem;
	aspect-ratio: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.pc-mission__item-title {
	font-size: 2.5rem;
	font-weight: var(--fw-semibold);
	font-family: var(--en-font);
	color: var(--black);
	line-height: 1;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	white-space: nowrap;
}

.pc-mission__item-content {
	display: flex;
	flex-direction: column;
	gap: 1.5625rem;
	align-items: flex-start;
	width: 100%;
}

.pc-mission__item-heading {
	font-size: 2rem;
	font-weight: var(--fw-bold);
	font-family: var(--base-font);
	color: var(--main-black);
	line-height: 1.8;
	letter-spacing: 0.05em;
}

.pc-mission__item-text {
	font-size: 1rem;
	font-weight: var(--fw-medium);
	font-family: var(--base-font);
	color: var(--main-black);
	line-height: 1.8;
}

.pc-mission__value-diagram {
	position: relative;
	width: 41.4375rem;
	aspect-ratio: 663/310;
	margin: -1.25rem auto 0;
}

.pc-line {
	aspect-ratio: 1440/223;
	object-fit: cover;
}

.pc-line__1 {
	margin: 0 0 6.875rem;
}

.pc-partner {
	margin-bottom: 5rem;
}

.pc-partner__title {
	margin-bottom: 1.5rem;
}

.pc-partner__lead {
	margin-bottom: 5rem;
}

.pc-partner__text {
	text-transform: uppercase;
	text-align: center;
	font-size: 2.5rem;
	font-weight: var(--fw-semibold);
	font-family: var(--en-font);
	line-height: 1.2;
	letter-spacing: 0.1em;
	color: #d6d6d6;
}

.pc-company {
	margin-bottom: 9.75rem;
}

.pc-company__title {
	margin-bottom: 1rem;
}

.pc-company__info {
	margin-top: -1.25rem;
	width: -moz-fit-content;
	width: fit-content;
	margin-left: auto;
}

.pc-company__info-content {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	width: -moz-fit-content;
	width: fit-content;
}

.pc-company__info-item {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.pc-company__info-item-content {
	display: flex;
	gap: 2.5rem;
	align-items: center;
	padding-left: 2.5rem;
}

.pc-company__info-label {
	font-size: 1rem;
	font-weight: var(--fw-bold);
	font-family: var(--base-font);
	color: var(--black-dark);
	line-height: 1.5;
	letter-spacing: -0.02em;
	width: 9rem;
}

.pc-company__info-value {
	font-size: 1rem;
	font-weight: var(--fw-medium);
	font-family: var(--base-font);
	color: var(--black-dark);
	line-height: 1.5;
	letter-spacing: -0.02em;
	width: 50%;
	flex-grow: 1;
}

.pc-company__info-line {
	width: 50rem;
	height: 1px;
	background-color: #c3c3c3;
}

.page-confirm .contact-form__field--checkbox {
	display: none;
}

.page-contact .page-header__line {
	margin-top: -2.5rem;
	margin-bottom: -0.625rem;
}

.page-success__button .button {
	width: -moz-fit-content;
	width: fit-content;
	margin-inline: auto;
}

.fv {
	padding-block: 5rem;
}

.fv__container {
	display: grid;
	gap: 1rem;
	place-items: center;
}

.fv__list {
	display: flex;
	align-items: center;
}

.fv__item {
	display: grid;
	place-items: center;
	width: 7.125rem;
	padding-bottom: 0.5rem;
	aspect-ratio: 1;
	border-radius: 50%;
	font-size: 1.25rem;
	font-weight: var(--fw-bold);
	position: relative;
	--scale: 1;
}

.fv__item::after {
	content: "";
	display: block;
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 1px solid;
	border-radius: 50%;
	scale: var(--scale);
}

.fv__item:not(:first-of-type) {
	margin-left: -1.25rem;
}

.fv__title {
	display: grid;
	gap: 1rem;
	justify-items: center;
}

.fv__title-sub {
	position: relative;
	left: -0.375rem;
	font-size: 2.5rem;
	font-weight: var(--fw-bold);
	line-height: 1.8;
	letter-spacing: 0.05em;
	text-align: center;
}

.fv__title-main {
	width: min(100%, 31.75rem);
}

.fv__title-main img {
	aspect-ratio: 508/67;
	object-fit: contain;
}

.fv__line {
	margin-top: -0.75rem;
}

.fv__line img {
	aspect-ratio: 1440/223;
	object-fit: cover;
}

.top-concept {
	overflow-x: clip;
}

.top-concept__title-main {
	font-size: 3rem;
	font-weight: var(--fw-bold);
	line-height: 1.8;
	letter-spacing: 0.05em;
}

.top-concept__title-sub {
	margin-top: -0.3125rem;
	font-size: 2rem;
	font-weight: var(--fw-bold);
	line-height: 1.8;
	letter-spacing: 0.05em;
}

.top-concept__lead {
	margin-top: 1rem;
}

.top-concept__content {
	--circle-size: minmax(0, 241px);
	--list-margin: calc(58 * var(--rem));
	--list-gap: calc(41 * var(--rem));
	display: grid;
	grid-template-columns: var(--circle-size) auto var(--circle-size);
	grid-template-rows: repeat(5, auto);
	place-content: center;
	-moz-column-gap: 1.25rem;
	column-gap: 1.25rem;
	margin-top: 2.5rem;
}

.top-concept__item {
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 5;
	place-items: center;
}

.top-concept__head {
	font-size: 2rem;
	font-weight: var(--fw-semibold);
	font-family: var(--en-font);
	line-height: 1.8;
	letter-spacing: 0.05em;
}

.top-concept__circle:not(:has(audio)),
.top-concept__ripple {
	--start-color: var(--red);
	--end-color: var(--orange);
	position: relative;
	margin-top: 2.75rem;
}

.top-concept__ripple::before,
.top-concept__ripple::after {
	content: "";
	position: absolute;
	inset: 0;
	border: 1px solid var(--start-color);
	border-radius: 50%;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease-out, scale 0.3s ease-out;
}

.top-concept__ripple.is-play::before {
	animation: ripple 1.6s linear infinite;
}

.top-concept__ripple.is-play::after {
	animation: ripple 1.6s linear infinite;
	animation-delay: 0.6s;
}

.top-concept__circle {
	--start-color: #878787;
	--end-color: #d6d6d6;
	display: grid;
	place-content: center;
	place-items: center;
	width: 100%;
	aspect-ratio: 1;
	border-radius: 50%;
	background: radial-gradient(71.72% 71.72% at 69.7% 28.04%, #646464, #000000);
}

.top-concept__circle:has(audio) {
	position: relative;
	padding-top: 2.625rem;
}

.top-concept__circle:has(audio)::before,
.top-concept__circle:has(audio)::after {
	content: "";
	position: absolute;
	inset: 0;
	border: 1px solid var(--start-color);
	border-radius: 50%;
	pointer-events: none;
	opacity: 0;
}

.top-concept__circle-title {
	font-size: 2rem;
	font-weight: var(--fw-semibold);
	font-family: var(--en-font);
	line-height: 1.8;
	letter-spacing: 0.05em;
	color: var(--white);
}

.top-concept__logo {
	width: 81.3278008299%;
	filter: brightness(0) invert(1);
}

.top-concept__logo img {
	object-fit: contain;
}

.top-concept__cast {
	margin-top: 0.6875rem;
	font-size: 1rem;
	font-weight: var(--fw-bold);
	line-height: 1.8;
	letter-spacing: 0.05em;
	color: var(--white);
}

.top-concept__audio {
	margin-top: 0.375rem;
}

.top-concept__audio audio {
	display: none;
}

.top-concept__audio-button {
	--base-color: var(--white);
	--accent-color: var(--red);
	display: inline-grid;
	grid-template-columns: repeat(2, auto);
	gap: 0.25rem;
	place-items: center;
	padding-block: 0.65625rem;
	padding-inline: 0.9375rem;
	border: 1px solid var(--base-color);
	border-radius: calc(infinity * 1px);
	transition: background-color 0.3s ease-out;
}

.top-concept__audio-button span {
	font-size: 1rem;
	font-weight: var(--fw-bold);
	color: var(--base-color);
	line-height: 1;
	letter-spacing: 0.05em;
	text-box: trim-both cap alphabetic;
}

.top-concept__audio-button::after {
	content: "";
	width: calc(17 * var(--em));
	aspect-ratio: 17/14;
	background-color: var(--base-color);
	-webkit-mask-image: url(../images/icon-sound.svg);
	mask-image: url(../images/icon-sound.svg);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-size: contain;
	mask-size: contain;
}

.top-concept__audio[data-play=play] .top-concept__audio-button {
	background-color: var(--accent-color);
	border-color: var(--accent-color);
}

.top-concept__points {
	margin-top: var(--list-margin);
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 3;
	gap: var(--list-gap);
	align-items: center;
}

.top-concept__point {
	font-size: max(13px, 1rem);
	font-weight: var(--fw-bold);
	line-height: 1.8;
	text-align: center;
}

.top-concept__labels {
	margin-top: var(--list-margin);
	display: grid;
	grid-template-rows: subgrid;
	grid-row: 3/-1;
	grid-column-start: 2;
	gap: var(--list-gap);
	align-items: center;
}

.top-concept__label {
	padding: 0.125rem 1.5em;
	border-radius: 999em;
	background-color: var(--white);
	font-size: 1.125rem;
	font-weight: var(--fw-bold);
	line-height: 1.8;
	letter-spacing: 0.05em;
}

.top-service {
	container-type: inline-size;
	overflow-x: clip;
}

.top-service__lead {
	margin-top: 1rem;
}

.top-service__content {
	margin-top: 2.5rem;
}

.top-service__content-title {
	font-size: 0.875rem;
	font-weight: var(--fw-bold);
	line-height: 1.8;
	letter-spacing: 0.05em;
	text-align: center;
}

.top-service__accordion {
	position: relative;
	z-index: 1;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 0.9375rem 0.75rem;
	justify-content: center;
	margin-top: 1.25rem;
}

.top-service__accordion-item {
	border: 2px solid #565656;
	border-radius: 0.125rem;
	width: calc((100% - 0.75rem) / 2);
	background-color: color-mix(in srgb, var(--white) 80%, transparent);
}

.top-service__accordion-item-head {
	display: grid;
	grid-template-columns: auto 0.875rem;
	gap: 0.5rem;
	place-content: center;
	align-items: center;
	padding: 0.5rem;
	font-size: 0.8125rem;
	font-weight: var(--fw-bold);
	line-height: 1.8;
	letter-spacing: 0.05em;
	text-align: center;
}

.top-service__accordion-item-head::after {
	content: "";
	width: 0.875rem;
	aspect-ratio: 14/13;
	background-color: currentColor;
	-webkit-mask-image: url(../images/icon-chevron.svg);
	mask-image: url(../images/icon-chevron.svg);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-size: contain;
	mask-size: contain;
	transition: 0.3s ease-in-out all;
	transform: scaleY(-1);
}

.top-service__accordion-item-head.is-open::after {
	transform: scaleY(1);
}

.top-service__accordion-item-body {
	display: none;
	padding: 0 0.5rem 0.5rem;
	font-size: 0.8125rem;
	font-weight: var(--fw-bold);
	line-height: 1.8;
	letter-spacing: 0.05em;
}

.top-service__img-wrap {
	cursor: ew-resize;
	margin-top: -5.625rem;
	margin-inline: calc(50% - 50cqi);
	padding-bottom: 2.5rem;
}

.top-service__img {
	margin-top: 2.5rem;
	margin-inline: auto;
	width: min(100%, 62.125rem);
}

.top-service__img img {
	aspect-ratio: 994/673;
	width: 100%;
	object-fit: contain;
}

.top-service__line {
	margin-top: 2.125rem;
}

.top-service__line img {
	aspect-ratio: 1440/268;
	object-fit: cover;
}

.top-features__container {
	counter-reset: feature;
	display: grid;
	gap: 5.25rem;
	margin-top: 1.5rem;
}

.top-features__content {
	counter-increment: feature;
	display: grid;
	gap: 2.5rem;
}

.top-features__head {
	display: grid;
}

.top-features__head::before {
	content: "0" counter(feature);
	font-family: var(--en-font);
	font-weight: var(--fw-semibold);
	color: #afafaf;
}

.top-features__img {
	margin-inline: auto;
	width: min(100%, 50.25rem);
}

.top-features__img img {
	aspect-ratio: 1;
	width: 100%;
	height: auto;
	object-fit: contain;
}

.top-features__intro-head {
	text-align: center;
}

.top-features__intro-list {
	margin-top: 4.625rem;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.625rem;
}

.top-features__intro-item {
	--radius: calc(4 * var(--rem));
	position: relative;
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 6;
	gap: 0;
	background-color: var(--white);
	border-radius: var(--radius);
}

.top-features__intro-label {
	position: absolute;
	top: 0;
	left: 0.8125rem;
	transform: translateY(-50%);
	display: inline-grid;
	place-items: center;
	width: 5.375rem;
	aspect-ratio: 1;
	border-radius: 50%;
	background: linear-gradient(253.46deg, #ff4b00 -6.64%, #484848 19.29%, #231815 101.25%);
	font-size: 1rem;
	font-weight: var(--fw-bold);
	color: var(--white);
	line-height: 1.5;
	text-align: center;
}

.top-features__intro-figure img {
	aspect-ratio: 360/197;
	height: 100%;
	object-fit: cover;
	border-top-left-radius: var(--radius);
	border-top-right-radius: var(--radius);
}

.top-features__intro-body {
	position: relative;
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 5;
	place-content: center;
	justify-items: center;
	padding: 1rem 1rem 1.875rem;
}

.top-features__intro-body::after {
	content: "";
	grid-row-start: 3;
	margin-top: 0.875rem;
	display: block;
	width: 2.75rem;
	aspect-ratio: 44/22;
	background-color: #d9d9d9;
	clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.top-features__intro-title {
	font-size: 1.125rem;
	font-weight: var(--fw-bold);
	line-height: 1.8;
	letter-spacing: 0.05em;
	text-align: center;
}

.top-features__intro-text {
	position: relative;
	margin-top: 0.5rem;
	max-width: max(92%, 19rem);
	font-size: 0.875rem;
	font-weight: var(--fw-medium);
	line-height: 1.8;
	letter-spacing: 0.05em;
	text-align: left;
}

.top-features__intro-benefits-head {
	margin-top: 0.5rem;
	font-size: 0.875rem;
	font-weight: var(--fw-medium);
	line-height: 1.8;
	letter-spacing: 0.05em;
	text-align: center;
	color: var(--main-black);
}

.top-features__intro-benefits {
	margin-top: 0.25rem;
	display: grid;
	gap: 0.25rem;
	align-content: start;
	width: 100%;
}

.top-features__intro-benefit {
	display: flex;
	align-items: center;
	gap: 0.25rem;
	font-size: max(10px, 0.875rem);
	font-weight: var(--fw-bold);
	line-height: 1.8;
	font-feature-settings: "palt";
	overflow-wrap: anywhere;
	word-break: keep-all;
}

.top-features__intro-benefit::before {
	content: "";
	width: 1.5rem;
	aspect-ratio: 1;
	background-color: currentColor;
	-webkit-mask-image: url(../images/icon-check.svg);
	mask-image: url(../images/icon-check.svg);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-size: contain;
	mask-size: contain;
	flex-shrink: 0;
}

.personalized {
	padding-block: 4.375rem 5rem;
	background-color: var(--white);
}

.personalized__inner {
	position: relative;
	margin-inline: auto;
	max-width: 52.375rem;
}

.personalized__text {
	position: absolute;
	top: 0.8125rem;
	left: 0;
	font-size: 1.5rem;
	font-weight: var(--fw-bold);
	line-height: 1.8;
}

.personalized__img svg {
	aspect-ratio: 838/634;
	width: 100%;
	height: auto;
	object-fit: contain;
}

.personalized__point {
	position: absolute;
	bottom: -1.125rem;
	left: 0;
}

.personalized__point-head {
	padding-inline: 1.6875rem;
	font-size: max(12px, 1rem);
	font-weight: var(--fw-bold);
	line-height: 1.8;
	letter-spacing: 0.05em;
}

.personalized__point-list {
	margin-top: 1.125rem;
	padding-left: 0.8125rem;
}

.personalized__point-item {
	display: flex;
	gap: 0.5em;
	align-items: center;
	font-size: max(12px, 1rem);
	font-weight: var(--fw-bold);
	line-height: 1.8;
	letter-spacing: 0.05em;
}

.personalized__point-item::before {
	content: "";
	flex-shrink: 0;
	width: 0.25rem;
	aspect-ratio: 1;
	background-color: currentColor;
	border-radius: 50%;
}

.inline-block {
	display: inline-block;
}

.pc-only {
	display: block;
}

.sp-only {
	display: none;
}

.visually-hidden {
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	width: 1px;
	height: 1px;
	overflow: hidden;
	position: absolute;
	inset: 0;
	white-space: nowrap;
}

@media (any-hover: hover) {

.button:hover {
	background-color: var(--base-color);
}

.button--reverse:hover {
	border-color: var(--base-color);
	color: var(--white);
}

.footer__logo:hover {
	opacity: 0.6;
}

.footer__nav-link:hover {
	color: var(--red);
}

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

.header__nav-link:hover {
	letter-spacing: 0.1em;
}

.header__nav-link:hover span::after {
	width: 100%;
}

.top-concept__circle:not(.is-play):has(.top-concept__audio-button:hover)::before {
	animation: ripple 1.6s linear infinite;
}

.top-concept__circle:not(.is-play):has(.top-concept__audio-button:hover)::after {
	animation: ripple 1.6s linear infinite;
	animation-delay: 0.6s;
}

}

@media (min-width: 768px) {

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

}

@media (max-width: 1100px) {

html {
	font-size: 1.4545454545vw;
}

}

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

:root {
	--vw: 375 * 100vw;
}

:root {
	--header-height: calc(65 / 16 * 1rem);
}

html {
	font-size: 16px;
}

.inner {
	max-width: 600px;
	padding-inline: var(--padding-sp);
}

.layout-top-concept {
	margin-top: unset;
}

.layout-top-features {
	margin-top: 3.125rem;
}

.button--reverse {
	grid-template-columns: auto var(--arrow-size);
}

.confirm-header {
	padding: 3.75rem 0;
}

.confirm-header__title {
	font-size: 1.5rem;
	letter-spacing: 0.04em;
}

.confirm-header__description {
	font-size: 0.875rem;
	line-height: 1.6;
}

.contact-form__input {
	font-size: 0.75rem;
}

.contact-form__textarea {
	font-size: 0.75rem;
	height: 6.25rem;
}

.contact-form__button {
	font-size: 0.875rem;
	padding: 0.75rem 1rem;
	min-width: 10rem;
	height: 3rem;
}

.contact {
	padding-block: 3.75rem;
}

.contact__sub-title.title {
	font-size: 1.375rem;
}

.contact__container {
	grid-template-columns: 1fr;
	gap: 1.875rem;
}

.contact__content {
	gap: 0.5rem;
	padding: 1.875rem;
}

.contact__head {
	font-size: 1.25rem;
}

.footer__container {
	padding-block: 4.375rem 1.875rem;
}

.footer__logo {
	width: 15rem;
}

.footer__nav {
	grid-auto-columns: auto;
	-moz-column-gap: 1.25rem;
	column-gap: 1.25rem;
	margin-top: 1.875rem;
}

.footer__nav-link {
	line-height: 2.4;
}

.header.is-scrolled {
	height: var(--header-height);
}

.header__inner {
	justify-content: space-between;
	padding-inline: 1.25rem;
}

.header__logo {
	width: 10rem;
}

.header__nav {
	display: none;
}

.header__button {
	display: none;
}

.header__hamburger {
	position: relative;
	display: grid;
	grid-template: 2px/calc(24 * var(--rem));
	align-content: center;
	aspect-ratio: 1;
	transition: rotate 0.3s ease-out;
}

.header__drawer-inner.inner {
	max-width: 420px;
}

.js-section-title::after {
	top: calc(50% + 0.625rem);
}

.loader__texts {
	gap: 0.625rem;
	margin-top: -0.625rem;
}

.loader__read {
	font-size: 2.5rem;
}

.loader__logo {
	width: 18.75rem;
}

.loop-text__item {
	font-size: 4rem;
}

.page-header {
	padding: 3.75rem 0 0;
}

.page-header__title {
	font-size: 2.5rem;
	letter-spacing: 0.1em;
}

.page-header__subtitle-text {
	font-size: 1.25rem;
	letter-spacing: 0.05em;
}

.page-header__description {
	font-size: 0.875rem;
	line-height: 1.6;
	white-space: normal;
}

.page-header__line {
	margin-top: 0.875rem;
}

.wave:nth-of-type(1) {
	transform: translateX(-0.625rem);
}

.wave:nth-of-type(2) {
	transform: translateX(-1.25rem);
}

.wave:nth-of-type(3) {
	transform: translateX(-1.875rem);
}

.wave:nth-of-type(4) {
	transform: translateX(-2.5rem);
}

.wave:nth-of-type(5) {
	transform: translateX(-3.125rem);
}

.wave:nth-of-type(6) {
	transform: translateX(-3.75rem);
}

.wave:nth-of-type(7) {
	transform: translateX(-4.375rem);
}

.wave:nth-of-type(8) {
	transform: translateX(-5rem);
}

.wave:nth-of-type(9) {
	transform: translateX(-5.625rem);
}

.wave:nth-of-type(10) {
	transform: translateX(-6.25rem);
}

.wave:nth-of-type(11) {
	transform: translateX(-6.875rem);
}

.wave:nth-of-type(12) {
	transform: translateX(-7.5rem);
}

.section-lead__logo {
	width: min(100%, 18.75rem);
}

.section-title {
	font-size: 2rem;
}

.technology {
	margin-bottom: 3.75rem;
}

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

.technology__list {
	margin-top: 2.5rem;
	gap: 1.875rem;
}

.technology__item {
	grid-template-columns: 1fr;
	grid-template-areas: "label" "body";
	gap: 0.9375rem;
}

.technology__head {
	font-size: 1.25rem;
	text-align: center;
}

.title {
	font-size: 1.5rem;
}

.pc-origin {
	margin-top: 0.9375rem;
	overflow: hidden;
}

.pc-origin__img {
	margin-left: -1.875rem;
	width: calc(100% + 3.75rem);
}

.pc-mission {
	padding: 3.75rem 0;
}

.pc-mission__content {
	gap: 1.875rem;
}

.pc-mission__subtitle {
	font-size: 1rem;
	letter-spacing: 0.08em;
}

.pc-mission__item {
	gap: 1.125rem;
}

.pc-mission__item-header {
	gap: 0.375rem;
}

.pc-mission__icon {
	width: 2.5rem;
}

.pc-mission__item-title {
	font-size: 1.75rem;
	letter-spacing: 0.08em;
}

.pc-mission__item-content {
	gap: 0.9375rem;
}

.pc-mission__item-heading {
	font-size: 1.125rem;
	letter-spacing: 0.04em;
	white-space: normal;
}

.pc-mission__item-text {
	font-size: 0.875rem;
	line-height: 1.6;
}

.pc-mission__value-diagram {
	margin-left: -1.25rem;
	width: calc(100% + 2.5rem);
	height: auto;
	min-height: 12.5rem;
}

.pc-line__1 {
	margin: 0 0 3.75rem;
}

.pc-partner {
	margin-bottom: 7.5rem;
}

.pc-partner__lead {
	margin-bottom: 3.75rem;
}

.pc-partner__text {
	font-size: 1.75rem;
}

.pc-company {
	margin-bottom: 3.75rem;
}

.pc-company__info {
	margin-top: 1.875rem;
}

.pc-company__info-item-content {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.625rem;
	align-items: unset;
	padding-left: unset;
}

.pc-company__info-label {
	width: 100%;
}

.pc-company__info-value {
	width: 100%;
}

.pc-company__info-line {
	width: 100%;
}

.page-contact .page-header__line {
	margin-top: 0.625rem;
	margin-bottom: unset;
}

.fv {
	padding: 6.25rem 0 3.75rem;
}

.fv__item {
	padding-bottom: initial;
}

.fv__title-sub {
	left: initial;
	font-size: 1.5rem;
}

.fv__title-main {
	width: 18.75rem;
}

.fv__line {
	margin-top: 3.75rem;
}

.top-concept__title-main {
	font-size: 1.75rem;
}

.top-concept__title-sub {
	font-size: 1.25rem;
	overflow-wrap: anywhere;
	word-break: keep-all;
}

.top-concept__content {
	-moz-column-gap: 0;
	column-gap: 0;
}

.top-concept__head {
	font-size: 1.5rem;
}

.top-concept__circle:has(audio) {
	padding-top: 0.625rem;
}

.top-concept__circle-title {
	font-size: 1.125rem;
}

.top-concept__logo {
	width: 70%;
}

.top-concept__cast {
	margin-top: 0.25rem;
	font-size: 0.75rem;
	overflow-wrap: anywhere;
	word-break: keep-all;
	text-align: center;
	line-height: 1.3;
}

.top-concept__audio {
	margin-top: 0.1875rem;
}

.top-concept__audio-button {
	padding: 0.3125rem 0.625rem;
}

.top-concept__audio-button span {
	font-size: 0.75rem;
}

.top-concept__point {
	font-size: 0.875rem;
}

.top-concept__label {
	padding-inline: 1rem;
	font-size: 0.875rem;
}

.top-service__img {
	width: 41.3125rem;
	margin-left: 50%;
	transform: translateX(-50%);
	position: relative;
}

.top-service__img img {
	aspect-ratio: 661/505;
}

.top-service__line {
	margin-top: 0.625rem;
}

.top-features__container {
	gap: 4.5rem;
	margin-top: 1rem;
}

.top-features__head.title {
	font-size: 1.125rem;
}

.top-features__img {
	position: relative;
	left: 50%;
	translate: -50%;
	width: calc(100% + 0.5rem);
}

.top-features__img img {
	aspect-ratio: 358/633;
}

.top-features__intro {
	margin-top: 3.125rem;
}

.top-features__intro-list {
	margin-top: 3.75rem;
	grid-template-columns: minmax(0, 28.75rem);
	gap: 2.5rem;
	justify-content: center;
}

.top-features__intro-label {
	top: 0.5rem;
	width: 4.75rem;
	font-size: 0.875rem;
}

.top-features__intro-body {
	padding-inline: calc(16 / var(--vw));
	padding-bottom: 1.25rem;
}

.top-features__intro-title {
	font-size: 1rem;
}

.top-features__intro-text {
	font-size: 0.875rem;
}

.top-features__intro-benefit {
	font-size: 0.8125rem;
}

.personalized {
	padding-block: 5rem 6.25rem;
}

.personalized__inner {
	max-width: calc(100% - 20 / var(--vw));
}

.personalized__text {
	top: -3.125rem;
	left: 0.5rem;
	font-size: 1rem;
	line-height: 1.6;
}

.personalized__point {
	bottom: -4.375rem;
}

.personalized__point-head {
	padding-inline: 1rem;
	font-size: 0.875rem;
}

.personalized__point-list {
	margin-top: 0.5rem;
	padding-left: 0.625rem;
}

.personalized__point-item {
	font-size: 0.8125rem;
}

.pc-only {
	display: none;
}

.sp-only {
	display: block;
}

}

@media (max-width: 767px) {

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

}

@media (max-width: 374px) {

html {
	font-size: 4.2666666667vw;
}

}

@keyframes ripple2 {

0% {
	scale: 0.7;
	opacity: 0;
}

10% {
	opacity: 1;
}

100% {
	scale: 2;
	opacity: 0;
}

}

@keyframes loop {

0% {
	transform: translateX(0);
}

100% {
	transform: translateX(-100%);
}

}

@keyframes circle-inner2 {

0% {
	r: 76.8px;
}

50% {
	opacity: 1;
}

100% {
	r: 87.4371px;
	opacity: 0;
}

}

@keyframes circle-outer2 {

0% {
	r: 76.8px;
}

50% {
	opacity: 1;
}

100% {
	r: 95.415px;
	opacity: 0;
}

}

@keyframes bg-mask {

0% {
	-webkit-mask-position: -100% 0;
	mask-position: -100% 0;
}

100% {
	-webkit-mask-position: 100% 0;
	mask-position: 100% 0;
}

}

@keyframes wave-animation {

0% {
	opacity: 0;
}

100% {
	opacity: 1;
	transform: translateX(0);
}

}

@keyframes icon-animation {

0% {
	opacity: 0;
}

100% {
	opacity: 1;
}

}

@keyframes circle {

0% {
	opacity: 0;
	transform: scale(0);
}

100% {
	opacity: 1;
	transform: scale(1);
}

}

@keyframes point {

to {
	opacity: 1;
	transform: translate(0, 0);
}

}

@keyframes text {

to {
	opacity: 1;
}

}

@keyframes finger {

0% {
	opacity: 0;
}

15% {
	opacity: 1;
}

30% {
	opacity: 0;
}

45% {
	opacity: 1;
}

60% {
	opacity: 0;
}

75% {
	opacity: 1;
}

90% {
	opacity: 0;
}

100% {
	opacity: 0;
}

}

@keyframes circle-inner {

0% {
	opacity: 0;
	r: 121px;
}

50% {
	opacity: 1;
}

100% {
	r: 137px;
	opacity: 0;
}

}

@keyframes circle-outer {

0% {
	opacity: 0;
	r: 121px;
}

50% {
	opacity: 1;
}

100% {
	r: 149px;
	opacity: 0;
}

}

@keyframes wave-circle {

0% {
	opacity: 0;
	transform: rotate(-45deg);
}

100% {
	opacity: 1;
	transform: rotate(0deg);
}

}

@keyframes text {

0% {
	opacity: 0;
}

100% {
	opacity: 1;
}

}

@keyframes ripple {

0% {
	scale: 1;
	opacity: 0;
	border-color: var(--start-color);
}

10% {
	opacity: 1;
}

100% {
	scale: 1.4;
	opacity: 0;
	border-color: var(--end-color);
}

}

