@charset "UTF-8";
:root{
	--color-gra: linear-gradient(-60deg, rgba(235, 85, 5, 1) 0%, rgba(245, 170, 0, 1) 100%);
	--color-orange: #e88f00;
	--color-gray: #b9b9b9;
	--color-gray2: #f8f8f8;
	--color-wh: #fff;
	--color-bk: #1a1a1a;
}

.container {
	overflow: hidden;
}
.container.has-header {
	padding-top: 138px;
}
.main-content{
	margin-bottom: clamp(32px, 8vw, 80px);
	padding-bottom: clamp(36px, 9vw, 90px);
	position: relative;
	&::after{
		content: "";
		background: var(--color-gra);
		width: 100%;
		aspect-ratio: 1680 / 589;
		position: absolute;
		bottom: 0;
		left: 0;
	}
}
.mv{
	width: 100%;
	background: url(../images/recruit/mv.webp) no-repeat top center/ cover;
	aspect-ratio: 1680 / 620;
	.inner{
		width: 100%;
		height: 100%;
		position: relative;
	}
}
.mv-ttl-box{
	padding: 1.6rem 3rem;
	max-width: 400px;
	width: 100%;
	background-color: rgba(242, 242, 242, .5);
	backdrop-filter: blur(10px);
	filter: brightness(1.1);
	position: absolute;
	bottom: 10%;
	left: 0;
}
.mv-ttl {
	display: flex;
	flex-direction: column;
	gap: 4px;
	font-size: clamp(2rem, 5.12vw, 3.2rem);
	font-weight: 650;
	letter-spacing: .1rem;
	.small-text {
		font-size: 36%;
		letter-spacing: 0;
	}
}
.intro{
	.note{
		margin: 0;
	}
}
.content{
	margin-bottom: clamp(32px, 8vw, 80px);
	position: relative;
	&::before{
		content: "";
		background: var(--color-gray2);
		width: calc(1340 / 1680 * 100%);
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
		z-index: 1;
	}
	.inner{
		position: relative;
		z-index: 2;
		&.inner-l{
			margin-inline: 0 auto;
			max-width: 1440px;
			&:not(:has(.reverse)){
				margin-inline: auto 0;
			}
		}
	}
	& > *{
		margin-bottom: 20px;
		&:last-child{
			margin-bottom: 0;
		}
	}
}
.recruit-flex{
	flex-wrap: nowrap;
	gap: 32px clamp(56px, 14vw, 140px);
	.contents-l{
		width: calc(40% - 70px);

	}
	.contents-r{
		width: calc(60% - 70px);
	}
	.contents-l{
		container-type: inline-size;
	}
	.tertiary-heading{
		font-size: clamp(1.2rem, 1.4vw, 1.4rem);
		font-weight: 600;
		letter-spacing: .1rem;
		line-height: 1.5;
	}
	.img-01{
		margin: 0 auto 0 0;
		max-width: 480%;
		width: 88%;
	}
	.img-02{
		margin: calc(32 / 543 * -100%) 0 0 auto;
		max-width: 370px;
		width: 67%;
	}
	&.reverse{
		flex-direction: row-reverse;
	}
	.link-btn{
		padding: clamp(14px, 2vw, 20px) 10px;
		max-width: 237px;
		min-width: auto;
		width: 100%;
		display: block;
		background: var(--color-gra);
		font-size: clamp(16px, 2vw, 20px);
		border-radius: 6px;
	}
}
.link-btn{
	&:hover{
		color: var(--color-wh);
		animation: ripple 1.6s infinite;
	}
}
@keyframes ripple{
	0% {
		box-shadow: 0 0 0 0 var(--color-orange);
	}

	70% {
		box-shadow: 0 0 0 10px rgba(134, 93, 23, 0);
	}
	98% {
		box-shadow: 0 0 0 0 rgba(134, 93, 23, 0);
	}
	100% {
		box-shadow: 0 0 0 0 var(--color-orange);
	}
}
.recruit-heading-wrap{
	margin-block: 2em 1.2em;
	display: grid;
	align-items: center;
	grid-template-columns: max(263px, 52%) auto;
}
.recruit-heading{
	display: flex;
	align-items: center;
	gap: 12px;
	color: var(--color-orange);
	font-size: clamp(1.6rem, 3.2vw, 2rem);
	position: relative;
	.en-font{
		letter-spacing: .1rem;
	}
	.small-text{
		font-size: 50%;
		color: var(--color-bk);
	}
}
.border-line{
	max-width: 160px;
	width: 100%;
	height: 1px;
	background-color: var(--color-orange);
}
.recruit-grid{
	grid-template-columns: repeat(2, 1fr);
	align-items: center;
	gap: 32px;
}
@media (max-width: 991px) {
	.container.has-header {
		padding-top: 60px;
	}
	.recruit-grid{
		grid-template-columns: auto;
		gap: 0;
		figure{
			margin-bottom: 20px;
		}
	}
}
@media (max-width: 767px) {
	.mv{
        aspect-ratio: 750 / 650;
		background: url(../images/recruit/mv-sp.webp) no-repeat top center/ cover;
		.mv-ttl-box{
			padding: 1.6rem 2rem;
			width: 64%;
		}
	}
    .content{
		&::before{
			width: calc(600 / 750 * 100%);
		}
		.inner{
			&.inner-l{
				margin-inline: auto;
				&:not(:has(.reverse)){
					margin-inline: auto;
				}
			}
		}
	}
	.recruit-flex{
		flex-direction: column-reverse;
		.contents-l,
		.contents-r{
			width: 100%;
		}
		&.reverse{
			flex-direction: column-reverse;
		}
		.link-btn{
			width: 60%;
		}
	}
	.recruit-heading-wrap{
		grid-template-columns: 65% 35%;
	}
}
