@charset "UTF-8";

/******************/
/* hero *********/

.section-hero {
	position: relative;
	height: 90vh;
	overflow: hidden;
}

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

.section-hero__bg-slide {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0;
}

.section-hero__bg-slide:nth-child(1) {
	background-image: url(../../images/top_slide01.jpg);
}

.section-hero__bg-slide:nth-child(2) {
	background-image: url(../../images/top_slide02.jpg);
}

.section-hero__bg-slide:nth-child(3) {
	background-image: url(../../images/top_slide03.jpg);
}

.section-hero__bg-slide:nth-child(4) {
	background-image: url(../../images/top_slide04.jpg);
}

.section-hero__bg-slide:nth-child(5) {
	background-image: url(../../images/top_slide05.jpg);
}

.section-hero__bg::after {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.15);
	z-index: 1;
}

.section-hero__image {
	position: absolute;
	left: var(--space-fluid-32);
	z-index: 2;
	top: 40%;
	left: 2em;
}

.hero-scroll {
	position: absolute;
	bottom: 16%;
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
	z-index: 2;
}

.hero-scroll__text {
	font-size: 1.2rem;
	font-weight: 600;
	color: #fff;
}

.hero-scroll__arrow {
	display: block;
	width: 10px;
	height: 10px;
	margin: 6px auto;
	border-left: 2px solid #fff;
	border-bottom: 2px solid #fff;
	transform: rotate(-45deg);
	animation: arrowMove 1.8s infinite;
	opacity: 0;
}

.delay1 {
	animation-delay: 0.2s;
}
.delay2 {
	animation-delay: 0.4s;
}

@keyframes arrowMove {
	0% {
		transform: translateY(0) rotate(-45deg);
		opacity: 0;
	}
	30% {
		opacity: 1;
	}
	60% {
		transform: translateY(10px) rotate(-45deg);
		opacity: 1;
	}
	100% {
		transform: translateY(20px) rotate(-45deg);
		opacity: 0;
	}
}

.section-hero__heading {
	background-color: rgba(255, 255, 255, 0.9);
	display: inline-block;
	padding: var(--space-16) var(--space-32);
	border-radius: 0 30px 0 0;
	z-index: 2;
	position: absolute;
	bottom: 0;
	left: 0;
}

.section-hero__title {
	font-size: var(--fz-14);
}

.section-hero__subtitle {
	font-size: var(--fz-24);
	font-weight: 600;
}

@media screen and (max-width: 500px) {
	.section-hero {
		height: 83vh;
	}
	.section-hero__image {
		width: 60%;
	}
	.section-hero__subtitle {
		font-size: var(--fz-20);
	}
	.section-hero__heading {
		padding: var(--space-8) var(--space-24);
	}
}

/******************/
/* lead *********/

.section-lead {
	background-image: url(../../images/lead_bg.jpg);
	background-size: 100%;
	padding-top: var(--space-96);
	padding-bottom: var(--space-128);
}

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

.section-lead__header {
	font-size: var(--fz-24);
	margin-bottom: var(--space-48);
	font-weight: 600;
}

.section-lead__text {
	margin-bottom: var(--space-48);
}

.section-lead__text-item {
	margin-bottom: var(--space-16);
	line-height: 1.8;
}

.section-lead__text-item:last-child {
	margin-bottom: 0;
}

.section-lead__image {
	border-radius: 10px;
}

@media screen and (max-width: 500px) {
	.section-lead {
		padding: var(--space-64) 0;
	}
	.section-lead__header {
		font-size: var(--fz-fluid-20);
		margin-bottom: var(--space-32);
	}
	.section-lead__text-item {
		font-size: var(--fz-14);
	}
}

/******************/
/* staff *********/

.section-staff {
	position: relative;
	padding-top: var(--space-96);
	padding-bottom: var(--space-96);
}

.section-staff__bg {
	position: absolute;
	inset: 0;
	overflow: hidden;
	z-index: 0;
}

.section-staff__bg-inner {
	position: absolute;
	inset: 0;
	background-image: url(../../images/staff-bg.jpg);
	background-repeat: repeat-y;
	background-size: auto;
	background-position: center 0;
}

.section-staff .section-inner {
	position: relative;
	z-index: 2;
}
.staff-container {
	display: flex;
	flex-direction: column;
}

.staff-card {
	background: var(--color-bg-primary);
	color: var(--color-white);
	padding-bottom: var(--space-80);
	padding-top: var(--space-80);
	border-radius: 240px 240px 20px 20px;
	margin-bottom: var(--space-80);
}

.staff-card:last-child {
	margin-bottom: 0;
}

.staff-card__header {
	text-align: center;
}
.staff-card__icon {
	display: block;
	margin: 0 auto;
	margin-bottom: var(--space-48);
}

.staff-card__copy {
	font-size: var(--fz-32);
	margin-bottom: var(--space-48);
}

.staff-card__image {
	width: 100%;
	margin-bottom: var(--space-16);
}

.staff-card__body {
	width: 90%;
	margin: 0 auto;
}

.staff-card__name {
	margin-bottom: var(--space-16);
	display: flex;
	align-items: center;
	gap: 3px;
	flex-direction: column;
}

.staff-card__ja-name {
	font-size: var(--fz-24);
	font-weight: 600;
	letter-spacing: var(--ls-5);
}

.staff-card__en-name {
	font-size: var(--fz-14);
	letter-spacing: var(--ls-10);
	line-height: 1;
}

.staff-card__info {
	background-color: var(--color-white);
	border-radius: 0 0 30px 30px;
}

.staff-card__info-title {
	background: var(--color-bg-corporate);
	padding: var(--space-8);
	font-size: var(--fz-16);
}

.staff-card__info-description {
	padding: var(--space-16);
	font-size: var(--fz-16);
	color: var(--color-primary);
	font-weight: 500;
	letter-spacing: var(--ls-5);
}

.staff-card__info-message {
	padding-bottom: var(--space-32);
}

@media screen and (max-width: 500px) {
	.section-staff {
		padding: var(--space-56) 0;
	}
	.staff-card {
		padding-top: var(--space-48);
		padding-bottom: var(--space-48);
		margin-bottom: var(--space-56);
	}
	.staff-card__icon {
		width: 90px;
		margin-bottom: var(--space-24);
	}
	.staff-card__copy {
		font-size: var(--fz-24);
		margin-bottom: var(--space-32);
	}
	.staff-card__body {
		width: 95%;
	}

	.staff-card__image {
		aspect-ratio: 16 / 9;
		object-fit: cover;
		object-position: top;
	}

	.staff-card__ja-name {
		font-size: var(--fz-20);
	}

	.staff-card__en-name {
		font-size: var(--fz-12);
		letter-spacing: var(--ls-10);
	}

	.staff-card__info-title {
		font-size: var(--fz-14);
	}
	.staff-card__info-description {
		font-size: var(--fz-14);
		line-height: 2;
		letter-spacing: var(--ls-5);
	}
}

/******************/
/* contact *********/

.section-contact {
	padding: var(--space-96) 0;
}

.section-contact .section-title__en {
	margin-bottom: var(--space-16);
}

.section-contact .section-title__text {
	margin-bottom: var(--space-8);
	letter-spacing: var(--ls-5);
}

.section-contact .section-title__note {
	font-size: 10px;
	letter-spacing: var(--ls-5);
}

.contact-wrapper {
	margin-bottom: var(--space-56);
}

.contact-item {
	border-top: 0.5px solid var(--color-white);
	border-bottom: 0.5px solid var(--color-white);
	padding: var(--space-32) 0;
	color: var(--color-white);
}

.contact-item:nth-child(2) {
	border-top: none;
}

.contact-item__inner {
	width: 90%;
	margin: 0 auto;
}

.contact-item__title {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: var(--space-48);
}
.contact-item__label {
	font-size: var(--fz-32);
	font-family: var(--font-en);
	font-weight: 600;
}

.contact-item__number {
	font-size: var(--fz-40);
	font-family: var(--font-en);
	font-weight: 600;
	margin-bottom: 0;
	display: block;
}

.contact-item__row {
	display: flex;
	align-items: center;
	gap: 16px;
	font-weight: 600;
}

.contact-item__row .note {
	margin-left: 3px;
}

.contact-item__row dt {
	width: 68px;
}

.contact-item__link {
	display: inline-block;
	border-bottom: 0.5px solid var(--color-white);
	transition: opacity 0.2s ease;
}

@media screen and (max-width: 500px) {
	.section-contact {
		padding: var(--space-56) 0;
	}
	.contact-item {
		padding: var(--space-24) 0;
	}
	.contact-item__label {
		font-size: 28px;
	}
	.contact-item__title img {
		width: 30px;
	}
	.contact-item__title {
		margin-bottom: var(--fz-24);
	}
	.contact-item__number {
		font-size: 28px;
	}
	.contact-item__link {
		font-size: var(--fz-14);
	}
	.contact-item__row {
		font-size: var(--fz-12);
	}
	.contact-item__row dt {
		width: 48px;
	}
}

/* contact__banner */

.section-contact__banner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	width: 90%;
	margin: 0 auto;
}

.contact-banner {
	display: block;
	margin: 0 auto;
}
@media screen and (max-width: 500px) {
	.section-contact__banner {
		width: 80%;
	}
}
