@charset "utf-8";

:root {
	--navy: #001a3e;
	--blue: #288fc6;
	--white: #fff;
	font-size: min(calc(100vw / 144), 10px);
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: var(--navy);
	font-family:
		"Noto Sans JP", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN",
		sans-serif;
	font-family: "Yu Gothic", "YuGothic", "Hiragino Sans", sans-serif;
	overflow-x: clip;
}

@media (max-width: 768px) {
	body {
		font-family: "BIZ UDPGothic", sans-serif;
	}
}
body.is-loading {
	overflow: hidden;
}

.loading {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: grid;
	place-items: center;
	background: #fff;
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transition:
		opacity 0.65s ease,
		visibility 0.65s ease;
}

.loading.is-hide {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.loading__logo {
	display: block;
	width: min(30rem, 48vw);
	height: auto;
	animation: loadingLogoPass 4s cubic-bezier(0.75, 0, 0.16, 1) 0.15s both;
	transform-origin: center;
	will-change: opacity, transform, filter;
}

@keyframes loadingLogoPass {
	0% {
		opacity: 0;
		filter: brightness(1);
		transform: scale(0.82);
	}

	10% {
		opacity: 1;
		filter: brightness(1);
		transform: scale(1);
	}

	72% {
		opacity: 1;
		filter: brightness(1);
		transform: scale(1);
	}

	86% {
		opacity: 0.22;
		filter: brightness(1.85) saturate(0.35);
		transform: scale(14);
	}

	100% {
		opacity: 0;
		filter: brightness(0) invert(1);
		transform: scale(70);
	}
}

section[id] {
	scroll-margin-top: 10rem;
}

a {
	color: inherit;
	text-decoration: none;
}

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

.zen-maru {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
	border: 0;
}

.js-fade-up {
	opacity: 0;
	transform: translateY(5rem);
	transition:
		opacity 0.75s ease,
		transform 0.75s ease;
	will-change: opacity, transform;
}

.js-fade-up.is-show {
	opacity: 1;
	transform: translateY(0);
}

.js-fade-up--stagger {
	opacity: 1;
	transform: none;
	transition: none;
}

.js-fade-up--stagger > * {
	opacity: 0;
	transform: translateY(5rem);
	transition:
		opacity 0.75s ease,
		transform 0.75s ease;
	will-change: opacity, transform;
}

.js-fade-up--stagger.is-show > * {
	opacity: 1;
	transform: translateY(0);
}

.js-fade-up--stagger.is-show > *:nth-child(1) {
	transition-delay: 0.08s;
}

.js-fade-up--stagger.is-show > *:nth-child(2) {
	transition-delay: 0.26s;
}

@media (prefers-reduced-motion: reduce) {
	.loading__logo {
		animation: none;
		opacity: 1;
		transform: none;
	}

	.js-fade-up,
	.js-fade-up--stagger > * {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

/* fixed header */
.header {
	position: fixed;
	z-index: 100;
	top: 2rem;
	left: 0;
	width: 100%;
	padding: 0 7.8rem;
	pointer-events: none;
}

.header__inner {
	display: flex;
	align-items: center;
	width: 100%;
	height: 6.4rem;
	padding: 0.7rem 3rem;
	border-radius: 10rem;
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 0.8rem 1.4rem rgba(0, 14, 34, 0.32);
	pointer-events: auto;
	backdrop-filter: blur(0.8rem);
}

.header__logo {
	display: flex;
	flex: 0 0 auto;
	align-items: center;
	gap: 1.4rem;
}

.header__logo-img img {
	width: 4.3rem;
}

.header__logo-text {
	font-size: 2.2rem;
	font-weight: 800;
	white-space: nowrap;
}

.header__logo-text b {
	display: inline-block;
	margin-left: 0.2rem;
	letter-spacing: 0.12em;
}

.global-nav {
	margin-left: auto;
}

.global-nav__list {
	display: flex;
	align-items: center;
	gap: 0.2rem;
}

.global-nav__list > li {
	position: relative;
}

.global-nav__list > li > a:not(.global-nav__contact) {
	display: flex;
	align-items: center;
	min-height: 4.5rem;
	padding: 0 1rem;
	font-size: 1.6rem;
	font-weight: 700;
	white-space: nowrap;
	transition: color 0.2s ease;
}

.global-nav__list > li > a:not(.global-nav__contact):hover,
.nav-item--children:focus-within > a {
	color: var(--blue);
}

.chevron {
	width: 0.7rem;
	height: 0.7rem;
	margin: -0.35rem 0 0 1rem;
	border-right: 0.2rem solid var(--blue);
	border-bottom: 0.2rem solid var(--blue);
	transform: rotate(45deg);
	transition: transform 0.2s ease;
	
}

.dropdown {
	position: absolute;
	top: calc(100% + 0.7rem);
	left: 50%;
	width: max-content;
	min-width: 16rem;
	padding: 0.8rem;
	border-radius: 0.8rem;
	background: rgba(255, 255, 255, 0.98);
	box-shadow: 0 0.8rem 2rem rgba(0, 14, 34, 0.2);
	opacity: 0;
	visibility: hidden;
	transform: translate(-50%, -0.8rem);
	transition:
		opacity 0.2s ease,
		visibility 0.2s ease,
		transform 0.2s ease;
}

.dropdown::before {
	position: absolute;
	right: 0;
	bottom: 100%;
	left: 0;
	height: 1rem;
	content: "";
}

.dropdown a {
	display: block;
	padding: 1rem 1.4rem;
	border-radius: 0.5rem;
	font-size: 1.6rem;
	font-weight: 700;
	transition:
		color 0.2s ease,
		background 0.2s ease;
}

.dropdown a:hover,
.dropdown a:focus-visible {
	color: var(--blue);
	background: #eef8fd;
	outline: 0;
}

.nav-item--children:hover .dropdown,
.nav-item--children:focus-within .dropdown {
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, 0);
}

.nav-item--children:hover .chevron,
.nav-item--children:focus-within .chevron {
	transform: translateY(0.3rem) rotate(225deg);
}

.global-nav__contact {
	display: grid;
	place-items: center;
	min-width: 14.8rem;
	height: 4.5rem;
	margin-left: 1rem;
	padding: 0 2.2rem;
	border-radius: 2.3rem;
	color: var(--white);
	background: var(--blue);
	border: 1px solid var(--blue);
	font-size: 1.6rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	transition:
		filter 0.2s ease,
		transform 0.2s ease;
}

.global-nav__contact:hover {
	color: var(--blue);
	background: var(--white);
}

.menu-check,
.menu-button {
	display: none;
}

/* first view */
.fv {
	position: relative;
	/* min-height: 82rem; */
	height: 100vh;
	overflow: hidden;
	background: #fff;
}

.fv::before {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(
		90deg,
		#fff 0%,
		#fff 25%,
		rgba(255, 255, 255, 0.92) 34%,
		rgba(255, 255, 255, 0.56) 48%,
		rgba(255, 255, 255, 0.18) 64%,
		rgba(255, 255, 255, 0) 100%
	);
	pointer-events: none;
	content: "";
}

.fv__slider {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 0;
	width: 75%;
}

.fv__slide {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	opacity: 0;
	transition: opacity 1.6s ease;
}

.fv__slide.is-active {
	opacity: 1;
}

.fv__slide04 {
	object-position: center;
}

.fv__inner {
	position: relative;
	z-index: 2;
	width: min(100%, 115.4rem);
	width: 85vw;
	margin: 0 auto;
	padding: 15.5rem 0 6rem;
	padding: 9vw 0 6rem;
}

.fv__content {
	width: 55rem;
}

.fv__logo {
	width: 46rem;
	margin: 0;
}

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

.fv__catch {
	margin: 3.1rem 0 2.2rem;
	font-size: 3.2rem;
	line-height: 1.55;
	letter-spacing: 0.05em;
}

.fv__rule {
	width: 46rem;
	height: 0.3rem;
	background: var(--navy);
}

.fv__description {
	margin: 2.6rem 0 0;
	color: #111;
	font-size: 2.1rem;
	font-weight: 500;
	line-height: 1.75;
	letter-spacing: 0.05em;
}

.fv__contact {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 46rem;
	height: 6.5rem;
	margin-top: 3rem;
	padding: 0 3.4rem 0 6rem;
	border-radius: 4rem;
	color: var(--white);
	background: var(--blue);
	border: 2px solid var(--blue);
	box-shadow: 0 0.5rem 0.7rem rgba(0, 0, 0, 0.32);
	font-size: 2.2rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	transition:
		filter 0.2s ease,
		transform 0.2s ease;
}

.fv__contact:hover {
	color: var(--blue);
	background: #FFF;
}

.mail-icon {
	position: relative;
	width: 4rem;
	height: 3rem;
}

.mail-icon__img {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: opacity 0.2s ease;
}

.mail-icon__img--blue {
	opacity: 0;
	transition: transform 0.2s ease;
}

.fv__contact:hover .mail-icon__img--white {
	opacity: 0;
	transition: transform 0.2s ease;
}

.fv__contact:hover .mail-icon__img--blue {
	opacity: 1;
	transition: transform 0.2s ease;
}

.button-arrow {
	justify-self: end;
	font-size: 3rem;
	line-height: 1;
}

.ctabtn {
	display: none;
}

/* about us */
.about-us {
	position: relative;
	background: #fff url("../img/about-bg.webp") center top / 100% auto no-repeat;
}

.about-us__main {
	display: grid;
	grid-template-columns: 75rem 1fr;
	gap: 5rem;
	width: min(100%, 131.4rem);
	/* min-height: 78rem;
	min-height: 55vw; */
	margin: 0 auto;
	padding-bottom: 10rem;
}

.about-us__visuals {
	display: grid;
	grid-template-columns: repeat(2, 34.6rem);
	gap: 4rem;
	align-self: end;
	/* padding-bottom: 1rem; */
}

.about-us__visuals img {
	display: block;
	width: 34.6rem;
	height: 24rem;
	border-radius: 1.2rem;
	object-fit: cover;
}

.about-us__content {
	align-self: start;
	padding-top: 25rem;
	padding-top: 20vw;
}

.section-heading h2 {
	margin: 0;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 6.8rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.1em;
}

.section-heading h2 > span {
	color: var(--blue);
}

.section-heading h2.is-split .heading-char {
	display: inline-block;
	color: inherit;
	opacity: 0;
	transform: translateY(0.45em);
	transition:
		opacity 0.45s ease,
		transform 0.45s ease;
	will-change: opacity, transform;
}

.section-heading h2.is-split .heading-char--blue {
	color: var(--blue);
}

.news-section .section-heading h2.is-split .heading-char--blue {
	color: var(--navy);
}

.section-heading h2.is-split .heading-char.visible {
	opacity: 1;
	transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
	.section-heading h2.is-split .heading-char {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

.section-heading__sub {
	display: flex;
	align-items: center;
	gap: 2rem;
	margin-top: 0.5rem;
}

.section-heading__sub > span {
	width: 23.5rem;
	height: 0.2rem;
	background: var(--navy);
}

.section-heading__sub p {
	margin: 0;
	font-size: 1.8rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	white-space: nowrap;
}

.about-us__content > h3 {
	margin: 3.8rem 0 2.5rem;
	font-size: 3.6rem;
	line-height: 1.2;
	letter-spacing: 0.25em;
}

.about-us__text {
	margin: 0 0 2.6rem;
	color: #111;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.75;
	letter-spacing: 0.05em;
}

.about-us__button {
	display: grid;
	grid-template-columns: 1fr 2.4rem;
	align-items: center;
	text-align: center;
	width: 30.5rem;
	height: 5.2rem;
	margin: 3.4rem 0 0 6rem;
	padding: 0 2rem;
	border-radius: 3rem;
	color: #fff;
	background: var(--blue);
	border: 1px solid var(--blue);
	box-shadow: 0 0.4rem 0.6rem rgba(0, 0, 0, 0.34);
	font-size: 2.2rem;
	letter-spacing: 0.08em;
	transition:
		filter 0.2s ease,
		transform 0.2s ease;
}

.about-us__button:hover {
	color: var(--blue);
	background: #FFF;
	transition:
		filter 0.2s ease,
		transform 0.2s ease;
}

.about-us__button span:last-child {
	justify-self: end;
	font-size: 2.8rem;
	line-height: 1;
}

.about-features {
	position: relative;
	overflow: hidden;
	background: #fff;
}

.about-features::before {
	position: absolute;
	top: 16rem;
    left: 50%;
    width: 120%;
    height: 30rem;
	border-radius: 50% 50% 0 0 / 28% 28% 0 0;
	background: var(--blue);
	content: "";
	transform: translateX(-50%);
}

.about-features__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	width: min(100%, 100rem);
	margin: 0 auto;
	padding: 0 0 8rem;
}

.feature-card {
	color: #fff;
	text-align: center;
}

.feature-card__icon {
	display: grid;
	place-items: center;
	width: 22.8rem;
	height: 22.8rem;
	margin: 0 auto 2.4rem;
	border-radius: 50%;
}

.feature-card__icon img {
	display: block;
	width: 100%;
	height: 100%;
}

.feature-card h3 {
	margin: 0 0 2rem;
	color: #fff;
	font-size: 2.4rem;
	letter-spacing: 0.22em;
}

.feature-card p {
	margin: 0;
	color: #fff;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.65;
	letter-spacing: 0.06em;
}

/* business */
.business-section {
	position: relative;
	min-height: 105.8rem;
	overflow: hidden;
	background: #eef1f3 url("../img/business-bg.webp") center / cover no-repeat;
}

.business-section::before {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: rgba(255, 255, 255, 0.68);
	content: "";
	pointer-events: none;
}

.business-section__inner {
	position: relative;
	z-index: 2;
	width: min(100%, 120rem);
	min-height: 105.8rem;
	margin: 0 auto;
}

.business-heading {
	position: absolute;
	z-index: 5;
	top: 8.7rem;
	left: 3rem;
}

.business-heading .section-heading h2 {
	font-size: 6.8rem;
}

.business-heading .section-heading__sub > span {
	width: 29.5rem;
}

.business-heading__lead {
	margin: 2.8rem 0 0;
	font-size: 2.3rem;
	font-weight: 700;
	line-height: 1.8;
	letter-spacing: 0.05em;
}

.business-heading__lead strong {
	margin-right: 0.8rem;
	color: var(--blue);
	font-size: 4rem;
	font-style: italic;
	font-weight: 500;
	line-height: 0;
}

.business-stage {
	position: absolute;
	z-index: 2;
	top: 9.5rem;
	left: 17.5rem;
	width: 90rem;
	height: 82rem;
}

.business-card {
	position: absolute;
	display: block;
	height: auto;
	filter: drop-shadow(0.4rem 0.7rem 0.35rem rgba(0, 14, 34, 0.38));
	transition:
		filter 0.25s ease,
		transform 0.25s ease;
	will-change: transform;
}

.business-card:hover,
.business-card:focus-visible {
	filter: drop-shadow(0.6rem 1rem 0.45rem rgba(0, 14, 34, 0.42));
	outline: 0;
}

.business-card img {
	display: block;
	width: 100%;
	height: auto;
}

.business-card--01 {
	z-index: 2;
	top: 0;
	left: 22rem;
	width: 40.5rem;
}

.business-card--01:hover,
.business-card--01:focus-visible {
	transform: translateY(-1.2rem);
}

.business-card--02 {
	z-index: 1;
	top: 15rem;
	left: 51.5rem;
	width: 33.7rem;
}

.business-card--02:hover,
.business-card--02:focus-visible {
	transform: translate(1.2rem, -0.8rem);
}

.business-card--03 {
	z-index: 2;
	top: 48.5rem;
	left: 42.3rem;
	width: 32.8rem;
}

.business-card--03:hover,
.business-card--03:focus-visible {
	transform: translate(0.8rem, 1.2rem);
}

.business-card--04 {
	z-index: 2;
	top: 48.5rem;
	left: 10rem;
	width: 31.5rem;
}

.business-card--04:hover,
.business-card--04:focus-visible {
	transform: translate(-0.8rem, 1.2rem);
}

.business-card--05 {
	z-index: 1;
	top: 15rem;
	left: 0;
	width: 33.7rem;
}

.business-card--05:hover,
.business-card--05:focus-visible {
	transform: translate(-1.2rem, -0.8rem);
}

.business-center {
	position: absolute;
	z-index: 4;
	top: 39rem;
	left: 35.8rem;
	width: 13.9rem;
}

.business-center__body {
	width: 100%;
}

.business-center__body img {
	display: block;
	width: 100%;
	height: auto;
}

.business-section__summary {
	position: absolute;
	z-index: 5;
	right: 0;
	bottom: 3.5rem;
	left: 0;
	display: grid;
	place-items: center;
	width: 86rem;
	height: 6rem;
	margin: auto;
	border: 0.2rem solid var(--navy);
	border-radius: 3.2rem;
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0.35rem 0.45rem 0.3rem rgba(0, 14, 34, 0.35);
	font-size: 1.65rem;
	font-weight: 700;
	letter-spacing: 0.04em;
}

/* news */
.news-section {
	min-height: 105.7rem;
	color: #fff;
	background-image: url("../img/news_bg.webp"), linear-gradient(135deg, #45bbed 0%, #2588bc 100%);
	background-position: center, center;
	background-size: cover, cover;
	background-repeat: no-repeat, no-repeat;
}

.news-section__inner {
	width: min(100%, 132rem);
	min-height: 105.7rem;
	margin: 0 auto;
	padding-top: 10.5rem;
}

.news-section .section-heading {
	width: 115.4rem;
	margin: 0 auto;
}

.section-heading--light h2,
.section-heading--light .section-heading__sub p {
	color: #fff;
}

.section-heading--light .section-heading__sub > span {
	width: 13.5rem;
	background: #fff;
}

.news-list {
	width: 96rem;
	margin: 12.5rem auto 0;
	border-top: 0.1rem solid rgba(255, 255, 255, 0.85);
}

.news-item {
	display: grid;
	grid-template-columns: 13rem 13rem 1fr;
	align-items: center;
	min-height: 7.3rem;
	padding: 0 2.5rem;
	border-bottom: 0.1rem solid rgba(255, 255, 255, 0.85);
	color: #fff;
	transition: background 0.2s ease;
}

.news-item:hover {
	background: rgba(255, 255, 255, 0.08);
}

.news-item time {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.65rem;
	letter-spacing: 0.06em;
}

.news-item__category {
	display: grid;
	place-items: center;
	width: 12.5rem;
	height: 4.8rem;
	border-radius: 1rem;
	color: var(--blue);
	background: #fff;
	font-size: 1.6rem;
	font-weight: 700;
	letter-spacing: 0.12em;
}

.news-item__title {
	padding-left: 5rem;
	font-size: 1.65rem;
	letter-spacing: 0.03em;
}

.news-section__button {
	display: grid;
	grid-template-columns: 1fr 2.5rem;
	align-items: center;
	width: 44rem;
	height: 6rem;
	margin: 8rem auto 0;
	padding: 0 4rem 0 10rem;
	border: 1px solid var(--navy);
	border-radius: 3.2rem;
	color: var(--navy);
	background: #fff;
	box-shadow: 0.3rem 0.4rem 0.25rem rgba(0, 0, 0, 0.35);
	font-size: 1.75rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	transition:
		filter 0.2s ease,
		transform 0.2s ease;
}

.news-section__button:hover {
	color: #FFF;
	background: var(--navy);
	border: 1px solid #FFF;
}

.news-section__button span:last-child {
	justify-self: end;
	font-size: 2.4rem;
}

.site-banners {
	display: grid;
	grid-template-columns: repeat(2, 64.9rem);
	gap: 2rem;
	margin-top: 6.5rem;
}

.site-banners a {
	display: block;
	transition:
		filter 0.2s ease,
		transform 0.2s ease;
}

.site-banners a:hover {
	filter: brightness(1.08);
	transform: translateY(-0.3rem);
}

.site-banners img {
	display: block;
	width: 64.9rem;
	height: 28.5rem;
}

/* prize */
.prize-section {
	min-height: 81rem;
	background: #f8f8f8 url("../img/prize-bg.webp") center / cover no-repeat;
}

.prize-section__inner {
	width: min(100%, 110rem);
	margin: 0 auto;
	padding: 10.5rem 2rem 7rem;
	text-align: center;
}

.prize-section h2 {
	margin: 0;
	font-size: 3.6rem;
	line-height: 1.5;
	letter-spacing: 0.05em;
}

.prize-section__description {
	margin: 6rem 0 0;
	color: #111;
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 1.8;
	letter-spacing: 0.05em;
}

.prize-section__award {
	display: block;
	width: 80rem;
	height: auto;
	margin: 5.5rem auto 0;
}

.prize-section__note {
	margin: 5.5rem 0 0;
	color: #111;
	font-size: 1.8rem;
	font-weight: 500;
	letter-spacing: 0.02em;
}

/* recruit */
.recruit-section {
	background: #fff;
}

.recruit-section__visual {
	position: relative;
	min-height: 60rem;
	overflow: hidden;
	--recruit-bg-bottom: -33vw;
	background-image: url("../img/recruit-bg.webp");
	background-position: center bottom var(--recruit-bg-bottom);
	background-size: cover;
	background-repeat: no-repeat;
}

.recruit-section__visual::before {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: rgba(255, 255, 255, 0.18);
	content: "";
}

.recruit-section__txt {
	position: absolute;
	top: 7.5rem;
	left: min(40vw, 10rem);
	z-index: 2;
	display: block;
	width: 50rem;
	height: auto;
}

.recruit-section__lead {
	position: absolute;
	top: 30rem;
	left: 6vw;
	z-index: 3;
	margin: 0;
	padding: 0;
	color: #111;
	text-shadow:0 0 10px #FFF;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.7;
	text-align: left;
	letter-spacing: 0.06em;
}

.recruit-section__person {
	position: absolute;
	right: 2vw;
	bottom: 0;
	z-index: 2;
	display: block;
	width: 70rem;
	height: auto;
}

.recruit-section__visual {
	position: relative;
	--recruit-container: min(calc(100% - 4rem), 135rem);
	--recruit-gutter: calc((100% - var(--recruit-container)) / 2);
}

.recruit-section__txt {
	left: calc(var(--recruit-gutter) + 2rem);
}

.recruit-section__lead {
	left: calc(var(--recruit-gutter) + 2rem);
}

.recruit-section__person {
	right: var(--recruit-gutter);
}

.recruit-section__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: min(calc(100% - 4rem), 135rem);
	min-height: 25rem;
	margin: 0 auto;
	padding: 0;
	background: #fff;
}

.recruit-section__heading h2 {
	font-size: 8.6rem;
	font-weight: 900;
	line-height: 0.95;
	letter-spacing: 0.13em;
}

.recruit-section__heading .section-heading__sub {
	gap: 2rem;
	margin-top: 1.4rem;
}

.recruit-section__heading .section-heading__sub > span {
	width: 31rem;
	height: 0.2rem;
}

.recruit-section__heading .section-heading__sub p {
	font-size: 2.3rem;
	font-weight: 800;
	letter-spacing: 0.05em;
}

.recruit-section__button {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6.8rem;
	width: 57.5rem;
	height: 7rem;
	border: 0.3rem solid var(--blue);
	border-radius: 10rem;
	color: var(--blue);
	background: #fffb00;
	background: #FFF;
	box-shadow: 0 0.5rem 0.6rem rgba(0, 0, 0, 0.35);
	font-size: 2.9rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	transition:
		filter 0.2s ease,
		transform 0.2s ease;
}

.recruit-section__button:hover {
	color: #FFF;
	background: var(--blue);
}

.recruit-section__button span:last-child {
	font-size: 2.7rem;
	line-height: 1;
}

/* contact */
.contact-section {
	position: relative;
	overflow: hidden;
	background: #fff;
}

.contact-section__inner {
	position: relative;
	min-height: 56rem;
	padding-top: 9.2rem;
	text-align: center;
	background: #f3f3f3 url("../img/contact-bg.webp") center / cover no-repeat;
}

.contact-section__inner::before {
	position: absolute;
	inset: 0;
	background: rgba(255, 255, 255, 0.68);
	content: "";
}

.contact-section__heading,
.contact-section__lead,
.contact-section__button {
	position: relative;
	z-index: 1;
}

.contact-section__heading {
	display: inline-block;
	text-align: left;
}

.contact-section__heading h2 {
	font-size: 6.8rem;
	font-weight: 900;
	line-height: 0.95;
	letter-spacing: 0.05em;
}

.contact-section__heading .section-heading__sub {
	gap: 2.2rem;
	margin-top: 1.2rem;
}

.contact-section__heading .section-heading__sub > span {
	width: 23rem;
	height: 0.2rem;
}

.contact-section__heading .section-heading__sub p {
	font-size: 1.8rem;
	font-weight: bold;
	letter-spacing: 0.05em;
}

.contact-section__lead {
	margin: 6.2rem 0 0;
	color: #111;
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 1.55;
	letter-spacing: 0.05em;
}

.contact-section__lead::before,
.contact-section__lead::after {
	position: absolute;
	top: 0.2rem;
	width: 4rem;
    height: 7.25rem;
	background: center / contain no-repeat;
	content: "";
}

.contact-section__lead::before {
	left: calc(50% - 28.4rem);
	background-image: url("../img/contact-dec01.webp");
}

.contact-section__lead::after {
	right: calc(50% - 28.4rem);
	background-image: url("../img/contact-dec02.webp");
}

.contact-section__button {
	display: block;
	width: 78rem;
	margin: 3.4rem auto 0;
	filter: drop-shadow(0 0.45rem 0.5rem rgba(0, 0, 0, 0.34));
	transition:
		filter 0.2s ease,
		transform 0.2s ease;
}

/* .contact-section__button:hover {
	filter: brightness(1.04) drop-shadow(0 0.45rem 0.5rem rgba(0, 0, 0, 0.34));
	transform: translateY(-0.2rem);
} */

.contact-section__button img {
	display: block;
	width: 100%;
	height: auto;
}

.contact-section__links {
	display: grid;
	grid-template-columns: 1fr 1fr;
	width: min(100%, 120rem);
	min-height: 18.8rem;
	margin: 0 auto;
	padding: 3.7rem 2rem 2.8rem;
}

.contact-link {
	display: flex;
	align-items: center;
	color: var(--navy);
}

.contact-link--tel {
	justify-content: flex-end;
	gap: 3.2rem;
	padding-right: 5rem;
	border-right: 0.2rem solid #49a6d1;
}

.contact-link--faq {
	gap: 3.2rem;
	padding-left: 5rem;
}

.contact-link img {
	display: block;
	flex: 0 0 auto;
	width: 12.2rem;
	height: 12.2rem;
}

.contact-link__text {
	display: grid;
	color: #111;
	text-align: left;
}

.contact-link__label {
	display: inline-grid;
	place-items: center;
	width: max-content;
	min-width: 26.5rem;
	height: 3rem;
	padding: 0 1.8rem;
	border-radius: 10rem;
	color: #fff;
	background: #111;
	font-size: 1.4rem;
	font-weight: 700;
	letter-spacing: 0.08em;
}

.contact-link__number {
	margin-top: 1rem;
	color: #111;
	font-size: 4.4rem;
	font-weight: 900;
	line-height: 1;
	letter-spacing: 0.1em;
	position: relative;
}

.contact-link__number::before {
	display: none;
	position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 1px;
	background: var(--navy);
}

.contact-link--tel:hover .contact-link__number::before {
	display: block;
}


.contact-link__time {
	display: flex;
	align-items: center;
	gap: 1.6rem;
	margin-top: 1.2rem;
	color: #111;
	font-size: 1.8rem;
	font-weight: 700;
	letter-spacing: 0.04em;
}

.contact-link__time span {
	display: inline-grid;
	place-items: center;
	min-width: 8.2rem;
	height: 2.4rem;
	border: 0.1rem solid #111;
	border-radius: 0.4rem;
	font-size: 1.3rem;
}

.contact-link__title {
	color: var(--blue);
	font-size: 3.6rem;
	font-weight: 900;
	line-height: 1;
	letter-spacing: 0.1em;
}

.contact-link__desc {
	margin-top: 1.3rem;
	color: #111;
	font-size: 1.6rem;
	font-weight: 700;
	letter-spacing: 0.04em;
}

.contact-link__button {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4rem;
	width: 24rem;
	height: 3.7rem;
	margin: 1.6rem 0 0 6.5rem;
	border: 0.1rem solid var(--navy);
	border-radius: 10rem;
	background: #fff;
	box-shadow: 0 0.25rem 0.3rem rgba(0, 0, 0, 0.28);
	color: var(--navy);
	font-size: 1.5rem;
	font-weight: 800;
	letter-spacing: 0.06em;
}

.contact-link--faq:hover .contact-link__button {
	color: #FFF;
	background: var(--navy);
}

/* works */
.works-section {
	min-height: 105.6rem;
	padding: 7.8rem 0;
	background: #fff url("../img/works-bg.webp") center / cover no-repeat;
}

.works-section__heading {
	text-align: center;
}

.works-section__heading .section-heading {
	display: inline-block;
	text-align: left;
}

.works-section__heading .section-heading__sub > span {
	width: 18.8rem;
}

.works-section__heading > p {
	margin: 4.5rem 0 0;
	color: #111;
	font-size: 1.6rem;
	font-weight: 600;
	line-height: 1.75;
	letter-spacing: 0.03em;
}

.works-grid {
	display: grid;
	grid-template-columns: 48rem 1fr;
	gap: 1.2rem;
	width: min(100%, 130rem);
	/* height: 51.4rem; */
	margin: 7rem auto 0;
}

.works-card {
	position: relative;
	display: flex;
	min-width: 0;
	flex-direction: column;
	overflow: hidden;
	border-radius: 1rem;
}

.works-card:hover,
.works-card:focus-visible {
	outline: 0;
}

.works-card__image {
	position: absolute;
	inset: 0;
	display: grid;
	min-height: 0;
	place-items: center;
	overflow: hidden;
	color: #555;
	background: #c7c7c7;
	font-size: 1.7rem;
	letter-spacing: 0.12em;
}

.works-card__image--photo {
	background: #c7c7c7;
	filter: none;
}

.works-card__image--photo::before {
	position: absolute;
	inset: 0;
	background-image: url("../img/works01.webp");
	background-position: center;
	background-size: cover;
	content: "";
	filter: contrast(1.35) saturate(1.2) brightness(0.9);
	transition: transform 0.35s ease;
}

.works-card:hover .works-card__image--photo::before,
.works-card:focus-visible .works-card__image--photo::before {
	transform: scale(1.05);
}

.works-card--02 .works-card__image--photo::before {
	background-image: url("../img/works02.webp");
}

.works-card--03 .works-card__image--photo::before {
	background-image: url("../img/works03.webp");
}

.works-card--04 .works-card__image--photo::before {
	background-image: url("../img/works04.webp");
}

.works-card__info {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 2;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	/* min-height: 9.6rem; */
	padding: 2rem 2.5rem;
	color: #fff;
	background-image: linear-gradient(180deg, rgba(9, 31, 63, 0.7), rgba(9, 31, 63, 1));
	/* background-image: linear-gradient(180deg, rgba(65, 164, 253, 0), #091F3F); */
	/* backdrop-filter: blur(0.2rem); */
}

.works-card__number {
	display: block;
	color: #19AAE4;
	color: #FFF;
	/* font-family: Arial, Helvetica, sans-serif; */
	font-size: 2.7rem;
	font-weight: 900;
	line-height: 1;
	letter-spacing: 0.08em;
}

.works-card__info h3 {
	margin: 0;
	font-size: 2.2rem;
	letter-spacing: 0.14em;
}

.works-card__info > div {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.works-card__more {
	display: flex;
	align-items: center;
	gap: 0.7rem;
	min-width: 11.5rem;
	height: 3rem;
	padding: 0 1.4rem;
	border: 0.15rem solid #fff;
	border-radius: 1.6rem;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.45rem;
	letter-spacing: 0.08em;
	transition:
		color 0.2s ease,
		background 0.2s ease;
}

.works-card:hover .works-card__more,
.works-card:focus-visible .works-card__more {
	color: var(--navy);
	background: #fff;
}

.works-card__more span {
	margin-left: auto;
}

.works-grid__right {
	display: grid;
	grid-template-rows: 30rem 30rem;
	gap: 1.2rem;
	min-width: 0;
}

.works-grid__bottom {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.2rem;
	min-width: 0;
}

.works-grid__right .works-card__info {
	/* min-height: 9.6rem; */
	padding-left: 4.5rem;
}

.works-grid__bottom .works-card__info {
	padding: 2rem;
}

.works-grid__bottom .works-card__more {
	min-width: 10.8rem;
}

.works-section__button {
	display: grid;
	grid-template-columns: 1fr 2.5rem;
	align-items: center;
	width: 43rem;
	height: 6rem;
	margin: 5.8rem auto 0;
	padding: 0 4rem 0 9.5rem;
	border: 1px solid var(--navy);
	border-radius: 3.2rem;
	color: var(--navy);
	background: #fff;
	box-shadow: 0.3rem 0.4rem 0.25rem rgba(0, 0, 0, 0.35);
	font-size: 1.75rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	transition:
		filter 0.2s ease,
		transform 0.2s ease;
}

.works-section__button:hover {
	color: #FFF;
	background: var(--navy);
}

.works-section__button span:last-child {
	justify-self: end;
	font-size: 2.4rem;
}

/* footer */
.footer {
	min-height: 56.8rem;
	color: #fff;
	background: var(--navy);
}

.footer__inner {
	position: relative;
	display: grid;
	grid-template-columns: 39rem 1fr;
	width: min(100%, 115.4rem);
	min-height: 56.8rem;
	margin: 0 auto;
	padding: 8.5rem 0 8rem;
}

.footer__company {
	padding-right: 5.5rem;
	border-right: 0.1rem solid rgba(255, 255, 255, 0.8);
}

.footer__logo {
	display: block;
	width: 13.8rem;
}

.footer__logo img {
	display: block;
	width: 100%;
	height: auto;
}

.footer__contact-info {
	margin-top: 6rem;
	font-style: normal;
}

.footer__contact-info p {
	display: grid;
	grid-template-columns: 2.5rem 1fr;
	gap: 1.5rem;
	align-items: start;
	margin: 0 0 2.6rem;
	font-size: 1.55rem;
	font-weight: 600;
	line-height: 1.55;
	letter-spacing: 0.08em;
}

.footer__contact-info svg {
	width: 2.2rem;
	height: 2.2rem;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.footer__contact-info p:first-child svg path {
	fill: currentColor;
	stroke: none;
}

.footer__contact-info p:first-child svg circle {
	fill: var(--navy);
	stroke: none;
}

.footer-nav {
	display: grid;
	grid-template-columns: 1fr 1.25fr 1.35fr;
	gap: 4.5rem;
	padding-left: 5.5rem;
}

.footer-nav__column h2 {
	margin: 0 0 2.5rem;
	padding-bottom: 0.8rem;
	border-bottom: 0.15rem solid var(--blue);
	font-size: 2.1rem;
	letter-spacing: 0.04em;
}

.footer-nav__column li {
	margin-bottom: 1.9rem;
}

.footer-nav__column a {
	position: relative;
	display: block;
	padding-left: 3.2rem;
	font-size: 1.65rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	white-space: nowrap;
	transition: color 0.2s ease;
}

.footer-nav__column a::before {
	position: absolute;
	top: 50%;
	left: 0;
	width: 2rem;
	height: 2rem;
	background: url("../img/footer-link-icon.webp") center / contain no-repeat;
	content: "";
	transform: translateY(-50%);
}

.footer-nav__column a:hover {
	color: #65c4f0;
}

.footer-nav__spacer {
	margin-top: 5rem;
}

.footer__copyright {
	position: absolute;
	right: 0;
	bottom: 3.2rem;
	left: 0;
	margin: 0;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.4rem;
	letter-spacing: 0.1em;
	text-align: center;
}

@media (min-width: 769px) {
	.sp {
		display: none;
	}
}

@media (max-width: 768px) {
	.pc {
		display: none;
	}

@media (max-width: 768px) {
	:root {
		font-size: calc(100vw / 39);
	}
}

	.ctabtn {
		position: fixed;
		right: 2rem;
		bottom: calc(env(safe-area-inset-bottom) + 1.6rem);
		left: 2rem;
		z-index: 1000;
		display: flex;
		align-items: center;
		justify-content: space-between;
		height: 5.8rem;
		padding: 0 2.2rem 0 2.4rem;
		border: 0.2rem solid var(--blue);
		border-radius: 999rem;
		color: #fff;
		background: var(--blue);
		box-shadow: 0 0.5rem 0.8rem rgba(0, 0, 0, 0.32);
		font-size: 1.6rem;
		font-weight: 700;
		letter-spacing: 0.08em;
	}

	.ctabtn__icon {
		display: block;
		width: 2.6rem;
		height: 2rem;
	}

	.ctabtn__icon img {
		display: block;
		width: 100%;
		height: 100%;
		object-fit: contain;
	}

	.ctabtn__text {
		line-height: 1;
	}

	.ctabtn__arrow {
		font-size: 2.2rem;
		line-height: 1;
	}

	.header {
		top: 1.2rem;
		padding: 0 1.5rem;
	}

	.header__inner {
		height: 6.4rem;
		padding: 0.7rem 1.2rem 0.7rem 1.5rem;
		border-radius: 5rem;
	}

	.header__logo {
		gap: 0.8rem;
	}

	.header__logo-mark {
		width: 3.8rem;
		height: 4rem;
		font-size: 1.8rem;
	}

	.header__logo-text {
		font-size: 1.6rem;
	}

	.menu-button {
		position: relative;
		display: grid;
		gap: 0.55rem;
		width: 4rem;
		margin-left: auto;
		padding: 0.8rem 0.5rem;
		cursor: pointer;
	}

	.menu-button > span:not(.screen-reader-text) {
		display: block;
		width: 100%;
		height: 0.2rem;
		background: var(--navy);
		transition:
			opacity 0.2s ease,
			transform 0.25s ease;
	}

	.menu-check:checked + .menu-button > span:nth-child(1) {
		transform: translateY(0.75rem) rotate(45deg);
	}

	.menu-check:checked + .menu-button > span:nth-child(2) {
		opacity: 0;
	}

	.menu-check:checked + .menu-button > span:nth-child(3) {
		transform: translateY(-0.75rem) rotate(-45deg);
	}

	.global-nav {
		position: absolute;
		top: calc(100% + 0.8rem);
		right: 0;
		left: 0;
		max-height: calc(100svh - 10rem);
		margin: 0;
		padding: 1.5rem;
		overflow-y: auto;
		border-radius: 1rem;
		background: rgba(255, 255, 255, 0.98);
		box-shadow: 0 1rem 2rem rgba(0, 14, 34, 0.22);
		opacity: 0;
		visibility: hidden;
		transform: translateY(-1rem);
		transition:
			opacity 0.25s ease,
			visibility 0.25s ease,
			transform 0.25s ease;
	}

	.menu-check:checked ~ .global-nav {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}

	.global-nav__list {
		display: block;
	}

	.global-nav__list > li > a:not(.global-nav__contact) {
		justify-content: space-between;
		width: 100%;
		min-height: 4.6rem;
		padding: 0 1rem;
		border-bottom: 0.1rem solid #dfe7ee;
		font-size: 1.4rem;
	}

	.dropdown {
		position: static;
		width: 100%;
		max-height: 0;
		min-width: 0;
		padding: 0 1rem;
		overflow: hidden;
		border-radius: 0;
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		transform: none;
		transition:
			max-height 0.25s ease,
			padding 0.25s ease;
	}

	.dropdown::before {
		display: none;
	}

	.nav-item--children:hover .dropdown,
	.nav-item--children:focus-within .dropdown {
		max-height: 24rem;
		padding: 0.6rem 1rem;
		transform: none;
	}

	.dropdown a {
		padding: 1rem 1.5rem;
		font-size: 1.3rem;
	}

	.global-nav__contact {
		height: 4.8rem;
		margin: 1.5rem 0 0;
		font-size: 1.4rem;
	}

	.fv {
		min-height: 60rem;
		height: 60rem;
	}

	.fv::before {
		background: linear-gradient(
			90deg,
			rgba(255, 255, 255, 0.97) 0%,
			rgba(255, 255, 255, 0.68) 50%,
			rgba(255, 255, 255, 0.42) 78%,
			rgba(255, 255, 255, 0.15) 100%
		);
		/* display: none; */
	}

	.fv__slider {
		width: 100%;
		height: 60rem;
	}

	.fv__slide {
		object-position: 56% center;
		height: 60rem;
	}

	.fv__slide02 {
		object-position: 80% center;
	}

	.fv__inner {
		width: 100%;
		padding: 12rem 2rem 5rem;
	}

	.fv__content {
		width: 100%;
	}

	.fv__logo {
		width: 14rem;
	}

	.fv__catch {
		margin: 2.8rem 0 1.8rem;
		font-size: 2.1rem;
		line-height: 1.55;
		letter-spacing: 0.06em;
	}

	.fv__rule {
		width: 60%;
		height: 0.2rem;
	}

	.fv__description {
		margin-top: 2rem;
		font-size: 1.3rem;
		line-height: 1.9;
	}

	.fv__contact {
		width: 100%;
		height: 6rem;
		margin-top: 3.5rem;
		padding: 0 2rem 0 2.5rem;
		border-radius: 4rem;
		font-size: 1.8rem;
		display: none;
	}

	.mail-icon {
		width: 2.6rem;
		height: 2rem;
	}

	.button-arrow {
		font-size: 2.2rem;
	}

	.pc-only {
		display: none;
	}

	.about-us {
		background-size: auto 17rem;
		background-position: left top;
	}

	.about-us__main {
		display: flex;
		flex-direction: column;
		gap: 1.5rem;
		width: 100%;
		min-height: 0;
		padding: 19rem 2rem 6rem;
	}

	.about-us__content {
		order: 1;
		display: contents;
	}

	.about-us__visuals {
		order: 4;
		position: relative;
		display: block;
		width: 100%;
		height: 20rem;
		padding-bottom: 0;
		opacity: 1;
		transform: none;
		transition: none;
	}

	.about-us__visuals.js-fade-up--stagger > img,
	.about-us__visuals img {
		position: absolute;
		inset: 0;
		width: 100%;
		height: 100%;
		border-radius: 0.8rem;
		object-fit: cover;
		transform: none;
		transition: none;
		will-change: opacity;
	}

	.about-us__visuals.js-fade-up--stagger > img:nth-child(1),
	.about-us__visuals img:nth-child(1) {
		animation: aboutVisualFadeFirst 10s ease-in-out infinite;
	}

	.about-us__visuals.js-fade-up--stagger > img:nth-child(2),
	.about-us__visuals img:nth-child(2) {
		animation: aboutVisualFadeSecond 10s ease-in-out infinite;
	}

	@keyframes aboutVisualFadeFirst {
		0% {
			opacity: 1;
		}

		42% {
			opacity: 1;
		}

		52% {
			opacity: 0;
		}

		90% {
			opacity: 0;
		}

		100% {
			opacity: 1;
		}
	}

	@keyframes aboutVisualFadeSecond {
		0% {
			opacity: 0;
		}

		42% {
			opacity: 0;
		}

		52% {
			opacity: 1;
		}

		90% {
			opacity: 1;
		}

		100% {
			opacity: 0;
		}
	}

	.about-us__button {
		order: 5;
	}

	.section-heading h2 {
		font-size: 5rem;
	}

	.section-heading__sub {
		gap: 1.2rem;
		margin-top: 1.2rem;
	}

	.section-heading__sub > span {
		width: 17rem;
	}

	.section-heading__sub p {
		font-size: 1.4rem;
	}

	.about-us__content > h3 {
		margin: 3rem 0 2rem;
		font-size: 2.5rem;
		letter-spacing: 0.14em;
	}

	.about-us__text {
		margin-bottom: 1rem;
		margin-bottom: 0;
		font-size: 1.4rem;
		line-height: 1.8;
	}

	.about-us__button {
		width: 70%;
        height: 4.5rem;
        margin: 2.8rem 0 0;
        margin: 2rem auto;
		padding: 0 4rem;
		font-size: 1.8rem;
	}

	.about-us__visuals {
		width: 100%;
		grid-template-columns: repeat(2, 1fr);
		gap: 1.2rem;
		padding-bottom: 0;
	}

	.about-us__visuals img {
		width: 100%;
		height: 12rem;
		border-radius: 0.8rem;
	}

	.about-features__inner {
		grid-template-columns: 1fr 1fr;
		gap: 0;
		min-height: 0;
		padding: 0 2rem 2rem;
	}

	.about-features__inner .feature-card:nth-child(3) {
		grid-column: 1 / -1;
		justify-self: center;
		width: 50%;
	}

	.about-features::before {
		top: 6rem;
		width: 110%;
		height: calc(100% - 4rem);
		border-radius: 50% 50% 0 0 / 8% 8% 0 0;
	}

	.feature-card__icon {
		width: 13rem;
		height: 13rem;
		margin-bottom: 1.8rem;
	}

	.feature-card h3 {
		margin-bottom: 1.2rem;
		font-size: 1.8rem;
	}

	.feature-card p {
		font-size: 1.4rem;
	}

	.business-section,
	.business-section__inner {
		min-height: 0;
	}

	.business-section {
		padding: 6rem 2rem;
		background-position: 62% center;
	}

	.business-section__inner {
		width: 100%;
	}

	.business-heading {
		position: static;
	}

	.business-heading .section-heading h2 {
		font-size: 5rem;
	}

	.business-heading .section-heading__sub > span {
		width: 21.5rem;
	}

	.business-heading__lead {
		margin-top: 2rem;
		font-size: 2rem;
	}

	.business-heading__lead strong {
		font-size: 4rem;
	}

	.business-stage {
		position: static;
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 2rem;
		width: 100%;
		height: auto;
		flex-direction: column;
		align-items: center;
		gap: 1rem;
		margin-top: 3rem;
	}

	.business-card {
		position: static;
		overflow: hidden;
		width: 100%;
		padding: 2rem 1rem;
		max-width: 100%;
		border: 0.2rem solid #091F3F;
		border-radius: 1.6rem;
		background: #fff;
		filter: none;
	}

	/* .business-card:hover,
	.business-card:focus-visible {
		filter: none;
		transform: translateY(-0.4rem);
	} */

	.business-card picture {
		display: block;
	}

	/* .business-card--01 {
		width: min(100%, 37rem);
	}

	.business-card--02,
	.business-card--05 {
		width: min(100%, 37rem);
	}

	.business-card--03,
	.business-card--04 {
		width: min(100%, 37rem);
	} */

	.business-card--05 {
		grid-column: 1 / -1;
		justify-self: center;
		width: calc((100% - 2rem) / 2);
	}

	.business-center {
		display: none;
	}

	.business-section__summary {
		position: static;
		width: 100%;
		height: auto;
		min-height: 7rem;
		margin-top: 4rem;
		padding: 1.6rem 2rem;
		border-radius: 1.2rem;
		font-size: 1.4rem;
		font-weight: 500;
		line-height: 1.65;
		text-align: center;
	}

	.news-section,
	.news-section__inner {
		min-height: 0;
	}

	.news-section {
		background-size: auto 100%;
		background-position: center top, center;
		background-size: 100rem auto, cover;
        background-repeat: repeat;
	}

	.news-section__inner {
		width: 100%;
		padding: 6rem 2rem;
	}

	.news-section .section-heading {
		width: 100%;
	}

	.news-section .section-heading h2 {
		font-size: 5rem;
	}

	.section-heading--light .section-heading__sub > span {
		width: 10rem;
	}

	.news-list {
		width: 100%;
		margin-top: 5rem;
	}

	.news-item {
		grid-template-columns: 1fr 11rem;
		gap: 1.2rem;
		padding: 1.8rem 1rem;
	}

	.news-item time {
		font-size: 1.6rem;
	}

	.news-item__category {
		width: 8rem;
		height: 2.5rem;
		font-size: 1.2rem;
		margin-left: auto;
	}

	.news-item__title {
		grid-column: 1 / -1;
		padding: 0;
		font-size: 1.6rem;
		line-height: 1.6;
	}

	.news-section__button {
		width: 85%;
		height: 4.5rem;
		margin-top: 4rem;
		padding: 0 2.5rem 0 6rem;
		font-size: 1.6rem;
	}

	.site-banners {
		grid-template-columns: 1fr;
		gap: 1.5rem;
		margin-top: 5rem;
	}

	.site-banners img {
		width: 100%;
		height: auto;
	}

	.prize-section {
		min-height: 0;
		background-position: center;
	}

	.prize-section__inner {
		width: 100%;
		padding: 6rem 2rem;
	}

	.prize-section h2 {
		font-size: 2rem;
		line-height: 1.7;
		letter-spacing: 0.08em;
	}

	.prize-section__description {
		margin-top: 3.5rem;
		font-size: 1.4rem;
		line-height: 1.8;
	}

	.prize-section__description br {
		display: none;
	}

	.prize-section__award {
		width: 100%;
		margin-top: 4rem;
	}

	.prize-section__note {
		margin-top: 3.5rem;
		font-size: 1.4rem;
		line-height: 1.7;
	}

	.recruit-section__visual {
		background-image: url(../img/recruit-bg-sp.webp);
		min-height: 50rem;
		background-position: center top;
	}

	.recruit-section__txt {
		top: 4.8rem;
		left: 2rem;
		width: 28rem;
	}

	.recruit-section__lead {
		top: 17rem;
		left: 2rem;
		right: 2rem;
		padding: 0;
		font-size: 1.4rem;
		line-height: 1.9;
		text-align: left;
	}

	.recruit-section__lead br {
		display: none;
	}

	.recruit-section__person {
		right: 0;
        left: 0;
        width: 34rem;
        margin: auto;
	}

	.recruit-section__bottom {
		display: none;
		min-height: 0;
		padding: 4.5rem 2rem 5.5rem;
	}

	.recruit-section__heading h2 {
		font-size: 4rem;
	}

	.recruit-section__heading .section-heading__sub {
		gap: 1.2rem;
		margin-top: 1.2rem;
	}

	.recruit-section__heading .section-heading__sub > span {
		width: 14rem;
	}

	.recruit-section__heading .section-heading__sub p {
		font-size: 1.2rem;
	}

	.recruit-section__button {
		width: 100%;
		height: 5.8rem;
		gap: 2.4rem;
		margin-top: 3.5rem;
		font-size: 1.8rem;
	}

	.recruit-section__button span:last-child {
		font-size: 2rem;
	}

	.contact-section__inner {
        min-height: 32rem;
        padding: 4rem 2rem;
		background-position: center;
	}

	.contact-section__heading h2 {
		font-size: 5rem;
	}

	.contact-section__heading .section-heading__sub {
		gap: 1.2rem;
		margin-top: 1.2rem;
	}

	.contact-section__heading .section-heading__sub > span {
		width: 16rem;
	}

	.contact-section__heading .section-heading__sub p {
		font-size: 1.4rem;
	}

	.contact-section__lead {
		margin-top: 4rem;
		font-size: 1.6rem;
		line-height: 1.7;
	}

	.contact-section__lead::before,
	.contact-section__lead::after {
		top: -0.8rem;
		width: 3rem;
	}

	.contact-section__lead::before {
		left: 0;
	}

	.contact-section__lead::after {
		right: 0;
	}

	.contact-section__button {
		width: 100%;
		max-width: 48rem;
		margin-top: 3rem;
	}

	.contact-section__links {
		grid-template-columns: 1fr;
		gap: 3rem;
		width: 100%;
		min-height: 0;
		padding: 3.5rem 2rem 4.5rem;
	}

	.contact-link--tel,
	.contact-link--faq {
		justify-content: flex-start;
		gap: 1rem;
		padding: 0;
		border-right: 0;
		padding-left: 1.5rem;
	}

	.contact-link img {
		width: 5rem;
		height: 5rem;
	}

	.contact-link__label {
		min-width: 0;
		height: 2.4rem;
		padding: 0 1.2rem;
		font-size: 1.2rem;
	}

	.contact-link__number {
		margin-top: 0.8rem;
		font-size: 2.4rem;
		letter-spacing: 0;
	}

	.contact-link__time {
		gap: 0.8rem;
		margin-top: 0.8rem;
		font-size: 1.4rem;
	}

	.contact-link__time span {
		min-width: 7.4rem;
        height: 2rem;
        font-size: 1.2rem;
	}

	.contact-link__title {
		font-size: 2rem;
	}

	.contact-link__desc {
		margin-top: 0.8rem;
		font-size: 1.3rem;
		line-height: 1.5;
	}

	.contact-link__button {
		width: 23rem;
        height: 4.2rem;
        gap: 2.2rem;
        margin: 1rem 0 0;
        font-size: 1.4rem;
	}

	.works-section {
		min-height: 0;
		padding: 6rem 2rem;
		background-size: auto 100%;
	}

	.works-section__heading .section-heading h2 {
		font-size: 5rem;
	}

	.works-section__heading .section-heading__sub > span {
		width: 14rem;
	}

	.works-section__heading > p {
		margin-top: 3rem;
		font-size: 1.4rem;
		line-height: 1.8;
		text-align: left;
	}

	.works-section__heading > p br {
		display: none;
	}

	.works-grid {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 1rem;
		margin-top: 4rem;
	}

	.works-grid__right,
	.works-grid__bottom {
		display: contents;
	}

	.works-card {
		min-height: 20rem;
	}

	.works-card__image {
		min-height: 18rem;
		font-size: 1.3rem;
	}

	.works-card--01 .works-card__image {
		min-height: 24rem;
	}

	.works-card__info {
		/* flex-direction: column; */
		align-items: center;
		gap: 1rem;
	}

	.works-card__info,
	.works-grid__right .works-card__info,
	.works-grid__bottom .works-card__info {
		min-height: initial;
		padding: 1rem;
	}

	.works-card__number {
		display: none;
		font-size: 2.2rem;
	}

	.works-card__info h3 {
		font-size: 1.3rem;
		letter-spacing: 0;
	}

	.works-card__more,
	.works-grid__bottom .works-card__more {
		min-width: 5.5rem;
		height: 2.8rem;
		padding: 0 0.5rem;
		font-size: 1rem;
		margin-left: auto;
	}

	.works-section__button {
		width: 85%;
		height: 4.5rem;
		margin-top: 4rem;
		padding: 0 2.5rem 0 6rem;
		font-size: 1.6rem;
	}

	.footer {
		padding-bottom: 6rem;
	}

	.footer,
	.footer__inner {
		min-height: 0;
	}

	.footer__inner {
		display: block;
		width: 100%;
		padding: 3rem 2rem 9rem;
	}

	.footer__company {
		padding: 0;
		border-right: 0;
		border-bottom: 0;
		display: flex;
		align-items: flex-start;
		gap: 1rem;
	}

	.footer__logo {
		width: 10rem;
		margin: 0;
	}

	.footer__contact-info {
		margin: 0;
	}

	.footer__contact-info p {
		font-size: 1.2rem;
		margin-bottom: 0.5rem;
		gap: 1rem;
		letter-spacing: 0;
		align-items: center;
	}

	.footer-nav {
		grid-template-columns: 1fr;
		gap: 3.5rem;
		padding: 3rem 0 0;
	}

	.footer-nav__column h2 {
		margin-bottom: 2rem;
		font-size: 1.8rem;
	}

	.footer-nav__column ul {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 1.5rem 1rem;
	}

	.footer-nav__column li,
	.footer-nav__spacer {
		margin: 0;
	}

	.footer-nav__column a {
		padding-left: 2.5rem;
		font-size: 1.4rem;
		white-space: normal;
	}

	.footer-nav__column a::before {
		width: 1.7rem;
		height: 1.7rem;
		font-size: 1rem;
	}

	.footer__copyright {
		bottom: 3rem;
		padding: 0 2rem;
		font-size: 1.15rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}
}


.fv__banner {
	/* position: absolute; 
	bottom: 60px;
	right: 30px; */
	/* background-color: rgba(255, 255, 255, 0.8); */
	padding: 10px;
	border-radius: 5px;
}

.fv__banner img {
	margin-top: 20px;
    width: 45rem;
}


@media (max-width: 768px) {
	.fv__banner {
		padding: 0;
	}
	.fv__banner img {
		margin-top: 2rem;
		width: 22rem;
	}
}