@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap');
/*------------------------------------------------------------
	デフォルトスタイル
------------------------------------------------------------*/
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 {
	margin: 0;
	padding: 0;
	background: transparent;
	border: 0;
	outline: 0;
	font-size: 1em;
}
html {
	font-size: 62.5%;
}
body, table, input, textarea, select, option {
	font-family:"游ゴシック体", "Yu Gothic", YuGothic, 'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;
}
article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
	display: block;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
:focus {
	outline: 0;
}
ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}
img {
	vertical-align: top;
	max-width: 100%;
    height: auto;
}
a,
a:link {
	color: #333;
	text-decoration: none;
	transition: .3s;
}
a:visited {
	color: #333;
}
a:hover {
	color: #333;
}
a:active {
	color: #333;
}
/*------------------------------------------------------------
	レイアウト
------------------------------------------------------------*/
body {
	min-width: 1300px;
	color: #333;
	font-weight: 500;
	font-size: 1.6rem;
	line-height: 1.5;
	text-size-adjust: none;
	-webkit-text-size-adjust: none;
	background-color: #FFF;
}
#container {
	position: relative;
	text-align: left;
}
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.3rem;
	}
	body.fixed {
		position: fixed;
		width: 100%;
		height: 100%;
	}
	a:hover,
	a:hover img {
		opacity: 1 !important;
	}
	.pc {
		display: none !important;
	}
	a[href^="tel:"] {
		cursor: pointer;
		pointer-events: auto;
	}
}
/*------------------------------------------------------------
	ヘッダー
------------------------------------------------------------*/
#gHeader {
	height: 150px;
	position: relative;
	padding: 40px 42px;
	box-sizing: border-box;
	background-color: #fff;
	z-index: 2;
}
#gHeader .hLink {
	width: 250px;
	position: absolute;
	right: 30px;
	top: 40px;
}
#gHeader .hLink a {
	height: 60px;
	padding-bottom: 4px;
	color: #fff;
	font-weight: bold;
	font-size: 2rem;
	display: flex;
	font-weight: 500;
	align-items: center;
	justify-content: center;
	text-align: center;
	background-image:linear-gradient( to right, #00468c 25%, #0085B2 100%);
	box-sizing: border-box;
	border-radius: 5rem;
}
#gHeader .hLink a:hover {
	opacity: 0.7;
}
#gNavi {
	position: absolute;
	right: 311px;
	top: 58px;
	text-align: right;
}
#gNavi > ul > li {
	margin-left: 28px;
	position: relative;
	display: inline-block;
}
#gNavi > ul > li > a {
	display: block;
	font-weight: bold;
	font-size: 1.8rem;
}
#gNavi > ul > li > a:hover {
	opacity: 0.7;
}
@media all and (min-width: 897px) {
	.menuBox {
		display: none !important;
	}
}
@media all and (max-width: 896px) {
	#gHeader {
		height: auto;
		padding: 10px 15px;
		position: relative;
		z-index: 99;
	}
	#gHeader h1 {
		width: 80px;
	}
	#gHeader .hLink {
		display: none;
	}
	#gHeader .hButton {
		display: none;
	}
	#gNavi {
		display: none;
	}
	.menu {
		position: absolute;
		right: 8px;
		top: 6px;
		width: 40px;
		height: 40px;
	}
	.menu span {
		display: inline-block;
		transition: all .4s;
		box-sizing: border-box;
        position: absolute;
		right: 5px;
		width: 28px;
		height: 2px;
		background-color: #242C3F;
	}
	.menu span:nth-of-type(1) {
		top: 14px;
	}
	.menu span:nth-of-type(2) {
		top: 24px;
	}
	.menu span:nth-of-type(3) {
		top: 34px;
	}
	.menu.on span:nth-of-type(1) {
		-webkit-transform: translateY(10px) rotate(-45deg);
		transform: translateY(10px) rotate(-45deg);
	}
	.menu.on span:nth-of-type(2) {
		opacity: 0;
	}
	.menu.on span:nth-of-type(3) {
		-webkit-transform: translateY(-10px) rotate(45deg);
		transform: translateY(-10px) rotate(45deg);
	}
	.menuBox {
		display: none;
		position: fixed;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		overflow-y: auto;
		box-sizing: border-box;
		z-index: 98;
		background: rgba(255,255,255,1);
	}
	.menuInner {
		padding: 60px 0;
	}
	.menuBox .menuUl li a {
		padding: 10px 35px;
		color: #fff;
		display: block;
		font-weight: bold;
		position: relative;
		font-size: 1.5rem;
		background-color: #283D79;
		border-bottom: 1px solid #fff;
	}
	.menuBox .menuUl a::before {
		content: '';
		position: absolute;
		width: 8px;
		height: 1px;
		background: #283D79;
		top: 50%;
		left: 16px;
		transition: all .3s;
	}
	.menuBox .menuUl > li > a:before {
		left: 8px;
		background: #fff;
	}
	.menuLink a {
		padding: 20px 0;
		display: block;
		text-align: center;
		font-weight: bold;
		font-size: 1.7rem;
		color: #fff;
		background-image:linear-gradient( to right, #00468c 0%, #0085B2 100%);
	}
}

/*------------------------------------------------------------
	フッター
------------------------------------------------------------*/
#gFooter {
	padding-top: 80px;
	position: relative;
	z-index: 1;
	background-color: #F5F5F5;
}
#gFooter .fBox {
	width: 1200px;
	margin: 0 auto 78px;
}
#gFooter .fInfo {
	float: left;
	width: 300px;
}
#gFooter .fLogo {
	margin-bottom: 16px;
}
#gFooter .fTxt {
	margin-bottom: 25px;
	font-weight: bold;
	font-size: 1.8rem;
}
#gFooter .fText {
	font-weight: bold;
}
#gFooter .fText span {
	margin-bottom: 6px;
	display: block;
}
#gFooter .fNavi {
	margin: 9px 10px 0 0;
	float: right;
	width: 790px;
	text-align: right;
}
#gFooter .fNavi li {
	margin-right: 46px;
	font-size: 1.8rem;
	font-weight: bold;
	display: inline-block;
}
#gFooter .fNavi li:last-child {
	margin-right: 0;
}
#gFooter .fNavi li a {
	padding-left: 22px;
	background: url("../../img/common/icon04.png") no-repeat left center;
	display: inline-block;
}
#gFooter .fNavi li a:hover {
	opacity: 0.7;
}
#gFooter .copyright {
	padding: 19px 0 20px;
	text-align: center;
	font-size: 1.4rem;
	color: #fff;
	font-weight: bold;
	background-color: #1D2022;
}

@media all and (max-width: 896px) {
	#gFooter {
		padding-top: 30px;
	}
	#gFooter .fBox {
		width: auto;
		margin: 0 auto 20px;
	}
	#gFooter .fInfo {
		float: none;
		width: auto;
	}
	#gFooter .fLogo {
		width: 90px;
		margin: 0 auto 10px;
	}
	#gFooter .fTxt {
		margin-bottom: 10px;
		font-size: 1.5rem;
		text-align: center;
	}
	#gFooter .fText {
		text-align: center;
	}
	#gFooter .fText span {
		margin-bottom: 2px;
	}
	#gFooter .fNavi {
		margin: 20px 0 0;
		float: none;
		width: auto;
		text-align: left;
		border-top: 1px solid #000;
	}
	#gFooter .fNavi li {
		margin-right: 0;
		font-size: 1.5rem;
		display: block;
	}
	#gFooter .fNavi li a {	
		display: block;
		padding: 10px 16px;
		border-bottom: 1px solid #000;
		background-position: left 5px center;
		background-size: 5px auto;
	}
	#gFooter .copyright {
		padding: 10px 0;
		font-size: 1.2rem;
	}
}