@charset "UTF-8";
/* ================================================================
setUp
================================================================ */
/* reset
--------------- */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p,
em, small, strong,
sub, sup, mark, del, ins, strike, b, i,
abbr, dfn, blockquote, q, cite, pre,
code, var, samp, kbd,
header, hgroup, footer,
section, article, main, aside, nav, menu,
ul, ol, li, dl, dt, dd,
address, time,
details, summary,
audio, video, canvas,
img, figure, figcaption,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	padding: 0;
	margin: 0;
	border: 0;
	outline: 0;
	background: transparent;
	vertical-align: baseline;
	}

a {
	padding: 0;
	margin: 0;
	border: 0;
	background: transparent;
	vertical-align: baseline;
	-webkit-text-decoration-skip: objects;
	}

audio,
canvas,
progress,
video {
	display: inline-block;
	}


/* setting
--------------- */
html { font-size: 62.5%; }

body {
	font-size: 1.6rem;
	line-height: 1;
	}

* {
	box-sizing: border-box;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	}

*::before,
*::after {
	box-sizing: inherit;
	}

header, hgroup, footer,
section, article, main, aside, nav {
	display: block;
	}

h1, h2, h3, h4, h5, h6 {
	font-weight: normal;
	}

ul, ol {
	list-style: none outside none;
	}

caption, th, td,
address, cite, code, dfn, em, strong, var {
	font-style: normal;
	font-weight: normal;
	}

table {
	border-collapse: collapse;
	border-spacing: 0;
	}

img {
	font-size: 0;
	line-height: 0;
	vertical-align: bottom;
	}

ins { text-decoration: none; }

del { text-decoration: line-through; }

blockquote, q { quotes: none; }

blockquote::before,
blockquote::after,
q::before,
q::after {
	content: '';
	content: none;
	}

input,
select {
	vertical-align: middle;
	}

input,
button,
select {
	outline: 0;
	}

input::-moz-focus-inner,
button::-moz-focus-inner {
	border: 0;
	}

[hidden] {
	display: none;
	}


/* SP ------------------------------ */
@media screen and (max-width: 767px) {

body {
	-webkit-text-size-adjust: 100%;
	}

button,
html [type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: button;
	}

} /* end SP */


/* ================================================================
baseCord
================================================================ */
body {
	background-color: #024b9e;
	color: #222;
	font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",Verdana,"メイリオ",Meiryo,Osaka,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
	}
.body_wrap {
	background-color: #f0f6fb;
	}

/* PC ------------------------------ */
@media screen and (min-width: 768px) {

body {
	min-width: 1200px;
	}

} /* end PC */
/* SP ------------------------------ */
@media screen and (max-width: 767px) {

body.fixed { /* メニューOPEN時の背景固定 */
	position: fixed;
	width: 100%;
	height: 100%;
	}

} /* end SP */


/* ====================================
header
==================================== */
#header {
	width: 100%;
	}
#header .tel_link a {
	color: #024b9e;
	}

/* PC ------------------------------ */
@media screen and (min-width: 768px) {

#header {
	background-color: #fff;
	}
#header .inner {
	width: 1200px;
	padding: 24px 0;
	margin: 0 auto;
	overflow: hidden;
	}
#header .logo {
	float: left;
	}
#header .logo img {
	width: 332px;
	}
#header .logo a:hover img {
	opacity: 0.6;
	}
#header .location {
	float: right;
	}
#header .address {
	padding: 6px 0 5px;
	font-size: 1.3rem;
	text-align: right;
	}
#header .address span {
	margin-right: 9px;
	font-size: 1.1rem;
	}
#header .tel {
	font-size: 1.3rem;
	font-weight: bold;
	text-align: right;
	}
#header .tel::before {
	width: 12px;
	height: 16px;
	margin-right: 6px;
	display: inline-block;
	background: url(../img/icn_tel.png) no-repeat 0 0;
	background-size: auto 15px;
	content: "";
	}
#header #ham_trg {
	display: none;
	}
#gnav {
	width: 100%;
	background-color: #fff;
	border-top: 1px solid #dedede;
	border-bottom: 3px solid #dedede;
	}
#gnav ul {
	width: 1200px;
	padding: 10px 0;
	margin: 0 auto;
	display: flex;
	}
#gnav li {
	width: 20%;
	}
#gnav li a {
	padding: 10px 0;
	display: block;
	border-left: 1px solid #dedede;
	color: #222;
	font-size: 1.4rem;
	font-weight: bold;
	letter-spacing: 0.1rem;
	text-decoration: none;
	text-align: center;
	}
#gnav li:last-of-type a {
	border-right: 1px solid #dedede;
	}
#gnav li a:hover {
	color: #63a2d3;
	}
#gnav .sp {
	display: none;
	}

} /* end PC */
/* 1200px以下 ----------------------- */
@media screen and (min-width:768px) and (max-width:1200px) {

#header .inner {
	padding-left: 1.5%;
	padding-right: 1.5%;
	}

} /* end 1200px以下 */
/* SP ------------------------------ */
@media screen and (max-width: 767px) {

#header {
	position: fixed;
	top: 0;
	z-index: 100;
	}
#header.open {
	height: 100%;
	}
#header.open::before { /* メニューOPEN時の後ろ背景 */
	content: '';
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	background-color: rgb(0,0,0,0.6);
	z-index: 10;
	}
#header .inner {
	width: 100%;
	height: 60px;
	z-index: 30;
	position: relative;
	background-color: #fff;
	}
#header .logo {
	padding: 14px 0 0 14px;
	}
#header .logo img {
	height: 32px;
	}
#header .location {
	display: none;
	}

/* hamburger_toggle */
#ham_trg {
	width: 30px;
	height: 30px;
	display: block;
	position: absolute;
	top: 18px;
	right: 15px;
	cursor: pointer;
	}
#ham_trg span {
	width: 100%;
	height: 2px;
	display: block;
	position: absolute;
	left: 0;
	background-color: #056ab8;
	}
#ham_trg span:nth-child(1) { top: 0; }
#ham_trg span:nth-child(2) { top: 10px; }
#ham_trg span:nth-child(3) { top: 20px; }
#header.open span {
	-webkit-transition: 0.4s ease-in-out;
	-moz-transition: 0.4s ease-in-out;
	-ms-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
	}
#header.open #ham_trg span:nth-child(1) {
	top: 10px;
	-webkit-transform: rotate(315deg);
	-moz-transform: rotate(315deg);
	transform: rotate(315deg);
	}
#header.open #ham_trg span:nth-child(2) {
	width: 0;
	left: 50%;
	}
#header.open #ham_trg span:nth-child(3) {
	top: 10px;
	-webkit-transform: rotate(-315deg);
	-moz-transform: rotate(-315deg);
	transform: rotate(-315deg);
	}

/* gnav */
#gnav {
	width: 100%;
	height: 100%;
	padding-bottom: 60px;　/* 固定ヘッダーの高さ分追加（下部が隠れてしまう対策） */
	display: flex;
	flex-direction: column;
	overflow-y: scroll;
	z-index: 20;
	position: absolute;
	top: -500px; /* メニューの初期位置 */
	}
#header.open #gnav {
	top: 60px;
	transition: 0.4s;
	}
#gnav ul {
	background-color: #fff;
	}
#gnav li {
	border-top: 1px solid #dedede;
	}
#gnav ul.sp li:nth-child(6) {
  display: none;
	}
#gnav li span {
	color: #666;
	}
#gnav li a,
#gnav li span {
	padding: 12px 21px;
	display: block;
	position: relative;
	color: #024b9e;
	font-size: 1.3rem;
	text-decoration: none;
	}
#gnav li a::before,
#gnav li span::before {
	width: 0;
	height: 18px;
	margin: auto;
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 9px;
	border-left: 3px solid #b4d2ea;
	content: "";
	}
#gnav li a::after {
	width: 0;
	height: 0;
	margin-left: 11px;
	display: inline-block;
	border-style: solid;
	border-width: 5px 0 5px 6px;
	border-color: transparent transparent transparent #b4d2ea;
	content: "";
	}
#gnav li li a {
	padding-left: 33px;
	}
#gnav li li a::before {
	content: none;
	}
#gnav .pc {
	display: none;
	}

} /* end SP */


/* ====================================
main
==================================== */
/* link */
#content a:link { color: #024b9e; text-decoration: underline; }
#content a:visited { color: #024b9e; text-decoration: underline; }
#content a:hover { text-decoration: none; }
#content a:active { text-decoration: underline; }

/* sidenav */
#sidenav h1 {
	padding: 25px 15px;
	background-color: #b4d2ea;
	color: #024b9e;
	font-size: 1.6rem;
	}
#sidenav li:not(:last-of-type) {
	border-bottom: 1px solid #c3dbee;
	}
#sidenav li a {
	padding: 22px 15px;
	display: block;
	position: relative;
	background-color: #fff;
	color: #024b9e;
	font-size: 1.4rem;
	text-decoration: none;
	}
#sidenav li a::after {
	margin: auto;
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 15px;
	background: url(../img/sidenav_icn.png) no-repeat 0 0;
	content: "";
	}

/* PC ------------------------------ */
@media screen and (min-width: 768px) {

#main {
	width: 1200px;
	padding: 45px 0;
	margin: 0 auto;
	overflow: hidden;
	}
#main.one_column {
	width: 920px;
	}
#content {
	width: 920px;
	float: right;
	}

/* article */
article {
	margin-bottom: 60px;
	background-color: #fff;
	}
article .article_inner {
	padding: 50px 60px 60px;
	}
article h2 {
	padding: 28px 60px;
	background-color: #056ab8;
	}
article h2 img {
	height: 27px;
	}
article p,
article ul,
article ol {
	font-size: 1.5rem;
	line-height: 1.8;
	}
article p:not(:first-child),
article ul,
article ol {
	margin-top: 30px;
	}
article li {
	margin-top: 10px;
	}
article dt,
article dd {
	font-size: 1.5rem;
	line-height: 1.8;
	}
article br.sp {
	display: none;
	}

/* sidenav */
#sidenav {
	width: 240px;
	float: left;
	}
#sidenav li a:hover {
	background-color: #e6f0f8;
	}
#sidenav li a::after {
	width: 18px;
	height: 18px;
	background-size: 18px auto;
	}

} /* end PC */
/* SP ------------------------------ */
@media screen and (max-width: 767px) {

#main {
	width: 100%;
	}

/* article */
#content {
	margin-top: 60px;
	}
article {
	padding-top: 60px;
	margin-top: -60px;
	}
article .article_inner {
	padding: 30px 20px;
	background-color: #fff;
	}
article h2 {
	padding: 20px;
	background-color: #056ab8;
	}
article h2 img {
	height: 20px;
	}
article p,
article ul,
article ol {
	font-size: 1.3rem;
	line-height: 1.8;
	}
article p:not(:first-child),
article ul,
article ol {
	margin-top: 24px;
	}
article li {
	margin-top: 12px;
	}
article dt,
article dd {
	font-size: 1.3rem;
	line-height: 1.8;
	}
article br.pc {
	display: none;
	}
article img {
	max-width: 100%;
	}

/* sidenav */
#sidenav {
	width: 100%;
	padding: 20px;
	background-color: #f0f6fb;
	}
#sidenav h1 {
	padding: 20px 15px;
	font-size: 1.4rem;
	}
#sidenav li a {
	padding: 15px;
	}
#sidenav li a::after {
	width: 16px;
	height: 16px;
	background-size: 16px auto;
	}

} /* end SP */


/* ====================================
scrollup
==================================== */
/* PC ------------------------------ */
@media screen and (min-width: 768px) {

.scrollup {
	width: 100px;
	height: 100px;
	padding-top: 25px;
	display: block;
	position: fixed;
	bottom: 60px;
	right: 60px;
	background-color: #69a6d4;
	border-radius: 50px;
	cursor: pointer;
	color: #fff;
	font-size: 1.1rem;
	line-height: 1.8;
	text-align: center;
	}
.scrollup:hover {
	background-color: #5694c9;
	}

} /* end PC */
/* SP ------------------------------ */
@media screen and (max-width: 767px) {

.scrollup {
	width: 50px;
	height: 50px;
	display: block;
	position: fixed;
	bottom: 15px;
	right: 15px;
	background-color: #69a6d4;
	border-radius: 25px;
	cursor: pointer;
	color: #fff;
	font-size: 1.4rem;
	line-height: 50px;
	text-align: center;
	}
.scrollup span {
	display: none;
	}

} /* end SP */


/* ====================================
footer
==================================== */
#footer {
	background-color: #056ab8;
	}

/* PC ------------------------------ */
@media screen and (min-width: 768px) {

#footer #ftnav01 {
	width: 1200px;
	padding: 30px 0;
	margin: 0 auto;
	display: flex;
	}
#footer nav dl {
	padding-right: 60px;
	}
#footer nav dt,
#footer nav dt a {
	margin-bottom: 18px;
	color: #cce3ff;
	font-size: 1.8rem;
	text-decoration: none;
	}
#footer nav dd {
	margin-bottom: 12px;
	}
#footer nav dd,
#footer nav dd a,
#footer nav li a {
	color: #fff;
	font-size: 1.3rem;
	text-decoration: none;
	}
#footer nav a:hover {
	text-decoration: underline;
	}
#footer .footer_inner {
	background-color: #024b9e;
	}
#footer .footer_inner .inner {
	width: 1200px;
	padding: 30px 0;
	margin: 0 auto;
	overflow: hidden;
	}
#footer .footer_inner .location {
	display: none;
	}
#footer .footer_inner nav {
	float: left;
	}
#footer .copyright {
	float: right;
	color: #fff;
	font-size: 1.1rem;
	letter-spacing: 0.05em;
	}
#footer .copyright span {
	margin: 0 6px;
	display: inline-block;
	font-size: 2rem;
	vertical-align: -4px;
	}

#footer .footer_inner nav#ftnav02 {
  display: none;
}

} /* end PC */
/* 1200px以下 ----------------------- */
@media screen and (min-width:768px) and (max-width:1200px) {

#footer #ftnav01 {
	padding-left: 1.5%;
	padding-right: 1.5%;
	}
#footer .footer_inner .inner {
	padding-left: 1.5%;
	padding-right: 1.5%;
	}

} /* end 1200px以下 */
/* SP ------------------------------ */
@media screen and (max-width: 767px) {

#footer .footer_inner {
	padding: 40px 6px 25px;
	}
#ftnav01,
#ftnav02 {
	display: none;
	}
#footer .location dt {
	margin-bottom: 15px;
	color: #fff;
	font-size: 1.8rem;
	text-align: center;
	}
#footer .location dd {
	margin-bottom: 9px;
	color: #fff;
	font-size: 1.2rem;
	text-align: center;
	}
#footer .location .address span {
	margin-right: 9px;
	display: inline-block;
	font-size: 1.1rem;
	}
#footer .location .tel_link a {
	margin-left: 6px;
	display: inline-block;
	color: #fff;
	font-size: 1.3rem;
	text-decoration: none;
	}
#footer .copyright {
	margin-top: 30px;
	color: #b4d2ea;
	font-size: 1rem;
	text-align: center;
	}
#footer .copyright span {
	margin: 0 6px;
	display: inline-block;
	font-size: 1.6rem;
	vertical-align: -3px;
	}

} /* end SP */
