@charset "UTF-8";
/* ==========================================================
	file: recruittop.css
	00. Header Override (transparent)
	01. Split Screen Layout
	02. Main Visual
	03. Message
	04. Concept (EMOTION / MOTIVE / CREATIVE)
	05. OUR WORKS
	06. ENTRY
	07. GROWTH STEPS
	08. GUIDE
	09. NEWS
	10. Scroll Animation
========================================================== */
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@400;500;700&display=swap');

/* ==========================================================
	Loading Screen
========================================================== */
.loading-screen {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #fff;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.6s ease;
}
.loading-screen.is-hidden {
	opacity: 0;
	pointer-events: none;
}
.loading-screen__inner {
	text-align: center;
}
.loading-screen__logo {
	width: 120px;
	height: auto;
	margin-bottom: 1.5rem;
}
.loading-screen__spinner {
	width: 32px;
	height: 32px;
	border: 3px solid rgba(115, 154, 142, 0.2);
	border-top-color: #739A8E;
	border-radius: 50%;
	margin: 0 auto;
	animation: loading-spin 0.8s linear infinite;
}
@keyframes loading-spin {
	to { transform: rotate(360deg); }
}

/* English font */
.serif-ttl,
.sec-concept__en,
.split-left__btn small {
	font-family: 'Times New Roman', serif;
}

/* Base font */
body {
	font-family: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
}

/* ==========================================================
	00. Header Override (transparent) - TOP page only
========================================================== */
.recruit header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	background: transparent;
}
.recruit .header-nav {
	background: transparent !important;
}
.recruit .header-logo svg path {
	fill: #fff;
}
.recruit .hamburger-area .menu-text {
	color: #fff;
}
.recruit .hamburger-area .menu-button b {
	background-color: #fff;
}

/* ==========================================================
	01. Split Screen Layout
========================================================== */
main {
	padding-top: 0;
}

.split-screen {
	display: flex;
	min-height: 100vh;
}

/* Left Panel - PC only, fixed */
.split-left {
	display: none;
}

/* SP Fixed Bottom CTA */
.sp-fixed-cta {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	display: flex;
	z-index: 100;
}
.sp-fixed-cta a {
	flex: 1;
	display: block;
	padding: 0.875rem 0;
	text-align: center;
	font-weight: bold;
	font-size: 0.9375rem;
	color: #1c1c1c;
	background: #fff;
	box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.3);
	text-decoration: none;
}
.sp-fixed-cta a:first-child {
	border-top-left-radius: 16px;
}
.sp-fixed-cta a:last-child {
	border-top-right-radius: 16px;
}
.sp-fixed-cta a + a {
	border-left: 1px solid #ddd;
}
.sp-fixed-cta a span {
	margin-left: 0.5rem;
}

/* Right Panel */
.split-right {
	width: 100%;
	padding-bottom: 50px; /* SP固定ボタン分 */
}

/* ==========================================================
	02. Main Visual
========================================================== */
.mv {
	position: relative;
	width: 100%;
	height: 100vh;
	overflow: hidden;
}
.mv--01 {
	z-index: 1;
}
.mv--02 {
	height: 0;
	z-index: 0;
	overflow: visible;
}
.mv video {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	object-fit: cover;
}
.mv--02 video {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	transform: none;
	min-width: 0;
	min-height: 0;
}
.mv__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	padding: 0;
	z-index: 2;
}
.mv__title {
	width: 100%;
	height: auto;
	max-height: 55vh;
	object-fit: contain;
	opacity: 0.6;
}
.mv__subtitle {
	color: #fff;
	font-size: 1.75rem;
	font-weight: bold;
	letter-spacing: 0.2em;
	margin-top: 1.5rem;
	padding-left: 5%;
	text-shadow: 1px 1px 4px rgba(0,0,0,0.4);
}
/* Scroll arrow */
.mv__scroll {
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
}
.mv__scroll span {
	display: block;
	width: 1px;
	height: 50px;
	background: #fff;
	position: relative;
}
.mv__scroll span::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: -4px;
	width: 9px;
	height: 9px;
	border-right: 1px solid #fff;
	border-bottom: 1px solid #fff;
	transform: rotate(45deg);
}

/* ==========================================================
	03. Message
========================================================== */
.sec-message,
.sec-concept-wrap,
.sec-works,
.sec-entry,
.sec-growth,
.sec-closing,
.sec-news,
footer {
	position: relative;
	z-index: 2;
}
.sec-message {
	padding: 60px 20px;
	margin-top: -1px;
	background: rgba(154, 154, 154, 0.83);
	color: #fff;
	overflow: hidden;
}
.sec-message__inner {
	position: relative;
	z-index: 1;
	max-width: 600px;
	margin: 0 auto;
}
.sec-message__lead {
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 2;
	margin-bottom: 2rem;
	margin-top: 0;
}
.sec-message p {
	line-height: 1.9;
	margin-bottom: 1.5rem;
	font-size: 0.9375rem;
}
.sec-message__emotive {
	display: block;
	width: 100%;
	max-width: 500px;
	margin: 2rem auto;
	opacity: 0.35;
}

/* ==========================================================
	04. Concept (EMOTION / MOTIVE / CREATIVE)
========================================================== */
.sec-concept-wrap {
	overflow: hidden;
	background: rgba(154, 154, 154, 0.83);
}

.sec-concept {
	position: relative;
	padding: 0 20px 60px;
	text-align: center;
}
.sec-concept--last {
	padding-bottom: 40px;
}

/* White ellipse - SP */
.sec-concept__circle {
	position: relative;
	width: 340px;
	height: 230px;
	background: #fff;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto 2rem;
	margin-left: -110px;
	transform: rotate(-31deg);
	z-index: 1;
}
.sec-concept__circle--right {
	margin-left: auto;
	margin-right: -110px;
}

/* Content inside ellipse - counter-rotate */
.sec-concept__content {
	transform: rotate(31deg);
	text-align: left;
	padding: 20px;
	margin-left: 40%;
}
.sec-concept__content--right {
	text-align: right;
	margin-left: 0;
	margin-right: 40%;
}

.sec-concept__icon {
	margin-bottom: 0.5rem;
}
.sec-concept__icon img {
	width: 40px;
	height: 40px;
}
.sec-concept__en {
	font-family: 'Times New Roman', serif;
	font-size: 1.5rem;
	letter-spacing: 0.1em;
	margin-bottom: 0.25rem;
	color: #5a9a8a;
}
.sec-concept__ja {
	font-size: 0.875rem;
	font-weight: 400;
	color: #5a9a8a;
	margin-bottom: 0;
}
.sec-concept__text {
	font-size: 0.875rem;
	line-height: 2;
	color: #fff;
	padding: 10px 10px 0;
	text-align: left;
}

/* Plus icon */
.sec-concept__more {
	margin-top: 1.5rem;
}
.sec-concept__more span {
	display: inline-block;
	color: #fff;
	font-size: 3rem;
	font-weight: 300;
	line-height: 1;
}

/* ==========================================================
	05. OUR WORKS
========================================================== */
.sec-works {
	padding: 60px 20px;
	background: #fff url('/common/img/recruit/top/ourworks_bk.png') no-repeat center center;
	background-size: cover;
}
.sec-works__inner {
	max-width: 600px;
	margin: 0 auto;
	text-align: center;
}
.sec-works__title {
	font-size: 2.75rem;
	font-weight: normal;
	letter-spacing: 0.1em;
	line-height: 1.2;
	margin-bottom: 0.5rem;
	text-align: left;
	color: #739A8E;
}
.sec-works__title span {
	display: block;
}
.sec-works__sub {
	font-size: 0.8125rem;
	color: #739A8E;
	text-align: left;
	margin-bottom: 2rem;
}
.sec-works__photo {
	margin-bottom: 2rem;
	overflow: hidden;
}
.sec-works__photo img {
	width: 100%;
	height: auto;
	display: block;
}
/* Works Slider */
.works-slider {
	position: relative;
	margin-bottom: 2rem;
}
.works-slider__main {
	position: relative;
	margin-bottom: 1.5rem;
	overflow: hidden;
}
.works-slider__track {
	display: flex;
	transition: transform 0.5s ease;
}
.works-slider__slide {
	flex: 0 0 100%;
	width: 100%;
	text-align: center;
}
.works-slider__slide img {
	width: 100%;
	max-width: 480px;
	height: auto;
	display: inline-block;
	cursor: pointer;
}
/* Arrows: fixed to left/right at nav info level */
.works-slider__arrow {
	position: absolute;
	bottom: 1.5em;
	transform: none;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #739A8E;
	color: #fff;
	border: none;
	font-size: 1.25rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.3s;
	z-index: 3;
}
.works-slider__arrow--prev {
	left: 0;
}
.works-slider__arrow--next {
	right: 0;
}
.works-slider__arrow:hover {
	opacity: 0.7;
}
/* Nav info: below slider, fixed height */
.works-slider__nav {
	display: block;
}
.works-slider__info {
	text-align: center;
	min-height: 4.5em;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.works-slider__name {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 0.25rem;
	line-height: 1.3;
	color: #739A8E;
}
.works-slider__name-en {
	font-family: 'Times New Roman', serif;
	font-size: 0.75rem;
	color: #739A8E;
	margin-bottom: 0;
}

.sec-works__btn a {
	display: inline-block;
	background: #1c1c1c;
	color: #fff;
	padding: 1rem 3rem;
	font-weight: bold;
	text-align: center;
	border-radius: 50px;
	position: relative;
	transition: opacity 0.4s ease;
}
.sec-works__btn a span {
	margin-left: 1rem;
}
.sec-works__btn a:hover {
	opacity: 0.7;
}

/* ==========================================================
	06. ENTRY
========================================================== */
.sec-entry {
	padding: 60px;
	background: #739A8E;
	text-align: center;
	color: #fff;
}
.sec-entry__inner {
	max-width: 600px;
	margin: 0 auto;
}
.sec-entry__title {
	font-size: 2.75rem;
	font-weight: normal;
	letter-spacing: 0.15em;
	margin-bottom: 0.25rem;
}
.sec-entry__sub {
	font-size: 0.8125rem;
	margin-bottom: 2rem;
}
.sec-entry__btns {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin-bottom: 1.5rem;
}
.sec-entry__btn {
	display: block;
	border: 1px solid #fff;
	color: #fff;
	padding: 1.75rem 1rem;
	font-size: 1.25rem;
	font-weight: bold;
	text-align: center;
	transition: background 0.4s ease, color 0.4s ease;
	position: relative;
}
.sec-entry__btn span {
	position: absolute;
	right: 1rem;
	top: 50%;
	transform: translateY(-50%);
	font-size: 0.75rem;
}
.sec-entry__btn:hover {
	background: #fff;
	color: #739A8E;
}
.sec-entry__link a {
	color: #fff;
	font-size: 0.875rem;
	text-decoration: underline;
}
.sec-entry__link a:hover {
	text-decoration: none;
}

/* ==========================================================
	07. GROWTH STEPS
========================================================== */
.sec-growth {
	padding: 60px 20px;
	background: #fff;
}
.sec-growth__inner {
	max-width: 600px;
	margin: 0 auto;
}
.sec-growth__title {
	text-align: left;
	font-size: 2.75rem;
	font-weight: normal;
	letter-spacing: 0.1em;
	line-height: 1.2;
	margin-bottom: 0.5rem;
	color: #739A8E;
}
.sec-growth__title span {
	display: block;
}
.sec-growth__sub {
	text-align: left;
	font-size: 0.8125rem;
	color: #739A8E;
	margin-bottom: 2.5rem;
}
.sec-growth__step {
	margin-bottom: 2.5rem;
}
.sec-growth__img {
	margin-bottom: 1rem;
	overflow: hidden;
}
.sec-growth__img img {
	width: 100%;
	height: auto;
	display: block;
	max-width: 400px;
	margin: 15px auto 30px;
	border-radius: 16px;
}
.sec-growth__text h3 {
	font-size: 1.125rem;
	margin-bottom: 0.75rem;
	color: #739A8E;
}
.sec-growth__text h3 small {
	font-size: 0.8125rem;
	font-weight: normal;
	margin-left: 0.5rem;
}
.sec-growth__text p {
	font-size: 0.9375rem;
	line-height: 1.8;
	color: #739A8E;
}

/* ==========================================================
	08. Closing Message
========================================================== */
.sec-closing {
	position: relative;
	z-index: 2;
	padding: 80px 20px;
	background: rgba(154, 154, 154, 0.83);
	color: #fff;
	text-align: center;
}
.sec-closing__inner {
	max-width: 600px;
	margin: 0 auto;
}
.sec-closing__inner p {
	font-size: 1.125rem;
	line-height: 2.8;
}

/* ==========================================================
	09. NEWS
========================================================== */
.sec-news {
	padding: 60px 20px;
	background: #fff;
}
.sec-news__inner {
	max-width: 600px;
	margin: 0 auto;
}
.sec-news__title {
	font-size: 2.75rem;
	font-weight: normal;
	letter-spacing: 0.1em;
	line-height: 1.2;
	margin-bottom: 0.5rem;
	text-align: left;
	color: #739A8E;
}
.sec-news__sub {
	font-size: 0.8125rem;
	color: #739A8E;
	text-align: left;
	margin-bottom: 2rem;
}
.sec-news__list {
	margin: 0;
	padding: 0;
}
.sec-news__list dt {
	font-size: 0.8125rem;
	color: #000;
	margin-bottom: 0;
}
.sec-news__list dt:first-of-type {
}
.sec-news__list dd {
	margin: 0 0 1rem;
	color: #739A8E;
}
.sec-news__list dd:last-of-type {
	margin-bottom: 0;
	padding-bottom: 0;
}
.sec-news__list dd a {
	color: #739A8E;
	text-decoration: none;
	font-size: 0.9375rem;
}
.sec-news__list dd a:hover {
	text-decoration: underline;
}

/* ==========================================================
	10. Scroll Animation
========================================================== */
/* TOP: pagetop position */
.recruit .pagetop {
	right: 10px;
	bottom: 85px;
}

.fade-in {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* ==========================================================
	Responsive: PC (min-width: 769px)
========================================================== */
@media (min-width: 769px) {
	/* Footer: PC時は右パネル幅に合わせて縦積み */
	footer {
		margin-left: calc(100vw - 500px);
		width: 500px;
		position: relative;
		z-index: 2;
	}
	footer .wrap {
		max-width: 100%;
		padding: 0 15px;
	}
	footer .footerbtn-wrap a {
		width: 100%;
		margin-bottom: 1rem;
	}
	footer .footerbtn-wrap .btn-second,
	footer .footerbtn-wrap .btn-third {
		display: block;
	}
	footer .footerbtn-wrap .btn-second a,
	footer .footerbtn-wrap .btn-third a {
		width: 100%;
	}

	/* SP Fixed CTA: PC時は非表示 */
	.sp-fixed-cta {
		display: none;
	}
	.recruit .pagetop {
		bottom: auto;
	}

	/* Right Panel: PC時はpadding不要 */
	.split-right {
		padding-bottom: 0;
	}

	/* Split Screen */
	.split-left {
		display: block;
		position: fixed;
		top: 0;
		left: 0;
		width: 50vw;
		height: 100vh;
		overflow: hidden;
		z-index: 1;
	}
	.split-left video {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		min-width: 100%;
		min-height: 100%;
		width: auto;
		height: auto;
		object-fit: cover;
	}
	.split-left__youtube {
		display: none;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 180%;
		height: 180%;
		pointer-events: none;
	}
	.split-left__overlay {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: flex-start;
		padding: 0;
		z-index: 2;
	}
	.split-left__title {
		width: 100%;
		height: auto;
		max-height: 55vh;
		object-fit: contain;
		opacity: 0.6;
	}
	.split-left__subtitle {
		color: #fff;
		font-size: 1.75rem;
		font-weight: bold;
		letter-spacing: 0.2em;
		margin-top: 1.5rem;
		text-shadow: 1px 1px 4px rgba(0,0,0,0.4);
	}
	.split-left__cta {
		display: flex;
		gap: 1.5rem;
		position: absolute;
		bottom: 60px;
		right: 5%;
	}
	.split-left__btn {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		width: 140px;
		height: 140px;
		border-radius: 50%;
		background: #fff;
		color: #739A8E;
		text-decoration: none;
		transition: background 0.4s ease, color 0.4s ease;
	}
	.split-left__btn small {
		font-family: 'Times New Roman', serif;
		font-size: 0.6875rem;
		display: block;
		margin-bottom: 0.25rem;
	}
	.split-left__btn span {
		font-size: 1rem;
		font-weight: bold;
		display: block;
	}
	.split-left__btn i {
		font-style: normal;
		font-size: 0.875rem;
		margin-top: 0.25rem;
	}
	.split-left__btn:hover {
		background: rgba(255,255,255,0.85);
	}

	/* Right Panel offset */
	.split-right {
		margin-left: calc(100vw - 500px);
		width: 500px;
		min-width: 500px;
	}

	/* Left Panel width follows right */
	.split-left {
		width: calc(100vw - 500px);
	}

	/* Main Visual adjustments for half width */
	.mv__title {
		width: 100%;
	}
	.mv__subtitle {
		font-size: 1.75rem;
	}
	.works-slider__name {
		font-size: 1.5rem;
	}

	/* MV02: PC時も高さ不要（背景動画として表示） */
	.mv--02 {
		height: 0;
		overflow: visible;
	}

	/* MV02: PC時は動画を右パネル内で固定 */
	.mv--02 video {
		position: fixed;
		top: 0;
		left: calc(100vw - 500px);
		width: 500px;
		height: 100vh;
		object-fit: cover;
	}

	/* Message */
	.sec-message {
		padding: 80px 40px;
		min-height: 100vh;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.sec-message__lead {
		font-size: 1.5rem;
	}
	.sec-message p {
		font-size: 0.875rem;
	}

	/* PC時の本文サイズ統一 */
	.sec-concept__text,
	.sec-growth__text p,
	.sec-news__list dd a {
		font-size: 0.875rem;
	}

	/* Concept: PC楕円サイズ */
	.sec-concept {
		padding: 60px 0;
	}
	.sec-concept__circle {
		width: 580px;
		height: 400px;
		margin-left: -240px;
	}
	.sec-concept__circle--right {
		margin-left: auto;
		margin-right: -240px;
	}
	.sec-concept__content {
		margin-left: 35%;
	}
	.sec-concept__content--right {
		margin-left: 0;
		margin-right: 35%;
	}
	.sec-concept__en {
		font-size: 2rem;
	}

	/* Works */
	.sec-works {
		padding: 80px 40px;
	}

	/* Entry */
	.sec-entry {
		padding: 80px 40px;
	}
	.sec-entry__btns {
		flex-direction: column;
		gap: 1rem;
	}
	.sec-entry__btn {
		flex: 1;
	}

	/* Growth */
	.sec-growth {
		padding: 80px 40px;
	}
	.sec-growth__step {
		display: block;
	}


	/* News */
	.sec-news {
		padding: 80px 40px;
	}
}

/* ==========================================================
	Responsive: Large PC (min-width: 1200px)
========================================================== */
@media (min-width: 1200px) {
	.sec-message {
		padding: 100px 60px;
	}
	.sec-message__lead {
		font-size: 1.375rem;
	}
	.sec-message p {
		font-size: 1rem;
	}

	.sec-concept {
		padding: 40px 60px;
	}
	.sec-concept__en {
		font-size: 2rem;
	}

	.sec-works {
		padding: 100px 60px;
	}

	.sec-entry {
		padding: 100px 60px;
	}

	.sec-growth {
		padding: 100px 60px;
	}

	.sec-news {
		padding: 100px 60px;
	}
}

/* ==========================================================
	Responsive: Wide PC (min-width: 1600px) - YouTube switch
========================================================== */
@media (min-width: 1600px) {
	.split-left video {
		display: none;
	}
	.split-left__youtube {
		display: block;
	}
}
