@charset "utf-8";
/*------------------------------------------------------------
	デフォルトスタイル
------------------------------------------------------------*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, figcaption, figure, section, footer, header, main, hgroup, menu, nav, summary {
	margin: 0;
	padding: 0;
	background: transparent;
	border: 0;
	outline: 0;
	box-sizing: border-box;
}
body, table, input, textarea, select, option {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
article, aside, canvas, details, figcaption, figure, footer, header, main, hgroup, menu, nav, section, summary {
	display: block;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
chrome_annotation {
	border: none !important;
}
:focus {
	outline: 0;
}
ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}
img {
	vertical-align: top;
	max-width: 100%;
	height: auto;
}
address {
	font-style: normal;
}
:root {
	--primary: #0A2540;
	--primary-light: #1A365D;
	--accent: #111987;
	--accent-hover: #3D449C;
	--text-dark: #2D3748;
	--text-light: #718096;
	--bg-light: #F7FAFC;
	--bg-white: #FFFFFF;
	--border-color: #E2E8F0;
	--container-width: 1200px;
}
/*------------------------------------------------------------
	レイアウト
------------------------------------------------------------*/
body {
	color: var(--text-dark);
	line-height: 1.6;
	text-size-adjust: none;
	-webkit-text-size-adjust: none;
	background-color: var(--bg-white);
}
.fixed {
	position: fixed;
	width: 100%;
}
#container {
	text-align: left;
}
a[href^="tel:"] {
	cursor: default;
	pointer-events: none;
}
@media all and (max-width: 896px) {
	a:hover,
	a:hover img {
		opacity: 1 !important;
	}
	.pc {
		display: none !important;
	}
	a[href^="tel:"] {
		cursor: pointer;
		pointer-events: auto;
	}
}
/*------------------------------------------------------------
	ヘッダー
------------------------------------------------------------*/
header {
	background: var(--bg-white);
	border-bottom: 1px solid var(--border-color);
	position: sticky;
	top: 0;
	z-index: 1000;
	height: 70px;
	display: flex;
	align-items: center;
}
.nav-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}
.logo {
	width: 170px;
	height: 29px;
}
nav ul {
	display: flex;
	list-style: none;
	gap: 30px;
}
nav a {
	text-decoration: none;
	color: var(--text-light);
	font-weight: 500;
	font-size: 0.95rem;
}
@media all and (min-width: 993px) {
	.menu {
		display: none;
	}
	nav a:hover {
		color: var(--primary);
	}
	.menu-box {
		display: block !important;
	}
}
@media all and (max-width: 992px) {
	.logo {
		position: fixed;
		left: 20px;
		top: 23px;
		z-index: 101;
	}
	.menu {
		position: fixed;
		top: 19px;
		right: 20px;
		width: 36px;
		height: 36px;
		cursor: pointer;
		z-index: 101;
		transition: all .3s ease;
	}
	.menu > div {
		margin: 0 auto;
		width: 100%;
		height: 30px;
		position: relative;
	}
	.menu span {
		background-color: #2b6cb0;
		border: none;
		height: 2px;
		width: 100%;
		position: absolute;
		top: 0;
		left: 0;
		-webkit-transition: all .35s ease;
		transition: all .35s ease;
		cursor: pointer;
	}
	.menu span:nth-of-type(2) {
		top: 15px;
	}
	.menu span:nth-of-type(3) {
		top: 30px;
	}
	.menu.on .top {
		-webkit-transform: translateY(15px) translateX(0) rotate(45deg);
		-ms-transform: translateY(15px) translateX(0) rotate(45deg);
		transform: translateY(15px) translateX(0) rotate(45deg);
	}
	.menu.on .middle {
		opacity: 0;
	}
	.menu.on .bottom {
		-webkit-transform: translateY(-15px) translateX(0) rotate(-45deg);
		-ms-transform: translateY(-15px) translateX(0) rotate(-45deg);
		transform: translateY(-15px) translateX(0) rotate(-45deg);
	}
	header .btn {
		display: none;
	}
	.menu-box {
		display: none;
		padding: 0 20px;
		position: fixed;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		overflow-y: auto;
		background-color: #fff;
		z-index: 90;
	}
	nav ul {
		display: block;
	}
	nav a {
		padding: 10px;
		display: block;
		margin: 0;
		font-size: 1.1rem;
		border-top: 1px solid #2b6cb0;
	}
	nav li:first-child {
		margin-top: 90px;
	}
	nav li:last-child {
		margin-bottom: 90px;
		border-bottom: 1px solid #2b6cb0;
	}
}
/*------------------------------------------------------------
	フッター
------------------------------------------------------------*/
#gFooter {}
@media all and (max-width: 896px) {}