:root {
	--font-family-base: "Zen Old Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
	--font-family-second: "Inter", "Hiragino Sans", "Yu Gothic", "Noto Sans JP", sans-serif;
	--font-family-third: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", sans-serif;
	--font-family-fourth: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
}

:root {
	--font-weight-light: 300;
	--font-weight-regular: 400;
	--font-weight-medium: 500;
	--font-weight-semibold: 600;
	--font-weight-bold: 700;
	--font-weight-black: 900;
}

:root {
	--black: #000;
	--white: #fff;
	--text-color: #626262;
	--text-gray: #ACACAC;
	--main-color: #E60012;
	--main-color2: #C4A552;
	--mh_goldlabel: #C3B889;
	--bg-color: #F9F6EE;
	--line-color: #DDD;
	--line-color2: #ECECEC;
	--linear-gradient: linear-gradient(270deg, rgba(249, 246, 238, 0.00) 3.37%, var(--bg01, #F9F6EE) 29.53%);
}

:root {
	--z-index-header: 100;
	--z-index-to-top: 200;
	--z-index-float-entry: 1000;
	--z-index-drawer: 2000;
	--z-index-hamburger: 10000;
	--z-index-modal: 100000;
}

:root {
	--duration-short: 0.2s;
	--duration-base: 0.3s;
	--duration-long: 0.6s;
	--duration-fv: 0.7s;
	--ease-smooth-bounce: cubic-bezier(.48, .07, .33, .79);
}

:root {
	--cq-ref-mobile: 375;
	--cq-ref: 1440;
	--fluid-basis-mobile: (100vw - 320px) / (375 - 320);
	--fluid-basis: (100vw - 768px) / (1440 - 768);
	--fluid-basis-2: (100vw - 1440px) / (1800 - 1440);
}

body {
	color: var(--text-color);
	font-family: var(--font-family-base);
}

:root:not(:lang(ja)) .translate-none {
	display: none;
}

.u-desktop {
	display: none;
}

html {
	font-size: 16px;
}

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

html {
	-webkit-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	text-size-adjust: 100%;
	scroll-behavior: smooth;
}

body {
	word-wrap: anywhere;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	line-break: strict;
	line-height: 1.5;
	margin: 0;
	min-height: 100vh;
	overflow-wrap: anywhere;
	text-rendering: optimizeLegibility;
	word-break: normal;
}

:root:not(:lang(ja)) body {
	word-wrap: break-word;
	-webkit-hyphens: auto;
	hyphens: auto;
	line-break: auto;
	overflow-wrap: break-word;
	word-break: normal;
}

ul,
ol,
button,
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
time,
small {
	margin: 0;
	padding: 0;
}

ul,
ol {
	list-style: none;
}

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

a,
span,
button {
	display: inline-block;
}

small,
time,
figure {
	border: 0;
	font: inherit;
	font-size: 100%;
	vertical-align: baseline;
}

address {
	font-style: normal;
}

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

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

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

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

textarea {
	resize: vertical;
}

input[type=checkbox],
input[type=radio] {
	-webkit-clip-path: polygon(0 0, 0 0, 0 0, 0 0);
	border: 0;
	clip-path: polygon(0 0, 0 0, 0 0, 0 0);
	height: 1px;
	margin: -1px;
	padding: 0;
	position: absolute;
	width: 1px;
}

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

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

button {
	color: inherit;
}

a {
	-webkit-tap-highlight-color: transparent;
}

button {
	-webkit-tap-highlight-color: transparent;
}

.float-entry-btn-sp {
	bottom: 20px;
	left: 50%;
	position: fixed;
	translate: -50% 0;
	z-index: var(--z-index-float-entry);
}

.float-entry-btn-sp__inner {
	margin-left: auto;
	margin-right: auto;
	max-width: 500px;
	padding-left: 2.0625rem;
	padding-right: 1.875rem;
	width: 100vw;
}

.float-entry-btn-sp__link {
	align-items: center;
	background-color: var(--main-color);
	border-radius: 10px;
	box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.2);
	display: flex;
	flex-direction: column;
	gap: 0.0625rem;
	padding-bottom: 0.625rem;
	padding-top: 0.625rem;
	position: relative;
	width: 100%;
}

.float-entry-btn-sp__link::after {
	border-right: 2px solid #fff;
	border-top: 2px solid #fff;
	content: "";
	height: 0.5625rem;
	position: absolute;
	right: 0.9375rem;
	top: 55%;
	transform: translateY(-50%) rotate(45deg);
	transition: border-top var(--duration-base) ease, border-right var(--duration-base) ease;
	translate: 0 -50%;
	width: 0.5625rem;
}

.float-entry-btn-sp__label {
	color: var(--white);
	font-family: var(--font-family-second);
	font-size: 0.6875rem;
	font-weight: var(--font-weight-bold);
	line-height: 1;
	text-align: center;
}

.float-entry-btn-sp__label-ls {
	letter-spacing: 0.09em;
}

.float-entry-btn-sp__text {
	color: var(--white);
	font-family: var(--font-family-second);
	font-size: 1.75rem;
	font-style: italic;
	font-weight: --font-weight-semibold;
	letter-spacing: 0.14em;
	line-height: 1;
	text-align: center;
	text-transform: uppercase;
}

.fv {
	height: auto;
	margin-top: 3.3125rem;
	overflow-x: clip;
}

.fv__inner {
	container-type: inline-size;
	display: grid;
	position: relative;
}

.fv__content {
	align-items: flex-end;
	display: flex;
	flex-direction: column;
	left: 52.5%;
	position: absolute;
	top: 95%;
	translate: -50% -50%;
	z-index: 1;
}

:root:not(:lang(ja)) .fv__content {
	left: 50.5%;
}

.fv__vision-label {
	color: var(--main-color2);
	font-family: var(--font-family-second);
	font-size: calc(1500 / var(--cq-ref-mobile) * 1cqw);
	font-weight: var(--font-weight-light);
	letter-spacing: -0.023em;
	text-align: right;
	text-transform: uppercase;
}

.fv__title.fv__title--other {
	-webkit-box-decoration-break: clone;
	box-decoration-break: clone;
	display: none;
	width: 98cqw;
}

.fv__title--other font {
	-webkit-box-decoration-break: clone;
	background-color: var(--main-color);
	box-decoration-break: clone;
	display: inline;
	line-height: 1.8;
	padding-left: 5px;
	padding-right: 5px;
}

.fv__title.fv__title--other .hl-line {
	-webkit-box-decoration-break: clone;
	background-color: var(--main-color);
	box-decoration-break: clone;
	display: inline;
	line-height: 1.8;
	padding-left: 5px;
	padding-right: 5px;
}

.fv__title {
	display: none;
}

:root:lang(ja) .fv__title.fv__title--jp {
	display: flex;
}

:root:lang(en) .fv__title.fv__title--other[lang=en] {
	display: inline;
}

:root:not(:lang(ja)):not(:lang(en)) .fv__title.fv__title--other:not([lang=en]) {
	display: inline;
}

.fv__vision-dot {
	aspect-ratio: 1/1;
	background-color: var(--main-color);
	margin-top: calc(1400 / var(--cq-ref-mobile) * 1cqw);
	width: calc(400 / var(--cq-ref-mobile) * 1cqw);
}

.fv__title {
	color: #FFF;
	flex-direction: column;
	font-size: calc(2380.6 / var(--cq-ref-mobile) * 1cqw);
	font-weight: var(--font-weight-bold);
	gap: calc(500 / var(--cq-ref-mobile) * 1cqw);
	line-height: 1.35259;
	margin-top: calc(2400 / var(--cq-ref-mobile) * 1cqw);
	text-align: right;
}

.fv__text-line {
	background-color: var(--main-color);
	line-height: 1.4;
	padding-left: calc(500 / var(--cq-ref-mobile) * 1cqw);
	padding-right: calc(1000 / var(--cq-ref-mobile) * 1cqw);
	white-space: nowrap;
}

.fv__text-line-02 {
	letter-spacing: 0.009em;
}

.fv__text-line-ls01 {
	letter-spacing: -0.1999915988em;
}

.fv__text-line-ls02 {
	letter-spacing: -0.3300008401em;
}

.fv__text-line-ls03 {
	letter-spacing: -0.0900193229em;
}

.fv__text-line-ls04 {
	letter-spacing: -0.1000168025em;
}

.fv__text-line-ls05 {
	letter-spacing: -0.079979837em;
}

.fv__text-line-ls06 {
	letter-spacing: 0.0499873981em;
}

.fv__text-line-ls07 {
	letter-spacing: -0.0699823574em;
}

.fv__text-line-ls08 {
	letter-spacing: 0.079979837em;
}

.scroll-down {
	animation: scrollDown 1.6s ease-in-out infinite;
	bottom: -4%;
	display: flex;
	flex-direction: column;
	gap: 0.6875rem;
	left: -1%;
	position: absolute;
	rotate: 270deg;
}

.scroll-down__text {
	color: var(--mh_red, #E60012);
	font-family: Inter;
	font-size: clamp(10px, 1300 / var(--cq-ref) * 1cqw, 15px);
	font-style: normal;
	font-weight: var(--font-weight-light);
	letter-spacing: 0.19em;
	line-height: normal;
	text-transform: uppercase;
}

.scroll-down__icon {
	width: clamp(100px, 13500 / var(--cq-ref) * 1cqw, 150px);
}

.scroll-down__icon-img {
	-o-object-fit: contain;
	height: auto;
	object-fit: contain;
}

.fv__swiper {
	z-index: 0;
}

.fv__swiper,
.fv__swiper .swiper-img,
.fv__swiper .swiper-img img {
	border-radius: 0 0 0 20px;
	height: auto;
	width: 100%;
}

.fv__swiper .swiper-img img {
	aspect-ratio: 375/440;
	height: auto;
	width: 100%;
}

.fv__swiper .swiper-slide.swiper-slide-active .swiper-img,
.fv__swiper .swiper-slide.swiper-slide-duplicate-active .swiper-img,
.fv__swiper .swiper-slide.swiper-slide-prev .swiper-img {
	animation: scale 8s linear 0s normal both;
	transform-origin: left bottom;
}

.inner {
	margin-left: auto;
	margin-right: auto;
	max-width: 500px;
	padding-left: 20px;
	padding-right: 20px;
	width: 100%;
}

.sub-inner {
	margin-left: auto;
	margin-right: auto;
	max-width: 500px;
	padding-left: 30px;
	padding-right: 30px;
	width: 100%;
}

.not-found {
	padding-bottom: 5rem;
	padding-top: 5rem;
}

.not-found__title {
	font-size: 1.25rem;
	font-weight: var(--font-weight-bold);
	text-align: center;
}

.not-found__text {
	font-size: 0.875rem;
	font-weight: var(--font-weight-regular);
	line-height: 1.8;
	margin-top: 1.25rem;
	text-align: center;
}

.not-found__button-wrap {
	margin-top: 2.5rem;
	text-align: center;
}

.not-found__button {
	background-color: var(--main-color);
	border: 1px solid var(--main-color);
	color: var(--white);
	font-size: 1rem;
	font-weight: var(--font-weight-bold);
	line-height: 1.5;
	padding: 0.625rem 3.125rem;
	transition: background-color var(--duration-base) ease, color var(--duration-base) ease;
}

.sub-fv.sub-fv--not-found .sub-fv__img-wrap {
	aspect-ratio: none;
	height: 100%;
	width: 100%;
}

.sub-fv.sub-fv--not-found .sub-fv__img-wrap .sub-fv__img {
	height: 100%;
	width: 100%;
}

.recruit-links {
	border-top: 1px solid #EAEAEA;
	margin-top: 6.25rem;
	padding-bottom: 6.25rem;
	padding-top: 6.25rem;
}

.recruit-links__list {
	display: grid;
	gap: 1.3125rem;
	grid-template-columns: 1fr;
}

.recruit-links__btn {
	background-color: var(--main-color);
	border: 1px solid var(--main-color);
	border-radius: 10px;
	display: block;
	padding-bottom: 1.0625rem;
	padding-left: 1.875rem;
	padding-right: 1.875rem;
	padding-top: 0.8125rem;
	position: relative;
	text-align: center;
	transition: background-color var(--duration-base) ease;
	width: 100%;
}

.recruit-links__btn::before {
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-size: contain;
	background-color: var(--white);
	content: "";
	left: 2.125rem;
	mask-repeat: no-repeat;
	mask-size: contain;
	position: absolute;
	top: 50%;
	transition: background-color var(--duration-base) ease;
	translate: 0 -50%;
}

.recruit-links__btn--01::before {
	-webkit-mask-image: url("../images/common/account_circle-icon.svg");
	height: 1.59375rem;
	mask-image: url("../images/common/account_circle-icon.svg");
	width: 1.59375rem;
}

.recruit-links__btn--02::before {
	-webkit-mask-image: url("../images/common/auto_stories-icon.svg");
	height: 1.5625rem;
	mask-image: url("../images/common/auto_stories-icon.svg");
	width: 1.7628125rem;
}

.recruit-links__btn--03::before {
	-webkit-mask-image: url("../images/common/instagram-icon.svg");
	height: 1.375rem;
	mask-image: url("../images/common/instagram-icon.svg");
	width: 1.375rem;
}

.recruit-links__btn::after {
	-webkit-mask-image: url("../images/common/link-open-icon.svg");
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-size: contain;
	aspect-ratio: 1/1;
	background-color: var(--white);
	content: "";
	mask-image: url("../images/common/link-open-icon.svg");
	mask-repeat: no-repeat;
	mask-size: contain;
	position: absolute;
	right: 1.0625rem;
	top: 50%;
	transition: background-color var(--duration-base) ease;
	translate: 0 -50%;
	width: 1rem;
}

.recruit-links__text {
	display: flex;
	flex-direction: column;
	gap: 0.375rem;
}

.recruit-links__category {
	color: var(--white);
	font-size: 0.8125rem;
	font-weight: var(--font-weight-bold);
	line-height: 1;
	transition: color var(--duration-base) ease;
}

.recruit-links__title {
	color: var(--white);
	font-size: 1rem;
	font-weight: var(--font-weight-bold);
	line-height: 1;
	transition: color var(--duration-base) ease;
}

.top-about {
	container-type: inline-size;
	margin-top: 3.75rem;
	position: relative;
}

.section-header.top-about__header {
	gap: 1rem;
}

.top-about__list {
	display: grid;
	gap: 5rem;
	grid-template-columns: 1fr;
	margin-top: 3.125rem;
}

.top-about__item--left .top-about__img,
.top-about__item--left .top-about__img-wrap {
	border-radius: 0 50px;
}

.top-about__img {
	-o-object-fit: cover;
	aspect-ratio: 510/500;
	height: auto;
	object-fit: cover;
}

.top-about__subtitle {
	font-size: 1.375rem;
	font-weight: var(--font-weight-bold);
	line-height: 1.72727;
	margin-top: 1.875rem;
}

.top-about__text {
	font-size: 0.875rem;
	font-weight: var(--font-weight-bold);
	line-height: 2.07143;
	margin-top: 1rem;
}

.top-about__btn {
	margin-top: 1.875rem;
}

.top-about__item--right .top-about__img,
.top-about__item--right .top-about__img-wrap {
	border-radius: 50px 0;
}

.top-message {
	container-type: inline-size;
	margin-top: 3.125rem;
}

.top-message__content {
	display: grid;
	grid-template-columns: 1fr;
}

.top-message__lead {
	font-size: 1.375rem;
	font-weight: var(--font-weight-bold);
	line-height: 1.72727;
}

.top-message__text {
	font-size: 14px;
	font-weight: var(--font-weight-bold);
	line-height: 2.07143;
	margin-top: 1.5625rem;
}

.top-message__img-wrap {
	border-radius: 50px 0 0 50px;
}

.top-message__img {
	-o-object-fit: contain;
	height: auto;
	object-fit: contain;
}

.top-news {
	container-type: inline-size;
	margin-top: 6.875rem;
}

.top-news__content {
	background-color: var(--bg-color);
	border-radius: 20px 0 0 20px;
	margin-right: calc(50% - 50cqw);
	padding: 1.25rem 1.875rem 1.875rem 1.875rem;
}

.top-news__title {
	color: var(--main-color2);
	font-family: var(--font-family-second);
	font-size: 1.0625rem;
	font-weight: var(--font-weight-regular);
	line-height: 1.52941;
	text-transform: uppercase;
}

.top-news__list {
	display: flex;
	flex-direction: column;
	gap: 0.9375rem;
}

.top-news__item {
	display: block;
}

.top-news__link {
	display: grid;
}

.top-news__date-wrap {
	align-items: center;
	display: flex;
	gap: 0.3125rem;
}

.top-news__date {
	color: var(--text-gray);
	font-family: var(--font-family-second);
	font-size: 0.6875rem;
	font-weight: var(--font-weight-regular);
	transition: color var(--duration-base) ease;
}

.top-news__icon {
	aspect-ratio: 1/1;
	background-color: var(--main-color);
	transition: transform var(--duration-base) ease;
	width: 4px;
}

.top-news__text {
	font-size: 0.75rem;
	font-weight: var(--font-weight-bold);
	transition: color var(--duration-base) ease;
}

.top-person {
	margin-top: 6.25rem;
}

.top-person__lead {
	font-size: 0.875rem;
	font-weight: var(--font-weight-bold);
	line-height: 2.07143;
	margin-top: 3.125rem;
}

.top-person__btn {
	margin-top: 1.875rem;
}

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

.top-person__item {
	transition: transform 1s var(--ease-smooth-bounce), opacity 1s var(--ease-smooth-bounce);
}

.top-person__link {
	display: block;
	position: relative;
}

.top-person__img-wrap {
	border-radius: 30px;
	overflow: hidden;
}

.top-person__img {
	-o-object-fit: cover;
	aspect-ratio: 280/400;
	border-radius: 30px;
	height: auto;
	object-fit: cover;
	transition: transform var(--duration-base) ease;
}

.top-person__info {
	background-color: var(--main-color);
	border: 1px solid var(--main-color);
	border-radius: 0 12.56px 0 0;
	bottom: 0;
	left: 0;
	max-width: 90%;
	min-width: 13.75rem;
	padding-bottom: 0.5rem;
	padding-left: 0.9375rem;
	padding-right: 0.9375rem;
	padding-top: 0.5rem;
	position: absolute;
	transition: background-color var(--duration-base) ease;
}

.top-person__info-inner {
	position: relative;
}

.top-person__info-inner::after {
	background: url("../images/common/btn-arrow.webp") no-repeat center center/contain;
	content: "";
	height: 0.5rem;
	position: absolute;
	right: -1.8125rem;
	top: 50%;
	transition: background var(--duration-base) ease, right var(--duration-base) ease;
	translate: 0 -50%;
	width: 1.5625rem;
}

.top-person__name {
	color: var(--white);
	font-size: 1.125rem;
	font-weight: var(--font-weight-bold);
	line-height: 1.22222;
	transition: color var(--duration-base) ease;
}

.top-person__position {
	color: var(--white);
	font-size: 0.625rem;
	font-weight: var(--font-weight-bold);
	line-height: 1.2;
	margin-top: 0.25rem;
	transition: color var(--duration-base) ease;
}

.top-recruit {
	margin-top: 6.25rem;
}

.top-recruit__list {
	display: grid;
	gap: 1.875rem;
	grid-template-columns: 1fr;
	margin-top: 3.0625rem;
}

.top-recruit__link {
	display: block;
	position: relative;
}

.top-recruit__img-wrap {
	border-radius: 0 0 30px 0;
	overflow: hidden;
	position: relative;
}

.top-recruit__img-wrap::after {
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 60%, var(--grad-color, #000) 100%);
	border-radius: inherit;
	content: "";
	height: 100%;
	left: 0;
	pointer-events: none;
	position: absolute;
	top: 0;
	width: 100%;
}

.top-recruit__img {
	-o-object-fit: cover;
	aspect-ratio: 335/400;
	border-radius: inherit;
	height: auto;
	object-fit: cover;
	transition: transform var(--duration-base) ease, filter var(--duration-base) ease;
}

.top-recruit__text {
	bottom: 1.25rem;
	color: var(--white);
	font-size: 1.375rem;
	font-weight: var(--font-weight-bold);
	left: 1.25rem;
	pointer-events: none;
	position: absolute;
	text-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
}

.top-recruit__text::after {
	background: url("../images/common/btn-arrow-red.webp") no-repeat center center/contain;
	content: "";
	height: 0.5rem;
	position: absolute;
	right: -2.5rem;
	top: 50%;
	transition: right var(--duration-base) ease;
	translate: 0 -50%;
	width: 1.75rem;
}

.about-nav {
	padding-bottom: 3.125rem;
}

.about-nav__inner {
	margin-left: auto;
	margin-right: auto;
	max-width: 450px;
}

.about-nav__list {
	background: var(--white);
	box-shadow: 0 1px 6px 0 #D3D3D3;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	padding: 1.875rem 1.25rem;
}

.about-nav__item {
	display: block;
}

.about-nav__link {
	align-items: center;
	display: grid;
	gap: 0.3125rem;
	grid-template-columns: max-content 1fr;
}

.about-nav__link-arrow {
	aspect-ratio: 1/1;
	background-color: var(--main-color);
	border-radius: calc(infinity * 1px);
	overflow: hidden;
	position: relative;
	width: 0.975rem;
}

.about-nav__link-arrow::before {
	border-right: 1px solid var(--white);
	border-top: 1px solid var(--white);
	content: "";
	height: 0.25rem;
	left: 50%;
	position: absolute;
	top: 48%;
	transform: rotate(135deg);
	transform-origin: center;
	translate: -50% -50%;
	width: 0.25rem;
}

.about-nav__link-text {
	font-size: 0.75rem;
	font-weight: var(--font-weight-bold);
	line-height: 1.03774;
	transition: color var(--duration-base) ease;
}

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

.brand__lead {
	font-size: 1rem;
	font-weight: var(--font-weight-bold);
	line-height: 2;
	margin-top: 3.125rem;
}

.brand__main {
	margin-top: 3.125rem;
}

.brand__link {
	display: block;
	transition: opacity var(--duration-long) ease;
}

.brand__main-img-wrap {
	overflow: hidden;
}

.brand__main-img {
	-o-object-fit: cover;
	aspect-ratio: 319/180;
	height: auto;
	object-fit: cover;
	transition: transform var(--duration-long) ease;
}

.brand__logo-wrap {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	margin-top: 1.875rem;
}

.brand__logo {
	-o-object-fit: contain;
	height: auto;
	object-fit: contain;
}

.brand__logo--main {
	width: 10.7275rem;
}

.brand__tag {
	font-family: var(--font-family-fourth);
	font-size: 0.75rem;
	font-weight: var(--font-weight-regular);
	letter-spacing: 0.1em;
	line-height: 1;
}

.brand__list {
	display: grid;
	gap: 2.5rem;
	grid-template-columns: 1fr;
	margin-top: 2.5rem;
}

.brand__item--01 .brand__logo,
.brand__item--02 .brand__logo,
.brand__item--03 .brand__logo {
	width: 10.7275rem;
}

.brand__item--04 .brand__logo {
	width: 11.25rem;
}

.brand__item--05 .brand__logo {
	width: 10.625rem;
}

.brand__item--06 .brand__logo {
	width: 11.1875rem;
}

.brand__img-wrap {
	overflow: hidden;
}

.brand__img {
	-o-object-fit: cover;
	aspect-ratio: 319/180;
	height: auto;
	object-fit: cover;
	transition: transform var(--duration-long) ease;
}

.business {
	background-color: var(--bg-color);
	container-type: inline-size;
	padding-bottom: 5rem;
	padding-top: 5rem;
}

.business__lead {
	font-size: 0.875rem;
	font-weight: var(--font-weight-bold);
	line-height: 2.07143;
	margin-top: 1.25rem;
	margin-top: 3.125rem;
}

.business__list {
	display: grid;
	gap: 2.5rem;
	grid-template-columns: 1fr;
	margin-top: 3.125rem;
}

.business__link {
	display: block;
	position: relative;
}

.business__link:hover .business__img {
	filter: brightness(1.1);
	transform: scale(1.05);
}

.business__img-wrap {
	border-radius: 0 0 50px 0;
	overflow: hidden;
	position: relative;
}

.business__img-wrap::after {
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 60%, var(--grad-color, #000) 100%);
	border-radius: inherit;
	content: "";
	height: 100%;
	left: 0;
	pointer-events: none;
	position: absolute;
	top: 0;
	width: 100%;
}

.business__img {
	-o-object-fit: cover;
	aspect-ratio: 315/170;
	border-radius: 0 0 50px 0;
	height: auto;
	object-fit: cover;
	transition: transform var(--duration-base) ease, filter var(--duration-base) ease;
}

.business__subtitle {
	bottom: 1.25rem;
	color: var(--white);
	font-size: 1.125rem;
	font-weight: var(--font-weight-bold);
	left: 1.25rem;
	pointer-events: none;
	position: absolute;
	text-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
}

.business__subtitle::after {
	background: url("../images/common/btn-arrow-red.webp") no-repeat center center/contain;
	content: "";
	height: 0.5rem;
	position: absolute;
	right: -2.5rem;
	top: 50%;
	transition: right var(--duration-base) ease;
	translate: 0 -50%;
	width: 1.75rem;
}

.business__text {
	font-size: 0.875rem;
	font-weight: var(--font-weight-bold);
	line-height: 2.07143;
	margin-top: 1.25rem;
}

.company {
	background-color: var(--bg-color);
	container-type: inline-size;
	margin-bottom: 5rem;
	padding-bottom: 5rem;
	padding-top: 5rem;
}

.company__list {
	display: flex;
	flex-direction: column;
	margin-top: 3.125rem;
}

.company__item {
	border-bottom: 1px solid var(--line-color);
	display: grid;
	gap: 0.3125rem;
	grid-template-columns: 1fr;
	padding-bottom: 1.875rem;
	padding-top: 1.875rem;
}

.company__item:first-child {
	border-top: 1px solid var(--line-color);
}

.company__term {
	font-size: 0.875rem;
	font-weight: var(--font-weight-bold);
	line-height: 2.07143;
}

.company__desc {
	font-size: 0.8125rem;
	font-weight: var(--font-weight-bold);
	line-height: 1.53846;
}

.company__date {
	display: inline-block;
}

.company__date--long {
	margin-left: 0.625rem;
}

.concept {
	container-type: inline-size;
}

.concept__text-wrap {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.concept__subtitle {
	font-size: 1.25rem;
	font-weight: var(--font-weight-bold);
	line-height: 1.55;
	text-indent: -0.5em;
}

.concept__text {
	font-size: 0.875rem;
	font-weight: var(--font-weight-bold);
	line-height: 2.07143;
}

.concept__main-img-wrap {
	border-radius: 50px 0;
}

.concept__img {
	-o-object-fit: cover;
	height: auto;
	object-fit: cover;
}

.concept__img--main {
	aspect-ratio: 375/282;
	border-radius: 50px 0;
}

.concept__content {
	display: grid;
	grid-template-areas: "message" "images";
	margin-top: 3.125rem;
}

.concept__images {
	grid-area: images;
	position: relative;
}

.concept__content-img-wrap {
	opacity: 0;
	transition: opacity 1s ease-in-out;
}

.concept__img-wrap--sub01 {
	border-radius: 50px 0;
	position: absolute;
	right: 10%;
	top: -5%;
	width: 40.647%;
	z-index: 1;
}

.concept__img--sub01 {
	aspect-ratio: 152.37/114.49;
	border-radius: 50px 0;
}

.concept__img-wrap--sub02 {
	border-radius: 0 50px;
	position: relative;
	top: 50px;
	transition-delay: 0.3s;
	width: 61.746%;
	z-index: 0;
}

.concept__img--sub02 {
	aspect-ratio: 231.58/174.02;
	border-radius: 0 50px;
}

.concept__img-wrap--sub03 {
	border-radius: 50px 0;
	margin-left: auto;
	position: relative;
	transition-delay: 0.6s;
	width: 51.619%;
}

.concept__img--sub03 {
	aspect-ratio: 193.65/145.51;
	border-radius: 50px 0;
}

.concept__message {
	display: flex;
	flex-direction: column;
	gap: 1.875rem;
	grid-area: message;
}

.concept__paragraph {
	font-size: 0.875rem;
	font-weight: var(--font-weight-bold);
	line-height: 2.07143;
}

.concept__images.is-active .concept__img-wrap--sub01 {
	opacity: 1;
}

.concept__images.is-active .concept__img-wrap--sub02 {
	opacity: 1;
}

.concept__images.is-active .concept__img-wrap--sub03 {
	opacity: 1;
}

.craftsmanship {
	container-type: inline-size;
	margin-top: 5rem;
}

.craftsmanship__subtitle {
	font-size: 1.25rem;
	font-weight: var(--font-weight-bold);
	line-height: 1.55;
	margin-top: 3.125rem;
}

.craftsmanship__description {
	font-size: 0.875rem;
	font-weight: var(--font-weight-bold);
	line-height: 2.07143;
	margin-top: 1.25rem;
}

.craftsmanship__safety {
	background: url("../images/about/craftsmanship-bg-sp.webp") no-repeat center center/cover;
	margin-top: 3.125rem;
	padding: 3.125rem 1.875rem;
}

.craftsmanship__safety-title {
	font-size: 1.25rem;
	font-weight: var(--font-weight-bold);
	line-height: 1.55;
	margin-left: auto;
	margin-right: auto;
	width: -moz-fit-content;
	width: fit-content;
}

.craftsmanship__safety-description {
	font-size: 0.875rem;
	font-weight: var(--font-weight-bold);
	line-height: 2.07143;
	margin-left: auto;
	margin-right: auto;
	margin-top: 0.625rem;
	width: -moz-fit-content;
	width: fit-content;
}

.craftsmanship__card-list {
	display: grid;
	gap: 2.5rem;
	grid-template-columns: 1fr;
	margin-top: 3.125rem;
}

.craftsmanship__card {
	background: var(--white);
}

.craftsmanship__card--01 {
	border-radius: 30px 0 0 0;
}

.craftsmanship__card--02 {
	border-radius: 0 30px 0 0;
}

.craftsmanship__card-img {
	-o-object-fit: cover;
	aspect-ratio: 315/207.61;
	height: auto;
	object-fit: cover;
}

.craftsmanship__card-caption {
	font-size: 0.875rem;
	font-style: normal;
	font-weight: var(--font-weight-bold);
	line-height: 2.07143;
	padding: 1.25rem;
}

.craftsmanship__videos {
	border: 8px solid var(--bg-color);
	margin-top: 3.125rem;
	padding-bottom: 2.625rem;
	padding-top: 2.625rem;
}

.craftsmanship__videos-title {
	font-size: 1.25rem;
	font-style: normal;
	font-weight: var(--font-weight-bold);
	line-height: 1.55;
	text-align: center;
}

.craftsmanship__videos-description {
	font-size: 0.875rem;
	font-style: normal;
	font-weight: var(--font-weight-bold);
	line-height: 2.07143;
	margin-top: 0.625rem;
	text-align: center;
}

.craftsmanship__video-list {
	display: grid;
	gap: 1.25rem;
	grid-template-columns: 1fr;
	margin-top: 1.875rem;
}

.craftsmanship__video-item {
	align-items: center;
	border-bottom: 1px solid var(--line-color);
	display: grid;
	grid-template-columns: 107fr 208fr;
	padding-bottom: 1.25rem;
}

.craftsmanship__video-text {
	padding-left: 1.6875rem;
}

.craftsmanship__video-subtitle {
	font-size: 0.75rem;
	font-weight: var(--font-weight-bold);
	line-height: 1.81;
}

.craftsmanship__video-title {
	font-size: 1rem;
	font-weight: var(--font-weight-bold);
	line-height: 1.81;
}

.youtube-thumbnail {
	border: none;
	cursor: pointer;
	position: relative;
	transition: filter var(--duration-base) ease;
	width: 100%;
}

.youtube-thumbnail::before {
	aspect-ratio: 26.05/18.61;
	background: url("../images/common/icn_youtube_play_on.svg") no-repeat center center/cover;
	content: "";
	left: 50%;
	position: absolute;
	top: 50%;
	translate: -50% -50%;
	width: 1.62825rem;
}

.youtube-thumbnail-img {
	-o-object-fit: cover;
	aspect-ratio: 107/69.8;
	height: auto;
	object-fit: cover;
	width: 100%;
}

.youtube-modal {
	align-items: center;
	background: rgba(0, 0, 0, 0.8);
	display: flex;
	height: 100%;
	justify-content: center;
	left: 0;
	opacity: 0;
	position: fixed;
	top: 0;
	transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
	visibility: hidden;
	width: 100%;
	z-index: var(--z-index-modal);
}

.youtube-modal.show {
	opacity: 1;
	visibility: visible;
}

.youtube-modal__content {
	aspect-ratio: 16/9;
	margin: 5% auto;
	max-width: 1300px;
	position: relative;
	width: 80%;
}

.youtube-modal__content iframe {
	height: 100%;
	width: 100%;
}

.youtube-modal__close {
	background: none;
	border: none;
	color: white;
	cursor: pointer;
	font-size: clamp(30px, 15.1162790698px + 1.9379844961vw, 50px);
	position: absolute;
	right: -50px;
	top: -50px;
}

.data-view {
	container-type: inline-size;
	margin-top: 5rem;
	padding-bottom: 5rem;
}

.data-view__list {
	display: grid;
	gap: 0.625rem;
	grid-template-columns: repeat(2, 1fr);
	margin-top: 3.125rem;
}

.data-view__item {
	align-items: center;
	background-color: var(--bg-color);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

.data-view__item--01 .data-view__icon-wrap {
	width: 4.6875rem;
}

.data-view__body {
	align-items: center;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

.data-view__item--02 .data-view__label {
	margin-top: 0.41875rem;
}

.data-view__item--02 .data-view__icon-wrap {
	width: 3.4785rem;
}

.data-view__item--03 .data-view__label {
	margin-top: 0.4rem;
}

.data-view__item--03 .data-view__icon-wrap {
	width: 3.532rem;
}

.data-view__item--04 .data-view__label {
	margin-top: 0.6025rem;
}

.data-view__item--04 .data-view__icon-wrap {
	width: 2.996875rem;
}

.data-view__item--05 .data-view__label {
	margin-top: 0.46875rem;
}

.data-view__item--05 .data-view__icon-wrap {
	width: 3.6925625rem;
}

.data-view__item--06 .data-view__label {
	margin-top: 0.41875rem;
}

.data-view__item--06 .data-view__icon-wrap {
	width: 3.5355rem;
}

.data-view__item--07 .data-view__label {
	margin-top: 0.4375rem;
}

.data-view__item--07 .data-view__icon-wrap {
	width: 3.531875rem;
}

.data-view__item--08 .data-view__icon-wrap {
	width: 4.28125rem;
}

.data-view__item--09 .data-view__label {
	margin-top: 0.625rem;
}

.data-view__item--09 .data-view__icon-wrap {
	width: 3.28125rem;
}

.data-view__item--05,
.data-view__item--06,
.data-view__item--07,
.data-view__item--08,
.data-view__item--09 {
	padding: 0.625rem 0.625rem 1.453125rem 0.625rem;
}

.data-view__icon {
	-o-object-fit: contain;
	aspect-ratio: 1;
	height: auto;
	object-fit: contain;
}

.data-view__label {
	font-size: 0.75rem;
	font-weight: var(--font-weight-bold);
	line-height: 1.8;
	text-align: center;
}

.data-view__value {
	font-size: 0.6421875rem;
	font-weight: var(--font-weight-bold);
	line-height: 1;
}

.data-view__num {
	color: var(--main-color);
	font-size: 1.7125rem;
	font-weight: var(--font-weight-bold);
	line-height: 1;
}

.data-view__date {
	display: inline-block;
	font-size: 0.3210625rem;
	font-weight: var(--font-weight-bold);
	line-height: 1;
	margin-top: 0.640625rem;
}

.data-view__num-separator {
	letter-spacing: -0.03em;
	text-indent: -0.1em;
}

:root:lang(zh) .data-view__num-separator {
	letter-spacing: -0.7em;
}

.global-expansion {
	container-type: inline-size;
	margin-top: 5rem;
}

.global-expansion__date {
	display: inline-block;
	font-size: 0.875rem;
	font-weight: var(--font-weight-bold);
	margin-top: 0.70625rem;
	padding-left: 0.9375rem;
	position: relative;
}

.global-expansion__date::before {
	aspect-ratio: 1;
	background-color: var(--main-color);
	border-radius: calc(infinity * 1px);
	content: "";
	left: 0;
	position: absolute;
	top: 50%;
	translate: 0 -50%;
	width: 0.5625rem;
}

.global-expansion__content-list {
	display: flex;
	flex-direction: column;
	gap: 3.125rem;
	margin-top: 2.4375rem;
}

.global-expansion__content {
	display: grid;
	grid-template-areas: "img" "text";
}

.global-expansion__img-wrap {
	grid-area: img;
}

.global-expansion__img-wrap--content01 {
	border-radius: 30px 0 0 0;
}

.global-expansion__img-wrap--content02 {
	border-radius: 0 0 30px 0;
}

.global-expansion__content-img {
	-o-object-fit: cover;
	aspect-ratio: 345/180;
	height: auto;
	object-fit: cover;
}

.global-expansion__content-img--01 {
	border-radius: 30px 0 0 0;
}

.global-expansion__content-img--02 {
	border-radius: 0 0 30px 0;
}

.global-expansion__text {
	font-size: 0.875rem;
	font-weight: var(--font-weight-bold);
	grid-area: text;
	line-height: 2.07;
}

.global-expansion__gallery {
	display: grid;
	gap: 0.125rem;
	grid-template-columns: repeat(3, 1fr);
	margin-top: 3.125rem;
}

.global-expansion__gallery.is-active .global-expansion__gallery-wrap {
	opacity: 1;
}

.global-expansion__gallery-wrap {
	opacity: 0;
	transition: opacity 1.2s ease-in-out;
}

.global-expansion__gallery-wrap--02 {
	transition-delay: 0.2s;
}

.global-expansion__gallery-wrap--03 {
	transition-delay: 0.4s;
}

.global-expansion__gallery-img {
	-o-object-fit: cover;
	aspect-ratio: 103.67/99;
	height: auto;
	object-fit: cover;
}

.internship {
	container-type: inline-size;
	margin-bottom: 6.25rem;
	margin-top: 4.125rem;
}

.internship__list {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	margin-top: 2.5rem;
}

.internship__link {
	display: block;
	transition: opacity var(--duration-base) ease;
}

.internship__img-wrap {
	width: 100%;
}

.internship__img {
	height: auto;
	width: 100%;
}

.internship__other {
	margin-top: 2.5rem;
}

.internship__other-heading {
	align-items: center;
	display: flex;
	font-size: 0.875rem;
	font-weight: var(--font-weight-bold);
	gap: 0.25rem;
	line-height: 1.57143;
}

.internship__other-heading::before {
	background-color: var(--main-color);
	content: "";
	display: inline-block;
	height: 1px;
	width: 10px;
}

.internship__other-list {
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
	margin-top: 1.25rem;
}

.internship__other-item {
	border-radius: 10px;
	display: block;
}

.internship__other-link {
	align-items: center;
	background: var(--bg-color);
	border-radius: 10px;
	display: flex;
	gap: 0.625rem;
	padding: 0.9375rem 0.625rem;
	width: 100%;
}

.internship__other-text {
	font-size: 0.875rem;
	font-weight: var(--font-weight-bold);
	transition: color var(--duration-base) ease;
}

.internship__arrow {
	aspect-ratio: 1/1;
	background-color: var(--main-color);
	border-radius: calc(infinity * 1px);
	flex-shrink: 0;
	overflow: hidden;
	position: relative;
	width: 1.25rem;
}

.internship__arrow::before {
	border-right: 1px solid var(--white);
	border-top: 1px solid var(--white);
	content: "";
	height: 0.28125rem;
	left: 49%;
	position: absolute;
	top: 50%;
	transform: rotate(45deg);
	transform-origin: center;
	translate: -50% -50%;
	width: 0.28125rem;
}

.internship__past {
	margin-top: 5rem;
}

.internship__past-heading {
	align-items: center;
	display: flex;
	font-size: 0.875rem;
	font-weight: var(--font-weight-bold);
	gap: 0.25rem;
	line-height: 1.57143;
}

.internship__past-heading::before {
	background-color: var(--main-color);
	content: "";
	display: inline-block;
	height: 1px;
	width: 10px;
}

.internship__year {
	margin-top: 1.875rem;
}

.internship__year-title {
	font-feature-settings: "halt" on, "kern" off;
	font-family: var(--font-family-fourth);
	font-kerning: none;
	font-size: 0.9375rem;
	font-weight: var(--font-weight-bold);
	letter-spacing: 0.05em;
}

.internship__year-list {
	display: flex;
	flex-direction: column;
	margin-top: 1.25rem;
}

.internship__year-item:first-child {
	border-top: 1px solid var(--line-color);
}

.internship__year-link {
	align-items: center;
	border-bottom: 1px solid var(--line-color);
	display: flex;
	gap: 0.8125rem;
	padding-bottom: 1.25rem;
	padding-top: 1.25rem;
}

.internship__year-text {
	font-size: 0.875rem;
	font-weight: var(--font-weight-bold);
	line-height: 2.07143;
	transition: color var(--duration-base) ease;
}

.job-detail {
	container-type: inline-size;
	margin-top: 5rem;
}

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

.job-detail__header {
	align-items: flex-end;
	display: flex;
	gap: 1.25rem;
	margin-right: calc(50% - 50cqw);
	padding-top: 1.5625rem;
	position: relative;
}

.job-detail__header::before {
	background: linear-gradient(to right, var(--main-color) 0px, var(--main-color) 100px, var(--line-color) 100px, var(--line-color) 100%);
	content: "";
	display: inline-block;
	height: 1px;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.job-detail__category {
	font-size: 1.375rem;
	font-style: normal;
	font-weight: var(--font-weight-bold);
	line-height: 1.40909;
}

.job-detail__title {
	align-items: center;
	display: flex;
	font-size: 0.875rem;
	font-weight: var(--font-weight-bold);
	gap: 0.25rem;
	line-height: 1.57143;
}

.job-detail__title::before {
	background-color: var(--main-color);
	content: "";
	display: inline-block;
	height: 1px;
	width: 10px;
}

.job-detail__lead {
	font-size: 0.875rem;
	font-style: normal;
	font-weight: var(--font-weight-medium);
	line-height: 2.07143;
	margin-top: 2.5rem;
}

.job-detail__interview {
	background: var(--bg-color);
	display: grid;
	margin-top: 2.5rem;
	padding: 3.125rem 1.875rem;
}

.job-detail__name {
	font-size: 1.25rem;
	font-weight: var(--font-weight-bold);
	line-height: 1.55;
}

.job-detail__info {
	font-size: 0.875rem;
	font-weight: var(--font-weight-medium);
	line-height: 2.07143;
}

.job-detail__text {
	font-size: 0.875rem;
	font-weight: var(--font-weight-medium);
	line-height: 2.07143;
	margin-top: 1.25rem;
}

.job-detail__btn {
	margin-top: 1.5625rem;
}

.job-detail__img-wrap {
	border-radius: 15px;
}

.job-detail__img {
	-o-object-fit: contain;
	aspect-ratio: 208/314;
	border-radius: 15px;
	height: auto;
	object-fit: contain;
}

.job-nav {
	container-type: inline-size;
	margin-top: 5rem;
}

.job-nav__content {
	background: url("../images/job/job-nav-bg-sp.webp") no-repeat center center/cover;
	padding-bottom: 3.125rem;
	padding-top: 3.125rem;
}

.job-nav__title {
	font-size: 1.25rem;
	font-weight: var(--font-weight-bold);
	line-height: 1.55;
	text-align: center;
}

.job-nav__lead {
	font-size: 0.875rem;
	font-weight: var(--font-weight-medium);
	line-height: 2.07143;
	margin-top: 0.625rem;
}

.job-nav__list-wrap {
	background-color: var(--white);
	border-radius: 20px;
	margin-top: 1.25rem;
	padding: 0.625rem 1.75rem;
}

.job-nav__list {
	background-color: var(--white);
	border-radius: 20px;
	display: flex;
}

.job-nav__link {
	align-items: center;
	display: grid;
	gap: 0.9375rem;
	grid-template-columns: max-content 1fr;
}

.job-nav__link-arrow {
	aspect-ratio: 1/1;
	background-color: var(--main-color);
	border-radius: calc(infinity * 1px);
	overflow: hidden;
	position: relative;
	width: 1.5625rem;
}

.job-nav__link-arrow::before {
	border-right: 1px solid var(--white);
	border-top: 1px solid var(--white);
	content: "";
	height: 0.3125rem;
	left: 50%;
	position: absolute;
	top: 48%;
	transform: rotate(135deg);
	transform-origin: center;
	translate: -50% -50%;
	width: 0.3125rem;
}

.job-nav__link-text {
	font-size: 1rem;
	font-weight: var(--font-weight-bold);
	line-height: 1.25;
	transition: color var(--duration-base) ease;
}

.job {
	container-type: inline-size;
	margin-top: 4.125rem;
}

.job__lead {
	font-size: 0.875rem;
	font-weight: var(--font-weight-medium);
	line-height: 2.07143;
	margin-top: 3.125rem;
}

.job__list {
	background-color: var(--bg-color);
	display: grid;
	gap: 0.625rem;
	grid-template-columns: 1fr;
	margin-left: calc(50% - 50cqi);
	margin-right: calc(50% - 50cqi);
	margin-top: 3.125rem;
	padding-bottom: 3.125rem;
	padding-left: calc(50cqi - 50%);
	padding-right: calc(50cqi - 50%);
	padding-top: 3.125rem;
}

.job__item {
	background-color: var(--white);
	border: 1px solid var(--main-color);
	display: flex;
	flex-direction: column;
	height: 100%;
}

.job__item-header {
	align-items: center;
	background-color: var(--main-color);
	display: flex;
	flex-direction: column;
	gap: 0.1875rem;
	padding-bottom: 0.828125rem;
	padding-top: 0.796875rem;
}

.job__category {
	color: var(--white);
	font-family: var(--font-family-second);
	font-size: 0.75rem;
	font-weight: var(--font-weight-light);
	letter-spacing: 0.1em;
	line-height: 1;
	text-align: center;
}

.job__subtitle {
	color: var(--white);
	font-size: 0.875rem;
	font-weight: var(--font-weight-bold);
	line-height: 1;
	text-align: center;
}

.job__role-list {
	height: 100%;
	padding-left: 1.25rem;
	padding-right: 1.25rem;
}

.job__role {
	color: var(--main-color);
	display: flex;
	flex-direction: column;
	font-size: 0.8125rem;
	font-weight: var(--font-weight-bold);
	justify-content: center;
	line-height: 1.53846;
	padding-bottom: 0.625rem;
	padding-top: 0.625rem;
	text-align: center;
}

.job__role:not(:last-child) {
	border-bottom: 1px solid var(--main-color);
}

.job__role-sub {
	color: var(--main-color);
	font-size: 0.625rem;
	font-weight: var(--font-weight-bold);
	line-height: 1.1;
	text-align: center;
}

.training {
	background-color: var(--bg-color);
	container-type: inline-size;
	margin-bottom: 5rem;
	margin-top: 5rem;
	padding-bottom: 5rem;
	padding-top: 5rem;
}

.training__list {
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
	margin-top: 3.125rem;
}

.training__item {
	background-color: var(--white);
	padding-bottom: 1.875rem;
	padding-top: 1.875rem;
}

.training__body {
	display: grid;
	gap: 3.125rem;
	grid-template-columns: 610fr 300fr;
	margin-top: 1.25rem;
}

.training__item-title {
	font-size: 1.25rem;
	font-weight: var(--font-weight-bold);
	line-height: 1.55;
}

.training__item-text {
	font-size: 0.8125rem;
	font-weight: var(--font-weight-bold);
	line-height: 1.53846;
}

.training__img {
	-o-object-fit: contain;
	aspect-ratio: 315/200;
	height: auto;
	object-fit: contain;
}

.employees {
	container-type: inline-size;
	margin-top: 4.125rem;
}

.employees__filters {
	display: flex;
	flex-wrap: wrap;
	gap: 0.625rem;
	margin-top: 3.125rem;
}

.employees__filter {
	background-color: var(--bg-color);
	border: 1px solid var(--mh_goldlabel);
	border-radius: calc(infinity * 1px);
	cursor: pointer;
	font-size: 0.875rem;
	font-weight: var(--font-weight-bold);
	line-height: 2.07143;
	padding-left: 1.1875rem;
	padding-right: 1.1875rem;
	transition: background-color var(--duration-base) ease, color var(--duration-base) ease, border-color var(--duration-base) ease;
}

.employees__filter.mixitup-control-active {
	background: #d00;
	border-color: #d00;
	color: #fff;
}

.employees__list {
	display: grid;
	gap: 0.9375rem;
	grid-template-columns: repeat(2, 1fr);
	margin-top: 3.125rem;
}

.employees__link {
	display: block;
	position: relative;
}

.employees__img-wrap {
	border-radius: 14.181px;
	overflow: hidden;
}

.employees__img {
	-o-object-fit: cover;
	aspect-ratio: 149.76/227;
	border-radius: 14.181px;
	height: auto;
	object-fit: cover;
	transition: transform var(--duration-base) ease;
	will-change: transform;
}

.employees__info {
	background-color: var(--main-color);
	border: 1px solid var(--main-color);
	border-radius: 0 12.56px 0 0;
	bottom: 0;
	left: 0;
	max-width: 90%;
	min-width: 7.79975rem;
	padding-bottom: 0.3125rem;
	padding-left: 0.5rem;
	padding-right: 0.5rem;
	padding-top: 0.3125rem;
	position: absolute;
	transition: background-color var(--duration-base) ease;
}

.employees__info-inner {
	position: relative;
}

.employees__info-inner::after {
	background: url("../images/common/btn-arrow-small.svg") no-repeat center center/contain;
	content: "";
	height: 0.5rem;
	position: absolute;
	right: -1.25rem;
	top: 50%;
	transition: background var(--duration-base) ease, right var(--duration-base) ease;
	translate: 0 -50%;
	width: 1.25rem;
}

.employees__name {
	color: var(--white);
	font-size: 0.75rem;
	font-weight: var(--font-weight-bold);
	line-height: 1;
	transition: color var(--duration-base) ease;
}

.employees__position {
	color: var(--white);
	font-size: 0.375rem;
	font-weight: var(--font-weight-bold);
	line-height: 1.2;
	margin-top: 0.1875rem;
	transition: color var(--duration-base) ease;
}

.employees__coming-soon {
	align-items: center;
	background-color: var(--bg-color);
	display: flex;
	justify-content: center;
	margin-bottom: 6.25rem;
	margin-top: 3.125rem;
	padding-bottom: 3.75rem;
	padding-top: 3.75rem;
}

.employees__coming-soon-text {
	font-size: 0.875rem;
	font-weight: var(--font-weight-bold);
	line-height: 1.7;
	text-align: center;
}

.interviews {
	background-color: var(--bg-color);
	margin-bottom: 5rem;
	padding-bottom: 5rem;
	padding-top: 5rem;
}

.interviews__list {
	display: grid;
	gap: 0.9375rem;
	grid-template-columns: repeat(2, 1fr);
	margin-top: 3.125rem;
}

.interviews__link {
	display: block;
	position: relative;
}

.interviews__img-wrap {
	border-radius: 14.181px;
	overflow: hidden;
}

.interviews__img {
	-o-object-fit: cover;
	aspect-ratio: 149.76/227;
	border-radius: 14.181px;
	height: auto;
	object-fit: cover;
	transition: transform var(--duration-base) ease;
	will-change: transform;
}

.interviews__info {
	background-color: var(--main-color);
	border: 1px solid var(--main-color);
	border-radius: 0 12.56px 0 0;
	bottom: 0;
	left: 0;
	max-width: 90%;
	min-width: 7.79975rem;
	padding-bottom: 0.3125rem;
	padding-left: 0.5rem;
	padding-right: 0.5rem;
	padding-top: 0.3125rem;
	position: absolute;
	transition: background-color var(--duration-base) ease;
}

.interviews__info-inner {
	position: relative;
}

.interviews__info-inner::after {
	background: url("../images/common/btn-arrow-small.svg") no-repeat center center/contain;
	content: "";
	height: 0.5rem;
	position: absolute;
	right: -1.25rem;
	top: 50%;
	transition: background var(--duration-base) ease, right var(--duration-base) ease;
	translate: 0 -50%;
	width: 1.25rem;
}

.interviews__name {
	color: var(--white);
	font-size: 0.75rem;
	font-weight: var(--font-weight-bold);
	line-height: 1;
	transition: color var(--duration-base) ease;
}

.interviews__position {
	color: var(--white);
	font-size: 0.375rem;
	font-weight: var(--font-weight-bold);
	line-height: 1.2;
	margin-top: 0.1875rem;
	transition: color var(--duration-base) ease;
}

.person-detail {
	container-type: inline-size;
	margin-top: 4.125rem;
	padding-bottom: 5rem;
}

.person-detail__intro {
	display: grid;
	grid-template-columns: 1fr;
}

.person-detail__category {
	font-size: 1.375rem;
	font-weight: var(--font-weight-bold);
	line-height: 1.40909;
	padding-top: 1.5625rem;
	position: relative;
}

.person-detail__category::before {
	background: linear-gradient(to right, var(--main-color) 0px, var(--main-color) 100px, var(--line-color) 100px, var(--line-color) 100%);
	content: "";
	display: inline-block;
	height: 1px;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.person-detail__title {
	font-size: 1.25rem;
	font-weight: var(--font-weight-bold);
	line-height: 1.55;
	margin-top: 3.125rem;
}

.person-detail__meta {
	font-size: 0.8125rem;
	font-weight: var(--font-weight-bold);
	line-height: 1.53846;
	margin-top: 1.25rem;
}

.person-detail__sec01-img-wrap {
	border-radius: 50px 0;
}

.person-detail__img {
	-o-object-fit: cover;
	border-radius: 50px 0;
	height: auto;
	object-fit: cover;
}

.person-detail__sec01 .person-detail__img {
	aspect-ratio: 375/281.79;
}

.person-detail__sec01-body {
	margin-top: 5rem;
}

.person-detail__heading {
	font-size: 1.25rem;
	font-style: normal;
	font-weight: var(--font-weight-bold);
	line-height: 1.55;
	padding-top: 1.25rem;
	position: relative;
}

.person-detail__heading::before {
	background-color: var(--main-color);
	content: "";
	display: inline-block;
	height: 1px;
	left: 0;
	position: absolute;
	top: 0;
	width: 1.875rem;
}

.person-detail__sec01 .person-detail__text {
	margin-top: 1.875rem;
}

.person-detail__text {
	font-size: 0.875rem;
	font-weight: var(--font-weight-medium);
	line-height: 2.07;
}

.person-detail__text-line {
	color: var(--main-color);
}

.person-detail__text-mt {
	margin-top: 2.1875rem;
}

.person-detail__sec02 {
	margin-top: 5rem;
}

.person-detail__sec02 .person-detail__img {
	aspect-ratio: 315/236.7;
}

.person-detail__sec02-body {
	display: grid;
	grid-template-columns: 1fr;
	margin-top: 1.875rem;
}

.person-detail__sec02-img-wrap {
	border-radius: 50px 0;
}

.person-detail__sec02 .person-detail__text.person-detail__text--second {
	margin-top: rem_(30);
}

.person-detail__sec03 {
	margin-top: 5rem;
}

.person-detail__sec03-body {
	display: grid;
	grid-template-columns: 1fr;
	margin-top: 3.125rem;
}

.person-detail__sec03-img-wrap {
	border-radius: 50px 0;
}

.person-detail__sec03 .person-detail__img {
	aspect-ratio: 315/236.89;
}

.person-detail__note {
	font-size: 0.875rem;
	font-weight: var(--font-weight-medium);
	line-height: 2.07;
	margin-top: 5rem;
	text-align: right;
}

.talk {
	background-color: var(--bg-color);
	margin-bottom: 5rem;
	margin-top: 5rem;
	padding-bottom: 5rem;
	padding-top: 5rem;
}

.talk__lead {
	font-size: 0.875rem;
	font-weight: var(--font-weight-bold);
	line-height: 2.07143;
	margin-top: 1.875rem;
}

.talk__frame {
	align-items: center;
	aspect-ratio: 215/400;
	border: 8px solid var(--line-color);
	display: flex;
	justify-content: center;
	margin-top: 3.125rem;
	padding: 1.875rem;
}

.talk__frame-text {
	align-items: center;
	background: #A9A9A9;
	color: #FFF;
	display: flex;
	font-family: YuGothic;
	font-size: 0.5625rem;
	font-weight: 700;
	height: 30px;
	justify-content: center;
	min-width: 120px;
	padding: 3px 10px;
}

.faq {
	margin-top: 5rem;
	padding-bottom: 5rem;
}

.faq__group {
	margin-top: 3.125rem;
}

.faq__group-title {
	font-size: 1.25rem;
	font-weight: var(--font-weight-bold);
	line-height: 1.55;
	text-align: center;
}

.faq__list {
	margin-top: 1.25rem;
}

.faq__item {
	border-top: 1px solid var(--line-color2);
	transition: border-color var(--duration-base) ease;
}

.faq__item:last-child {
	border-bottom: 1px solid var(--line-color2);
}

.faq__item.is-open {
	border-top-color: var(--main-color2);
}

.faq__item.is-open + .faq__item {
	border-top-color: var(--main-color2);
}

.faq__item.is-open:last-child {
	border-bottom-color: var(--main-color2);
}

.faq__item.is-open .faq__item-question-text {
	color: var(--main-color2);
}

.faq__item-question-btn {
	align-items: center;
	background: none;
	border: none;
	cursor: pointer;
	display: grid;
	grid-template-columns: max-content 1fr max-content;
	padding: 0.625rem 0.5625rem;
	transition: opacity var(--duration-base) ease;
	width: 100%;
}

.faq__item-question-icon {
	color: var(--main-color2);
	font-family: var(--font-family-second);
	font-size: 1.5rem;
	font-weight: var(--font-weight-light);
	line-height: 1.66667;
}

.faq__item-question-text {
	font-size: 0.8125rem;
	font-weight: var(--font-weight-medium);
	line-height: 1.66667;
	padding-left: 1rem;
	padding-right: 0.625rem;
	text-align: left;
	transition: color var(--duration-base) ease;
}

.faq__item-question-toggle-icon {
	background-color: var(--main-color2);
	height: 0.125rem;
	position: relative;
	width: 1rem;
}

.faq__item-question-toggle-icon::before {
	background-color: var(--main-color2);
	content: "";
	display: block;
	height: 100%;
	left: 50%;
	position: absolute;
	rotate: 90deg;
	top: 50%;
	transition: rotate var(--duration-base) ease;
	translate: -50% -50%;
	width: 100%;
}

.faq__item.is-open .faq__item-question-toggle-icon::before {
	rotate: 0deg;
}

.faq__item-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height var(--duration-base) ease;
}

.faq__item-answer.is-open {
	max-height: 100%;
}

.faq__item-answer-text {
	background: var(--bg-color);
	border-radius: 10px;
	display: block;
	font-size: 0.8125rem;
	font-weight: var(--font-weight-bold);
	line-height: 1.53846;
	margin-bottom: 0.625rem;
	margin-top: 0.625rem;
	padding: 1.25rem;
}

.faq__item-answer-link {
	-webkit-text-decoration: underline;
	color: var(--main-color2);
	text-decoration: underline;
	transition: opacity var(--duration-base) ease;
}

.process {
	background-color: var(--bg-color);
	margin-top: 5rem;
	padding-bottom: 5.875rem;
	padding-top: 5rem;
}

.process__lead {
	font-size: 0.875rem;
	font-weight: var(--font-weight-medium);
	line-height: 2.07143;
	margin-top: 3.125rem;
}

.process__list {
	display: flex;
	flex-direction: column;
	gap: 3.0625rem;
	margin-top: 3.75rem;
}

.process__item {
	display: grid;
	grid-template-columns: max-content 1fr;
}

.process__step-label-sp {
	background: var(--main-color2);
	border-radius: 5px;
	color: #FFF;
	font-size: 1rem;
	font-weight: var(--font-weight-bold);
	letter-spacing: 0.1em;
	line-height: 2;
	padding: 0 1.25rem;
	position: relative;
	width: 100%;
}

.process__step-label-sp::after {
	-webkit-clip-path: polygon(0 0, 100% 0%, 50% 100%);
	background: var(--main-color2);
	bottom: -0.625rem;
	clip-path: polygon(0 0, 100% 0%, 50% 100%);
	content: "";
	height: 1.0625rem;
	left: 1.875rem;
	position: absolute;
	width: 1.17rem;
}

.process__step-label {
	background: var(--main-color2);
	border-radius: 5px;
	color: var(--white);
	font-size: 1rem;
	font-weight: var(--font-weight-bold);
	letter-spacing: 0.1em;
	line-height: 2;
	min-width: 12.5rem;
	padding: 0.46875rem 0.625rem;
	position: relative;
	text-align: center;
}

.process__step-label::after {
	-webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
	background: var(--main-color2);
	clip-path: polygon(0 0, 0% 100%, 100% 50%);
	content: "";
	height: 1.125rem;
	position: absolute;
	right: -0.8125rem;
	top: 50%;
	translate: 0 -50%;
	width: 0.9375rem;
}

.process__dot {
	position: relative;
	top: 3.9375rem;
	width: 0.6875rem;
	z-index: 1;
}

.process__dot-img {
	aspect-ratio: 1/1;
}

.process__dot::after {
	background-image: repeating-linear-gradient(90deg, var(--main-color), var(--main-color) 3px, transparent 3px, transparent 5px);
	content: "";
	display: inline-block;
	height: 2px;
	left: 0.3125rem;
	position: absolute;
	top: 0.3125rem;
	width: 2.1875rem;
	z-index: -2;
}

.process__dot.process__dot--top::before {
	border-radius: 20px 20px 0 0;
	height: calc(100% + 8.75rem);
	top: -5rem;
}

.process__dot.process__dot--bottom::before {
	border-radius: 0 0 20px 20px;
	height: calc(100% - 2.8125rem);
}

.process__dot::before {
	background-color: #EFE5CB;
	content: "";
	height: calc(100% + 3.0625rem);
	left: -0.1875rem;
	position: absolute;
	top: 0;
	width: 1rem;
	z-index: -1;
}

.process__dot-img {
	-o-object-fit: contain;
	height: auto;
	object-fit: contain;
}

.process__dot-img--sp {
	display: none;
}

.process__body {
	margin-left: 1.625rem;
}

.process__subtitle {
	font-size: 1.25rem;
	font-weight: var(--font-weight-bold);
	line-height: 1.3;
}

.process__details {
	display: flex;
	flex-direction: column;
	margin-top: 0.8125rem;
}

.process__detail {
	font-size: 1rem;
	font-weight: var(--font-weight-bold);
	line-height: 2;
}

.process__text {
	font-size: 0.875rem;
	font-weight: var(--font-weight-medium);
	line-height: 2.07143;
	margin-top: 0.8125rem;
}

.recruit-info {
	container-type: inline-size;
	margin-top: 4.125rem;
}

.recruit-info__term {
	align-items: center;
	display: flex;
	font-size: 0.875rem;
	font-weight: var(--font-weight-bold);
	gap: 0.25rem;
	line-height: 1.57143;
	margin-top: 3.125rem;
}

.recruit-info__term::before {
	background-color: var(--main-color);
	content: "";
	display: inline-block;
	height: 1px;
	width: 10px;
}

.recruit-info__desc.recruit-info__desc--single {
	font-feature-settings: "halt" on, "kern" off;
	align-items: center;
	border-bottom: 1px solid var(--line-color);
	border-top: 1px solid var(--line-color);
	display: flex;
	font-family: var(--font-family-fourth);
	font-kerning: none;
	font-size: 0.875rem;
	font-weight: var(--font-weight-regular);
	letter-spacing: 0.7px;
	line-height: 2.07143;
	margin-top: 1.875rem;
}

.recruit-info__course {
	font-feature-settings: "halt" on, "kern" off;
	border-bottom: 1px solid var(--line, #DDD);
	font-family: var(--font-family-fourth);
	font-kerning: none;
	font-size: 0.875rem;
	font-weight: var(--font-weight-bold);
	letter-spacing: 0.05em;
	line-height: 2.07143;
	margin-top: 1.875rem;
	padding-bottom: 1.25rem;
}

.recruit-info__role-row {
	border-bottom: 1px solid var(--line-color);
	display: grid;
	grid-template-columns: 1fr;
	padding-bottom: 1.875rem;
	padding-top: 1.875rem;
}

.recruit-info__dept {
	font-feature-settings: "halt" on;
	color: var(--main-color2);
	font-family: var(--font-family-fourth);
	font-size: 0.875rem;
	font-weight: var(--font-weight-bold);
	letter-spacing: 0.05em;
	line-height: 2.07143;
}

.recruit-info__dept.recruit-info__dept--black {
	color: var(--text-color);
}

.recruit-info__positions {
	-moz-column-gap: 0.625rem;
	align-items: center;
	column-gap: 0.625rem;
	display: flex;
	flex-wrap: wrap;
}

.recruit-info__position {
	font-feature-settings: "halt" on, "kern" off;
	font-family: var(--font-family-fourth);
	font-kerning: none;
	font-size: 0.875rem;
	font-weight: var(--font-weight-regular);
	letter-spacing: 0.05em;
	line-height: 2.07143;
}

.recruit-info__note {
	font-feature-settings: "halt" on, "kern" off;
	color: #9D9B9B;
	font-family: var(--font-family-fourth);
	font-kerning: none;
	font-size: 0.875rem;
	font-weight: var(--font-weight-regular);
	letter-spacing: 0.05em;
	line-height: 2.07143;
	margin-top: 1.875rem;
}

.recruit-info__sublist {
	margin-top: 1.875rem;
}

.recruit-info__row {
	border-bottom: 1px solid var(--line-color);
	display: grid;
	grid-template-columns: 1fr;
}

.recruit-info__row:first-child {
	border-top: 1px solid var(--line-color);
}

.recruit-info__label {
	font-feature-settings: "halt" on, "kern" off;
	color: var(--main-color2);
	font-family: var(--font-family-fourth);
	font-kerning: none;
	font-size: 0.875rem;
	font-weight: var(--font-weight-bold);
	letter-spacing: 0.05em;
	line-height: 2.07143;
}

.recruit-info__value {
	font-feature-settings: "halt" on, "kern" off;
	font-family: var(--font-family-fourth);
	font-kerning: none;
	font-size: 0.875rem;
	font-weight: var(--font-weight-regular);
	letter-spacing: 0.05em;
	line-height: 2.07143;
}

.recruit-info__link {
	-webkit-text-decoration: underline;
	text-decoration: underline;
}

.js-fade-in {
	opacity: 0;
	transition: opacity 1.2s ease-in-out;
}

.js-fade-in.is-active {
	opacity: 1;
}

.js-fade-up {
	opacity: 0;
	transition: opacity 1.2s ease-in-out, translate 1.2s ease-in-out;
	translate: 0 20px;
}

.js-fade-up.is-active {
	opacity: 1;
	translate: 0 0;
}

.job-detail__interview.js-fade-up,
.training__item.js-fade-up {
	transition: opacity 1s ease-in-out, translate 1s ease-in-out;
}

.js-scaleImg {
	overflow: hidden;
}

.js-scaleImg img {
	opacity: 0;
	scale: 1.1;
	transition: scale 1.2s var(--ease-smooth-bounce), opacity 1.2s var(--ease-smooth-bounce);
}

.js-scaleImg.is-active img {
	opacity: 1;
	scale: 1;
}

.global-expansion__img-wrap.js-scaleImg img {
	transition: scale 1.4s var(--ease-smooth-bounce), opacity 1.4s var(--ease-smooth-bounce);
}

.js-clip-item {
	-webkit-clip-path: inset(0 100% 0 0);
	clip-path: inset(0 100% 0 0);
	overflow: hidden;
	transition: scale 0.8s var(--ease-smooth-bounce), -webkit-clip-path 0.8s var(--ease-smooth-bounce);
	transition: scale 0.8s var(--ease-smooth-bounce), clip-path 0.8s var(--ease-smooth-bounce);
	transition: scale 0.8s var(--ease-smooth-bounce), clip-path 0.8s var(--ease-smooth-bounce), -webkit-clip-path 0.8s var(--ease-smooth-bounce);
}

.js-clip-item.is-active {
	-webkit-clip-path: inset(0 0 0 0);
	clip-path: inset(0 0 0 0);
	scale: 1;
}

.js-clip-item.is-active .top-recruit__link {
	scale: 1;
}

.js-clip-item .top-recruit__link {
	scale: 1.3;
	transition: scale 1s var(--ease-smooth-bounce);
}

.js-text-animate.is-active {
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: leadSweep 2.8s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
	background: linear-gradient(90deg, transparent 0%, #E60012 20%, #E60012 50%, transparent 60%) 0 0/200% 100% no-repeat, linear-gradient(#626262, #626262) 0 0/100% 100% no-repeat;
	background-clip: text;
	color: transparent;
	display: inline-block;
}

:root {
	--delay-1: 0.1s;
	--delay-2: 0.2s;
	--delay-3: 0.3s;
	--delay-4: 0.4s;
	--delay-5: 0.5s;
	--delay-6: 0.6s;
}

.--delay-1 {
	transition-delay: var(--delay-1);
}

.--delay-2 {
	transition-delay: var(--delay-2);
}

.--delay-3 {
	transition-delay: var(--delay-3);
}

.--delay-4 {
	transition-delay: var(--delay-4);
}

.--delay-5 {
	transition-delay: var(--delay-5);
}

.--delay-6 {
	transition-delay: var(--delay-6);
}

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

.breadcrumb__item {
	align-items: center;
	color: #9D9B9B;
	display: flex;
	font-size: 0.75rem;
	font-weight: 700;
	line-height: 2;
	white-space: nowrap;
}

.breadcrumb__item::after {
	border-right: 1px solid #9D9B9B;
	border-top: 1px solid #9D9B9B;
	content: "";
	display: inline-block;
	height: 0.375rem;
	margin-left: 0.625rem;
	margin-right: 0.625rem;
	transform: rotate(45deg);
	transform-origin: center;
	width: 0.375rem;
}

.breadcrumb__item:last-child::after {
	content: none;
}

.breadcrumb__link {
	transition: color var(--duration-base) ease;
}

.btn-link {
	background-color: var(--main-color);
	border: 1px solid var(--main-color);
	color: var(--white);
	font-size: 0.875rem;
	font-weight: 700;
	min-width: 12.5rem;
	padding-bottom: 0.8125rem;
	padding-left: 1.875rem;
	padding-right: 1.875rem;
	padding-top: 0.875rem;
	position: relative;
	text-align: center;
	transition: background-color var(--duration-base) ease, color var(--duration-base) ease;
}

.btn-link.btn-link--long {
	min-width: 15rem;
}

.btn-link::after {
	background: url("../images/common/btn-arrow.webp") no-repeat center center/contain;
	content: "";
	height: 0.5rem;
	position: absolute;
	right: -1.375rem;
	top: 43%;
	transition: background var(--duration-base) ease, right var(--duration-base) ease;
	translate: 0 -50%;
	width: 2.5rem;
}

.float-entry {
	bottom: 0;
	left: 0;
	opacity: 0;
	position: fixed;
	transition: opacity 0.7s ease-in-out, visibility 0.7s ease-in-out;
	visibility: hidden;
	z-index: var(--z-index-float-entry);
}

.float-entry.is-scroll {
	opacity: 1;
	visibility: visible;
}

.float-entry__link {
	align-items: center;
	background-color: var(--main-color);
	border: 2px solid var(--main-color);
	border-radius: 0 20px 0 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-width: 17rem;
	padding-bottom: 0.25rem;
	padding-top: 0.625rem;
	position: relative;
	transition: background-color var(--duration-base) ease;
	width: -moz-fit-content;
	width: fit-content;
}

.float-entry__link::after {
	border-right: 2px solid #fff;
	border-top: 2px solid #fff;
	content: "";
	height: 0.8125rem;
	position: absolute;
	right: 1.25rem;
	top: 60%;
	transform: translateY(-50%) rotate(45deg);
	transition: border-top var(--duration-base) ease, border-right var(--duration-base) ease;
	translate: 0 -50%;
	width: 0.8125rem;
}

.float-entry__label {
	color: var(--white);
	font-family: var(--font-family-second);
	font-size: 0.783625rem;
	font-weight: var(--font-weight-bold);
	letter-spacing: 0.0899665018em;
	line-height: 1;
	transition: color var(--duration-base) ease;
}

.float-entry__main {
	color: var(--white);
	font-family: var(--font-family-second);
	font-size: 2.13rem;
	font-style: italic;
	font-weight: var(--font-weight-semibold);
	letter-spacing: 0.1399941315em;
	transition: color var(--duration-base) ease;
}

.float-entry__logo {
	align-items: center;
	display: flex;
	gap: 0.3125rem;
	justify-content: center;
}

.float-entry__logo-img {
	-webkit-mask-image: url("../images/common/logo-white.svg"); /* マスクとして使用するSVG */
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-size: contain;
	background-color: var(--white); /* 背景色（マスク内で表示される色） */
	display: inline-block;
	height: 0.9375rem;
	mask-image: url("../images/common/logo-white.svg"); /* フォールバックで他のブラウザ向け */
	mask-repeat: no-repeat;
	mask-size: contain;
	transition: background-color var(--duration-base) ease;
	width: 5.36375rem;
}

.float-entry__logo-text {
	color: var(--white);
	font-family: var(--font-family-second);
	font-size: 0.6875rem;
	font-weight: var(--font-weight-bold);
	letter-spacing: 0.05em;
	text-align: center;
	transform: translateY(0.125rem);
	transition: color var(--duration-base) ease;
}

.footer__info-wrap {
	background-color: var(--bg-color);
}

.footer__info {
	padding: 5.625rem 20px 5rem 20px;
}

.footer__logo {
	align-items: center;
	display: flex;
	gap: 0.83125rem;
	transition: opacity var(--duration-base) ease;
}

.footer__logo-img {
	-o-object-fit: contain;
	height: auto;
	object-fit: contain;
	width: 10.7275rem;
}

.footer__recruit {
	color: var(--mh_gold, #C4A552);
	font-family: var(--font-family-fourth);
	font-size: 1rem;
	font-weight: var(--font-weight-medium);
	letter-spacing: 0.05em;
	line-height: 1.25;
}

.footer__company {
	margin-top: 3.1875rem;
}

.footer__company,
.footer__tel {
	font-size: 0.875rem;
	font-weight: var(--font-weight-bold);
	line-height: 2.07143; /* 207.143% */
	text-align: center;
}

.footer__copyright {
	font-family: var(--font-family-second);
	font-size: 10px;
	font-weight: var(--font-weight-regular);
	letter-spacing: 0.1em;
	padding-bottom: 6.25rem;
	padding-top: 3.125rem;
	text-align: center;
}

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

.header {
	background: var(--white);
	bottom: auto;
	height: 3.3125rem;
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	transition: box-shadow var(--duration-base) ease;
	z-index: var(--z-index-header);
}

.header.is-scroll {
	box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
}

.header__inner {
	align-items: center;
	display: flex;
	gap: 0.625rem;
	height: 100%;
	justify-content: space-between;
	padding-left: 3.125rem;
}

.header__logo-link {
	transition: opacity var(--duration-base) ease;
}

.header__logo {
	align-items: flex-end;
	display: grid;
	gap: 0.375rem;
	grid-template-columns: 6.0709375rem 1fr;
	height: -moz-fit-content;
	height: fit-content;
}

:root:not(:lang(ja)) .header__logo {
	align-items: center;
}

.header__logo-img {
	-o-object-fit: contain;
	height: auto;
	object-fit: contain;
}

.header__logo-text {
	color: var(--main-color2);
	font-family: var(--font-family-fourth);
	font-size: 0.75rem;
	font-weight: var(--font-weight-medium);
	letter-spacing: 0.05em;
	line-height: 1.3;
}

.header__menu {
	align-items: center;
	display: flex;
	height: 100%;
}

.header__nav {
	height: 100%;
	padding-right: clamp(15px, -13.5714285714px + 3.7202380952vw, 40px);
}

.header__nav-list {
	align-items: center;
	display: flex;
	gap: clamp(15px, 15px + 26 * var(--fluid-basis), 41px);
	height: 100%;
}

.header__nav-item {
	height: 100%;
}

.header__nav-link {
	align-items: center;
	box-shadow: inset 0 -2px 0 transparent;
	display: flex;
	flex-direction: column;
	gap: 0.5625rem;
	height: 100%;
	justify-content: center;
	text-align: center;
	transition: box-shadow var(--duration-base) ease;
}

.header__nav-link.is-current {
	box-shadow: inset 0 -2px 0 var(--main-color);
}

.header__nav-link.is-current .header__nav-label {
	color: var(--main-color);
}

.header__nav-link.is-current .header__nav-sub {
	color: var(--main-color);
	opacity: 0.5;
}

.header__nav-label {
	font-size: 0.875rem;
	font-weight: var(--font-weight-black);
	letter-spacing: 0.01em;
	line-height: 1;
	transition: color var(--duration-base) ease;
}

.header__nav-sub {
	color: var(--main-color2);
	font-family: var(--font-family-second);
	font-size: 0.625rem;
	font-weight: var(--font-weight-regular);
	letter-spacing: 0.03em;
	text-transform: uppercase;
	transition: color var(--duration-base) ease, opacity var(--duration-base) ease;
}

.header__entry {
	height: 100%;
}

.header__entry-link {
	align-items: center;
	background-color: var(--main-color);
	border: 2px solid var(--main-color);
	border-radius: 0 20px 0 0;
	display: flex;
	flex-direction: column;
	height: 100%;
	justify-content: center;
	min-width: 6.6875rem;
	padding-left: 0.375rem;
	padding-right: 0.625rem;
	position: relative;
	transition: background-color var(--duration-base) ease;
}

.header__entry-link::after {
	border-right: 2px solid #fff;
	border-top: 2px solid #fff;
	content: "";
	height: 0.4375rem;
	position: absolute;
	right: 0.375rem;
	top: 55%;
	transform: translateY(-50%) rotate(45deg);
	transition: border-top var(--duration-base) ease, border-right var(--duration-base) ease;
	translate: 0 -50%;
	width: 0.4375rem;
}

.header__entry-label {
	color: var(--white);
	font-family: var(--font-family-second);
	font-size: 0.5rem;
	font-weight: var(--font-weight-bold);
	line-height: 1;
	transition: color var(--duration-base) ease;
}

.header__entry-text {
	color: var(--white);
	font-family: var(--font-family-second);
	font-size: 0.902rem;
	font-style: italic;
	font-weight: var(--font-weight-semibold);
	letter-spacing: 4.185px;
	line-height: 1;
	text-transform: uppercase;
	transition: color var(--duration-base) ease;
}

/* ===============================================
# ハンバーガー
=============================================== */

.header-hamburger {
	left: 0.75rem;
	position: fixed;
	top: 0.75rem;
	z-index: var(--z-index-hamburger);
}

.header-hamburger__btn {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 0.1875rem;
	height: 1.9375rem;
	justify-content: center;
	pointer-events: auto;
	position: relative;
	transition: width var(--duration-short) ease;
	width: 1.625rem;
}

.header-hamburger__btn span {
	background: var(--main-color);
	border-radius: calc(infinity * 1px);
	height: 2px;
	transition: rotate var(--duration-short) ease, translate var(--duration-short) ease;
	width: 1.125rem;
}

.header-hamburger__btn.is-open span {
	background: var(--white);
	width: 1.25rem;
}

.header-hamburger__btn.is-open span:nth-of-type(1) {
	position: absolute;
	rotate: 45deg;
	top: 50%;
	translate: 0 -50%;
}

.header-hamburger__btn.is-open span:nth-of-type(2) {
	opacity: 0;
	visibility: hidden;
}

.header-hamburger__btn.is-open span:nth-of-type(3) {
	position: absolute;
	rotate: -45deg;
	top: 50%;
	translate: 0 -50%;
}

/* ===============================================
# ドロワーメニュー
=============================================== */

.header__drawer {
	align-items: center;
	background-color: var(--main-color);
	bottom: 0;
	display: flex;
	flex-direction: column;
	height: 100vh;
	left: 0;
	opacity: 0;
	position: fixed;
	right: 0;
	scrollbar-width: none;
	top: 0;
	transition: opacity var(--duration-base) ease, visibility var(--duration-base) ease;
	visibility: hidden;
	width: 100vw;
	z-index: var(--z-index-drawer);
}

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

.header__drawer-header {
	align-items: center;
	box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.17);
	display: flex;
	gap: 0.385rem;
	justify-content: center;
	min-height: 3.3125rem;
	width: 100%;
}

.header__drawer-header-img {
	-o-object-fit: contain;
	height: auto;
	object-fit: contain;
	width: 6.0709375rem;
}

.header__drawer-header-text {
	color: var(--white);
	font-family: var(--font-family-fourth);
	font-size: 0.75rem;
	font-weight: var(--font-weight-medium);
	letter-spacing: 0.05em;
	line-height: 1.3;
}

.header__drawer-body {
	height: 100%;
	overflow: auto;
	padding: 3.125rem 1.9375rem;
	width: 100%;
}

.header__drawer-nav {
	height: -moz-fit-content;
	height: fit-content;
}

.header__drawer-items {
	height: inherit;
	width: 100%;
}

.header__drawer-item {
	border-bottom: 1px solid rgba(255, 255, 255, 0.5);
	width: 100%;
}

.header__drawer-item:first-of-type {
	border-top: 1px solid rgba(255, 255, 255, 0.5);
}

.header__drawer-item-link {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
	justify-content: center;
	padding-bottom: 1.53125rem;
	padding-top: 1.53125rem;
}

.header__drawer-item-label {
	color: var(--white);
	font-size: 0.9375rem;
	font-weight: var(--font-weight-black);
	letter-spacing: 0.01em;
	line-height: 0.93333;
}

.header__drawer-item-sub {
	color: var(--main-color2);
	font-family: var(--font-family-second);
	font-size: 0.625rem;
	font-weight: var(--font-weight-regular);
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

.header__drawer-entry-btn {
	margin-top: 3.125rem;
}

.header__drawer-entry-btn-link {
	align-items: center;
	background-color: var(--white);
	border-radius: 10px;
	box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.2);
	display: flex;
	flex-direction: column;
	gap: 0.0625rem;
	padding-bottom: 0.6875rem;
	padding-top: 0.6875rem;
	position: relative;
	width: 100%;
}

.header__drawer-entry-btn-link::after {
	border-right: 2px solid var(--main-color);
	border-top: 2px solid var(--main-color);
	content: "";
	height: 0.625rem;
	position: absolute;
	right: 0.9375rem;
	top: 55%;
	transform: translateY(-50%) rotate(45deg);
	translate: 0 -50%;
	width: 0.625rem;
}

.header__drawer-entry-btn-label {
	color: var(--main-color);
	font-family: var(--font-family-second);
	font-size: 0.6875rem;
	font-weight: var(--font-weight-bold);
	line-height: 1;
	text-align: center;
}

.header__drawer-entry-btn-label-ls {
	letter-spacing: 0.09em;
}

.header__drawer-entry-btn-text {
	color: var(--main-color);
	font-family: var(--font-family-second);
	font-size: 1.75rem;
	font-style: italic;
	font-weight: var(--font-weight-semibold);
	letter-spacing: 0.14em;
	line-height: 1;
	text-align: center;
	text-transform: uppercase;
}

.body-hidden {
	overflow: hidden;
}

.line-bg {
	height: auto;
	left: 50%;
	position: absolute;
	translate: -50% -50%;
	width: 100cqw;
	z-index: -1;
}

.line-bg__img {
	height: auto;
	opacity: 0.3;
	width: 100%;
}

.line-bg--01 {
	-webkit-clip-path: inset(0 0 0 100%);
	clip-path: inset(0 0 0 100%);
	top: 19%;
	transition: -webkit-clip-path 2.5s cubic-bezier(0.45, 0, 0.55, 1);
	transition: clip-path 2.5s cubic-bezier(0.45, 0, 0.55, 1);
	transition: clip-path 2.5s cubic-bezier(0.45, 0, 0.55, 1), -webkit-clip-path 2.5s cubic-bezier(0.45, 0, 0.55, 1);
}

.line-bg--01.is-active {
	-webkit-clip-path: inset(0 0 0 0);
	clip-path: inset(0 0 0 0);
}

.line-bg--03 {
	-webkit-clip-path: inset(0 0 0 100%);
	clip-path: inset(0 0 0 100%);
	top: 90%;
	transition: -webkit-clip-path 2.5s cubic-bezier(0.45, 0, 0.55, 1);
	transition: clip-path 2.5s cubic-bezier(0.45, 0, 0.55, 1);
	transition: clip-path 2.5s cubic-bezier(0.45, 0, 0.55, 1), -webkit-clip-path 2.5s cubic-bezier(0.45, 0, 0.55, 1);
}

.line-bg--03.is-active {
	-webkit-clip-path: inset(0 0 0 0);
	clip-path: inset(0 0 0 0);
}

.section-header {
	display: flex;
	flex-direction: column;
	gap: 1.875rem;
}

.section-header--center .section-header__title-ja {
	text-indent: 0;
}

.section-header__title {
	color: var(--main-color2);
	font-family: var(--font-family-second);
	font-size: 1.25rem;
	font-weight: var(--font-weight-light);
	text-transform: uppercase;
}

.section-header__dot {
	aspect-ratio: 1/1;
	background-color: var(--main-color);
	width: 0.4375rem;
}

.section-header__title-ja {
	font-size: 1.375rem;
	font-weight: var(--font-weight-bold);
	line-height: 1.45455;
	text-indent: -0.3em;
}

:root:not(:lang(ja)) .section-header__title-ja {
	text-indent: 0;
}

.sub-breadcrumbs {
	border-bottom: 1px solid var(--line-color);
	padding-bottom: 0.625rem;
	padding-top: 0.625rem;
}

.sub-breadcrumbs__inner.inner {
	padding-left: 10px;
	padding-right: 10px;
}

.sub-fv {
	container-type: inline-size;
	height: auto;
	margin-top: 3.3125rem;
}

.sub-fv__label {
	color: var(--main-color2);
	font-family: var(--font-family-second);
	font-size: calc(1200 / var(--cq-ref-mobile) * 1cqw);
	font-weight: var(--font-weight-light);
	text-transform: uppercase;
}

.sub-fv__title {
	font-size: calc(2300 / var(--cq-ref-mobile) * 1cqw);
	font-weight: var(--font-weight-bold);
	line-height: 1.3913;
	text-indent: -0.3em;
}

:root:not(:lang(ja)) .sub-fv__title {
	text-indent: 0;
}

.sub-fv__title.sub-fv__title--indent-none {
	text-indent: 0;
}

.sub-fv__img-wrap {
	height: auto;
}

.sub-fv__img {
	aspect-ratio: 375/180;
	height: auto;
}

.sub-section-header {
	margin-right: calc(50% - 50cqw);
	padding-top: 1.5625rem;
	position: relative;
}

.sub-section-header::before {
	background: linear-gradient(to right, var(--main-color) 0px, var(--main-color) 100px, var(--line-color) 100px, var(--line-color) 100%);
	content: "";
	display: inline-block;
	height: 1px;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.sub-section-header__title {
	font-size: 1.375rem;
	font-style: normal;
	font-weight: var(--font-weight-bold);
	line-height: 1.40909;
	transform: translateX(-0.3em);
}

:root:not(:lang(ja)) .sub-section-header__title {
	text-indent: 0;
}

.sub-section-header__title.sub-section-header__title--transform-none {
	transform: translateX(0);
}

.sub-section-header__title.sub-section-header__title--transform-small {
	transform: translateX(-0.15em);
}

/* sub-section-header02 */

.sub-section-header02__title {
	font-size: 1.375rem;
	font-style: normal;
	font-weight: var(--font-weight-bold);
	line-height: 1.40909;
	padding-bottom: 1.5625rem;
	position: relative;
}

.sub-section-header02__title.sub-section-header02__title--center {
	display: flex;
	justify-content: center;
}

.sub-section-header02__title.sub-section-header02__title--center::after {
	left: 50%;
	translate: -50% 0;
}

.sub-section-header02__title::after {
	background-color: var(--main-color);
	bottom: 0;
	content: "";
	display: inline-block;
	height: 1px;
	left: 0;
	position: absolute;
	width: 3.125rem;
}

@media (any-hover: hover) {

a:hover {
	cursor: pointer;
}

.not-found__button:hover {
	background-color: var(--white);
	color: var(--main-color);
}

.recruit-links__btn:hover {
	background-color: var(--white);
}

.recruit-links__btn:hover::before,
.recruit-links__btn:hover::after {
	background-color: var(--main-color);
}

.recruit-links__btn:hover .recruit-links__category,
.recruit-links__btn:hover .recruit-links__title {
	color: var(--main-color);
}

.top-news__link:hover .top-news__date {
	color: var(--main-color);
}

.top-news__link:hover .top-news__text {
	color: var(--main-color);
}

.top-news__link:hover .top-news__icon {
	transform: translateX(5px);
}

.top-person__link:hover .top-person__info-inner::after {
	right: -3.4375rem;
}

.top-person__link:hover .top-person__img {
	transform: scale(1.05);
}

.top-recruit__link:hover .top-recruit__text::after {
	right: -2.8125rem;
}

.top-recruit__link:hover .top-recruit__img {
	filter: brightness(1.1);
	transform: scale(1.05);
}

.about-nav__link:hover .about-nav__link-text {
	color: var(--main-color);
}

.brand__link:hover {
	opacity: 0.7;
}

.brand__link:hover .brand__main-img {
	transform: scale(1.05);
}

.brand__link:hover .brand__img {
	transform: scale(1.05);
}

.business__link:hover .business__subtitle::after {
	right: -2.8125rem;
}

.youtube-thumbnail:hover {
	filter: brightness(1.2);
}

.internship__link:hover {
	opacity: 0.7;
}

.internship__year-link:hover .internship__year-text {
	color: var(--main-color);
}

.job-nav__link:hover .job-nav__link-text {
	color: var(--main-color);
}

.employees__filter:hover {
	background-color: var(--main-color);
	border-color: var(--main-color);
	color: var(--white);
}

.employees__link:hover .employees__info-inner::after {
	right: -2.3125rem;
}

.employees__link:hover .employees__img {
	transform: scale(1.05);
}

.interviews__link:hover .interviews__info-inner::after {
	right: -2.3125rem;
}

.interviews__link:hover .interviews__img {
	transform: scale(1.05);
}

.faq__item:last-child:hover {
	border-bottom-color: var(--main-color2);
}

.faq__item:hover {
	border-top-color: var(--main-color2);
}

.faq__item:hover + .faq__item {
	border-top-color: var(--main-color2);
}

.faq__item:hover .faq__item-question-text {
	color: var(--main-color2);
}

.faq__item-answer-link:hover {
	opacity: 0.7;
}

.recruit-info__link:hover {
	-webkit-text-decoration: none;
	opacity: 0.7;
	text-decoration: none;
}

.breadcrumb__link:hover {
	color: var(--main-color);
}

.btn-link:hover {
	background-color: var(--white);
	color: var(--main-color);
}

.btn-link:hover::after {
	background: url("../images/common/btn-arrow-red.webp") no-repeat center center/contain;
	right: -1.6875rem;
}

.float-entry__link:hover {
	background-color: var(--white);
}

.float-entry__link:hover .float-entry__label {
	color: var(--main-color);
}

.float-entry__link:hover .float-entry__main {
	color: var(--main-color);
}

.float-entry__link:hover .float-entry__logo-text {
	color: var(--main-color);
}

.float-entry__link:hover::after {
	border-right: 2px solid var(--main-color);
	border-top: 2px solid var(--main-color);
}

.float-entry__link:hover .float-entry__logo-img {
	background-color: var(--main-color);
}

.footer__logo:hover {
	opacity: 0.7;
}

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

.header__nav-link:hover {
	box-shadow: inset 0 -2px 0 var(--main-color);
}

.header__nav-link:hover .header__nav-label {
	color: var(--main-color);
}

.header__nav-link:hover .header__nav-sub {
	color: var(--main-color);
	opacity: 0.5;
}

.header__entry-link:hover {
	background-color: var(--white);
}

.header__entry-link:hover .header__entry-label {
	color: var(--main-color);
}

.header__entry-link:hover .header__entry-text {
	color: var(--main-color);
}

.header__entry-link:hover::after {
	border-right: 2px solid var(--main-color);
	border-top: 2px solid var(--main-color);
}

}

@media (hover: hover) {

.about-nav__link:hover .about-nav__link-arrow::before {
	transform: scale(1.1);
}

.about-nav__link:hover .about-nav__link-arrow::before {
	animation: arrow 0.3s ease forwards;
}

.internship__other-link:hover .internship__arrow::before,
.internship__year-link:hover .internship__arrow::before {
	transform: scale(1.1);
}

.internship__other-link:hover .internship__arrow::before,
.internship__year-link:hover .internship__arrow::before {
	animation: arrow-right 0.3s ease forwards;
}

.job-nav__link:hover .job-nav__link-arrow::before {
	transform: scale(1.1);
}

.job-nav__link:hover .job-nav__link-arrow::before {
	animation: arrow 0.3s ease forwards;
}

}

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

.u-desktop {
	display: block;
}

.u-mobile {
	display: none;
}

html {
	font-size: 1.4545454545vw;
}

.float-entry-btn-sp {
	display: none;
}

.fv {
	margin-top: 5.9375rem;
}

.fv__inner {
	grid-template-columns: 1fr clamp(160px, 81.1428571429px + 10.2678571429vw, 229px);
}

.fv__content {
	left: 69%;
	top: 57.5%;
}

:root:not(:lang(ja)) .fv__content {
	left: 59%;
}

.fv__vision-label {
	font-size: calc(2000 / var(--cq-ref) * 1cqw);
}

.fv__title.fv__title--other {
	width: 75cqw;
}

.fv__title--other font {
	padding-left: 10px;
	padding-right: 10px;
}

.fv__title.fv__title--other .hl-line {
	padding-left: 10px;
	padding-right: 10px;
}

.fv__vision-dot {
	margin-top: calc(2500 / var(--cq-ref) * 1cqw);
	width: calc(700 / var(--cq-ref) * 1cqw);
}

.fv__title {
	font-size: calc(5338.3 / var(--cq-ref) * 1cqw);
	gap: calc(1000 / var(--cq-ref) * 1cqw);
	line-height: 1.51852;
	margin-top: calc(4800 / var(--cq-ref) * 1cqw);
}

.fv__text-line {
	letter-spacing: 0.001em;
	padding-left: calc(1000 / var(--cq-ref) * 1cqw);
	padding-right: calc(1000 / var(--cq-ref) * 1cqw);
}

.fv__swiper,
.fv__swiper .swiper-img,
.fv__swiper .swiper-img img {
	border-radius: 0 0 50px 0;
}

.fv__swiper .swiper-img img {
	aspect-ratio: 1211/690;
}

.inner {
	max-width: 1160px;
	padding-left: 30px;
	padding-right: 30px;
}

.sub-inner {
	max-width: 1160px;
	padding-left: 30px;
	padding-right: 30px;
}

.not-found {
	padding-bottom: 7.5rem;
	padding-top: 7.5rem;
}

.not-found__title {
	font-size: 1.625rem;
}

.not-found__text {
	font-size: 1rem;
	margin-top: 2.5rem;
}

.not-found__button-wrap {
	margin-top: 3.75rem;
}

.not-found__button {
	font-size: 1.125rem;
}

.sub-fv.sub-fv--not-found {
	height: 300px;
}

.recruit-links {
	margin-top: 3.75rem;
}

.recruit-links__list {
	gap: 1.875rem;
	grid-template-columns: repeat(3, 1fr);
}

.recruit-links__btn {
	border-radius: 5px;
}

.top-about {
	margin-top: 9.375rem;
}

.section-header.top-about__header {
	gap: 1.1875rem;
}

.top-about__list {
	gap: clamp(40px, 40px + 40 * var(--fluid-basis), 80px);
	grid-template-columns: repeat(2, 1fr);
}

.top-about__body {
	padding-right: 3.75rem;
}

.top-about__subtitle {
	font-size: 2rem;
	line-height: 0.9375;
	margin-top: 3.125rem;
}

.top-about__text {
	font-size: 1rem;
	line-height: 2.5;
}

.top-about__btn {
	margin-top: 1.25rem;
}

.top-about__item--right {
	margin-top: 12.5rem;
}

.top-about__item--right .top-about__body {
	padding-right: 2.5625rem;
}

.top-message {
	margin-top: 6.5625rem;
}

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

.top-message__content {
	align-items: center;
	gap: 4.375rem;
	grid-template-columns: 676fr 525fr;
	margin-right: calc(50% - 50cqw);
}

.top-message__lead {
	font-size: clamp(27px, 27px + 19 * var(--fluid-basis), 46px);
	line-height: 1.45652;
}

.top-message__text {
	font-size: max(12px, 1rem);
	line-height: 2.5;
	margin-top: 2.25rem;
}

.top-news {
	margin-top: 3.8125rem;
}

.top-news__content {
	align-items: center;
	display: grid;
	gap: 3.75rem;
	grid-template-columns: max-content 1fr;
	padding: 1.875rem 3.75rem;
}

.top-news__title {
	font-size: max(16px, 1.0625rem);
}

.top-news__link {
	align-items: center;
	grid-template-columns: max-content 1fr;
}

.top-news__date-wrap {
	gap: 1.875rem;
}

.top-news__date {
	font-size: max(10px, 0.6875rem);
}

.top-news__text {
	font-size: max(11px, 0.75rem);
	margin-left: 1.875rem;
}

.top-person {
	container-type: inline-size;
	margin-top: 6.25rem;
	padding-top: 5.9375rem;
	position: relative;
}

.top-person__text-wrap {
	max-width: 30.625rem;
}

.top-person__lead {
	font-size: 1rem;
	line-height: 2.5;
	margin-top: 1.875rem;
}

.top-person__list {
	display: grid;
	gap: 0.9375rem;
	grid-template-columns: repeat(3, 1fr);
	margin-top: 11.25rem;
}

.is-active .top-person__item {
	opacity: 1;
	transform: translateY(0);
}

.top-person__item {
	opacity: 0;
	transform: translateY(20px);
}

.top-person__item--01 {
	transition-delay: 0.2s;
}

.top-person__item--02 {
	margin-top: -15.125rem;
	transition-delay: 0.1s;
}

.top-person__item--03 {
	margin-top: -30.1875rem;
}

.top-person__img-wrap {
	border-radius: 50px;
}

.top-person__img {
	aspect-ratio: 357/500;
	border-radius: 50px;
}

.top-person__info {
	border-radius: 0 20px 0 0;
	min-width: 18.75rem;
	padding-bottom: 0.1875rem;
	padding-left: 1.875rem;
	padding-right: 1.875rem;
	padding-top: 0.6875rem;
}

.top-person__info-inner::after {
	right: -3.125rem;
	width: 2.5rem;
}

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

.top-person__position {
	font-size: 0.875rem;
	line-height: 1.5;
	margin-top: 0.1875rem;
}

.top-person__coming-soon {
	height: 140px;
}

.top-recruit__list {
	grid-template-columns: repeat(3, 1fr);
}

.top-recruit__img-wrap {
	--grad-color: rgb(0,0,0);
	--grad-stop: 95%;
	border-radius: 0 0 50px 0;
}

.top-recruit__img-wrap::after {
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 60%, var(--grad-color, #000) var(--grad-stop, 95%));
}

.top-recruit__img {
	aspect-ratio: 347/450;
}

.about-nav {
	padding-bottom: 3.125rem;
	padding-top: 3.125rem;
}

.about-nav__inner {
	max-width: 1160px;
	padding-left: 30px;
	padding-right: 30px;
}

.about-nav__list {
	border-radius: 28px;
	grid-template-columns: repeat(3, 1fr);
	padding: 2.5rem 5.625rem 2.5rem 8.625rem;
	row-gap: 0.9375rem;
}

.about-nav__link {
	gap: 0.6875rem;
}

.about-nav__link-arrow {
	width: 1.5625rem;
}

.about-nav__link-arrow::before {
	height: 0.3125rem;
	width: 0.3125rem;
}

.about-nav__link-text {
	font-size: 1rem;
	line-height: 1.25;
}

.brand {
	padding-bottom: 9.375rem;
	padding-top: 9.375rem;
}

.brand__lead {
	margin-left: auto;
	margin-right: auto;
	margin-top: 1.875rem;
	max-width: 700px;
}

.brand__main-img {
	aspect-ratio: 1088/614.62;
}

.brand__list {
	gap: 2.5rem 3.125rem;
	grid-template-columns: repeat(3, 1fr);
}

.brand__img {
	aspect-ratio: 329.33/270;
}

.business {
	padding-bottom: 7.5rem;
	padding-top: 7.5rem;
}

.business__lead {
	font-size: clamp(10px, 1600 / var(--cq-ref) * 1cqw, 17px);
	line-height: 2;
	margin-top: 1.875rem;
}

.business__list {
	gap: 3.125rem 1.875rem;
	grid-template-columns: repeat(2, 1fr);
}

.business__item--01 {
	grid-column: 1/span 2;
}

.business__item--01 .business__img {
	aspect-ratio: 1088/220;
}

.business__img-wrap {
	--grad-color: rgb(0,0,0);
	--grad-stop: 95%;
}

.business__img-wrap::after {
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 60%, var(--grad-color, #000) var(--grad-stop, 95%));
}

.business__img {
	aspect-ratio: 529/220;
}

.business__text {
	line-height: 2;
}

.company {
	margin-bottom: 14.375rem;
	padding-bottom: 7.5rem;
	padding-top: 7.5rem;
}

.company__list {
	padding-left: 2.75rem;
	padding-right: 2.75rem;
}

.company__item {
	align-items: center;
	gap: 3.125rem;
	grid-template-columns: 8.75rem 1fr;
	padding-left: 1.25rem;
	padding-right: 1.25rem;
}

.company__term {
	font-size: 1rem;
	line-height: 2;
}

.company__desc {
	font-size: 1rem;
	line-height: 2;
}

.concept__main {
	align-items: center;
	display: flex;
	margin-right: calc(50% - 50cqw);
	position: relative;
}

.concept__text-wrap {
	left: 0;
	position: absolute;
	top: 48%;
	translate: 0 -50%;
	z-index: 1;
}

.concept__subtitle {
	font-size: 2.1875rem;
	line-height: 1.8;
}

.concept__text {
	font-size: 1rem;
	line-height: 2;
}

.concept__main-img-wrap {
	margin-left: auto;
	width: 58.662%;
}

.concept__img--main {
	aspect-ratio: 745/560;
}

.concept__content {
	align-items: center;
	gap: clamp(25px, 25px + 60 * var(--fluid-basis), 85px);
	grid-template-areas: "images message";
	grid-template-columns: 711fr 448fr;
	justify-content: space-between;
	margin-left: calc(50% - 50cqw);
	margin-top: 5rem;
	padding-left: 1.625rem;
}

.concept__img--sub01 {
	aspect-ratio: 289/217;
}

.concept__img-wrap--sub02 {
	top: 5rem;
}

.concept__img--sub02 {
	aspect-ratio: 439/330;
}

.concept__img--sub03 {
	aspect-ratio: 367/276;
}

.concept__message {
	margin-left: auto;
	width: -moz-fit-content;
	width: fit-content;
}

.concept__paragraph {
	font-size: clamp(9px, 1600 / var(--cq-ref) * 1cqw, 19px);
	line-height: 2;
}

.craftsmanship {
	margin-top: 9.375rem;
}

.craftsmanship__subtitle {
	font-size: clamp(16px, 2400 / var(--cq-ref) * 1cqw, 26px);
	line-height: 1.8;
}

.craftsmanship__description {
	font-size: clamp(10px, 1600 / var(--cq-ref) * 1cqw, 17px);
	line-height: 2;
}

.craftsmanship__safety {
	background: url("../images/about/craftsmanship-bg.webp") no-repeat center center/cover;
	padding: 3.125rem;
}

.craftsmanship__safety-title {
	font-size: 1.5rem;
	line-height: 1.8;
}

.craftsmanship__safety-description {
	font-size: 1rem;
	line-height: 2;
}

.craftsmanship__card-list {
	grid-template-columns: repeat(2, 1fr);
}

.craftsmanship__card-img {
	aspect-ratio: 480/316;
}

.craftsmanship__card-caption {
	font-size: 1rem;
	line-height: 2;
}

.craftsmanship__videos {
	padding: 3.125rem;
}

.craftsmanship__videos-title {
	font-size: 1.5rem;
	line-height: 1.8;
}

.craftsmanship__videos-description {
	font-size: 1rem;
	line-height: 2;
}

.craftsmanship__video-list {
	grid-template-columns: repeat(2, 1fr);
	margin-top: 3.125rem;
}

.craftsmanship__video-item {
	grid-template-columns: 230fr 250fr;
}

.craftsmanship__video-item:last-child,
.craftsmanship__video-item:nth-last-child(2) {
	border: none;
	padding-bottom: 0;
}

.craftsmanship__video-text {
	padding: 1.25rem 0 1.25rem 1.25rem;
}

.youtube-thumbnail::before {
	aspect-ratio: 7/5;
	width: 3.5rem;
}

.data-view {
	margin-top: 9.375rem;
	padding-bottom: 9.375rem;
}

.data-view__list {
	gap: 1.373125rem 1.833125rem;
	grid-template-columns: repeat(3, 1fr);
}

.data-view__item:first-child {
	border-radius: 50px 0 0 0;
}

.data-view__item:nth-child(3) {
	border-radius: 0 50px 0 0;
}

.data-view__item:nth-last-child(3) {
	border-radius: 0 0 0 50px;
}

.data-view__item:last-child {
	border-radius: 0 0 50px 0;
}

.data-view__item--01 .data-view__label {
	margin-top: clamp(5px, 5px + 18 * var(--fluid-basis), 23px);
}

.data-view__item--01 .data-view__icon-wrap {
	width: 7.5rem;
}

.data-view__item--02 .data-view__label {
	margin-top: clamp(0px, 0px + 18 * var(--fluid-basis), 18px);
}

.data-view__item--02 .data-view__icon-wrap {
	width: 8.125rem;
}

.data-view__item--03 .data-view__label {
	margin-top: clamp(0px, 0px + 15 * var(--fluid-basis), 15px);
}

.data-view__item--03 .data-view__icon-wrap {
	width: 8.25rem;
}

.data-view__item--04 .data-view__label {
	margin-top: clamp(4.6px, 4.6px + 18 * var(--fluid-basis), 22.6px);
}

.data-view__item--04 .data-view__icon-wrap {
	width: 7rem;
}

.data-view__item--05 {
	padding: 0.625rem 0.625rem 0.916875rem 0.625rem;
}

.data-view__item--05 .data-view__label {
	margin-top: clamp(0px, 0px + 17.6 * var(--fluid-basis), 17.6px);
}

.data-view__item--05 .data-view__icon-wrap {
	width: 8.625rem;
}

.data-view__item--06 .data-view__label {
	margin-top: clamp(0px, 0px + 12.6 * var(--fluid-basis), 12.6px);
}

.data-view__item--06 .data-view__icon-wrap {
	width: 7.5rem;
}

.data-view__item--07 .data-view__label {
	margin-top: clamp(0px, 0px + 16.6 * var(--fluid-basis), 16.6px);
}

.data-view__item--07 .data-view__icon-wrap {
	width: 8.25rem;
}

.data-view__item--08 .data-view__icon-wrap {
	width: 10rem;
}

.data-view__item--09 .data-view__label {
	margin-top: clamp(2.6px, 2.6px + 18 * var(--fluid-basis), 20.6px);
}

.data-view__item--09 .data-view__icon-wrap {
	width: 7.5rem;
}

.data-view__item--01,
.data-view__item--02,
.data-view__item--03,
.data-view__item--04 {
	padding: 0.9375rem 0.625rem 0.916875rem 0.625rem;
}

.data-view__item--05,
.data-view__item--06,
.data-view__item--07,
.data-view__item--08,
.data-view__item--09 {
	padding: 0.9375rem 0.625rem 3.104375rem 0.625rem;
}

.data-view__label {
	font-size: 1.5rem;
}

.data-view__value {
	font-size: 1.5rem;
}

.data-view__num {
	font-size: 4rem;
}

.data-view__date {
	font-size: 0.75rem;
	margin-top: 1.625rem;
}

.global-expansion {
	margin-top: 9.375rem;
}

.global-expansion__date {
	font-size: 1rem;
	line-height: 2;
	margin-top: 2.03125rem;
}

.global-expansion__content-list {
	margin-top: 3.125rem;
}

.global-expansion__content {
	align-items: center;
	gap: 2rem;
	grid-template-areas: "img text";
	grid-template-columns: 688fr 380fr;
}

.global-expansion__content:nth-child(2n) {
	grid-template-areas: "text img";
	grid-template-columns: 380fr 688fr;
}

.global-expansion__img-wrap--content01 {
	border-radius: 50px 0 0 0;
}

.global-expansion__img-wrap--content02 {
	border-radius: 0 0 50px 0;
}

.global-expansion__content-img {
	aspect-ratio: 688/280;
}

.global-expansion__content-img--01 {
	border-radius: 50px 0 0 0;
}

.global-expansion__content-img--02 {
	border-radius: 0 0 50px 0;
}

.global-expansion__text {
	font-size: 1rem;
	line-height: 2;
}

.global-expansion__gallery {
	gap: 1.875rem;
}

.global-expansion__gallery-img {
	aspect-ratio: 346/250;
}

.internship {
	margin-bottom: 17.5rem;
	margin-top: 6.25rem;
}

.internship__list {
	margin-top: 3.75rem;
}

.internship__other {
	margin-top: 3.75rem;
}

.internship__other-heading {
	font-size: 1.5rem;
	gap: 0.625rem;
	line-height: 1.33333;
}

.internship__other-heading::before {
	width: 15px;
}

.internship__other-link {
	padding: 1.25rem 1.875rem;
}

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

.internship__arrow {
	width: 1.5625rem;
}

.internship__arrow::before {
	height: 0.3125rem;
	left: 49%;
	width: 0.3125rem;
}

.internship__past {
	margin-top: 6.25rem;
}

.internship__past-heading {
	font-size: 1.5rem;
	gap: 0.625rem;
	line-height: 1.33333;
}

.internship__past-heading::before {
	width: 15px;
}

.internship__year {
	margin-top: 3.75rem;
}

.internship__year + .internship__year {
	margin-top: 2.5rem;
}

.internship__year-link {
	gap: 1.375rem;
	padding: 1.25rem 1.75rem;
}

.internship__year-text {
	font-size: 1rem;
	line-height: 2;
}

.job-detail {
	margin-top: 9.375rem;
}

.job-detail__inner {
	gap: 9.375rem;
}

.job-detail__header {
	gap: 1.875rem;
	padding-top: 3.125rem;
}

.job-detail__category {
	font-size: 2rem;
	line-height: 1;
	padding-bottom: 0.3125rem;
	transform: translateY(0.3125rem);
}

.job-detail__title {
	font-size: 1.5rem;
	gap: 0.625rem;
	line-height: 1;
}

.job-detail__title::before {
	width: 15px;
}

.job-detail__lead {
	font-size: 1rem;
	line-height: 2;
	margin-top: 3.75rem;
}

.job-detail__interview {
	gap: 2.75rem;
	grid-template-columns: 708fr 208fr;
	margin-top: 3.75rem;
	padding: 3.125rem 4.375rem;
}

.job-detail__name {
	font-size: 1.5rem;
	line-height: 1.8;
}

.job-detail__info {
	font-size: 1rem;
	line-height: 1.8;
}

.job-detail__text {
	font-size: 1rem;
	line-height: 2;
	margin-top: 1.5625rem;
}

.job-detail__img-wrap {
	border-radius: 25px;
}

.job-detail__img {
	border-radius: 25px;
}

.job-nav {
	margin-top: 9.375rem;
}

.job-nav__content {
	background: url("../images/job/job-nav-bg.webp") no-repeat center center/cover;
	padding: 3.125rem;
}

.job-nav__title {
	font-size: 1.5rem;
	line-height: 1.8;
}

.job-nav__lead {
	font-size: 1rem;
	line-height: 2;
	text-align: center;
}

.job-nav__list-wrap {
	border-radius: 30px;
	padding: 1.875rem;
}

.job-nav__list {
	flex-wrap: wrap;
	gap: 1.875rem 4.375rem;
	justify-content: center;
	margin-left: auto;
	margin-right: auto;
	max-width: 728px;
}

.job-nav__item {
	display: flex;
	justify-content: center;
}

.job-nav__link {
	gap: 0.6875rem;
}

.job {
	margin-top: 6.25rem;
}

.job__lead {
	font-size: clamp(10px, 1600 / var(--cq-ref) * 1cqw, 17px);
	font-weight: var(--font-weight-bold);
	line-height: 2;
}

.job__list {
	grid-template-columns: repeat(4, 1fr);
	margin-top: 6.25rem;
}

.job__item-header {
	padding-bottom: 1.015625rem;
	padding-top: 0.984375rem;
}

.job__subtitle {
	line-height: 1.71429;
}

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

.job__role {
	font-size: 0.875rem;
	line-height: 1.1;
	padding-bottom: 0.9375rem;
	padding-left: clamp(5px, 5px + 20 * var(--fluid-basis), 25px);
	padding-right: clamp(5px, 5px + 20 * var(--fluid-basis), 25px);
	padding-top: 0.9375rem;
}

.job__role.job__role--sub {
	padding-bottom: 0.4375rem;
	padding-top: 0.4375rem;
}

.job__role-sub {
	margin-top: 0.3125rem;
}

.training {
	margin-bottom: 12.5rem;
	margin-top: 9.375rem;
	padding-bottom: 7.5rem;
	padding-top: 7.5rem;
}

.training__item {
	padding: 1.875rem 4.375rem;
}

.training__item-title {
	font-size: 1.5rem;
	line-height: 1.8;
}

.training__item-text {
	font-size: 1rem;
	line-height: 2;
}

.training__img {
	aspect-ratio: 300/200;
}

.employees {
	margin-top: 6.25rem;
}

.employees__filters {
	justify-content: center;
}

.employees__filter {
	font-size: 1rem;
	line-height: 2;
}

.employees__list {
	grid-template-columns: repeat(4, 1fr);
}

.employees__img-wrap {
	border-radius: 25px;
}

.employees__img {
	aspect-ratio: 264/400;
	border-radius: 25px;
}

.employees__info {
	border-radius: 0 20px 0 0;
	min-width: 13.75rem;
	padding-bottom: 0.75rem;
	padding-left: 0.9375rem;
	padding-right: 0.9375rem;
	padding-top: 0.75rem;
}

.employees__info-inner::after {
	height: 0.5rem;
	right: -2rem;
	width: 1.875rem;
}

.employees__name {
	font-size: 1rem;
}

.employees__position {
	font-size: 0.625rem;
	margin-top: 0.375rem;
}

.employees__coming-soon {
	margin-bottom: 13.5625rem;
	margin-top: 3.125rem;
	padding-bottom: 7.5rem;
	padding-top: 7.5rem;
}

.employees__coming-soon-text {
	font-size: 1rem;
	line-height: 2;
}

.interviews {
	margin-bottom: 11.1875rem;
	padding-bottom: 7.5rem;
	padding-top: 7.5rem;
}

.interviews__list {
	grid-template-columns: repeat(5, 1fr);
}

.interviews__img-wrap {
	border-radius: 20px;
}

.interviews__img {
	aspect-ratio: 208/314;
	border-radius: 20px;
}

.interviews__info {
	border-radius: 0 20px 0 0;
	min-width: 11.25rem;
	padding-bottom: 0.4375rem;
	padding-left: 0.9375rem;
	padding-right: 0.9375rem;
	padding-top: 0.4375rem;
}

.interviews__info-inner::after {
	height: 0.5rem;
	right: -2rem;
	width: 1.875rem;
}

.interviews__name {
	font-size: 1rem;
}

.interviews__position {
	font-size: 0.625rem;
	margin-top: 0.375rem;
}

.person-detail {
	margin-top: 6.25rem;
	padding-bottom: 9.375rem;
}

.person-detail__intro {
	gap: 3.75rem;
	grid-template-columns: 465fr 745fr;
	margin-right: calc(50% - 50cqw);
}

.person-detail__category {
	font-size: 1.5625rem;
	line-height: 1.28;
	padding-top: 3.125rem;
}

.person-detail__category::before {
	width: calc(100% - 0.9375rem);
}

.person-detail__title {
	font-size: 2.1875rem;
	line-height: 1.8;
	margin-top: clamp(30px, 9900 / var(--cq-ref) * 1cqw, 120px);
}

.person-detail__meta {
	font-size: 1rem;
	line-height: 2;
}

.person-detail__sec01 .person-detail__img {
	aspect-ratio: 745/560;
}

.person-detail__sec01-body {
	margin-top: 9.375rem;
}

.person-detail__heading {
	font-size: 1.5rem;
	line-height: 1.33333;
	padding-top: 1.875rem;
}

.person-detail__sec01 .person-detail__text {
	margin-top: 3.125rem;
}

.person-detail__text {
	font-size: 1rem;
	line-height: 2;
}

.person-detail__sec02 {
	margin-top: 6.25rem;
}

.person-detail__sec02 .person-detail__img {
	aspect-ratio: 700/526;
}

.person-detail__sec02-body {
	gap: 3.125rem;
	grid-template-columns: 700fr 350fr;
	margin-top: 3.125rem;
}

.person-detail__sec02 .person-detail__text.person-detail__text--second {
	margin-top: 3.125rem;
}

.person-detail__sec03 {
	margin-top: 6.25rem;
}

.person-detail__sec03-body {
	gap: 3.125rem;
	grid-template-columns: 584.6fr 465.399fr;
}

.person-detail__sec03 .person-detail__img {
	aspect-ratio: 465.399/350;
}

.person-detail__note {
	font-size: 1rem;
	font-weight: var(--font-weight-bold);
	line-height: 2;
	margin-top: 6.25rem;
}

.talk {
	margin-bottom: 11.25rem;
	margin-top: 9.375rem;
	padding-bottom: 7.5rem;
	padding-top: 7.5rem;
}

.talk__lead {
	font-size: 1rem;
	line-height: 2;
}

.talk__frame {
	aspect-ratio: 1000/1076;
	margin-top: 1.875rem;
	padding: 3.125rem;
}

.talk__frame-text {
	font-size: 0.75rem;
}

.faq {
	margin-top: 9.375rem;
	padding-bottom: 12.5rem;
}

.faq__inner.sub-inner {
	max-width: 56.25rem;
}

.faq__group-title {
	font-size: 1.5rem;
	line-height: 1.33333;
}

.faq__item-question-btn {
	padding: 0.625rem 1.875rem 0.625rem 1.25rem;
}

.faq__item-question-text {
	font-size: 0.875rem;
}

.faq__item-answer-text {
	font-size: 0.875rem;
	padding: 1.875rem 3.125rem;
}

.process {
	margin-top: 9.375rem;
	padding-bottom: 7.5rem;
	padding-top: 7.5rem;
}

.process__lead {
	font-size: 1rem;
	font-weight: var(--font-weight-bold);
	line-height: 2;
	margin-top: 1.875rem;
}

.process__list {
	gap: 1.875rem;
}

.process__item {
	grid-template-columns: max-content max-content 1fr;
}

.process__step-label-sp {
	display: none;
}

.process__dot {
	margin-left: 4.5rem;
	top: 1.125rem;
	width: 1rem;
}

.process__dot::after {
	background-image: repeating-linear-gradient(90deg, var(--main-color), var(--main-color) 7.5px, transparent 7.5px, transparent 11.5px);
	top: 0.45625rem;
	width: 7.5rem;
}

.process__dot.process__dot--top::before {
	height: calc(100% + 3.75rem);
	top: -1.875rem;
}

.process__dot.process__dot--bottom::before {
	border-radius: 0 0 20px 20px;
	height: calc(100% + 1.25rem);
}

.process__dot::before {
	height: calc(100% + 1.875rem);
	left: -0.3125rem;
	width: 1.5625rem;
}

.process__body {
	margin-left: 8rem;
	margin-top: 0.9375rem;
}

.process__subtitle {
	line-height: 1;
}

.process__text {
	line-height: 2;
}

.recruit-info {
	margin-top: 6.25rem;
}

.recruit-info__term {
	font-size: 1.5rem;
	gap: 0.625rem;
	line-height: 1.33333;
}

.recruit-info__term::before {
	width: 15px;
}

.recruit-info__desc.recruit-info__desc--single {
	font-size: 0.9375rem;
	line-height: 1.5;
	min-height: 4.0625rem;
	padding-right: 1.75rem;
}

.recruit-info__course {
	margin-top: 2.5rem;
}

.recruit-info__role-row {
	align-items: center;
	gap: 1.375rem;
	grid-template-columns: minmax(155px, max-content) 1fr;
	min-height: 4.0625rem;
	padding: 0 1.75rem;
}

.recruit-info__dept {
	font-feature-settings: "halt" on, "kern" off;
	font-kerning: none;
	font-size: 0.9375rem;
	line-height: 1.5;
}

.recruit-info__positions {
	-moz-column-gap: 1.25rem;
	column-gap: 1.25rem;
}

.recruit-info__position {
	font-size: 0.9375rem;
	line-height: 1.5;
}

.recruit-info__note {
	font-size: 0.9375rem;
	line-height: 1.5;
	margin-top: 2.5rem;
}

.recruit-info__sublist {
	margin-top: 1.125rem;
}

.recruit-info__row {
	align-items: center;
	gap: 1.375rem;
	grid-template-columns: minmax(155px, max-content) 1fr;
	min-height: 4.0625rem;
	padding-right: 1.75rem;
}

.recruit-info__label {
	font-size: 0.9375rem;
	line-height: 1.5;
}

.recruit-info__value {
	font-size: 0.9375rem;
	line-height: 1.5;
}

.breadcrumb__item::after {
	height: 6px;
	width: 6px;
}

.btn-link {
	font-size: 1rem;
	padding-bottom: 0.75rem;
	padding-top: 0.75rem;
}

.footer__info {
	margin-left: auto;
	margin-right: auto;
	max-width: 1160px;
	padding: 5.625rem 23px 5rem 23px;
}

.footer__recruit {
	font-size: 1.25rem;
	line-height: 1;
	transform: translateY(0.125rem);
}

.footer__company {
	margin-top: 1.875rem;
}

.footer__company,
.footer__tel {
	font-size: max(1rem, 14px);
	letter-spacing: 0.02em;
	line-height: 1.5;
	text-align: left;
}

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

.header {
	height: 5.9375rem;
}

.header__inner {
	gap: 1.25rem;
	padding-left: clamp(15px, -13.5714285714px + 3.7202380952vw, 40px);
}

.header__logo {
	gap: 0.3125rem;
	grid-template-columns: 1fr;
}

:root:not(:lang(ja)) .header__logo-img {
	margin-left: auto;
	margin-right: auto;
	width: 80%;
}

.header__logo-text {
	font-size: 1.0625rem;
	text-align: center;
}

:root:not(:lang(ja)) .header__logo-text {
	font-size: 1rem;
}

.header__entry-link {
	min-width: clamp(160px, 81.1428571429px + 10.2678571429vw, 229px);
	padding-left: 1.6875rem;
	padding-right: 1.375rem;
}

.header__entry-link::after {
	height: 8px;
	right: 1rem;
	top: 50%;
	translate: 0 -50%;
	width: 8px;
}

.header__entry-label {
	font-size: 0.783625rem;
}

.header__entry-text {
	font-size: 1.5673125rem;
	letter-spacing: 0.2899868405em;
	line-height: 1.5;
}

.header-hamburger {
	display: none;
}

.header__drawer {
	display: none;
}

.section-header--center {
	align-items: center;
	text-align: center;
}

.section-header__title {
	font-size: max(18px, 1.25rem);
}

.section-header__dot {
	width: max(5px, 0.4375rem);
}

.section-header__title-ja {
	font-size: 2rem;
	line-height: 1;
}

.sub-breadcrumbs__inner.inner {
	max-width: 1120px;
}

.sub-fv {
	margin-top: 5.9375rem;
	position: relative;
}

.sub-fv__content {
	display: flex;
	flex-direction: column;
	gap: calc(1000 / var(--cq-ref) * 1cqw);
	left: 23%;
	position: absolute;
	top: 50%;
	translate: -50% -50%;
}

.sub-fv__label {
	font-size: calc(2000 / var(--cq-ref) * 1cqw);
}

.sub-fv__title {
	font-size: calc(4500 / var(--cq-ref) * 1cqw);
	line-height: 1;
}

.sub-fv__img {
	aspect-ratio: 1440/390;
}

.sub-fv.sub-fv--person-detail .sub-fv__title {
	font-size: calc(3200 / var(--cq-ref) * 1cqw);
}

.sub-fv.sub-fv--person-detail .sub-fv__img {
	aspect-ratio: 1440/200;
}

.sub-section-header {
	padding-top: 3.125rem;
}

.sub-section-header__title {
	font-size: 2rem;
	line-height: 1;
}

.sub-section-header02__title {
	font-size: 2rem;
	line-height: 1;
	padding-bottom: 1.875rem;
}

}

@media (min-width: 768px) {

a[href*="tel:"] {
	-webkit-text-decoration: none;
	cursor: default;
	pointer-events: none;
	text-decoration: none;
}

}

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

.header__logo-img {
	width: 10.7275rem;
}

}

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

.section-header__dot {
	width: clamp(7px, 7px + 2 * var(--fluid-basis-2), 9px);
}

}

@media (min-width: 1024px) and (max-height: 750px) {

.youtube-modal__content {
	width: 60%;
}

}

@media (min-width: 1100px) {

html {
	font-size: 16px;
}

}

@media (min-width: 1161px) {

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

}

@media (min-width: 1300px) {

.data-view__item {
	aspect-ratio: 1/1;
}

}

@media (min-width: 1320px) {

.header__logo {
	gap: 0.8125rem;
	grid-template-columns: 10.7275rem 1fr;
}

:root:not(:lang(ja)) .header__logo-img {
	width: 100%;
}

}

@media (min-width: 1440px) {

.top-message__lead {
	font-size: clamp(46px, 46px + 2 * var(--fluid-basis-2), 48px);
}

.top-message__text {
	font-size: clamp(16px, 16px + 2 * var(--fluid-basis-2), 18px);
}

.top-news__title {
	font-size: clamp(17px, 17px + 2 * var(--fluid-basis-2), 19px);
}

.top-news__date {
	font-size: clamp(11px, 11px + 2 * var(--fluid-basis-2), 13px);
}

.top-news__icon {
	width: clamp(4px, 4px + 2 * var(--fluid-basis-2), 6px);
}

.top-news__text {
	font-size: clamp(12px, 12px + 2 * var(--fluid-basis-2), 14px);
}

.concept__text-wrap {
	gap: clamp(20px, 20px + 10 * var(--fluid-basis-2), 30px);
}

.concept__subtitle {
	font-size: clamp(35px, 35px + 8 * var(--fluid-basis-2), 43px);
}

.concept__text {
	font-size: clamp(16px, 16px + 3 * var(--fluid-basis-2), 19px);
}

.person-detail__category {
	font-size: clamp(25px, 25px + 3 * var(--fluid-basis-2), 28px);
}

.person-detail__title {
	font-size: clamp(35px, 35px + 3 * var(--fluid-basis-2), 38px);
}

.person-detail__meta {
	font-size: clamp(16px, 16px + 3 * var(--fluid-basis-2), 19px);
}

.breadcrumb__item {
	font-size: clamp(12px, 12px + 1 * var(--fluid-basis-2), 13px);
}

.section-header__title {
	font-size: clamp(20px, 20px + 2 * var(--fluid-basis-2), 22px);
}

.section-header__title-ja {
	font-size: clamp(32px, 32px + 2 * var(--fluid-basis-2), 34px);
}

}

@media (max-width: 1023px) {

.youtube-modal__close {
	font-size: 26px;
	right: 0;
	top: -40px;
}

}

@media (max-width: 768px) {

.--delay-1,
.--delay-2,
.--delay-3,
.--delay-4,
.--delay-5,
.--delay-6 {
	transition-delay: 0s;
}

}

@media (max-width: 767px) {

:root:not(:lang(ja)) .fv__content {
	top: 94%;
}

.fv__title.fv__title--other {
	font-size: calc(2000 / var(--cq-ref-mobile) * 1cqw);
}

.fv__title--other font {
	text-indent: 5px;
}

.fv__title.fv__title--other .hl-line {
	text-indent: 5px;
}

:root:lang(en) .fv__title.fv__title--other[lang=en] {
	font-size: calc(1800 / var(--cq-ref-mobile) * 1cqw);
}

.scroll-down {
	display: none;
}

.sub-inner.not-found__inner {
	padding-left: 20px;
	padding-right: 20px;
}

.sub-fv.sub-fv--not-found .sub-fv__img-wrap {
	display: none;
}

.top-about__body {
	padding-left: 0.625rem;
	padding-right: 0.625rem;
}

.top-message__lead {
	margin-top: 1.375rem;
}

.top-message__text-wrap {
	padding-left: 0.625rem;
	padding-right: 0.625rem;
}

.top-message__img-wrap {
	border-radius: 32.857px 0 0 32.857px;
	margin-right: calc(50% - 50cqw);
	margin-top: 3.375rem;
}

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

.top-news__date-wrap {
	flex-direction: row-reverse;
	justify-content: flex-end;
}

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

.top-person__inner {
	display: grid;
	grid-template-areas: "header" "list" "lead" "btn";
}

.top-person__text-wrap {
	display: contents;
}

.section-header.top-person__header {
	gap: 1.0625rem;
	grid-area: header;
}

.top-person__lead {
	grid-area: lead;
	padding-left: 0.625rem;
	padding-right: 0.625rem;
}

.top-person__btn {
	grid-area: btn;
	padding-left: 0.625rem;
	padding-right: 0.625rem;
}

.top-person__list {
	display: flex;
	gap: 0.625rem;
	margin-right: calc(50% - 50vw);
	opacity: 0;
	overflow-x: auto;
	transform: translateX(20px);
	transition: transform 1s var(--ease-smooth-bounce), opacity 1s var(--ease-smooth-bounce);
}

.top-person__list.is-active {
	opacity: 1;
	transform: translateX(0);
}

.top-person__item {
	min-width: 17.5rem;
}

.section-header.top-recruit__header {
	gap: 1.0625rem;
}

.about-nav__list {
	gap: 0.8125rem 1.25rem;
}

.concept__text-wrap {
	margin-top: 3.125rem;
}

.concept__main-img-wrap {
	margin-left: calc(50% - 50cqw);
	margin-right: calc(50% - 50cqw);
	margin-top: 3.125rem;
}

.concept__images {
	margin-left: calc(50% - 50cqw);
	margin-right: calc(50% - 50cqw);
	margin-top: 3.125rem;
}

.craftsmanship__safety {
	margin-left: calc(50% - 50cqi);
	margin-right: calc(50% - 50cqi);
	padding-left: calc(50cqi - 50%);
	padding-right: calc(50cqi - 50%);
}

.craftsmanship__videos {
	margin-left: calc(50% - 50cqi);
	margin-right: calc(50% - 50cqi);
	padding-left: calc(50cqi - 50% - 8px);
	padding-right: calc(50cqi - 50% - 8px);
}

.youtube-modal__content {
	width: 95%;
}

.data-view__list > :first-child {
	grid-column: 1/-1;
}

.data-view__item {
	border-radius: 0 19.067px 0 0;
}

.data-view__item:not(:first-child) {
	min-height: 9.375rem;
}

.data-view__item--01 {
	display: flex;
	flex-direction: row;
	gap: 0.9375rem;
	justify-content: center;
	padding: 0.78125rem 1.25rem 0.78125rem 0.625rem;
}

.data-view__item--01 .data-view__value {
	margin-top: 0.125rem;
}

.data-view__item--02,
.data-view__item--03,
.data-view__item--04 {
	padding: 0.625rem 0.625rem 0.4375rem 0.625rem;
}

.global-expansion__img-wrap--content01 {
	margin-right: calc(50% - 50cqw);
}

.global-expansion__img-wrap--content02 {
	margin-left: calc(50% - 50cqw);
}

.global-expansion__text {
	margin-top: 1.875rem;
}

.job-detail__interview {
	grid-template-areas: "name" "info" "img" "text" "btn";
	margin-left: calc(50% - 50cqi);
	margin-right: calc(50% - 50cqi);
	padding-left: calc(50cqi - 50%);
	padding-right: calc(50cqi - 50%);
}

.job-detail__profile {
	display: contents;
}

.job-detail__name {
	grid-area: name;
}

.job-detail__info {
	grid-area: info;
}

.job-detail__text {
	grid-area: text;
}

.job-detail__btn {
	grid-area: btn;
	margin-left: auto;
	margin-right: auto;
}

.job-detail__img-wrap {
	grid-area: img;
	margin-left: auto;
	margin-right: auto;
	margin-top: 1.25rem;
	width: 66.034%;
}

.job-nav__content {
	margin-left: calc(50% - 50cqi);
	margin-right: calc(50% - 50cqi);
	padding-left: calc(50cqi - 50%);
	padding-right: calc(50cqi - 50%);
}

.job-nav__list-wrap {
	flex-direction: column;
}

.job-nav__list {
	flex-direction: column;
}

.job-nav__item:last-child .job-nav__link {
	border-bottom: none;
}

.job-nav__link {
	border-bottom: 1px solid var(--line-color);
	padding: 0.9375rem 0.3125rem;
}

.job__role-list {
	-moz-column-gap: 0.625rem;
	column-gap: 0.625rem;
	display: flex;
	flex-wrap: wrap;
}

.job__role {
	width: calc(50% - 0.3125rem);
}

.job__role:nth-last-child(2):nth-child(odd) {
	border-bottom: none;
}

.job__role-list .job__role:nth-child(odd):last-child {
	width: 100%;
}

.training__item {
	display: grid;
	grid-template-areas: "subtitle" "img" "text";
	margin-left: calc(50% - 50cqi);
	margin-right: calc(50% - 50cqi);
	padding-left: calc(50cqi - 50%);
	padding-right: calc(50cqi - 50%);
}

.training__body {
	display: contents;
}

.training__item-title {
	grid-area: subtitle;
	text-align: center;
}

.training__item-text {
	grid-area: text;
	margin-top: 3.125rem;
}

.training__img-wrap {
	grid-area: img;
	margin-top: 1.25rem;
}

.interviews__header .sub-section-header02__title {
	display: flex;
	justify-content: center;
}

.interviews__header .sub-section-header02__title::after {
	left: 50%;
	translate: -50% 0;
}

.person-detail__category {
	margin-right: calc(50% - 50cqw);
}

.person-detail__sec01-img-wrap {
	margin-left: calc(50% - 50cqw);
	margin-right: calc(50% - 50cqw);
	margin-top: 3.125rem;
}

.person-detail__sec02 .person-detail__text {
	margin-top: 3.125rem;
}

.person-detail__sec03-body {
	grid-template-areas: "img" "text";
}

.person-detail__sec03 .person-detail__text {
	grid-area: text;
	margin-top: 3.125rem;
}

.person-detail__sec03-img-wrap {
	grid-area: img;
}

.talk__header.sub-section-header02__title {
	display: flex;
	justify-content: center;
}

.talk__header.sub-section-header02__title::after {
	left: 50%;
	translate: -50% 0;
}

.process__header .sub-section-header02__title {
	display: flex;
	justify-content: center;
}

.process__header .sub-section-header02__title::after {
	left: 50%;
	translate: -50% 0;
}

.process__step {
	display: none;
}

.process__subtitle {
	margin-top: 1.5rem;
	padding-left: 0.5625rem;
}

.process__details {
	padding-left: 0.5625rem;
}

.process__text {
	padding-left: 0.5625rem;
}

.recruit-info__desc.recruit-info__desc--single {
	padding-bottom: 1.875rem;
	padding-top: 1.875rem;
}

.recruit-info__course {
	margin-right: calc(50% - 50cqw);
}

.recruit-info__positions.recruit-info__positions--gap-small {
	-moz-column-gap: 0.375rem;
	column-gap: 0.375rem;
}

.recruit-info__row {
	padding-bottom: 1.875rem;
	padding-top: 1.875rem;
}

.float-entry {
	display: none;
}

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

.header__nav {
	display: none;
}

.header__entry-link {
	gap: 0.1875rem;
}

.line-bg {
	display: none;
}

.sub-breadcrumbs {
	margin-right: calc(50% - 50vw);
	overflow-x: auto;
}

.sub-fv__content {
	background: var(--linear-gradient);
	padding-bottom: calc(4200 / var(--cq-ref-mobile) * 1cqw);
	padding-left: calc(2000 / var(--cq-ref-mobile) * 1cqw);
	padding-right: calc(2000 / var(--cq-ref-mobile) * 1cqw);
	padding-top: calc(3500 / var(--cq-ref-mobile) * 1cqw);
}

}

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

.top-person__list {
	grid-area: list;
}

}

@media (max-width: 375px) {

html {
	font-size: 4.2666666667vw;
}

}

@keyframes scrollDown {

0% {
	bottom: -4%;
}

50% {
	bottom: -2%;
}

100% {
	bottom: -4%;
}

}

@keyframes scale {

0% {
	transform: scale(1);
}

100% {
	transform: scale(1.05);
}

}

@keyframes arrow-right {

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

49% {
	transform: rotate(45deg);
	translate: 150% -50%;
	visibility: hidden;
}

50% {
	transform: rotate(45deg);
	translate: -250% -50%;
	visibility: hidden;
}

52% {
	visibility: visible;
}

100% {
	transform: rotate(45deg);
	translate: -50% -50%;
}

}

@keyframes arrow {

0% {
	transform: rotate(135deg);
	translate: -50% -50%;
}

49% {
	transform: rotate(135deg);
	translate: -50% 150%;
	visibility: hidden;
}

50% {
	transform: rotate(135deg);
	translate: -50% -250%;
	visibility: hidden;
}

52% {
	visibility: visible;
}

100% {
	transform: rotate(135deg);
	translate: -50% -50%;
}

}

@keyframes leadSweep {

0% {
	background-position: 100% 0, 0 0;
}

100% {
	background-position: -100% 0, 0 0;
}

}


