@charset "utf-8";

/*====================*/
/* 共通 */
/*====================*/

/* ページ内アンカー（ヘッダーナビ・「先輩社員の声」リンクなど）のスムーススクロール */
html {
	scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
}

#recruit-voice,
#recruit-work,
#recruit-faq,
#recruit-flow {
	scroll-margin-top: calc(var(--site-header-sticky-height, 100px) + 16px);
}


h3 {
	margin-block-start: 0;
	margin-block-end: 0;
}

p {
	margin-block-start: 0;
	margin-block-end: 0;
}

ul{
	padding-inline-start: 0;
}

li{
	list-style: none;
}

/*========================================
FV（ファーストビュー）
========================================*/
.recruit__fv {
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	min-height: 560px;
	background: #16346d;
}

.recruit__fv__bg {
	position: absolute;
	inset: -3%;
	z-index: 0;
	background: url("../../img/page/recruit/fv_bg.png") center / cover no-repeat;
	animation: recruit-fv-kenburns 16s ease-in-out infinite alternate;
}

/* タブレット幅（PC基準からの縮小時）は主役（ヘルメット）が見えるよう右寄りをキープ */
@media screen and (max-width: 1279px) {
	.recruit__fv__bg {
		background-position: right center;
	}

	/* カードはPCの左寄せから、タブレットではやや中央寄り（中央よりわずかに左）に */
	.recruit__fv__inner {
		justify-content: center;
	}

	.recruit__fv__card {
		margin-right: 10%;
	}
}

.recruit__fv__inner {
	position: relative;
	z-index: 1;
	box-sizing: border-box;
	width: 1260px;
	max-width: 1260px;
	height: 100%;
	margin: 0 auto;
	padding: 0 16px;
	display: flex;
	align-items: center;
}

@keyframes recruit-fv-kenburns {
	from {
		transform: scale(1) translate(0, 0);
	}

	to {
		transform: scale(1.08) translate(-1%, -1%);
	}
}

.recruit__fv__card {
	position: relative;
	z-index: 1;
	flex: none;
	box-sizing: border-box;
	width: 574px;
	max-width: 100%;
	aspect-ratio: 1148 / 680;
	background: url("../../img/page/recruit/fv_bg_dec.png") left top / 100% 100% no-repeat;
	display: flex;
	align-items: center;
	animation: recruit-fv-card-in 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes recruit-fv-card-in {
	from {
		opacity: 0;
		transform: translateX(-32px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.recruit__fv__card-content {
	box-sizing: border-box;
	width: 100%;
	padding: 0 20px 36px 32px;
}

.recruit__fv__heading {
	margin: 0 0 20px;
	color: #fff;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0.06em;
}

.recruit__fv__heading--pc {
	font-size: 40px;
}

.recruit__fv__cta {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;
}

.recruit__fv__more {
	display: block;
	width: 191px;
	height: auto;
	animation: recruit-fv-bubble-float 2.6s ease-in-out infinite;
}

@keyframes recruit-fv-bubble-float {
	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-6px);
	}
}

.recruit__fv__btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	box-sizing: border-box;
	width: 260px;
	height: 56px;
	padding: 0 24px;
	background: #e6f8ff;
	color: #16346d;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-decoration: none;
	transition: background-color 0.25s ease;
}

.recruit__fv__btn:hover {
	background: #c9edfb;
}

.recruit__fv__btn-arrow {
	display: inline-block;
	flex-shrink: 0;
	width: 8px;
	height: 8px;
	border-top: 2px solid #16346d;
	border-right: 2px solid #16346d;
	transform: rotate(45deg);
	transition: transform 0.3s cubic-bezier(0.65, 0, 0.35, 1);
}

.recruit__fv__btn:hover .recruit__fv__btn-arrow {
	transform: rotate(45deg) translate(3px, -3px);
}

.recruit__fv__heading--sp,
.recruit__fv__cta--sp {
	display: none;
}

@media (prefers-reduced-motion: reduce) {
	.recruit__fv__bg,
	.recruit__fv__card,
	.recruit__fv__more {
		animation: none;
	}
}

@media screen and (max-width: 600px) {
	.recruit__fv {
		min-height: 0;
		aspect-ratio: 1500 / 1996;
	}

	.recruit__fv__bg {
		background-image: url("../../img/page/recruit/fv_bg_sp.png");
		background-position: center;
	}

	.recruit__fv__card,
	.recruit__fv__cta--pc,
	.recruit__fv__heading--pc {
		display: none;
	}

	.recruit__fv__heading--sp {
		position: absolute;
		top: 28px;
		left: 20px;
		z-index: 1;
		display: flex;
		flex-direction: row;
		align-items: flex-start;
		gap: 6px;
		margin: 0;
	}

	.recruit__fv__cta--sp {
		position: absolute;
		right: 20px;
		bottom: 24px;
		left: 20px;
		z-index: 1;
		display: flex;
		align-items: flex-end;
	}

	.recruit__fv__cta--sp .recruit__fv__more {
		width: 190px;
	}

	.recruit__fv__cta--sp .recruit__fv__btn {
		width: 100%;
	}
}
@media screen and (max-width: 600px) {
.recruit__fv__heading-col {
		writing-mode: vertical-rl;
		text-orientation: upright;
		color: #fff;
		font-weight: 700;
		line-height: 80px;
		letter-spacing: 3.8px;
		font-size: 78px;
	}
}

@media screen and (max-width: 468px) {
	.recruit__fv__heading-col {
		font-size: 74px;
	}
}

@media screen and (max-width: 400px) {
	.recruit__fv__heading-col {
		font-size: 70px;
	}
}

@media screen and (max-width: 375px) {
	.recruit__fv__heading-col {
		font-size: 64px;
	}
}

@media screen and (max-width: 359px) {
	.recruit__fv__heading-col {
		font-size: 60px;
	}
}

/* ==========================================================================
   採用情報 — 専用ヘッダー
   構造・ハンバーガー挙動は共通ヘッダー（css/common/header.css）を流用。
   ここでは見た目（ロゴ上タグライン・CTAボタン）のみ上書きする。
   ========================================================================== */

/* ロゴ：タグライン＋ロゴの縦並び */
.site-header--recruit .site-header__logo--recruit a {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 4px;
	text-decoration: none;
}

.site-header__tagline {
	display: block;
	color: var(--color-brand-navy);
	font-size: 11px;
	font-weight: 500;
	line-height: 1.4;
	letter-spacing: 0.06em;
	text-decoration: none;
	white-space: nowrap;
}

@media screen and (max-width: 1279px) {
	.site-header__tagline {
		display: none;
	}

	.is-drawer-open .site-header__tagline {
		display: none;
	}
}

@media screen and (min-width: 1280px) {
	.site-header--recruit .site-header__logo-img {
		width: 224px;
		height: auto;
	}
}

/* CTA：お問い合わせ（PC：黒ボタン） */
.site-header__imp-item__link--apply {
	background: #1a1a1a;
	color: #fff;
}

.site-header__imp-item__link--apply::after {
	display: none;
}

.site-header__imp-item__link--apply:hover {
	background: #333333;
}

/* CTA：ドロワー（SP／ハンバーガー展開時）は白背景・紺文字で視認性を確保 */
@media screen and (max-width: 1279px) {
	.site-header__imp-item__link--apply {
		background: #fff;
		color: var(--color-brand-navy);
	}

	.site-header__imp-item__link--apply:hover {
		background: #f4fafe;
	}
}

@media screen and (min-width: 1280px) {
	.site-header--recruit .site-header__inner {
		padding-right: 40px;
	}

	.site-header--recruit .site-header__imp-list {
		align-items: center;
	}

	.site-header--recruit .site-header__imp-item {
		height: auto;
	}

	.site-header__imp-item__link--apply {
		display: inline-flex;
		min-width: 0;
		height: 48px;
		padding: 0 32px;
		border-radius: 4px;
	}
}

@media screen and (max-width: 1400px) and (min-width: 1280px) {
	.site-header--recruit .site-header__inner {
		padding-right: 28px;
	}
}

@media screen and (max-width: 1365px) and (min-width: 1280px) {
	.site-header--recruit .site-header__inner {
		padding-right: 24px;
	}
}

/*========================================
普段の風景
========================================*/

.recruit__picture{
	margin: 60px 0 24px 0;
	
	/*いったん削除*/
	display: none;
}

.recruit__picture__viewport {
	overflow: hidden;
	width: 100%;
	margin-bottom: 12px;
}

.recruit__picture__track {
	display: flex;
	width: max-content;
	animation: recruit-picture-scroll 24s linear infinite;
}

/* 画像ごとの本来の縦横比のまま高さに合わせて並べる（隙間・引き伸ばしなし） */
.recruit__picture__item {
	flex: none;
	height: 420px;
}

.recruit__picture__visual__img {
	display: block;
	height: 100%;
	width: auto;
}

.recruit__picture__visual__img img {
	display: block;
	height: 100%;
	width: auto;
	object-fit: contain;
}

@keyframes recruit-picture-scroll {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}

@media (prefers-reduced-motion: reduce) {
	.recruit__picture__track {
		animation: none;
	}
}

@media screen and (max-width: 600px) {
	.recruit__picture {
		margin: 14px 0 24px 0;
	}

	.recruit__picture__item {
		height: 200px;
	}

	.recruit__picture__track {
		animation-duration: 40s;
	}
}

.recruit__picture__lead {
	text-align: center;
	color: #888888;
}

/*========================================
共通ヘッド（VOICE PICKUP / VOICE / WORK / FAQ）
背景 #F4FAFE 共通・top-reason__ribbon / top-reason__title 準拠
========================================*/
.recruit__voice-pickup,
.recruit__voice,
.recruit__work,
.recruit__faq {
	position: relative;
	overflow: hidden;
	background-color: #f4fafe;
	padding: 80px 0;
}

/* 常時ゆらゆら動く装飾三角（top-reason__triangles-slot 準拠・CSSのみの軽量版） */
.recruit__deco {
	position: absolute;
	z-index: 0;
	pointer-events: none;
}

.recruit__deco__tri {
	position: absolute;
	display: block;
	animation: recruit-deco-float 5s ease-in-out infinite;
}

@keyframes recruit-deco-float {
	0%,
	100% {
		transform: translateY(0) rotate(0deg);
	}

	50% {
		transform: translateY(-10px) rotate(10deg);
	}
}

@media (prefers-reduced-motion: reduce) {
	.recruit__deco__tri {
		animation: none;
	}
}

/* 右上：top-reason__triangles-slot と同じ 348×187 ／ 7枚クラスター */
.recruit__deco--top-right {
	top: 16px;
	right: max(12px, 3%);
	width: 348px;
	height: 187px;
}

.recruit__deco--top-right .recruit__deco__tri--tr1 {
	left: 1px;
	top: 177px;
	width: 8px;
	height: 9px;
	background: #35566b;
	opacity: 1;
	clip-path: polygon(50% 0, 100% 100%, 0 100%);
	animation-duration: 5.2s;
}

.recruit__deco--top-right .recruit__deco__tri--tr2 {
	left: 54px;
	top: 144px;
	width: 20px;
	height: 23px;
	background: #9ad7ff;
	opacity: 1;
	clip-path: polygon(0 0, 100% 55%, 25% 100%);
	animation-duration: 4.6s;
	animation-delay: 0.3s;
}

.recruit__deco--top-right .recruit__deco__tri--tr3 {
	left: 86px;
	top: 54px;
	width: 9px;
	height: 18px;
	background: #b7d7eb;
	opacity: 1;
	clip-path: polygon(50% 0, 100% 100%, 0 100%);
	animation-duration: 6s;
	animation-delay: 0.6s;
}

.recruit__deco--top-right .recruit__deco__tri--tr4 {
	left: 135px;
	top: 0;
	width: 88px;
	height: 91px;
	background: #d1edff;
	opacity: 0.75;
	clip-path: polygon(18% 0, 100% 100%, 0 85%);
	animation-duration: 7.4s;
	animation-delay: 0.9s;
}

.recruit__deco--top-right .recruit__deco__tri--tr5 {
	left: 166px;
	top: 7px;
	width: 24px;
	height: 42px;
	background: #16346d;
	opacity: 0.75;
	clip-path: polygon(35% 0, 100% 100%, 0 70%);
	animation-duration: 5.8s;
	animation-delay: 1.2s;
}

.recruit__deco--top-right .recruit__deco__tri--tr6 {
	left: 278px;
	top: 88px;
	width: 41px;
	height: 24px;
	background: #92c8ea;
	opacity: 0.75;
	clip-path: polygon(0 30%, 100% 0, 80% 100%);
	animation-duration: 4.9s;
	animation-delay: 1.5s;
}

.recruit__deco--top-right .recruit__deco__tri--tr7 {
	left: 328px;
	top: 29px;
	width: 18px;
	height: 20px;
	background: #35566b;
	opacity: 0.75;
	clip-path: polygon(50% 0, 100% 100%, 0 100%);
	animation-duration: 6.6s;
	animation-delay: 1.8s;
}

/* 左側：セクション縦方向に7枚をランダム配置 */
.recruit__deco--mid-left {
	top: 8%;
	left: max(8px, 1.5%);
	width: 110px;
	height: 84%;
}

.recruit__deco--mid-left .recruit__deco__tri--ml1 {
	left: 6px;
	top: 4%;
	width: 16px;
	height: 18px;
	background: #16346d;
	opacity: 0.45;
	clip-path: polygon(50% 0, 100% 100%, 0 100%);
	animation-duration: 5.4s;
}

.recruit__deco--mid-left .recruit__deco__tri--ml2 {
	left: 58px;
	top: 16%;
	width: 26px;
	height: 24px;
	background: #92c8ea;
	opacity: 0.6;
	clip-path: polygon(0 0, 100% 50%, 0 100%);
	animation-duration: 4.4s;
	animation-delay: 0.4s;
}

.recruit__deco--mid-left .recruit__deco__tri--ml3 {
	left: 10px;
	top: 34%;
	width: 12px;
	height: 14px;
	background: #d1edff;
	opacity: 0.9;
	clip-path: polygon(100% 0, 100% 100%, 0 50%);
	animation-duration: 6.4s;
	animation-delay: 0.9s;
}

.recruit__deco--mid-left .recruit__deco__tri--ml4 {
	left: 66px;
	top: 48%;
	width: 20px;
	height: 18px;
	background: #35566b;
	opacity: 0.35;
	clip-path: polygon(50% 0, 100% 100%, 0 100%);
	animation-duration: 5s;
	animation-delay: 1.3s;
}

.recruit__deco--mid-left .recruit__deco__tri--ml5 {
	left: 22px;
	top: 62%;
	width: 30px;
	height: 27px;
	background: #9ad7ff;
	opacity: 0.55;
	clip-path: polygon(0 0, 100% 50%, 0 100%);
	animation-duration: 7s;
	animation-delay: 1.7s;
}

.recruit__deco--mid-left .recruit__deco__tri--ml6 {
	left: 50px;
	top: 78%;
	width: 14px;
	height: 16px;
	background: #b7d7eb;
	opacity: 0.75;
	clip-path: polygon(50% 100%, 100% 0, 0 0);
	animation-duration: 4.8s;
	animation-delay: 2.1s;
}

.recruit__deco--mid-left .recruit__deco__tri--ml7 {
	left: 4px;
	top: 90%;
	width: 18px;
	height: 16px;
	background: #16346d;
	opacity: 0.5;
	clip-path: polygon(50% 0, 100% 100%, 0 100%);
	animation-duration: 6.1s;
	animation-delay: 0.2s;
}

/* 右下：既存の3枚構成 */
.recruit__deco--bottom-right {
	right: 6%;
	bottom: 32px;
	width: 120px;
	height: 96px;
}

.recruit__deco--bottom-right .recruit__deco__tri--1 {
	top: 0;
	left: 12%;
	width: 30px;
	height: 26px;
	background: #16346d;
	opacity: 0.35;
	clip-path: polygon(50% 0, 100% 100%, 0 100%);
	animation-duration: 5.6s;
}

.recruit__deco--bottom-right .recruit__deco__tri--2 {
	top: 38%;
	right: 0;
	width: 22px;
	height: 20px;
	background: #92c8ea;
	opacity: 0.6;
	clip-path: polygon(0 0, 100% 50%, 0 100%);
	animation-duration: 4.8s;
	animation-delay: 0.6s;
}

.recruit__deco--bottom-right .recruit__deco__tri--3 {
	bottom: 0;
	left: 32%;
	width: 18px;
	height: 16px;
	background: #16346d;
	opacity: 0.25;
	clip-path: polygon(100% 0, 100% 100%, 0 50%);
	animation-duration: 6.2s;
	animation-delay: 1.1s;
}

@media screen and (max-width: 900px) {
	.recruit__deco--top-right {
		transform: scale(0.6);
		transform-origin: top right;
	}
}

@media screen and (max-width: 600px) {
	.recruit__deco--mid-left {
		display: none;
	}

	.recruit__deco--bottom-right {
		width: 72px;
		height: 60px;
	}
}

.recruit__voice-pickup__inner,
.recruit__voice__inner,
.recruit__work__inner,
.recruit__faq__inner {
	position: relative;
	z-index: 1;
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 16px;
}

.recruit__voice-pickup__head,
.recruit__voice__head,
.recruit__work__head,
.recruit__faq__head {
	position: relative;
	z-index: 1;
	text-align: center;
	margin: 0 0 40px;
}

/* リボン（top-reason__ribbon 準拠） */
.recruit__voice-pickup__ribbon,
.recruit__voice__ribbon,
.recruit__work__ribbon,
.recruit__faq__ribbon {
	display: inline-flex;
	align-items: stretch;
	margin: 0 0 8px;
}

.recruit__voice-pickup__ribbon-tail,
.recruit__voice__ribbon-tail,
.recruit__work__ribbon-tail,
.recruit__faq__ribbon-tail {
	flex-shrink: 0;
	width: 18px;
	height: 40px;
	background: #16346d;
}

.recruit__voice-pickup__ribbon-tail--left,
.recruit__voice__ribbon-tail--left,
.recruit__work__ribbon-tail--left,
.recruit__faq__ribbon-tail--left {
	clip-path: polygon(100% 0, 100% 100%, 0 50%);
	margin-right: -1px;
}

.recruit__voice-pickup__ribbon-tail--right,
.recruit__voice__ribbon-tail--right,
.recruit__work__ribbon-tail--right,
.recruit__faq__ribbon-tail--right {
	clip-path: polygon(0 0, 0 100%, 100% 50%);
	margin-left: -1px;
}

.recruit__voice-pickup__ribbon-label,
.recruit__voice__ribbon-label,
.recruit__work__ribbon-label,
.recruit__faq__ribbon-label {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	height: 40px;
	padding: 0 16px;
	background: #16346d;
	color: #fff;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.3;
	letter-spacing: 0.13em;
	white-space: nowrap;
}

/* タイトル（top-reason__title 準拠） */
.recruit__voice-pickup__title,
.recruit__voice__title,
.recruit__work__title,
.recruit__faq__title {
	margin: 0;
	color: #16346d;
	font-size: 32px;
	font-weight: 700;
	line-height: 1.7;
	letter-spacing: 0.13em;
}

.recruit__voice-pickup__title.js-anim-sweep,
.recruit__voice__title.js-anim-sweep,
.recruit__work__title.js-anim-sweep,
.recruit__faq__title.js-anim-sweep {
	display: block;
	width: fit-content;
	max-width: 100%;
	margin-inline: auto;
}

.recruit__voice-pickup__title .js-anim-sweep__content,
.recruit__voice__title .js-anim-sweep__content,
.recruit__work__title .js-anim-sweep__content,
.recruit__faq__title .js-anim-sweep__content {
	color: #16346d;
}

/* スクロール連動の背景ウォーターマーク（top-reason__bg-zone 準拠。基準幅 1000px） */
.recruit__voice-pickup__bg-zone,
.recruit__voice__bg-zone,
.recruit__work__bg-zone,
.recruit__faq__bg-zone {
	position: absolute;
	top: 16px;
	left: max(16px, calc((100% - min(100%, 1000px)) / 2 + 16px));
	z-index: 0;
	display: inline-block;
	width: auto;
	max-width: calc(100% - 32px);
	pointer-events: none;
}

.recruit__voice-pickup__bg-text,
.recruit__voice__bg-text,
.recruit__work__bg-text,
.recruit__faq__bg-text {
	position: relative;
	margin: 0;
	color: rgba(22, 52, 109, 0.06);
	font-family: var(--font-en);
	font-size: 200px;
	font-weight: 700;
	font-style: italic;
	line-height: 0.85;
	letter-spacing: 0.04em;
	text-align: left;
}


@media screen and (max-width: 600px) {
	.recruit__voice-pickup__ribbon-label,
	.recruit__voice__ribbon-label,
	.recruit__work__ribbon-label,
	.recruit__faq__ribbon-label {
		font-size: 14px;
	}

	.recruit__voice-pickup__title,
	.recruit__voice__title,
	.recruit__work__title,
	.recruit__faq__title {
		font-size: 24px;
	}

	.recruit__voice-pickup__bg-zone,
	.recruit__voice__bg-zone,
	.recruit__work__bg-zone,
	.recruit__faq__bg-zone {
		top: clamp(24px, 6vw, 40px);
		left: 16px;
		max-width: calc(100% - 32px);
	}

	.recruit__voice-pickup__bg-text,
	.recruit__voice__bg-text,
	.recruit__work__bg-text,
	.recruit__faq__bg-text {
		font-size: 72px;
	}
}

/*========================================
先輩たちの、リアルな一言
========================================*/
/* voice-pickup の inner だけ、一覧の実測幅(1094px)が収まるよう広げる */
.recruit__voice-pickup__inner {
	max-width: 1126px;
}

.recruit__voice-pickup__title-br-sp {
	display: none;
}

@media screen and (max-width: 600px) {
	.recruit__voice-pickup__title-br-sp {
		display: inline;
	}
}

.recruit__voice-pickup__list {
	margin: 0 auto 48px auto;
	max-width: 1094px;
	width: 100%;
	display: flex;
	align-items: stretch;
	justify-content: center;
	gap: 16px;
}
@media screen and (max-width: 900px) {
	.recruit__voice-pickup__list {
		flex-direction: column;
		max-width: 600px;
	}
}

.recruit__voice-pickup__item {
	background-color: #fff;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	border: 2px solid #1A1A1A;
	border-radius: 20px;
	overflow: hidden;
	width: calc(100%/3);
}
@media screen and (max-width: 900px) {
	.recruit__voice-pickup__item {
		justify-content: center;
		align-items: flex-start;
		width: 100%;
	}
}

.recruit__voice-pickup__item__content{
	display: flex;
	flex: 1 1 auto;
	align-items: center;
	justify-content: center;
	padding: 16px 16px;
}

.recruit__voice-pickup__item__icon__img{
	display: block;
	max-width: 58px;
	width: 100%;
	margin-right: 16px;
}

.recruit__voice-pickup__item__text{
	display: flex;
	align-items: center;
	height: 4.6em;
	font-weight: 700;
}

.recruit__voice-pickup__item__name{
	font-size: 18px;
	font-weight: 700;
	background-color: #D4EEFF;
	text-align: right;
	width: 100%;
	padding: 8px 16px;
}

.recruit__voice-pickup__lead-box__text{
	text-align: center;
	font-size: 18px;
	font-weight: 700;
}

.recruit__voice-pickup__lead-box__link{
	text-decoration: underline;
	transition: color 0.3s ease;
}

.recruit__voice-pickup__lead-box__link:hover{
	color: #236ffa;
	text-decoration: underline;
}

/*========================================
先輩社員の声
========================================*/
/* voice の inner だけ、カード一覧の実測幅(1070px)が収まるよう広げる */
.recruit__voice__inner {
	max-width: 1102px;
}

.recruit__voice__lead {
	margin: 8px 0 0;
	color: #16346d;
	font-size: 15px;
	line-height: 1.8;
	letter-spacing: 0.04em;
}

.recruit__voice__lead-br-sp {
	display: none;
}

.recruit__voice__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	max-width: 1070px;
	margin: 40px auto 0;
	padding: 0;
	list-style: none;
	gap: 28px;
}

.recruit__voice__item {
	box-sizing: border-box;
	width: 520px;
	max-width: 100%;
	background: #fff;
	border-radius: 4px;
	overflow: hidden;
	box-shadow: 0 12px 32px rgba(22, 52, 109, 0.16);
}

.recruit__voice__item__top {
	position: relative;
	display: flex;
	align-items: stretch;
	background: #16346d;
	overflow: hidden;
}

.recruit__voice__item__photo {
	display: block;
	flex: none;
	width: 44%;
	height: auto;
	object-fit: cover;
}
@media screen and (max-width: 600px) {
	.recruit__voice__item__photo {
		width: 36%;
	}
}

.recruit__voice__item__top-content {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	justify-content: center;
	min-width: 0;
	padding: 16px 20px 16px 16px;
}

.recruit__voice__item__quote {
	margin: 0 0 12px;
	color: #fff;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: 0.04em;
}
@media screen and (max-width: 600px) {
	.recruit__voice__item__quote {
		font-size: 19px;
	}
}
@media screen and (max-width: 374px) {
	.recruit__voice__item__quote {
		font-size: 16px;
	}
}

.recruit__voice__item__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin: 0;
}

.recruit__voice__item__dept {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	padding: 3px 10px;
	background: #fff;
	color: #16346d;
	font-size: 12px;
	font-weight: 700;
	white-space: nowrap;
}

.recruit__voice__item__name {
	color: #fff;
	font-size: 15px;
	font-weight: 700;
}

.recruit__voice__item__history {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 0 20px 0 0;
	background: #d7ebf9;
}
@media screen and (max-width: 600px) {
	.recruit__voice__item__history {
		padding: 0 8px 0 0;
	}
}

.recruit__voice__item__history-label {
	display: flex;
	flex: none;
	align-items: center;
	justify-content: center;
	align-self: stretch;
	padding: 8px 22px 8px 16px;
	background: #16346d;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.1em;
	white-space: nowrap;
	clip-path: polygon(0 0, 100% 0, calc(100% - 14px) 100%, 0 100%);
}

.recruit__voice__item__history-text {
	color: #16346d;
	font-size: 13px;
	line-height: 1.6;
}
@media screen and (max-width: 600px) {
	.recruit__voice__item__history-text {
		padding: 4px 0;
	}
}

.recruit__voice__item__body {
	padding: 20px;
}

.recruit__voice__item__text {
	margin: 0;
	color: #333333;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.9;
}

.recruit__voice__more {
	display: flex;
	justify-content: center;
	margin: 40px 0 0;
}

.recruit__voice__more-img {
	display: block;
	width: 191px;
	height: auto;
}

.recruit__voice__btn-wrap {
	display: flex;
	justify-content: center;
	margin: 16px 0 0;
}

.recruit__voice__btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	box-sizing: border-box;
	min-width: 280px;
	min-height: 56px;
	padding: 0 32px;
	background: #16346d;
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-decoration: none;
	transition: background-color 0.25s ease;
}

.recruit__voice__btn:hover {
	background: #1f4590;
}

.recruit__voice__btn-arrow {
	display: inline-block;
	flex-shrink: 0;
	width: 8px;
	height: 8px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(45deg);
	transition: transform 0.3s cubic-bezier(0.65, 0, 0.35, 1);
}

.recruit__voice__btn:hover .recruit__voice__btn-arrow {
	transform: rotate(45deg) translate(3px, -3px);
}

@media screen and (max-width: 600px) {
	.recruit__voice__lead-br-sp {
		display: block;
	}

	.recruit__voice__list {
		flex-direction: column;
		align-items: center;
	}

	.recruit__voice__item {
		width: 100%;
	}

	.recruit__voice__item__history {
		gap: 12px;
	}

	.recruit__voice__item__history-label {
		padding: 6px 18px 6px 12px;
	}
}


/*========================================
募集職種（RECRUIT。3つの安心と同じ背景）
========================================*/
.recruit__menu {
	position: relative;
	background-color: #16346d;
	background-image:
		url("../../img/page/recruit/parts/recruit_flow_top.png"),
		url("../../img/page/recruit/parts/recruit_flow_bottom.png");
	background-repeat: no-repeat, no-repeat;
	background-position: top center, bottom center;
	background-size: 100% auto, 100% auto;
	padding: 80px 0 120px;
}

@media screen and (max-width: 600px) {
	.recruit__menu {
		background-image:
			url("../../img/page/recruit/parts/recruit_flow_top_sp.png"),
			url("../../img/page/recruit/parts/recruit_flow_bottom_sp.png");
	}
}

.recruit__menu__inner {
	max-width: 1288px;
	margin: 0 auto;
	padding: 0 16px;
}

.recruit__menu__head {
	text-align: center;
	margin: 0 0 56px;
}

.recruit__menu__ribbon {
	display: inline-flex;
	align-items: stretch;
	margin: 0 0 8px;
}

.recruit__menu__ribbon-tail {
	flex-shrink: 0;
	width: 18px;
	height: 40px;
	background: #ffffff;
}

.recruit__menu__ribbon-tail--left {
	clip-path: polygon(100% 0, 100% 100%, 0 50%);
	margin-right: -1px;
}

.recruit__menu__ribbon-tail--right {
	clip-path: polygon(0 0, 0 100%, 100% 50%);
	margin-left: -1px;
}

.recruit__menu__ribbon-label {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	height: 40px;
	padding: 0 16px;
	background: #ffffff;
	color: #16346d;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.3;
	letter-spacing: 0.13em;
	white-space: nowrap;
}

.recruit__menu__title {
	margin: 0;
	color: #fff;
	font-size: 32px;
	font-weight: 700;
	line-height: 1.7;
	letter-spacing: 0.13em;
}

.recruit__menu__title.js-anim-sweep {
	display: block;
	width: fit-content;
	max-width: 100%;
	margin-inline: auto;
}

.recruit__menu__title .js-anim-sweep__content {
	color: #fff;
}

@media screen and (max-width: 600px) {
	.recruit__menu__ribbon-label {
		font-size: 14px;
	}

	.recruit__menu__title {
		font-size: 24px;
	}
}

.recruit__menu__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	max-width: 1256px;
	margin: 0 auto;
	padding: 0;
	list-style: none;
	gap: 32px;
}

.recruit__menu__item {
	position: relative;
	box-sizing: border-box;
	width: 612px;
	max-width: 100%;
	min-height: 350px;
	background: #fff;
	border-radius: 4px;
	overflow: hidden;
}

.recruit__menu__item__tag {
	display: inline-block;
	box-sizing: border-box;
	padding: 10px 36px 10px 20px;
	background: #def1ff;
	color: #16346d;
	font-size: 16px;
	font-weight: 700;
	white-space: nowrap;
	clip-path: polygon(0 0, 100% 0, calc(100% - 24px) 100%, 0 100%);
}

.recruit__menu__item__body {
	box-sizing: border-box;
	padding: 24px 32px 32px;
}

.recruit__menu__item__pills {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 16px;
}

.recruit__menu__item__pill {
	display: inline-flex;
	align-items: center;
	box-sizing: border-box;
	padding: 8px 14px;
	border: 1px solid #e0e0e0;
	border-radius: 20px;
	background: #fff;
	color: #555555;
	font-size: 14px;
	line-height: 1;
	white-space: nowrap;
}

.recruit__menu__item__heading {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 16px;
	margin: 0 0 20px;
}

.recruit__menu__item__title {
	flex: none;
	margin: 0;
	color: #1A1A1A;
	font-size: 28px;
	font-weight: 700;
	line-height: 1.3;
}

.recruit__menu__item__title--sub {
	font-size: 24px;
}

.recruit__menu__item__title-br-pc {
	display: block;
}

.recruit__menu__item__subtitle {
	display: flex;
	align-items: stretch;
	flex: 1 1 auto;
	min-width: 0;
	gap: 12px;
	margin: 0;
}

.recruit__menu__item__subtitle-bar {
	flex: none;
	width: 4px;
	background: #16346d;
}

.recruit__menu__item__subtitle-text {
	margin: 0;
	color: #16346d;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.5;
}

.recruit__menu__item__text {
	color: #333333;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.9;
}

.recruit__menu__item__text p {
	margin: 0 0 16px;
}

.recruit__menu__item__text p:last-child {
	margin-bottom: 0;
}

@media screen and (max-width: 900px) {
	.recruit__menu__list {
		flex-direction: column;
		align-items: center;
		max-width: 680px;
	}

	.recruit__menu__item {
		width: 100%;
	}
}

@media screen and (max-width: 600px) {
	.recruit__menu__item__heading {
		flex-direction: column;
		align-items: flex-start;
	}

	.recruit__menu__item__title {
		font-size: 24px;
	}

	.recruit__menu__item__title-br-pc {
		display: none;
	}

	.recruit__menu__item__title--sub {
		font-size: 20px;
	}

	.recruit__menu__item__subtitle-text {
		font-size: 18px;
	}

	.recruit__menu__item__body {
		padding: 20px 20px 24px;
	}
}

/*========================================
働く環境（テーブル）
========================================*/
.recruit__work__table {
	max-width: 1000px;
	margin: 0 auto;
}

.recruit__work__row {
	display: grid;
	grid-template-columns: 335fr 741fr;
	border-bottom: 1px solid #cecece;
}

.recruit__work__row:first-child {
	border-top: 1px solid #cecece;
}

.recruit__work__label {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 24px 16px;
	background: #16346d;
	color: #fff;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.6;
	text-align: center;
}

/* 2文字の項目名も4文字幅に均等割付（例：残業 → 残　業） */
.recruit__work__label-text {
	display: inline-block;
	width: 4em;
	text-align: justify;
	text-align-last: justify;
}

.recruit__work__value {
	display: flex;
	align-items: center;
	margin: 0;
	padding: 24px 32px;
	background: #fff;
	color: #16346d;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.8;
	letter-spacing: 0.05em;
}

@media screen and (max-width: 600px) {
	.recruit__work__row {
		grid-template-columns: 86fr 271fr;
	}

	.recruit__work__label {
		padding: 12px 8px;
	}

	.recruit__work__value {
		padding: 16px;
	}
}

/*========================================
東海アーバン開発、3つの安心（選考の流れ・数字で見るNUMBERSと同じ背景）
========================================*/
.recruit__point {
	position: relative;
	background-color: #16346d;
	background-image:
		url("../../img/page/recruit/parts/recruit_flow_top.png"),
		url("../../img/page/recruit/parts/recruit_flow_bottom.png");
	background-repeat: no-repeat, no-repeat;
	background-position: top center, bottom center;
	background-size: 100% auto, 100% auto;
	padding: 80px 0 120px;
}

@media screen and (max-width: 600px) {
	.recruit__point {
		background-image:
			url("../../img/page/recruit/parts/recruit_flow_top_sp.png"),
			url("../../img/page/recruit/parts/recruit_flow_bottom_sp.png");
	}
}

.recruit__point__inner {
	max-width: 1112px;
	margin: 0 auto;
	padding: 0 16px;
}

.recruit__point__head {
	text-align: center;
	margin: 0 0 40px;
}

.recruit__point__ribbon {
	display: inline-flex;
	align-items: stretch;
	margin: 0 0 8px;
}

.recruit__point__ribbon-tail {
	flex-shrink: 0;
	width: 18px;
	height: 40px;
	background: #ffffff;
}

.recruit__point__ribbon-tail--left {
	clip-path: polygon(100% 0, 100% 100%, 0 50%);
	margin-right: -1px;
}

.recruit__point__ribbon-tail--right {
	clip-path: polygon(0 0, 0 100%, 100% 50%);
	margin-left: -1px;
}

.recruit__point__ribbon-label {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	height: 40px;
	padding: 0 16px;
	background: #ffffff;
	color: #16346d;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.3;
	letter-spacing: 0.13em;
	white-space: nowrap;
}

.recruit__point__title {
	margin: 0;
	color: #fff;
	font-size: 32px;
	font-weight: 700;
	line-height: 1.7;
	letter-spacing: 0.13em;
}

.recruit__point__title.js-anim-sweep {
	display: block;
	width: fit-content;
	max-width: 100%;
	margin-inline: auto;
}

.recruit__point__title .js-anim-sweep__content {
	color: #fff;
}

.recruit__point__list {
	display: flex;
	justify-content: center;
	max-width: 1080px;
	margin: 0 auto;
	padding: 0;
	list-style: none;
	gap: 24px;
}

.recruit__point__item {
	flex: 1 1 0;
	min-width: 0;
	box-sizing: border-box;
	padding: 32px 24px;
	background: #fff;
	border-radius: 8px;
	text-align: center;
}

.recruit__point__item__icon {
	display: block;
	width: 72px;
	height: 72px;
	margin: 0 auto 16px;
}

.recruit__point__item__title {
	margin: 0 0 12px;
	color: #16346d;
	font-size: 24px;
	font-weight: 700;
}

.recruit__point__item__text {
	margin: 0;
	color: #333333;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.8;
	text-align: justify;
}

@media screen and (max-width: 600px) {
	.recruit__point__ribbon-label {
		font-size: 14px;
	}

	.recruit__point__title {
		font-size: 24px;
	}
}

@media screen and (max-width: 900px) {
	.recruit__point__list {
		flex-direction: column;
		align-items: center;
		max-width: 680px;
	}

	.recruit__point__item {
		width: 100%;
	}
}

/*========================================
数字で見る東海アーバン開発（選考の流れと同じ背景）
========================================*/
.recruit__num {
	position: relative;
	background-color: #16346d;
	background-image:
		url("../../img/page/recruit/parts/recruit_flow_top.png"),
		url("../../img/page/recruit/parts/recruit_flow_bottom.png");
	background-repeat: no-repeat, no-repeat;
	background-position: top center, bottom center;
	background-size: 100% auto, 100% auto;
	padding: 80px 0 120px;
}

@media screen and (max-width: 600px) {
	.recruit__num {
		background-image:
		url("../../img/page/recruit/parts/recruit_flow_top_sp.png"),
		url("../../img/page/recruit/parts/recruit_flow_bottom_sp.png");
	}
}

.recruit__num__inner {
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 16px;
}

.recruit__num__head {
	text-align: center;
	margin: 0 0 40px;
}

.recruit__num__ribbon {
	display: inline-flex;
	align-items: stretch;
	margin: 0 0 8px;
}

.recruit__num__ribbon-tail {
	flex-shrink: 0;
	width: 18px;
	height: 40px;
	background: #ffffff;
}

.recruit__num__ribbon-tail--left {
	clip-path: polygon(100% 0, 100% 100%, 0 50%);
	margin-right: -1px;
}

.recruit__num__ribbon-tail--right {
	clip-path: polygon(0 0, 0 100%, 100% 50%);
	margin-left: -1px;
}

.recruit__num__ribbon-label {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	height: 40px;
	padding: 0 16px;
	background: #ffffff;
	color: #16346d;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.3;
	letter-spacing: 0.13em;
	white-space: nowrap;
}

.recruit__num__title {
	margin: 0;
	color: #fff;
	font-size: 32px;
	font-weight: 700;
	line-height: 1.7;
	letter-spacing: 0.13em;
}

.recruit__num__title.js-anim-sweep {
	display: block;
	width: fit-content;
	max-width: 100%;
	margin-inline: auto;
}

.recruit__num__title .js-anim-sweep__content {
	color: #fff;
}

.recruit__num__title-br-sp {
	display: none;
}

@media screen and (max-width: 600px) {
	.recruit__num__ribbon-label {
		font-size: 14px;
	}

	.recruit__num__title {
		font-size: 24px;
	}

	.recruit__num__title-br-sp {
		display: inline;
	}
}

.recruit__num__list{
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 24px;
	max-width: 1000px;
	margin: 0 auto 8px auto;
	padding: 0;
}

.recruit__num__item__item{
	background-color: #fff;
	padding: 32px 18px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	width: calc(100% / 3 - 24px);
}
@media screen and (max-width: 900px) {
	.recruit__num__item__item {
		width: calc(100% / 2 - 24px);
	}
}
@media screen and (max-width: 600px) {
	.recruit__num__item__item {
		width: 100%;
	}
}

.recruit__num__item__title {
	font-size: 16px;
	font-weight: 700;
	text-align: center;
	letter-spacing: 0.2em;
	margin-bottom: 8px;
}

.recruit__num__item__text{
	margin-block-start: 0;
	margin-block-end: 0;
	font-size: 44px;
	font-weight: 700;
	line-height: 1;
	text-align: center;
	letter-spacing: 0.02em;
	vertical-align: middle;
}

.recruit__num__item__text--unit {
	font-size: 30px;
	letter-spacing: 0.02em;
	margin-left: 4px;
	margin-bottom	:4px;
}

.recruit__num__item__icon__img {
	display: block;
	width: 100%;
	margin-bottom: 16px;
}

.recruit__num__days{
	max-width: 1000px;
	padding	: 0 8px;
	text-align: right;
	color	: #ffffff;
}
@media screen and (max-width: 600px) {
	.recruit__num__days {
		padding	: 0px;
	}
}

/*========================================
よくある質問（アコーディオン）
========================================*/
.recruit__faq__list {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: 24px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.recruit__faq__item {
	background: #16346d;
	border-radius: 16px;
	overflow: hidden;
}

.recruit__faq__item__q {
	margin: 0;
}

.recruit__faq__item__q-btn {
	display: flex;
	align-items: center;
	gap: 20px;
	width: 100%;
	min-height: 100px;
	box-sizing: border-box;
	padding: 14px 32px;
	border: none;
	background: transparent;
	cursor: pointer;
	text-align: left;
}

.recruit__faq__item__q-icon {
	display: flex;
	flex: none;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	width: 71px;
	height: 71px;
	border-radius: 12px;
	background: #fff;
	color: #16346d;
	font-family: var(--font-en);
	font-size: 52px;
	font-weight: 700;
	line-height: 1;
}

.recruit__faq__item__q-text {
	flex: 1 1 auto;
	color: #fff;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.5;
}

.recruit__faq__item__q-toggle {
	position: relative;
	flex: none;
	width: 24px;
	height: 24px;
}

.recruit__faq__item__q-toggle::before,
.recruit__faq__item__q-toggle::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	background: #fff;
	transform: translate(-50%, -50%);
}

.recruit__faq__item__q-toggle::before {
	width: 20px;
	height: 2px;
}

.recruit__faq__item__q-toggle::after {
	width: 2px;
	height: 20px;
	transition:
		transform 0.25s ease,
		opacity 0.25s ease;
}

.recruit__faq__item.is-open .recruit__faq__item__q-toggle::after {
	transform: translate(-50%, -50%) scaleY(0);
	opacity: 0;
}

.recruit__faq__item__a {
	margin: 0 16px 16px;
	border-radius: 12px;
	background: #fff;
	overflow: hidden;
	transition:
		height 0.35s cubic-bezier(0.22, 1, 0.36, 1),
		opacity 0.3s ease;
}

@media (prefers-reduced-motion: reduce) {
	.recruit__faq__item__a {
		transition: none;
	}
}

.recruit__faq__item__a[hidden] {
	display: none;
}

.recruit__faq__item__a-inner {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 24px 16px;
}

.recruit__faq__item__a-icon {
	display: flex;
	flex: none;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	width: 71px;
	height: 71px;
	color: #16346D;
	font-family: var(--font-en);
	font-size: 52px;
	font-weight: 700;
	line-height: 1;
}

.recruit__faq__item__a-text {
	margin: 0;
	color: #333333;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.8;
}

@media screen and (max-width: 600px) {
	.recruit__faq__item__q-btn {
		gap: 10px;
		min-height: 0;
		padding: 16px 12px;
	}

	.recruit__faq__item__q-icon,
	.recruit__faq__item__a-icon {
		width: 62px;
		height: 62px;
		font-size: 44px;
	}

	.recruit__faq__item__q-text {
		font-size: 16px;
	}

	.recruit__faq__item__a {
		margin: 0 12px 12px;
	}

	.recruit__faq__item__a-inner {
		padding: 16px 8px;
	}
}

/*========================================
選考の流れ
========================================*/
.recruit__flow {
	position: relative;
	background-color: #16346d;
	background-image:
		url("../../img/page/recruit/parts/recruit_flow_top.png"),
		url("../../img/page/recruit/parts/recruit_flow_bottom.png");
	background-repeat: no-repeat, no-repeat;
	background-position: top center, bottom center;
	background-size: 100% auto, 100% auto;
	padding: 80px 0 120px;
}
@media screen and (max-width: 600px) {
	.recruit__flow {
		background-image:
		url("../../img/page/recruit/parts/recruit_flow_top_sp.png"),
		url("../../img/page/recruit/parts/recruit_flow_bottom_sp.png");
	}
}

.recruit__flow__inner {
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 16px;
}

.recruit__flow__head {
	text-align: center;
	margin: 0 0 40px;
}

.recruit__flow__ribbon {
	display: inline-flex;
	align-items: stretch;
	margin: 0 0 20px;
	text-align: center;
}

.recruit__flow__ribbon-tail {
	flex-shrink: 0;
	width: 18px;
	height: 40px;
	background: #ffffff;
	color: #16346D;
}

.recruit__flow__ribbon-tail--left {
	clip-path: polygon(100% 0, 100% 100%, 0 50%);
	margin-right: -1px;
}

.recruit__flow__ribbon-tail--right {
	clip-path: polygon(0 0, 0 100%, 100% 50%);
	margin-left: -1px;
}

.recruit__flow__ribbon-label {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	height: 40px;
	padding: 0 16px;
	background: #ffffff;
	color: #16346D;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.3;
	letter-spacing: 0.13em;
	white-space: nowrap;
}

/* タイトル（top-reason__title 準拠。背景が紺のため白文字） */
.recruit__flow__title {
	margin: 0;
	color: #fff;
	font-size: 32px;
	font-weight: 700;
	line-height: 1.7;
	letter-spacing: 0.13em;
}
@media screen and (max-width: 600px) {
	.recruit__flow__title {
		font-size: 24px;
	}
}

/*========================================
フッター付近アニメーション
========================================*/

.recruit__anime-box{
	background-color: #0045A6;
	padding: 12px 0;
}

.recruit__anime-box__viewport {
	overflow: hidden;
	width: 100%;
}

.recruit__anime-box__track {
	display: flex;
	width: max-content;
	animation: recruit-anime-box-scroll 28s linear infinite;
}

@media screen and (max-width: 600px) {
	.recruit__anime-box__track {
		animation-duration: 40s;
	}
}

@keyframes recruit-anime-box-scroll {
	from {
		transform: translateX(-50%);
	}

	to {
		transform: translateX(0);
	}
}

@media (prefers-reduced-motion: reduce) {
	.recruit__anime-box__track {
		animation: none;
	}
}

.recruit__anime-box__text{
	display: flex;
	flex: none;
	align-items: center;
	justify-content: center;
	gap: 96px;
	padding-right: 96px;
	font-size: 26px;
	font-weight: 700;
	letter-spacing: 0.08em;
	white-space: nowrap;
}
@media screen and (max-width: 600px) {
	.recruit__anime-box__text{
		font-size: 11px;
		gap: 16px;
		padding-right: 16px;
	}
}

.recruit__anime-box__text__main{
	display: inline-block;
	color: #fff;
}

.recruit__anime-box__text__sub{
	display: inline-block;
	color: #99B5DB;
}

/*========================================
フッター（ENTRY）
========================================*/
.recruit-footer {
	position: relative;
	background-color: #2e2e2e;
	padding: 80px 16px 12px;
	text-align: center;
}

.recruit-footer__entry {
	max-width: 480px;
	margin: 0 auto 64px auto;
}

.recruit-footer__ribbon {
	display: inline-flex;
	align-items: stretch;
	margin: 0 0 24px;
}

.recruit-footer__ribbon-tail {
	flex-shrink: 0;
	width: 18px;
	height: 40px;
	background: #fff;
}

.recruit-footer__ribbon-tail--left {
	clip-path: polygon(100% 0, 100% 100%, 0 50%);
	margin-right: -1px;
}

.recruit-footer__ribbon-tail--right {
	clip-path: polygon(0 0, 0 100%, 100% 50%);
	margin-left: -1px;
}

.recruit-footer__ribbon-label {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	height: 40px;
	padding: 0 24px;
	background: #fff;
	color: #2e2e2e;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.28em;
	white-space: nowrap;
}

.recruit-footer__title {
	margin: 0 0 24px;
	color: #fff;
	font-size: 28px;
	font-weight: 700;
	letter-spacing: 0.13em;
}

.recruit-footer__lead {
	margin: 0 0 32px;
	color: #fff;
	font-size: 15px;
	line-height: 1.9;
	letter-spacing: 0.04em;
}

.recruit-footer__note {
	margin: 0 0 24px;
	color: rgba(255, 255, 255, 0.72);
	font-size: 13px;
	line-height: 1.8;
}

.recruit-footer__divider {
	width: 40px;
	height: 1px;
	margin: 0 auto 24px;
	border: none;
	background: rgba(255, 255, 255, 0.4);
}

.recruit-footer__contact {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	margin: 0 0 24px;
}

.recruit-footer__tel {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: #fff;
	font-family: var(--font-en);
	font-weight: 700;
	letter-spacing: 0.06em;
	text-decoration: none;
	white-space: nowrap;
}

.recruit-footer__tel-label,
.recruit-footer__tel-num {
	font-size: 30px;
}

@media screen and (min-width: 601px) {
	.recruit-footer__tel-label,
	.recruit-footer__tel-num {
		font-size: 38px;
	}
}

.recruit-footer__hours {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	padding: 6px 20px;
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 999px;
	color: #fff;
	font-size: 13px;
	white-space: nowrap;
}

.recruit-footer__btn-wrap {
	position: relative;
	margin: 0 0 56px;
}

.recruit-footer__btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	box-sizing: border-box;
	width: 100%;
	max-width: 400px;
	min-height: 56px;
	padding: 0 32px;
	background: #fff;
	color: #1a1a1a;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-decoration: none;
	transition: transform 0.25s ease;
	animation: recruit-footer-btn-pulse 2.6s ease-out infinite;
}

.recruit-footer__btn:hover {
	transform: translateY(-2px);
}

.recruit-footer__btn-arrow {
	display: inline-block;
	flex-shrink: 0;
	width: 8px;
	height: 8px;
	border-top: 2px solid #1a1a1a;
	border-right: 2px solid #1a1a1a;
	transform: rotate(45deg);
	transition: transform 0.3s cubic-bezier(0.65, 0, 0.35, 1);
}

.recruit-footer__btn:hover .recruit-footer__btn-arrow {
	transform: rotate(45deg) translate(3px, -3px);
}

@keyframes recruit-footer-btn-pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.45);
	}

	70% {
		box-shadow: 0 0 0 14px rgba(255, 255, 255, 0);
	}

	100% {
		box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
	}
}

.recruit-footer__brand {
	margin: 0 0 16px;
}

.recruit-footer__logo {
	display: inline-block;
	line-height: 0;
}

.recruit-footer__logo img {
	display: block;
	width: 220px;
	height: auto;
	margin: 0 auto;
}

@media screen and (min-width: 601px) {
	.recruit-footer__logo img {
		width: 278px;
	}
}

.recruit-footer__address {
	margin: 12px 0 0;
	color: rgba(255, 255, 255, 0.6);
	font-size: 12px;
}

.recruit-footer__copy {
	margin: 32px 0 0;
	color: rgba(255, 255, 255, 0.5);
	font-size: 11px;
}

.recruit-footer__br-sp {
	display: none;
}

@media (prefers-reduced-motion: reduce) {
	.recruit-footer__btn {
		animation: none;
	}
}

@media screen and (min-width: 601px) {
	.recruit-footer {
		padding: 96px 16px 12px;
	}

	.recruit-footer__entry {
		max-width: 800px;
		margin-bottom: 96px;
	}

	.recruit-footer__lead {
		font-size: 16px;
	}

	.recruit-footer__contact {
		flex-direction: row;
		justify-content: center;
		gap: 16px;
	}

	.recruit-footer__btn {
		width: auto;
	}
}

@media screen and (max-width: 600px) {
	.recruit-footer__br-sp {
		display: block;
	}
}

.recruit__flow__title.js-anim-sweep {
	display: block;
	width: fit-content;
	max-width: 100%;
	margin-inline: auto;
}

.recruit__flow__title .js-anim-sweep__content {
	color: #fff;
}

/*流れの項目（リスト）*/
.recruit__flow__list {
	display: flex;
	flex-direction: column;
	gap: 24px;
	margin: 0 auto;
	padding: 0;
	list-style: none;
	max-width: 1000px;
}

.recruit__flow__item__item{
	background-color: #fff;
	border-radius: 8px;
	padding: 14px 24px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
@media screen and (max-width: 600px) {
	.recruit__flow__item__item {
		flex-direction: column;
		align-items: center;
		justify-content: center;
		padding: 36px 24px;
	}
}

.recruit__flow__ribbon-label{
	width: 260px;
}

@media screen and (max-width: 600px) {
	.recruit__flow__ribbon-label {
		font-size: 14px;
	}
}

/* 番号（正円） */
.recruit__flow__item__number {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 77px;
	height: 77px;
	border-radius: 50%;
	background: #16346d;
	color: #fff;
	font-size: 32px;
	font-weight: 700;
}
@media screen and (max-width: 600px) {
	.recruit__flow__item__number {
		width: 55px;
		height: 55px;
		font-size: 24px;
		margin-bottom: 16px;
	}
}

.recruit__flow__item__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
	margin-left: 24px;
}
@media screen and (max-width: 600px) {
	.recruit__flow__item__body {
		margin-left: 0;
	}
}

/* ステップタイトル・本文 */
.recruit__flow__item__title {
	margin: 0;
	font-size: 20px;
	letter-spacing: 0.85px;
	color: #16346d;
}
@media screen and (max-width: 600px) {
	.recruit__flow__item__title {
		margin: 0 0 16px;
		text-align: center;
	}
}

.recruit__flow__item__text {
	margin: 0;
	font-size: 16px;
	letter-spacing: 0;
}
@media screen and (max-width: 600px) {
	.recruit__flow__item__text {
		font-size: 14px;
		text-align: center;
	}
}

.recruit__flow__item__text--pc-br {
	display: block;
}
@media screen and (max-width: 600px) {
	.recruit__flow__item__text--pc-br {
		display: none;
	}
}

.recruit__flow__item__text--sp-br,
.recruit__voice-pickup__lead-box__br-sp {
	display: none;
}
@media screen and (max-width: 600px) {
	.recruit__flow__item__text--sp-br,
	.recruit__voice-pickup__lead-box__br-sp {
		display: block;
	}
}

.recruit__flow__item__item {
	position: relative;
}

.recruit__flow__list > .recruit__flow__item__item:not(:last-child)::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 0;
	border-top: 12px solid #fff;
	border-right: 16px solid transparent;
	border-left: 16px solid transparent;
	transform: translate(-50%, 100%);
}