/* ===== _header.css ===== */
/* ヘッダー ---------- */
header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 9200;
	padding: 10px 0;
	box-sizing: border-box;
	transition: transform 0.3s ease;
	background: transparent;
}
header.header--hidden {
	transform: translateY(-100%);
}

.header-inner {
	width: 90%;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

/* ロゴ ---------- */
.header-logo a {
	display: inline-flex;
	padding: 5px;
}
.header-logo img {
	width: 75px;
	height: auto;
	display: block;
}

/* ハンバーガーボタン ---------- */
.hamburger-btn {
	padding: 5px;
	box-sizing: content-box;
	cursor: pointer;
	background: none;
	border: none;
	flex-shrink: 0;
	z-index: 9200;
	display: flex;
	align-items: center;
	justify-content: center;
}
.hamburger-icon {
	width: 35px;
	height: auto;
	display: block;
}
.hamburger-icon--close {
	display: none;
}

.hamburger-btn.open .hamburger-icon--open {
	display: none;
}
.hamburger-btn.open .hamburger-icon--close {
	display: block;
}

/* ナビゲーション ---------- */
.header-nav {
	position: fixed;
	top: 0;
	right: 0;
	width: 360px;
	height: 100vh;
	height: 100svh;
	height: 100dvh;
	padding: 80px 30px 30px;
	box-sizing: border-box;
	background-color: var(--color-white);
	z-index: 9100;
	overflow-y: auto;
	transform: translateX(100%);
	transition: transform 0.35s ease;
}
@media (max-width: 1024px) {
	.header-nav {
		width: 280px;
	}
}
@media (max-width: 599px) {
	.header-nav {
		width: 100%;
	}
}

.header-nav.open-nav {
	transform: translateX(0);
}

.header-nav ul {
	display: grid;
	gap: 0;
}
.header-nav ul li {
	border-bottom: 1.5px dashed var(--color-line);
}
.header-nav ul li a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 0;
	text-decoration: none;
	font-size: var(--fs-s);
	font-weight: var(--fw-regular);
	letter-spacing: var(--ls-tight);
	line-height: var(--lh-s);
	color: var(--color-font);
}
.header-nav ul li a::after {
	content: "";
	display: inline-block;
	width: 9px;
	height: 9px;
	border-right: 1px solid var(--color-font);
	border-bottom: 1px solid var(--color-font);
	transform: rotate(45deg);
	flex-shrink: 0;
	margin-bottom: 4px;
}

/* トップページボタン ---------- */
.nav-top-btn {
	display: block;
	margin-top: 20px;
	padding: 14px;
	background-color: var(--color-main);
	color: var(--color-white);
	text-align: center;
	text-decoration: none;
	font-size: var(--fs-s);
	font-weight: var(--fw-regular);
	border-radius: 4px;
}
.nav-top-btn:hover {
	opacity: 0.8;
}

/* バックドロップ ---------- */
.nav-backdrop {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(1px);
	opacity: 0;
	visibility: hidden;
	transition:
		opacity 0.3s ease,
		visibility 0.3s ease;
	z-index: 9050;
	pointer-events: none;
}
.nav-backdrop.active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

/* ===== _footer.css ===== */
/* ========== SP固定フッターバー ========== */
.page-implant small {
	font-size: 10px!important;
}
@media (max-width: 1024px) {
	.page-implant #pagetop {
		bottom: 60px;
	}
	.page-implant #section_footBana{
		margin-top: 0px!important;
		margin-bottom: 40px!important;
	}
}
.page-implant #section_footBana ul{
	padding-left: 0;
}
.page-implant #sp-fixed-menu {
	position: fixed;
	bottom: 0;
	z-index: 9000;
	width: 100%;
	font-size: 0;
}
.page-implant #sp-fixed-menu ul {
	display: flex;
	width: 100%;
	padding: 0;
	margin: 0;
	list-style: none;
}
.page-implant #sp-fixed-menu li {
	align-items: center;
	justify-content: center;
	width: 33.333%;
	padding: 0;
	margin: 0;
	font-size: 14px;
	background: #fff;
	border-top: 1px solid #0d3386;
	border-right: 1px solid #0d3386;
}
.page-implant #sp-fixed-menu li:last-child {
	border-right: none;
}
.page-implant #sp-fixed-menu li img {
	max-width: 60%;
}
.page-implant #sp-fixed-menu li a {
	display: block;
	width: 100%;
	padding: 2px 10px;
	text-align: center;
}
@media (min-width: 768px) {
	.page-implant .for-sp {
		display: none;
	}
}

/* ========== PC固定フッターバー 追加 ========== */

.page-implant .footerInner * {
	font-weight: 400;
}

.page-implant #footerContact .links a.tel::before {
	font-size: 28px;
}

/* ========== フッターナビ ========== */

.page-implant footer nav ul.headmenu .label .h4 {
	font-size: 17px;
	font-weight: 400;
}

.page-implant footer nav ul.headmenu .label .h5 {
	font-size: 13px;
	font-weight: 400;
}

/* ========== 求人アイコン（タブレット以下） ========== */

@media (max-width: 1024px) {
	.page-implant .kv_recruit_icon {
		position: fixed;
		width: 88px;
		bottom: 37px;
		right: inherit;
		left: 10px;
	}
}

/* ========== アクセスセクション非表示 ========== */

.page-implant #section_access,
.page-implant #access {
	display: none;
}
