@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;
	font-size: 1em;
	box-sizing: border-box;
}
html {
	font-size: 62.5%;
}
@media all and (min-width: 897px) and (max-width: 1280px) {
	html {
		font-size: calc(1000vw / 1280);
	}
}
@media all and (max-width: 374px) {
	html {
		font-size: calc(1000vw / 375);
	}
}
body, table, input, textarea, select, option {
	font-family: "Noto Sans JP", 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;
}
a,
a:link {
	color: #231815;
	text-decoration: none;
	transition: 0.3s;
}
a:visited {
	color: #231815;
}
a:hover {
	color: #231815;
}
a:active {
	color: #231815;
}
/*------------------------------------------------------------
	レイアウト
------------------------------------------------------------*/
body {
	color: #231815;
	font-size: 2.1rem;
	line-height: 1.5;
	text-size-adjust: none;
	-webkit-text-size-adjust: none;
	background-color: #FFF;
}
.fixed {
	position: fixed;
	width: 100%;
}
#container {
	text-align: left;
	position: relative;
}
a[href^="tel:"] {
	cursor: default;
	pointer-events: none;
}
@media all and (min-width: 897px) {
	.sp {
		display: none !important;
	}
}
@media all and (max-width: 896px) {
	body {
		min-width: inherit;
		font-size: 1.4rem;
	}
	a:hover,
	a:hover img {
		opacity: 1 !important;
	}
	.pc {
		display: none !important;
	}
	a[href^="tel:"] {
		cursor: pointer;
		pointer-events: auto;
	}
}
/*------------------------------------------------------------
	ヘッダー
------------------------------------------------------------*/
#gHeader {
	width: 100%;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 999;
	display: flex;
	align-items: center;
	background-color: #003b82;
}
#gHeader .logo {
	width: 23.4rem;
}
#gHeader .logo a {
	display: block;
}
@media all and (max-width: 896px) {
	#gHeader {
		padding: 0;
		justify-content: space-between;
	}
	#gHeader .logo {
		padding: 0.7rem 1.1rem;
		width: 12.5rem;
		position: relative;
		z-index: 1000;
		box-sizing: content-box;
		background-color: #fff;
	}
	#gHeader {
		background-color: transparent;
	}
}
/*------------------------------------------------------------
	menu
------------------------------------------------------------*/
.menu {
	width: 6rem;
	height: 6rem;
	position: absolute;
	right: 1.2rem;
	top: 1rem;
	z-index: 1000;
	cursor: pointer;
	border-radius: 100%;
	background-color: #003b82;
}
.menu span {
	width: 2.9rem;
	height: 1.5px;
	display: block;
	transition: rotate 0.4s;
	box-sizing: border-box;
	position: absolute;
	left: 1.5rem;
	background-color: #fff;
}
.menu span:nth-of-type(1) {
	top: 2.3rem;
}
.menu span:nth-of-type(2) {
	top: 2.9rem;
}
.menu span:nth-of-type(3) {
	top: 3.5rem;
}
.menu.on span {
	width: 3.9rem;
	left: 50% !important;
	top: 50% !important;
}
.menu.on span:nth-of-type(1) {
	transform: translate(-50%,-50%) rotate(-45deg);
}
.menu.on span:nth-of-type(2) {
	opacity: 0;
}
.menu.on span:nth-of-type(3) {
	transform: translate(-50%,-50%) rotate(45deg);
}
/*------------------------------------------------------------
	gNavi
------------------------------------------------------------*/
#gNavi {
	flex: 1;
}
#gNavi .navUl {
	padding: 0 1.2rem;
	display: flex;
	justify-content: flex-end;
}
#gNavi .navUl > li {
	padding: 0 5.6rem;
	height: 8.7rem;
	position: relative;
	cursor: pointer;
	display: flex;
	align-items: center;
}
#gNavi .navUl > li::before {
	width: 1px;
	content: "";
	position: absolute;
	top: 1.8rem;
	bottom: 1.8rem;
	left: 0;
	background-color: #ffffff;
}
#gNavi .navUl > li:first-child::before {
	display: none;
}
#gNavi .navUl > li:first-child {
	padding-left: 0;
}
#gNavi .navUl > li.on .linkItem::after {
	transform: translateY(-50%) scaleY(-1);
}
#gNavi .navUl .linkItem {
	padding: 0 3.5rem 0 0;
	display: flex;
	width: fit-content;
	position: relative;
	font-size: 2.1rem;
	font-weight: 500;
	color: #fff;
}
#gNavi .navUl .linkItem::after {
	width: 2.5rem;
	height: 2.5rem;
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	background: url(../img/common/arrow01.png) no-repeat center right / 100%;
	transition: transform 0.3s;
}
#gNavi .navUl .subList {
	width: max-content;
	position: absolute;
	left: 0;
	top: 100%;
	background-color: #eaf5fc;
	display: none;
}
#gNavi .navUl .subList a {
	padding: 1.5rem 3.2rem 1.4rem 2.6rem;
	display: block;
	color: #595757;
	font-size: 2.1rem;
	font-weight: 500;
	background-color: #eaf5fc;
	border-bottom: 1px solid #c9caca;
}
@media all and (min-width: 897px) {
	#gNavi .navUl .subList a:hover {
		opacity: 0.7;
	}
	#gNavi {
		display: block !important;
	}
	#gNavi .navUl .subList01 {
		width: 29.3rem;
	}
	#gNavi .navUl .subList01 a {
		padding-right: 0.7rem;
	}
}
@media all and (max-width: 896px) {
	#gNavi {
		padding: 7.4rem 0;
		width: 100%;
		height: 100%;
		display: none;
		position: fixed;
		right: 0;
		top: 0;
		z-index: 999;
		overflow-y: auto;
		box-sizing: border-box;
		background: #fff;
	}
	#gNavi .navUl {
		padding: 0 1.4rem;
		display: block;
	}
	#gNavi .navUl > li {
		padding: 0 0 0.5rem;
		height: auto;
		display: block;
	}
	#gNavi .navUl > li:last-child {
		padding-bottom: 0;
	}
	#gNavi .navUl > li::before {
		display: none;
	}
	#gNavi .navUl .linkItem {
		padding: 0 0 0.3rem 1.7rem;
		width: 100%;
		font-size: 1.75rem;
		color: #595757;
		display: block;
		width: 100%;
		border-bottom: 1px solid #003b82;
	}
	#gNavi .navUl .linkItem::after {
		display: none;
	}
	#gNavi .navUl .linkItem::before {
		width: 1.1rem;
		height: 1.1rem;
		content: "";
		position: absolute;
		left: 0;
		top: 0.8rem;
		background-color: #003b82;
	}
	#gNavi .navUl > li > a.linkItem {
		border-bottom: none;
	}
	#gNavi .navUl .subList {
		margin-bottom: 1rem;
		padding: 0.6rem 2.2rem;
		width: 100%;
		position: inherit;
		left: auto;
		top: auto;
		background-color: transparent;
		border-left: 1px solid #9fa0a0;
		display: block;
	}
	#gNavi .navUl .subList li {
		margin: 0 1rem 0.6rem 0;
		width: calc(50% - 1rem);
		display: inline-block;
	}
	#gNavi .navUl .subList li:nth-child(2n) {
		margin-right: 0;
	}
	#gNavi .navUl .subList a {
		padding: 0 0 0 1.4rem;
		font-size: 1.15rem;
		background-color: transparent;
		border-bottom: none;
		position: relative;
	}
	#gNavi .navUl .subList a::before {
		width: 0.6rem;
		height: 1px;
		content: "";
		position: absolute;
		left: 0;
		top: 0.9rem;
		background-color: #003b82;
	}
}
/*------------------------------------------------------------
	フッター
------------------------------------------------------------*/
#gFooter {
	padding: 3.3rem;
}
#gFooter .logo {
	margin: 0 auto;
	width: 40.2rem;
}
#gFooter .logo a {
	display: block;
}
@media all and (max-width: 896px) {
	#gFooter {
		padding: 2rem;
	}
	#gFooter .logo {
		width: 23rem;
	}
}