@charset "utf-8";

/* hero */
.hero {
	position: relative;
	margin-right: max(-3.66vw, -50px);
	padding-top: min(3.66vw, 50px);
}
.hero__inner {
	position: relative;
	max-width: 1316px;
	margin: 0 auto;
}
.hero__image {
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
}
.hero__catch {
	position: absolute;
	bottom: 6%;
	height: 41.33%;
	padding: 5px;
	background-color: rgba(255, 255, 255, 0.75);
}
@media (max-width: 576px) {
	.hero {
		margin-left: max(-3.66vw, -50px);
	}
	.hero__inner {
		aspect-ratio: 1140 / 750;
	}
	.hero__catch {
		left: min(3.66vw, 50px);
	}
}
@media (min-width: 577px) {
	.hero__inner {
		aspect-ratio: 1316 / 750;
	}
	.hero__catch {
		left: 0;
	}
}

/* contents */
.contents {
	padding-bottom: 0;
}

/* column-home */
.column-home {
	display: flex;
	gap: 50px 8.33%;
	align-items: flex-start;
}
.column-home--recruitment {
	width: 100cqw;
	margin: 0 calc(50% - 50cqw);
	padding: 0 max(calc(50cqw - 600px), 15px);
	text-align: center;
	color: var(--color-white);
	background: url("/files/bg_main_01.jpg");
	background-size: cover;
}
.column-home__body {
	width: 100%;
}
.column-home__body > :first-child {
	margin-top: 0;
}
.column-home__body > :last-child {
	margin-bottom: 0;
}
.column-home__figure {
	position: relative;
	width: 100%;
}
@media (max-width: 768px) {
	.column-home {
		flex-direction: column;
	}
	.column-home__image--company {
		margin-left: -19%;
	}
	.column-home__image--person {
		margin-left: 27%;
	}
}
@media (min-width: 769px) {
	.column-home--company {
		flex-direction: row-reverse;
	}
	.column-home__figure--company {
		aspect-ratio: 550 / 430;
	}
	.column-home__figure--person {
		aspect-ratio: 550 / 730;
	}
	.column-home__image {
		position: absolute;
		max-width: initial;
		height: 100%;
	}
	.column-home__image--company {
		right: 0;
	}
}
@media (max-width: 1024px) {
	.column-home {
		margin-top: 100px !important;
	}
	.column-home--recruitment {
		padding-top: 100px;
		padding-bottom: 100px;
	}
}
@media (min-width: 1025px) {
	.column-home {
		margin-top: 200px !important;
	}
	.column-home--recruitment {
		padding-top: 175px;
		padding-bottom: 200px;
	}
}

/* heading-1 */
.heading-1 {
	line-height: 1.25;
}
@media (max-width: 1024px) {
	.heading-1 {
		margin-top: 100px;
	}
	.heading-1__en {
		font-size: 3.5rem;
	}
	.heading-1__ja {
		margin-top: 5px;
		font-size: 1.7rem;
	}
}
@media (min-width: 1025px) {
	.heading-1 {
		margin-top: 200px;
	}
	.heading-1__en {
		font-size: min(6vw, 7.5rem);;
	}
	.heading-1__ja {
		font-size: 2.0rem;
	}
}

/* lead */
@media (max-width: 1024px) {
	.lead {
		margin: 25px 0;
	}
}
@media (min-width: 1025px) {
	.lead {
		margin: 50px 0;
	}
}

/* list-link */
.list-link > li {
	width: 100%;
}

/* list-home-recruitment */
.list-home-recruitment {
	display: grid;
	margin: 0;
	padding: 0 10px;
	list-style: none;
}
.list-home-recruitment__button {
	max-width: initial;
}
.list-home-recruitment__button::before {
	background: rgba(0, 0, 0, 0.5);
}
.list-home-recruitment__button--entry {
	color: var(--color-black) !important;
}
.list-home-recruitment__button--entry::before {
	background: rgba(255, 255, 255, 0.5);
}
.list-home-recruitment__button--entry::after {
	background-image: url("/files/ico_arrow_black_left_01.svg");
}
@media (max-width: 768px) {
	.list-home-recruitment {
		gap: 25px;
		margin-top: 75px;
	}
	.list-home-recruitment__button {
		height: 75px;
	}
}
@media (min-width: 769px) {
	.list-home-recruitment {
		gap: min(4.07vw, 50px);
		grid-template-columns: 1fr 1fr 1fr;
		margin-top: 100px;
	}
	.list-home-recruitment__item--entry {
		grid-column: 1 / -1;
	}
	.list-home-recruitment__button {
		height: 100px;
	}
}
