/*------------------------------------
オープニング全体のレイヤー
------------------------------------*/
.opening-overlay {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	pointer-events: none;
	opacity: 1;
	transition: opacity 1.2s ease-in-out;
}
.opening-overlay.is-hidden {
	opacity: 0;
}
.opening-inner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(24px, 5vw, 64px);
	transform: scale(1);
	opacity: 1;
	transition: transform 1.3s ease, opacity 1.3s ease;
}
.opening-inner.is-zoom-out {
	transform: scale(1.2);
	opacity: 0;
}
@media screen and (max-width: 768px) {
	.opening-inner {
		gap: clamp(12px, 4vw, 32px);
	}
}

/* ロゴ中央 */
.opening-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	width: clamp(160px, 22vw, 260px);
}
@media screen and (max-width: 768px) {
	.opening-logo {
		width: clamp(120px, 30vw, 180px);
	}
}

/* 左右イラスト */
.opening-illust {
	display: flex;
	align-items: center;
	justify-content: center;
	width: clamp(120px, 18vw, 200px);
	animation: sway 2.2s ease-in-out infinite;
	transform-origin: center bottom;
}
.opening-illust--right {
	animation-delay: 0.2s;
}
@media screen and (max-width: 768px) {
	.opening-illust {
		width: clamp(90px, 24vw, 140px);
	}
}
@keyframes sway {
	0% { transform: rotate(0deg) translateY(0); }
	25% { transform: rotate(-2.5deg) translateY(-2px); }
	50% { transform: rotate(0deg) translateY(0); }
	75% { transform: rotate(2.5deg) translateY(-2px); }
	100% { transform: rotate(0deg) translateY(0); }
}

/*------------------------------------
.mv
------------------------------------*/
.mv {
	position: relative;
}
.mv::before {
	content: "";
	position: absolute;
	top: 300px;
	background-image: url("../images/top/mv-bg.png?251210");
	background-position: left;
	background-repeat: repeat;
	width: 100%;
	height: 700px;
	z-index: 1;
}
.mv::after {
	content: "";
	position: absolute;
	bottom: 0;
	background-image: url("../images/wave_bl.svg");
	background-repeat: no-repeat;
	background-size: 100% auto;
	width: 100%;
	padding-bottom: 5.2083%;
	z-index: 2;
}
.mv__slider {
	background-color: #fff;
	margin: 0 3.65vw; /*70px*/
	z-index: 3;
}
.mv__slider img {
	width: 100%;
	height: 700px;
	object-fit: cover;
}
@media screen and (max-width: 768px) {
	.mv {
		padding-bottom: 50px;
	}
	.mv__slider img {
		height: 400px;
	}
}


/*------------------------------------
.ttl
------------------------------------*/
.ttl {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 5px;
	position: relative;
	font-size: 2.08vw; /*40px*/
	text-align: center;
	margin-bottom: 50px;
	z-index: 2;
}
.ttl .en {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: .2em;
	line-height: 1
}
@media screen and (max-width: 768px) {
	.ttl {
		font-size: 5.21vw; /*40px*/
		margin-bottom: 20px;
	}
}


/*------------------------------------
#jobs
------------------------------------*/
#jobs {
	background-color: #ecf5fc;
	margin-top: -120px;
}
.jobs__inner {
	position: relative;
	z-index: 4;
}
.jobs__row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	max-width: 1280px;
	margin: auto;
}
.jobs__row:before {
	content: "";
	position: absolute;
	top: -50px;
	left: 50%;
	transform: translateX(-50%);
	background-color: #fff;
	max-width: 940px;
	width: calc(100% - 100px);
	height: calc(100% + 100px);
	z-index: -1;
}
.jobs__txt {
	width: min(100%, 700px);
}
.jobs__txt .ttl {
	font-size: 1.88vw; /*36px*/
}
.jobs__txt p {
	line-height: 2;
	text-align: center;
}
@media screen and (max-width: 768px) {
	#jobs {
		margin: 0;
	}
	.jobs__row {
		flex-direction: column;
		gap: 30px;
	}
	.jobs__row::before {
		top: -50px;
		left: 6.51vw; /*50px*/
		width: calc(100% - 13.02vw); /*100px*/
		height: 100%;
		transform: none;
	}
	.jobs__txt {
		padding: 0 13.02vw;
	}
	.jobs__txt .ttl {
		font-size: 4.17vw; /*32px*/
	}
	.jobs__txt p {
		text-align: left;
	}
	.jobs__img {
		padding: 0 3.65vw; /*70px*/
	}
}


/*------------------------------------
#about
------------------------------------*/
#about {
	position: relative;
	background-color: #ecf5fc;
	padding: 200px 0 250px;
	z-index: 1;
}
#about::after {
	content: "";
	position: absolute;
	bottom: 0;
	background-image: url("../images/wave_wh.svg");
	background-repeat: no-repeat;
	background-size: 100% auto;
	width: 100%;
	padding-bottom: 5.2083%;
}
#about .container {
	max-width: 1260px;
}
.about__txt {
	text-align: center;
	padding-bottom: 30px;
}
.about-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}
.about-list > li {
	position: relative;
	width: calc((100% - 60px) / 3);
}
.about-list .img {
	padding-top: 35px;
}
.about-list .txt {
	padding: 0 24px;
}
.about-list .txt .rounded {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0;
	right: 20px;
	background-color: #62b0e3;
	border-radius: 50%;
	width: 100px;
	height: 100px;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
	color: #fff;
}
.about__cate {
	display: flex;
	flex-direction: column;
	gap: 5px;
	margin-top: -25px;
}
.about__cate > li {
	background-color: #62b0e3;
	width: fit-content;
	font-size: 0.94vw; /*18px*/
	font-weight: 700;
	line-height: 1;
	color: #fff;
	padding: 8px;
}
.about-list .txt h3 {
	font-size: 1.56vw; /*30px*/
	margin-top: 10px;
}
@media screen and (max-width: 768px) {
	#about {
		padding: 80px 0 100px;
	}
	#about .container {
		width: 100%;
	}
	.about__txt {
		width: calc(100% - 7.29vw);
		text-align: left;
		margin: auto;
	}
	.g-cate > li {
		font-size: 3.13vw; /*24px*/
	}
	.about__cate > li {
		font-size: 14px;
	}
	.about-list .txt h3 {
		font-size: 22px;
	}
}


/*------------------------------------
#people
------------------------------------*/
#people {
	position: relative;
	background-color: #ffffff;
	padding: 100px 0 200px;
	z-index: 0;
}
#people::before {
	content: "";
	position: absolute;
	left: 0;
	top: 470px;
	width: 100%;
	height: 100%;
	background-color: #fffbf3;
	z-index: -2;
}
#people::after {
	content: "";
	position: absolute;
	left: 0;
	top: 370px;
	width: 100%;
	height: 100px;
	background-image: url("../images/wave_yl.svg");
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: bottom;
	z-index: -1;
	pointer-events: none;
}
#people .slick-slide {
	margin: 0 2.60vw; /*50px*/
}
#people .slick-slide:nth-child(odd) {
	margin-top: 50px;
}
.people__slider {
	z-index: 0;
}
.people__inner {
	position: relative;
}
.people__img {
	aspect-ratio: 2 / 3;
	overflow: hidden;
}
.people__img img {
	height: 100% !important;
	object-fit: cover;
}
.people__tit {
	position: absolute;
	top: 20px;
	margin-bottom: 1.56vw; /*30px*/
}
.people__tit span {
	display: inline-block;
	background-color: #fff;
	font-size: 1.15vw; /*22px*/
	color: #f2a096;
	padding: 0.26vw 0.52vw; /*5px 10px*/
}
.people__tit span:not(:last-child) {
	margin-bottom: 5px;
}
.people__desc {
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: absolute;
	bottom: 20px;
	right: -10px;
	background-color: #f2a096;
	border-radius: 2.08vw; /*40px*/
	width: fit-content;
	height: 4.17vw; /*80px*/
	font-size: 0.94vw; /*18px*/
	line-height: 1.4;
	white-space: nowrap;
	color: #fff;
	margin-left: auto;
	padding: 0 2.08vw; /*40px*/
}
.post-tags {
	display: flex;
	gap: 10px;
	margin-top: 15px;
}
.post-tags a {
	color: #f2a096;
}
.post-tags a::before {
	content: "#";
}
@media screen and (max-width: 768px) {
	#people {
		padding: 70px 0 100px;
	}
	#people::after {
		height: auto;
		padding-bottom: 5.2083%;
		top: calc(470px - (5.2083vw));
	}
	.people__tit {
		margin-bottom: 2.60vw; /*20px*/
	}
	.people__tit span {
		font-size: 4.17vw; /*32px*/
		padding: 0.65vw 1.95vw; /*5px 10px*/
	}
	.people__desc {
		border-radius: 6.51vw; /*50px*/
		height: 13.02vw; /*100px*/
		font-size: 3.13vw; /*24px*/
		padding: 0 6.51vw; /*50px*/
	}
}


/*------------------------------------
.sec-yl
------------------------------------*/
.sec-yl {
	background-color: #fffbf3;
	padding-bottom: 200px;
}
.sec-yl .container {
	max-width: 1260px;
}
.sec-yl__flex {
	display: flex;
	flex-wrap: wrap;
	gap: 60px;
}
.sec-yl__flex li {
	width: calc((100% - 60px) / 2);
}
.sec-yl__flex .ttl {
	position: relative;
	margin-bottom: -25px;
	z-index: 1;
}
.sec-yl__flex a {
	display: block;
	position: relative;
	background-color: #fff;
}
.sec-yl__flex a::after {
	content: "";
	position: absolute;
	top: 0;
	background-image: url("../images/rounded-bg_yl.svg");
	background-position: right bottom;
	background-repeat: no-repeat;
	width: 100%;
	height: 100%;
	z-index: 0;
}
.sec-yl__arrow {
	display: flex;
	justify-content: center;
	align-items: center;
	flex: 1 1 auto;
	min-width: 0;
	position: absolute;
	right: 10px;
	bottom: 10px;
	background-color: #fb9500;
	border-radius: 50%;
	width: 63px;
	height: 63px;
	transition: .3s cubic-bezier(.4,.4,0,1);
	z-index: 2;
}
a:hover .sec-yl__arrow {
	background-color: transparent;
	border: 1px solid #fb9500;
	transform: scale(1.1, 1.1);
}
.sec-yl__arrow::before {
	content: "";
	background-image: url("../images/rounded-arrow.svg");
	background-position: 50%;
	background-size: cover;
	width: 14px;
	height: 14px;
}
a:hover .sec-yl__arrow::before {
	background-image: url("../images/rounded-arrow_yl.svg");
}
.sec-yl__flex p {
	position: relative;
	padding: 40px 40px 60px;
	z-index: 1;
}
@media screen and (max-width: 768px) {
	.sec-yl {
		padding-bottom: 80px;
	}
	.sec-yl__flex li {
		width: 100%;
	}
	.sec-yl__flex .ttl {
		margin-bottom: -3.26vw; /*-25px*/
	}
	.sec-yl__arrow {
		width: 32px;
		height: 32px;
	}
	.sec-yl__flex a::after {
		background-size: 70px;
	}
	.sec-yl__arrow::before {
		width: 10px;
		height: 10px;
	}
}


/*------------------------------------
.gallery__slider
------------------------------------*/
.gallery__slider {
	position: relative;
}
.gallery__slider::after {
	content: "";
	position: absolute;
	right: 3.65vw; /*70px*/
	bottom: -30px;
	background-image: url("../images/top/gallery-bg.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 200px;
	height: 171px;
}
@media screen and (max-width: 768px) {
	.gallery__slider::after {
		bottom: -30px;
		width: 120px;
		height: 102px;
	}
}


/*------------------------------------
#faq
------------------------------------*/
#faq {
	background-color: #fef6f5;
	padding: 120px 0 100px;
}
#faq .container {
	max-width: 800px;
}
@media screen and (max-width: 768px) {
	#faq {
		padding: 80px 0;
	}
}
