@charset "utf-8";

/**
 * Scroll → Fade in
 */

/* From the top */
.u-fade__in-yt {
	opacity: 0;
	transform: translate(0, -80px);
	transition: all 2.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.u-fade__in-yt-on {
	opacity: 1;
	transform: translate(0, 0);
	transition: all 2.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}


/* From the bottom */
.u-fade__in-yb {
	opacity: 0;
	transform: translate(0, 80px);
	transition: all 2.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.u-fade__in-yb-on {
	opacity: 1;
	transform: translate(0, 0);
	transition: all 2.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* From the left */
.u-fade__in-xl {
	opacity: 0;
	transform: translate(-80px, 0);
	transition: all 2.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.u-fade__in-xl-on {
	opacity: 1;
	transform: translate(0, 0);
	transition: all 2.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* From the right */
.u-fade__in-xr {
	opacity: 0;
	transform: translate(80px, 0);
	transition: all 2.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.u-fade__in-xr-on {
	opacity: 1;
	transform: translate(0, 0);
	transition: all 2.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/**
 * Site's style
 */
.hvc-wrap {
	position: relative;
	z-index: 1;
	background-color: rgba(255, 255, 255, 1);
	transition: opacity 600ms cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hvc-wrap * {
	box-sizing: border-box;
}

.hvc-contents{
	position: relative;
}

.u-disp__only-sp-block {
	display: none;
}

.hvc-h2{
	background-color: #fff;
	padding: 72px 0;
}

.hvc-info-btn {
	display: flex;
	gap: 0 8px;
	position: fixed;
	right: 60px;
	top: calc(100vh - 100px);
}

.hvc-hero {
	position: sticky;
	top: 0;
	z-index: -1;
}

.hvc-hero .info-btn .recruitment {
	border: 1px solid #fff;
	border-radius: 100vh;
	color: #fff;
	display: block;
	font-size: large;
	line-height: 60px;
	padding: 0 32px;
	text-decoration: none;
	width: fit-content;
}

.hvc-hero .info-btn .instagram {
	width: 60px;
}

/* Promise */
.hvc-promise {
	background-image: url(../images/hvc-promise-bg.webp);
	background-size: cover;
	padding: 120px 0 40px;
	position: relative;
	z-index: 1;
}

.hvc-promise h3 {
	margin: 0 auto 100px;
	text-align: center;
	width: min(90%, 596px);
}

.hvc-promise article {
	display: flex;
	gap: 0 32px;
	justify-content: center;
	margin-bottom: 80px;
	overflow: hidden;
	padding: 0 5vw;
}

.hvc-promise article .hvc-promise-text {
	width: min(100%, 600px);
}

.hvc-promise article .hvc-promise-text h4 {
	margin-bottom: 32px;
	padding: 32px 0;
	position: relative;
}

.hvc-promise article .hvc-promise-text h4::after {
	background-color: #e1ff67;
	bottom: 0;
	content: "";
	height: 1px;
	position: absolute;
	right: 0;
	width: 300%;
}

.hvc-promise article .hvc-promise-text h4 img {
	width: fit-content;
}

.hvc-promise article .hvc-promise-text p {
	color: #fff;
	font-size: large;
	font-weight: 700;
	line-height: 2;
}

.hvc-promise article figure {
	width: min(100%, 600px);
}

.hvc-promise article figure img {
	border-radius: 24px;
}

.hvc-promise article.num--02 {
	flex-direction: row-reverse;
}

.hvc-promise article.num--02 h4::after {
	left: 0;
	right: auto;
}

.hvc-promise article.num--02 h4 img {
	width: fit-content;
}

.hvc-promise article.num--01 h4 img {
	width: min(100%, 500px);
}

.hvc-promise article.num--02 h4 img {
	width: min(100%, 440px);
}

.hvc-promise article.num--03 h4 img {
	width: min(100%, 500px);
}

/* Service */
.hvc-service {
	background-image: url(../images/hvc-service-bg.webp);
	background-size: cover;
	padding: 120px 0;
	position: relative;
	z-index: 1;
}

.hvc-service h3 {
	margin: 0 auto 24px;
	text-align: center;
	width: min(100%, 900px);
}

.hvc-service figure {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
	margin: 0 auto 64px;
	width: min(90%, 1280px);
}

.hvc-service figure img {
	width: calc((100% - 24px) / 4);
}

.hvc-service-desc {
	background-color: #fec04e;
	border: 5px solid #fff;
	border-radius: 24px;
	margin: 0 auto 40px;
	padding: 32px 56px;
	width: min(90%, 960px);
	position: relative;
}

.hvc-service-desc h4 {
	color: #fff;
	font-size: 4rem;
	font-weight: 700;
}

.hvc-service-desc p {
	color: #fff;
	font-size: medium;
	line-height: 1.6;
	font-weight: 700;
}

.hvc-service-desc p strong {
	display: block;
	font-size: x-large;
	margin: 12px 0;
}

.hvc-service-desc.area img {
	position: absolute;
	right: 40px;
	top: -70px;
	width: 380px;
}

/* Hope */
.hvc-hope {
	background-color: #fec04e;
	padding: 100px 0;
	position: relative;
	z-index: 1;
}

.hvc-hope h3 {
	margin: 0 auto;
	text-align: center;
	width: min(100%, 900px);
}

.hvc-hope p {
	text-align: center;
	color: #fff;
	font-size: medium;
	font-weight: 700;
	margin: 40px 0 56px;
	line-height: 1.6;
}

.hvc-hope-list {
	border: 5px solid #fff;
	border-radius: 24px;
	margin: 24px auto 0;
	padding: 32px 56px;
	width: min(90%, 960px);
}

.hvc-hope-list h4 {
	color: #fff;
	font-size: xx-large;
	font-weight: 700;
	margin-bottom: 20px;
}

.hvc-hope-list li {
	color: #fff;
	font-size: x-large;
	font-weight: 700;
	line-height: 1.6;
	margin-bottom: 8px;
	padding-left: 44px;
	position: relative;
}

.hvc-hope-list li::before {
	background-image: url(../images/hvc-check.webp);
	background-size: cover;
	content: "";
	height: 28px;
	left: 0;
	position: absolute;
	top: 5px;
	width: 28px;
}

/* Flow-Fee */
.hvc-flow-fee {
	background-color: #fff;
	padding: 80px 5vw;
	position: relative;
	z-index: 1;
}

.hvc-flow-fee figure {
	display: flex;
	gap: 0 16px;
	justify-content: center;
}

.hvc-flow-fee figure img {
	max-width: 500px;
	width: calc(50% - 8px);
}

/* Staff */
.hvc-staff {
	background-color: #fec04e;
	position: relative;
	padding: 80px 0 100px;
}

.hvc-staff h3 {
	margin: 0 auto 64px;
	width: min(90%, 370px);
}

.hvc-staff .swiper-container {
	overflow: hidden;
	margin: 0 auto;
	width: min(90%, 1200px);
}

.hvc-staff .swiper-container .swiper-slide {
	border-radius: 24px;
}

.hvc-staff .swiper-button {
	position: absolute;
	top: 56%;
	width: 100%;
}

.hvc-staff .swiper-button-prev,
.hvc-staff .swiper-button-next {
	background-size: cover;
	height: 56px;
	width: 56px;
}

.hvc-staff .swiper-button-prev::after,
.hvc-staff .swiper-button-next::after {
	display: none;
}

.hvc-staff .swiper-button-prev {
	background-image: url(../images/hvc-staff-arrow-l.webp);
	left: calc(50% - 700px);
}

.hvc-staff .swiper-button-next {
	background-image: url(../images/hvc-staff-arrow-r.webp);
	right: calc(50% - 700px);
}

.hvc-staff .hvc-staff-btn {
	border: 1px solid #fff;
	border-radius: 100vh;
	color: #fff;
	display: block;
	font-size: large;
	margin: 64px auto 0;
	padding: 16px 40px;
	text-decoration: none;
	width: fit-content;
}

@media (max-width: 767px) {

	/**
	* Site's style
	*/
	.hvc-h2{
		padding: 40px 0;
	}

	.hvc-info-btn {
		right: 5vw;
		top: 74vh;
	}

	.hvc-info-btn .recruitment {
		font-size: medium;
		line-height: 40px;
		padding: 0 28px;
	}

	.hvc-info-btn .instagram {
		width: 40px;
	}

	/* Promise */
	.hvc-promise {
		padding: 80px 0 40px;
	}

	.hvc-promise h3 {
		margin: 0 auto;
		width: 80vw;
	}

	.hvc-promise article {
		gap: 32px 0;
		margin-bottom: 40px;
		flex-direction: column;
	}

	.hvc-promise article .hvc-promise-text {
		width: 100%;
	}

	.hvc-promise article .hvc-promise-text h4 {
		margin-bottom: 24px;
		padding: 24px 0;
	}

	.hvc-promise article .hvc-promise-text h4::after {
		width: 90vw;
	}

	.hvc-promise article figure img {
		border-radius: 20px;
	}

	.hvc-promise article.num--02 {
		flex-direction: column;
	}

	.hvc-promise article.num--01 h4 img {
		width: 80vw;
	}

	.hvc-promise article.num--02 h4 img {
		width: 80vw;
	}

	.hvc-promise article.num--03 h4 img {
		width: 80vw;
	}

	/* Service */
	.hvc-service {
		padding: 64px 0 40px;
	}

	.hvc-service h3 {
		margin: 0 auto 32px;
		width: 80vw;
	}

	.hvc-service figure img {
		width: calc((100% - 8px) / 2);
	}

	.hvc-service-desc {
		border-radius: 20px;
		padding: 32px 24px;
	}

	.hvc-service-desc h4 {
		font-size: 2.8rem;
	}

	.hvc-service-desc p strong {
		font-size: large;
	}

	.hvc-service-desc.area img {
		margin-top: 32px;
		position: static;
		width: 100%;
	}

	/* Hope */
	.hvc-hope {
		padding: 80px 0;
	}

	.hvc-hope h3 {
		width: 80vw;
	}

	.hvc-hope p {
		margin: 32px 0 48px;
		padding: 0 5vw;
		text-align: left;
	}

	.hvc-hope-list {
		border-radius: 20px;
		padding: 32px 24px;
	}

	.hvc-hope-list h4 {
		font-size: x-large;
		line-height: 1.44;
	}

	.hvc-hope-list li {
		font-size: large;
		padding-left: 32px;
	}

	.hvc-hope-list li::before {
		height: 24px;
		top: 3px;
		width: 24px;
	}

	/* Flow-Fee */
	.hvc-flow-fee figure {
		gap: 16px 0;
		flex-direction: column;
	}

	.hvc-flow-fee figure img {
		width: 100%;
	}

	/* Staff */
	.hvc-staff {
		padding: 80px 0;
	}
	.hvc-staff h3 {
		width: 80vw;
	}

	.hvc-staff .swiper-button {
		top: 52%;
	}

	.hvc-staff .swiper-button-prev,
	.hvc-staff .swiper-button-next {
		height: 48px;
		width: 48px;
	}

	.hvc-staff .swiper-button-prev {
		left: 2vw;
	}

	.hvc-staff .swiper-button-next {
		right: 2vw;
	}
}
