@charset "utf-8";
/*------------------------------------------------------------
	汎用スタイル
------------------------------------------------------------*/
/* clearfix */	
.clearfix:after {content: "";display: block;clear: both;}
/* flex */	
.flex,.flexA,.flexB,.flexC {display: flex;flex-wrap: wrap;}
.flexA {justify-content: space-around;}
.flexB {justify-content: space-between;}
.flexC {justify-content: center;}
/*------------------------------------------------------------
	content
------------------------------------------------------------*/
.content {
	margin: 0 auto;
	padding: 0 20px;
	max-width: 1000px;
}
@media all and (max-width: 896px) {
	.content {
		padding: 0 15px;
		max-width: inherit;
	}
}
/*------------------------------------------------------------
	headLine01
------------------------------------------------------------*/
.headLine01 {
	margin-bottom: 24px;
	font-size: 4rem;
	line-height: 1.75;
	text-align: center;
}
.headLine01 span {
	margin-bottom: -1px;
	display: block;
	color: #006eb0;
	font-size: 1.4rem;
	font-weight: bold;
	letter-spacing: 0.1em;
	line-height: 1.3;
}
@media all and (max-width: 896px) {
	.headLine01 {
		margin-bottom: 16px;
		font-size: 2.5rem;
		line-height: 1.28;
	}
	.headLine01 span {
		margin-bottom: 5px;
		font-size: 1rem;
		line-height: 1;
	}
}
/*------------------------------------------------------------
	fixedBox
------------------------------------------------------------*/
.fixedBox {
	display: none;
	padding: 20px 0;
	width: 100%;
	position: fixed;
	bottom: 0;
	left: 0;
	background-color: #006eb0;
	box-sizing: border-box;
	z-index: 1000;
}
/*--固定フッターサイス---------*/
.content .subBox{
width: 700px;
position: relative;
margin: 0 auto;
}
/*---------------------------*/
.fixedBox ul {
	display: flex;
	justify-content: space-between;
}
.fixedBox li {
	width: calc((100% - 20px) / 2);
}
.fixedBox li a {
	display: block;
}
.fixedBox li a:hover {
	opacity: 0.7;
}
@media all and (max-width: 896px) {
	.fixedBox {
		padding: 10px 15px;
	}
	.fixedBox .content {
		padding: 0;
	}
	.fixedBox ul {
		/*margin: 0 auto;*/
		max-width: 345px;
	}
	.fixedBox ul li {
		width: calc((100% - 14px) / 2);
	}
}