@charset 'utf-8';

/*PC用CSS(ipad mini 7.9インチ対応)*/
@media only screen and (min-width: 768px) {
	.pc_none{
		display: none!important;
	}
}
/*SP用CSS(ipad mini 7.9インチ未対応)*/
@media only screen and (max-width: 767px) {
	.sp_none{
		display: none!important;
	}
}
body{
	-webkit-text-size-adjust: 100%; /*ios横向き文字の拡大防止*/
	text-size-adjust: 100%; /*ios横向き文字の拡大防止*/
	font-family:
	'Noto_Sans_JP',
	sans-serif;
	font-weight: 400;
	color: #0F0F0F;
}
html.active,
body.active{
/*	height: 100%;*/
	overflow: hidden;
}

.thin{
	font-family: 'Noto Sans JP', sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-weight: 100;
}
.elight{
	font-family: 'Noto Sans JP', sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-weight: 200;
}
.light{
	font-family: 'Noto Sans JP', sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-weight: 300;
}
.regular{
	font-family: 'Noto Sans JP', sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-weight: 400;
}
.mid{
	font-family: 'Noto Sans JP', sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-weight: 500;
}
.sbold{
	font-family: 'Noto Sans JP', sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-weight: 600;
}
.bold{
	font-family: 'Noto Sans JP', sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-weight: 700;
}
.ebold{
	font-family: 'Noto Sans JP', sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-weight: 800;
}
.black{
	font-family: 'Noto Sans JP', sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-weight: 900;
}
.font02{
	font-family: 'Poppins', serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-weight: 600;
}
.font03{
	font-family: 'Roboto', serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-weight: 400;
}
/*Googleフォントここまで*/


* {
	box-sizing: border-box;
}

.svg{
	position: relative;
}
.svg svg{
	width: 100%;
	min-width: initial;
	height: 100%;
	min-height: initial;
	display: block;
	position: absolute;
	top: 0;
	bottom: auto;
	left: 0;
	right: auto;
	margin: auto;
}
iframe{
	width: 100%;
	min-width: initial;
	height: 100%;
	min-height: initial;
	display: block;
	position: absolute;
	top: 0;
	bottom: auto;
	left: 0;
	right: auto;
	margin: auto;
}

body{
	min-width: 1280px;
}
@media only screen and (max-width: 767px){
	body,
	main,
	header,
	footer{
		min-width: 320px;
	}
}

body{
	width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
	position: relative;
}
@media only screen and (max-width: 767px) {
	body{
		min-width: initial;
	}
}
.contents00{
	width: 100%;
	height: auto;
	display: flex;
	justify-content: flex-end;
	align-items: flex-start;
}
@media only screen and (max-width: 767px) {
	.contents00{
		width: 100%;
		height: auto;
		display: block;
		justify-content: initial;
		align-items: initial;
	}
}
main{
	width: calc(100% - 260px);
	height: auto;
	display: block;
	background-color: #FAFAFA;
}
@media only screen and (max-width: 767px) {
	main{
		width: 100%;
		padding-top: 70px;
	}
}

/*headerここから*/
header{
	width: 260px;
	height: 100vh;
	min-height: 946px;
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	background-color: #ffffff;
	/*box-shadow: 0px 4px 10px -5px rgba(0,0,0,0.2);*/
}
/* 画面の高さが930px未満の場合 */
@media screen and (max-height: 929px) {
  header {
   	min-height: initial;
   	overflow-y: scroll;
  }
}
@media only screen and (max-width: 767px){
	header{
		width: 100%;
		height: 70px;
		box-shadow: none;
		display: flex;
		align-items: center;
		min-height: initial;
	}
}
header .header01{
	width: 100%;
	height: auto;
	margin: 0 auto;
	display: block;
	padding: 28px 18px;
}
@media only screen and (max-width: 767px){
	header .header01{
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 0 0 0 20px;
		background-color: transparent;
		transition: all .5s;
	}
}
header .header01 h1{
	width: auto;
	height: auto;
	margin: 0 auto;
	display: block;
	padding: 0 0 0 15px;
}
@media only screen and (max-width: 767px){
	header .header01 h1{
		width: 240px;
		position: relative;
		z-index: 0;
		transition: all 0s;
		margin: 0;
		padding: 0;
	}
	header .header01 h1.active{
		z-index: 100;
		transition: all 0s .5s;
	}
}
header .header01 h1 a{
	width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
}
header .header01 h1 a img{
	width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
}

header .header01 h1 a.text{
	width: 100%;
	height: auto;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-direction: column;
}
@media only screen and (max-width: 767px) {
	header .header01 h1 a.text{
		flex-direction: initial;
		flex-wrap: wrap;
		align-items: flex-end;
	}
}
header .header01 h1 a.text .span01{
	font-size: 18px;
	line-height: 36px;
	letter-spacing: 0.07em;
}
@media only screen and (max-width: 767px) {
	header .header01 h1 a.text .span01{
		font-size: 14px;
		line-height: 25px;
		letter-spacing: 0.07em;
		margin-right: 3px;
	}
}
header .header01 h1 a.text .span02{
	font-size: 26px;
	line-height: 36px;
	letter-spacing: 0.07em;
}
@media only screen and (max-width: 767px) {
	header .header01 h1 a.text .span02{
		font-size: 22px;
		line-height: 35px;
		letter-spacing: 0.07em;
	}
}
header .header01 h1 a.text .span03{
	font-size: 12px;
	line-height: 14px;
	letter-spacing: 0.03em;
	color: #004B9E;
	margin-top: 5px;
}
@media only screen and (max-width: 767px) {
	header .header01 h1 a.text .span03{
		width: 100%;
		margin-top: 0;
		font-size: 11px;
		line-height: 13px;
	}
}





@media only screen and (max-width: 767px){
/*メニューオープンボタン*/
	header .header01 .slide-menu-btn{
		width: 50px;
		height: 100%;
		z-index: 10;
		background-color: #fff;
		position: relative;
		margin: 0;
		cursor: pointer;
		flex-shrink: 0;
		display: flex;
		justify-content: center;
		align-items: center;
		align-content: center;
		flex-direction: column;
	}
	/*メニューオープンボタン内部テキスト*/
	header .header01 .slide-menu-btn::after{
		content: "";
		width: 100%;
		height: auto;
		font-size: 12px;
		line-height: 12px;
		font-weight: 400;
		color: #fff;
		text-align: center;
		margin: 5px 0 0;
		display: block;
	}
	header .header01 .slide-menu-btn.active::after{
		content: "";
		color: #2C4B98;
	}
	/*メニューオープンボタン内部の線*/
	header .header01 .slide-menu-btn .line-bar{
		width: 25px;
		height: 2px;
		color: #004B9E;
		background-color: #004B9E;
		border-radius: 1px;
		position: relative;
		margin: 15px 0 10px;
		transition: all 0.6s ease;
		display: block;
	}
	header .header01 .slide-menu-btn .line-bar::before{
		content: "";
		display: block;
		background-color: #004B9E;
		border-radius: 1px;
		position: absolute;
		width: 100%;
		height: 2px;
		transition: all 0.6s ease;
		top: -10px;
	}
	header .header01 .slide-menu-btn .line-bar::after{
		content: "";
		display: block;
		background-color: #004B9E;
		border-radius: 1px;
		position: absolute;
		width: 100%;
		height: 2px;
		transition: all 0.6s ease;
		bottom: -10px;
	}
	header .header01 .slide-menu-btn.active{
		background-color: #fff;
	}
	header .header01 .slide-menu-btn.active .line-bar{
		background-color: #2C4B98;
		transform: rotate(135deg);
		transition: all 0.6s ease;
	}
	header .header01 .slide-menu-btn.active .line-bar::before{
		background-color: #2C4B98;
		transform: rotate(90deg);
		top: 0;
	}
	header .header01 .slide-menu-btn.active .line-bar::after{
		opacity: 0;
	}
/*メニューオープンボタン*/
}


header .header01 nav{
	box-sizing: border-box;
	width: 100%;
	height: auto;
	margin-top: 20px;
	display: block;
}
@media only screen and (max-width: 767px){
	header .header01 nav{
		width: 100%;
		min-width: 320px;
		height: 100vh;
		padding: 0 20px 150px;
		margin-top: 0;
		background-color: #fff;
		position: fixed;
		top: -200vh;
		right: 0;
		z-index: 10;
		transition: all .5s;
		overflow-y: scroll;
		margin-top: 70px;
	}
	header .header01 .panelactive{
		top: 0;
		right: 0;
		transition: all .5s;
	}
}
header .header01 nav .nav01{
	width: 100%;
	height: auto;
	padding: 20px 15px;
	border-top: 1px solid #80A5CE;
	display: block;
}
@media only screen and (max-width: 767px) {
	header .header01 nav .nav01{
		width: 90%;
		padding: 20px 8px;
		margin: 0 auto;
	}
	header .header01 nav .nav01:first-of-type{
		border-top: 0;
	}

}
header .header01 nav .nav01 .text01{
	width: 100%;
	height: auto;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	font-size: 15px;
	line-height: 34px;
	color: #004B9E;
}
header .header01 nav .nav01 .text01 img{
	width: 13px;
	height: auto;
	display: block;
	margin-right: 5px;
}
header .header01 nav .nav01 ul{
	width: 100%;
	height: auto;
	display: block;
}
header .header01 nav .nav01 ul li{
	width: 100%;
	height: auto;
	display: block;
	margin-top: 10px;
}
@media only screen and (max-width: 767px) {
	header .header01 nav .nav01:nth-of-type(1) ul li.li02{
		margin-top: 10px;
	}
}
header .header01 nav .nav01 ul li a{
	width: 100%;
	height: auto;
	display: flex;
	justify-content:space-between;
	align-items: center;
	font-size: 14px;
	line-height: 34px;
	color: #004B9E;
}
@media only screen and (max-width: 767px) {
	header .header01 nav .nav01 ul li a{
		font-size: 15px;
	}
}
header .header01 nav .nav01 ul li a .arrow01{
	width: 17px;
	height: auto;
	display: block;
}
header .header01 nav .nav01 ul li.li01 a{
	background-color: #004B9E;
	padding: 8px 15px;
	border-radius: 6px;
	font-size: 15px;
	letter-spacing: 0.03em;
	color: #fff;
}
header .header01 nav .nav01 ul li.li02 a{
	background-color: #3189DC;
	padding: 8px 15px;
	border-radius: 6px;
	font-size: 15px;
	letter-spacing: 0.03em;
	color: #fff;
}
header .header01 nav .nav02 ul li{
	margin-top: 5px;
}
header .header01 nav .nav04{
	background-color: #EFF7FF;
	border-radius: 6px;
	border-top: 0px;
}
@media only screen and (max-width: 767px) {
	header .header01 nav .nav04{
		width: 100%;
		padding: 20px;
	}
	header .header01 nav .nav04 ul{
		width: 90%;
		height: auto;
		display: block;
		margin: 0 auto;
	}
}
header .header01 nav .nav04 ul li.li01 a{
	background-color: #fff;
	padding: 8px 15px;
	border-radius: 6px;
	font-size: 15px;
	letter-spacing: 0.03em;
	color: #004B9E;
	border: 1px solid #004B9E;
}
header .header01 nav .nav04 ul li.li02 a{
	background-color: #fff;
	padding: 8px 15px;
	border-radius: 6px;
	font-size: 15px;
	letter-spacing: 0.03em;
	color: #004B9E;
	border: 1px solid #004B9E;
}
@media only screen and (max-width: 767px) {
	header .header01 nav .nav04 ul li.privacy{
		display: flex;
		justify-content: center;
	}
	header .header01 nav .nav04 ul li a{
		width: auto;
		font-size: 10px;
		line-height: 20px;
	}
}

.rotate{
	transform: rotate(90deg)
}



header .header01 nav .nav_01 li{
	width: auto;
	height: 100%;
	display: block;
	text-align: center;
}
@media only screen and (max-width: 767px){
	header .header01 nav .nav_01 li{
		width: 100%;
		height: auto;
		border-top: 1px dashed #D9D9D9;
	}
	header .header01 nav .nav_01 li:nth-of-type(1){
		border-top: 0;
	}
}
header .header01 nav .nav_01 li a{
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	font-size: 15px;
	line-height: 19px;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 10;
}
@media only screen and (max-width: 767px){
	header .header01 nav .nav_01 li a{
		height: 66px;
		font-size: 16px;
		line-height: 20px;
		border-bottom: 0;
		justify-content: flex-start;
	}
}
header .header01 nav .nav_01 li a:hover{
	opacity: 1;
}
header .header01 nav .nav_01 li a::before{
	content: '';
	width: auto;
	height: 6px;
	background-color: transparent;
	display: block;
	position: absolute;
	top: auto;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	transition: all .5s;
}
@media only screen and (max-width: 767px){
	header .header01 nav .nav_01 li a::before{
		display: none;
	}
}
header .header01 nav .nav_01 li a:hover::before{
	background-color: #104EA3;
	transition: all .5s;
}
header .header01 nav .nav_01 li .active::before{
	background-color: #104EA3;
	transition: all .5s;
}
header .header01 nav .nav_01 .drop{
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	position: relative;
	z-index: 1;
}
header .header01 nav .nav_01 .drop a{
	width: auto;
	flex-grow: 1;
}
@media only screen and (max-width: 767px){
	header .header01 nav .nav_01 .drop a{
		/*width: calc(100% - 66px);*/
	}
}
header .header01 nav .nav_01 .drop .drop-btn{
	width: 20px;
	height: 74px;
	margin: 0 0 0 10px;
	background-image: url(../img/header/arrow01.png);
	background-repeat: no-repeat;
	background-size: 10px auto;
	background-position: center;
	display: block;
	transform: rotateZ(0);
	transition: all .5s;
	flex-shrink: 0;
}
@media only screen and (max-width: 767px){
	header .header01 nav .nav_01 .drop .drop-btn{
		width: 66px;
		height: 66px;
		margin: 0;
		background-size: 25px auto;
	}
}
header .header01 nav .nav_01 .drop .drop-btn.drop-active{
	transform: rotateZ(180deg);
	transition: all .5s;
}
header .header01 nav .nav_01 .drop ul{
	width: 165px;
	height: auto;
	padding-top: 74px;
	position: absolute;
	top: 0;
	left: -21px;
	right: auto;
	bottom: auto;
	z-index: -1;
	margin: auto;
}
header .header01 nav .nav_01 .drop ul.left{
	left: -21px;
	right: auto;
}
header .header01 nav .nav_01 .drop ul.right{
	left: auto;
	right: -21px;
}
@media only screen and (min-width: 768px){
	header .header01 nav .nav_01 .drop ul{
		visibility: hidden;
		opacity: 0;
		transition: all .3s;
		animation: tooltipShow2 0.3s linear 0s;
	}
}
@media only screen and (max-width: 767px){
	header .header01 nav .nav_01 .drop ul{
		width: 100%;
		padding-top: 0;
		position: static;
		margin: auto;
		display: none;
	}
}
@media only screen and (min-width: 768px){
	header .header01 nav .nav_01 .drop:hover ul{
		visibility: visible;
		opacity: 1;
		transition: all .3s;
		animation: tooltipShow 0.3s linear 0s;
	}
}
/*ナビアニメーション(ドロップダウン)指示*/
@keyframes tooltipShow{
	from{
		-webkit-transform: translateY(-10px);
		-moz-transform: translateY(-10px);
		-ms-transform: translateY(-10px);
		-o-transform: translateY(-10px);
		transform: translateY(-10px);
	}
	to{
		-webkit-transform: translateY(0px);
		-moz-transform: translateY(0px);
		-ms-transform: translateY(0px);
		-o-transform: translateY(0px);
		transform: translateY(0px);
	}
}
@keyframes tooltipShow2{
	from{
		opacity: 1;
		-webkit-transform: translateY(0px);
		-moz-transform: translateY(0px);
		-ms-transform: translateY(0px);
		-o-transform: translateY(0px);
		transform: translateY(0px);
	}
	to{
		opacity: 0;
		-webkit-transform: translateY(-10px);
		-moz-transform: translateY(-10px);
		-ms-transform: translateY(-10px);
		-o-transform: translateY(-10px);
		transform: translateY(-10px);
	}
}
/*ナビアニメーション(ドロップダウン)指示*/
header .header01 nav .nav_01 .drop ul li{
	width: 100%;
	height: 45px;
	display: block;
}
@media only screen and (max-width: 767px){
	header .header01 nav .nav_01 .drop ul li{
		height: 55px;
	}
	header .header01 nav .nav_01 .drop ul li:nth-of-type(1){
		border-top: 1px dashed #D9D9D9;
	}
}
header .header01 nav .nav_01 .drop ul li a{
	width: 100%;
	height: 100%;
	font-size: 16px;
	line-height: 20px;
	background-color: #ffffff;
	display: flex;
	justify-content: center;
	align-items: center;
}
@media only screen and (max-width: 767px){
	header .header01 nav .nav_01 .drop ul li a{
		padding-left: 5%;
		font-size: 16px;
		line-height: 20px;
		background-color: transparent;
		justify-content: flex-start;
	}
}
header .header01 nav .nav_01 .drop ul li a::before{
	display: none;
}
header .header01 nav .nav_01 .drop ul li a:hover{
	background-color: #104EA3;
	color: #ffffff;
}
@media only screen and (max-width: 767px){
	header .header01 nav .nav_01 .drop ul li a:hover{
		background-color: transparent;
		color: #000000;
	}
}
@media only screen and (max-width: 767px){
	header .header01 nav .nav_01 .nav01_01{
		padding-top: 43px;
		border-top: 1px solid #D9D9D9;
	}
	header .header01 nav .nav_01 .nav01_01 ul{
		width: 100%;
		height: auto;
		margin: 10px 0 0;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	header .header01 nav .nav_01 .nav01_01 ul:nth-of-type(1){
		margin-top: 0;
	}
	header .header01 nav .nav_01 .nav01_01 ul li{
		width: auto;
		height: auto;
		margin: 0;
		border: 0;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	header .header01 nav .nav_01 .nav01_01 ul li a{
		width: auto;
		height: auto;
		padding: 0 10px;
		font-size: 14px;
		line-height: 24px;
	}
}
/*headerここまで*/

/*footerここから*/
footer{
	width: calc(100% - 260px);
	height: auto;
	display: block;
	margin: 0 0 0 260px;
}
@media only screen and (max-width: 767px) {
	footer{
		width: 100%;
		margin: 0;
	}
}
footer p{
	width: 100%;
	height: 40px;
	background-color: #00336C;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 10px;
	line-height: 17px;
	letter-spacing: 0.05em;
	color: #fff;
}
@media only screen and (max-width: 767px) {
	footer .footer01{
		width: 90%;
		max-width: 320px;
		padding: 40px 0 10px;
	}
}
/*footerここまで*/

/*includeここから*/
.btn-top {
	position: fixed;
	bottom: 0;
	right: 10px;
	width: 50px;
	height: 50px;
	display: block;
	z-index: 10;
	cursor: pointer;
	opacity: 0;
}
.btn-top::before {
	content: '';
	width: 39px;
	height: 39px;
	display: block;
	background-image: url(../img/common/top_btn.png);
	background-repeat: no-repeat;
	background-size: 39px 39px;
	background-position: center;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}