@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 {
	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: 'Zen Kaku Gothic New', sans-serif;
}
article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
	display: block;
}
ol, ul {
	list-style: none;
	box-sizing: border-box;
}
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: #000;
	text-decoration: none;
}
a:visited {
	color: #000;
}
a:hover {
	color: #000;
}
a:active {
	color: #000;
}
/*------------------------------------------------------------
	レイアウト
------------------------------------------------------------*/
body {
	color: #000;
	font-size: 2rem;
	line-height: 1.5;
	text-size-adjust: none;
	-webkit-text-size-adjust: none;
	background-color: #FFF;
	font-feature-settings: "palt";
}
.fixed {
	position: fixed;
	width: 100%;
	height: 100%;
}
#container {
	padding-top: 120px;
	position: relative;
	text-align: left;
}
#main {
	display: block;
}
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.5rem;
	}
	#container {
		padding-top: 50px;
	}
	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: 77;
	background-color: #00a0e9;
}
#gHeader .hBox {
	padding: 23px 30px 22px 38px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
#gHeader .logo {
	width: 187px;
}
#gNavi {
	margin-top: 7px;
}
#gNavi .hLinkList {
	display: flex;
}
#gNavi .hLinkList a {
	padding: 0 13px;
	position: relative;
	display: block;
	color: #fff;
	font-size: 2rem;
	line-height: 1.75;
	font-family: Meiryo, "小塚ゴシック Pr6N", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", sans-serif;
}
#gNavi .hLinkList li:last-of-type a::after {
	display: none;
}
#gNavi .hLinkList a::after {
	width: 1px;
	height: calc(100% - 15px);
	position: absolute;
	right: 0;
	top: calc(50% - 2px);
	transform: translateY(-50%);
	background-color: #fff;
	content: '';
}
@media (min-width: 897px) and (max-width: 1350px) {
	#gNavi .hLinkList a {
		font-size: 1.8rem;
	}
}
@media (min-width: 897px) and (max-width: 1250px) {
	#gNavi .hLinkList a {
		font-size: 1.5rem;
	}
}
@media (min-width: 897px) and (max-width: 1150px) {
	#gHeader .hBox {
		padding: 23px 20px 22px;
	}
	#gNavi .hLinkList a {
		font-size: 1.4rem;
	}
}
@media (min-width: 897px) and (max-width: 1050px) {
	#container {
		padding-top: 105px;
	}
	#gHeader .logo {
		width: 150px;
	}
	#gNavi .hLinkList a {
		padding: 0 8px;
		font-size: 1.4rem;
	}
	#gNavi .hLinkList a::after {
		height: calc(100% - 8px);
	}
}
@media (min-width: 897px) and (max-width: 950px) {
	#gNavi .hLinkList a {
		font-size: 1.3rem;
	}
}
@media all and (min-width: 897px) {
	#gNavi .hLinkList a:hover {
		opacity: 0.7;
	}
}
@media all and (max-width: 896px) {
	#gHeader .hBox {
		padding: 12px 11px 7px;
		display: block;
	}
	#gHeader .logo {
		width: 78px;
	}
	#gNavi {
		display: none;
	}
	.menu {
		width: 30px;
		height: 30px;
		position: fixed;
		right: 10px;
		top: 10px;
		background-color: #fff;
		z-index: 999;
		transition: .3s;
		cursor: pointer;
	}
	.menu.on {
		background-color: transparent;
	}
	.menu .line {
		width: 15px;
		height: 1px;
		position: absolute;
		left: calc(50% - 7px);
		top: 9px;
		background-color: #00a0e9;
		transition: .3s;
	}
	.menu.on .line {
		transform: translateY(6px) rotate(45deg);
		background-color: #fff;
	}
	.menu .line:nth-of-type(2) {
		top: 15px;
	}
	.menu.on .line:nth-of-type(2) {
		opacity: 0;
	}
	.menu .line:nth-of-type(3) {
		top: 21px;
	}
	.menu.on .line:nth-of-type(3) {
		transform: translateY(-6px) rotate(-45deg);
	}
	.menuBox {
		padding: 66px 0 40px 35px;
		width: 251px;
		height: 100vh;
		position: fixed;
		right: 0;
		top: 0;
		box-sizing: border-box;
		background-color: rgba(77,77,77,0.9);
		z-index: 888;
		overflow-y: auto;
		display: none;
	}
	.menuBox .linkList .link {
		margin-bottom: 5px;
	}
	.menuBox .linkList .link a {
		padding-bottom: 7px;
		display: block;
		color: #fff;
		font-size: 1.4rem;
		font-weight: 700;
		letter-spacing: -0.04em;
		border-bottom: 1px solid #fff;
	}
	.menuBox .linkList .link.link01 {
		margin-bottom: 0;
	}
	.menuBox .linkList .link.link01 a {
		padding-bottom: 0;
		border-bottom: none;
	}
	.menuBox .linkList .subList {
		margin-bottom: 12px;
	}
	.menuBox .linkList .subList li {
		line-height: 1.33;
	}
	.menuBox .linkList .subList a {
		display: inline-block;
		color: #fff;
		font-size: 1.4rem;
		vertical-align: top;
	}
	.menuBox .linkList {
		margin-bottom: 15px;
	}
	.menuBox .btnList {
		margin-bottom: 21px;
	}
	.menuBox .btnList li:not(:last-of-type) {
		margin-bottom: 19px;
	}
	.menuBox .btnList a {
		padding: 2px 15px 6px;
		display: block;
		font-size: 1.8rem;
		font-weight: 700;
		background-color: #fff;
	}
	.menuBox .btnList .list01 a {
		padding: 6px 12px;
		font-size: 1.6rem;
		letter-spacing: -0.04em;
	}
	.menuBox .btmlist {
		margin-bottom: 18px;
	}
	.menuBox .btmlist a {
		display: inline-block;
		color: #fff;
		font-size: 1.2rem;
		letter-spacing: -0.07em;
		vertical-align: top;
	}
}
@media (max-height: 500px) and (max-width: 896px) {
	.menuBox {
		padding-bottom: 100px;
	}
	.menuBox .btmList {
		margin-bottom: 180px;
	}
}
/*------------------------------------------------------------
	フッター
------------------------------------------------------------*/
#gFooter {
	padding: 43px 0 30px;
	background-color: #00a0e9;
}
#gFooter .fBox {
	margin: 0 auto;
	padding: 0 20px;
	max-width: 1140px;
}
#gFooter .tBox {
	margin-bottom: 36px;
	display: flex;
	justify-content: space-between;
}
#gFooter .tBox .newBox {
	padding-right: 61px;
	width: 39.82%;
	position: relative;
	box-sizing: border-box;
}
#gFooter .tBox .newBox::after {
	width: 1px;
	height: calc(100% - 13px);
	position: absolute;
	right: 0;
	top: 0;
	background-color: #fff;
	content: '';
}
#gFooter .tBox .newBox h2 {
	margin-bottom: 11px;
	padding-bottom: 10px;
	color: #fff;
	font-weight: 700;
	letter-spacing: -0.05em;
	border-bottom: 1px solid #fff;
}
#gFooter .tBox .newBox .newsList li {
	margin-bottom: 13px;
}
#gFooter .tBox .newBox .newsList a {
	padding-bottom: 10px;
	min-height: 93px;
	display: block;
	color: #fff;
	box-sizing: border-box;
	border-bottom: 1px solid #fff;
}
#gFooter .tBox .newBox .newsList .time {
	margin-bottom: 3px;
	font-size: 1.4rem;
	font-weight: 700;
}
#gFooter .tBox .newBox .newsList .txt {
	font-size: 1.6rem;
	letter-spacing: -0.09em;
}
#gFooter .tBox .fNavi {
	margin: 2px 3px 0 0;
	width: 55.44%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
#gFooter .tBox .fNavi > li {
	width: 45.41%;
}
#gFooter .tBox .fNavi .link {
	margin-bottom: 10px;
}
#gFooter .tBox .fNavi .link a {
	padding-bottom: 11px;
	display: block;
	color: #fff;
	font-size: 1.6rem;
	font-weight: 700;
	letter-spacing: -0.05em;
	border-bottom: 1px solid #fff;
}
#gFooter .tBox .fNavi .subList {
	margin-bottom: 24px;
}
#gFooter .tBox .fNavi .subList li {
	line-height: 1.2;
}
#gFooter .tBox .fNavi .subList a {
	display: inline-block;
	color: #fff;
	font-size: 1.6rem;
	vertical-align: top;
}
#gFooter .tBox .fNavi .linkList {
	margin-top: 26px;
}
#gFooter .tBox .fNavi .linkList li:not(:last-of-type) {
	margin-bottom: 20px;
}
#gFooter .tBox .fNavi .linkList a {
	display: inline-block;
	color: #fff;
	font-size: 1.6rem;
	font-weight: 700;
	vertical-align: top;
}
#gFooter .cenBox {
	margin-bottom: 30px;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
#gFooter .cenBox .lBox {
	width: 39.82%;
	display: flex;
	justify-content: space-between;
}
#gFooter .cenBox .logo {
	margin-top: -2px;
	width: 35.46%;
}
#gFooter .cenBox .txtBox {
	width: 58.2%;
}
#gFooter .cenBox .txtBox .ttl {
	margin-bottom: 2px;
	color: #fff;
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.56;
}
#gFooter .cenBox .txtBox .txt {
	color: #fff;
	font-size: 1.6rem;
	line-height: 1.31;
}
#gFooter .cenBox .txtList {
	margin-top: -6px;
	width: 56%;
	max-width: 519px;
	display: flex;
	box-sizing: border-box;
	border: 1px solid #fff;
}
#gFooter .cenBox .txtList li {
	padding: 13px 10px 15px;
	width: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 1.6rem;
	line-height: 1.25;
	text-align: center;
	border-right: 1px solid #fff;
	box-sizing: border-box;
}
#gFooter .cenBox .txtList li:nth-of-type(2n) {
	border-right: none;
}
#gFooter .btmBox {
	display: flex;
	justify-content: space-between;
}
#gFooter .btmBox .fLinkUl {
	width: 34.65%;
	display: flex;
	flex-wrap: wrap;
}
#gFooter .btmBox .fLinkUl a {
	display: block;
	color: #fff;
	font-size: 1.4rem;
}
#gFooter .btmBox .copyright {
	max-width: 60.44%;
	color: #fff;
	font-style: normal;
	font-size: 1.4rem;
	letter-spacing: -0.017em;
}
@media (min-width: 897px) and (max-width: 1050px) {
	#gFooter .cenBox .txtBox .ttl {
		font-size: 1.4rem;
	}
	#gFooter .cenBox .txtBox .txt {
		font-size: 1.3rem;
	}
	#gFooter .cenBox .txtList li {
		font-size: 1.5rem;
	}
}
@media all and (min-width: 897px) {
	#gFooter .tBox .newBox .newsList a:hover {
		opacity: 0.7;
	}
	#gFooter .tBox .fNavi a:hover {
		opacity: 0.7;
	}
	#gFooter .btmBox .fLinkUl a:hover {
		opacity: 0.7;
	}
}
@media all and (max-width: 896px) {
	#gFooter {
		padding: 20px 0 78px;
	}
	#gFooter .fBox {
		max-width: inherit;
	}
	#gFooter .tBox {
		margin-bottom: 39px;
		display: block;
	}
	#gFooter .tBox .newBox {
		padding-right: 0;
		width: auto;
	}
	#gFooter .tBox .newBox::after {
		display: none;
	}
	#gFooter .tBox .newBox h2 {
		margin-bottom: 0;
		padding-bottom: 8px;
	}
	#gFooter .tBox .newBox .newsList li {
		margin-bottom: 0;
	}
	#gFooter .tBox .newBox .newsList a {
		padding: 9px 0 10px;
		min-height: 90px;
	}
	#gFooter .tBox .newBox .newsList .time {
		margin-bottom: 3px;
		font-size: 1.2rem;
	}
	#gFooter .tBox .newBox .newsList .txt {
		font-size: 1.4rem;
		line-height: 1.43;
		letter-spacing: -0.09em;
	}
	#gFooter .tBox .fNavi {
		display: none;
	}
	#gFooter .cenBox {
		margin-bottom: 25px;
		display: block;
	}
	#gFooter .cenBox .lBox {
		margin-bottom: 15px;
		width: auto;
		display: block;
	}
	#gFooter .cenBox .logo {
		margin: 0 auto 28px;
		width: 157px;
	}
	#gFooter .cenBox .txtBox {
		width: auto;
	}
	#gFooter .cenBox .txtBox .txt {
		margin-right: -5px;
		font-size: 1.3rem;
		line-height: 1.31;
		letter-spacing: -0.05em;
		text-align: center;
	}
	#gFooter .cenBox .txtList {
		margin-top: 0;
		padding: 0 15px;
		width: auto;
		max-width: inherit;
		display: block;
	}
	#gFooter .cenBox .txtList li {
		padding: 19px 10px 12px;
		width: auto;
		display: block;
		color: #fff;
		font-size: 1.4rem;
		line-height: 1.25;
		text-align: center;
		border-right: none;
		border-bottom: 1px solid #fff;
		box-sizing: border-box;
	}
	#gFooter .cenBox .txtList li:last-of-type {
		border-bottom: none;
	}
	#gFooter .cenBox .txtList li:nth-of-type(2n) {
		border-right: none;
	}
	#gFooter .btmBox {
		display: block;
	}
	#gFooter .btmBox .fLinkUl {
		display: none;
	}
	#gFooter .btmBox .btmText {
		margin-bottom: 13px;
		color: #fff;
		font-size: 1.2rem;
		line-height: 1.42;
		text-align: center;
	}
	#gFooter .btmBox .copyright {
		max-width: inherit;
		display: block;
		font-size: 1.2rem;
		text-align: center;
	}
}
@media all and (max-width: 374px) {
	#gFooter .cenBox .txtList li {
		padding: 19px 0 12px;
	}
	#gFooter .cenBox .txtBox .txt {
		font-size: 1.1rem;
	}
}