@charset "UTF-8";

:root {
	--navy: #080059;
	--font-color: #1b1936;
	--light-navy: #f4f8ff;
	--orange: #ff7d2c;
	--orange-light: #ff9d60;
	--gray: #969ba6;
	--cyan: #38cce0;
	--pink: #ff83b0;
	--green: #b3d42e;
	--blue: #6ea8ff;

	--inner: 1440px;
	--gutter: 40px;
	--header-h: 140px;

	--font-jp: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
	--font-en: "Lexend Deca", "Noto Sans JP", sans-serif;
}

html {
	scroll-behavior: smooth;
	overflow-x: clip;
}

body {
	font-family: var(--font-jp);
	font-size: 16px;
	line-height: 1.7;
	color: var(--font-color);
	background: #fff;
	overflow-x: clip;
	font-feature-settings: "palt";
}

.u-visuallyHidden {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip-path: inset(50%);
	white-space: nowrap;
}

/* ============ ヘッダー ============ */
.gHeader {
	position: fixed;
	inset: 0 0 auto;
	z-index: 100;
	height: var(--header-h);
	background: #fff;
}

.gHeader__inner {
	display: flex;
	align-items: center;
	height: 100%;
	padding: 0 var(--gutter);
	gap: 48px;
}

.gHeader__logo { flex-shrink: 0; }
.gHeader__logo img { width: 196px; height: auto; }

.gNav { margin-left: auto; }

.gNav__list {
	display: flex;
	align-items: center;
	gap: 48px;
}

.gNav__item > a {
	position: relative;
	font-size: 18px;
	font-weight: 500;
	letter-spacing: 0.72px;
	line-height: 1.5;
	white-space: nowrap;
	transition: color .25s;
}

.gNav__item > a:hover { color: var(--navy); }

/* カレント表示。アンカー遷移でもJSが is-current を付ける */
.gNav__item.is-current > a { color: var(--navy); }

.gNav__plus {
	display: block;
	width: 11px;
	height: 11px;
	margin: 0 auto 4px;
	background: currentColor;
	clip-path: polygon(40% 0, 60% 0, 60% 40%, 100% 40%, 100% 60%, 60% 60%, 60% 100%, 40% 100%, 40% 60%, 0 60%, 0 40%, 40% 40%);
	opacity: 0;
	transition: opacity .25s;
}

.gNav__item.is-current .gNav__plus { opacity: 1; }

/* 求人情報は別サイトへの遷移。矢印つきの丸で他と区別する(2026-07-16 決定) */
.gNav__item--link > a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.gNav__ext {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: var(--navy);
	position: relative;
	flex-shrink: 0;
}

.gNav__ext::before {
	content: "";
	position: absolute;
	inset: 0;
	margin: auto;
	width: 6px;
	height: 6px;
	border-top: 1.5px solid #fff;
	border-right: 1.5px solid #fff;
	transform: translateX(-1px) rotate(45deg);
}

.gHeader__sns {
	display: flex;
	align-items: center;
	gap: 32px;
	flex-shrink: 0;
}

.gHeader__sns img { width: 24px; height: 24px; }

.gHeader__trigger { display: none; }

/* ============ CVボタン ============ */
.btnCv {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	width: 260px;
	height: 64px;
	padding: 0 20px 0 35px;
	border: 1px solid var(--orange);
	border-radius: 80px;
	background: linear-gradient(180deg, var(--orange-light) 0%, var(--orange) 57.8%);
	color: #fff;
	font-size: 18px;
	font-weight: 500;
	letter-spacing: 0.9px;
	white-space: nowrap;
	flex-shrink: 0;
	transition: transform .25s;
}

/* 影は同形を右下にずらしたもの(デザインどおり) */
.btnCv::before {
	content: "";
	position: absolute;
	inset: 5px -4px -5px 4px;
	border-radius: 80px;
	background: rgba(255, 125, 44, .3);
	z-index: -1;
}

.btnCv:hover { transform: translate(2px, 2px); }

.btnCv__arrow {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: #fff;
	position: relative;
	flex-shrink: 0;
}

.btnCv__arrow::before {
	content: "";
	position: absolute;
	inset: 0;
	margin: auto;
	width: 7px;
	height: 7px;
	border-top: 2px solid var(--orange);
	border-right: 2px solid var(--orange);
	transform: translateX(-2px) rotate(45deg);
}

.btnCv--lg {
	width: 350px;
	height: 80px;
	font-size: 20px;
	padding: 0 24px 0 44px;
}

.btnCv--lg .btnCv__arrow { width: 30px; height: 30px; }

/* ============ 記事一覧ボタン(ネイビー) ============ */
.btnLink {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 350px;
	height: 80px;
	padding: 0 30px;
	border-radius: 50px;
	background: var(--navy);
	color: #fff;
	font-size: 18px;
	font-weight: 500;
	letter-spacing: 0.54px;
	transition: opacity .25s;
}

.btnLink:hover { opacity: .85; }

.btnLink__arrow {
	position: absolute;
	top: 28px;
	left: 302px;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: #fff;
}

.btnLink__arrow::before {
	content: "";
	position: absolute;
	inset: 0;
	margin: auto;
	width: 7px;
	height: 7px;
	border-top: 2px solid var(--navy);
	border-right: 2px solid var(--navy);
	transform: translateX(-2px) rotate(45deg);
}

/* ============ セクション見出し ============ */
.secHead {
	text-align: center;
	margin-bottom: 80px;
}

.secHead--left { text-align: left; }

.secTag {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-en);
	font-size: 18px;
	font-weight: 500;
	letter-spacing: 0.9px;
	color: var(--navy);
	line-height: 1.5;
}

.secTag__plus {
	width: 15px;
	height: 15px;
	background: var(--navy);
	clip-path: polygon(40% 0, 60% 0, 60% 40%, 100% 40%, 100% 60%, 60% 60%, 60% 100%, 40% 100%, 40% 60%, 0 60%, 0 40%, 40% 40%);
	flex-shrink: 0;
}

.secTtl {
	margin-top: 22px;
	font-size: 34px;
	font-weight: 500;
	line-height: 1.4;
	letter-spacing: 1.7px;
	color: var(--navy);
}

.secTtl--en {
	font-family: var(--font-en);
	font-size: 40px;
	letter-spacing: 0;
}

.secTtl__num {
	font-family: var(--font-en);
	font-size: 44px;
	font-weight: 400;
	padding: 0 2px;
}

/* ============ タグ ============ */
.tag {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 115px;
	padding: 10px 24px;
	border: 1px solid rgba(8, 0, 89, .4);
	border-radius: 8px;
	background: #fff;
	font-size: 16px;
	font-weight: 500;
	line-height: 2;
	letter-spacing: 0.96px;
	color: var(--navy);
	white-space: nowrap;
}

/* ============ 背景のカラーブロブ ============
   重なった部分が明るくなる。DEMO(AE)では出せず画像を被せていた表現を
   mix-blend-mode で素直に実現する */
.blob {
	position: absolute;
	display: block;
	mix-blend-mode: screen;
	border-radius: 50%;
	will-change: transform;
}

.blob--cyan   { background: var(--cyan); }
.blob--green  { background: var(--green); }
.blob--pink   { background: var(--pink); }
.blob--blue   { background: var(--blue); }
.blob--yellow { background: #ffe14d; }

/* ============ コンタクト ============ */
.contact {
	position: relative;
	padding: 180px 0 120px;
	overflow: hidden;
	isolation: isolate;
}

.contact__bg {
	position: absolute;
	inset: 0;
	z-index: -1;
	background: #fff;
}

.contact__bg .blob--cyan   { width: 1100px; height: 620px; right: -80px;  top: 40px;  border-radius: 60% 40% 55% 45% / 60% 55% 45% 40%; }
.contact__bg .blob--pink   { width: 1200px; height: 380px; left: 60px;    top: 320px; border-radius: 60% 40% 50% 50% / 70% 60% 40% 30%; }
.contact__bg .blob--blue   { width: 700px;  height: 380px; right: -60px;  top: 300px; border-radius: 55% 45% 50% 50% / 60% 55% 45% 40%; }
.contact__bg .blob--green  { width: 620px;  height: 280px; left: -180px;  top: -60px; border-radius: 50% 50% 55% 45% / 60% 60% 40% 40%; }
.contact__bg .blob--yellow { width: 520px;  height: 220px; left: 460px;   top: -80px; border-radius: 55% 45% 50% 50% / 60% 55% 45% 40%; }

.contact__inner {
	width: min(var(--inner), 100% - var(--gutter) * 2);
	margin-inline: auto;
}

.contact__lead {
	margin: 28px 0 40px;
	font-size: 16px;
	line-height: 2;
}

/* ============ フッター ============ */
.gFooter {
	padding: 40px 0 80px;
	background: #fff;
}

.gFooter__inner {
	width: min(var(--inner), 100% - var(--gutter) * 2);
	margin-inline: auto;
	display: grid;
	grid-template-columns: minmax(0, 340px) minmax(0, 1fr);
	gap: 80px;
}

.gFooter__logo { width: 220px; }

.gFooter__name {
	margin-top: 12px;
	font-size: 14px;
	font-weight: 500;
	color: var(--navy);
}

.gFooter__sns {
	display: flex;
	gap: 20px;
	margin-top: 24px;
}

.gFooter__copy {
	margin-top: 60px;
	font-size: 12px;
	color: var(--gray);
	letter-spacing: .02em;
	white-space: nowrap;
}

.gFooter__ttl {
	font-size: 20px;
	font-weight: 500;
	color: var(--navy);
	margin-bottom: 24px;
}

.outlineList {
	display: grid;
	grid-template-columns: 120px minmax(0, 1fr);
	row-gap: 20px;
	font-size: 14px;
	line-height: 1.7;
}

.outlineList dt {
	font-weight: 500;
	color: var(--navy);
}

/* ============ SP ============ */
@media (max-width: 900px) {
	:root {
		--gutter: 20px;
		--header-h: 68px;
	}

	.gHeader__inner { gap: 12px; }
	.gHeader__logo img { width: 148px; }

	.gNav {
		position: fixed;
		inset: var(--header-h) 0 0;
		background: #fff;
		padding: 32px var(--gutter);
		transform: translateX(100%);
		transition: transform .35s;
		overflow-y: auto;
	}

	.gNav.is-open { transform: none; }

	.gNav__list {
		flex-direction: column;
		align-items: flex-start;
		gap: 28px;
	}

	.gNav__plus { display: none; }

	.gHeader__sns { margin-left: auto; gap: 16px; }
	.gHeader__sns img { width: 20px; height: 20px; }

	.gHeader .btnCv { display: none; }

	.gHeader__trigger {
		display: grid;
		place-content: center;
		gap: 5px;
		width: 32px;
		height: 32px;
		flex-shrink: 0;
	}

	.gHeader__trigger span:not(.u-visuallyHidden) {
		display: block;
		width: 22px;
		height: 2px;
		background: var(--navy);
		transition: transform .3s, opacity .3s;
	}

	.gHeader__trigger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
	.gHeader__trigger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
	.gHeader__trigger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

	.secHead { margin-bottom: 40px; }
	.secTtl { font-size: 24px; }
	.secTtl--en { font-size: 28px; }
	.secTtl__num { font-size: 30px; }
	.secTag { font-size: 15px; }

	.btnCv--lg,
	.btnLink { width: 100%; max-width: 320px; height: 68px; font-size: 17px; }

	.contact { padding: 100px 0 80px; }
	.contact__lead { font-size: 15px; }

	.gFooter__inner {
		grid-template-columns: minmax(0, 1fr);
		gap: 48px;
	}

	.gFooter__copy { margin-top: 32px; font-size: 11px; }

	.outlineList {
		grid-template-columns: minmax(0, 1fr);
		row-gap: 4px;
	}

	.outlineList dd { margin-bottom: 16px; }
}

/* ============================================================
   営業所モーダル / 地図のピン
   ============================================================ */
.office__map svg {
	width: 100%;
	height: auto;
	overflow: visible;
}

.mapPin {
	cursor: pointer;
	transform-box: fill-box;
	transform-origin: center bottom;
	transition: transform .2s;
}

.mapPin:hover,
.mapPin:focus-visible { transform: scale(1.22); }

.areaList__btn {
	position: relative;
	padding-left: 14px;
	font-size: 14px;
	line-height: 1.9;
	text-align: left;
	color: inherit;
	transition: color .25s;
}

.areaList__btn::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	translate: 0 -50%;
	width: 5px;
	height: 5px;
	border-top: 1.5px solid var(--navy);
	border-right: 1.5px solid var(--navy);
	transform: rotate(45deg);
}

.areaList__btn:hover { color: var(--navy); text-decoration: underline; }

.officeModal {
	position: fixed;
	inset: 0;
	z-index: 200;
	display: grid;
	place-items: center;
	padding: var(--gutter);
	opacity: 0;
	transition: opacity .25s;
}

.officeModal.is-open { opacity: 1; }
.officeModal[hidden] { display: none; }

.officeModal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(8, 0, 89, .35);
}

.officeModal__body {
	position: relative;
	width: min(560px, 100%);
	padding: 50px 50px 46px;
	border-radius: 20px;
	background: #fff;
	translate: 0 12px;
	transition: translate .25s;
}

.officeModal.is-open .officeModal__body { translate: 0 0; }

.officeModal__close {
	position: absolute;
	top: 18px;
	right: 18px;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--light-navy);
}

.officeModal__close::before,
.officeModal__close::after {
	content: "";
	position: absolute;
	inset: 0;
	margin: auto;
	width: 15px;
	height: 2px;
	background: var(--navy);
}

.officeModal__close::before { transform: rotate(45deg); }
.officeModal__close::after  { transform: rotate(-45deg); }

.officeModal__pref {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 80px;
	padding: 5px 0;
	border-radius: 6px;
	background: var(--navy);
	color: #fff;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: .08em;
}

.officeModal__ttl {
	margin-top: 16px;
	font-size: 24px;
	font-weight: 500;
	color: var(--navy);
	line-height: 1.5;
}

.officeModal__list {
	display: grid;
	grid-template-columns: 80px minmax(0, 1fr);
	gap: 8px 16px;
	margin-top: 24px;
	padding-top: 24px;
	border-top: 1px solid rgba(8, 0, 89, .12);
	font-size: 15px;
	line-height: 1.8;
}

.officeModal__list dt { font-weight: 500; color: var(--navy); }

.officeModal__link {
	width: 100%;
	margin-top: 32px;
	height: 68px;
	justify-content: center;
}

.officeModal__link .btnLink__arrow { left: auto; right: 24px; top: 22px; }

@media (max-width: 900px) {
	.officeModal__body { padding: 40px 24px 32px; }
	.officeModal__ttl { font-size: 20px; }
	.officeModal__list { grid-template-columns: 70px minmax(0, 1fr); font-size: 14px; }
}
