@charset "UTF-8";
/* loading */
.loading {
	position: fixed;
	z-index: 1000;
	width: 100%;
	height: 100vh;
	margin: 0;
	padding: 0;
	background: #fdfdfd;
}
.loading.hide {
	opacity: 0;
	pointer-events: none;
	transition: opacity 500ms;
}
.loading .circle {
	display: block;
	position: relative;
	top: calc(50% - 20px);
	width: 40px;
	height: 40px;
	margin: 0 auto;
	border: 3px solid #e0e0e0;
	border-top: 2px solid #000086;
	border-radius: 100px;
	animation: loading 700ms linear 0ms infinite normal both;
}
@keyframes loading {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
/*---------------------------------------------
	Browser Default Initialization
  ---------------------------------------------*/
html {}
body, div, dl, dt, dd, ul, ul li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td, section, nav, article, aside, hgroup, header, address, figure, figcaption {
	margin: 0;
	padding: 0;
}
address, caption, cite, code, dfn, em, strong, th, var {
	font-style: normal;
	font-weight: 400;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
caption, th {
	text-align: left;
}
q:before, q:after {
	content: '';
}
object, embed {
	vertical-align: top;
}
hr, legend {
}
h1, h2, h3, h4, h5, h6 {
	font-size: 100%;
	font-weight: 400;
}
img, abbr, acronym, fieldset {
	border: 0;
}
img {
	width: 100%;
	height: auto !important;
	display: block;
	vertical-align: bottom;
	-ms-interpolation-mode: bicubic;
}
ul li {
	list-style-type: none;
}
/*---------------------------------------------
	Anchor
  ---------------------------------------------*/
a {
	outline: none;
}
a:link {
	text-decoration: none;
	color: #56a5af;
}
a:visited {
	text-decoration: none;
	color: #56a5af;
}
a:hover {
	text-decoration: none;
	color: #292F33;
	transition: .3s;
}
a:active {
	text-decoration: none;
	color: #292F33;
}
/*---------------------------------------------
	clearfix
  ---------------------------------------------*/
.clearfix:after {
	content: "."; /* 新しいコンテンツ */
	display: block;
	clear: both;
	height: 0;
	visibility: hidden; /* 非表示に */
}
.clearfix {
	min-height: 1px;
}
* html .clearfix {
	height: 1px;
	/*¥*/ /*/
  height: auto;
  overflow: hidden;
  /**/
}
/* ------ General Settings ------ */
html {
	*overflow-x: hidden;
}
#wrapper {
	padding-top: 115px;
	overflow: hidden;
}
@media screen and (min-width: 1px) and (max-width: 900px) {
	#wrapper {
		padding-top: 64px;
	}
}
.fLeft {
	float: left;
}
.fRight {
	float: right;
}
a:hover img {
	opacity: 0.5;
	filter: alpha(opacity=50);
	-ms-filter: "alpha( opacity=50 )";
	line-height: 1px;
	transition: .3s;
}
.forPc {
	display: block;
}
.forMobile {
	display: none;
}
@media screen and (max-width: 639px) {
	.forPc {
		display: none;
	}
	.forMobile {
		display: block;
	}
}
/* ------ webfont ------ */
/* 日本語フォント */
body {
	font-family: 'Noto Sans JP', sans-serif;
	line-height: 200%;
	color: #222;
	text-align: left;
	-webkit-text-size-adjust: none;
	font-weight: 400;
}
/* 指定英字フォント */
.webfontL {
	font-family: 'Roboto', sans-serif;
	font-weight: 900;
}
.webfontS {
	font-family: 'Roboto', sans-serif;
	font-weight: 100;
}
/* ------ ライン ------ */
/* leftLine */
.leftLine {
	line-height: 100%;
	display: flex;
	align-items: center;
}
.leftLine:after {
	border-top: 1px solid;
	content: "";
	flex-grow: 1;
	margin-left: 2%;
}
/* 左右ライン */
.wLine {
	display: flex;
	align-items: center;
}
.wLine:before, .wLine:after {
	content: "";
	height: 1px;
	flex-grow: 1;
	background-color: #222;
}
.wLine:before {
	margin-right: 1rem;
}
.wLine:after {
	margin-left: 1rem;
}
/* ------ inview アニメーション ------ */
/* fade-In */
.fade-In {
	opacity: 0;
	transition: 2s;
}
.fade-In.is-show {
	opacity: 1;
}
/* fadeIn_up */
.fadeIn_up {
	opacity: 0;
	transform: translate(0, 30px);
	transition: 1.2s;
}
.fadeIn_up.is-show {
	transform: translate(0, 0);
	opacity: 1;
}
/* fadeIn_left */
.fadeIn_left {
	opacity: 0;
	transform: translate(-10%, 0);
	transition: 3s;
}
.fadeIn_left.is-show {
	transform: translate(0, 0);
	opacity: 1;
}
/* fadeIn_right */
.fadeIn_right {
	opacity: 0;
	transform: translate(10%, 0);
	transition: 3s;
}
.fadeIn_right.is-show {
	transform: translate(0, 0);
	opacity: 1;
}
/* icon */
.icon01::before {
	font-family: 'Material Symbols Outlined';
	content: "\eaaa";
	vertical-align: -10%;
	margin-right: 0.2em;
}
.icon02::before {
	font-family: 'Material Symbols Outlined';
	content: "\e5df";
	vertical-align: -10%;
	margin-right: 0.2em;
}
.icon03::before {
	font-family: 'Material Symbols Outlined';
	content: "\e5c5";
	vertical-align: -10%;
	margin-right: 0.2em;
}
.icon04::before {
	font-family: 'Material Symbols Outlined';
	content: "\e02e";
	vertical-align: -10%;
	margin-right: 0.2em;
}
.icon05::before {
	content: "◼︎";
	margin-right: 0.2em;
}
.icon06::before {
	content: "・";
	margin-right: 0.2em;
}
/* linkLine */
.linkLine {
	/*線の基点とするためrelativeを指定*/
	position: relative;
	/*リンクの形状*/
	padding: 10px 0;
	text-decoration: none;
	outline: none;
}
/*線の設定*/
.linkLine::before, .linkLine::after {
	content: '';
	/*絶対配置で線の位置を決める*/
	position: absolute;
	z-index: 1;
	bottom: 0;
	left: 0;
	/*線の形状*/
	background: #fff;
	width: 100%;
	height: 1px;
	/*アニメーションの指定*/
	transition: all 0.3s ease-in-out;
}
/*hover時に伸びる線の形状*/
.linkLine::after {
	width: 0;
	background: #000086;
}
/*hover時に100%に伸びる*/
.linkLine:hover::after {
	width: 100%;
}
/* footArea
================================================== */
#footArea {
	background-color: #F6F4F5;
}
@media (max-width: 700px) {
	#footArea {
		background-size: 300%;
	}
}
/* footBlock
================================================== */
.footBlock {
	max-width: 1080px;
	margin: 0 auto;
	padding: 3% 5%;
}
@media (max-width: 800px) {
	.footBlock {
		padding: 10% 5% 5%;
	}
}
/* footHead */
.footHead {
	padding-bottom: 3%;
	width: 100%;
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: justify;
	justify-content: space-between;
	flex-wrap: wrap;
}
@media (max-width: 800px) {
	.footHead {
		padding-bottom: 0;
	}
}
.footLogo {
	float: left;
	width: 15.5%;
}
@media (max-width: 800px) {
	.footLogo {
		float: none;
		width: 40%;
		padding-bottom: 20px;
	}
}
.footLogo h2 {
	margin: 0;
}

.footBox {
	float: right;
	width: 75%;
}
@media screen and (max-width: 800px) {
	.footBox {
		float: none;
		width: 100%;
	}
}
.footBox dl {
	font-size: 70%;
	line-height: 160%;
}
@media (max-width: 639px) {
	.footBox dl {
		font-size: 90%;
	}
}
.footBox dt {
	font-weight: 500;
}
@media (max-width: 800px) {
	.footBox dt {
		line-height: 100%;
		display: flex;
		align-items: center;
		padding-bottom: 10px;
	}
	.footBox dt:after {
		border-top: 1px solid #ccc;
		content: "";
		flex-grow: 1;
		margin-left: 2%;
	}
}
.footBox dd br {
    display: none;
}
@media (max-width: 639px) {
	.footBox dd a {
		font-weight: 700;
	}
	.footBox dd br {
		display: block;
	}
}
/* footNav */
#footNav {
	border-top: solid #ddd 1px;
	padding: 2% 0 0;
}
@media (max-width: 800px) {
	#footNav {
		display: none;
	}
}
#footNav ul li {
	float: left;
	width: 18%;
	padding-right: 2%;
	font-size: 70%;
	line-height: 120%;
}
#footNav ul li a {
	display: block;
	color: #222;
	font-weight: 500;
}
#footNav ul .btnlinestretches4 {
	/*線の基点とするためrelativeを指定*/
	position: relative;
	/*リンクの形状*/
	padding: 10px 0;
	text-decoration: none;
	outline: none;
}
/*線の設定*/
#footNav ul .btnlinestretches4::before, #footNav ul .btnlinestretches4::after {
	content: '';
	/*絶対配置で線の位置を決める*/
	position: absolute;
	z-index: 1;
	bottom: 0;
	left: 0;
	/*線の形状*/
	background: #F6F4F5;
	width: 100%;
	height: 1px;
	/*アニメーションの指定*/
	transition: all 0.3s ease-in-out;
}
/*hover時に伸びる線の形状*/
#footNav ul .btnlinestretches4::after {
	width: 0;
	background: #000086;
}
/*hover時に100%に伸びる*/
#footNav ul .btnlinestretches4:hover::after {
	width: 100%;
}
/* crArea
================================================== */
#crArea {
	background-color: #efefef;
}
#crArea p {
	text-align: center;
	font-size: 60%;
	line-height: 60px;
}
@media screen and (max-width: 800px) {
	#crArea {
		padding: 0 5%;
	}
	#crArea p {
		text-align: left;
	}
}
@media screen and (max-width: 639px) {
	#crArea p {
		font-size: 1.8vw;
	}
}
/* backtotop
================================================== */
/* backtotop */
.backtotop {
	position: fixed;
	bottom: 0;
	right: 0;
	z-index: 1100;
	display: none;
}
.icon-top::before {
	font-family: 'Material Symbols Outlined';
	content: "\e25a";
	vertical-align: 0;
	margin-right: 0;
}
.hovicon {
	display: inline-block;
	font-size: 80%;
	line-height: 60px;
	cursor: pointer;
	width: 60px;
	height: 60px;
	text-align: center;
	position: relative;
	text-decoration: none;
	z-index: 1;
	color: #fff;
}
.hovicon:after {
	pointer-events: none;
	position: absolute;
	width: 100%;
	height: 100%;
	content: '';
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}
.hovicon:before {
	speak: none;
	font-size: 140%;
	line-height: 60px;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	display: block;
}
/* Effect 1 */
.hovicon.effect-1 {
	background: #000086;
	-webkit-transition: background 0.2s, color 0.2s;
	-moz-transition: background 0.2s, color 0.2s;
	transition: background 0.2s, color 0.2s;
}
.hovicon.effect-1:after {
	top: -7px;
	left: -7px;
	padding: 7px;
	box-shadow: 0 0 0 4px #000086;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	-webkit-transform: scale(.8);
	-moz-transition: -moz-transform 0.2s, opacity 0.2s;
	-moz-transform: scale(.8);
	-ms-transform: scale(.8);
	transition: transform 0.2s, opacity 0.2s;
	transform: scale(.8);
	opacity: 0;
}
/* Effect 1a */
.hovicon.effect-1.sub-a:hover {
	background: #000086;
	color: #fff;
}
.hovicon.effect-1.sub-a:hover p {
	color: #fff;
}
.hovicon.effect-1.sub-a:hover:after {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	opacity: 1;
}

/* breadArea
================================================== */
#breadArea {
	max-width: 1080px;
	margin: 0 auto;
	padding: 0 5%;
}
@media screen and (max-width: 639px) {
	#breadArea {
		width: 90%;
		padding: 0;
	}
}
#breadArea nav {
	box-shadow: 0 5px 5px 0 rgba(0, 0, 0, .2);
}
.breadcrumbs {
	background-color: #fff;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
    border-radius: 3px;
	height: 40px;
	padding: 0 2%;
	margin: 0;
	overflow-x: auto;
	white-space: nowrap;
	-webkit-overflow-scrolling: touch;
	font-size: 70%;
	line-height: 40px;
}
@media screen and (max-width: 639px) {
	.breadcrumbs {
		padding: 0 5%;
	}
}
.breadcrumbs li{
	display: inline-block;
	font-weight: 500;
}
.breadcrumbs li a {
	/*線の基点とするためrelativeを指定*/
	position: relative;
	/*リンクの形状*/
	padding: 3px 0;
	text-decoration: none;
	outline: none;
	color: #222;
	transition: .3s;
}
.breadcrumbs li a:hover {
	color: #000086;
	transition: .3s;
}
/*線の設定*/
.breadcrumbs li a::before, .breadcrumbs li a::after {
	content: '';
	/*絶対配置で線の位置を決める*/
	position: absolute;
	z-index: 1;
	bottom: 0;
	left: 0;
	/*線の形状*/
	background: #fff;
	width: 100%;
	height: 1px;
	/*アニメーションの指定*/
	transition: all 0.3s ease-in-out;
}
/*hover時に伸びる線の形状*/
.breadcrumbs li a::after {
	width: 0;
	background: #000086;
}
/*hover時に100%に伸びる*/
.breadcrumbs li a:hover::after {
	width: 100%;
}

