@charset "UTF-8";

:root {
	--top-color-bg: #071725;
	--top-color-bg-deep: #03101a;
	--top-color-panel: #0b1d2b;
	--top-color-gold: #d9a32f;
	--top-color-gold-light: #f1c35a;
	--top-color-text: #f6f3ec;
	--top-color-muted: #c8c9c9;
	--top-color-line: rgba(217, 163, 47, 0.55);
	--top-color-paper: #f7f5f0;
	--top-color-ink: #17202a;
	--top-container: 1120px;
}

body.home {
	background: var(--top-color-bg-deep);
}

body.home #content-w {
	overflow: hidden;
}

.top-page,
.top-page * {
	box-sizing: border-box;
}

.top-page {
	position: relative;
	left: 50%;
	width: 100vw;
	margin-left: -50vw;
	color: var(--top-color-text);
	background:
		radial-gradient(circle at 50% 25%, rgba(29, 62, 79, 0.35), transparent 33rem),
		linear-gradient(180deg, var(--top-color-bg-deep), var(--top-color-bg));
	font-family: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
	line-height: 1.75;
}

.top-page img {
	max-width: 100%;
	height: auto;
	margin: 0;
	vertical-align: middle;
}

.top-page a {
	text-decoration: none;
}

.top-page__main {
	display: block;
	width: 100%;
	margin: 0;
	padding: 0;
	color: var(--top-color-text);
	border-radius: 0;
	background: transparent;
}

.top-page__container {
	width: min(calc(100% - 48px), var(--top-container));
	margin-right: auto;
	margin-left: auto;
}

.top-hero {
	position: relative;
	width: min(100%, 1536px);
	aspect-ratio: 1536 / 920;
	margin: 0 auto;
	overflow: hidden;
	background: #0b1824;
}

.top-hero__image {
	display: block;
	width: 100%;
}

.top-hero__link-map {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.top-hero__hotspot {
	position: absolute;
	top: 92.9%;
	width: 12.5%;
	height: 4.3%;
	border-radius: 999px;
	pointer-events: auto;
}

.top-hero__hotspot:focus-visible {
	outline: 3px solid #fff;
	outline-offset: 3px;
}

.top-hero__hotspot--career {
	left: 18.4%;
}

.top-hero__hotspot--workstyle {
	left: 43.8%;
}

.top-hero__hotspot--skill {
	left: 69.2%;
}

.top-page .is-placeholder {
	cursor: default;
	pointer-events: none;
}

.top-section {
	margin-bottom: 0;
	padding: 54px 0 24px;
}

.top-section__title {
	display: flex;
	align-items: center;
	gap: 28px;
	justify-content: center;
	margin: 0 0 30px;
	color: var(--top-color-text);
	font-size: clamp(1.55rem, 3vw, 2.15rem);
	font-weight: 500;
	letter-spacing: 0.12em;
	line-height: 1.4;
	text-align: center;
}

.top-section__title::before,
.top-section__title::after {
	width: min(24%, 170px);
	height: 1px;
	content: "";
	background: linear-gradient(90deg, transparent, var(--top-color-line));
}

.top-section__title::after {
	background: linear-gradient(90deg, var(--top-color-line), transparent);
}

.top-pillars__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.top-pillar-card {
	min-width: 0;
	margin: 0;
	border: 1px solid var(--top-color-line);
	background: rgba(4, 17, 27, 0.78);
	box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.top-pillar-card__link {
	display: flex;
	height: 100%;
	flex-direction: column;
	color: var(--top-color-text);
	transition: border-color 0.2s ease, transform 0.2s ease;
}

.top-pillar-card__link:not(.is-placeholder):hover {
	transform: translateY(-3px);
}

.top-pillar-card__image {
	width: 100%;
	aspect-ratio: 1.6 / 1;
	object-fit: cover;
}

.top-pillar-card__body {
	position: relative;
	display: flex;
	min-height: 205px;
	flex: 1;
	flex-direction: column;
	padding: 23px 25px 25px;
}

.top-pillar-card__title {
	margin-bottom: 10px;
	color: var(--top-color-gold-light);
	font-size: 1.15rem;
	font-weight: 700;
	line-height: 1.55;
}

.top-pillar-card__description {
	color: var(--top-color-muted);
	font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
	font-size: 0.92rem;
	line-height: 1.8;
}

.top-pillar-card__arrow,
.top-post-card__arrow {
	position: absolute;
	right: 17px;
	bottom: 12px;
	color: var(--top-color-gold);
	font-size: 1.55rem;
	line-height: 1;
}

.top-card__status {
	display: inline-flex;
	align-self: flex-start;
	margin-top: auto;
	padding: 2px 10px;
	border: 1px solid rgba(217, 163, 47, 0.45);
	border-radius: 999px;
	color: var(--top-color-gold-light);
	font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
	font-size: 0.72rem;
	letter-spacing: 0.08em;
}

.top-post-grid {
	display: grid;
	gap: 18px;
}

.top-post-grid--three {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.top-post-grid--four {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.top-post-card {
	min-width: 0;
	margin: 0;
	overflow: hidden;
	background: var(--top-color-paper);
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.top-post-card__link {
	display: flex;
	height: 100%;
	flex-direction: column;
	color: var(--top-color-ink);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.top-post-card__link:hover {
	color: var(--top-color-ink);
	transform: translateY(-3px);
}

.top-post-card__media {
	display: flex;
	width: 100%;
	aspect-ratio: 1.62 / 1;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background:
		linear-gradient(135deg, rgba(217, 163, 47, 0.14), rgba(4, 17, 27, 0.08)),
		#d8d8d4;
}

.top-post-card__image {
	width: 100%;
	height: 100% !important;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.top-post-card__link:hover .top-post-card__image {
	transform: scale(1.025);
}

.top-post-card__placeholder {
	color: rgba(7, 23, 37, 0.5);
	font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.16em;
}

.top-post-card__body {
	position: relative;
	display: flex;
	min-height: 132px;
	flex: 1;
	flex-direction: column;
	padding: 18px 20px 22px;
	color: var(--top-color-ink);
}

.top-post-card__title {
	display: -webkit-box;
	overflow: hidden;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.65;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.top-post-card__meta {
	display: block;
	margin-top: auto;
	padding-top: 10px;
	color: #62666b;
	font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
	font-size: 0.72rem;
	line-height: 1.5;
}

.top-post-card--empty .top-post-card__body {
	min-height: 120px;
}

.top-banner-wrap {
	margin-bottom: 0;
	padding-top: 28px;
}

.top-banner {
	position: relative;
	display: flex;
	min-height: 280px;
	align-items: center;
	overflow: hidden;
	border: 1px solid var(--top-color-line);
	background: #07131d;
}

.top-banner__background {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100% !important;
	object-fit: cover;
}

.top-banner::after {
	position: absolute;
	inset: 0;
	content: "";
	background: linear-gradient(90deg, rgba(2, 12, 20, 0.97) 0%, rgba(2, 12, 20, 0.8) 44%, rgba(2, 12, 20, 0.08) 76%);
}

.top-banner__content {
	position: relative;
	z-index: 1;
	width: min(58%, 640px);
	padding: 34px 42px;
}

.top-banner__content h2 {
	margin: 0 0 13px;
	color: var(--top-color-gold-light);
	font-size: clamp(1.55rem, 3vw, 2.2rem);
	font-weight: 500;
	letter-spacing: 0.07em;
	line-height: 1.5;
}

.top-banner__content p {
	margin: 0 0 19px;
	color: var(--top-color-text);
	font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
	font-size: 0.9rem;
	line-height: 1.85;
}

.top-button {
	display: inline-flex;
	min-height: 46px;
	align-items: center;
	gap: 16px;
	justify-content: center;
	padding: 9px 23px;
	border: 1px solid var(--top-color-gold-light);
	color: #16120a;
	background: linear-gradient(180deg, #e7b74a, #bd8420);
	font-weight: 700;
	letter-spacing: 0.04em;
	transition: filter 0.2s ease, transform 0.2s ease;
}

.top-button:hover {
	color: #16120a;
	filter: brightness(1.08);
	transform: translateY(-2px);
}

.top-button__status {
	padding: 1px 7px;
	border: 1px solid rgba(22, 18, 10, 0.45);
	border-radius: 999px;
	font-family: -apple-system, BlinkMacSystemFont, sans-serif;
	font-size: 0.62rem;
	font-weight: 600;
	white-space: nowrap;
}

.top-about {
	padding-top: 38px;
}

.top-about__inner {
	display: grid;
	grid-template-columns: 180px 1fr;
	gap: 38px;
	align-items: center;
	padding: 25px 42px;
	border: 1px solid var(--top-color-line);
	background: rgba(4, 17, 27, 0.54);
}

.top-about__image {
	width: 150px;
	height: 150px !important;
	border: 1px solid var(--top-color-gold);
	border-radius: 50%;
	object-fit: cover;
}

.top-about__content .top-section__title {
	justify-content: flex-start;
	margin-bottom: 18px;
}

.top-about__content .top-section__title::before {
	display: none;
}

.top-about__content .top-section__title::after {
	width: min(40%, 180px);
}

.top-about__description {
	max-width: 760px;
	margin: 0 0 14px;
	color: var(--top-color-muted);
	font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
	font-size: 0.93rem;
	line-height: 1.9;
}

.top-about__link {
	display: inline-flex;
	gap: 10px;
	align-items: center;
	border-bottom: 1px solid var(--top-color-gold);
	color: var(--top-color-gold-light);
	font-weight: 700;
}

.top-about__link:hover {
	color: #fff1bc;
}

.top-about__link.is-placeholder::after {
	content: "（準備中）";
	font-size: 0.75em;
}

.top-latest {
	padding-bottom: 58px;
}

.top-section__empty {
	grid-column: 1 / -1;
	margin: 0;
	padding: 32px;
	border: 1px solid var(--top-color-line);
	color: var(--top-color-muted);
	text-align: center;
}

.top-bottom-cta {
	margin-bottom: 0;
	padding: 28px 0 34px;
	border-top: 1px solid var(--top-color-line);
	border-bottom: 1px solid var(--top-color-line);
	background: rgba(2, 12, 20, 0.72);
}

.top-bottom-cta h2 {
	margin: 0 0 22px;
	color: var(--top-color-gold-light);
	font-size: clamp(1.4rem, 3vw, 2rem);
	font-weight: 500;
	letter-spacing: 0.08em;
	text-align: center;
}

.top-bottom-cta__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.top-bottom-cta__item {
	display: flex;
	min-height: 76px;
	align-items: center;
	gap: 15px;
	justify-content: center;
	padding: 10px 20px;
	border: 1px solid var(--top-color-line);
	color: var(--top-color-gold-light);
	font-size: 1rem;
	font-weight: 700;
	transition: background-color 0.2s ease, transform 0.2s ease;
}

.top-bottom-cta__item:not(.is-placeholder):hover {
	color: #fff1bc;
	background: rgba(217, 163, 47, 0.08);
	transform: translateY(-2px);
}

.top-bottom-cta__item img {
	width: 52px;
	height: 52px;
	object-fit: contain;
}

.top-bottom-cta__item.is-placeholder::after {
	content: "準備中";
	padding: 1px 7px;
	border: 1px solid rgba(217, 163, 47, 0.45);
	border-radius: 999px;
	font-family: -apple-system, BlinkMacSystemFont, sans-serif;
	font-size: 0.62rem;
	font-weight: 400;
}

@media screen and (max-width: 959px) {
	.top-page__container {
		width: min(calc(100% - 36px), var(--top-container));
	}

	.top-pillars__grid,
	.top-post-grid--three {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.top-post-grid--four {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.top-pillar-card:last-child {
		grid-column: 1 / -1;
		width: calc(50% - 9px);
		justify-self: center;
	}

	.top-banner__content {
		width: 70%;
	}
}

@media screen and (max-width: 599px) {
	body.home #content-w {
		padding-top: 0 !important;
		background: var(--top-color-bg-deep) !important;
	}

	body.home .top-page {
		color: var(--top-color-text) !important;
		background:
			radial-gradient(circle at 50% 25%, rgba(29, 62, 79, 0.28), transparent 28rem),
			linear-gradient(180deg, var(--top-color-bg-deep), var(--top-color-bg)) !important;
	}

	body.home .top-page .top-page__main {
		margin: 0 !important;
		padding: 0 !important;
		color: var(--top-color-text) !important;
		border: 0 !important;
		border-radius: 0 !important;
		background: transparent !important;
		box-shadow: none !important;
	}

	body.home .top-page section {
		margin-top: 0 !important;
		margin-bottom: 0 !important;
	}

	.top-page {
		font-size: 15px;
	}

	.top-page__container {
		width: min(calc(100% - 24px), var(--top-container));
	}

	.top-section {
		padding: 32px 0 0 !important;
	}

	body.home .top-page .top-section__title {
		position: static !important;
		display: flex !important;
		width: auto !important;
		min-height: 0 !important;
		align-items: center !important;
		gap: 12px;
		justify-content: center !important;
		margin-bottom: 22px;
		padding: 0 !important;
		border: 0 !important;
		border-radius: 0 !important;
		color: var(--top-color-text) !important;
		background: transparent !important;
		box-shadow: none !important;
		font-size: 1.35rem;
		font-weight: 600 !important;
		letter-spacing: 0.07em;
		line-height: 1.45 !important;
		text-align: center !important;
	}

	body.home .top-page .top-section__title::before,
	body.home .top-page .top-section__title::after {
		position: static !important;
		display: block !important;
		width: min(13%, 48px) !important;
		height: 1px !important;
		margin: 0 !important;
		padding: 0 !important;
		border: 0 !important;
		content: "" !important;
		clip-path: none !important;
		background: var(--top-color-line) !important;
		transform: none !important;
	}

	.top-pillars__grid,
	.top-post-grid--three,
	.top-post-grid--four,
	.top-bottom-cta__grid {
		grid-template-columns: 1fr;
	}

	.top-pillar-card:last-child {
		grid-column: auto;
		width: auto;
	}

	.top-pillar-card__body {
		min-height: 0;
		padding: 20px 20px 25px;
	}

	.top-pillar-card {
		margin: 0 !important;
	}

	.top-post-grid {
		gap: 12px;
	}

	.top-post-card__link {
		display: grid;
		grid-template-columns: 38% 1fr;
	}

	.top-post-card__media {
		height: 100%;
		aspect-ratio: auto;
	}

	.top-post-card__body {
		min-height: 118px;
		padding: 13px 14px 16px;
	}

	.top-post-card__title {
		font-size: 0.86rem;
		line-height: 1.6;
		-webkit-line-clamp: 3;
	}

	.top-post-card__meta {
		padding-top: 7px;
		font-size: 0.67rem;
	}

	.top-post-card--empty {
		display: grid !important;
		grid-template-columns: 38% 1fr;
		min-height: 116px;
	}

	.top-post-card--empty .top-post-card__media {
		height: 100%;
		min-height: 116px;
		aspect-ratio: auto;
	}

	.top-post-card--empty .top-post-card__body {
		display: flex !important;
		min-height: 116px !important;
		justify-content: center;
		padding: 14px 16px;
		background: var(--top-color-paper);
	}

	.top-post-card--empty .top-card__status {
		margin-top: 10px;
	}

	.top-banner-wrap {
		padding-top: 24px !important;
	}

	.top-banner {
		min-height: 360px;
		align-items: flex-end;
		border-color: var(--top-color-line) !important;
		background: var(--top-color-bg-deep) !important;
	}

	.top-banner::after {
		background: linear-gradient(0deg, rgba(2, 12, 20, 0.98) 0%, rgba(2, 12, 20, 0.74) 58%, rgba(2, 12, 20, 0.05) 100%);
	}

	.top-banner--choice .top-banner__background {
		object-position: 67% center;
	}

	.top-banner--service .top-banner__background {
		object-position: 72% center;
	}

	.top-banner__content {
		width: 100%;
		padding: 150px 20px 22px;
	}

	body.home .top-page .top-banner__content h2 {
		position: static !important;
		width: auto !important;
		margin: 0 0 12px !important;
		padding: 0 !important;
		border: 0 !important;
		border-radius: 0 !important;
		color: var(--top-color-gold-light) !important;
		background: transparent !important;
		box-shadow: none !important;
		font-size: 1.3rem !important;
		font-weight: 600 !important;
		letter-spacing: 0.04em !important;
		line-height: 1.55 !important;
		text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
		word-break: normal;
	}

	body.home .top-page .top-banner__content h2::before,
	body.home .top-page .top-banner__content h2::after {
		display: none !important;
		content: none !important;
	}

	.top-banner__title-line {
		white-space: nowrap;
	}

	.top-banner__content p {
		margin-bottom: 15px;
		font-size: 0.84rem;
		line-height: 1.75;
		text-shadow: 0 1px 5px rgba(0, 0, 0, 0.9);
	}

	.top-button {
		display: grid;
		grid-template-columns: minmax(0, 1fr) auto auto;
		width: 100%;
		min-height: 48px;
		gap: 8px;
		padding: 8px 11px;
		font-size: 0.78rem;
		line-height: 1.45;
		text-align: left;
	}

	.top-button__label {
		min-width: 0;
	}

	.top-button__arrow {
		font-size: 1rem;
	}

	.top-button__status {
		padding: 1px 6px;
		font-size: 0.57rem;
	}

	.top-about {
		padding-top: 24px !important;
	}

	.top-about__inner {
		grid-template-columns: 1fr;
		gap: 14px;
		padding: 22px 20px 24px;
		border-color: var(--top-color-line) !important;
		background: rgba(4, 17, 27, 0.82) !important;
		text-align: center;
	}

	.top-about__image {
		width: 104px;
		height: 104px !important;
		justify-self: center;
	}

	.top-about__content .top-section__title {
		justify-content: center;
		margin-bottom: 13px;
	}

	body.home .top-page .top-about__content .top-section__title::before,
	body.home .top-page .top-about__content .top-section__title::after {
		display: none !important;
	}

	.top-about__description {
		margin-bottom: 15px;
		color: #e0e2e3 !important;
		font-size: 0.86rem;
		line-height: 1.8;
		text-align: left;
	}

	.top-about__link {
		font-size: 0.88rem;
	}

	.top-latest {
		padding-top: 34px !important;
		padding-bottom: 36px !important;
	}

	body.home .top-page .top-bottom-cta {
		margin: 0 !important;
		padding: 25px 0 28px !important;
		background: rgba(2, 12, 20, 0.86) !important;
	}

	body.home .top-page .top-bottom-cta h2 {
		position: static !important;
		margin: 0 0 18px !important;
		padding: 0 !important;
		border: 0 !important;
		color: var(--top-color-gold-light) !important;
		background: transparent !important;
		box-shadow: none !important;
		font-size: 1.3rem !important;
		line-height: 1.45 !important;
	}

	body.home .top-page .top-bottom-cta h2::before,
	body.home .top-page .top-bottom-cta h2::after {
		display: none !important;
		content: none !important;
	}

	.top-bottom-cta__grid {
		gap: 10px;
	}

	.top-bottom-cta__item {
		min-height: 58px;
		gap: 11px;
		justify-content: flex-start;
		padding: 8px 13px;
		font-size: 0.9rem;
	}

	.top-bottom-cta__item img {
		width: 38px;
		height: 38px;
	}

	.top-bottom-cta__item.is-placeholder::after {
		margin-left: auto;
		font-size: 0.56rem;
	}

	.top-hero__hotspot {
		top: 69%;
		width: 33.333%;
		height: 31%;
		border-radius: 0;
	}

	.top-hero__hotspot--career {
		left: 0;
	}

	.top-hero__hotspot--workstyle {
		left: 33.333%;
	}

	.top-hero__hotspot--skill {
		left: 66.666%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.top-page *,
	.top-page *::before,
	.top-page *::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}
}
