@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&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%;
}
@media all and (max-width: 374px) {
	html {
		font-size: 57%;
	}
}
body, table, input, textarea, select, option {
	font-family: 'Noto Sans JP', 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: #1B1B1B;
	text-decoration: none;
}
a:visited {
	color: #1B1B1B;
}
a:hover {
	color: #1B1B1B;
}
a:active {
	color: #1B1B1B;
}
a, a img {
	-webkit-transition: .3s;
	transition: .3s;
}
/*------------------------------------------------------------
	レイアウト
------------------------------------------------------------*/
body {
	color: #1B1B1B;
	font-size: 1.6rem;
	line-height: 1.5;
	text-size-adjust: none;
	-webkit-text-size-adjust: none;
}
body.fixed {
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
}
p {
	line-height: 2;
}
a:hover,
a:hover img {
	opacity: 1 !important;
}
#container {
	text-align: left;
}
#main {
	padding-bottom: 60px;
	display: block;
}
.pc {
	display: none !important;
}
/*------------------------------------------------------------
	ヘッダー
------------------------------------------------------------*/
#gHeader {
	background-color: #fff;
}
#gHeader .hBox {
	padding-left: 14px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	box-sizing: border-box;
}
#gHeader .rightBox {
	flex: 1;
	display: flex;
	justify-content: flex-end;
}
#gHeader .mailBtn {
	margin-left: 60px;
	width: 60px;
}
#gHeader .naviUl {
	margin-top: 4px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex-wrap: wrap;
	font-family: 'Roboto', sans-serif;
	font-weight: bold;
}
#gHeader .naviUl li {
	margin-left: 48px;
}
#gHeader .logo {
	width: 145px;
}

/* menuBtn */
.menuBtn {
	padding-bottom: 3px;
	height: 60px;
	width: 60px;
	background-color: #0F95C1;
	display: flex;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	cursor: pointer;
}
.menu {
	height: 14px;
	width: 20px;
	z-index: 100;
	transition: opacity .25s ease;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
	position: relative;
}
.active .menu .top {
	-webkit-transform: translateY(7px) translateX(0) rotate(-45deg);
	-ms-transform: translateY(7px) translateX(0) rotate(-45deg);
	transform: translateY(7px) translateX(0) rotate(-45deg);
	background: #fff;
}
.active .menu .middle {
	opacity: 0;
	background: #fff;
}
.active .menu .bottom {
	-webkit-transform: translateY(-7px) translateX(0) rotate(45deg);
	-ms-transform: translateY(-7px) translateX(0) rotate(45deg);
	transform: translateY(-7px) translateX(0) rotate(45deg);
	background: #fff;
}
.menu span {
	background: #fff;
	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: 7px;
}
.menu span:nth-of-type(3) {
	top: 14px;
}

/* menuBox */
.menuBox {
	width: 100%;
	height: calc(100% - 60px);
	position: fixed;
	top: 60px;
	left: 0;
	overflow-y: auto;
	background-color: #0e95c2;
	z-index: 100;
	display: none;
}
.menuBox .naviUl {
	text-align: center;
	font-family: 'Roboto', sans-serif;
	font-weight: bold;
}
.menuBox .naviUl a {
	color: #fff;
	font-size: 2.4rem;
}
.menuBox .naviUl li {
	margin-bottom: 64px;
}
.menuBox .naviUl li:last-child {
	margin-bottom: 0;
}
.menuBox .innerBox {
	padding: 85px 10px 50px;
}

/*------------------------------------------------------------
	フッター
------------------------------------------------------------*/
#gFooter {
	padding: 21px 0 18px;
	text-align: center;
	background-color: #fff;
}
#gFooter .copyright {
	font-size: 1.4rem;
	font-style: normal;
	font-family: 'Roboto', sans-serif;
}
#gFooter .fLogo {
	margin-bottom: 10px;
}
#gFooter .fLogo img {
	width: 145px;
}