@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP: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: '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: #262626;
	text-decoration: none;
}
a:visited {
	color: #262626;
}
a:hover {
	color: #262626;
	opacity: 0.7;
}
a:active {
	color: #262626;
}
/*------------------------------------------------------------
	レイアウト
------------------------------------------------------------*/
html,
body {
	height: 100%;
}
body {
	min-width: 1200px;
	color: #262626;
	font-size: 1.4rem;
	letter-spacing: 0.05em;
	line-height: 1.93;
	background-color: #F0F0F0;
}
#container {
	text-align: left;
	display: flex;
	flex-direction: column;
	height: 100%;
}
#main {
	overflow: hidden;
	flex: 1 0 auto;
}
/*------------------------------------------------------------
	ヘッダー
------------------------------------------------------------*/
#gHeader {
	margin-bottom: 25px;
	padding: 10px 0;
	background: #FFF;
	box-shadow: 0 0 10px rgba(0,0,0,0.16);
}
#gHeader .hBox {
	margin: 0 auto;
	max-width: 1476px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	min-height: 60px;
}
#gHeader h1 {
	width: 160px;
}
#gHeader h1 a {
	display: block;
	opacity: 1;
}
#gHeader .menu {
	display: block;
	width: 60px;
	height: 60px;
	position: relative;
	border-radius: 4px;
	background: #DA291C;
	cursor: pointer;
	z-index: 100;
}
#gHeader .menu:hover {
	opacity: 0.7;
}
#gHeader .menu span {
	width: 25px;
	height: 3px;
	position: absolute;
	top: 19px;
	left: 18px;
	cursor: pointer;
	border-radius: 2px;
	background: #FFF;
	transition: all .35s ease;
}
#gHeader .menu span:nth-of-type(2) {
	top: 29px;
}
#gHeader .menu span:nth-of-type(3) {
	top: 39px;
}
#gHeader .menu.on span:first-child {
	transform: translateY(10px) translateX(0) rotate(45deg);
}
#gHeader .menu.on span:nth-of-type(2) {
	opacity: 0;
}
#gHeader .menu.on span:nth-of-type(3) {
	transform: translateY(-10px) translateX(0) rotate(-45deg);
}
#gHeader2 {
    margin-bottom: 25px;
    padding: 10px 0;
    background: #1A94BB;
    box-shadow: 0 0 10px rgba(0,0,0,0.16);
}
#gHeader2 .hBox {
    margin: 0 auto;
    max-width: 1476px;
    min-height: 60px;
}
#gHeader2 h1 {
    font-size: 25px;
    font-weight: 600;
    color: #FFF;
    text-align: center;
}
/*------------------------------------------------------------
	フッター
------------------------------------------------------------*/
#gFooter {
	padding-top: 60px;
}
#gFooter .fBox {
	border-top: 1px solid #DBDBDB;
	background-color: #f0f0f0;
	padding-top: 20px;
	padding-bottom: 20px;
}
#gFooter * + .fBox {
	margin-top: 60px;
}
#gFooter .fBoxInner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 0 auto;
	max-width: 1476px;
}
#gFooter .fBox .list {
	display: flex;
	align-items: center;
	margin-bottom: 5px;
}
#gFooter .fBox .list > li {
	margin-right: 20px;
}
#gFooter .fBox .list a {
	text-decoration: underline;
	color: #DA291C;
	font-size: 1.4rem;
	font-weight: 700;
}
#gFooter .fBox .copy {
	font-size: 1.2rem;
	font-weight: 400;
}
#gFooter .fBox .pmark {
	max-width: 47px;
}
#gFooter .fBox .pmark img {
	width: 100%;
}
/* after */
#gFooter .comBtnUl:first-child {
	margin-top: 0;
}