/* =============================================
   ヘッダー
   ============================================= */
div#mainVisual {
	margin-top: 60px;
}
.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1112;
	background: #fff;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.header-logo-wrap {
	margin: 0;
	line-height: 1;
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 30px;
	height: 90px;
	max-width: 100%;
}

/* ロゴ */
.header-logo {
	display: flex;
	align-items: center;
	text-decoration: none;
}

.header-logo img {
	height: 40px;
	width: auto;
}

/* PC ナビゲーション */
.header-nav {
	display: flex;
	align-items: center;
	height: 100%;
}

.header-nav-list {
	display: flex;
	align-items: stretch;
	height: 100%;
	list-style: none;
	margin: 0;
	padding: 0;
}

.header-nav-item {
	position: relative;
	display: flex;
	align-items: stretch;
}

/* .header-nav-item::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 50%;
  background: #e5e5e5;
} */

.header-nav-link {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 15px 6px;
	padding: 0 25px;
	text-decoration: none;
	/* color: #666; */
	/* font-size: 11px; */
	letter-spacing: 0.05em;
	transition: all 0.3s;
	white-space: nowrap;
}
.header-nav-link span {
	font-size: min(1vw, 15px);
}

.header-nav-link:hover {
	color: #c9a0a0;
	background-color: rgba(0, 0, 0, 0.02);
	opacity: 1;
}

.header-nav-icon {
	width: 38.67px;
	height: 31.91px;
	object-fit: contain;
	object-position: center;
	margin: 0 !important;
}

/* メガメニュー */
.header-mega {
	position: fixed;
	top: 90px;
	left: 0;
	right: 0;
	width: 100%;
	background: #fff;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	opacity: 0;
	visibility: hidden;
	transition:
		opacity 0.3s,
		visibility 0.3s;
	z-index: 100;
}

.header-nav-item--mega:hover .header-mega {
	opacity: 1;
	visibility: visible;
}

.header-mega-inner {
	display: grid;
	grid-template-columns: 80px 1fr 200px;
	gap: 40px;
	max-width: 900px;
	margin: 0 auto;
	padding: 40px 30px;
	align-items: start;
}

.header-mega-title {
	font-size: 24px;
	font-weight: 400;
	color: #333;
	line-height: 1.4;
	letter-spacing: 0.1em;
	font-family: 'Zen Old Mincho', serif;
	padding-left: 20px;
	border-left: 1px solid #ccc;
}

.header-mega-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.header-mega-list li {
	margin-bottom: 8px;
}

.header-mega-list li:last-child {
	margin-bottom: 0;
}

.header-mega-list a {
	display: block;
	padding: 6px 0;
	color: #333;
	font-size: 14px;
	text-decoration: none;
	line-height: 1.6;
	transition: color 0.3s;
}

.header-mega-list a:hover {
	color: #c9a0a0;
	opacity: 1;
}

.header-mega-image {
	width: 100%;
	aspect-ratio: 4/3;
	overflow: hidden;
}

.header-mega-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: opacity 0.15s ease;
}

/* ハンバーガーメニュー */
.header-hamburger {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 5px;
	padding: 30px 25px 0;
	background: none;
	border: none;
	border-left: 1px solid #333;
	cursor: pointer;
}

/* MD: 769px */
@media (width >= 769px) {
	.header-hamburger {
		height: 100%;
	}
}

.header-hamburger-line {
	display: block;
	width: 22px;
	height: 1px;
	background: #333;
	transition:
		transform 0.3s,
		opacity 0.3s;
}

.header-hamburger-text {
	display: block;
	font-size: 10px;
	color: #666;
	letter-spacing: 0.05em;
	margin-top: 18px;
}

/* =============================================
   オーバーレイメニュー（PC/SP共通）
   ============================================= */
.header-mobile-menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #6b6b6b;
	z-index: 9999;
	opacity: 0;
	visibility: hidden;
	transition:
		opacity 0.3s,
		visibility 0.3s;
	overflow-y: auto;
}

.header-mobile-menu.is-open {
	opacity: 1;
	visibility: visible;
}

.header-mobile-menu-inner {
	min-height: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 60px 40px;
	display: grid;
	grid-template-columns: 1fr 2fr 1.5fr;
	gap: 60px;
}

.header-mobile-menu-header {
	display: none; /* PC版では不要 */
}

.header-mobile-menu-close {
	position: fixed;
	top: 40px;
	right: 60px;
	width: 32px;
	height: 32px;
	background: none;
	border: none;
	cursor: pointer;
	z-index: 10000;
}

.header-mobile-menu-close span {
	display: block;
	position: absolute;
	width: 24px;
	height: 1.5px;
	background: #fff;
	left: 50%;
	top: 50%;
}

.header-mobile-menu-close span:first-child {
	transform: translate(-50%, -50%) rotate(45deg);
}

.header-mobile-menu-close span:last-child {
	transform: translate(-50%, -50%) rotate(-45deg);
}

/* オーバーレイメニュー ナビゲーション */
.header-mobile-nav {
	display: contents;
}

.header-mobile-nav-left {
	grid-column: 2;
}

.header-mobile-nav-right {
	grid-column: 3;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.header-mobile-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.header-mobile-nav a {
	display: block;
	padding: 6px 0;
	color: rgba(255, 255, 255, 0.85);
	text-decoration: none;
	font-size: 13px;
	line-height: 1.8;
	transition: color 0.3s;
}

.header-mobile-nav a:hover {
	color: #fff;
	opacity: 1;
}

.header-mobile-nav-section {
	margin-top: 40px;
}

.header-mobile-nav-title {
	font-size: 14px;
	color: #fff;
	margin-bottom: 10px;
	font-weight: 400;
}

.header-mobile-nav-sub {
	margin-top: 0;
}

.header-mobile-nav-sub a {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.5);
}

/* ヘッダー用 採用情報アコーディオン */
.header-mobile-nav-sub .recruitAccordion {
	border: none;
	margin: 0;
}

.header-mobile-nav-sub .recruitAccordion summary {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.5);
	cursor: pointer;
	list-style: none;
	display: flex;
	align-items: center;
	gap: 5px;
	padding: 8px 0;
}

.header-mobile-nav-sub .recruitAccordion summary::-webkit-details-marker {
	display: none;
}

.header-mobile-nav-sub .recruitAccordion summary::after {
	content: '▼';
	font-size: 8px;
	margin-left: 5px;
	transition: transform 0.3s;
}

.header-mobile-nav-sub .recruitAccordion[open] summary::after {
	transform: rotate(180deg);
}

.header-mobile-nav-sub .recruitAccordion-list {
	list-style: none;
	padding: 10px 0 0 15px;
	margin: 0;
}

.header-mobile-nav-sub .recruitAccordion-list li {
	margin-bottom: 8px;
}

.header-mobile-nav-sub .recruitAccordion-list li:last-child {
	margin-bottom: 0;
}

.header-mobile-nav-sub .recruitAccordion-list a {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.5);
}

.header-mobile-nav-sub .recruitAccordion-list a:hover {
	color: rgba(255, 255, 255, 0.8);
}

.header-mobile-nav-copy {
	margin-top: 20px;
	font-size: 10px;
	color: rgba(255, 255, 255, 0.4);
}

/* ロゴエリア（左カラム） */
.header-mobile-menu-logo {
	grid-column: 1;
	padding-top: 40px;
}

.header-mobile-menu-catch {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.8;
	margin-bottom: 15px;
}

.header-mobile-menu-brand {
	font-size: 20px;
	color: #fff;
	font-family: 'Zen Old Mincho', serif;
	letter-spacing: 0.1em;
}

/* 右カラム */
.header-mobile-nav-right {
	grid-column: 3;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
}

.header-mobile-nav-col {
	display: flex;
	flex-direction: column;
}

.header-mobile-menu-footer {
	padding-top: 30px;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.header-mobile-footer-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	font-size: 14px;
}

.header-mobile-footer-logo img {
	width: 30px;
	height: auto;
	filter: brightness(0) invert(1);
}

/* SP用ヘッダー調整 */
@media (max-width: 768px) {
	.header-inner {
		padding: 12px 15px;
		height: 60px;
	}

	.header-logo img {
		height: 30px;
		width: auto;
	}

	/* PCナビゲーション非表示 */
	.header-nav {
		display: none;
	}

	/* ハンバーガーメニュー調整 */
	.header-hamburger {
		padding: 20px 15px 0;
	}

	.header-hamburger-line {
		width: 20px;
	}

	.header-hamburger-text {
		font-size: 12px;
		margin-top: 12px;
	}

	/* モバイルメニュー調整 */
	.header-mobile-menu-inner {
		display: flex;
		flex-direction: column;
		grid-template-columns: none;
		gap: 30px;
		padding: 80px 20px 40px;
	}

	.header-mobile-menu-logo {
		order: -1;
	}

	.header-mobile-menu-close {
		top: 15px;
		right: 15px;
	}

	.header-mobile-nav {
		display: flex;
		flex-direction: column;
		gap: 0;
	}

	.header-mobile-nav-left {
		grid-column: auto;
		padding-bottom: 30px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	}

	.header-mobile-nav-right {
		grid-column: auto;
		display: flex;
		flex-direction: column;
		gap: 20px;
		padding-top: 30px;
	}
}

/* Footer Top Reconstruction */
.FooterTop {
	background: #ececec !important; /* 薄いグレー */
	padding: 80px 0 60px;
	color: #000;
	font-family: serif; /* 明朝体ベース? */
}

.FooterTop-inner {
	display: grid;
	/* grid-template-columns: 240px 180px 1fr 200px; */ /* Logo, Top/Concept, Center(Commit/Service), Right(Links) */
	grid-template-columns: 130px 140px 270px 115px;
	gap: 12px;
}
@media (width >= 1024px) {
	.FooterTop-inner {
		grid-template-columns: 150px 180px 270px 200px;
		gap: 40px;
	}
}
@media (width >= 1200px) {
	.FooterTop-inner {
		grid-template-columns: 240px 180px 270px 200px;
	}
}

/* 1. Logo Area */
.FooterTop-logo {
	display: flex;
	align-items: center;
	gap: 15px;
	text-decoration: none;
	color: #333;
	margin-bottom: 30px;
}

.FooterTop-logo img {
	width: 63%;
	height: auto;
	margin-left: 0;
}

/* MD: 769px */
@media (width >= 769px) {
	.FooterTop-logo img {
		width: 100%;
	}
}

.FooterTop-logo-text {
	display: flex;
	flex-direction: column;
}

.FooterTop-logo-text span {
	font-size: 16px;
	font-weight: bold;
	letter-spacing: 0.1em;
}

.FooterTop-logo-text small {
	font-size: 10px;
	font-weight: 300;
}

.FooterTop-copyright {
	font-size: 10px;
	color: #666;
	margin-top: 20px;
}
@media (max-width: 768px) {
	.FooterTop-copyright {
		text-align: center;
	}
}

/* 2. Nav Area */
.FooterTop-nav {
	display: contents; /* Gridの子要素として直接配置させるため */
}

/* Links Styles */
.FooterTop a {
	text-decoration: none;
	color: #333;
	transition: opacity 0.3s;
	font-size: 12px;
}

.FooterTop a:hover {
	opacity: 0.7;
}

/* Col 1: Top & Concept */
.FooterTop-col--1 ul {
	list-style: none;
}

.FooterTop-list-main li {
	margin-bottom: 30px;
}
.FooterTop-list-main li a {
	font-size: 12px;
}

.FooterTop-list-sub li {
	margin-bottom: 15px;
}
.FooterTop-list-sub li a {
	font-size: 12px;
}

/* Col 2: Commitment & Service */
.FooterTop-col--2 {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.FooterTop-head {
	font-size: 12px;
	margin-bottom: 20px;
}

.FooterTop-list {
	padding-left: 20px; /* インデント */
}

.FooterTop-list li {
	margin-bottom: 15px;
	font-size: 12px;
	list-style: none;
}

/* Col 3: Right Links */
.FooterTop-linkList {
	list-style: none;
}
.FooterTop-linkList li {
	margin-bottom: 18px;
	font-size: 12px;
}

.FooterTop-linkList i.icon-external::after {
	content: '';
	display: inline-block;
	width: 10px;
	height: 10px;
	/* background: url(../img/icon_external.svg) no-repeat center center / contain; */
	margin-left: 5px;
}

.FooterTop .recruitAccordion summary {
	cursor: pointer;
	list-style: none;
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 12px;
	line-height: 1.5;
}

/* Utility */
.pc-only {
	display: block;
}
.sp-only {
	display: none;
}
.u-pc-only-block {
	display: block;
}
.u-sp-only-block {
	display: none;
}

/* SP Styling */
@media (max-width: 768px) {
	.FooterTop {
		padding: 60px 0 40px;
	}
	.FooterTop-head {
		font-size: 13px;
		line-height: 2.5;
	}
	.FooterTop-list-main li {
		margin-bottom: unset;
	}
	.FooterTop-list {
		padding-left: 1em;
	}
	.FooterTop-list li {
		margin-bottom: 40px;
		line-height: 1.84;
	}
	.FooterTop-list li:last-child {
		margin-bottom: 0;
	}
	.FooterTop-linkList li {
		margin-bottom: 24px;
		font-size: 13px;
		line-height: 1.85;
	}
	.FooterTop .recruitAccordion summary {
		font-size: 13px;
		font-weight: 400;
		line-height: 1.75;
		color: #333;
	}
	.FooterTop-list-sub {
		margin-top: 45px;
	}

	.FooterTop-inner {
		display: flex;
		flex-direction: column;
		gap: 0;
	}

	.FooterTop-logoArea {
		/* SP: Logo area moves to bottom via order or structure */
		display: none; /* 別途SP用パーツを表示 */
	}

	.FooterTop-nav {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 0 20px;
	}

	/* SP Stack Order: Top -> Commitment -> Service -> Links -> Concept */

	.FooterTop-col--1 {
		/* Top link */
		grid-column: 1;
		grid-row: 1;
		margin-bottom: 50px;
	}
	.FooterTop-list-main li a {
		font-size: 13px;
		line-height: 2.5;
	}

	.FooterTop-col--2 {
		/* Commitment, Service */
		grid-column: 1;
		grid-row: 2;
		gap: 40px;
		margin-bottom: 40px;
	}

	/* .FooterTop-list {
    padding-left: 0;
  } */

	.FooterTop-col--3 {
		/* Links */
		grid-column: 2;
		grid-row: 1 / span 2;
		margin-bottom: 40px;
		margin-top: 95px;
	}

	/* SP Visibility */
	.pc-only {
		display: none !important;
	}
	.sp-only {
		display: block !important;
	}

	.FooterTop-spBottom {
		/* border-top: 1px solid #ccc; */
		padding-top: 40px;
		margin-top: 20px;
	}

	.FooterTop-logo {
		justify-content: flex-start;
		margin-bottom: 100px;
	}
}

#btnPageTop {
	position: fixed;
	bottom: 80px;
	right: 40px;
	z-index: 100;
	opacity: 0;
	visibility: hidden;
	transition:
		opacity 0.3s,
		visibility 0.3s;

	&.is-visible {
		opacity: 1;
		visibility: visible;
	}

	img#iconArrow {
		width: 50px;
	}
}

/* MD: 769px */
@media (width >= 769px) {
	#btnPageTop {
		right: 120px;
	}
}

/* =============================================
   フッター（本番サイト同期）
   ============================================= */

/* --- PC用 (769px以上) --- */
@media (min-width: 769px) {
	#footer {
		width: 100%;
		/* min-height: 800px; */
		background: #ececec;
		position: relative;
		letter-spacing: 0.02em;
		z-index: 3333;
		overflow: hidden;
	}

	#footerLogo {
		width: 205px;
		position: absolute;
		top: 84px;
		left: 91px;
	}

	#footerNav {
		width: 766px;
		position: absolute;
		top: 70px;
		right: 35px;
		overflow: hidden;
		white-space: nowrap;
	}

	#footer .breadCrumb {
		margin: 0 0 80px;
		font-size: 15px;
	}

	#footer .breadCrumb li {
		margin-right: 4px;
		display: inline-block;
	}

	#footer .breadCrumb li::after {
		content: ' ＞';
	}

	#footer .breadCrumb li:last-child::after {
		content: '';
	}

	#footerNavInner li {
		margin-bottom: 26px;
	}

	#footerNavInner li ol {
		margin: 32px 0 65px 4px;
	}

	#footerNavInner li li {
		margin-bottom: 16px;
		font-size: 13px;
		line-height: 1.6;
	}

	#footer .navRecruit {
		position: relative;
	}

	#footerNavInner li .pullDown {
		margin: 0 0 20px 12px;
		padding-top: 20px;
		display: none;
	}

	#footerNavInner li .pullDown li {
		font-size: 11px;
		line-height: 1;
		letter-spacing: 0;
	}

	#footerNavInner li .pullDown li:last-child {
		margin-bottom: 0;
	}

	#footerNavInner {
		width: calc(779px + 92px);
	}

	#footerNavInner ul {
		float: left;
		margin-right: 60px;
	}

	#footerNavInner ul ul {
		float: none;
		margin-right: 0;
	}

	#footerNavInnerMain {
		width: 360px;
	}

	#footerNavInnerMainToSub {
		margin-bottom: 60px;
	}

	#footerNavInnerSub {
		width: 110px;
	}

	#footerNavInnerMain li,
	#footerNavInnerSub li {
		font-size: 16px;
	}

	#footer a {
		color: #000;
		transition-duration: 0.5s;
	}

	#footer a:hover {
		color: #aaa;
		transition-duration: 0.5s;
	}

	#footerNavInnerLink {
		width: 180px;
		font-size: 13px;
	}

	#footer .copyright {
		margin-top: 48px;
		font-family: 'garamond-premier-pro', 'Times New Roman', Times, 'serif';
		font-size: 11px;
		transform: scale(1);
		letter-spacing: 0.04em;
	}

	#footerGroupLogo {
		width: 150px;
		position: absolute;
		bottom: 44px;
		left: 43px;
	}

	#footer #btnPageTop {
		width: 70px;
		height: 70px;
		position: fixed;
		bottom: 25px;
		right: 25px;
		border-radius: 100%;
	}

	#footer #iconArrow {
		width: 33px;
		position: relative;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}
}

/* --- SP用 (768px以下) --- */
@media (max-width: 768px) {
	#footer {
		width: 100%;
		background: #ececec;
		position: relative;
		letter-spacing: 0.02em;
		z-index: 3333;
		overflow: hidden;
	}

	#footerLogo {
		width: 154px;
		position: relative;
		top: 20px;
		left: 20px;
	}

	#footerNav {
		width: calc(100% - 40px);
		margin: 0 auto;
		overflow: hidden;
	}

	#footer .breadCrumb {
		margin: 60px 0;
		font-size: 13px;
		line-height: 2.5;
	}

	#footer .breadCrumb li {
		margin-right: 4px;
		display: inline-block;
	}

	#footer .breadCrumb li::after {
		content: ' ＞';
	}

	#footer .breadCrumb li:last-child::after {
		content: '';
	}

	#footerNavInner li {
		margin-bottom: 26px;
	}

	#footerNavInner li ol {
		margin: 40px 0 60px 0;
	}

	#footerNavInner li li {
		margin-bottom: 16px;
		font-size: 13px;
		line-height: 1.6;
	}

	#footerNavInner {
		width: calc(100% + 20px);
	}

	#footerNavInner ul {
		float: left;
		margin-right: 20px;
	}

	#footerNavInnerMain {
		width: 190px;
	}

	#footerNavInnerSub {
		width: 125px;
		margin-bottom: 30px;
	}

	#footerNavInnerMain li,
	#footerNavInnerSub li {
		font-size: 15px;
	}

	#footerNavInnerLink {
		width: 125px;
		font-size: 11px;
		letter-spacing: -0.08em !important;
	}

	#footer .navRecruit {
		position: relative;
	}

	#footerNavInner li .pullDown {
		margin: 0 0 20px 0;
		padding-top: 20px;
		display: none;
	}

	#footerNavInner li .pullDown li {
		font-size: 10.5px;
		line-height: 1;
		letter-spacing: 0;
		white-space: nowrap;
		min-width: 140px;
	}

	#footerNavInner li .pullDown li:last-child {
		margin-bottom: 0;
	}

	#footer .copyright {
		margin-top: 48px;
		font-family: 'garamond-premier-pro', 'Times New Roman', Times, 'serif';
		font-size: 10px;
		transform: scale(0.9);
		transform-origin: top left;
		letter-spacing: 0.02em;
		white-space: nowrap;
	}

	#footerGroupLogo {
		width: 106px;
		padding-top: 50px;
		position: relative;
		bottom: 24px;
		left: 20px;
	}

	#footer #iconArrow {
		width: 60px;
		position: relative;
		/* top: 50%;
    left: 10%;
    transform: translate(-50%, -50%); */
	}
	#btnPageTop {
		right: 27px;
	}

	/* SP用 固定ナビ */
	/* SP用 固定ナビ (Redesign) */
	#hideNav {
		width: 100%;
		height: 60px; /* Taller for better touch */
		position: fixed;
		bottom: 0;
		left: 0;
		z-index: 8888;
		background: #fff;
		box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
		transform: translate3d(0, 0, 0) !important;
		padding: 0 !important;
		margin: 0 !important;
	}

	#hideNav #hideNavInner {
		height: 100%;
		margin: 0 !important;
		padding: 0 !important;
	}

	#hideNav ul {
		display: flex;
		height: 100%;
		margin: 0 !important;
		padding: 0 !important;
		list-style: none;
	}

	#hideNav li {
		height: 100%;
		box-sizing: border-box;
		margin: 0 !important;
		padding: 0 !important;
	}

	/* Contact & Request (Left side, White) */
	#hideNav li:nth-child(1),
	#hideNav li:nth-child(2) {
		width: 25%;
		border-right: 1px solid #eee;
	}

	/* Tour (Right side, Accent Color) */
	#hideNav li:nth-child(3) {
		width: 50%;
		border-right: none;
	}

	#hideNav li a {
		display: flex; /* Flexbox for centering */
		align-items: center; /* Vertical center */
		justify-content: center; /* Horizontal center */
		width: 100%;
		height: 100%;
		text-decoration: none;
		font-family: 'Zen Old Mincho', serif;
		font-size: 13px;
		line-height: 1.2; /* Tighter line height for multi-line text */
		text-align: center;
		transition: opacity 0.3s;
		padding: 0 4px; /* Slight horizontal padding for long text */
		box-sizing: border-box;
		margin: 0; /* Reset margins */
	}

	/* Styles for Contact/Request links */
	#hideNav li:nth-child(1) a,
	#hideNav li:nth-child(2) a {
		color: #333;
		background: #fff;
		font-weight: 500;
	}

	/* Styles for Tour link */
	#hideNav li:nth-child(3) a {
		color: #fff;
		background: #c9a0a0; /* Accent Color */
		font-weight: bold;
		font-size: 15px; /* Slightly larger */
	}

	#hideNav li a:hover {
		opacity: 0.8;
	}
}

.navRecruit .recruitAccordion summary {
	font-size: 12px;
	cursor: pointer;
	list-style: none;
	display: flex;
	align-items: center;
	gap: 5px;
	padding: 8px 0;
}

.navRecruit .recruitAccordion summary::after {
	content: '▼';
	font-size: 8px;
	margin-left: 5px;
	transition: transform 0.3s;
}

.navRecruit .recruitAccordion[open] summary::after {
	transform: rotate(180deg);
}
