html {
	font-size: 16px;
}

:root {
	--header-h: 4rem;
}

body {
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	color: #282828;
}

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

/*
 * 参考
 * https: //github.com/Andy-set-studio/modern-css-reset/blob/master/src/reset.css
*/

/* Box sizing rules */

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

/* remove default margin */

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

/* remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */

ul,
ol {
	list-style: none;
	margin: 0;
	padding: 0;
}

/* Set core root defaults */

html:focus-within {
	scroll-behavior: smooth;
}

/* Set core body defaults */

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

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

/* Inherit fonts for inputs and buttons */

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

li {
	list-style: none;
	margin: 0;
	padding: 0;
}

/* remove all animations and transitions for people that prefer not to see them */

button {
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.inner {
	width: 100%;
	max-width: 600px;
	margin-inline: auto;
	padding-inline: 20px;
}

.inner2 {
	width: 100%;
	max-width: 600px;
	margin-inline: auto;
	padding-inline: 20px;
}

.layout-content {
	margin-top: 2.5rem;
}

.layout-content.layout-content--narrow {
	margin-top: 1.875rem;
}

.footer {
	background-color: #fff;
}

.layout-partners {
	margin-top: 5rem;
}

.sidebar-layout {
	display: flex;
	flex-direction: column;
	gap: 3rem;
	padding-top: 2.5rem;
	padding-bottom: 5rem;
}

.layout-strength {
	margin-top: 3.75rem;
}

main {
	padding-top: 4rem;
}

.home main {
	background-color: #f1f1f1;
}

.breadcrumb__inner {
	padding-top: 0.75rem;
	padding-bottom: 0.75rem;
}

.breadcrumb__list {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.25rem 0.5rem;
	list-style: none;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 700;
	font-size: 1rem;
	line-height: 2;
	color: #fff;
	background-color: #5c3f8f;
	width: -moz-fit-content;
	width: fit-content;
	padding-inline: 0.25rem;
}

.breadcrumb__item::before {
	content: "＞";
	margin-right: 0.5rem;
	color: #fff;
}

.breadcrumb__item:first-child::before {
	display: none;
}

.btn {
	display: inline-block;
	min-width: 200px;
	padding: 10px 20px;
	color: #fff;
	font-size: 16px;
	font-weight: 500;
	background-color: #5c3f8f;
	border: 1px solid #5c3f8f;
	transition: 0.3s;
}

.btn::after {
	content: "";
	display: inline-block;
	margin-left: 16px;
	width: 10px;
	height: 10px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	transform: rotate(45deg);
	transition: 0.3s;
}

.cat {
	min-width: 100px;
	font-size: 12px;
	background-color: skyblue;
	border: 1px solid skyblue;
	padding: 4px 10px;
	color: #fff;
	text-align: center;
	display: inline-block;
}

.cat.is-current {
	color: red;
}

.circle-button {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.25rem;
	padding-top: 1rem;
	width: 12.5rem;
	aspect-ratio: 1/1;
	flex-shrink: 0;
	border: 0.0625rem solid currentColor;
	border-radius: 50%;
	background-color: transparent;
	font-family: "mfw-pa1gothicstdn-bold", "A P-OTF A1Gothic Std", sans-serif;
	font-size: 1.625rem;
	line-height: 1.1428571429;
	text-align: center;
	text-decoration: none;
	transition: background-color 0.3s, color 0.3s;
}

.circle-button--white {
	color: #fff;
	isolation: isolate;
	overflow: hidden;
}

.circle-button--white::before {
	content: "";
	position: absolute;
	inset: 0;
	background-color: #fff;
	clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
	z-index: -1;
	transition: clip-path 0.3s ease-out;
}

.circle-button--theme {
	color: #5c3f8f;
	isolation: isolate;
	overflow: hidden;
}

.circle-button--theme::before {
	content: "";
	position: absolute;
	inset: 0;
	background-color: #5c3f8f;
	clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
	z-index: -1;
	transition: clip-path 0.3s ease-out;
}

.circle-button__arrow {
	font-family: "Afacad", sans-serif;
	font-size: 1.375rem;
	line-height: 1;
	letter-spacing: -0.15em;
}

.circle-button--white .circle-button__arrow,
.circle-button--theme .circle-button__arrow {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.875rem;
	height: 1.375rem;
	overflow: hidden;
	font-size: 0;
}

.circle-button--white .circle-button__arrow::before,
.circle-button--white .circle-button__arrow::after,
.circle-button--theme .circle-button__arrow::before,
.circle-button--theme .circle-button__arrow::after {
	content: "→";
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.125rem;
	transition: transform 0.3s ease-out;
}

.circle-button--white .circle-button__arrow::before,
.circle-button--theme .circle-button__arrow::before {
	transform: translateX(0);
}

.circle-button--white .circle-button__arrow::after,
.circle-button--theme .circle-button__arrow::after {
	transform: translateX(-150%);
}

.column2 {
	display: grid;
	gap: prem(30);
	grid-template-columns: repeat(2, 1fr);
}

.column2--gap60 {
	gap: prem(30);
}

.column3 {
	display: grid;
	gap: prem(30);
	grid-template-columns: repeat(3, 1fr);
}

.column4 {
	display: grid;
	gap: prem(30);
	grid-template-columns: repeat(4, 1fr);
}

.layout-project-slider {
	padding-block: 5rem;
}

.list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.list + .list {
	margin-top: 30px;
}

.list__title {
	width: 20%;
}

.list__text {
	width: 79.8%;
}

.news-item__article {
	border-bottom: 1px solid #000;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	padding: 1rem 0;
	color: inherit;
	text-decoration: none;
	transition: opacity 0.3s, color 0.3s, border-color 0.3s;
}

.news-item:first-child .news-item__article {
	padding-top: 0;
}

.news-item__meta {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.news-item__date {
	font-family: "mfw-pa1gothicstdn-bold", "A P-OTF A1Gothic Std", sans-serif;
	font-size: 1rem;
	color: #494949;
	letter-spacing: -0.01em;
	line-height: 1;
	opacity: 0.4;
}

.news-item__cat {
	display: inline-block;
	padding: 0.3125rem 0.53125rem;
	border: 1px solid #014896;
	border-radius: 0.1875rem;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 0.875rem;
	color: #014896;
	letter-spacing: 0em;
	line-height: 1;
}

.news-item__title {
	font-family: "mfw-pa1gothicstdn-bold", "A P-OTF A1Gothic Std", sans-serif;
	font-size: 1.125rem;
	color: #000;
	transition: color 0.3s;
	line-height: 1.6;
	letter-spacing: -0.1em;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	line-clamp: 1;
	overflow: hidden;
}

.pagination {
	margin-top: 3rem;
}

.pagination .page-numbers {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.375rem;
	list-style: none;
}

.pagination .page-numbers li {
	display: flex;
}

.pagination .page-numbers a,
.pagination .page-numbers span {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 2.0625rem;
	height: 2.0625rem;
	padding: 0.0625rem 0.375rem;
	background-color: #f5f5f5;
	color: #282828;
	font-size: 0.875rem;
	text-decoration: none;
	border: 1px solid transparent;
	transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}

.pagination .page-numbers .current {
	background-color: #5c3f8f;
	color: #fff;
}

.pagination .page-numbers .dots {
	background-color: transparent;
	pointer-events: none;
}

.pagination .page-numbers .prev,
.pagination .page-numbers .next {
	min-width: 2.25rem;
	height: 2.25rem;
	padding: 0.5rem 0.625rem;
	background-color: #5c3f8f;
	color: #fff;
	font-size: 1.125rem;
	border-color: #5c3f8f;
}

.rounded-button {
	max-width: -moz-fit-content;
	max-width: fit-content;
	margin-left: auto;
	margin-top: 1.5rem;
}

.rounded-button__link {
	position: relative;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	min-width: min(100%, 12.5rem);
	padding-block: 0.5625rem;
	padding-inline: 1.875rem 1.5625rem;
	overflow: clip;
	background-color: #5c3f8f;
	border: 2px solid #5c3f8f;
	font-family: "mfw-pa1gothicstdn-bold", "A P-OTF A1Gothic Std", sans-serif;
	font-size: 0.9375rem;
	font-weight: 700;
	letter-spacing: -0.15em;
	color: #fff;
	text-align: initial;
	border-radius: calc(infinity * 1px);
}

.rounded-button__link::before {
	content: "";
	position: absolute;
	z-index: 2;
	inset: 0;
	background: #eaebe8;
	transform: scaleX(0);
	transform-origin: right center;
	transition: transform 0.3s ease-out;
	will-change: transform;
}

.rounded-button__text {
	position: relative;
	z-index: 3;
	color: #fff;
	transition: color 0.2s ease;
}

.rounded-button__arrow {
	overflow: clip;
	display: block;
	position: relative;
	width: 1.25rem;
	aspect-ratio: 1;
	z-index: 4;
}

.rounded-button__arrow::before,
.rounded-button__arrow::after {
	content: "";
	position: absolute;
	inset-block: 0;
	right: 0;
	margin-block: auto;
	animation-fill-mode: forwards;
	animation-duration: 0.6s;
	-webkit-mask-image: url(../images/arrow.svg);
	mask-image: url(../images/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;
	background-color: #fff;
	width: 1.25rem;
	aspect-ratio: 1;
	transition: background-color 0.2s ease;
}

.rounded-button__arrow::after {
	transform: translateX(-100%);
}

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

.section-heading__tag {
	display: inline-flex;
	align-items: center;
	flex-direction: row-reverse;
	gap: 0.25rem;
	padding: 0.25rem 0.625rem;
	background-color: #343434;
	clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
}

.section-heading__tag-icon {
	display: block;
	width: 1rem;
	height: 1rem;
	flex-shrink: 0;
}

.section-heading__tag-text {
	font-family: "Alata", sans-serif;
	font-weight: 400;
	font-size: 1rem;
	color: #fff;
	letter-spacing: 0.05em;
	line-height: 1;
}

.section-heading__title {
	margin-top: 0.625rem;
	display: block;
	font-family: "mfw-pa1gothicstdn-bold", "A P-OTF A1Gothic Std", sans-serif;
	font-size: 2.25rem;
	color: #5c3f8f;
	letter-spacing: -0.1em;
	line-height: 1.25;
}

.section-headline {
	font-family: "mfw-pa1gothicstdn-bold", "A P-OTF A1Gothic Std", sans-serif;
	font-size: 2.25rem;
	letter-spacing: -0.06em;
	color: #5c3f8f;
}

.section-title,
.section-heading,
.section-headline,
.top-client__heading,
.cta__heading-wrap,
.prime-us__title,
.news-page__title {
	opacity: 0;
}

.reveal-mask {
	display: block;
	overflow: hidden;
	padding-inline: 0.2em;
	margin-inline: -0.2em;
}

.reveal-line {
	display: block;
}

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

.section-title__en {
	font-family: "Alata", sans-serif;
	font-size: 1.25rem;
	color: #acacac;
	letter-spacing: 0.05em;
	line-height: 1;
}

.section-title__ja {
	font-family: "mfw-pa1gothicstdn-bold", "A P-OTF A1Gothic Std", sans-serif;
	font-size: 3rem;
	color: #5c3f8f;
	line-height: 1;
	letter-spacing: -0.08em;
}

.service-card {
	position: relative;
	scroll-margin-top: 8.125rem;
}

.service-card__img picture {
	height: 100%;
}

.service-card:nth-child(even)::before {
	left: initial;
	right: 0;
}

.service-card::before {
	content: attr(data-number);
	position: absolute;
	top: -3.375rem;
	left: 0;
	font-family: "Anton SC", sans-serif;
	font-size: 3.75rem;
	font-weight: 400;
	color: #014896;
	line-height: 1;
	letter-spacing: 0.06em;
}

.service-card__img img {
	object-fit: cover;
	width: 100%;
	height: inherit;
}

.service-card__body {
	background-color: #f1f1f1;
	padding: 1.25rem;
}

.service-card__head {
	display: grid;
}

.service-card__title {
	position: relative;
	font-family: "mfw-pa1gothicstdn-bold", "A P-OTF A1Gothic Std", sans-serif;
	font-size: 1.875rem;
	font-weight: 700;
	color: #5c3f8f;
	letter-spacing: -0.06em;
	line-height: 1;
	padding-left: 2.625rem;
}

.service-card__title::before {
	content: "";
	position: absolute;
	top: 0.5lh;
	left: 0;
	translate: 0 -50%;
	width: 1.875rem;
	aspect-ratio: 1;
}

.service-card__title-small {
	display: inline-block;
	font-size: 1.25rem;
	color: #5c3f8f;
}

.service-card__title.service-card__title--waterproof::before {
	background: url(../images/icon_service-waterproof.svg) no-repeat center center/contain;
}

.service-card__title.service-card__title--tile::before {
	background: url(../images/icon_service-tile.svg) no-repeat center center/contain;
}

.service-card__title.service-card__title--light-steel::before {
	background: url(../images/icon_service-light-steel.svg) no-repeat center center/contain;
}

.service-card__title.service-card__title--interior::before {
	background: url(../images/icon_service-interior.svg) no-repeat center center/contain;
	width: 2.25rem;
}

.service-card__title.service-card__title--exterior::before {
	background: url(../images/icon_service-exterior.svg) no-repeat center center/contain;
}

.service-card__outline {
	font-family: "mfw-pa1gothicstdn-bold", "A P-OTF A1Gothic Std", sans-serif;
	font-size: 1.125rem;
	font-weight: 700;
	color: #282828;
	line-height: 1.3571428571;
	letter-spacing: -0.06em;
	margin-top: 0.875rem;
}

.service-card__description {
	margin-top: 1rem;
}

.service-card__button {
	margin-left: auto;
	margin-top: 0.625rem;
}

.service-item {
	container-type: inline-size;
	display: flex;
	flex-direction: column;
}

.service-item__img img {
	aspect-ratio: 404/229;
	object-fit: cover;
	width: 100%;
	height: auto;
}

.service-item__body {
	flex: 1;
	background-color: #fff;
	padding-block: 1.6875rem;
	padding-inline: clamp(0.75rem, 5.9405940594cqi, 1.5rem);
}

.service-item__title {
	position: relative;
	font-family: "mfw-pa1gothicstdn-bold", "A P-OTF A1Gothic Std", sans-serif;
	font-size: clamp(1rem, 6.9306930693cqi, 1.75rem);
	font-weight: 700;
	color: #282828;
	line-height: 1.3571428571;
	letter-spacing: -0.08em;
	padding-left: clamp(2.5rem, 11.3861386139cqi, 3.4375rem);
}

.service-item__title::before {
	content: "";
	position: absolute;
	top: 0.5lh;
	left: 0;
	translate: 0 -50%;
	background-color: #014896;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-size: contain;
	mask-size: contain;
	width: clamp(1.875rem, 9.4059405941cqi, 3.125rem);
	aspect-ratio: 1;
}

.service-item__title.service-item__title--exterior {
	font-size: clamp(1rem, 6.1881188119cqi, 1.625rem);
}

.service-item__title.service-item__title--small {
	font-size: clamp(0.875rem, 5.4455445545cqi, 1.375rem);
}

.service-item__title.service-item__title--waterproof::before {
	-webkit-mask-image: url(../images/icon_service-waterproof.svg);
	mask-image: url(../images/icon_service-waterproof.svg);
}

.service-item__title.service-item__title--wallpaper::before {
	-webkit-mask-image: url(../images/icon_service-wallpaper.svg);
	mask-image: url(../images/icon_service-wallpaper.svg);
}

.service-item__title.service-item__title--interior::before {
	-webkit-mask-image: url(../images/icon_service-interior.svg);
	mask-image: url(../images/icon_service-interior.svg);
	width: clamp(1.875rem, 11.1386138614cqi, 3.125rem);
}

.service-item__title.service-item__title--exterior::before {
	-webkit-mask-image: url(../images/icon_service-exterior.svg);
	mask-image: url(../images/icon_service-exterior.svg);
}

.service-item__title.service-item__title--tile::before {
	-webkit-mask-image: url(../images/icon_service-tile.svg);
	mask-image: url(../images/icon_service-tile.svg);
}

.service-item__title.service-item__title--lgs::before {
	-webkit-mask-image: url(../images/icon_service-light-steel.svg);
	mask-image: url(../images/icon_service-light-steel.svg);
}

.service-item__title-sub {
	display: block;
	font-size: clamp(0.75rem, 3.9603960396cqi, 1rem);
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.08em;
}

.service-item__description {
	font-family: "Noto Sans JP", sans-serif;
	font-size: clamp(0.8125rem, 3.9603960396cqi, 1rem);
	font-weight: 500;
	color: #282828;
	line-height: 1.7;
	margin-top: 1rem;
}

.year {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 10px;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.year a {
	padding: 4px 15px;
	text-align: center;
	display: inline-block;
	min-width: 78px;
	border: 1px solid skyblue;
	font-size: 14px;
	color: #333;
}

.year.current-year a[aria-current=page] {
	color: red;
	font-weight: bold;
}

.year.current-month a[aria-current=page] {
	color: red;
	font-weight: bold;
}

.architect-case {
	margin-top: 5rem;
	padding-block: 5rem 5rem;
	background-color: #f1f1f1;
}

.architect-case__list {
	margin-top: 2rem;
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.architect-case__item {
	display: flex;
	flex-direction: column;
	background-color: #fff;
}

.architect-case__image {
	position: relative;
}

.architect-case__image img,
.architect-case__image picture {
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: 404/229;
}

.architect-case__number {
	position: absolute;
	bottom: -0.625rem;
	left: 0;
	font-family: "Anton SC", sans-serif;
	font-size: 5rem;
	color: #fff;
	line-height: 1;
	letter-spacing: 0.06em;
	pointer-events: none;
}

.architect-case__head {
	display: flex;
	align-items: center;
	gap: 0.875rem;
	padding: 1.75rem 1.25rem 0;
}

.architect-case__icon {
	width: 1.75rem;
}

.architect-case__icon img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1/1;
	object-fit: contain;
}

.architect-case__title {
	color: #5c3f8f;
	font-size: 1.5rem;
	font-family: "mfw-pa1gothicstdn-bold", "A P-OTF A1Gothic Std", sans-serif;
	line-height: 1.3571428571;
	letter-spacing: -0.08em;
}

.architect-case__points {
	margin-top: 1rem;
	padding-inline: 1.25rem;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.architect-case__point {
	display: inline-flex;
	align-items: baseline;
	gap: 0.25rem;
	padding: 0.0625rem 0.375rem;
	border: 1px solid #014896;
	border-radius: 0.1875rem;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 1rem;
	color: #014896;
	width: -moz-fit-content;
	width: fit-content;
	line-height: 1.4;
	letter-spacing: 0em;
}

.architect-case__point::before {
	content: "";
	display: block;
	flex-shrink: 0;
	width: 0.875rem;
	height: 0.875rem;
	background-color: #014896;
	border-radius: 50%;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5 12l5 5l9-9' stroke='%23fff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-position: center;
	background-size: 70% 70%;
	background-repeat: no-repeat;
}

.architect-case__desc {
	margin-top: 1rem;
	padding: 0 1.25rem 2rem;
	color: #494949;
	font-size: 1rem;
	font-weight: 700;
	font-family: "Zen Kaku Gothic New", sans-serif;
	line-height: 1.625;
	letter-spacing: -0.08em;
}

.architect-lead {
	margin-top: 3.75rem;
}

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

.architect-lead__body {
	width: 100%;
}

.architect-lead__heading {
	font-family: "mfw-pa1gothicstdn-bold", "A P-OTF A1Gothic Std", sans-serif;
	font-size: 1.5rem;
	color: #282828;
	line-height: 1.3571428571;
	letter-spacing: -0.08em;
}

.architect-lead__em {
	color: #014896;
}

.architect-lead__texts {
	margin-top: 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.architect-lead__text {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 700;
	font-size: 1rem;
	color: #282828;
	line-height: 1.7;
}

.architect-lead__image {
	width: 100%;
}

.architect-lead__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: 506/328;
}

.architect-strength {
	margin-top: 5rem;
}

.architect-strength__list {
	margin-top: 1rem;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.architect-strength__item {
	display: flex;
	flex-direction: column;
	background-color: #f1f1f1;
}

.architect-strength__image {
	width: 100%;
}

.architect-strength__image img {
	width: 100%;
	height: 100%;
	aspect-ratio: 438/282;
	object-fit: cover;
}

.architect-strength__content {
	width: 100%;
	padding: 0.5rem 1.25rem 1.75rem;
}

.architect-strength__head {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid #bdbdbd;
}

.architect-strength__icon {
	width: 3rem;
	flex-shrink: 0;
}

.architect-strength__icon img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1/1;
	object-fit: contain;
}

.architect-strength__title {
	font-family: "mfw-pa1gothicstdn-bold", "A P-OTF A1Gothic Std", sans-serif;
	font-size: 1.5rem;
	color: #014896;
	line-height: 1.3571428571;
	letter-spacing: -0.08em;
	display: flex;
	align-items: baseline;
	gap: 0.3125rem;
}

.architect-strength__number {
	font-family: "Anton SC", sans-serif;
	color: #014896;
	font-size: 1.5rem;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0.06em;
}

.architect-strength__desc {
	margin-top: 1rem;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 700;
	font-size: 1rem;
	color: #282828;
	line-height: 1.7;
	letter-spacing: -0.04em;
}

.card {
	position: relative;
}

.card--flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	height: 100%;
}

.card__link {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	height: 100%;
}

.card__cat {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 2;
}

.card__img {
	overflow: hidden;
	z-index: 1;
	position: relative;
}

.card__img img {
	aspect-ratio: 4/3;
	-o-object-fit: cover;
	object-fit: cover;
	height: auto;
	width: 100%;
	-webkit-transition: -webkit-transform 0.5s;
	transition: -webkit-transform 0.5s;
	transition: transform 0.5s;
	transition: transform 0.5s, -webkit-transform 0.5s;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.card__body {
	margin-top: 10px;
}

.card__date {
	display: inline-block;
}

.card__title {
	font-size: 20px;
	font-weight: 700;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.card__text {
	font-size: 16px;
	font-weight: 400;
	margin-top: 10px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.card__tag {
	margin-top: auto;
	padding-top: 10px;
}

.company__access-body {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.company__access-info {
	width: 100%;
}

.company__access-company {
	margin-top: 2rem;
	font-family: "mfw-pa1gothicstdn-bold", "A P-OTF A1Gothic Std", sans-serif;
	font-size: 1.25rem;
	color: #282828;
	letter-spacing: -0.02em;
}

.company__access-address {
	margin-top: 1rem;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 700;
	font-style: normal;
	font-size: 1rem;
	line-height: 1.7;
	color: #282828;
}

.company__access-map {
	width: 100%;
	overflow: hidden;
}

.company__access-map iframe {
	border: 0;
	display: block;
	width: 100%;
	height: 100%;
	aspect-ratio: 424/294;
}

.company__company {
	position: relative;
	overflow: hidden;
}

.company__company-list {
	position: relative;
	z-index: 1;
	width: 100%;
	margin-top: 3.75rem;
}

.company__company-row {
	display: flex;
	background-image: linear-gradient(to right, #5c3f8f 0 5.625rem, #bdbdbd 5.625rem 100%);
	background-repeat: no-repeat;
	background-size: 100% 0.125rem;
	background-position: bottom left;
	padding-block: 0.5rem;
}

.company__company-row:first-child {
	padding-top: 0;
}

.company__company-row:last-child {
	background-image: none;
}

.company__company-label,
.company__company-value {
	font-family: "mfw-pa1gothicstdn-bold", "A P-OTF A1Gothic Std", sans-serif;
	font-size: 1rem;
	color: #014896;
	letter-spacing: 0.02em;
}

.company__company-label {
	color: #014896;
	line-height: 1;
	padding-inline: 0.125rem;
	width: 5.625rem;
	padding-top: 0.375rem;
}

.company__company-value {
	color: #282828;
	padding-inline: 0.5rem;
	flex: 1;
	line-height: 1.75;
}

.company__company-value span {
	display: inline-block;
}

.company__group {
	padding-block: 1.875rem;
	background: url("../images/bg-group.jpg") no-repeat center center/cover;
}

.company__group-label {
	display: flex;
	justify-content: center;
	width: 9.375rem;
	height: auto;
	margin-inline: auto;
}

.company__group-mark {
	display: block;
	width: 100%;
	height: auto;
}

.company__group-content {
	margin-top: 3.75rem;
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
}

.company__group-heading {
	margin-top: 3.75rem;
}

.company__group-heading-en {
	width: 100%;
}

.company__group-heading-en img {
	display: block;
	width: 100%;
	height: 100%;
	aspect-ratio: 925/54;
	object-fit: contain;
}

.company__group-heading-ja {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 700;
	font-size: clamp(1.5rem, 1.2614503817rem + 1.0178117048vw, 1.75rem);
	color: #282828;
	line-height: 1.6;
	letter-spacing: -0.08em;
	margin-top: 1rem;
}

.company__group-accent {
	color: #014896;
	font-size: clamp(1.75rem, 1.2729007634rem + 2.0356234097vw, 2.25rem);
	line-height: 1.2;
	font-family: "mfw-pa1gothicstdn-bold", "A P-OTF A1Gothic Std", sans-serif;
	font-weight: 600;
}

.company__group-companies {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.25rem;
}

.company__group-company {
	display: flex;
	align-items: center;
	justify-content: center;
}

.company__group-company-img {
	display: block;
	width: 100%;
}

.company__group-company-img img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 1/1;
	object-fit: contain;
}

.company__group-right {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.company__group-subtitle {
	font-family: "mfw-pa1gothicstdn-bold", "A P-OTF A1Gothic Std", sans-serif;
	font-size: 1.25rem;
	line-height: 1.6;
	color: #282828;
	letter-spacing: -0.08em;
}

.company__group-subtitle strong {
	color: #014896;
}

.company__group-desc {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 0.9375rem;
	line-height: 1.9;
	color: #282828;
}

.company__group-desc strong {
	font-weight: 700;
}

.company__group-btn {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	width: -moz-fit-content;
	width: fit-content;
	min-width: 14.375rem;
	margin-top: 2.5rem;
	margin-inline: auto;
	padding-block: 1rem;
	padding-inline: 1.875rem;
	overflow: clip;
	background-color: #5c3f8f;
	border: 2px solid #5c3f8f;
	border-radius: calc(infinity * 1px);
	font-family: "mfw-pa1gothicstdn-bold", "A P-OTF A1Gothic Std", sans-serif;
	font-size: 0.9375rem;
	font-weight: 700;
	letter-spacing: -0.15em;
	line-height: 1;
	color: #fff;
	text-decoration: none;
}

.company__group-btn::before {
	content: "";
	position: absolute;
	z-index: 2;
	inset: 0;
	background: #eaebe8;
	transform: scaleX(0);
	transform-origin: right center;
	transition: transform 0.3s ease-out;
	will-change: transform;
}

.company__group-btn-text {
	position: relative;
	z-index: 3;
	color: #fff;
	transition: color 0.2s ease;
}

.company__group-btn-icon {
	position: relative;
	z-index: 3;
	display: block;
	flex-shrink: 0;
	width: 1.0625rem;
	height: 0.9375rem;
	-webkit-mask-image: url("../images/button-icon.svg");
	mask-image: url("../images/button-icon.svg");
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-size: contain;
	mask-size: contain;
	background-color: #fff;
	transition: background-color 0.3s ease;
}

.company__message-body {
	padding: 2.5rem 1.25rem;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	background-color: #f1f1f1;
}

.company__message-photo {
	flex-shrink: 0;
	overflow: hidden;
	width: 100%;
	padding-inline: 2.5rem;
}

.company__message-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: 262/347;
}

.company__message-text-wrap {
	flex: 1;
}

.company__message-greeting {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 900;
	font-size: 1.125rem;
	color: #282828;
	line-height: 1.5;
}

.company__message-texts {
	margin-top: 2.25rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.company__message-text {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 700;
	font-size: 1rem;
	line-height: 1.7;
	color: #282828;
}

.company__message-signature {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 0.5rem;
	margin-top: 3.25rem;
}

.company__message-position {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.25rem;
	font-weight: 700;
	color: #282828;
	letter-spacing: -0.08em;
}

.company__message-signature-img {
	display: block;
	width: 5rem;
	height: auto;
	mix-blend-mode: multiply;
}

.company__qualified-list {
	list-style: none;
	margin: 3rem 0 5rem;
	padding: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
}

.company__qualified-item {
	display: inline-flex;
	align-items: baseline;
	gap: 0.5rem;
	padding: 0 0.5rem 0.5rem;
	border-bottom: 4px solid #c8e06a;
}

.company__qualified-name {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.125rem;
	font-weight: 700;
	color: #282828;
}

.company__qualified-count {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.125rem;
	font-weight: 700;
	color: #282828;
	white-space: nowrap;
	display: flex;
	align-items: baseline;
	gap: 0.25rem;
}

.company__qualified-num {
	font-family: "Anton SC", sans-serif;
	font-size: 3.5rem;
	font-weight: 400;
	color: #282828;
	line-height: 1;
	letter-spacing: 0.06em;
}

.company__qualified-accordion {
	width: 100%;
}

.company__qualified-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	width: 100%;
	padding: 1.25rem 1.5rem;
	background-color: #5c3f8f;
	color: #fff;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 0.9375rem;
	font-weight: 700;
	text-decoration: none;
	border: 0;
	cursor: pointer;
	transition: background-color 0.2s, opacity 0.2s;
}

.company__qualified-btn-label {
	display: inline-block;
}

.company__qualified-btn-plus {
	font-size: 1.5rem;
	font-weight: 400;
	line-height: 1;
	transition: transform 0.2s;
}

.company__qualified-btn[aria-expanded=true] .company__qualified-btn-plus {
	transform: rotate(45deg);
}

.company__qualified-panel {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.4s ease;
}

.company__qualified-panel.is-open {
	grid-template-rows: 1fr;
}

.company__qualified-panel-inner {
	overflow: hidden;
	background-color: #eaebe8;
	color: #282828;
}

.company__qualified-other-list {
	padding: 1.25rem 1.25rem 2rem;
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
}

.company__qualified-other-item {
	display: flex;
	flex-direction: column;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 700;
	color: #282828;
	font-size: 1rem;
	line-height: 1.8;
	letter-spacing: 0em;
}

.company__qualified-other-name {
	font-weight: 700;
}

.company__qualified-other-counts {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1rem;
	font-weight: 400;
}

.company__qualified-other-count {
	white-space: nowrap;
}

.company__qualified-other-num {
	font-weight: 700;
}

.company__section {
	scroll-margin-top: 5rem;
}

.construction__button {
	max-width: -moz-fit-content;
	max-width: fit-content;
	margin-left: auto;
	margin-top: 1.5rem;
}

.construction__button-link {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	min-width: 15rem;
	padding-block: 0.75rem;
	padding-inline: 1.5rem;
	overflow: clip;
	background-color: #5c3f8f;
	border: 2px solid #5c3f8f;
	font-family: "mfw-pa1gothicstdn-bold", "A P-OTF A1Gothic Std", sans-serif;
	font-size: 0.9375rem;
	font-weight: 700;
	letter-spacing: -0.15em;
	color: #fff;
	text-align: initial;
	border-radius: calc(infinity * 1px);
}

.construction__button-link::before {
	content: "";
	position: absolute;
	z-index: 2;
	inset: 0;
	background: #eaebe8;
	transform: scaleX(0);
	transform-origin: right center;
	transition: transform 0.3s ease-out;
	will-change: transform;
}

.construction__button-text {
	position: relative;
	z-index: 3;
	color: #fff;
	transition: color 0.2s ease;
}

.construction__button-arrow {
	overflow: clip;
	display: block;
	position: relative;
	width: 1.25rem;
	aspect-ratio: 1;
	z-index: 4;
}

.construction__button-arrow::before,
.construction__button-arrow::after {
	content: "";
	position: absolute;
	inset-block: 0;
	right: 0;
	margin-block: auto;
	animation-fill-mode: forwards;
	animation-duration: 0.6s;
	-webkit-mask-image: url(../images/arrow.svg);
	mask-image: url(../images/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;
	background-color: #fff;
	width: 1.25rem;
	aspect-ratio: 1;
	transition: background-color 0.2s ease;
}

.construction__button-arrow::after {
	transform: translateX(-100%);
}

.construction__check-list {
	margin-top: 1.5rem;
	padding: 1rem clamp(0.625rem, 0.2662627551rem + 1.5306122449vw, 1rem);
	display: flex;
	flex-direction: column;
	background-color: #fff;
}

.construction__check-item {
	display: flex;
	align-items: flex-start;
	gap: 0.375rem;
	font-size: 1rem;
	line-height: 1.7;
	color: #282828;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 700;
	letter-spacing: -0.04em;
}

.construction__check-item::before {
	content: "";
	display: block;
	flex-shrink: 0;
	width: 1.25rem;
	height: 1.25rem;
	background-color: #014896;
	border-radius: 50%;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5 12l5 5l9-9' stroke='%23fff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-position: center;
	background-size: 70% 70%;
	background-repeat: no-repeat;
	margin-top: 0.3125rem;
}

.construction__features {
	position: relative;
	isolation: isolate;
	z-index: 2;
	overflow-x: clip;
	margin-top: 2.5rem;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.construction__features-deco {
	position: absolute;
	z-index: 1;
	pointer-events: none;
}

.construction__features-deco picture,
.construction__features-deco img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.construction__features-deco--tr {
	top: -4.25rem;
	right: calc(50% - min(78vw, 21rem));
	width: 16.5rem;
	aspect-ratio: 1272/734;
	z-index: 1;
}

.construction__features-deco--tr picture,
.construction__features-deco--tr img {
	aspect-ratio: 1272/734;
}

.construction__feature--technology {
	padding-bottom: 5rem;
}

.construction__feature {
	position: relative;
}

.construction__feature-deco {
	position: absolute;
	z-index: 1;
	pointer-events: none;
}

.construction__feature-deco picture,
.construction__feature-deco img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.construction__feature-deco--org-left {
	top: 100%;
	left: calc(50% - min(39vw, 25rem));
	transform: translate(-50%, -50%);
	width: 12.5rem;
	aspect-ratio: 704/474;
}

.construction__feature-deco--tech-tr {
	top: -10%;
	right: calc(50% - min(69.5vw, 25rem));
	width: 14.375rem;
	aspect-ratio: 730/487;
}

.construction__feature-deco--tech-bl {
	bottom: -3.75rem;
	left: calc(50% - min(60vw, 21rem));
	width: 9.375rem;
	aspect-ratio: 1/1;
}

.construction__feature-container {
	padding: 2.5rem 1.25rem;
	background-color: #f1f1f1;
}

.construction__feature .section-heading {
	display: block;
	padding-bottom: 0.75rem;
	border-bottom: 2px solid #5c3f8f;
}

.construction__feature-title {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-top: 0.75rem;
}

.construction__feature-title .section-heading__title {
	margin-top: 0;
	flex: 1;
}

.construction__feature-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: clamp(3rem, 1.684630102rem + 5.612244898vw, 4.375rem);
	aspect-ratio: 1/1;
	background-color: #f1f1f1;
}

.construction__feature-icon img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1/1;
	object-fit: contain;
}

.construction__feature-body {
	margin-top: 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
}

.construction__feature-content {
	flex: 1;
}

.construction__feature-image {
	flex-shrink: 0;
	width: 100%;
}

.construction__feature-image img {
	width: 100%;
	height: 100%;
	aspect-ratio: 504/324;
	object-fit: cover;
}

.construction__feature-desc {
	color: #282828;
	font-size: 1rem;
	line-height: 1.7;
	font-weight: 700;
	font-family: "Zen Kaku Gothic New", sans-serif;
	letter-spacing: -0.04em;
}

.construction__gallery {
	margin-top: 1.5rem;
}

.construction__gallery-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.625rem;
}

.construction__gallery-item {
	width: 100%;
}

.construction__gallery-item:last-child {
	display: none;
}

.construction__gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: 370/200;
}

.construction__hero {
	position: relative;
	isolation: isolate;
	overflow: clip;
	margin-top: 2.5rem;
}

.construction__hero-bg {
	--blur: 0px;
	--opacity: 0.15;
	position: sticky;
	top: 4rem;
	height: calc(100vh - 4rem);
	z-index: 0;
}

.construction__hero-bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background-color: rgb(0, 0, 0, var(--opacity));
	backdrop-filter: blur(var(--blur));
	-webkit-backdrop-filter: blur(var(--blur));
	pointer-events: none;
}

.construction__hero-bg picture {
	display: block;
	width: 100%;
	height: 100%;
}

.construction__hero-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.construction__hero-content {
	position: relative;
	z-index: 1;
	min-height: calc(100vh - 4rem);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #fff;
	padding: 2.5rem 1.25rem;
}

.construction__hero-title {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.6875rem;
	writing-mode: vertical-rl;
}

.construction__hero-title-main {
	color: #fff;
	font-size: 2.5rem;
	font-family: "mfw-pa1gothicstdn-bold", "A P-OTF A1Gothic Std", sans-serif;
	line-height: 1;
	letter-spacing: -0.06em;
}

.construction__hero-title-sub {
	color: #fff;
	font-size: 1.5rem;
	font-weight: 700;
	font-family: "Zen Kaku Gothic New", sans-serif;
	line-height: 1;
	letter-spacing: -0.04em;
}

.construction__hero-subtitle {
	margin-top: 1.5rem;
	color: #fff;
	font-size: 1.5rem;
	font-weight: 900;
	font-family: "Zen Kaku Gothic New", sans-serif;
	line-height: 1.4615384615;
	letter-spacing: -0.04em;
}

.construction__hero-desc {
	margin-top: 1.125rem;
	color: #fff;
	font-size: 1.125rem;
	font-weight: 700;
	font-family: "Zen Kaku Gothic New", sans-serif;
	line-height: 1.7;
	letter-spacing: -0.04em;
}

.construction__lead {
	margin-top: 2rem;
}

.construction__lead-text {
	font-family: "mfw-pa1gothicstdn-bold", "A P-OTF A1Gothic Std", sans-serif;
	font-size: 1.5rem;
	line-height: 1.6;
	color: #282828;
	text-align: center;
	letter-spacing: -0.06em;
}

.construction__lead-em {
	color: #014896;
	font-size: 2.5rem;
	font-family: "mfw-pa1gothicstdn-bold", "A P-OTF A1Gothic Std", sans-serif;
	line-height: 1.5;
	letter-spacing: -0.06em;
}

.construction-method {
	overflow-x: clip;
	margin-top: 2.5rem;
	padding-bottom: 8.75rem;
}

.construction-method__title {
	text-align: center;
}

.construction-method__content {
	position: relative;
	padding: 0.75rem 1rem;
	background-color: #f1f1f1;
	margin-top: 1.5rem;
}

.construction-method__table-scroll {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.construction-method__table {
	width: 100%;
	border-collapse: collapse;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 700;
	min-width: 33.75rem;
}

.construction-method__table th,
.construction-method__table td {
	padding: 0.75rem 0.5rem;
	text-align: center;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: -0.02em;
}

.construction-method__table thead th {
	color: #282828;
}

.construction-method__table tbody tr {
	background-color: #fff;
	border-top: 0.125rem solid #f1f1f1;
}

.construction-method__table tbody th {
	background-color: #014896;
	color: #fff;
}

.construction-method__table tbody td {
	color: #282828;
	border-left: 0.0625rem solid #f1f1f1;
}

.construction__slider {
	width: 100%;
	overflow-x: clip;
	margin-top: 1.5rem;
}

.construction__slider .swiper-wrapper {
	display: flex;
	width: -moz-max-content;
	width: max-content;
	animation: construction-slide 100s linear infinite reverse;
}

.construction__slide {
	flex-shrink: 0;
	width: 13.75rem;
	margin-right: -1.25rem;
	clip-path: polygon(12% 0%, 100% 0%, 88% 100%, 0% 100%);
}

.construction__slide-img {
	width: 100%;
}

.construction__slide-img img {
	width: 100%;
	height: 100%;
	aspect-ratio: 486/333;
	object-fit: cover;
}

.contact-form {
	padding-block: 3rem 4rem;
}

.contact-form__heading-wrap {
	text-align: center;
}

.contact-form__title {
	font-family: "mfw-pa1gothicstdn-bold", "A P-OTF A1Gothic Std", sans-serif;
	font-size: 2rem;
	color: #5c3f8f;
	letter-spacing: -0.06em;
	line-height: 1;
}

.contact-form__notice {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 0.875rem;
	color: #7e7e7e;
	text-align: center;
}

.contact-form__body {
	margin-top: 2.5rem;
}

.contact-form__body .wpcf7-response-output {
	display: none;
}

.contact-form__body .confirm_area,
.contact-form__body .thanks_area {
	display: none;
}

.contact-form__body .wpcf7 {
	font-family: "Noto Sans JP", sans-serif;
	max-width: 56.25rem;
	margin-inline: auto;
}

.contact-form__body .form-item {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.contact-form__body .form-item:not(:first-child) {
	margin-top: 1.25rem;
}

.contact-form__body .form-item-label {
	display: flex;
	flex-direction: row-reverse;
	justify-content: flex-end;
	align-items: center;
	gap: 0.5rem;
	font-family: "Inter", sans-serif;
	font-size: 1.125rem;
	font-weight: 700;
	color: #282828;
	line-height: 1.35;
	flex-shrink: 0;
}

.contact-form__body .form-item-label.isMsg {
	align-self: flex-start;
}

.contact-form__body .form-item-label-required {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.1875rem 0.625rem;
	background-color: #5c3f8f;
	color: #fff;
	font-family: "Inter", sans-serif;
	font-size: 0.75rem;
	font-weight: 700;
	line-height: 1.35;
}

.contact-form__body input[type=text],
.contact-form__body input[type=tel],
.contact-form__body input[type=email],
.contact-form__body textarea {
	width: 100%;
	padding: 1rem 1.5rem;
	border: 1px solid #f1f1f1;
	border-radius: 0.3125rem;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 0.9375rem;
	color: #282828;
	background-color: #fff;
	outline: none;
	transition: border-color 0.3s;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.contact-form__body input[type=text]:focus,
.contact-form__body input[type=tel]:focus,
.contact-form__body input[type=email]:focus,
.contact-form__body textarea:focus {
	border-color: #5c3f8f;
	background-color: #fff;
	box-shadow: 0 0 0 0.125rem rgba(92, 63, 143, 0.15);
}

.contact-form__body textarea {
	min-height: 10rem;
	resize: vertical;
}

.contact-form__body .form-item > .wpcf7-form-control-wrap,
.contact-form__body .form-item > .form-item-zip,
.contact-form__body .form-item > br {
	flex: 1;
	width: 100%;
}

.contact-form__body .form-item-zip {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1rem;
	color: #282828;
}

.contact-form__body .form-item-zip input[type=text] {
	max-width: 11.25rem;
}

.contact-form__body .wpcf7-list-item {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin: 0.125rem 1rem 0.125rem 0;
	padding-left: 1.75rem;
	cursor: pointer;
	font-family: "Inter", sans-serif;
	font-size: 1rem;
	font-weight: 400;
	color: #282828;
	line-height: 1.35;
}

.contact-form__body .wpcf7-list-item label {
	cursor: pointer;
	font-size: 0.875rem;
	color: #282828;
}

.contact-form__body .wpcf7-list-item:has(input[type=checkbox])::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	width: 1.25rem;
	height: 1.25rem;
	background-color: #fff;
	border: 0.0625rem solid #f1f1f1;
	border-radius: 0.1875rem;
	transform: translateY(-50%);
	transition: background-color 0.15s ease, border-color 0.15s ease;
	pointer-events: none;
}

.contact-form__body .wpcf7-list-item:has(input[type=checkbox]:checked)::before {
	background-color: #5c3f8f;
	border-color: #5c3f8f;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'><path fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M2.5 7L5.5 10L11.5 4'/></svg>");
	background-position: center;
	background-repeat: no-repeat;
	background-size: 0.875rem;
}

.contact-form__body .wpcf7-list-item input[type=checkbox] {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	opacity: 0;
	cursor: pointer;
	-moz-appearance: none;
	appearance: none;
	-webkit-appearance: none;
}

.contact-form__body .wpcf7-checkbox,
.contact-form__body .wpcf7-radio {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.contact-form__body .form-privacy {
	margin-top: 1.5rem;
	text-align: center;
	font-size: 0.875rem;
}

.contact-form__body .form-privacy .wpcf7-list-item {
	margin: 0;
}

.contact-form__body .form-privacy a {
	position: relative;
	z-index: 1;
	color: #282828;
	text-decoration: underline;
}

.contact-form__body .form-privacy .wpcf7-list-item input[type=checkbox] {
	right: auto;
	width: 1.75rem;
}

.contact-form__body .button-wrap {
	margin-top: 1.5rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.75rem;
}

.contact-form__body .confirm_button,
.contact-form__body input[type=submit],
.contact-form__body .back_button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 15rem;
	padding: 0.875rem 2rem;
	background-color: #5c3f8f;
	color: #fff;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	border: none;
	border-radius: 62.4375rem;
	cursor: pointer;
	transition: opacity 0.2s ease;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.contact-form__body .confirm_button:focus-visible,
.contact-form__body input[type=submit]:focus-visible,
.contact-form__body .back_button:focus-visible {
	opacity: 0.8;
}

.contact-form__body .confirm_button:disabled {
	background-color: rgba(92, 63, 143, 0.4);
	cursor: not-allowed;
	opacity: 1;
}

.contact-form__body .back_button {
	background-color: #f1f1f1;
	color: #282828;
}

.contact-form__body .confirm_area__title {
	font-family: "mfw-pa1gothicstdn-bold", "A P-OTF A1Gothic Std", sans-serif;
	font-size: 1.375rem;
	color: #5c3f8f;
	text-align: center;
	margin-bottom: 0.5rem;
}

.contact-form__body .confirm_area__desc {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 0.875rem;
	color: #282828;
	text-align: center;
	margin-bottom: 1.5rem;
}

.contact-form__body .confirm_area .form-item span[class^=confirm_] {
	display: block;
	padding: 0.625rem 0.875rem;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 0.9375rem;
	color: #282828;
	background-color: #f1f1f1;
	border-radius: 0.25rem;
	white-space: pre-wrap;
	word-break: break-word;
	flex: 1;
}

.contact-form__body .thanks_area {
	text-align: center;
}

.contact-form__body .thanks_area__title {
	font-family: "mfw-pa1gothicstdn-bold", "A P-OTF A1Gothic Std", sans-serif;
	font-size: 1.625rem;
	color: #5c3f8f;
	margin-bottom: 1rem;
}

.contact-form__body .thanks_area__desc {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 0.9375rem;
	color: #282828;
	line-height: 1.9;
}

.contact-form__body .wpcf7-not-valid-tip {
	display: block;
	margin-top: 0.25rem;
	font-size: 0.75rem;
	color: #c0392b;
}

.contact-form__body .wpcf7-spinner {
	position: absolute;
}

.contact-lead {
	padding-block: 3rem 3rem;
}

.contact-lead__catch {
	font-family: "mfw-pa1gothicstdn-bold", "A P-OTF A1Gothic Std", sans-serif;
	font-size: 1.5rem;
	color: #282828;
	letter-spacing: -0.08em;
	line-height: 1.25;
}

.contact-lead__catch-em {
	color: #014896;
}

.contact-lead__desc {
	margin-top: 0.75rem;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 1.125rem;
	font-weight: 700;
	color: #282828;
	line-height: 1.7;
	letter-spacing: -0.04em;
}

.contact-recruit {
	position: relative;
	z-index: 1;
	padding-block: 3.75rem 3.75rem;
	background-color: #f1f1f1;
	overflow-x: clip;
}

.contact-recruit::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 25rem;
	aspect-ratio: 712/544;
	background-image: url("../images/contact-recruit-bg.png");
	background-repeat: no-repeat;
	background-size: 100% 100%;
	transform: translateX(-50%);
	pointer-events: none;
	z-index: 0;
}

.contact-recruit__inner.inner {
	position: relative;
	z-index: 1;
}

.contact-recruit__title {
	font-family: "mfw-pa1gothicstdn-bold", "A P-OTF A1Gothic Std", sans-serif;
	font-size: 3rem;
	color: #5c3f8f;
	line-height: 1.25;
	letter-spacing: -0.08em;
}

.contact-recruit__content {
	margin-top: 2rem;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 1.5rem;
}

.contact-recruit__desc {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 700;
	font-size: 1.125rem;
	color: #282828;
	line-height: 1.6666666667;
	letter-spacing: -0.04em;
}

.contact-recruit__desc br {
	display: none;
}

.contact-recruit__link {
	align-self: center;
}

.contact-tel {
	margin-top: 5rem;
}

.contact-tel__title {
	font-family: "mfw-pa1gothicstdn-bold", "A P-OTF A1Gothic Std", sans-serif;
	font-size: 2.5rem;
	color: #5c3f8f;
	letter-spacing: -0.06em;
	line-height: 1.25;
}

.contact-tel__box {
	margin-top: 1.25rem;
	width: 100%;
	background-color: #f1f1f1;
	padding: 1.25rem 1.25rem;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.contact-tel__label {
	font-family: "mfw-pa1gothicstdn-bold", "A P-OTF A1Gothic Std", sans-serif;
	font-size: 1.5rem;
	color: #282828;
	letter-spacing: -0.08em;
	line-height: 1.3571428571;
	text-align: center;
}

.contact-tel__row {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	align-items: center;
}

.contact-tel__main {
	display: flex;
	flex-direction: column;
}

.contact-tel__icon {
	margin-right: 0.375rem;
	flex-shrink: 0;
}

.contact-tel__icon img {
	width: 1.5rem;
	height: 1.5rem;
}

.contact-tel__link {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	color: #282828;
	transition: color 0.3s;
}

.contact-tel__link:focus-visible {
	color: #5c3f8f;
}

.contact-tel__number {
	font-family: "Inter", sans-serif;
	font-size: 2rem;
	font-weight: 700;
	color: inherit;
	letter-spacing: 0;
	line-height: 1.6;
}

.contact-tel__number-note {
	font-family: "Inter", sans-serif;
	font-size: 1.125rem;
	font-weight: 700;
	color: inherit;
	letter-spacing: 0;
	line-height: 1;
	text-align: right;
}

.contact-tel__hours {
	margin-top: 0.5rem;
	margin-left: 1rem;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 1.125rem;
	font-weight: 700;
	color: inherit;
	letter-spacing: -0.04em;
	line-height: 1.6;
}

.contact__head {
	width: prem(250);
}

.contact__item {
	margin-top: prem(6);
}

.contact__item-example {
	margin-top: prem(6);
	color: gray;
}

.contact__required {
	color: red;
	padding-left: 1em;
}

.contact__policy,
.contact__content,
.contact__btn {
	margin: prem(24) 0;
}

.contact__policy-link {
	color: blue;
	transition: all 0.3s;
}

.contact__btn-wrap {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.contact__btn {
	display: inline-block;
	text-align: center;
}

.contact__item-text,
.contact__item-tel,
.contact__item-email,
.contact__item-textarea,
.contact__item-select {
	padding: 0.8em;
	border: 1px solid rgba(0, 0, 0, 0.16);
	border-radius: 0;
	outline: none;
	background: none;
	background-color: transparent;
	font-size: prem(16);
	color: inherit;
	font-family: inherit;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	width: 100%;
}

.contact__item-text:focus,
.contact__item-tel:focus,
.contact__item-email:focus,
.contact__item-textarea:focus,
.contact__item-select:focus {
	border: 1px solid rgba(0, 0, 0, 0.7);
	box-shadow: none;
	outline: none;
}

.contact__item-textarea {
	height: 200px;
	resize: none;
	overflow: auto;
}

.contact__item-message {
	white-space: pre-wrap;
}

.contact__item-select {
	padding-right: 3em;
	background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAALJJREFUeNrslssNgCAQRCmB0ijBEuyEEijBEijBEizBEnAPy0UBWVj8JDvJJB5w3gsXVUoikXwsBrpAPdRCNcOmxi2P2yZ3cIKGU9dOCY0b590pdXhPHOyRyMEDsi4JhVIlSvBYTRGgSNTAQ+pFyyBRC7e5AdchUQt3d1fYIsEGb5Fgh1MktlFwisQwOIeE4/pGuDfhLRLscIremHiNxHB4SeIxeMyMPxkenyUSyT9zCDAAj5btZ4c3zaUAAAAASUVORK5CYII=");
	background-repeat: no-repeat;
	background-size: 1em;
	background-position: right 0.5em center;
	color: inherit;
}

.contact__item-select:invalid {
	color: rgba(0, 0, 0, 0.32);
}

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

.contact__item-radio input[type=radio],
.contact__item-checkbox input[type=checkbox] {
	opacity: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.contact__item-radio input[type=radio] + span,
.contact__item-checkbox input[type=checkbox] + span {
	display: inline-block;
	cursor: pointer;
	position: relative;
	padding: 0.5em 1em 0.5em 1.5em;
	color: #333;
	font-size: prem(16);
}

.contact__item-radio input[type=radio]:focus + span,
.contact__item-checkbox input[type=checkbox]:focus + span {
	opacity: 0.7;
}

.contact__item-radio input[type=radio] + span::before,
.contact__item-checkbox input[type=checkbox] + span::before {
	position: absolute;
	top: 50%;
	left: 0;
	width: 1em;
	height: 1em;
	content: "";
	transform: translateY(-50%);
	background: white;
	border: 1px solid black;
}

.contact__item-checkbox input[type=checkbox]:checked + span::before {
	background: #333;
}

.contact__item-radio input[type=radio]:checked + span::before {
	background: white;
}

.contact__item-radio input[type=radio] + span::before {
	border-radius: 50%;
}

.contact__item-radio input[type=radio] + span::after {
	position: absolute;
	content: "";
	background: #333;
	border: 1px solid transparent;
	border-radius: 50%;
	height: 0.5em;
	left: 0.25em;
	opacity: 0;
	padding: 0.125em;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.3s ease 0s;
	width: 0.5em;
}

.contact__item-checkbox input[type=checkbox] + span::after {
	border-bottom: 2px solid white;
	border-left: 2px solid white;
	content: "";
	display: block;
	height: 0.35em;
	left: 0.15em;
	margin-top: -0.1em;
	opacity: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%) rotate(-45deg);
	transition: all 0.3s ease 0s;
	width: 0.8em;
}

.contact__item-checkbox input[type=checkbox]:checked + span::after,
.contact__item-radio input[type=radio]:checked + span::after {
	opacity: 1;
}

.contact__btn input[type=submit],
.contact__btn input[type=button] {
	display: inline-block;
	padding: 0.5em 2em;
	-webkit-box-sizing: content-box;
	-webkit-appearance: button;
	background: rgba(0, 0, 0, 0.32);
	color: #333;
	-moz-appearance: button;
	appearance: button;
	cursor: pointer;
	font-size: prem(16);
	border-radius: 0;
	border: none;
	transition: all 0.3s;
}

.contact__btn input[type=submit]:focus,
.contact__btn input[type=button]:focus {
	outline: none;
	opacity: 0.7;
}

.contact__item,
.contact__btn-submit {
	min-width: prem(150);
}

.wpcf7-spinner {
	position: absolute;
}

.error404 {
	padding-block: 3rem 5rem;
}

.error404__body {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.error404__title {
	font-family: "mfw-pa1gothicstdn-bold", "A P-OTF A1Gothic Std", sans-serif;
	font-size: 1.5rem;
	font-weight: 700;
	color: #282828;
	line-height: 1.35;
	letter-spacing: -0.08em;
	text-align: center;
}

.error404__text {
	width: 100%;
	margin-top: 1rem;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 1rem;
	font-weight: 700;
	color: #282828;
	line-height: 1.7;
	letter-spacing: -0.04em;
	text-align: left;
}

.error404__button.rounded-button {
	margin-top: 2rem;
	margin-left: auto;
	margin-right: auto;
}

.floating-cta {
	position: fixed;
	z-index: 50;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: stretch;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.4s ease, visibility 0.4s ease;
}

.floating-cta.is-past-mv {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.floating-cta.is-past-mv.is-scrolling {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.floating-cta__btn {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	flex: 1;
	min-width: 0;
	height: 4rem;
	padding: 0 0.875rem;
	text-decoration: none;
	text-align: center;
	transition: opacity 0.25s ease, transform 0.25s ease;
}

.floating-cta__btn::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
}

.floating-cta__btn--consultation::before {
	background-color: #014896;
}

.floating-cta__btn--recruit::before {
	background-color: #ececec;
}

.floating-cta__icon {
	position: relative;
	z-index: 1;
	display: block;
	flex-shrink: 0;
}

.floating-cta__btn--consultation .floating-cta__icon {
	width: 1.875rem;
}

.floating-cta__btn--consultation .floating-cta__icon picture,
.floating-cta__btn--consultation .floating-cta__icon img {
	aspect-ratio: 54/60;
}

.floating-cta__btn--recruit .floating-cta__icon {
	width: 1.875rem;
}

.floating-cta__btn--recruit .floating-cta__icon picture,
.floating-cta__btn--recruit .floating-cta__icon img {
	aspect-ratio: 51/56;
}

.floating-cta__icon picture,
.floating-cta__icon img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}

.floating-cta__label-sp {
	position: relative;
	z-index: 1;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 1rem;
	line-height: 1;
	letter-spacing: 0.02em;
	white-space: nowrap;
}

.floating-cta__arrow {
	position: relative;
	z-index: 1;
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.25rem;
	height: 1.25rem;
	border-radius: 50%;
	font-family: "Afacad", sans-serif;
	font-size: 0.625rem;
	font-weight: 600;
	letter-spacing: -0.15em;
	line-height: 1;
}

.floating-cta__btn--consultation .floating-cta__arrow {
	background-color: #fff;
	color: #5c3f8f;
}

.floating-cta__btn--recruit .floating-cta__arrow {
	background-color: #5c3f8f;
	color: #fff;
}

.floating-cta__label {
	display: none;
}

.floating-cta__label.floating-cta__label--black {
	color: #282828;
}

.floating-cta__label.floating-cta__label--black span {
	color: #5c3f8f;
}

.floating-cta__btn--consultation .floating-cta__label,
.floating-cta__btn--consultation .floating-cta__label-sp {
	color: #fff;
}

.floating-cta__btn--recruit .floating-cta__label,
.floating-cta__btn--recruit .floating-cta__label-sp {
	color: #282828;
}

.cta {
	position: relative;
	overflow-x: clip;
	padding-block: 3.75rem 4rem;
	background-image: url("../images/footer-cta-bg.png");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 50rem auto;
	background-color: #f1f1f1;
}

.cta--contact {
	position: relative;
	overflow-x: clip;
	padding-block: 3.75rem 4rem;
	background-image: url("../images/footer-cta-bg.png");
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: 50rem auto;
	background-color: #f1f1f1;
}

.cta__heading-wrap {
	text-align: center;
}

.cta__heading-en {
	display: block;
	font-family: "Alata", sans-serif;
	font-size: 1.5rem;
	font-weight: 400;
	letter-spacing: 0.05em;
	color: #979797;
	line-height: 1;
}

.cta__heading-ja {
	margin-top: 0.5rem;
	font-family: "mfw-pa1gothicstdn-bold", "A P-OTF A1Gothic Std", sans-serif;
	font-size: 3rem;
	color: #5c3f8f;
	line-height: 1;
	letter-spacing: -0.06em;
}

.cta__desc {
	margin-top: 2.5rem;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 1rem;
	font-weight: 700;
	color: #282828;
	line-height: 1.6;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid #5c3f8f;
}

.cta__divider {
	margin-top: 3.125rem;
	border-bottom: 1px solid #5c3f8f;
}

.cta__list-label {
	margin-bottom: 0.5rem;
	font-family: "mfw-pa1gothicstdn-bold", "A P-OTF A1Gothic Std", sans-serif;
	font-size: 1.5rem;
	color: #000;
	line-height: 1;
	letter-spacing: -0.1em;
}

.cta__columns {
	position: relative;
	margin-top: 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 4.5rem;
}

.cta__columns::before {
	content: "";
	display: none;
}

.cta__col {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.cta__col-title {
	font-family: "mfw-pa1gothicstdn-bold", "A P-OTF A1Gothic Std", sans-serif;
	font-size: 2rem;
	color: #282828;
	line-height: 1;
	letter-spacing: -0.1em;
}

.cta__col-illust {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 1;
	transform: translateY(-100%);
}

.cta__col-illust-placeholder.cta__col-illust-placeholder--1 {
	width: 6rem;
}

.cta__col-illust-placeholder.cta__col-illust-placeholder--1 img,
.cta__col-illust-placeholder.cta__col-illust-placeholder--1 picture {
	width: 100%;
	height: 100%;
	object-fit: contain;
	aspect-ratio: 191/146;
}

.cta__col-illust-placeholder.cta__col-illust-placeholder--2 {
	width: 4.375rem;
}

.cta__col-illust-placeholder.cta__col-illust-placeholder--2 img,
.cta__col-illust-placeholder.cta__col-illust-placeholder--2 picture {
	width: 100%;
	height: 100%;
	object-fit: contain;
	aspect-ratio: 134/130;
}

.cta__list-area {
	margin-top: 2rem;
	position: relative;
	flex-grow: 1;
}

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

.cta__list-item {
	position: relative;
	display: flex;
	justify-content: center;
	gap: 0.5rem;
	background-color: #fff;
	border: 0.125rem solid #5c3f8f;
	border-radius: 0.1875rem;
	padding: 0.625rem 1rem 0.625rem 0.625rem;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 0.875rem;
	font-weight: 500;
	color: #282828;
	line-height: 1.4;
}

.cta__list-item::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 30%;
	border-style: solid;
	border-width: 1.9375rem 0 0 1.3125rem;
	border-color: #5c3f8f transparent transparent transparent;
	translate: -50% 100%;
	transform: skew(25deg);
	transform-origin: top;
}

.cta__list-item::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 30%;
	border-style: solid;
	border-width: 1.5rem 0 0 1rem;
	border-color: #fff transparent transparent transparent;
	translate: calc(-50% + 0.4px) 100%;
	transform: skew(25deg);
	transform-origin: top;
}

.cta__list-item:nth-child(odd)::before {
	left: 70%;
	border-width: 1.9375rem 1.3125rem 0 0;
	border-color: #5c3f8f transparent transparent transparent;
	transform: skew(-25deg);
}

.cta__list-item:nth-child(odd)::after {
	left: 70%;
	border-width: 1.5rem 1rem 0 0;
	border-color: #fff transparent transparent transparent;
	translate: calc(-50% - 0.4px) 100%;
	transform: skew(-25deg);
}

.cta__list-check {
	margin-top: 0.25rem;
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.5rem;
	height: 1.5rem;
	background-color: #014896;
	border-radius: 50%;
}

.cta__list-check svg {
	display: block;
}

.cta__list-text {
	color: #282828;
	font-size: clamp(1.25rem, 1.0114503817rem + 1.0178117048vw, 1.5rem);
	font-family: "mfw-pa1gothicstdn-bold", "A P-OTF A1Gothic Std", sans-serif;
	line-height: 1.25;
	letter-spacing: -0.1em;
}

.cta__btn {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	margin-top: 2.5rem;
	display: inline-flex;
	align-items: center;
	gap: 1rem;
	justify-content: center;
	width: 100%;
	padding: 0.875rem 1.25rem;
	background-color: #014896;
	color: #fff;
	border: 0.125rem solid #014896;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 0.9375rem;
	font-weight: 700;
	text-decoration: none;
	border-radius: 2.375rem;
	letter-spacing: 0.04em;
	transition: color 0.3s ease;
}

.cta__btn::before {
	content: "";
	position: absolute;
	inset: 0;
	background-color: #fff;
	clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
	z-index: -1;
	transition: clip-path 0.3s ease-out;
}

.cta__btn:focus-visible {
	color: #014896;
	opacity: 1;
}

.cta__btn:focus-visible::before {
	clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
	animation: cta-btn-fill 0.3s ease-out;
	transition: none;
}

.cta__btn-icon {
	display: inline-block;
	flex-shrink: 0;
	width: 1.875rem;
	aspect-ratio: 41/30;
	background-color: currentColor;
	mask-image: url("../images/mail-icon.svg");
	mask-size: contain;
	mask-repeat: no-repeat;
	mask-position: center;
	-webkit-mask-image: url("../images/mail-icon.svg");
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
}

.cta__btn-arrow {
	font-family: "Afacad", sans-serif;
	font-size: 1rem;
}

.footer-tel {
	position: relative;
	z-index: 2;
	padding-block: 3.25rem 6rem;
	overflow: hidden;
	text-align: center;
	clip-path: polygon(0 0, 100% 0, 100% 100%, 50% calc(100% - 2.5rem), 0 100%);
	margin-top: -1rem;
}

.footer-tel__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	display: block;
	pointer-events: none;
}

.footer-tel__bg picture,
.footer-tel__bg img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
}

.footer-tel__inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.footer-tel__label {
	font-family: "mfw-pa1gothicstdn-bold", "A P-OTF A1Gothic Std", sans-serif;
	font-size: 2rem;
	color: #fff;
	line-height: 1.25;
	letter-spacing: -0.08em;
}

.footer-tel__hours {
	margin-top: 0.5rem;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 1rem;
	font-weight: 900;
	color: #fff;
	line-height: 1;
	letter-spacing: 0em;
}

.footer-tel__number {
	margin-top: 2rem;
	display: inline-flex;
	align-items: baseline;
	flex-direction: column;
	gap: 0.375rem;
	font-family: "Anton SC", sans-serif;
	font-size: 2.75rem;
	font-weight: 400;
	color: #c5d8ff;
	text-decoration: none;
	letter-spacing: 0.06em;
	line-height: 1;
	transition: opacity 0.3s;
}

.footer-tel__number:focus-visible {
	opacity: 0.8;
}

.footer-tel__prefix {
	font-size: 2rem;
	font-family: "mfw-pa1gothicstdn-bold", "A P-OTF A1Gothic Std", sans-serif;
	color: #fff;
	line-height: 1;
	letter-spacing: -0.08em;
}

.footer-tel__rep {
	font-size: 1.5rem;
	font-family: "mfw-pa1gothicstdn-bold", "A P-OTF A1Gothic Std", sans-serif;
	color: #fff;
	line-height: 1;
	letter-spacing: -0.08em;
	align-self: flex-end;
}

.footer {
	position: relative;
	background-color: #fff;
	padding-block: 1.5rem calc(2rem + 4rem);
	overflow-x: clip;
}

.footer::before {
	content: "";
	position: absolute;
	bottom: 0rem;
	left: 50%;
	width: 25rem;
	aspect-ratio: 712/544;
	background-image: url("../images/footer-bg.png");
	background-repeat: no-repeat;
	background-size: 100% 100%;
	transform: translateX(-50%);
	pointer-events: none;
	z-index: 0;
}

.footer__inner {
	position: relative;
	z-index: 1;
}

.footer__columns {
	display: flex;
	flex-direction: column;
}

.footer__col {
	display: flex;
	flex-direction: column;
}

.footer__col--left {
	display: contents;
}

.footer__col--right {
	order: 2;
	margin-top: 3rem;
}

.footer__col--right-title {
	font-family: "mfw-pa1gothicstdn-bold", "A P-OTF A1Gothic Std", sans-serif;
	font-size: 1.25rem;
	letter-spacing: -0.08em;
	color: #014896;
	line-height: 1.3333333333;
}

.footer__col--right-nav {
	margin-top: 1rem;
	display: flex;
	flex-direction: column;
	gap: 0.875rem;
}

.footer__nav-block {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.footer__sns {
	margin-top: 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	max-width: 15rem;
	width: 100%;
}

.footer__sns-link {
	display: flex;
	align-items: center;
	gap: 0.625rem;
	padding: 0.4375rem 0.8125rem;
	background-color: #fff;
	border: 1px solid #282828;
	border-radius: 0.25rem;
	transition: opacity 0.3s ease;
}

.footer__sns-link:focus-visible {
	opacity: 0.75;
}

.footer__sns-icon {
	display: block;
	width: 1.9375rem;
	height: 1.9375rem;
	flex-shrink: 0;
}

.footer__sns-text {
	display: flex;
	flex-direction: column;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 700;
	font-size: 0.875rem;
	letter-spacing: 0.1em;
	line-height: 1;
	color: #282828;
}

.footer__info {
	order: 1;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.footer__logo-link {
	display: inline-block;
	align-self: flex-start;
	transition: opacity 0.2s ease;
	margin-inline: auto;
}

.footer__logo-link:focus-visible {
	opacity: 0.75;
}

.footer__logo {
	display: block;
	width: 11.25rem;
	height: auto;
}

.footer__address {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 1rem;
	font-weight: 900;
	color: #282828;
	line-height: 1.8;
	font-style: normal;
	letter-spacing: 0.03em;
}

.footer__deco-text {
	order: 3;
	margin-top: 2.5rem;
	font-family: "mfw-pa1gothicstdn-bold", "A P-OTF A1Gothic Std", sans-serif;
	font-size: 3rem;
	color: #014896;
	line-height: 1.25;
	letter-spacing: 0em;
}

.footer__nav-label {
	font-family: "Alata", sans-serif;
	font-size: 0.8125rem;
	font-weight: 400;
	letter-spacing: 0.16em;
	color: #282828;
	margin-block-end: 1rem;
	line-height: 1;
}

.footer__nav-list {
	display: flex;
	flex-direction: column;
	gap: 0.875rem;
}

.footer__nav-item {
	line-height: 1;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.footer__nav-item:not(.footer__nav-item--contact):not(.footer__nav-item--privacy)::before {
	content: "ー";
	color: #282828;
	font-weight: 400;
	line-height: 1;
}

.footer__nav-link {
	font-family: "mfw-pa1gothicstdn-bold", "A P-OTF A1Gothic Std", sans-serif;
	font-size: 1.125rem;
	color: #282828;
	letter-spacing: -0.1em;
	text-decoration: none;
	transition: color 0.3s;
}

.footer__nav-link:focus-visible {
	color: #5c3f8f;
	opacity: 1;
}

.footer__nav-link--small {
	font-size: 1rem;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 500;
	color: #282828;
	letter-spacing: 0.1em;
	line-height: 1;
}

.footer__nav-link--btn {
	position: relative;
	isolation: isolate;
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	max-width: 11.25rem;
	width: 100%;
	padding: 0.5rem 1.0625rem;
	background-color: #282828;
	font-family: "mfw-pa1gothicstdn-bold", "A P-OTF A1Gothic Std", sans-serif;
	color: #fff;
	font-weight: 700;
	font-size: 1.125rem;
	letter-spacing: -0.1em;
	border: 1px solid #282828;
	transition: color 0.3s;
}

.footer__nav-link--btn::before {
	content: "";
	position: absolute;
	inset: 0;
	background-color: #fff;
	clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
	z-index: -1;
	transition: clip-path 0.3s ease-out;
}

.footer__nav-link--btn::after {
	content: "→";
	font-family: "Afacad", sans-serif;
	font-size: 1.625rem;
	font-weight: 600;
	letter-spacing: -0.15em;
	margin-inline-start: auto;
}

.footer__nav-link--btn:focus-visible {
	opacity: 1;
	color: #282828;
}

.footer__nav-link--btn:focus-visible::before {
	clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
	animation: footer-nav-btn-fill 0.3s ease-out;
	transition: none;
}

.footer__group {
	margin-top: 4rem;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.footer__group-logo {
	display: flex;
	justify-content: center;
	width: 3.75rem;
	height: auto;
	margin-inline: auto;
}

.footer__group-logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	aspect-ratio: 60/53;
}

.footer__group-companies {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	align-items: center;
	gap: 1rem;
}

.footer__group-company-link {
	display: block;
	transition: opacity 0.2s ease;
}

.footer__group-company-link:focus-visible {
	opacity: 0.75;
}

.footer__group-company-logo {
	display: block;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 1.25rem;
	margin-inline: auto;
	object-fit: contain;
}

.footer__copyright {
	order: 4;
	margin-top: 0.625rem;
	font-family: "Orienta", sans-serif;
	font-size: 0.625rem;
	font-weight: 400;
	color: #282828;
	letter-spacing: 0.03em;
	line-height: 1.5;
}

.fv {
	position: relative;
	width: 100%;
	overflow-x: clip;
}

.fv__image {
	display: block;
	width: 100%;
	padding-block: 1.5rem 2.5rem;
	animation: fv-image-fadein 1s cubic-bezier(0.22, 0.61, 0.36, 1) both;
	height: 21.75rem;
	overflow: clip;
}

.fv__image img,
.fv__image picture {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% center;
}

.fv__inner {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: flex;
	align-items: center;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.fv__content {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
}

.fv__title-wrap {
	display: inline-flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.625rem;
}

.fv__title {
	font-family: "mfw-pa1gothicstdn-bold", "A P-OTF A1Gothic Std", sans-serif;
	font-size: 2.5rem;
	color: #5c3f8f;
	letter-spacing: -0.1em;
	line-height: 1;
	background-color: #f1f1f1;
	padding: 0.25rem 0.5rem;
	animation: fv-title-reveal 0.45s cubic-bezier(0.7, 0, 0.3, 1) 0.2s both;
}

.fv__deco {
	position: absolute;
	left: 0;
	bottom: 0.5rem;
	right: 0;
	z-index: 2;
	overflow: hidden;
	pointer-events: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}

.fv__deco-track {
	display: flex;
	flex-wrap: nowrap;
	width: -moz-max-content;
	width: max-content;
	animation: marquee-loop var(--fv-deco-duration, 1s) linear infinite;
	animation-play-state: paused;
}

.fv__deco-track.is-marquee-ready {
	animation-play-state: running;
}

.fv__deco-text {
	flex-shrink: 0;
	white-space: nowrap;
	font-family: "Alata", sans-serif;
	font-weight: 400;
	font-size: 3.5rem;
	color: #ececec;
	letter-spacing: 0.08em;
	line-height: 1;
	padding-right: 2.5rem;
	text-transform: uppercase;
}

.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
	background-color: transparent;
}

.header__inner {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 4rem;
	padding: 0 20px;
}

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

.header__logo-title {
	margin: 0;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
}

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

.header__logo-link img {
	width: 100%;
	height: auto;
	object-fit: contain;
	aspect-ratio: 214/94;
}

.header__divider {
	display: none;
	width: 0.0625rem;
	height: 2.125rem;
	background-color: #7e7e7e;
	flex-shrink: 0;
}

.header__tagline {
	display: none;
	font-family: "Noto Sans JP", sans-serif;
	font-size: clamp(0.625rem, 0.4107142857rem + 0.4464285714vw, 0.8125rem);
	font-weight: 700;
	line-height: 1.2307692308;
	color: #282828;
	letter-spacing: 0.1em;
}

.header__nav {
	display: none;
}

.header__nav-list {
	display: flex;
	align-items: center;
	gap: 1.625rem;
	gap: min(1.8055555556vw, 1.625rem);
}

.header__nav-item {
	position: relative;
}

.header__nav-link {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.625rem;
	text-decoration: none;
	padding: 0.5rem 0;
}

.header__nav-en {
	display: block;
	font-size: 0.75rem;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 700;
	color: #7e7e7e;
	line-height: 1;
	letter-spacing: 0.05em;
}

.header__nav-ja {
	display: inline-flex;
	align-items: center;
	color: #282828;
	font-size: 1.125rem;
	font-family: "mfw-pa1gothicstdn-medium", "A P-OTF A1Gothic Std", sans-serif;
	line-height: 1;
	letter-spacing: 0.1em;
	white-space: nowrap;
	transition: color 0.3s;
}

.header__nav-plus {
	display: inline-block;
	line-height: 1;
	margin-right: 0.125rem;
}

.header__dropdown {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%) translateY(-0.5rem);
	background-color: #fff;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
	list-style: none;
	margin-top: 0.5rem;
	padding: 1.125rem 1.25rem;
	z-index: 10;
	white-space: nowrap;
	border-radius: 0.3125rem;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0.3s;
}

.header__nav-item--has-dropdown:focus-within .header__dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
	pointer-events: auto;
	transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0s;
}

.header__dropdown::before {
	content: "";
	position: absolute;
	top: -0.5rem;
	left: 0;
	right: 0;
	height: 0.5rem;
}

.header__dropdown-link {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 0.5rem 0;
	font-family: "mfw-pa1gothicstdn-bold", "A P-OTF A1Gothic Std", sans-serif;
	font-size: 1rem;
	color: #282828;
	text-decoration: none;
	transition: color 0.3s ease-in-out;
}

.header__dropdown-text {
	text-decoration: underline;
	text-decoration-color: transparent;
	text-underline-offset: 0.25rem;
	text-decoration-thickness: 0.125rem;
	transition: text-decoration-color 0.3s ease-in-out;
}

.header__dropdown-link::before {
	content: "→";
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.25rem;
	height: 1.25rem;
	background-color: #5c3f8f;
	color: #fff;
	border-radius: 50%;
	font-family: "Afacad", sans-serif;
	font-size: 0.625rem;
	font-weight: 400;
	line-height: 1;
	text-decoration: none;
	opacity: 0;
	transition: opacity 0.3s ease-in-out;
}

.header__dropdown-link:focus-visible {
	color: #5c3f8f;
	opacity: 1;
}

.header__dropdown-link:focus-visible .header__dropdown-text {
	text-decoration-color: currentColor;
}

.header__dropdown-link:focus-visible::before {
	opacity: 1;
}

.header__hamburger {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 3.625rem;
	height: 3.625rem;
	padding: 0.75rem 0.75rem 0.25rem;
	gap: 0.25rem;
	background-color: #014896;
	border: none;
	cursor: pointer;
	flex-shrink: 0;
}

.header__hamburger-icon {
	position: relative;
	width: 2.3125rem;
	height: 1.125rem;
}

.header__hamburger-line {
	position: absolute;
	left: 0;
	display: block;
	width: 2.3125rem;
	height: 0.09375rem;
	background-color: #fff;
	transition: transform 0.3s ease, opacity 0.3s ease;
	transform-origin: center;
}

.header__hamburger-line:nth-child(1) {
	top: 0;
}

.header__hamburger-line:nth-child(2) {
	top: 0.5rem;
}

.header__hamburger-line:nth-child(3) {
	top: 1rem;
}

.header__hamburger-text {
	font-family: "Afacad", sans-serif;
	font-size: 0.875rem;
	font-weight: 600;
	color: #fff;
	line-height: 1;
}

.header__hamburger[aria-expanded=true] .header__hamburger-line:nth-child(1) {
	transform: translateY(0.5rem) rotate(27.5deg);
}

.header__hamburger[aria-expanded=true] .header__hamburger-line:nth-child(2) {
	opacity: 0;
	transform: scaleX(0);
}

.header__hamburger[aria-expanded=true] .header__hamburger-line:nth-child(3) {
	transform: translateY(-0.5rem) rotate(-27.5deg);
}

.header__sp-nav {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100dvh;
	background-color: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(0.3125rem);
	-webkit-backdrop-filter: blur(0.3125rem);
	overflow-y: auto;
	transform: translateX(100%);
	transition: transform 0.3s ease;
	z-index: 1;
}

.header__sp-nav[aria-hidden=false] {
	transform: translateX(0);
}

.header__sp-nav-inner {
	width: 100%;
	max-width: calc(100% - 2.875rem);
	margin: 0 auto;
	padding: calc(4rem + 1.375rem) 0 2.5rem;
}

.header__sp-nav-list {
	display: flex;
	flex-direction: column;
	gap: 0.6875rem;
}

.header__sp-nav-item {
	width: 100%;
}

.header__sp-nav-link {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 0.5rem 0 0.625rem;
	border-bottom: 1px solid #8d8d8d;
	text-decoration: none;
	background: none;
	border-left: none;
	border-right: none;
	border-top: none;
	cursor: pointer;
	text-align: left;
	font-family: inherit;
	transition: color 0.2s ease;
}

.header__sp-nav-link:focus-visible .header__nav-ja {
	color: #5c3f8f;
}

.header__sp-nav-text {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.75rem;
}

.header__sp-nav-icon {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.25rem;
	height: 1.25rem;
	border-radius: 50%;
	background-color: #5c3f8f;
	color: #fff;
	font-family: "Afacad", sans-serif;
	font-weight: 600;
	font-size: 0.625rem;
	line-height: 1;
	position: relative;
}

.header__sp-nav-icon--arrow {
	overflow: hidden;
}

.header__sp-nav-icon--arrow::before,
.header__sp-nav-icon--arrow::after {
	content: "→";
	position: absolute;
	top: 50%;
	left: 50%;
	line-height: 1;
	transition: transform 0.4s ease;
}

.header__sp-nav-icon--arrow::before {
	transform: translate(-50%, -50%);
}

.header__sp-nav-icon--arrow::after {
	transform: translate(-50%, -50%) translateX(-300%);
}

.header__sp-nav-link:focus-visible .header__sp-nav-icon--arrow::before {
	transform: translate(-50%, -50%) translateX(300%);
}

.header__sp-nav-link:focus-visible .header__sp-nav-icon--arrow::after {
	transform: translate(-50%, -50%);
}

.header__sp-nav-icon--toggle::before,
.header__sp-nav-icon--toggle::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	background-color: #fff;
	transition: transform 0.3s, opacity 0.3s;
}

.header__sp-nav-icon--toggle::before {
	width: 0.6875rem;
	height: 0.0625rem;
	transform: translate(-50%, -50%);
}

.header__sp-nav-icon--toggle::after {
	width: 0.0625rem;
	height: 0.6875rem;
	transform: translate(-50%, -50%);
}

.header__sp-nav-link--toggle[aria-expanded=true] .header__nav-ja {
	color: #5c3f8f;
}

.header__sp-nav-link--toggle[aria-expanded=true] .header__sp-nav-icon--toggle::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.header__sp-sub-wrap {
	display: grid;
	grid-template-rows: 0fr;
	opacity: 0;
	transition: grid-template-rows 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
}

.header__sp-sub {
	min-height: 0;
	overflow: hidden;
}

.header__sp-nav-item--has-sub.is-open .header__sp-sub-wrap {
	grid-template-rows: 1fr;
	opacity: 1;
	padding: 0.4375rem 0 0;
}

.header__sp-sub-link {
	display: block;
	font-family: "mfw-pa1gothicstdn-medium", "A P-OTF A1Gothic Std", sans-serif;
	font-size: 1.125rem;
	line-height: 2rem;
	letter-spacing: -0.1em;
	color: #5c5c5c;
	text-decoration: none;
	transition: color 0.2s ease;
}

.header__sp-sub-link:focus-visible {
	color: #5c3f8f;
}

.header__sp-sub-link--all {
	color: #5c3f8f;
}

.header__sp-cta {
	display: flex;
	flex-direction: column;
	gap: 0.9375rem;
	margin-top: 2.5rem;
}

.header__sp-cta-btn {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 4rem;
	padding: 0 1rem;
	text-decoration: none;
	transition: background-color 0.3s ease, color 0.3s ease;
}

.header__sp-cta-btn--recruit {
	background-color: #ebebef;
}

.header__sp-cta-btn--recruit:focus-visible {
	background-color: #5c3f8f;
}

.header__sp-cta-btn--recruit:focus-visible .header__sp-cta-text {
	color: #fff;
}

.header__sp-cta-btn--recruit:focus-visible .header__sp-cta-arrow {
	background-color: #fff;
	color: #5c3f8f;
}

.header__sp-cta-btn--contact {
	background-color: #014896;
	border: 0.0625rem solid #014896;
}

.header__sp-cta-btn--contact:focus-visible {
	background-color: #fff;
}

.header__sp-cta-btn--contact:focus-visible .header__sp-cta-text {
	color: #014896;
}

.header__sp-cta-btn--contact:focus-visible .header__sp-cta-arrow {
	background-color: #5c3f8f;
	color: #fff;
}

.header__sp-cta-inner {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 1rem;
}

.header__sp-cta-icon {
	display: block;
	width: 1.875rem;
	aspect-ratio: 30/33;
	height: auto;
	flex-shrink: 0;
}

.header__sp-cta-text {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 700;
	font-size: 1rem;
	line-height: 2.125rem;
	letter-spacing: -0.04em;
	transition: color 0.3s ease;
}

.header__sp-cta-btn--recruit .header__sp-cta-text {
	color: #5c3f8f;
}

.header__sp-cta-btn--contact .header__sp-cta-text {
	color: #fff;
}

.header__sp-cta-arrow {
	position: relative;
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.25rem;
	height: 1.25rem;
	border-radius: 50%;
	font-family: "Afacad", sans-serif;
	font-weight: 600;
	font-size: 0.625rem;
	line-height: 1;
	transition: background-color 0.3s ease, color 0.3s ease;
}

.header__sp-cta-arrow::before {
	content: "→";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	line-height: 1;
}

.header__sp-cta-btn--recruit .header__sp-cta-arrow {
	background-color: #5c3f8f;
	color: #fff;
}

.header__sp-cta-btn--contact .header__sp-cta-arrow {
	background-color: #fff;
	color: #5c3f8f;
}

.loading {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: none;
	place-items: center;
	overflow: hidden;
}

.loading__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	background: #111;
}

.loading__stage {
	position: relative;
	z-index: 1;
	width: 82vw;
	height: 52vw;
	overflow: hidden;
}

.loading__frame {
	position: absolute;
	inset: 0;
}

.loading__line {
	position: absolute;
	display: block;
	background: rgba(255, 255, 255, 0.55);
}

.loading__line--v {
	top: 6%;
	width: 1px;
	height: 88%;
	transform: scaleY(0);
	transform-origin: top;
}

.loading__line--h {
	left: 6%;
	width: 88%;
	height: 1px;
	transform: scaleX(0);
	transform-origin: left;
}

.loading__logo {
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 3;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.625rem;
	color: #fff;
	text-align: center;
	opacity: 0;
}

.loading__logo-mark {
	display: block;
	width: 2.75rem;
	height: 2.4375rem;
}

.loading__logo-mark img {
	display: block;
	width: 100%;
	height: auto;
	filter: brightness(0) invert(1);
}

.loading__logo-main {
	font-family: "Alata", sans-serif;
	font-size: 1.25rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	line-height: 1.1;
}

.loading__logo-sub {
	font-family: "Alata", sans-serif;
	font-size: 0.5rem;
	letter-spacing: 0.4em;
	line-height: 1;
	color: rgba(255, 255, 255, 0.55);
	padding-left: 0.4em;
}

.loading__curtain {
	position: absolute;
	inset: 0;
	z-index: 4;
	width: 100%;
	height: 100%;
	background: rgb(215.5, 215.5, 215.5);
	will-change: transform;
}

.loading-trigger {
	position: fixed;
	top: calc(var(--header-h) + 0.75rem);
	left: 1rem;
	z-index: 90000;
	padding: 0.5rem 0.875rem;
	background-color: #5c3f8f;
	color: #fff;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1;
	border: none;
	border-radius: 0.25rem;
	cursor: pointer;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
	transition: opacity 0.2s;
}

.mv {
	position: relative;
	width: 100%;
	aspect-ratio: 375/703;
	display: block;
	overflow: hidden;
	box-sizing: content-box;
}

.mv__slider {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.mv__slider .swiper-wrapper,
.mv__slider .swiper-slide {
	width: 100%;
	height: 100%;
}

.mv__image {
	width: 100%;
	height: 100%;
}

.mv__image picture,
.mv__image img {
	width: 100%;
	height: 100%;
	aspect-ratio: 375/703;
	object-fit: cover;
	object-position: center top;
}

.mv__content {
	position: absolute;
	z-index: 2;
	top: clamp(var(--header-h, 4.375rem) + 1rem, 42%, 100svh - 18.125rem);
	bottom: auto;
	left: 20px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.mv__title {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.375rem;
	font-family: "mfw-pa1gothicstdn-bold", "A P-OTF A1Gothic Std", sans-serif;
	-webkit-text-stroke: 0.5px rgba(255, 255, 255, 0.4);
}

.mv__title span {
	font-size: 3.0625rem;
	font-family: "mfw-pa1gothicstdn-bold", "A P-OTF A1Gothic Std", sans-serif;
	letter-spacing: 0em;
	line-height: 1;
	display: inline-block;
	position: relative;
	padding: 0.125rem 1.25rem;
	background-color: #fff;
	color: #282828;
	clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
}

.mv__sub-wrap {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	margin-top: 1.125rem;
	width: 100%;
}

.mv__sub-label {
	display: inline-flex;
	position: relative;
	align-items: flex-end;
	justify-content: center;
	padding: 0 0.625rem;
	background-color: #5c3f8f;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 700;
	line-height: 1.2;
	font-size: 1.25rem;
	color: #fff;
	letter-spacing: 0.03em;
	width: -moz-fit-content;
	width: fit-content;
}

.mv__sub-label span {
	font-size: 1.25rem;
}

.mv__marquee {
	position: absolute;
	bottom: 1rem;
	left: 0;
	right: 0;
	z-index: 1;
	overflow: hidden;
	pointer-events: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}

.mv__marquee-track {
	display: flex;
	flex-wrap: nowrap;
	width: -moz-max-content;
	width: max-content;
	animation: marquee-loop 40s linear infinite;
}

.mv__marquee-text {
	flex-shrink: 0;
	white-space: nowrap;
	font-family: "Alata", sans-serif;
	font-size: 3.75rem;
	font-weight: 400;
	color: #dcdcdc;
	letter-spacing: 0.08em;
	line-height: 1;
	padding-right: 2.5rem;
}

.mv__pagination {
	position: absolute;
	z-index: 3;
	right: 20px;
	bottom: 7.25rem;
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.mv__pagination-bullets.swiper-pagination {
	position: static;
	display: flex;
	align-items: center;
	gap: 0.375rem;
	width: auto;
}

.mv__pagination-bullets .swiper-pagination-bullet {
	width: 1.5rem;
	height: 0.125rem;
	margin: 0;
	border-radius: 0;
	background-color: #8f8f8f;
	opacity: 1;
	transition: background-color 0.3s, width 0.3s;
}

.mv__pagination-bullets .swiper-pagination-bullet-active {
	width: 3.125rem;
	background-color: #5c3f8f;
}

.mv__pagination-count {
	font-family: "Anton SC", sans-serif;
	font-size: 0.9375rem;
	font-weight: 400;
	color: #5c3f8f;
	letter-spacing: 0.12em;
	line-height: 1;
}

.mv__pagination-slash {
	color: #282828;
}

.mv__pagination-total {
	color: #a1a1a1;
}

.news-archive__list {
	display: flex;
	flex-direction: column;
}

.news-archive__empty {
	font-family: "mfw-pa1gothicstdn-bold", "A P-OTF A1Gothic Std", sans-serif;
	font-weight: 700;
	font-size: 0.875rem;
	color: #000;
	padding: 1.5rem 0;
}

.news-page {
	background-color: #eaebe8;
	padding-block: 1.875rem 3.125rem;
}

.news-page .breadcrumb__inner.inner {
	padding-inline: 0;
}

.news-page__article {
	background-color: #fff;
	padding-block: 2.5rem 3.75rem;
	padding-inline: 20px;
}

.news-page__title {
	font-family: "mfw-pa1gothicstdn-bold", "A P-OTF A1Gothic Std", sans-serif;
	font-size: 1.75rem;
	font-weight: 700;
	color: #282828;
	line-height: 1.3;
	letter-spacing: -0.06em;
}

.news-page__meta {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-top: 1.5rem;
}

.news-page__date {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 0.8125rem;
	font-weight: 700;
	line-height: 1.25;
	color: #014896;
}

.news-page__cat {
	font-size: 0.75rem;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 700;
	letter-spacing: 0.1em;
	color: #014896;
	border: 1px solid #014896;
	border-radius: 0.1875rem;
	padding: 0.125rem 0.3125rem;
}

.news-page__content {
	margin-top: 1.5rem;
}

.news-page__content > * {
	margin-bottom: 1rem;
}

.news-page__content h2 {
	display: inline-block;
	background-color: #5c3f8f;
	color: #fff;
	font-family: "mfw-pa1gothicstdn-bold", "A P-OTF A1Gothic Std", sans-serif;
	font-size: 1.25rem;
	font-weight: 600;
	line-height: 1.2857142857;
}

.news-page__content h3 {
	font-family: "mfw-pa1gothicstdn-bold", "A P-OTF A1Gothic Std", sans-serif;
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 1.5;
	color: #282828;
	text-decoration: underline;
}

.news-page__content h4 {
	font-family: "mfw-pa1gothicstdn-bold", "A P-OTF A1Gothic Std", sans-serif;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.8;
	color: #014896;
}

.news-page__content p {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 0.9375rem;
	font-weight: 700;
	line-height: 1.8888888889;
	letter-spacing: -0.04em;
	color: #282828;
}

.news-page__content li {
	position: relative;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 0.9375rem;
	font-weight: 700;
	line-height: 1.8888888889;
	letter-spacing: -0.04em;
	color: #282828;
	padding-left: 1em;
}

.news-page__content li::before {
	content: "・";
	position: absolute;
	top: 0.5lh;
	left: 0;
	translate: 0 -50%;
}

.news-page__content a {
	font-size: 0.9375rem;
	font-weight: 700;
	line-height: 1.8888888889;
	letter-spacing: -0.04em;
	color: #5c3f8f;
	text-decoration: underline;
	text-decoration-thickness: 0.125rem;
	text-underline-offset: 0.25rem;
	text-decoration-color: currentColor;
	transition: text-decoration-color 0.3s ease, color 0.3s ease;
	word-break: break-word;
	transition: text-decoration-color 0.3s ease, color 0.3s ease;
}

.news-page__content .wp-block-button__link {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.625rem;
	font-family: "mfw-pa1gothicstdn-bold", "A P-OTF A1Gothic Std", sans-serif;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.6;
	letter-spacing: -0.1em;
	color: #fff;
	background-color: #014896;
	border: 1px solid transparent;
	text-decoration: none;
	width: 100%;
	transition: border-color 0.3s, background-color 0.3s, color 0.3s;
}

.news-page__content .wp-block-button__link::after {
	content: "→";
	font-size: 1.125rem;
	font-family: "Afacad", sans-serif;
	letter-spacing: -0.15em;
	color: #fff;
	transition: color 0.3s;
}

.pager-list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-areas: "prev next" "center center";
	gap: 1.5rem 0.75rem;
	margin-top: 2.5rem;
	max-width: 22.5rem;
	margin-inline: auto;
}

.pager-list__col {
	display: flex;
	justify-content: center;
}

.pager-list__col--prev {
	grid-area: prev;
}

.pager-list__col--prev:not(:has(a)) {
	visibility: hidden;
}

.pager-list__col--center {
	grid-area: center;
}

.pager-list__col--next {
	grid-area: next;
}

.pager-list__col--next:not(:has(a)) {
	visibility: hidden;
}

.pager-list__btn {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	padding: 1.125rem 1rem;
	font-family: "mfw-pa1gothicstdn-bold", "A P-OTF A1Gothic Std", sans-serif;
	font-size: 0.875rem;
	font-weight: 700;
	line-height: 1.6;
	border-radius: 2.375rem;
	text-decoration: none;
	white-space: nowrap;
	transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.pager-list__btn--outline {
	background-color: #fff;
	border: 1px solid #5c3f8f;
	color: #5c3f8f;
}

.pager-list__btn--filled {
	background-color: #5c3f8f;
	border: 1px solid #5c3f8f;
	color: #fff;
	max-width: 12.5rem;
}

.partners {
	overflow-x: clip;
}

.partners__title {
	text-align: center;
}

.partners__list {
	background-color: #f1f1f1;
	padding-block: 1.125rem;
	padding-inline: 1rem;
	margin-top: 0.75rem;
}

.partners__list--single-row {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.25rem 1rem;
	padding-block: 1.5rem;
}

.partners__list--two-rows {
	display: flex;
	justify-content: center;
	flex-direction: column;
	gap: 1.25rem;
	flex-wrap: wrap;
}

.partners__list--two-rows-outerwall {
	display: flex;
	justify-content: center;
	gap: 1.25rem;
	flex-wrap: wrap;
}

.partners__list--three-rows {
	display: flex;
	justify-content: center;
	gap: 1.25rem;
	flex-wrap: wrap;
}

.partners__item {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 0.75rem;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 0.875rem;
	font-weight: 700;
	line-height: 2;
	letter-spacing: -0.04em;
	color: #282828;
	text-align: center;
}

.partners__list--logo .partners__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.75rem;
	text-decoration: none;
}

.partners__logo {
	height: 2.875rem;
	width: auto;
	object-fit: contain;
}

.partners__name {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 0.75rem;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: -0.04em;
	color: #282828;
}

.partners__container + .partners__container {
	margin-top: 3.125rem;
}

.post-article__inner.inner {
	margin-top: prem(32);
}

.post-article__title {
	font-size: prem(48);
	color: #5c3f8f;
}

.post-article__info {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.post-article__category {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: prem(5);
}

.post-article__category li {
	padding: prem(5);
	color: #5c3f8f;
	border: 1px solid #5c3f8f;
}

.post-article__box {
	margin: 6.4rem auto 0;
}

.post-article__content {
	padding: prem(20) prem(23) 0;
	background-color: #fff;
	width: 100%;
}

.post-article__content-wrap {
	padding-bottom: prem(30);
	width: 100%;
	margin: auto;
}

.post-article__contents {
	margin-top: prem(30);
}

.post-article__main-img {
	aspect-ratio: 7/4;
}

.post-article__main-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.post-article__category {
	letter-spacing: 0;
}

.post-article__data {
	margin-left: auto;
	font-size: prem(21);
	text-align: right;
	letter-spacing: 0.05em;
}

.post-article__content h2 {
	margin: prem(30) 0 prem(15);
	padding: prem(5) prem(20);
	color: #fff;
	background-color: #5c3f8f;
	font-size: prem(28);
}

.post-article__contents h3 {
	margin: prem(30) 0 prem(15);
	padding-left: prem(10);
	color: #5c3f8f;
	font-size: prem(28);
	border-left: 0.5em solid #5c3f8f;
}

.post-article__contents h4 {
	margin: prem(10) 0;
	font-size: prem(24);
}

.post-article__contents h5 {
	margin: prem(10) 0;
	padding: prem(2) prem(12.5);
	display: inline-block;
	color: #5c3f8f;
	font-size: prem(20);
	border-top: 2px solid #5c3f8f;
	border-bottom: 2px solid #5c3f8f;
}

.post-article__contents p {
	font-size: prem(20);
}

.post-article__contents a {
	color: #5c3f8f;
	text-decoration: underline;
}

.post-article__contents img {
	margin: prem(10) 0;
}

.post-article__contents figure {
	margin: prem(10) 0;
}

.post-article__contents figcaption {
	margin: prem(10) 0;
	font-size: prem(12);
}

.post-card__img {
	width: 100%;
	aspect-ratio: 400/300;
}

.post-card__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.post-card__body {
	position: relative;
}

.post-card__info {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: prem(8) 0;
}

.post-card__category li {
	padding: prem(5);
	color: #5c3f8f;
	border: 1px solid #5c3f8f;
}

.post-card__new {
	position: absolute;
	top: 0;
	left: 0;
	background-color: #fff;
	color: #5c3f8f;
	padding: prem(5) prem(10);
	border: 1px solid #5c3f8f;
}

.post-connect__title {
	font-size: prem(24);
	color: #5c3f8f;
}

.post-connect__items {
	display: grid;
	gap: prem(50);
	margin-top: prem(16);
}

.post-list {
	position: relative;
}

.post-list__wrap {
	margin: prem(32) 0;
}

.post-list__title {
	font-size: prem(48);
	color: theme;
}

.post-list__items {
	display: grid;
	gap: prem(50);
	margin-top: prem(16);
}

.post-list__cards {
	margin-top: prem(48);
}

.post-list__btn {
	margin-top: prem(20);
	text-align: center;
}

.prime-us {
	position: relative;
	padding-top: 3.75rem;
	padding-bottom: 5rem;
	z-index: 1;
}

.prime-us::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 2rem;
	background-color: #f1f1f1;
	width: 100%;
	height: 80.568948891%;
	z-index: -1;
	clip-path: polygon(0 5%, 100% 0%, 100% 95%, 0% 100%);
}

.prime-us__inner.inner {
	max-width: 25rem;
}

.prime-us__header {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.5rem;
}

.prime-us__title {
	font-family: "mfw-pa1gothicstdn-bold", "A P-OTF A1Gothic Std", sans-serif;
	font-size: 2.375rem;
	font-weight: 700;
	letter-spacing: -0.08em;
	line-height: 1;
	color: #5c3f8f;
}

.prime-us__subtitle {
	position: relative;
	font-family: "mfw-pa1gothicstdn-bold", "A P-OTF A1Gothic Std", sans-serif;
	font-size: 0.875rem;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: -0.08em;
	color: #282828;
}

.prime-us__subtitle::before {
	content: "";
	position: absolute;
	top: -0.875rem;
	left: 50%;
	translate: -50% 0;
	width: 50%;
	height: 0.0625rem;
	background-color: #282828;
}

.prime-us__content {
	margin-top: 1.5rem;
}

.prime-us__container {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.prime-us__img img {
	aspect-ratio: 558/332;
	object-fit: cover;
	width: 100%;
	height: auto;
}

.prime-us__content-title {
	font-family: "mfw-pa1gothicstdn-bold", "A P-OTF A1Gothic Std", sans-serif;
	font-size: 1.75rem;
	font-weight: 700;
	line-height: 1.36;
	letter-spacing: -0.08em;
	color: #282828;
}

.prime-us__merits-title {
	font-family: "mfw-pa1gothicstdn-bold", "A P-OTF A1Gothic Std", sans-serif;
	font-size: 2.25rem;
	font-weight: 700;
	letter-spacing: -0.06em;
	color: #014896;
	text-align: center;
	margin-top: 2.5rem;
}

.prime-us__content-text {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 0.875rem;
	font-weight: 700;
	color: #282828;
	line-height: 1.7;
	letter-spacing: -0.04em;
}

.prime-us__cards {
	container-type: inline-size;
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 1.25rem;
	margin-top: 1.25rem;
}

.prime-us__card {
	position: relative;
	overflow: clip;
	padding: 1.5rem 1.25rem 2.25rem;
	background-color: #fff;
}

.prime-us__card-title {
	font-family: "mfw-pa1gothicstdn-bold", "A P-OTF A1Gothic Std", sans-serif;
	font-size: 1.75rem;
	font-weight: 700;
	color: #014896;
	line-height: 1.36;
	letter-spacing: -0.08em;
	text-align: center;
}

.prime-us__card-img {
	text-align: center;
	max-width: 11.25rem;
	margin-inline: auto;
	margin-top: 1.25rem;
}

.prime-us__card-img img {
	aspect-ratio: 286/242;
	object-fit: contain;
	width: 100%;
	height: auto;
}

.prime-us__card-body {
	margin-top: 1.25rem;
}

.prime-us__card-num {
	position: absolute;
	right: 0rem;
	bottom: -0.5rem;
	font-family: "Anton SC", sans-serif;
	font-size: 5.625rem;
	font-weight: 400;
	color: #f1f1f1;
	line-height: 1;
	z-index: 0;
}

.prime-us__card-text {
	position: relative;
	z-index: 1;
	font-size: 1rem;
	font-weight: 700;
	color: #282828;
	line-height: 1.7;
	letter-spacing: -0.04em;
}

.privacy-policy {
	padding-block: 1.5rem 5rem;
}

.privacy-policy__content {
	width: 100%;
}

.privacy-policy__lead {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 0.875rem;
	font-weight: 400;
	color: #282828;
	line-height: 1.8666666667;
	letter-spacing: 0.02em;
}

.privacy-policy__list {
	margin-top: 0.875rem;
	padding-left: 1.25rem;
	list-style: disc;
}

.privacy-policy__list li {
	list-style: disc;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 0.875rem;
	font-weight: 400;
	color: #282828;
	line-height: 1.9;
	letter-spacing: 0.02em;
}

.privacy-policy__list li::marker {
	color: #5c3f8f;
}

.privacy-policy__list li + li {
	margin-top: 0.5rem;
}

.privacy-policy__section {
	margin-top: 2.5rem;
}

.privacy-policy__heading {
	padding-bottom: 0.75rem;
	border-bottom: 1px solid #bdbdbd;
	font-family: "mfw-pa1gothicstdn-bold", "A P-OTF A1Gothic Std", sans-serif;
	font-size: 1.25rem;
	font-weight: 700;
	color: #282828;
	line-height: 1.4;
	letter-spacing: -0.02em;
}

.privacy-policy__text {
	margin-top: 0.875rem;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 0.875rem;
	font-weight: 400;
	color: #282828;
	line-height: 1.8666666667;
	letter-spacing: 0.02em;
}

.privacy-policy__text + .privacy-policy__text {
	margin-top: 0.5rem;
}

.privacy-policy__content a {
	color: #5c3f8f;
	text-decoration: underline;
	text-underline-offset: 0.15em;
}

.projects-archive__section + .projects-archive__section {
	margin-top: 2.5rem;
}

.projects-card {
	position: relative;
	width: 100%;
	display: flex;
	flex-direction: column;
}

.projects-card__img {
	position: relative;
	overflow: hidden;
}

.projects-card__img-swiper {
	width: 100%;
	aspect-ratio: 339/207;
}

.projects-card__img-slide {
	width: 100%;
	height: 100%;
}

.projects-card__img-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.projects-card__pagination {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0.75rem;
	display: flex;
	justify-content: center;
	gap: 0.375rem;
	pointer-events: auto;
	z-index: 3;
}

.projects-card__pagination .swiper-pagination-bullet {
	width: 0.75rem;
	height: 0.75rem;
	border-radius: 50%;
	background-color: transparent;
	border: 1px solid #282828;
	opacity: 1;
	cursor: pointer;
	transition: background-color 0.3s;
}

.projects-card__pagination .swiper-pagination-bullet-active {
	background-color: #5c3f8f;
	border-color: #5c3f8f;
}

.projects-card__body {
	background-color: #f1f1f1;
	padding: 1.25rem;
	flex: 1;
	display: flex;
	flex-direction: column;
	border: 2px solid transparent;
	transition: border-color 0.3s, box-shadow 0.3s;
}

.projects-card__title {
	font-family: "mfw-pa1gothicstdn-bold", "A P-OTF A1Gothic Std", sans-serif;
	font-size: 1.25rem;
	color: #282828;
	line-height: 1.4545454545;
	letter-spacing: -0.1em;
	padding-bottom: 0.25rem;
	border-bottom: 1px solid #5c3f8f;
}

.projects-card__cat {
	align-self: flex-start;
	margin-top: 0.75rem;
	display: inline-block;
	padding: 0.25rem 0.25rem;
	border: 1px solid #1e289c;
	border-radius: 0.1875rem;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 0.875rem;
	color: #1e289c;
	letter-spacing: 0.1em;
	line-height: 1;
}

.projects-card__meta {
	margin-top: 0.75rem;
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.projects-card__meta-row {
	display: flex;
	align-items: center;
	gap: 1.25rem;
}

.projects-card__meta-label {
	width: 4rem;
	padding: 0.1875rem 0.5rem;
	background-color: #5c3f8f;
	color: #fff;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 0.75rem;
	font-weight: 700;
	text-align: center;
	letter-spacing: 0em;
	line-height: 1;
	border-radius: 1.25rem;
}

.projects-card__meta-value {
	color: #282828;
	font-size: 1rem;
	font-weight: 700;
	font-family: "Zen Kaku Gothic New", sans-serif;
	line-height: 1.4285714286;
	letter-spacing: 0em;
	flex: 1;
}

.projects-card__desc {
	margin-top: 0.625rem;
	color: #282828;
	font-size: 1rem;
	font-weight: 700;
	font-family: "Zen Kaku Gothic New", sans-serif;
	line-height: 1.25;
	letter-spacing: 0em;
}

.project-section__items {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	row-gap: 1.875rem;
	margin-top: 2.5rem;
}

.project-section__item {
	display: flex;
}

.project-section__article {
	width: 100%;
	display: flex;
	flex-direction: column;
}

.project-section__card {
	flex: 1;
}

.projects-slider__slide .projects-card {
	transform: scale(0.833);
	transform-origin: center center;
	transition: transform 0.3s ease;
}

.projects-slider__slide:not(.swiper-slide-active) .projects-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.4);
	pointer-events: none;
	z-index: 4;
}

.swiper-slide-active .projects-card {
	transform: scale(1);
}

.swiper-slide-active .projects-card__body {
	border-color: #5c3f8f;
}

.top-project {
	position: relative;
	overflow-x: clip;
	margin-top: 5rem;
}

.top-project__deco {
	position: absolute;
	z-index: 2;
	pointer-events: none;
}

.top-project__deco picture,
.top-project__deco img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.top-project__deco--tr {
	top: -0.25rem;
	right: calc(50% - min(48vw, 42rem));
	width: 6.25rem;
	aspect-ratio: 522/554;
}

.top-project__deco--tr picture,
.top-project__deco--tr img {
	aspect-ratio: 522/554;
}

.top-project__deco--br {
	bottom: 2.5rem;
	right: calc(50% - min(46vw, 37.5rem));
	width: min(18vw, 9.375rem);
	aspect-ratio: 320/272;
}

.top-project__deco--br picture,
.top-project__deco--br img {
	aspect-ratio: 320/272;
}

.projects-slider {
	overflow-x: clip;
}

.projects-slider__container {
	position: relative;
}

.projects-slider__swiper {
	overflow: visible;
	margin-top: 3.125rem;
	padding-bottom: 4.5rem;
}

.projects-slider__slide {
	height: auto;
	display: flex;
	align-items: stretch;
	position: relative;
}

.projects-slider__slide.swiper-slide-active {
	z-index: 4;
}

.projects-slider__nav {
	position: absolute;
	top: 0;
	width: 2.5rem;
	aspect-ratio: 64/108;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #5c3f8f;
	color: #fff;
	border: 0;
	cursor: pointer;
	z-index: 5;
	transition: opacity 0.3s;
	border-radius: 0.4375rem;
	font-family: "Afacad", sans-serif;
	font-size: 2rem;
	font-weight: 600;
	line-height: 1;
}

.projects-slider__nav:disabled {
	opacity: 0.4;
	cursor: default;
}

.projects-slider__nav--prev::before {
	content: "←";
	font-family: "Afacad", sans-serif;
}

.projects-slider__nav--next::before {
	content: "→";
	font-family: "Afacad", sans-serif;
}

.projects-slider__nav--prev,
.projects-slider__nav--next {
	top: 44%;
	transform: translateY(-50%);
}

.projects-slider__nav--prev {
	left: 0rem;
}

.projects-slider__nav--next {
	right: 0rem;
}

.projects-slider__pagination {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	justify-content: center;
	gap: 0.375rem;
	pointer-events: auto;
	margin-inline: 0 !important;
}

.projects-slider__pagination .swiper-pagination-bullet {
	width: 0.75rem;
	height: 0.75rem;
	border-radius: 50%;
	background-color: transparent;
	border: 1px solid #282828;
	opacity: 1;
	cursor: pointer;
	transition: background-color 0.3s;
}

.projects-slider__pagination .swiper-pagination-bullet-active {
	background-color: #5c3f8f;
	border-color: #5c3f8f;
}

.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
	margin-inline: 0;
}

.projects-slider__more {
	margin-top: 2.5rem;
	display: flex;
	justify-content: center;
	align-items: stretch;
	gap: 0;
}

.projects-slider__more-link {
	display: inline-flex;
	align-items: stretch;
	gap: 0rem;
	color: #fff;
}

.projects-slider__more-label {
	position: relative;
	isolation: isolate;
	display: inline-flex;
	align-items: center;
	min-width: 13.75rem;
	padding: 1rem 2rem;
	font-family: "mfw-pa1gothicstdn-bold", "A P-OTF A1Gothic Std", sans-serif;
	font-size: 1.125rem;
	letter-spacing: -0.15em;
	color: #fff;
	clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
	transition: color 0.3s;
}

.projects-slider__more-label::before {
	content: "";
	position: absolute;
	inset: 0;
	background-color: #5c3f8f;
	z-index: -2;
}

.projects-slider__more-label::after {
	content: "";
	position: absolute;
	inset: 1px;
	background-color: #fff;
	clip-path: polygon(100% 0%, 100% 0%, 95% 100%, 95% 100%);
	z-index: -1;
	transition: clip-path 0.3s ease-out;
}

.projects-slider__more-arrow {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3.5rem;
	margin-left: -0.375rem;
	background-color: #e6e6e6;
	color: #282828;
	font-family: "Afacad", sans-serif;
	font-size: 1.25rem;
	line-height: 1;
	clip-path: polygon(0.6875rem 0, 100% 0, calc(100% - 0.6875rem) 100%, 0 100%);
}

.projects-slider__more-arrow::before,
.projects-slider__more-arrow::after {
	content: "→";
	font-family: "Afacad", sans-serif;
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s;
}

.projects-slider__more-arrow::before {
	transform: translateX(0);
}

.projects-slider__more-arrow::after {
	transform: translateX(-150%);
}

.service-case {
	overflow-x: clip;
	padding-bottom: 5rem;
}

.service-case__more {
	display: flex;
	justify-content: center;
	margin-top: 1.875rem;
}

.service-overview {
	background-color: #f1f1f1;
	padding-block: 2.5rem 3.5rem;
}

.service-overview__lead-text {
	margin-top: 1rem;
}

.service-overview__items {
	--columns: 1;
	--column-gap: 0rem;
	--row-gap: 1.25rem;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: var(--row-gap) var(--column-gap);
	margin-top: 2rem;
}

.service-overview__item {
	flex: 0 1 calc((100% - var(--column-gap) * (var(--columns) - 1)) / var(--columns));
	min-width: 0;
}

.service-strength {
	overflow-x: clip;
	padding-bottom: 5rem;
}

.service-strength__list {
	margin-top: 1.5rem;
}

.service-strength__item {
	container-type: inline-size;
}

.service-strength__item + .service-strength__item {
	margin-top: 2.5rem;
}

.service-strength__item-title {
	position: relative;
	font-family: "mfw-pa1gothicstdn-bold", "A P-OTF A1Gothic Std", sans-serif;
	font-size: 1.625rem;
	letter-spacing: -0.06em;
	color: #014896;
	padding-left: 3.5rem;
}

.service-strength__item-title::before {
	content: "";
	position: absolute;
	top: 0.5lh;
	left: 0;
	translate: 0 -50%;
	background: no-repeat center center/contain;
	width: 2.625rem;
	aspect-ratio: 1/1;
}

.service-strength__item-title--light-steel01::before {
	background-image: url(../images/icon-strength-light-steel01.svg);
}

.service-strength__item-title--light-steel02::before {
	background-image: url(../images/icon-strength-light-steel02.svg);
}

.service-strength__item-title--light-steel03::before {
	background-image: url(../images/icon-strength-light-steel03.svg);
}

.service-strength__item-title--outer-wall01::before {
	background-image: url(../images/icon-strength-outer-wall01.svg);
}

.service-strength__item-title--outer-wall02::before {
	background-image: url(../images/icon-strength-outer-wall02.svg);
}

.service-strength__item-title--outer-wall03::before {
	background-image: url(../images/icon-strength-outer-wall03.svg);
}

.service-strength__item-title--tile01::before {
	background-image: url(../images/icon-strength-tile01.svg);
}

.service-strength__item-title--tile02::before {
	background-image: url(../images/icon-strength-tile02.svg);
}

.service-strength__item-title--tile03::before {
	background-image: url(../images/icon-strength-tile03.svg);
}

.service-strength__item-title--interior01::before {
	background-image: url(../images/icon-strength-interior01.svg);
}

.service-strength__item-title--interior02::before {
	background-image: url(../images/icon-strength-interior02.svg);
}

.service-strength__item-title--interior03::before {
	background-image: url(../images/icon-strength-interior03.svg);
}

.service-strength__item-title--waterproof01::before {
	background-image: url(../images/icon-strength-waterproof01.svg);
}

.service-strength__item-title--waterproof02::before {
	background-image: url(../images/icon-strength-waterproof02.svg);
}

.service-strength__item-title--waterproof03::before {
	background-image: url(../images/icon-strength-waterproof03.svg);
}

.service-strength__item-container {
	display: flex;
	flex-direction: column;
	gap: 0rem;
	margin-top: 1.25rem;
}

.service-strength__textarea {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #f1f1f1;
	padding-block: 1.25rem;
	padding-inline: 1.25rem;
}

.service-strength__text {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 0.875rem;
	font-weight: 700;
	line-height: 1.5555555556;
	letter-spacing: -0.04em;
	color: #282828;
	text-align: left;
}

.service-strength__img {
	order: -1;
}

.service-strength__img img {
	aspect-ratio: 426/272;
	object-fit: cover;
	width: 100%;
	height: auto;
}

.services {
	padding-bottom: 3.75rem;
}

.services__lead-title {
	font-family: "mfw-pa1gothicstdn-bold", "A P-OTF A1Gothic Std", sans-serif;
	font-size: 1.75rem;
	font-weight: 700;
	color: #282828;
	letter-spacing: -0.08em;
}

.services__lead-title-blue {
	color: #014896;
}

.services__lead-text {
	margin-top: 1.4375rem;
}

.services__items {
	display: grid;
	gap: 5rem;
	margin-top: 4.375rem;
	max-width: 28.125rem;
	margin-inline: auto;
}

.sidebar {
	width: 100%;
}

.sidebar__inner {
	width: 100%;
	max-width: 600px;
	margin-inline: auto;
	padding-inline: 20px;
}

.sidebar__label {
	font-family: "mfw-pa1gothicstdn-bold", "A P-OTF A1Gothic Std", sans-serif;
	font-size: 1.25rem;
	color: #5c3f8f;
	letter-spacing: -0.05em;
	padding-bottom: 1rem;
	line-height: 1;
	border-bottom: 0.0625rem solid #5c3f8f;
}

.sidebar__list {
	margin-top: 0.625rem;
	display: flex;
	flex-direction: row;
	gap: 1rem;
	padding-bottom: 0.625rem;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: thin;
	scrollbar-color: #5c3f8f transparent;
	cursor: grab;
}

.sidebar__list.is-dragging {
	cursor: grabbing;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}

.sidebar__list::-webkit-scrollbar {
	height: 0.375rem;
}

.sidebar__list::-webkit-scrollbar-track {
	background: transparent;
}

.sidebar__list::-webkit-scrollbar-thumb {
	background-color: #5c3f8f;
	border-radius: 0.1875rem;
}

.sidebar__link {
	display: flex;
	align-items: center;
	gap: 0.625rem;
	padding: 0.375rem 0.625rem 0.375rem 0;
	font-family: "mfw-pa1gothicstdn-bold", "A P-OTF A1Gothic Std", sans-serif;
	font-size: 0.9375rem;
	color: #282828;
	text-decoration: none;
	position: relative;
	transition: color 0.3s ease-in-out;
	flex-shrink: 0;
	white-space: nowrap;
}

.sidebar__text {
	text-decoration: underline;
	text-decoration-color: transparent;
	text-underline-offset: 0.25rem;
	text-decoration-thickness: 0.125rem;
	transition: text-decoration-color 0.3s ease-in-out;
}

.sidebar__link::before {
	content: "→";
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.25rem;
	height: 1.25rem;
	background-color: transparent;
	color: transparent;
	border-radius: 50%;
	font-family: "Afacad", sans-serif;
	font-size: 0.625rem;
	font-weight: 400;
	line-height: 1;
	text-decoration: none;
	transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.sidebar__link:focus-visible {
	color: #5c3f8f;
	opacity: 1;
}

.sidebar__link:focus-visible .sidebar__text {
	text-decoration-color: currentColor;
}

.sidebar__link:focus-visible::before {
	background-color: #5c3f8f;
	color: #fff;
}

.sidebar__link.is-active {
	color: #5c3f8f;
}

.sidebar__link.is-active::before {
	background-color: #5c3f8f;
	color: #fff;
}

.tile-art {
	padding-block: 2.5rem 3rem;
	background-image: url("../images/tile-background.png");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	overflow-x: clip;
}

.tile-art__container {
	position: relative;
	z-index: 1;
}

.tile-art__ornament {
	position: absolute;
	display: none;
}

.tile-art__ornament img {
	object-fit: contain;
	width: 100%;
	height: auto;
}

.tile-art__ornament--01 img {
	aspect-ratio: 320/340;
}

.tile-art__ornament--02 img {
	aspect-ratio: 250/310;
}

.tile-art__ornament--03 img {
	aspect-ratio: 200/240;
}

.tile-art__ornament--04 img {
	aspect-ratio: 280/310;
}

.tile-art__title {
	display: flex;
	justify-content: center;
	gap: 0.625rem;
}

.tile-art__title::before {
	content: "";
	display: block;
	flex-shrink: 0;
	width: 1.75rem;
	aspect-ratio: 1;
	background-color: #014896;
	-webkit-mask-image: url("../images/icon_service-tile.svg");
	mask-image: url("../images/icon_service-tile.svg");
	-webkit-mask-size: contain;
	mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	translate: 0 0.3125rem;
}

.tile-art__title-text {
	line-height: 1.52;
}

.tile-art__title-em {
	font-family: "mfw-pa1gothicstdn-bold", "A P-OTF A1Gothic Std", sans-serif;
	font-size: 1.5rem;
	color: #014896;
	letter-spacing: -0.02em;
}

.tile-art__title-sub {
	font-family: "mfw-pa1gothicstdn-bold", "A P-OTF A1Gothic Std", sans-serif;
	font-size: 1.125rem;
	color: #343434;
	letter-spacing: -0.02em;
}

.tile-art__body {
	position: relative;
	isolation: isolate;
	display: flex;
	flex-direction: column;
	gap: 0;
	margin-top: 1.75rem;
}

.tile-art__body::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
}

.tile-art__img img {
	aspect-ratio: 613/486;
	object-fit: cover;
	width: 100%;
	height: auto;
}

.tile-art__content {
	background-color: #d2d4e3;
	clip-path: polygon(0 0, 100% 20%, 100% 100%, 0% 100%);
	padding: 4.375rem 1.25rem 1.875rem;
	margin-top: -4.375rem;
}

.tile-art__lead {
	font-family: "mfw-pa1gothicstdn-bold", "A P-OTF A1Gothic Std", sans-serif;
	font-size: 1.125rem;
	line-height: 1.3571428571;
	letter-spacing: -0.08em;
	color: #282828;
}

.tile-art__lead-em {
	font-style: normal;
	color: #014896;
}

.tile-art__text {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 0.875rem;
	font-weight: 700;
	line-height: 1.7;
	letter-spacing: -0.04em;
	color: #282828;
	margin-top: 0.875rem;
}

.top-client {
	position: relative;
	padding-top: 5rem;
	overflow-x: clip;
}

.top-client__deco {
	position: absolute;
	z-index: 1;
	pointer-events: none;
}

.top-client__deco picture,
.top-client__deco img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.top-client__deco--tl {
	top: 0rem;
	left: calc(50% - min(53vw, 50rem));
	width: 11.25rem;
	aspect-ratio: 1078/728;
}

.top-client__deco--tl picture,
.top-client__deco--tl img {
	aspect-ratio: 1078/728;
}

.top-client__heading {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	text-align: center;
}

.top-client__heading-en {
	font-family: "mfw-pa1gothicstdn-regular", "A P-OTF A1Gothic Std", sans-serif;
	font-size: 1.25rem;
	color: #979797;
	letter-spacing: 0.05em;
	line-height: 1;
}

.top-client__heading-ja {
	font-family: "mfw-pa1gothicstdn-bold", "A P-OTF A1Gothic Std", sans-serif;
	font-size: 3rem;
	color: #282828;
	line-height: 1;
	letter-spacing: -0.08em;
}

.top-client__marquees {
	margin-top: 3rem;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.top-client__row {
	width: 100%;
	overflow: hidden;
}

.top-client__row-track {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	width: -moz-max-content;
	width: max-content;
	animation-duration: 90s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}

.top-client__row--left .top-client__row-track {
	animation-name: top-client-marquee-left;
}

.top-client__row--right .top-client__row-track {
	animation-name: top-client-marquee-right;
}

.top-client__logo {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	height: 3.875rem;
	max-width: 27.5rem;
}

.top-client__logo picture {
	display: block;
	line-height: 0;
	max-width: 100%;
	max-height: 100%;
}

.top-client__logo img {
	display: block;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 3.875rem;
	object-fit: contain;
}

.top-company {
	position: relative;
	overflow-x: clip;
	margin-top: 3.75rem;
	padding-block: 3.75rem 2.5rem;
}

.top-company::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	background-color: #d9d9d9;
	clip-path: ellipse(120% 100% at 50% 100%);
	pointer-events: none;
}

.top-company::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	background-image: url("../images/footer-cta-bg.png");
	background-repeat: no-repeat;
	background-position: left 50% top 40%;
	background-size: 85vw;
	clip-path: ellipse(78% 100% at 50% 100%);
	opacity: 1;
	pointer-events: none;
}

.top-company__inner {
	position: relative;
	z-index: 1;
}

.top-company__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 2.5rem;
}

.top-company__text-area {
	display: contents;
	flex-direction: column;
	align-items: flex-start;
	gap: 2rem;
	flex-shrink: 0;
}

.top-company__heading {
	order: 1;
}

.top-company__image {
	order: 2;
	width: calc(50% + 50vw);
}

.top-company__link {
	order: 3;
	align-self: center;
	isolation: isolate;
	overflow: hidden;
}

.top-company__link::before {
	content: "";
	position: absolute;
	inset: 0;
	background-color: #5c3f8f;
	clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
	z-index: -1;
	transition: clip-path 0.3s ease-out;
}

.top-company__link .circle-button__arrow {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.875rem;
	height: 1.375rem;
	overflow: hidden;
	font-size: 0;
}

.top-company__link .circle-button__arrow::before,
.top-company__link .circle-button__arrow::after {
	content: "→";
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.375rem;
	transition: transform 0.3s ease-out;
}

.top-company__link .circle-button__arrow::before {
	transform: translateX(0);
}

.top-company__link .circle-button__arrow::after {
	transform: translateX(-150%);
}

.top-company__image picture,
.top-company__image img {
	width: 100%;
	height: 100%;
	aspect-ratio: 977/543;
	object-fit: contain;
}

.top-evolution {
	position: relative;
	padding-top: 2.5rem;
	padding-bottom: 2.5rem;
	background-image: url("../images/top-evolution-bg-sp.png");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.top-evolution__title {
	font-family: "mfw-pa1gothicstdn-bold", "A P-OTF A1Gothic Std", sans-serif;
	font-size: 3rem;
	color: #282828;
	line-height: 1.25;
	letter-spacing: -0.08em;
}

.top-evolution__subtitle-en {
	font-family: "mfw-pa1gothicstdn-bold", "A P-OTF A1Gothic Std", sans-serif;
	font-size: 1.25rem;
	color: #5c3f8f;
	line-height: 1.5;
	letter-spacing: 0.01em;
}

.top-evolution__desc {
	margin-top: 1.25rem;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.7;
	color: #282828;
	letter-spacing: -0.04em;
}

.top-evolution__content {
	margin-top: 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 2rem;
	align-items: center;
}

.top-evolution__features {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
	max-width: 18.75rem;
	width: 100%;
}

.top-evolution__feature {
	position: relative;
	background: linear-gradient(to bottom, transparent 0%, transparent 5%, #add0ff 5%, #add0ff 100%);
	padding: 0rem 0.375rem 2.875rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.625rem;
}

.top-evolution__feature-icon {
	position: relative;
	width: 15rem;
	aspect-ratio: 1/1;
	flex-shrink: 0;
}

.top-evolution__feature-icon picture,
.top-evolution__feature-icon img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.top-evolution__feature-title {
	align-self: stretch;
	margin-top: auto;
	font-family: "mfw-pa1gothicstdn-bold", "A P-OTF A1Gothic Std", sans-serif;
	font-size: 1.75rem;
	color: #282828;
	line-height: 1.28;
	letter-spacing: -0.1em;
	margin-inline: auto;
}

.top-evolution__feature-num {
	font-family: "Anton SC", sans-serif;
	font-size: 4.5rem;
	color: #5c3f8f;
	letter-spacing: 0.06em;
	line-height: 1.3;
}

.top-evolution__feature-unit {
	font-size: 1rem;
}

.top-evolution__feature--theme {
	color: #5c3f8f;
	font-size: 2rem;
	line-height: 1.0666666667;
	letter-spacing: -0.1em;
}

.top-evolution__title,
.top-evolution__subtitle-en,
.top-evolution__feature,
.top-evolution__link {
	opacity: 0;
}

body.home {
	animation: site-fade-in 0.7s ease both;
}

body.home .mv__title {
	animation: mv-intro-wipe 0.9s cubic-bezier(0.85, 0, 0.15, 1) 0.8s both;
}

body.home .mv__sub-wrap {
	animation: mv-intro-wipe 0.9s cubic-bezier(0.85, 0, 0.15, 1) 0.98s both;
}

.top-land {
	position: relative;
	overflow: clip;
	margin-top: 5rem;
}

.top-land__collage {
	--land-card-w: 18.75rem;
	--land-card-h: 12.5rem;
	position: sticky;
	top: var(--header-h);
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(9, var(--land-card-w));
	grid-template-rows: repeat(7, var(--land-card-h));
	row-gap: 0.5rem;
	-moz-column-gap: 0;
	column-gap: 0;
	justify-content: center;
	align-content: center;
	width: 100%;
	height: calc(100vh - var(--header-h));
	overflow: hidden;
}

.top-land__slide {
	margin-inline: -0.3125rem;
	overflow: hidden;
	clip-path: polygon(12% 0%, 100% 0%, 88% 100%, 0% 100%);
	transition: opacity 0.3s;
}

.top-land__slide picture,
.top-land__slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.top-land__slide--hero {
	position: relative;
	z-index: 5;
	transform-origin: center center;
	will-change: transform, clip-path;
}

.top-land__inner {
	position: relative;
	z-index: 2;
	padding-block: calc(100vh - var(--header-h)) calc(100vh - var(--header-h));
}

.top-land__catch {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	max-width: 61.25rem;
	width: 100%;
	margin-inline: auto;
}

.top-land__catch-line {
	padding: 0.125rem 0.25rem;
	font-family: "mfw-pa1gothicstdn-bold", "A P-OTF A1Gothic Std", sans-serif;
	font-size: 1.75rem;
	line-height: 1.75;
	letter-spacing: -0.1em;
	color: #5c3f8f;
}

.top-land__catch-mark {
	-webkit-box-decoration-break: clone;
	box-decoration-break: clone;
	padding: 0.125rem 0.5rem 0.125rem 0.25rem;
	background-image: linear-gradient(90deg, #fff 50%, rgba(255, 255, 255, 0) 50.1%);
	background-size: 200% 100%;
	background-position: 105% 0;
	background-repeat: no-repeat;
}

.top-message {
	position: relative;
	isolation: isolate;
	overflow-x: clip;
	margin-top: 1.5rem;
}

.top-message__bg {
	position: sticky;
	top: var(--header-h);
	z-index: 0;
	display: block;
	width: 100%;
	height: calc(100vh - var(--header-h));
}

.top-message__bg img,
.top-message__bg picture {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
}

.top-message__inner {
	position: relative;
	z-index: 1;
	padding-bottom: 100vh;
	color: #fff;
}

.top-message__catch {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 1.25rem;
	color: #fff;
}

.top-message__catch-line {
	padding: 0.125rem 0.25rem;
	font-family: "mfw-pa1gothicstdn-bold", "A P-OTF A1Gothic Std", sans-serif;
	font-size: 1.75rem;
	line-height: 1.75;
	letter-spacing: 0em;
	color: #fff;
}

.top-message__catch-mark {
	-webkit-box-decoration-break: clone;
	box-decoration-break: clone;
	padding: 0.125rem 0.5rem 0.125rem 0.25rem;
	background-image: linear-gradient(90deg, #5c3f8f 50%, rgba(92, 63, 143, 0) 50.1%);
	background-size: 200% 100%;
	background-position: 105% 0;
	background-repeat: no-repeat;
}

.top-news {
	position: relative;
	isolation: isolate;
	overflow-x: clip;
	margin-top: 5rem;
}

.top-news__deco {
	position: absolute;
	z-index: 1;
	pointer-events: none;
}

.top-news__deco picture,
.top-news__deco img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.top-news__deco--tr {
	top: -2.25rem;
	right: calc(50% - min(60vw, 21rem));
	width: 16.5rem;
	aspect-ratio: 1472/1006;
	z-index: -1;
}

.top-news__deco--tr picture,
.top-news__deco--tr img {
	aspect-ratio: 1472/1006;
}

.top-news__layout {
	padding-top: 0;
	padding-bottom: 0;
	margin-top: 2.5rem;
}

.top-news__tab-content {
	display: none;
}

.top-news__tab-content.is-active {
	display: block;
	animation: top-news-fade 0.4s ease-out forwards;
}

.top-news__empty {
	font-family: "mfw-pa1gothicstdn-bold", "A P-OTF A1Gothic Std", sans-serif;
	font-weight: 700;
	font-size: 0.875rem;
	color: #000;
	padding: 1.5rem 0;
}

.top-news__list {
	display: flex;
	flex-direction: column;
}

.top-news__more {
	margin-top: 2.5rem;
	display: flex;
	justify-content: flex-end;
}

.top-recruit {
	position: relative;
	background-color: #fff;
	overflow: hidden;
}

.top-recruit__marquees {
	padding-block: 0.75rem;
	display: flex;
	flex-direction: column;
	gap: 0rem;
	position: relative;
	z-index: 2;
}

.top-recruit__row {
	width: 100%;
	overflow: hidden;
}

.top-recruit__row-track {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	width: -moz-max-content;
	width: max-content;
	animation-duration: 120s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}

.top-recruit__row--left .top-recruit__row-track {
	animation-name: top-recruit-marquee-left;
}

.top-recruit__row--right .top-recruit__row-track {
	animation-name: top-recruit-marquee-right;
}

.top-recruit__text {
	flex-shrink: 0;
	font-family: "Alata", sans-serif;
	font-weight: 400;
	font-size: 2.5rem;
	line-height: 1;
	letter-spacing: 0.08em;
}

.top-recruit__text--theme {
	color: #5c3f8f;
}

.top-recruit__text--gray {
	color: #bdbdbd;
}

.top-recruit__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	--icon-scale: 0.65;
	width: calc(var(--w, 60) * 1rem / 16 * var(--icon-scale));
	height: calc(var(--h, 60) * 1rem / 16 * var(--icon-scale));
}

.top-recruit__icon img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.top-recruit__body {
	position: relative;
	padding-block: 5rem 3.75rem;
	background-image: url("../images/top-recruit-bg.jpg");
	background-size: cover;
	background-position: center;
	color: #fff;
}

.top-recruit__inner {
	position: relative;
	padding-inline: 20px;
}

.top-recruit__content {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.top-recruit__row {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 1.5rem;
}

.top-recruit__heading {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0rem;
}

.top-recruit__heading-line {
	padding: 0.125rem 0.25rem;
	color: #fff;
	font-family: "mfw-pa1gothicstdn-bold", "A P-OTF A1Gothic Std", sans-serif;
	font-size: 2rem;
	line-height: 1.8;
	letter-spacing: -0.13em;
}

.top-recruit__heading-mark {
	-webkit-box-decoration-break: clone;
	box-decoration-break: clone;
	padding: 0.25rem 0.25rem;
	background: linear-gradient(90deg, #5c3f8f 50%, transparent 50.1%);
	background-size: 200% 100%;
	background-position: 100% 0;
	transition: background-position 0.8s cubic-bezier(0.51, 0.32, 0, 0.96);
}

.top-recruit__heading-mark + br + .top-recruit__heading-mark {
	transition-delay: 0.4s;
}

.top-recruit__heading-line.js-active .top-recruit__heading-mark {
	background-position: 0% 0;
}

.top-recruit__desc {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 700;
	font-size: 1.125rem;
	line-height: 1.3214285714;
	color: #fff;
	letter-spacing: -0.08em;
}

.top-recruit__link {
	align-self: center;
}

.top-services {
	position: relative;
	isolation: isolate;
}

.top-services__sticky {
	box-sizing: border-box;
	position: sticky;
	top: var(--header-h);
	height: calc(100vh - var(--header-h));
	padding-block: 0.625rem 1.875rem;
	overflow-x: clip;
	display: flex;
	flex-direction: column;
}

.top-services__sticky::before {
	content: "";
	position: absolute;
	inset: 0;
	background-color: #e6e6e6;
	clip-path: polygon(0 5rem, 100% 0, 100% calc(100% - 5rem), 0 100%);
	z-index: -1;
	pointer-events: none;
}

.top-services__inner {
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	flex-shrink: 0;
}

.top-services__heading {
	flex-shrink: 0;
	width: 100%;
	max-width: 1200px;
	margin-inline: auto;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 1rem;
}

.top-services__heading-main {
	flex-shrink: 0;
}

.top-services__heading-sub {
	position: relative;
	font-family: "mfw-pa1gothicstdn-bold", "A P-OTF A1Gothic Std", sans-serif;
	font-size: 1.5rem;
	color: #282828;
	line-height: 1.1428571429;
	letter-spacing: -0.1em;
}

.top-services__heading-sub::before {
	content: none;
}

.top-services__heading-sub strong {
	color: #5c3f8f;
	font-size: 3rem;
	margin: 0 0.25rem;
}

.top-services__slider {
	position: relative;
	z-index: 2;
	display: flex;
	flex: 1;
	min-height: 0;
	overflow: hidden;
	margin-block: 1.25rem 0;
}

.top-services__list {
	list-style: none;
	margin: 0;
	padding-block: 0;
	padding-inline: max(20px, (100% - 37.5rem) / 2 + 20px);
	width: -moz-max-content;
	width: max-content;
	height: 100%;
	display: flex;
	flex-wrap: nowrap;
	align-items: flex-end;
	gap: 1rem;
	will-change: transform;
}

.top-services__card {
	--card-base-h: 260;
	--card-total: 320;
	--step: 0;
	position: relative;
	flex-shrink: 0;
	width: auto;
	height: calc(100% * var(--card-base-h) / var(--card-total));
	aspect-ratio: 387/484;
	transform: translateY(calc(var(--step) / var(--card-base-h) * -100%));
	color: #fff;
	overflow: hidden;
	container-type: size;
}

.top-services__card.is-hidden {
	display: none;
}

.top-services__card--more {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #eaebe8;
	transition: background-color 0.3s;
}

.top-services__more-link {
	text-decoration: none;
}

.top-services__card--more .top-services__more-link {
	width: min(12.5rem, 54cqh);
	font-size: min(1.625rem, 7cqh);
}

.top-services__card-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.top-services__card-bg picture,
.top-services__card-bg img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.top-services__card:nth-child(2) {
	--step: 10;
}

.top-services__card:nth-child(3) {
	--step: 20;
}

.top-services__card:nth-child(4) {
	--step: 30;
}

.top-services__card:nth-child(5) {
	--step: 40;
}

.top-services__card:nth-child(6) {
	--step: 50;
}

.top-services__card-head {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.25rem;
	width: 100%;
	pointer-events: none;
	margin-top: -0.25rem;
}

.top-services__card-num {
	font-family: "Anton SC", sans-serif;
	font-weight: 400;
	font-size: min(6rem, 27cqh);
	color: #fff;
	line-height: 1;
	letter-spacing: -0.05em;
	white-space: nowrap;
}

.top-services__card-title {
	margin: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 0.625rem;
	background-color: #fff;
	font-family: "mfw-pa1gothicstdn-bold", "A P-OTF A1Gothic Std", sans-serif;
	font-size: min(1.875rem, 10.6cqh);
	font-weight: inherit;
	color: #5c3f8f;
	line-height: 1;
	letter-spacing: -0.05em;
	white-space: nowrap;
}

.top-services__card-desc {
	position: absolute;
	z-index: 2;
	left: 1.125rem;
	right: 1.125rem;
	bottom: 1.25rem;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 700;
	font-size: min(1rem, 5cqh);
	line-height: 1.75;
	color: #fff;
	letter-spacing: 0;
}

.top-services__deco {
	position: absolute;
	z-index: 2;
	pointer-events: none;
}

.top-services__deco picture,
.top-services__deco img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.top-services__deco--bl {
	bottom: calc(50% - min(73.5vw, 33rem));
	left: calc(50% - min(61vw, 23rem));
	width: 11.875rem;
	aspect-ratio: 928/566;
	z-index: 3;
}

.top-services__deco--bl picture,
.top-services__deco--bl img {
	aspect-ratio: 928/566;
}

.u-flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 2px;
}

.u-font14 {
	font-size: prem(14);
}

.u-font16 {
	font-size: prem(16);
}

.u-font18 {
	font-size: prem(18);
}

.u-font20 {
	font-size: prem(20);
}

.u-font22 {
	font-size: prem(22);
}

.u-font24 {
	font-size: prem(24);
}

.u-font28 {
	font-size: prem(28);
}

.u-font32 {
	font-size: prem(32);
}

.u-font40 {
	font-size: prem(40);
}

.u-hover {
	transition: opacity 0.5s;
}

.u-lh10 {
	line-height: 1;
}

.u-lh13 {
	line-height: 1.3;
}

.u-lh15 {
	line-height: 1.5;
}

.u-lh16 {
	line-height: 1.6;
}

.u-lh20 {
	line-height: 2;
}

.u-ls05 {
	letter-spacing: 0.05em;
}

.u-ls10 {
	letter-spacing: 0.1em;
}

.u-ls15 {
	letter-spacing: 0.15em;
}

.u-ls20 {
	letter-spacing: 0.2em;
}

.u-mt10 {
	margin-top: 10px !important;
	margin-top: prem(10) !important;
}

.u-mt20 {
	margin-top: 20px !important;
	margin-top: prem(20) !important;
}

.u-mt30 {
	margin-top: 30px !important;
	margin-top: prem(30) !important;
}

.u-mt40 {
	margin-top: 40px !important;
	margin-top: prem(40) !important;
}

.u-mt50 {
	margin-top: 50px !important;
	margin-top: prem(50) !important;
}

.u-mt60 {
	margin-top: 60px !important;
	margin-top: prem(60) !important;
}

.u-mt70 {
	margin-top: 70px !important;
	margin-top: prem(70) !important;
}

.u-mt80 {
	margin-top: 80px !important;
	margin-top: prem(80) !important;
}

.u-mt90 {
	margin-top: 90px !important;
	margin-top: prem(90) !important;
}

.u-mt100 {
	margin-top: 100px !important;
	margin-top: prem(100) !important;
}

.u-mt110 {
	margin-top: 110px !important;
	margin-top: prem(110) !important;
}

.u-mt120 {
	margin-top: 120px !important;
	margin-top: prem(120) !important;
}

.u-mt130 {
	margin-top: 130px !important;
	margin-top: prem(130) !important;
}

.u-mt140 {
	margin-top: 140px !important;
	margin-top: prem(140) !important;
}

.u-mt150 {
	margin-top: 150px !important;
	margin-top: prem(150) !important;
}

.u-mt160 {
	margin-top: 160px !important;
	margin-top: prem(160) !important;
}

.u-mt170 {
	margin-top: 170px !important;
	margin-top: prem(170) !important;
}

.u-mt180 {
	margin-top: 180px !important;
	margin-top: prem(180) !important;
}

.u-mt190 {
	margin-top: 190px !important;
	margin-top: prem(190) !important;
}

.u-mt200 {
	margin-top: 200px !important;
	margin-top: prem(200) !important;
}

.u-pc1300 {
	display: none;
}

.u-shadow {
	box-shadow: 0 0 13px rgba(255, 0, 0, 0.5);
}

.u-sp {
	display: none;
}

.u-sp400 {
	display: none;
}

.u-sp450 {
	display: none;
}

.u-sp500 {
	display: none;
}

.u-sp550 {
	display: none;
}

.u-sp600 {
	display: none;
}

.u-textLeft {
	text-align: Left !important;
}

.u-textCenter {
	text-align: Center !important;
}

.u-textRight {
	text-align: Right !important;
}

.u-textJustify {
	text-align: Justify !important;
}

.text {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 1rem;
	font-weight: 700;
	color: #282828;
	line-height: 1.5;
	letter-spacing: -0.04em;
}

.u-w300 {
	font-weight: 300;
}

.u-w400 {
	font-weight: 400;
}

.u-w500 {
	font-weight: 500;
}

.u-w600 {
	font-weight: 600;
}

.u-w700 {
	font-weight: 700;
}

.u-w900 {
	font-weight: 900;
}

@media (prefers-reduced-motion: no-preference) {

html {
	scroll-behavior: smooth;
}

}

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

html:focus-within {
	scroll-behavior: auto;
}

*,
*::before,
*::after {
	animation-duration: 0.01ms !important;
	animation-iteration-count: 1 !important;
	transition-duration: 0.01ms !important;
	scroll-behavior: auto !important;
}

.section-title,
.section-heading,
.section-headline,
.top-client__heading,
.cta__heading-wrap,
.prime-us__title,
.news-page__title {
	opacity: 1;
}

.top-client__row-track {
	animation: none;
}

.top-evolution__title,
.top-evolution__subtitle-en,
.top-evolution__feature,
.top-evolution__link {
	opacity: 1;
}

body.home,
body.home .mv__title,
body.home .mv__sub-wrap {
	animation: none;
	opacity: 1;
	transform: none;
	clip-path: none;
}

.top-recruit__row-track {
	animation: none;
}

}

@media (any-hover: hover) {

.breadcrumb__link:hover {
	opacity: 0.8;
}

.btn:hover {
	text-decoration: none;
	background-color: #fff;
	color: #5c3f8f;
	opacity: 1;
	cursor: pointer;
}

.btn:hover::after {
	border-top: 1px solid #5c3f8f;
	border-right: 1px solid #5c3f8f;
	transform: translateX(5px) rotate(45deg);
}

.circle-button--white:hover {
	color: #5c3f8f;
	opacity: 1;
}

.circle-button--white:hover::before {
	clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
	animation: circle-button-fill 0.3s ease-out;
	transition: none;
}

.circle-button--theme:hover {
	color: #fff;
	opacity: 1;
}

.circle-button--theme:hover::before {
	clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
	animation: circle-button-fill 0.3s ease-out;
	transition: none;
}

.circle-button--white:hover .circle-button__arrow::before,
.circle-button--theme:hover .circle-button__arrow::before {
	transform: translateX(150%);
}

.circle-button--white:hover .circle-button__arrow::after,
.circle-button--theme:hover .circle-button__arrow::after {
	transform: translateX(0);
}

.news-item__article:hover {
	opacity: 1;
	border-color: #5c3f8f;
}

.news-item__article:hover .news-item__title {
	color: #5c3f8f;
}

.pagination .page-numbers a:hover {
	background-color: #5c3f8f;
	color: #fff;
	border-color: #5c3f8f;
	opacity: 1;
}

.pagination .page-numbers .prev:hover,
.pagination .page-numbers .next:hover {
	background-color: #fff;
	color: #5c3f8f;
	border-color: #5c3f8f;
	opacity: 1;
}

.rounded-button__link:hover {
	opacity: 1;
}

.rounded-button__link:hover::before {
	transform-origin: left center;
	transform: scaleX(1);
}

.rounded-button__link:hover .rounded-button__text {
	color: #5c3f8f;
}

.rounded-button__link:hover .rounded-button__arrow::before {
	animation-name: transformRightLeft;
	animation-delay: 0.3s;
	background-color: #5c3f8f;
}

.rounded-button__link:hover .rounded-button__arrow::after {
	animation-name: transformLeftRight;
	animation-delay: 0.5s;
	background-color: #5c3f8f;
}

.company__group-btn:hover {
	opacity: 1;
}

.company__group-btn:hover::before {
	transform-origin: left center;
	transform: scaleX(1);
}

.company__group-btn:hover .company__group-btn-text {
	color: #5c3f8f;
}

.company__group-btn:hover .company__group-btn-icon {
	background-color: #5c3f8f;
}

.company__qualified-btn:hover {
	opacity: 0.85;
}

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

.construction__button-link:hover::before {
	transform-origin: left center;
	transform: scaleX(1);
}

.construction__button-link:hover .construction__button-text {
	color: #5c3f8f;
}

.construction__button-link:hover .construction__button-arrow::before {
	animation-name: construction-button-arrow-out;
	animation-delay: 0.3s;
	background-color: #5c3f8f;
}

.construction__button-link:hover .construction__button-arrow::after {
	animation-name: construction-button-arrow-in;
	animation-delay: 0.5s;
	background-color: #5c3f8f;
}

.contact-form__body .confirm_button:hover,
.contact-form__body input[type=submit]:hover,
.contact-form__body .back_button:hover {
	opacity: 0.8;
}

.contact-tel__link:hover {
	color: #5c3f8f;
}

.contact__btn input[type=submit]:hover,
.contact__btn input[type=button]:hover {
	outline: none;
	opacity: 0.7;
}

.floating-cta__btn:hover {
	opacity: 0.88;
}

.cta__btn:hover {
	color: #014896;
	opacity: 1;
}

.cta__btn:hover::before {
	clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
	animation: cta-btn-fill 0.3s ease-out;
	transition: none;
}

.footer-tel__number:hover {
	opacity: 0.8;
}

.footer__sns-link:hover {
	opacity: 0.75;
}

.footer__logo-link:hover {
	opacity: 0.75;
}

.footer__nav-link:hover {
	color: #5c3f8f;
	opacity: 1;
}

.footer__nav-link--btn:hover {
	opacity: 1;
	color: #282828;
}

.footer__nav-link--btn:hover::before {
	clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
	animation: footer-nav-btn-fill 0.3s ease-out;
	transition: none;
}

.footer__group-company-link:hover {
	opacity: 0.75;
}

.header__nav-item--has-dropdown:hover .header__dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
	pointer-events: auto;
	transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0s;
}

.header__dropdown-link:hover {
	color: #5c3f8f;
	opacity: 1;
}

.header__dropdown-link:hover .header__dropdown-text {
	text-decoration-color: currentColor;
}

.header__dropdown-link:hover::before {
	opacity: 1;
}

.header__sp-nav-link:hover .header__nav-ja {
	color: #5c3f8f;
}

.header__sp-nav-link:hover .header__sp-nav-icon--arrow::before {
	transform: translate(-50%, -50%) translateX(300%);
}

.header__sp-nav-link:hover .header__sp-nav-icon--arrow::after {
	transform: translate(-50%, -50%);
}

.header__sp-sub-link:hover {
	color: #5c3f8f;
}

.header__sp-cta-btn--recruit:hover {
	background-color: #5c3f8f;
}

.header__sp-cta-btn--recruit:hover .header__sp-cta-text {
	color: #fff;
}

.header__sp-cta-btn--recruit:hover .header__sp-cta-arrow {
	background-color: #fff;
	color: #5c3f8f;
}

.header__sp-cta-btn--contact:hover {
	background-color: #fff;
}

.header__sp-cta-btn--contact:hover .header__sp-cta-text {
	color: #014896;
}

.header__sp-cta-btn--contact:hover .header__sp-cta-arrow {
	background-color: #5c3f8f;
	color: #fff;
}

.loading-trigger:hover {
	opacity: 0.85;
}

.news-page__content a:hover {
	text-decoration-color: transparent;
	opacity: 1;
}

.news-page__content .wp-block-button__link:hover {
	opacity: 1;
	border-color: #014896;
	background-color: #fff;
	color: #014896;
}

.news-page__content .wp-block-button__link:hover::after {
	color: #014896;
}

.pager-list__btn--outline:hover {
	background-color: #5c3f8f;
	color: #fff;
	opacity: 1;
}

.pager-list__btn--filled:hover {
	background-color: #fff;
	color: #5c3f8f;
	opacity: 1;
}

.projects-slider__nav:hover {
	opacity: 0.7;
}

.projects-slider__more-link:hover {
	opacity: 1;
}

.projects-slider__more-link:hover .projects-slider__more-label {
	color: #5c3f8f;
}

.projects-slider__more-link:hover .projects-slider__more-label::after {
	clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
	animation: projects-slider-more-fill 0.3s ease-out;
	transition: none;
}

.projects-slider__more-link:hover .projects-slider__more-arrow::before {
	transform: translateX(150%);
}

.projects-slider__more-link:hover .projects-slider__more-arrow::after {
	transform: translateX(0);
}

.sidebar__list:hover .sidebar__link.is-active,
.sidebar__list:focus-within .sidebar__link.is-active {
	color: #282828;
}

.sidebar__list:hover .sidebar__link.is-active .sidebar__text,
.sidebar__list:focus-within .sidebar__link.is-active .sidebar__text {
	text-decoration-color: transparent;
}

.sidebar__list:hover .sidebar__link.is-active::before,
.sidebar__list:focus-within .sidebar__link.is-active::before {
	background-color: transparent;
	color: transparent;
}

.sidebar__link:hover {
	color: #5c3f8f;
	opacity: 1;
}

.sidebar__link:hover .sidebar__text {
	text-decoration-color: currentColor;
}

.sidebar__link:hover::before {
	background-color: #5c3f8f;
	color: #fff;
}

.top-company__link:hover {
	background-color: transparent;
	color: #fff;
	opacity: 1;
}

.top-company__link:hover::before {
	clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
	animation: circle-button-white-fill 0.3s ease-out;
	transition: none;
}

.top-company__link:hover .circle-button__arrow::before {
	transform: translateX(150%);
}

.top-company__link:hover .circle-button__arrow::after {
	transform: translateX(0);
}

.top-services__card--more:has(.top-services__more-link:hover) {
	background-color: #5c3f8f;
}

.u-hover:hover {
	opacity: 0.6;
	transition: opacity 0.5s;
}

}

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

html {
	font-size: 1.3333333333vw;
}

:root {
	--header-h: 5.75rem;
}

.inner {
	max-width: 1250px;
	padding-inline: 25px;
}

.inner2 {
	max-width: 1300px;
	padding-inline: 25px;
}

.layout-content {
	margin-top: 3.75rem;
}

.layout-content.layout-content--narrow {
	margin-top: 2.5rem;
}

.layout-partners {
	margin-top: 6.25rem;
}

.sidebar-layout {
	display: block;
	position: relative;
	padding-top: 1.5rem;
	padding-bottom: 7.5rem;
}

.sidebar-layout__container {
	padding-left: 17.5rem;
}

.sidebar-layout__container--wide {
	padding-left: 21.25rem;
}

.sidebar-layout > .sidebar {
	position: absolute;
	top: 1.5rem;
	bottom: 7.5rem;
	left: max(25px, (100vw - 1250px) / 2);
	width: 15rem;
	pointer-events: none;
	z-index: 1;
}

.sidebar-layout > .sidebar .sidebar__inner {
	pointer-events: auto;
}

.layout-strength {
	margin-top: 6.25rem;
}

main {
	padding-top: 5.75rem;
}

.circle-button {
	gap: 0.5rem;
	padding-top: 1.875rem;
	width: 13.625rem;
	font-size: 1.75rem;
}

.circle-button__arrow {
	font-size: 1.875rem;
}

.circle-button--white .circle-button__arrow,
.circle-button--theme .circle-button__arrow {
	width: 2.5rem;
	height: 1.875rem;
}

.circle-button--white .circle-button__arrow::before,
.circle-button--white .circle-button__arrow::after,
.circle-button--theme .circle-button__arrow::before,
.circle-button--theme .circle-button__arrow::after {
	font-size: 1.875rem;
}

.layout-project-slider {
	padding-block: 6.25rem;
}

.news-item__article {
	gap: 1.25rem;
	padding: 1.5rem 0;
}

.news-item__date {
	font-size: 1.25rem;
}

.news-item__cat {
	font-size: 1rem;
}

.news-item__title {
	font-size: 1.25rem;
}

.pagination .page-numbers {
	gap: 0.5rem;
}

.pagination .page-numbers .prev,
.pagination .page-numbers .next {
	min-width: 3.5rem;
	height: 3.3125rem;
	padding: 0.9375rem 1.125rem;
	font-size: 1.5625rem;
}

.rounded-button {
	margin-top: 2.5rem;
}

.rounded-button__link {
	gap: 0.625rem;
	min-width: min(100%, 14.375rem);
	padding-block: 0.625rem;
	padding-inline: 3.75rem 2.8125rem;
	font-size: 1.125rem;
}

.rounded-button__arrow {
	width: 1.5rem;
}

.rounded-button__arrow::before,
.rounded-button__arrow::after {
	width: 1.5rem;
}

.section-heading__tag {
	gap: 0.5rem;
}

.section-heading__tag-text {
	font-size: 1.375rem;
}

.section-heading__title {
	font-size: 3.125rem;
	letter-spacing: -0.03em;
}

.section-headline {
	font-size: 3.125rem;
}

.section-title__en {
	font-size: 1.875rem;
}

.section-title__ja {
	font-size: 5.125rem;
}

.service-card {
	display: flex;
	scroll-margin-top: 12.5rem;
}

.service-card__img {
	flex: 0 0 29.875rem;
}

.service-card::before {
	top: -5.625rem;
	font-size: 6.25rem;
}

.service-card__body {
	flex: 1 0 0;
	padding-block: 1.25rem;
	padding-inline: 3rem;
}

.service-card__head {
	gap: 0.625rem;
}

.service-card__title {
	font-size: 3.375rem;
	line-height: revert;
	padding-left: 3.75rem;
}

.service-card__title::before {
	width: 3rem;
}

.service-card__title-small {
	font-size: 1.75rem;
}

.service-card__title.service-card__title--interior::before {
	width: 3.5rem;
}

.service-card__outline {
	font-size: 1.75rem;
	margin-top: 0;
}

.service-card__description {
	margin-top: 1.75rem;
}

.service-card__button {
	margin-top: 1.25rem;
}

.architect-case {
	margin-top: 6.25rem;
	padding-block: 6.25rem;
}

.architect-case__list {
	margin-top: 3.125rem;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: auto auto auto auto;
	-moz-column-gap: 1.25rem;
	column-gap: 1.25rem;
	row-gap: 0;
}

.architect-case__item {
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 4;
}

.architect-case__number {
	font-size: 6.25rem;
}

.architect-case__icon {
	width: 2.375rem;
}

.architect-case__title {
	font-size: 1.75rem;
}

.architect-case__points {
	margin-top: 1.5rem;
	gap: 0.625rem;
}

.architect-case__point {
	gap: 0.5rem;
	padding: 0.0625rem 0.5rem;
	font-size: 1rem;
}

.architect-case__desc {
	margin-top: 1.25rem;
	padding-bottom: 3rem;
	font-size: 1rem;
}

.architect-lead {
	margin-top: 6.875rem;
}

.architect-lead__inner {
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: clamp(5rem, -2.1428571429rem + 14.880952381vw, 11.25rem);
}

.architect-lead__body {
	max-width: 35rem;
}

.architect-lead__heading {
	font-size: 1.75rem;
}

.architect-lead__texts {
	margin-top: 2rem;
	gap: 1.5rem;
}

.architect-lead__text {
	font-size: 1.25rem;
}

.architect-lead__image {
	max-width: 31.625rem;
}

.architect-strength {
	margin-top: 6.25rem;
}

.architect-strength__list {
	margin-top: 3.125rem;
	gap: 2.375rem;
}

.architect-strength__item {
	flex-direction: row;
	align-items: stretch;
}

.architect-strength__item--reverse {
	flex-direction: row-reverse;
}

.architect-strength__image {
	max-width: 27.375rem;
}

.architect-strength__content {
	padding: 1.5rem clamp(1.5rem, -2.2142857143rem + 7.7380952381vw, 4.75rem) 1.5rem clamp(2rem, -2.2857142857rem + 8.9285714286vw, 5.75rem);
}

.architect-strength__item--reverse .architect-strength__content {
	padding: 1.5rem clamp(2rem, -2.2857142857rem + 8.9285714286vw, 5.75rem) 1.5rem clamp(1.5rem, -2.2142857143rem + 7.7380952381vw, 4.75rem);
}

.architect-strength__head {
	gap: 0.875rem;
	gap: clamp(0.5rem, 0.0714285714rem + 0.8928571429vw, 0.875rem);
}

.architect-strength__icon {
	width: clamp(3rem, 1.4285714286rem + 3.2738095238vw, 4.375rem);
}

.architect-strength__title {
	align-items: center;
	font-size: clamp(1.5rem, 1.2142857143rem + 0.5952380952vw, 1.75rem);
}

.architect-strength__number {
	font-size: 1.875rem;
}

.architect-strength__desc {
	font-size: 1.25rem;
}

.company__access-body {
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	gap: clamp(2.5rem, -5.3571428571rem + 16.369047619vw, 9.375rem);
}

.company__access-info {
	max-width: 22rem;
}

.company__access-company {
	font-size: 1.75rem;
}

.company__access-address {
	margin-top: 1.25rem;
	font-size: 1.25rem;
}

.company__access-map {
	max-width: 26.5rem;
}

.company__company-row {
	align-items: center;
	background-image: linear-gradient(to right, #5c3f8f 0 8.125rem, #bdbdbd 8.125rem 100%);
	padding-block: 1rem;
}

.company__company-label,
.company__company-value {
	font-size: 1.25rem;
}

.company__company-label {
	padding-inline: 0.625rem;
	width: 8.125rem;
	padding-top: 0;
}

.company__company-value {
	padding-left: clamp(1.25rem, -3.0357142857rem + 8.9285714286vw, 5rem);
	padding-right: clamp(1.25rem, 1.25rem + 0vw, 1.25rem);
}

.company__group {
	padding-block: 3.125rem;
}

.company__group-content {
	margin-top: 5.625rem;
	flex-direction: row;
	align-items: flex-start;
	gap: clamp(1.5rem, -0.2777777778rem + 3.7037037037vw, 2.5rem);
}

.company__group-heading-ja {
	margin-top: 1.5rem;
	font-size: clamp(2.5rem, 1.7857142857rem + 1.4880952381vw, 3.125rem);
}

.company__group-accent {
	font-size: clamp(3rem, 1.5714285714rem + 2.9761904762vw, 4.25rem);
}

.company__group-companies {
	flex-shrink: 0;
	gap: 1rem;
}

.company__group-company-img {
	max-width: clamp(6.25rem, 0.8928571429rem + 11.1607142857vw, 10.9375rem);
}

.company__group-right {
	gap: 1.25rem;
	padding-top: 0.5rem;
}

.company__group-subtitle {
	font-size: 1.625rem;
}

.company__group-desc {
	font-size: 0.9375rem;
}

.company__group-btn {
	gap: 0.625rem;
	min-width: 19.875rem;
	margin-top: 4.375rem;
	padding-block: 1.1875rem;
	padding-inline: 2.125rem;
	font-size: 1.125rem;
}

.company__message-body {
	padding: 3.75rem 2.5rem;
	display: grid;
	grid-template-columns: 16.375rem 1fr;
	grid-template-areas: "photo heading" "photo text";
	align-items: start;
	-moz-column-gap: clamp(1.5rem, -2.5rem + 8.3333333333vw, 5rem);
	column-gap: clamp(1.5rem, -2.5rem + 8.3333333333vw, 5rem);
	row-gap: 0;
}

.company__message-heading {
	grid-area: heading;
}

.company__message-photo {
	padding-inline: 0rem;
	grid-area: photo;
	max-width: 16.375rem;
	margin-top: 3.375rem;
}

.company__message-text-wrap {
	grid-area: text;
}

.company__message-greeting {
	margin-top: 2.5rem;
	font-size: 1.125rem;
	letter-spacing: -0.04em;
}

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

.company__message-signature {
	gap: 0.75rem;
}

.company__message-position {
	font-size: 1.5rem;
}

.company__message-signature-img {
	width: 6rem;
}

.company__qualified-list {
	margin: 3.75rem 0 5.625rem;
	gap: 0.75rem;
}

.company__qualified-item {
	gap: 0.75rem;
	border-bottom-width: 6px;
}

.company__qualified-name {
	font-size: 1.5rem;
}

.company__qualified-count {
	font-size: 1.5rem;
}

.company__qualified-num {
	font-size: 4.375rem;
}

.company__qualified-btn {
	font-size: 1rem;
	padding: 1.375rem 2rem;
}

.company__qualified-other-list {
	padding: 5rem 4.5rem;
	gap: 0.75rem;
}

.company__qualified-other-item {
	flex-direction: row;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 0.5rem 1rem;
}

.company__section {
	scroll-margin-top: 3.125rem;
	padding-block: 3.125rem;
}

.company__section:first-of-type {
	padding-top: 0rem;
}

.company__section:last-of-type {
	padding-bottom: 0rem;
}

.construction__button {
	margin-top: 2.5rem;
}

.construction__button-link {
	gap: 0.625rem;
	min-width: 16.75rem;
	padding-block: 0.875rem;
	padding-inline: 2.125rem;
	font-size: 1.125rem;
}

.construction__button-arrow {
	width: 1.5rem;
}

.construction__button-arrow::before,
.construction__button-arrow::after {
	width: 1.5rem;
}

.construction__check-list {
	margin-top: 2.5rem;
	padding: 0.9375rem clamp(1.5rem, 0.7142857143rem + 1.6369047619vw, 2.1875rem);
}

.construction__check-item {
	gap: 0.875rem;
	font-size: 1.25rem;
}

.construction__check-item::before {
	margin-top: 0.5rem;
}

.construction__features {
	margin-top: 3.75rem;
	gap: 2.25rem;
}

.construction__features-deco--tr {
	top: -8.25rem;
	right: calc(50% - min(65vw, 58rem));
	width: min(42.5vw, 38.25rem);
}

.construction__feature--technology {
	padding-bottom: 4.375rem;
}

.construction__feature-deco--org-left {
	top: 74%;
	left: calc(50% - min(43vw, 40rem));
	width: 21.5rem;
}

.construction__feature-deco--tech-tr {
	top: -32%;
	right: calc(50% - min(74.5vw, 58rem));
	width: 45.625rem;
}

.construction__feature-deco--tech-bl {
	bottom: -24%;
	left: calc(50% - min(65vw, 54rem));
	width: 26.25rem;
}

.construction__feature-container {
	padding: 4.25rem 3.75rem;
}

.construction__feature .section-heading {
	padding-bottom: 0.75rem;
}

.construction__feature-title {
	gap: 1.5rem;
	margin-top: 1rem;
}

.construction__feature-icon {
	width: 5.875rem;
}

.construction__feature-body {
	margin-top: 2.875rem;
	flex-direction: row;
	align-items: center;
	gap: 5.625rem;
}

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

.construction__feature-image {
	width: 31.5rem;
}

.construction__feature-desc {
	font-size: 1.25rem;
}

.construction__gallery {
	margin-top: 2.5rem;
}

.construction__gallery-list {
	grid-template-columns: repeat(3, 1fr);
}

.construction__gallery-item:last-child {
	display: block;
}

.construction__hero {
	margin-top: 5rem;
}

.construction__hero-title-main {
	font-size: 3.75rem;
}

.construction__hero-title-sub {
	font-size: 2.5rem;
}

.construction__hero-subtitle {
	margin-top: 2.6875rem;
	font-size: 1.625rem;
}

.construction__hero-desc {
	margin-top: 1.3125rem;
	margin-top: 1.25rem;
}

.construction__lead {
	margin-top: 3.5rem;
}

.construction__lead-text {
	font-size: 3rem;
}

.construction__lead-em {
	font-size: 3.75rem;
}

.construction-method {
	margin-top: 5rem;
	padding-bottom: 5rem;
	container-type: inline-size;
}

.construction-method__content {
	width: min(65.3472222222cqi, 58.8125rem);
	margin-inline: auto;
	padding: 0.625rem;
	margin-top: 3.125rem;
}

.construction-method__table {
	min-width: unset;
}

.construction-method__table th,
.construction-method__table td {
	padding: 1.125rem 0.625rem;
	font-size: min(1.3888888889cqi, 1.25rem);
}

.construction__slider {
	margin-top: 2.5rem;
}

.construction__slide {
	width: 30.375rem;
	margin-right: -2.5rem;
}

.contact-form {
	padding-block: 4.5rem 6.25rem;
}

.contact-form__title {
	font-size: 3.125rem;
}

.contact-form__body {
	margin-top: 3.75rem;
}

.contact-form__body .form-item {
	flex-direction: row;
	align-items: flex-start;
	gap: 1rem;
}

.contact-form__body .form-item:not(:first-child) {
	margin-top: 1.875rem;
}

.contact-form__body .form-item-label {
	width: 16rem;
	padding-top: 0.625rem;
	font-size: 1.125rem;
}

.contact-form__body .form-item-label-required {
	margin-left: auto;
}

.contact-form__body textarea {
	min-height: 11.25rem;
}

.contact-form__body .form-privacy {
	margin-top: 2rem;
}

.contact-form__body .button-wrap {
	margin-top: 2rem;
	flex-direction: row;
	justify-content: center;
}

.contact-form__body .confirm_area__title {
	font-size: 1.75rem;
}

.contact-form__body .confirm_area__desc {
	font-size: 0.9375rem;
	margin-bottom: 2rem;
}

.contact-form__body .thanks_area__title {
	font-size: 2rem;
}

.contact-lead {
	padding-block: 4.25rem 6.75rem;
}

.contact-lead__catch {
	font-size: 2.25rem;
	line-height: 1;
}

.contact-lead__desc {
	margin-top: 1.125rem;
	font-size: 1.25rem;
}

.contact-recruit {
	padding-block: 6.25rem 6.25rem;
}

.contact-recruit::before {
	width: 44.5rem;
}

.contact-recruit__inner.inner {
	max-width: 63.75rem;
	width: 100%;
}

.contact-recruit__title {
	font-size: 5.125rem;
}

.contact-recruit__content {
	flex-direction: row;
	align-items: flex-start;
	justify-content: space-between;
	gap: 3rem;
}

.contact-recruit__desc {
	font-size: 1.5rem;
}

.contact-recruit__desc br {
	display: inline;
}

.contact-tel {
	margin-top: 8.375rem;
}

.contact-tel__title {
	font-size: 3.125rem;
}

.contact-tel__box {
	padding: 2.5rem 3.125rem 1.5rem;
	gap: 1.5rem;
}

.contact-tel__label {
	text-align: left;
	font-size: 1.75rem;
}

.contact-tel__row {
	flex-direction: row;
}

.contact-tel__main {
	align-items: baseline;
	flex-direction: row;
}

.contact-tel__icon {
	margin-right: 1.625rem;
}

.contact-tel__icon img {
	width: 2.25rem;
	height: 2.25rem;
}

.contact-tel__number {
	font-size: 3rem;
}

.contact-tel__number-note {
	text-align: left;
	font-size: 3rem;
	line-height: 1.6;
}

.contact-tel__hours {
	margin-top: 0rem;
	margin-left: 0;
	font-size: 1.75rem;
}

.contact__btn-wrap {
	flex-direction: row;
	gap: prem(40);
}

.error404 {
	padding-block: 4.25rem 7.5rem;
}

.error404__title {
	font-size: 2.25rem;
	line-height: 1.25;
}

.error404__text {
	margin-top: 1.5rem;
	font-size: 1.125rem;
	line-height: 1.6666666667;
	text-align: center;
}

.error404__button.rounded-button {
	margin-top: 3rem;
}

.floating-cta {
	left: auto;
	bottom: auto;
	right: 1.125rem;
	top: clamp(var(--header-h, 5.75rem) + 10.9375rem, 60%, 61.79vw - 15.625rem);
	transform: translateY(-50%);
	flex-direction: column;
	align-items: center;
	gap: 1.375rem;
}

.floating-cta.is-past-mv.is-scrolling {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.floating-cta__btn {
	flex: none;
	flex-direction: column;
	gap: 0.25rem;
	width: 6.75rem;
	height: auto;
	padding: 0;
	aspect-ratio: 1/1;
}

.floating-cta__btn::before {
	border-radius: 50%;
}

.floating-cta__btn--recruit::before {
	background-color: #fff;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.floating-cta__btn--consultation .floating-cta__icon {
	width: 3.375rem;
	margin-top: -1.375rem;
}

.floating-cta__btn--recruit .floating-cta__icon {
	width: 3.1875rem;
	margin-top: -0.125rem;
}

.floating-cta__label-sp {
	display: none;
}

.floating-cta__arrow {
	display: none;
}

.floating-cta__label {
	position: relative;
	z-index: 1;
	display: block;
	font-family: "mfw-pa1gothicstdn-medium", "A P-OTF A1Gothic Std", sans-serif;
	font-size: 0.875rem;
	line-height: 1.25;
	letter-spacing: 0em;
}

.floating-cta__label.floating-cta__label--black > span > span {
	font-size: 1rem;
	font-family: "mfw-pa1gothicstdn-bold", "A P-OTF A1Gothic Std", sans-serif;
}

.floating-cta__label span {
	font-size: 1rem;
	font-family: "mfw-pa1gothicstdn-bold", "A P-OTF A1Gothic Std", sans-serif;
}

.cta {
	padding-block: 5rem 5.5rem;
	background-size: 66rem auto;
}

.cta--contact {
	padding-block: 5rem 5.5rem;
	background-size: 54rem auto;
}

.cta__heading-en {
	font-size: 1.875rem;
}

.cta__heading-ja {
	font-size: 5.125rem;
}

.cta__desc {
	margin-top: 3.125rem;
	font-size: 1.5rem;
}

.cta__list-label {
	font-size: 2.125rem;
	margin-bottom: 0.875rem;
}

.cta__columns {
	margin-top: 2.375rem;
	flex-direction: row;
	gap: 10rem;
}

.cta__columns::before {
	display: block;
	position: absolute;
	inset-block: 0;
	inset-inline-start: 50%;
	width: 1px;
	background-color: #5c3f8f;
	transform: translateX(-50%);
}

.cta__col-title {
	font-size: 3.625rem;
}

.cta__col-illust-placeholder.cta__col-illust-placeholder--1 {
	width: 10.625rem;
}

.cta__col-illust-placeholder.cta__col-illust-placeholder--2 {
	width: 8.375rem;
}

.cta__list-area {
	margin-top: 3.5rem;
}

.cta__list-item {
	align-items: center;
	font-size: 0.9375rem;
	padding: 0.75rem 1.25rem 0.75rem 0.75rem;
	gap: 1rem;
}

.cta__list-check {
	margin-top: 0rem;
	width: 1.75rem;
	height: 1.75rem;
}

.cta__list-text {
	font-size: clamp(1.75rem, 1.3214285714rem + 0.8928571429vw, 2.125rem);
	line-height: 1;
}

.cta__btn {
	margin-top: 3.75rem;
	font-size: 1rem;
	padding: 1.0625rem 1.75rem;
}

.cta__btn-icon {
	width: 2.5625rem;
}

.footer-tel {
	padding-block: 4.5rem 15rem;
	clip-path: polygon(0 0, 100% 0, 100% 100%, 50% calc(100% - 10rem), 0 100%);
}

.footer-tel__label {
	font-size: 2.5rem;
	line-height: 1.5;
}

.footer-tel__hours {
	margin-top: 0rem;
	font-size: 1.5rem;
}

.footer-tel__number {
	margin-top: 3rem;
	flex-direction: row;
	font-size: 6.25rem;
}

.footer-tel__prefix {
	font-size: 3.75rem;
}

.footer-tel__rep {
	font-size: 1.875rem;
	align-self: auto;
}

.footer {
	padding-block: 1.5rem 2rem;
}

.footer::before {
	bottom: 0rem;
	width: 44.5rem;
}

.footer__columns {
	flex-direction: row;
	justify-content: space-between;
	gap: clamp(2rem, -1.4285714286rem + 7.1428571429vw, 5rem);
	align-items: stretch;
}

.footer__col--left {
	display: flex;
	flex-direction: column;
}

.footer__col--right {
	order: 0;
	margin-top: 0;
	max-width: clamp(18.75rem, 0.8928571429rem + 37.2023809524vw, 34.375rem);
	width: 100%;
}

.footer__col--right-title {
	font-size: 1.5rem;
}

.footer__col--right-top {
	max-width: 31.5625rem;
	width: 100%;
	margin-left: auto;
}

.footer__col--right-nav {
	flex-direction: row;
	gap: 2rem 6.25rem;
	align-items: start;
}

.footer__sns {
	flex-direction: row;
	max-width: 31.5625rem;
	flex-wrap: wrap;
	gap: 1.5625rem;
	margin-left: auto;
}

.footer__info {
	order: 0;
}

.footer__logo-link {
	margin-inline: 0;
}

.footer__logo {
	width: 24.625rem;
}

.footer__address {
	font-size: 1rem;
}

.footer__deco-text {
	order: 0;
	margin-top: 4.125rem;
	font-size: 5.625rem;
	line-height: 1;
}

.footer__nav-list {
	gap: 1.125rem;
}

.footer__nav-link {
	font-size: 1.25rem;
}

.footer__nav-link--small {
	font-size: 1rem;
}

.footer__nav-item--contact {
	margin-block: 0.5rem 0;
}

.footer__nav-link--btn {
	max-width: 100%;
	font-size: 1.25rem;
	padding: 0.625rem 1rem;
}

.footer__group {
	margin-top: auto;
	gap: 1.875rem;
}

.footer__group-companies {
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
}

.footer__group-company-logo {
	max-height: 1.625rem;
}

.footer__copyright {
	order: 0;
	margin-top: 1.375rem;
	font-size: 0.625rem;
}

.fv {
	max-height: 37.5rem;
}

.fv__image {
	padding-block: 3.25rem 5rem;
	height: 37.5rem;
}

.fv__image img,
.fv__image picture {
	object-position: center top;
}

.fv__inner {
	padding: 0 25px;
	max-width: 90vw;
}

.fv__title {
	font-size: 5rem;
	padding: 0.125rem 0.75rem;
}

.fv__deco {
	bottom: 0.5rem;
}

.fv__deco-text {
	font-size: 7.5rem;
	padding-right: 5rem;
}

.header {
	background-color: #fff;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.header__inner {
	height: 5.75rem;
	padding: 0 1.5625rem;
}

.header__logo {
	gap: clamp(0.3125rem, -0.2589285714rem + 1.1904761905vw, 0.8125rem);
}

.header__logo-link {
	width: 100%;
	max-width: clamp(7.5rem, 0.5rem + 14.5833333333vw, 13.625rem);
}

.header__logo-link img {
	aspect-ratio: 4096/526;
}

.header__divider {
	display: block;
}

.header__tagline {
	display: block;
}

.header__nav {
	display: block;
}

.header__nav-en {
	font-size: clamp(0.5rem, 0.2142857143rem + 0.5952380952vw, 0.75rem);
	text-decoration: underline;
}

.header__nav-ja {
	color: #5c3f8f;
	font-size: clamp(0.625rem, 0.0535714286rem + 1.1904761905vw, 1.125rem);
}

.header__hamburger {
	display: none;
}

.header__sp-nav {
	display: none;
}

.loading__stage {
	width: min(60vw, 46.25rem);
	height: min(40vh, 25rem);
}

.loading__line--v {
	width: 1.5px;
}

.loading__line--h {
	height: 1.5px;
}

.loading__logo-mark {
	width: 3.75rem;
	height: 3.3125rem;
}

.loading__logo-main {
	font-size: 1.75rem;
}

.loading__logo-sub {
	font-size: 0.625rem;
}

.loading-trigger {
	font-size: 0.8125rem;
	padding: 0.625rem 1.125rem;
}

.mv {
	box-sizing: border-box;
	height: 100svh;
	aspect-ratio: 1442/891;
	padding-bottom: 0;
}

.mv__image picture,
.mv__image img {
	aspect-ratio: 1442/891;
}

.mv__content {
	top: clamp(var(--header-h, 5.75rem) + 1.25rem, 62% - 12.8125rem, 100svh - 22.5rem);
	left: 2.8125rem;
	right: 10rem;
}

.mv__title {
	gap: 1.25rem;
	-webkit-text-stroke: 0;
}

.mv__title span {
	padding: 0.625rem 2rem;
	font-size: 5.625rem;
}

.mv__sub-wrap {
	gap: 0.5rem;
	margin-top: 1.25rem;
}

.mv__sub-label {
	font-size: 1.25rem;
}

.mv__sub-label span {
	font-size: 1.625rem;
}

.mv__marquee {
	bottom: 0.25rem;
}

.mv__marquee-text {
	font-size: 7.5rem;
	padding-right: 5rem;
}

.mv__pagination {
	right: 1.25rem;
	bottom: min(10rem, 100svh - var(--header-h, 5.75rem) - 2.5rem);
	gap: 1rem;
}

.mv__pagination-bullets.swiper-pagination {
	gap: 0.5rem;
}

.mv__pagination-count {
	font-size: 1.25rem;
}

.news-archive__empty {
	font-size: 1.125rem;
}

.news-archive__pagination.pagination {
	margin-top: 10rem;
}

.news-page {
	padding-block: 3.125rem 5rem;
}

.news-page__article {
	padding-block: 7.5rem 12.5rem;
	padding-inline: 8.75rem;
}

.news-page__title {
	font-size: 3.375rem;
}

.news-page__meta {
	gap: 1rem;
	margin-top: 2.5rem;
}

.news-page__date {
	font-size: 1rem;
}

.news-page__cat {
	font-size: 0.875rem;
}

.news-page__content {
	margin-top: 2.0625rem;
}

.news-page__content h2 {
	font-size: 1.75rem;
}

.news-page__content h3 {
	font-size: 1.5rem;
}

.news-page__content h4 {
	font-size: 1.25rem;
}

.news-page__content p {
	font-size: 1.125rem;
}

.news-page__content li {
	font-size: 1.125rem;
}

.news-page__content a {
	font-size: 1.125rem;
}

.news-page__content .wp-block-button__link {
	font-size: 1.25rem;
	width: auto;
	min-width: 19.75rem;
}

.news-page__content .wp-block-button__link::after {
	font-size: 1.375rem;
}

.pager-list {
	display: flex;
	gap: 0;
	margin-top: 3.75rem;
	max-width: 100%;
}

.pager-list__col {
	flex: 1;
}

.pager-list__col--prev {
	justify-content: flex-start;
}

.pager-list__col--next {
	justify-content: flex-end;
}

.pager-list__btn {
	width: auto;
	min-width: 17.6875rem;
	padding: 1.125rem 1.5rem;
	font-size: 1.25rem;
}

.pager-list__btn--filled {
	max-width: 100%;
}

.partners__list {
	padding-block: 1.625rem 1.5625rem;
	margin-top: 0.875rem;
}

.partners__list--single-row {
	grid-template-columns: repeat(4, 1fr);
	gap: 1.25rem;
	padding-block: 3rem 2.75rem;
	padding-inline: 2.5rem;
}

.partners__list--two-rows {
	flex-direction: row;
	gap: 3.125rem;
}

.partners__list--two-rows-outerwall {
	gap: 3.125rem;
}

.partners__list--three-rows {
	gap: 3.125rem 1.25rem;
}

.partners__item {
	font-size: 1.0625rem;
}

.partners__logo {
	height: 4.375rem;
}

.partners__name {
	font-size: 1.25rem;
	line-height: 1.7;
}

.partners__container + .partners__container {
	margin-top: 7.5rem;
}

.post-connect__items {
	row-gap: prem(40);
	-moz-column-gap: prem(20);
	column-gap: prem(20);
	grid-template-columns: repeat(4, 1fr);
}

.post-list__items {
	row-gap: prem(40);
	-moz-column-gap: prem(20);
	column-gap: prem(20);
	grid-template-columns: repeat(4, 1fr);
}

.post-list__cards {
	margin-top: prem(100);
}

.post-list__btn {
	margin: prem(28) auto 0;
	width: 100%;
	max-width: calc(prem(980) + 50px);
	padding: 0 prem(10);
}

.prime-us {
	padding-top: 8.75rem;
	padding-bottom: 8.3125rem;
}

.prime-us::before {
	clip-path: polygon(0 20%, 100% 0%, 100% 80%, 0% 100%);
}

.prime-us__inner.inner {
	max-width: 81.25rem;
}

.prime-us__header {
	container-type: inline-size;
	flex-direction: row;
	gap: 7.75rem;
	padding-left: 2.5rem;
}

.prime-us__title {
	font-size: min(6.7768595041cqi, 5.125rem);
}

.prime-us__subtitle {
	font-size: min(2.3140495868cqi, 1.75rem);
	line-height: 1.36;
}

.prime-us__subtitle::before {
	top: 50%;
	translate: 0 -50%;
	left: -2.625rem;
	width: 0.125rem;
	height: 4.8125rem;
}

.prime-us__content {
	margin-top: 5.375rem;
}

.prime-us__container {
	flex-direction: row;
	gap: 4.75rem;
	padding-left: 2.75rem;
	padding-right: 0.8125rem;
}

.prime-us__img {
	flex: 1 0 0;
	padding-top: 1.5625rem;
}

.prime-us__content-body {
	flex: 0 0 34.9375rem;
}

.prime-us__merits-title {
	font-size: 3.125rem;
	text-align: initial;
	padding-left: 2.5rem;
	margin-top: 5rem;
}

.prime-us__content-text {
	font-size: 1.25rem;
	margin-top: 1.5625rem;
}

.prime-us__cards {
	grid-template-columns: repeat(3, 1fr);
	gap: 2.1875rem;
	margin-top: 2.25rem;
}

.prime-us__card {
	flex: 1;
	padding: 1.8125rem 2.5rem 3rem;
}

.prime-us__card-title {
	font-size: min(2.24cqi, 1.75rem);
}

.prime-us__card-img {
	max-width: 15.3125rem;
	margin-top: 1.9375rem;
}

.prime-us__card-body {
	margin-top: 1.9375rem;
}

.prime-us__card-num {
	bottom: -0.625rem;
	font-size: min(12.64cqi, 9.875rem);
}

.prime-us__card-text {
	font-size: 1.25rem;
	font-size: min(1.6cqi, 1.25rem);
}

.privacy-policy {
	padding-block: 2.5rem 7.5rem;
}

.privacy-policy__lead {
	font-size: 1rem;
	line-height: 1.8888888889;
}

.privacy-policy__list {
	margin-top: 1.125rem;
	padding-left: 1.5rem;
}

.privacy-policy__list li {
	font-size: 1rem;
}

.privacy-policy__list li + li {
	margin-top: 0.625rem;
}

.privacy-policy__section {
	margin-top: 4rem;
}

.privacy-policy__heading {
	padding-bottom: 1rem;
	font-size: 1.75rem;
}

.privacy-policy__text {
	margin-top: 1.125rem;
	font-size: 1rem;
	line-height: 1.8888888889;
}

.privacy-policy__text + .privacy-policy__text {
	margin-top: 0.625rem;
}

.projects-archive__section + .projects-archive__section {
	margin-top: 4rem;
}

.projects-card__body {
	padding: 1.5rem 1.75rem 1.75rem;
}

.projects-card__title {
	font-size: 1.375rem;
}

.projects-card__meta-label {
	padding: 0.25rem 0.5rem;
	width: 4.5rem;
}

.projects-card__meta-value {
	font-size: 1rem;
}

.project-section__items {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	-moz-column-gap: 1.0625rem;
	column-gap: 1.0625rem;
	row-gap: 3.125rem;
	margin-top: 3.75rem;
}

.swiper-slide-active .projects-card__body {
	border-width: 0.0625rem;
}

.top-project {
	margin-top: 7.5rem;
}

.top-project__deco--tr {
	top: -6.25rem;
	width: min(18.125vw, 16.3125rem);
}

.projects-slider__swiper {
	margin-top: 3.75rem;
	padding-bottom: 5.75rem;
}

.projects-slider__nav {
	width: 4rem;
	font-size: 3rem;
}

.projects-slider__nav--prev,
.projects-slider__nav--next {
	top: 35%;
}

.projects-slider__nav--prev {
	left: 27%;
}

.projects-slider__nav--next {
	right: 27%;
}

.projects-slider__more {
	margin-top: 3.5rem;
}

.projects-slider__more-label {
	width: 16rem;
	font-size: 1.125rem;
	padding: 1.21875rem 2.875rem;
}

.projects-slider__more-arrow {
	width: 4.625rem;
	margin-left: -0.5rem;
	clip-path: polygon(0.875rem 0, 100% 0, calc(100% - 0.875rem) 100%, 0 100%);
}

.service-case {
	padding-bottom: 8.75rem;
}

.service-case .project-section__items {
	max-width: 71.25rem;
	margin-inline: auto;
	-moz-column-gap: 3.75rem;
	column-gap: 3.75rem;
}

.service-case__more {
	margin-top: 3.3125rem;
}

.service-overview {
	padding-block: 3.125rem 4.875rem;
}

.service-overview__lead-text {
	margin-top: 1.25rem;
}

.service-overview__items {
	--columns: 3;
	--column-gap: 1.25rem;
	--row-gap: 1.875rem;
	margin-top: 3.5rem;
}

.service-strength {
	padding-bottom: 9.375rem;
}

.service-strength__list {
	margin-top: 2.75rem;
}

.service-strength__item + .service-strength__item {
	margin-top: 3.75rem;
}

.service-strength__item-title {
	font-size: 3.125rem;
	padding-left: 7.5rem;
}

.service-strength__item-title::before {
	width: 5.875rem;
}

.service-strength__item-container {
	flex-direction: row;
	justify-content: center;
	gap: 1.5rem;
	margin-top: 2.8125rem;
}

.service-strength__textarea {
	flex: 1 0 0;
	padding-inline: 8.8cqi;
}

.service-strength__text {
	font-size: 1.6cqi;
}

.service-strength__img {
	order: 0;
	flex: 0 0 26.625rem;
}

.services {
	padding-bottom: 8.125rem;
}

.services__lead-title {
	font-size: 2.25rem;
	line-height: 1.2222222222;
}

.services__items {
	gap: 7.25rem;
	margin-top: 9.375rem;
	max-width: initial;
}

.sidebar__inner {
	position: sticky;
	top: 7.25rem;
	max-width: 100%;
	margin-inline: 0;
	padding-inline: 0;
}

.sidebar__list {
	flex-direction: column;
	gap: 0;
	padding-bottom: 0;
	overflow-x: visible;
	cursor: default;
}

.sidebar__link {
	font-size: 1rem;
	padding: 0.625rem 0.625rem 0.625rem 0;
	flex-shrink: 1;
	white-space: normal;
}

.sidebar__link.is-active .sidebar__text {
	text-decoration-color: currentColor;
}

.tile-art {
	container-type: inline-size;
	padding-block: 5rem;
}

.tile-art__container {
	max-width: min(82.3611111111cqi, 74.125rem);
	margin-inline: auto;
}

.tile-art__ornament {
	display: block;
}

.tile-art__ornament--01 {
	width: min(22.2222222222cqi, 20rem);
	top: 4.375rem;
	left: -13.125rem;
	z-index: -1;
}

.tile-art__ornament--02 {
	width: min(17.3611111111cqi, 15.625rem);
	top: 3.5rem;
	right: -10.6875rem;
}

.tile-art__ornament--03 {
	width: min(13.8888888889cqi, 12.5rem);
	bottom: -4.375rem;
	left: -10.625rem;
}

.tile-art__ornament--04 {
	width: min(19.4444444444cqi, 17.5rem);
	bottom: -5rem;
	right: -10.625rem;
}

.tile-art__title {
	align-items: center;
}

.tile-art__title::before {
	width: 3.75rem;
	translate: 0 0;
}

.tile-art__title-em {
	font-size: min(4.1666666667cqi, 3.75rem);
}

.tile-art__title-sub {
	font-size: min(2.9166666667cqi, 2.625rem);
}

.tile-art__body {
	flex-direction: row;
	align-items: stretch;
	margin-top: min(7.7777777778cqi, 7rem);
	min-height: min(33.1944444444cqi, 29.875rem);
}

.tile-art__body::before {
	background-color: #d2d4e3;
	clip-path: polygon(5.18% 0%, 100% 0%, 94.82% 100%, 0% 100%);
}

.tile-art__img {
	position: absolute;
	top: min(-3.75cqi, -3.375rem);
	left: min(-4.375cqi, -3.9375rem);
	z-index: 1;
	flex-shrink: 0;
	width: min(42.5694444444cqi, 38.3125rem);
	clip-path: polygon(11% 0%, 100% 0%, 89% 100%, 0% 100%);
}

.tile-art__content {
	flex: 1;
	padding-block: min(6.25cqi, 5.625rem) min(3.3333333333cqi, 3rem);
	padding-inline: 0;
	max-width: min(42.3611111111cqi, 38.125rem);
	margin-left: auto;
	background-color: transparent;
	margin-top: 0;
}

.tile-art__lead {
	font-size: min(1.9444444444cqi, 1.75rem);
}

.tile-art__text {
	font-size: min(1.3888888889cqi, 1.25rem);
	max-width: min(42.3611111111cqi, 38.125rem);
	margin-top: min(1.3888888889cqi, 1.25rem);
}

.top-client {
	padding-top: 6.25rem;
}

.top-client__deco--tl {
	top: 1.5rem;
	width: min(36.4583333333vw, 32.8125rem);
}

.top-client__heading-en {
	font-size: 1.875rem;
}

.top-client__heading-ja {
	font-size: 5.125rem;
}

.top-client__marquees {
	margin-top: 4.375rem;
	gap: 1.75rem;
}

.top-client__row-track {
	gap: 1.875rem;
	animation-duration: 120s;
}

.top-client__logo {
	height: 5.5rem;
	max-width: 38.75rem;
}

.top-client__logo img {
	max-height: 5.5rem;
}

.top-company {
	margin-top: 5rem;
	padding-block: 11.25rem 3.75rem;
}

.top-company::before {
	clip-path: ellipse(78% 100% at 50% 100%);
}

.top-company::after {
	background-position: left 5% top 30%;
	background-size: 48rem;
	background-position: center center;
}

.top-company__content {
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	margin-right: calc(50% - 50vw);
}

.top-company__text-area {
	display: flex;
	gap: 3.5rem;
}

.top-company__image {
	width: auto;
	flex: 1;
	max-width: 61.0625rem;
}

.top-company__link {
	align-self: start;
}

.top-company__link .circle-button__arrow {
	width: 2.5rem;
	height: 1.875rem;
}

.top-company__link .circle-button__arrow::before,
.top-company__link .circle-button__arrow::after {
	font-size: 1.875rem;
}

.top-evolution {
	background-image: url("../images/top-evolution-bg.png");
	margin-top: 5.5rem;
	padding-top: 4rem;
	padding-bottom: 3.75rem;
	background-position: top;
}

.top-evolution__title {
	font-size: 5.125rem;
}

.top-evolution__subtitle-en {
	color: #fff;
	font-size: 2.375rem;
}

.top-evolution__desc {
	color: #fff;
	margin-top: 1.25rem;
	font-size: 1.25rem;
}

.top-evolution__content {
	margin-top: 2.25rem;
	flex-direction: row;
	gap: clamp(1.5rem, -0.7857142857rem + 4.7619047619vw, 3.5rem);
	align-items: flex-end;
	justify-content: space-between;
}

.top-evolution__features {
	grid-template-columns: repeat(3, 1fr);
	gap: 0.75rem;
	max-width: 53.5rem;
}

.top-evolution__feature {
	padding: 0rem 0.75rem 2.875rem;
	gap: 1.25rem;
}

.top-evolution__feature-icon {
	width: 12.8125rem;
}

.top-evolution__feature-title {
	font-size: 1.5rem;
}

.top-evolution__feature-num {
	font-size: 2.5rem;
	line-height: 1.5;
}

.top-evolution__feature-unit {
	font-size: 1.25rem;
}

.top-evolution__feature--theme {
	font-size: 1.875rem;
}

.top-land {
	margin-top: 8.75rem;
}

.top-land__collage {
	--land-card-w: 30.375rem;
	--land-card-h: 20.8125rem;
	row-gap: 0.75rem;
}

.top-land__slide {
	margin-inline: -1rem;
}

.top-land__catch {
	gap: 5.125rem;
}

.top-land__catch-line {
	line-height: 1.25;
	font-size: 4.375rem;
}

.top-message {
	margin-top: 2rem;
}

.top-message__catch {
	gap: 3rem;
}

.top-message__catch-line {
	line-height: 1.25;
	font-size: clamp(2.5rem, 0.5rem + 4.1666666667vw, 4.25rem);
}

.top-news {
	margin-top: 7.5rem;
}

.top-news__deco--tr {
	top: -8.25rem;
	right: calc(50% - min(65vw, 54rem));
	width: min(48.4722222222vw, 43.625rem);
}

.top-news__layout {
	padding-top: 0;
	padding-bottom: 0;
	margin-top: 4.5rem;
}

.top-news .sidebar__inner {
	position: static;
}

.top-news__empty {
	font-size: 1.125rem;
}

.top-news__more {
	margin-top: 4rem;
}

.top-recruit__marquees {
	padding-block: 0.75rem;
}

.top-recruit__row-track {
	gap: 1.25rem;
}

.top-recruit__text {
	font-size: 5.625rem;
}

.top-recruit__icon {
	--icon-scale: 1;
	width: calc(var(--w, 96) * 1rem / 16 * var(--icon-scale));
	height: calc(var(--h, 96) * 1rem / 16 * var(--icon-scale));
}

.top-recruit__body {
	padding-block: 9.25rem 5.625rem;
}

.top-recruit__inner {
	padding-inline: 25px;
}

.top-recruit__content {
	gap: 2.5rem;
	max-width: 52.5rem;
	width: 100%;
	margin-left: auto;
}

.top-recruit__row {
	flex-direction: row;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1.625rem;
}

.top-recruit__heading {
	gap: 0.3125rem;
}

.top-recruit__heading-line {
	font-size: 3.625rem;
	line-height: 1.4;
}

.top-recruit__heading-mark {
	padding: 0.625rem 0.25rem;
}

.top-recruit__desc {
	font-size: 1.75rem;
}

.top-recruit__link {
	align-self: flex-end;
}

.top-services__sticky {
	padding-block: 1.25rem;
}

.top-services__sticky::before {
	clip-path: polygon(0 8.75rem, 100% 0, 100% calc(100% - 8.75rem), 0 100%);
}

.top-services__heading {
	flex-direction: row;
	align-items: flex-end;
	gap: 3rem;
}

.top-services__heading-sub {
	font-size: 1.75rem;
	padding-bottom: 1rem;
	padding-left: 3rem;
}

.top-services__heading-sub::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 2px;
	background-color: #282828;
}

.top-services__heading-sub strong {
	font-size: 3.75rem;
}

.top-services__slider {
	margin-block: 2.5rem 0;
}

.top-services__list {
	gap: 1.875rem;
	padding-inline: max(25px, (100% - 1200px) / 2);
}

.top-services__card {
	--card-base-h: 484;
	--card-total: 534;
}

.top-services__card--more .top-services__more-link {
	width: min(13.625rem, 37cqh);
	font-size: min(1.75rem, 4.8cqh);
}

.top-services__card--more .circle-button.top-services__more-link {
	padding-top: min(1.875rem, 6cqh);
	width: min(13.625rem, 48cqh);
}

.top-services__card-head {
	margin-top: -0.625rem;
}

.top-services__card-num {
	font-size: min(9.875rem, 27cqh);
}

.top-services__card-title {
	padding: 0 0.5rem;
	font-size: min(3rem, 10cqh);
}

.top-services__card-desc {
	font-size: min(1.25rem, 5cqh);
	left: 1.25rem;
	right: 1.25rem;
	bottom: min(1.5rem, 6cqh);
}

.top-services__deco--bl {
	left: calc(50% - min(61vw, 52rem));
	width: min(32.2222222222vw, 29rem);
	bottom: -4.75rem;
}

.text {
	font-size: max(14px, 1.25rem);
	line-height: 1.7;
}

}

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

a:hover {
	opacity: 0.7;
}

.floating-cta__btn:hover {
	transform: scale(1.04);
}

}

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

.construction__hero-bg {
	top: 5.75rem;
	height: calc(100vh - 5.75rem);
}

.construction__hero-content {
	min-height: calc(100vh - 5.75rem);
}

.top-services__card {
	--card-total: 584;
}

.top-services__card:nth-child(2) {
	--step: 20;
}

.top-services__card:nth-child(3) {
	--step: 40;
}

.top-services__card:nth-child(4) {
	--step: 60;
}

.top-services__card:nth-child(5) {
	--step: 80;
}

.top-services__card:nth-child(6) {
	--step: 100;
}

}

@media (min-width: 1200px) {

html {
	font-size: 16px;
}

}

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

.company__group-content {
	gap: clamp(3rem, 0.4285714286rem + 5.3571428571vw, 5.25rem);
}

.company__group-companies {
	gap: clamp(1rem, -0.4285714286rem + 2.9761904762vw, 2.25rem);
}

}

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

.tile-art__img {
	top: -3.375rem;
	left: -3.9375rem;
}

}

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

.mv__marquee {
	bottom: 0.2777777778vw;
}

.mv__marquee-text {
	font-size: 8.3333333333vw;
}

.mv__pagination {
	bottom: min(11.1111111111vw, 100svh - var(--header-h, 5.75rem) - 2.5rem);
	gap: 1.1111111111vw;
	right: 1.3888888889vw;
}

.mv__pagination-bullets.swiper-pagination {
	gap: 0.5555555556vw;
}

.mv__pagination-bullets .swiper-pagination-bullet {
	width: 1.6666666667vw;
	height: 0.1388888889vw;
}

.mv__pagination-bullets .swiper-pagination-bullet-active {
	width: 3.4722222222vw;
}

.mv__pagination-count {
	font-size: 1.3888888889vw;
}

}

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

.u-pc1300 {
	display: block;
}

}

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

.column2 {
	grid-template-columns: repeat(1, 1fr);
	gap: prem(10);
}

.column2--gap60 {
	gap: prem(10);
}

.column2--gapSp20 {
	gap: prem(10);
}

.column3 {
	grid-template-columns: repeat(1, 1fr);
}

.column4 {
	grid-template-columns: repeat(1, 1fr);
}

.column4--sp2 {
	grid-template-columns: repeat(2, 1fr);
}

.u-mtSp10 {
	margin-top: 10px !important;
	margin-top: prem(10) !important;
}

.u-mtSp20 {
	margin-top: 20px !important;
	margin-top: prem(20) !important;
}

.u-mtSp30 {
	margin-top: 30px !important;
	margin-top: prem(30) !important;
}

.u-mtSp40 {
	margin-top: 40px !important;
	margin-top: prem(40) !important;
}

.u-mtSp50 {
	margin-top: 50px !important;
	margin-top: prem(50) !important;
}

.u-mtSp60 {
	margin-top: 60px !important;
	margin-top: prem(60) !important;
}

.u-mtSp70 {
	margin-top: 70px !important;
	margin-top: prem(70) !important;
}

.u-mtSp80 {
	margin-top: 80px !important;
	margin-top: prem(80) !important;
}

.u-mtSp90 {
	margin-top: 90px !important;
	margin-top: prem(90) !important;
}

.u-mtSp100 {
	margin-top: 100px !important;
	margin-top: prem(100) !important;
}

.u-mtSp110 {
	margin-top: 110px !important;
	margin-top: prem(110) !important;
}

.u-mtSp120 {
	margin-top: 120px !important;
	margin-top: prem(120) !important;
}

.u-mtSp130 {
	margin-top: 130px !important;
	margin-top: prem(130) !important;
}

.u-mtSp140 {
	margin-top: 140px !important;
	margin-top: prem(140) !important;
}

.u-mtSp150 {
	margin-top: 150px !important;
	margin-top: prem(150) !important;
}

.u-mtSp160 {
	margin-top: 160px !important;
	margin-top: prem(160) !important;
}

.u-mtSp170 {
	margin-top: 170px !important;
	margin-top: prem(170) !important;
}

.u-mtSp180 {
	margin-top: 180px !important;
	margin-top: prem(180) !important;
}

.u-mtSp190 {
	margin-top: 190px !important;
	margin-top: prem(190) !important;
}

.u-mtSp200 {
	margin-top: 200px !important;
	margin-top: prem(200) !important;
}

.u-pc {
	display: none;
}

.u-sp {
	display: block;
}

.u-textMdLeft {
	text-align: Left !important;
}

.u-textMdCenter {
	text-align: Center !important;
}

.u-textMdRight {
	text-align: Right !important;
}

.u-textMdJustify {
	text-align: Justify !important;
}

}

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

.u-sp600 {
	display: revert;
}

}

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

.u-sp550 {
	display: revert;
}

}

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

.u-sp500 {
	display: block;
}

}

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

.u-sp450 {
	display: block;
}

}

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

.u-sp400 {
	display: block;
}

}

@media (max-width: 375px) {

html {
	font-size: 4.2666666667vw;
}

}

@keyframes circle-button-fill {

from {
	clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}

to {
	clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

}

@keyframes transformLeftRight {

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

100% {
	transform: translateX(0);
}

}

@keyframes transformRightLeft {

0% {
	transform: translateX(0);
}

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

}

@keyframes construction-button-arrow-in {

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

100% {
	transform: translateX(0);
}

}

@keyframes construction-button-arrow-out {

0% {
	transform: translateX(0);
}

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

}

@keyframes construction-slide {

from {
	transform: translateX(0);
}

to {
	transform: translateX(-50%);
}

}

@keyframes cta-btn-fill {

from {
	clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}

to {
	clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

}

@keyframes footer-nav-btn-fill {

from {
	clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}

to {
	clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

}

@keyframes fv-image-fadein {

from {
	opacity: 0;
}

to {
	opacity: 1;
}

}

@keyframes fv-title-reveal {

from {
	clip-path: inset(0 100% 0 0);
}

to {
	clip-path: inset(0 0 0 0);
}

}

@keyframes marquee-loop {

from {
	transform: translateX(0);
}

to {
	transform: translateX(-50%);
}

}

@keyframes projects-slider-more-fill {

from {
	clip-path: polygon(5% 0%, 5% 0%, 0% 100%, 0% 100%);
}

to {
	clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
}

}

@keyframes top-client-marquee-left {

from {
	transform: translateX(0);
}

to {
	transform: translateX(-50%);
}

}

@keyframes top-client-marquee-right {

from {
	transform: translateX(-50%);
}

to {
	transform: translateX(0);
}

}

@keyframes site-fade-in {

from {
	opacity: 0;
}

to {
	opacity: 1;
}

}

@keyframes mv-intro-wipe {

from {
	clip-path: inset(0 100% 0 0);
}

to {
	clip-path: inset(0 0 0 0);
}

}

@keyframes top-news-fade {

from {
	opacity: 0;
}

to {
	opacity: 1;
}

}

@keyframes top-recruit-marquee-left {

from {
	transform: translateX(0);
}

to {
	transform: translateX(-50%);
}

}

@keyframes top-recruit-marquee-right {

from {
	transform: translateX(-50%);
}

to {
	transform: translateX(0);
}

}

