@charset "utf-8";
:root {
	--base_color: #212179;　/* GIDごとに変更 */
}

/*-----------------------------------------------------------------------------
|
|■┓ヘッダー（#header）
|┗┛
-----------------------------------------------------------------------------*/
#header {
	border-bottom: 2px solid var(--base_color);
}
/*----------------------------
上部左ロゴ
----------------------------------------------------------*/
#header h1 {
	display: flex;
		align-items: center;
	gap: 8px;
}
/*
.hd_top h1 .site_logo {
	padding-right: 8px;
}
*/
#header h1::before {
	background: var(--base_color);
	content: "";
	display: block;
	mask: url(/vc/base/usr/docs/images/site_logo.svg) no-repeat left center / contain;
	width: 64px;
	height: 55px;
}
@media screen and (max-width:480px) {
	#header h1::before {
		width: 48px;
		height: 36px;
	}
}
#header h1 .kenpo_tit {
	color: var(--base_color);
	font-family: "Noto Sans Japanese";
}

