@charset "UTF-8";

/* ==========================================
   1段目ヘッダー
========================================== */
.header-top {
	background-color: var(--gcolor-yellow);
	min-height: 60px;
	height: auto;
	padding: 0;
}

.logo-area {
	background-color: #ffffff;
	height: 60px;
	padding: 0 40px 0 20px;
	display: flex;
	align-items: center;
	font-weight: bold;
	border-bottom-right-radius: 20px 60px;
}

@media (min-width: 768px) {
	.logo-area {
		padding: 0 40px 0 20px;
		border-bottom-right-radius: 40px 60px;
	}
}

.logo-mark {
	width: 20px;
	height: 20px;
	background-color: var(--gcolor-orange);
	border-radius: 50%;
	display: inline-block;
}

@media (min-width: 768px) {
	.logo-mark {
		width: 24px;
		height: 24px;
	}
}

.site-title {
	color: #ffffff;
	font-weight: bold;
	font-size: 1.2rem;
	margin-left: 20px;
	white-space: nowrap;
}

@media (max-width: 991.98px) {
	.site-title {
		order: 4;
		width: 100%;
		margin-left: 0;
		padding: 10px 15px;
		font-size: 0.95rem;
		white-space: normal;
		border-top: 1px solid rgba(255, 255, 255, 0.15);
	}
}

.lang-nav {
	font-size: 0.75rem;
}

.custom-hamburger {
	background: none;
	border: 1px solid var(--gcolor-yellow);
	border-radius: 4px;
	padding: 6px 8px;
	display: flex;
	flex-direction: column;
	gap: 4px;
	cursor: pointer;
}

.custom-hamburger:focus {
	outline: none;
}

.custom-hamburger span {
	display: block;
	width: 20px;
	height: 2px;
	background-color: #ffffff;
}

/* ==========================================
   2段目ヘッダー（ナビゲーション）
========================================== */
.nav-link {
	color: var(--text-dark) !important;
	font-weight: bold;
	font-size: 0.95rem;
	white-space: nowrap;
}

.nav-link.has-child::after {
	content: " ∨";
	color: var(--gcolor-orange);
	font-size: 0.7rem;
}

@media (max-width: 991.98px) {
	nav.navbar {
		border-bottom: none !important;
		box-shadow: none !important;
		background-color: transparent !important;
	}

	nav.navbar:has(.show) {
		background-color: #ffffff !important;
		border-bottom: 1px solid #E5E5E5 !important;
		box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05) !important;
	}
}
