/*-----
* basic-style.css ver1.0.0
* Common to all pages(全ページ共通)
-----*/
/***** variable *****/
:root{
	--basic-font-size:16px;
	--sans-font:"Helvetica Neue",Arial,sans-serif;
	--serif-font:"Noto Serif JP", serif;
	--key-color:#003f73;
	--border-color:#e5e5e5;
}
/***** common *****/
html,body{
	font-size:var(--basic-font-size, 16px);
	font-family:var(--serif-font);
	font-style: normal;
}
img{
	max-width: 100%;
}
h1,
h2,
h3,
h4,
h5,
h6{
	margin: 0;
}
h4,
h5,
h6{
	font: inherit;
}
ul,
ol{
	margin: 0;
	padding: 0;
	list-style: none;
}
.basic-box p,
.basic-box h1,
.basic-box h2,
.basic-box h3,
.basic-box h4,
.basic-box h5,
.basic-box h6{
	margin:0;
}
.icon-size img{
	width:calc(var(--basic-font-size) * 1.5);
}
.mt1,
.basic-box .mt1{
	margin-top:1rem;
}
.mt2,
.basic-box .mt2{
	margin-top:2rem;
}
.mt3,
.basic-box .mt3{
	margin-top:3rem;
}
.mt4,
.basic-box .mt4{
	margin-top:4rem;
}
.mb1,
.basic-box .mb1{
	margin-bottom:1rem;
}
.mb2,
.basic-box .mb2{
	margin-bottom:2rem;
}
.mb3,
.basic-box .mb3{
	margin-bottom:3rem;
}
.mb4,
.basic-box .mb4{
	margin-bottom:4rem;
}
.pt2,
.basic-box .pt2{
	padding-top:2rem;
}
.pt3,
.basic-box .pt3{
	padding-top:3rem;
}
.pt4,
.basic-box .pt4{
	padding-top:4rem;
}
.pb2,
.basic-box .pb2{
	padding-bottom:2rem;
}
.pb3,
.basic-box .pb3{
	padding-bottom:3rem;
}
.pb4,
.basic-box .pb4{
	padding-bottom:4rem;
}
.pc-br{
	display:block;
}
.sp-br{
	display:none;
}
@media screen and (min-width:769px) and ( max-width:1100px){
	
}
@media screen and (max-width:768px){
	.pc-br{
		display:none;
	}
	.sp-br{
		display:block;
	}
}
/***** header *****/
.site-header{
	width: 100%;
	height: auto;
	background: rgb(255 255 255 / 90%);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9;
}
.site-header>.inner{
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: space-between;
	padding: 0 0 0 2%;
}
.site-header .logo{
	width: 30%;
}
.site-header .logo>a{
	display: inline-block;
}
.site-header .logo>a>img{
	width: 100%;
	max-width: none;
	max-height: 45px;
	object-fit: contain;
	object-position: left;
}
.site-header .head-menu{
	width: 70%;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: flex-end;
}
.site-header .head-menu>.wrap{
	
}
.site-header .head-menu>.wrap>ul{
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	gap: 20px;
}
.site-header .head-menu>.wrap>ul>li{
	height: 100%;
}
.site-header .head-menu>.wrap>ul>li.type1{
	background-color: var(--key-color);
	padding: 15px 20px;
}
.site-header .head-menu>.wrap>ul>li>a{
	font-size: 25px;
	color: var(--key-color);
	font-family: var(--serif-font);
}
.site-header .head-menu>.wrap>ul>li.type1>a{
	font-size: 16px;
	color: #fff;
	text-align: center;
	line-height: 1.7em;
}
.site-header .head-menu>.wrap>ul>li.type1>a:hover{
	opacity:0.5;
}
.site-header .head-menu>.wrap>ul>li>a>p{
	
}
.site-header .head-menu>.wrap>ul>li>a>p>span{
	font-size: 1.2em;
}
@media screen and (max-width:768px){
	.site-header>.inner{
		padding: 10px 0 10px 2%;
	}
	.site-header .logo{
		width: 50%;
	}
	.site-header .logo>a>img{
		max-height: none;
		height: 50px;
	}
	.site-header .head-menu{
		display: none;
	}
}
/***** footer *****/
.site-footer{
	background-color: #F6F7F8;
}
.site-footer>.inner{
	width: 100%;
	max-width: 1200px;
	padding: 30px 2% 25px;
	margin: auto;
}
.site-footer>.inner>.block1{
	
}
.site-footer>.inner>.block1>.t1{
	font-size: 18px;
	font-weight: 500;
	color: #1C1455;
}
.site-footer>.inner>.block1>.t2{
	margin: 15px 0;
}
.site-footer>.inner>.block1>.t2>img{
	max-height: 45px;
}
.site-footer>.copyright{
	background-color: #003684;
	padding: 15px 0 5px;
}
.site-footer>.copyright>p{
	font-size: 14px;
	color: #fff;
	font-family: var(--sans-font);
	width: 100%;
	max-width: 1200px;
	padding: 0 2%;
	margin: auto;
}
@media screen and (max-width:768px){
	.site-footer>.inner{
		padding: 40px 5% 30px;
	}
	.site-footer>.inner>.block1>.t1{
		font-size: 16px;
	}
	.site-footer>.inner>.block1>.t2>img{
		max-height: 35px;
	}
	.site-footer>.copyright{
		text-align: center;
	}
	.site-footer>.copyright>p{
		font-size: 12px;
	}
}
/***** head-title-box *****/
.head-title-box{
	width: 100%;
	height: 100vh;
	overflow: hidden;
	position: relative;
}
.head-title-box>.wrap{
	
}
.head-title-box>.wrap>.image{
	
}
.head-title-box>.wrap>.image>div{
	background-color: var(--key-color);
}
.head-title-box>.wrap>.image>div>img{
	width: 100%;
	max-width: none;
	height: 100vh;
	object-fit: cover;
	object-position: 50% 50%;
	opacity: 0.7;
}
.head-title-box>.wrap>.text{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.head-title-box>.wrap>.text>div{
	width: 100%;
	height: 100%;
	max-width: 1200px;
	display: flex;
	margin: auto;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: flex-start;
}
.head-title-box>.wrap>.text>div>.t1{
	font-size: 35px;
	color: #fff;
	margin-bottom: 30px;
}
.head-title-box>.wrap>.text>div>.t2{
	display: inline-block;
	background-color: rgb(255 255 255 / 56%);
	font-size: 18px;
	font-weight: 700;
	color: #003F73;
	line-height: 1.7em;
	padding: 10px 20px;
}
@media screen and (max-width:768px){
	.head-title-box{
		height: 80vh;
	}
	.head-title-box>.wrap>.image>div>img{
		height: 80vh;
		object-position: 30% 50%;
	}
	.head-title-box>.wrap>.text>div{
		padding: 0 5%;
	}
	.head-title-box>.wrap>.text>div>.t1{
		font-size: 24px;
	}
	.head-title-box>.wrap>.text>div>.t2{
		font-size: 16px;
	}
}
/***** basic-box *****/
.basic-box.color-w{
	background-color: #fff;
}
.basic-box.color1{
	background-color: #0B5DA2;
}
.basic-box.color2{
	background-color: #F6F7F8;
}
.basic-box.color3{
	background-color: #003F73;
}
.basic-box.color4{
	background-color: #ededee;
}
.basic-box.color5{
	background-color: #074E8F;
}
.basic-box.bg-over{
	width: 100%;
	height: 100%;
	position: relative;
}
.basic-box>.bg-back{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -2;
}
.basic-box>.bg-back.bgcolor1{
	background-color: #074E8F;
}
.basic-box>.bg-back.bgcolor2{
	background-color: #F6F7F8;
}
@media screen and (max-width:768px){
	
	
}
/***** box1 *****/
.box1{
	
}
.box1>.inner{
	width: 100%;
	max-width: 1200px;
	padding: 20px 2%;
	margin: auto;
}
.box1 .block1{
	
}
.box1 .block1>.wrap{
	
}
.box1 .block1>.wrap>ul{
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
}
.box1 .block1>.wrap>ul>li{
	width: calc(100% / 3);
	display: flex;
	justify-content: center;
}
.box1 .block1>.wrap>ul>li:not(:last-child){
	border-right: 1px solid #fff;
}
.box1 .block1>.wrap>ul>li>div{
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	gap: 15px;
}
.box1 .block1>.wrap>ul>li>div>.image{
	
}
.box1 .block1>.wrap>ul>li>div>.image>img{
	height: 45px;
}
.box1 .block1>.wrap>ul>li>div>.t1{
	font-size: 20px;
	color: #fff;
	font-family: var(--sans-font);
	font-weight: 500;
}
@media screen and (max-width:768px){
	.box1>.inner{
		padding: 10px 5%;
	}
	.box1 .block1>.wrap>ul{
		flex-direction: column;
	}
	.box1 .block1>.wrap>ul>li:not(:last-child){
		border-right: none;
		border-bottom: 1px solid #fff;
	}
	.box1 .block1>.wrap>ul>li{
		width: 90%;
		padding: 10px 0;
	}
	.box1 .block1>.wrap>ul>li>div>.image>img{
		height: 35px;
	}
	.box1 .block1>.wrap>ul>li>div>.t1{
		font-size: 18px;
	}
}
/***** box2 *****/
.box2{
	
}
.box2>.inner{
	width: 100%;
	max-width: 1200px;
	padding: 20px 2% 50px;
	margin: auto;
}
.box2 .title{
	width: 100%;
	max-width: 1200px;
	position: relative;
	margin: auto;
}
.box2 .title.height1{
	height: 200px;
}
.box2 .title.height2{
	height: 100px;
	margin-top: 30px;
	margin-bottom: 10px;
}
.box2 .title.height3{
	margin-top: 30px;
	margin-bottom: 60px;
}
.box2 .title>.bg{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	background-image: unset;
}
.box2 .title>.bg>img{
	height: 90%;
	max-height: 180px;
}
.box2 .title>.bg>.im1{
	position: absolute;
	left: calc(100vw / 10);
	bottom: 0;
}
.box2 .title>.bg>.im2{
	position: absolute;
	right: calc(100vw / 10);
	bottom: 0;
}
.box2 .title>.text{
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	flex-wrap: nowrap;
	position: relative;
}
.box2 .title>.text>.t1{
	font-size: 20px;
	color: #265AA0;
	font-weight: 700;
	margin-bottom: 10px;
}
.box2 .title>.text>.t2{
	font-size: 24px;
	font-weight: 700;
	text-align: center;
}
.box2 .block1{
	
}
.box2 .block1>.wrap{
	
}
.box2 .block1>.wrap>.list-box{
	
}
.box2 .block1>.wrap>.list-box>ul{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 20px;
}
.box2 .block1>.wrap>.list-box>ul>li{
	border: 1px solid #003F73;
	background-color: #fff;
	width: calc(50% - 20px);
}
.box2 .block1>.wrap>.list-box>ul>li>div{
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	gap: 10px;
	padding: 25px 20px;
}
.box2 .block1>.wrap>.list-box>ul>li>div>.image{
	min-width: 50px;
}
.box2 .block1>.wrap>.list-box>ul>li>div>.image>img{
	width: 40px;
}
.box2 .block1>.wrap>.list-box>ul>li>div>.t1{
	font-size: 20px;
	color: #003F73;
	font-weight: 700;
}
.box2 .block2{
	
}
.box2 .block2>.wrap{
	
}
.box2 .block2>.wrap>.text{
	text-align: center;
}
.box2 .block2>.wrap>.text>div{
	display: inline-block;
	border: 1px solid #003F73;
	background-color: #fff;
	padding: 30px 40px;
}
.box2 .block2>.wrap>.text>div>.t1{
	display: inline-block;
	font-size: 22px;
	font-weight: 700;
	background-color: #003F73;
	color: #fff;
	padding: 10px 30px;
	margin-bottom: 20px;
}
.box2 .block2>.wrap>.text>div>.t2{
	font-size: 20px;
	line-height: 1.7em;
	font-weight: 700;
	text-align: left;
}
.box2 .block2>.wrap>.text>div>.t2>.marker{
	position: relative;
	z-index: 1;
}
.box2 .block2>.wrap>.text>div>.t2>.marker::after{
	content: "";
	position: absolute;
	left: 0;
	bottom: 2px;
	height: 4px;
	width: 100%;
	background-color: #F88600;
	z-index: -1;
}
.box2 .block3{
	width: 80%;
	margin: auto;
}
.box2 .block3>.wrap{
	
}
.box2 .block3>.wrap>.up{
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	margin-bottom: 40px;
}
.box2 .block3>.wrap>.up>.image{
	width: 50%;
	padding-right: 30px;
}
.box2 .block3>.wrap>.up>.image>img{
	max-width: none;
	width: 100%;
}
.box2 .block3>.wrap>.up>.text{
	width: 50%;
	padding-left: 30px;
}
.box2 .block3>.wrap>.up>.text>.title{
	border-bottom: 1px solid var(--border-color);
	padding-bottom: 15px;
	margin-bottom: 15px;
}
.box2 .block3>.wrap>.up>.text>.title>.t1{
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 7px;
}
.box2 .block3>.wrap>.up>.text>.title>.t2{
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 7px;
}
.box2 .block3>.wrap>.up>.text>.title>.t3{
	font-size: 15px;
}
.box2 .block3>.wrap>.up>.text>.title>.image{
	display:none;
}
.box2 .block3>.wrap>.up>.text>.text{
	
}
.box2 .block3>.wrap>.up>.text>.text .mb2{
	margin-bottom: 20px;
}
.box2 .block3>.wrap>.up>.text>.text .mb3{
	margin-bottom: 30px;
}
.box2 .block3>.wrap>.up>.text>.text>.t1{
	font-size: 16px;
	line-height: 1.7em;
}
.box2 .block3>.wrap>.up>.text>.text>.t2{
	font-size: 16px;
	line-height: 1.7em;
}
.box2 .block3>.wrap>.up>.text>.text>.t3{
	
}
.box2 .block3>.wrap>.up>.text>.text>.t3>p{
	font-size: 16px;
	line-height: 1.7em;
}
.box2 .block3>.wrap>.up>.text>.text>.t3>ul{
	
}
.box2 .block3>.wrap>.up>.text>.text>.t3>ul>li{
	font-size: 16px;
	line-height: 1.7em;
}
.box2 .block3>.wrap>.low{
	
}
.box2 .block3>.wrap>.low>div{
	
}
.box2 .block3>.wrap>.low>div>.t1{
	font-size: 16px;
	line-height: 1.7em;
}
@media screen and (max-width:768px){
	.box2>.inner{
		padding: 20px 5% 50px;
	}
	.box2 .title>.text>.t1{
		font-size: 18px;
	}
	.box2 .title>.text>.t2{
		font-size: 20px;
	}
	.box2 .block1>.wrap>.list-box>ul{
		flex-direction: column;
    }
	.box2 .block1>.wrap>.list-box>ul>li{
		width: 100%;
	}
	.box2 .block1>.wrap>.list-box>ul>li>div>.image>img{
		width: 35px;
	}
	.box2 .block1>.wrap>.list-box>ul>li>div>.t1{
		font-size: 18px;
	}
	.box2 .block2>.wrap>.text>div{
		padding: 30px 30px;
	}
	.box2 .block2>.wrap>.text>div>.t1{
		width: 100%;
		font-size: 18px;
	}
	.box2 .block2>.wrap>.text>div>.t2{
		font-size: 18px;
	}
	.box2 .block3{
		width: 100%;
	}
	.box2 .block3>.wrap>.up{
		flex-direction: column;
	}
	.box2 .block3>.wrap>.up>.image{
		display: none;
	}
	.box2 .block3>.wrap>.up>.text{
		width: 100%;
		padding-left: 0;
	}
	.box2 .block3>.wrap>.up>.text>.title{
		text-align: center;
	}
	.box2 .block3>.wrap>.up>.text>.title>.image{
		display: flex;
		justify-content: center;
		margin: 40px 0 20px;
	}
	.box2 .block3>.wrap>.up>.text>.title>.image>img{
		width: 70%;
	}
}
/***** box3 *****/
.box3{
	
}
.box3>.inner{
	width: 100%;
	max-width: 1200px;
	padding: 20px 0 0;
	margin: auto;
}
.box3 .title{
	width: 100%;
	height: 100%;
	position: relative;
}
.box3 .title>.wrap{
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;
	gap: 50px;
	overflow: hidden;
}
.box3 .title>.wrap>.image{
	
}
.box3 .title>.wrap>.image>img{
	max-height: 120px;
}
.box3 .title>.wrap>.text{
	
}
.box3 .title>.wrap>.text>.t1{
	font-size: 24px;
	font-weight: 700;
}
.box3.color3 .title>.wrap>.text>.t1{
	color: #fff;
}
.box3.color4 .title>.wrap>.text>.t1{
	color: #000;
}
.box3 .title>.wrap>.text>.t1>.dott{
	position: relative;
}
.box3 .title>.wrap>.text>.t1>.dott::after{
	content: "・";
	position: absolute;
	top: -24px;
	left: 0;
	right: 0;
}
.box3 .title>.arrow{
	position: absolute;
	left: 0;
	right: 0;
	bottom: -40px;
	display: flex;
	justify-content: center;
}
.box3 .title>.arrow>svg{
	height: 40px;
}
.box3 .title>.arrow>svg path{
	
}
@media screen and (max-width:768px){
	.box3 .title>.wrap{
		gap: 20px;
		height: auto;
		    align-items: flex-end;
	}
	.box3 .title>.wrap>.image>img{
		max-height: 70px;
	}
	.box3 .title>.wrap>.text{
		padding-bottom: 20px;
		padding-right: 20px;
	}
	.box3 .title>.wrap>.text>.t1{
		font-size: 16px;
	}
	.box3 .title>.arrow{
		bottom: -30px;
	}
	.box3 .title>.arrow>svg{
		height: 30px;
	}
}
/***** box4 *****/
.box4{
	
}
.box4>.inner{
	width: 100%;
	max-width: 1200px;
	margin: auto;
}
.box4 .block1{
	
}
.box4 .block1>.wrap{
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
}
.box4 .block1.reverse>.wrap{
	flex-direction: row-reverse;
}
.box4 .block1>.wrap>.image{
	width: 50%;
	height: auto;
	overflow: hidden;
}
.box4 .block1>.wrap>.image>div{
	width: 100%;
	height: 100%;
}
.box4 .block1>.wrap>.image>div>img{
	height: 100%;
	object-fit: cover;
}
.box4 .block1>.wrap>.text{
	width: 50%;
	height: auto;
	min-height: 360px;
	position: relative;
}
.box4 .block1>.wrap>.text>.wrap{
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: space-between;
	position: relative;
	z-index: 1;
	padding: 20px 0px 20px 40px;
}
.box4 .block1.reverse>.wrap>.text>.wrap{
	padding: 20px 40px 20px 0px;
}
.box4 .block1>.wrap>.text>.wrap>.t1{
	
}
.box4 .block1>.wrap>.text>.wrap>.t1>.t1-1{
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	gap:20px;
	margin-bottom: 20px;
}
.box4 .block1>.wrap>.text>.wrap>.t1>.t1-1>.t1-1-1{
	font-size: 50px;
	color: rgb(0 63 115 / 10%);
	line-height: 1em;
}
.box4 .block1>.wrap>.text>.wrap>.t1>.t1-1>.t1-1-2{
	font-size: 24px;
	font-weight: 700;
	color: #003D6E;
	line-height: 1.3em;
}
.box4 .block1>.wrap>.text>.wrap>.t1>.t1-2{
	width: 70%;
	margin-bottom: 20px;
}
.box4 .block1>.wrap>.text>.wrap>.t1>.t1-2>.t1-2-1{
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 10px;
}
.box4 .block1>.wrap>.text>.wrap>.t1>.t1-2>.t1-2-2{
	font-size: 16px;
	line-height: 1.7em;
	background-color: rgb(255 255 255 / 50%);
	padding-right: 10px;
}
.box4 .block1>.wrap>.text>.wrap>.t2{
	
}
.box4 .block1>.wrap>.text>.wrap>.t2>.t2-1{
	margin-bottom: 15px;
}
.box4 .block1>.wrap>.text>.wrap>.t2>.t2-1>p{
	display: inline-block;
	font-size: 15px;
	font-weight: 500;
	color: #003D6E;
	position: relative;
}
.box4 .block1>.wrap>.text>.wrap>.t2>.t2-1>p>span{
	position: absolute;
	left: 0;
	bottom: -5px;
	display: inline-block;
	width: 120%;
	height: 1px;
	background-color: var(--border-color);
}
.box4 .block1>.wrap>.text>.wrap>.t2>.t2-1>p>span::after{
	content:"";
	position: absolute;
	right: 0;
	display: block;
	height: 1px;
	background-color: var(--border-color);
	width: 15px;
	transform: rotateZ(45deg);
	transform-origin: right bottom;
}
.box4 .block1>.wrap>.text>.wrap>.t2>.t2-2{
	display: inline-block;
	font-size: 16px;
	line-height: 1.7em;
	font-weight: 500;
	color: #003D6E;
	width: 70%;
	background-color: rgb(255 255 255 / 50%);
}
.box4 .block1>.wrap>.text>.image{
	position: absolute;
	right: 0;
	bottom: 0;
	height: 50%;
}
.box4 .block1>.wrap>.text>.image>div{
	height: 100%;
}
.box4 .block1>.wrap>.text>.image>div>img{
	height: 100%;
}
@media screen and (max-width:768px){
	.box4 .block1{
		padding-bottom: 40px;
	}
	.box4 .block1>.wrap,
	.box4 .block1.reverse>.wrap{
		flex-direction: column;
	}
	.box4 .block1>.wrap>.image{
		width: 100%;
	}
	.box4 .block1>.wrap>.image>div>img{
		width: 100%;
	}
	.box4 .block1>.wrap>.text{
		width: 100%;
	}
	.box4 .block1>.wrap>.text>.wrap,
	.box4 .block1.reverse>.wrap>.text>.wrap{
		padding: 20px 5% 20px;
	}
	.box4 .block1>.wrap>.text>.wrap>.t1{
		min-height: 200px;
	}
	.box4 .block1>.wrap>.text>.wrap>.t1>.t1-1>.t1-1-1{
		font-size: 40px;
	}
	.box4 .block1>.wrap>.text>.wrap>.t1>.t1-1>.t1-1-2{
		font-size: 20px;
	}
	.box4 .block1>.wrap>.text>.wrap>.t1>.t1-2{
		width: 100%;
		margin-bottom: 30px;
	}
	.box4 .block1>.wrap>.text>.wrap>.t1>.t1-2>.t1-2-1{
		font-size: 18px;
	}
	.box4 .block1>.wrap>.text>.wrap>.t2>.t2-2{
		width: 65%;
		background-color: rgb(255 255 255 / 90%);
	}
	.box4 .block1>.wrap>.text>.image{
		height: 35%;
	}
}
/***** box5 *****/
.box5{
	
}
.box5>.inner{
	width: 100%;
	max-width: 1200px;
	padding: 70px 0;
	margin: auto;
}
.box5 .block1{
	
}
.box5 .block1>.wrap{
	
}
.box5 .block1>.wrap>ul{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: center;
}
.box5 .block1>.wrap>ul>li{
	width: calc((100% / 4) - 20px);
	height: auto;
}
.box5 .block1>.wrap>ul>li>div{
	height: 100%;
	min-height: 300px;
	background-color: #fff;
	border-radius: 15px;
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: space-between;
	padding: 25px 20px 0;
}
.box5 .block1>.wrap>ul>li>div>.t1{
	display: flex;
	flex-direction: column;
	align-items: center;
}
.box5 .block1>.wrap>ul>li>div>.t1>.t1-1{
	text-align: center;
	margin-bottom: 10px;
}
.box5 .block1>.wrap>ul>li>div>.t1>.t1-1>p{
	display: inline-flex;
	font-size: 20px;
	font-weight: 700;
	background-color: #064e8f;
	color: #fff;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	justify-content: center;
	align-items: center;
}
.box5 .block1>.wrap>ul>li>div>.t1>.t1-2{
	font-size: 16px;
	font-weight: 600;
	line-height: 1.7em;
}
.box5 .block1>.wrap>ul>li>div>.t2{
	display: flex;
	justify-content: center;
}
.box5 .block1>.wrap>ul>li>div>.t2>img{
	max-height: 150px;
}
@media screen and (max-width:768px){
	.box5>.inner{
		padding: 70px 5%;
	}
	.box5 .block1>.wrap>ul{
		flex-direction: column;
	}
	.box5 .block1>.wrap>ul>li{
		width: 100%;
	}
	.box5 .block1>.wrap>ul>li>div{
		min-height: auto;
	}
	.box5 .block1>.wrap>ul>li>div>.t1{
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		align-items: center;
		gap: 20px;
	}
	.box5 .block1>.wrap>ul>li>div>.t1>.t1-1{
		margin-bottom: 0;
	}
	.box5 .block1>.wrap>ul>li>div>.t1>.t1-2{
		line-height: 1.5em;
	}
}
/***** box6 *****/
.box6{
	
}
.box6>.inner{
	width: 100%;
	max-width: 1200px;
	padding: 50px 2% 70px;
	margin: auto;
}
.box6 .title{
	margin-bottom: 40px;
}
.box6 .title.height1{
	
}
.box6 .title>.text{
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	flex-wrap: nowrap;
}
.box6 .title>.text>.t1{
	font-size: 20px;
	color: #fff;
	font-weight: 700;
	margin-bottom: 10px;
}
.box6 .title>.text>.t2{
	font-size: 24px;
	font-weight: 700;
	color: #fff;
}
.box6 .block1{
	width: 70%;
	margin: auto;
}
.box6 .block1>.wrap{
	
}
.box6 .block1>.wrap>.t1{
	font-size: 18px;
	color: #fff;
	line-height: 2.2em;
}
.box6 .block2{
	
}
.box6 .block2>.wrap{
	background-color: #fff;
	padding: 30px 40px;
}
.box6 .block2>.wrap>ul{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 20px;
}
.box6 .block2>.wrap>ul>li{
	width: calc((100% / 2) - 10px);
}
.box6 .block2>.wrap>ul>li>div{
	
}
.box6 .block2>.wrap>ul>li>div>.text-q{
	background-color: #EDF2F8;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
	padding: 12px 15px;
}
.box6 .block2>.wrap>ul>li>div>.text-q>.text{
	
}
.box6 .block2>.wrap>ul>li>div>.text-q>.text>p{
	font-size: 16px;
	color: #003F73;
	font-weight: 600;
	text-indent: -1.8em;
	padding-left: 1.8em;
}
.box6 .block2>.wrap>ul>li>div>.text-q>.icon{
	font-size: 17px;
	font-weight: 900;
	line-height: 1em;
	cursor: pointer;
	transition: all 300ms 0s ease;
}
.box6 .block2>.wrap>ul>li>div>.text-q>.icon::after{
	content: "＋";
}
.box6 .block2>.wrap>ul>li>div>.text-q>.icon.open::after{
	content: "－";
}
.box6 .block2>.wrap>ul>li>div>.text-q>.icon:hover{
	opacity:0.5;
}
.box6 .block2>.wrap>ul>li>div>.text-a{
	background-color: #F6F7F8;
	overflow: hidden;
}
.box6 .block2>.wrap>ul>li>div>.text-a>.wrap{
	height: 0;
	transition: all 300ms 0s ease;
}
.box6 .block2>.wrap>ul>li>div>.text-a>.wrap>div{
	padding: 12px 15px;
}
.box6 .block2>.wrap>ul>li>div>.text-a>.wrap>div>p{
	font-size: 16px;
	color: #003F73;
	font-weight: 600;
	text-indent: -1.8em;
	padding-left: 1.8em;
}
@media screen and (max-width:768px){
	.box6>.inner{
		padding: 50px 5% 70px;
	}
	.box6 .title>.text>.t1{
		font-size: 18px;
	}
	.box6 .title>.text>.t2{
		font-size: 20px;
	}
	.box6 .block1{
		width: 100%;
	}
	.box6 .block2>.wrap{
		padding: 30px 20px;
	}
	.box6 .block2>.wrap>ul{
		flex-direction: column;
	}
	.box6 .block2>.wrap>ul>li{
		width: 100%;
	}
}
/***** box7 *****/
.box7{
	
}
.box7>.inner{
	width: 100%;
	max-width: 1200px;
	padding: 50px 2% 70px;
	margin: auto;
}
.box7 .title{
	margin-bottom: 40px;
}
.box7 .title.height1{
	
}
.box7 .title>.text{
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	flex-wrap: nowrap;
}
.box7 .title>.text>.t1{
	font-size: 20px;
	color: #265AA0;
	font-weight: 700;
	margin-bottom: 10px;
}
.box7 .title>.text>.t2{
	font-size: 24px;
	font-weight: 700;
}
.box7 .block1{
	
}
.box7 .block1>ul{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 20px;
}
.box7 .block1>ul>li{
	width: calc((100% / 3) - 15px);
}
.box7 .block1>ul>li>div{
	
}
.box7 .block1>ul>li>div>a{
	transition: all 300ms 0s ease;
}
.box7 .block1>ul>li>div>a:hover{
	opacity:0.5;
}
.box7 .block1>ul>li>div>a>.image{
	margin-bottom: 10px;
}
.box7 .block1>ul>li>div>a>.image>img{
	aspect-ratio: 4 / 3;
	object-fit: cover;
	height: auto;
}
.box7 .block1>ul>li>div>a>.text{
	
}
.box7 .block1>ul>li>div>a>.text>.t1{
	font-size: 14px;
	margin-bottom: 5px;
}
.box7 .block1>ul>li>div>a>.text>.t2{
	font-size: 16px;
	font-weight: 600;
	line-height: 1.7em;
}
@media screen and (max-width:768px){
	.box7>.inner{
		padding: 50px 5% 70px;
	}
	.box7 .title>.text>.t1{
		font-size: 18px;
	}
	.box7 .title>.text>.t2{
		font-size: 20px;
	}
	.box7 .block1>ul{
		flex-direction: column;
	}
	.box7 .block1>ul>li{
		width: 100%;
	}
	.box7 .block1>ul>li:not(:last-child){
		margin-bottom: 20px;
	}
	.box7 .block1>ul>li>div>a>.image{
		display: flex;
		justify-content: center;
	}
	.box7 .block1>ul>li>div>a>.image>img{
		width: 80%;
	}
}
/***** box8 *****/
.box8{
	
}
.box8>.inner{
	
}
.box8 .block1{
	
}
.box8 .block1>div{
	
}
.box8 .block1>div>img{
	max-width: none;
	width: 100%;
	min-height: 300px;
	object-fit: cover;
	object-position: 50% 50%;
}
@media screen and (max-width:768px){
	.box8 .block1>div>img{
		min-height: 200px;
	}
}
/***** box9 *****/
.box9{
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
}
.box9>.bg-contact{
	position: absolute;
	top: 0;
	left: 0;
	background-color: var(--key-color);
	width: 100%;
	height: 100%;
}
.box9>.bg-contact>img{
	opacity: 0.7;
	height: 100%;
	width: 100%;
	object-fit: cover;
	object-position: 50% 50%;
}
.box9>.inner{
	position: relative;
	width: 100%;
	max-width: 1200px;
	padding: 50px 2% 50px;
	margin: auto;
}
.box9 .title{
	margin-bottom: 40px;
}
.box9 .title>.text{
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	flex-wrap: nowrap;
}
.box9 .title>.text>.t1{
	font-size: 20px;
	color: #fff;
	font-weight: 700;
	margin-bottom: 10px;
}
.box9 .title>.text>.t2{
	font-size: 24px;
	font-weight: 700;
	color: #fff;
}
.box9 .block1{
	width: 70%;
	margin: auto;
}
.box9 .block1>.wrap{
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
}
.box9 .block1>.wrap>.up{
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	background: linear-gradient(180deg, #1673c9, #00274a);
	padding: 40px 0 30px;
}
.box9 .block1>.wrap>.up>.link-bt{
	width: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.box9 .block1>.wrap>.up>.link-bt>div{
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	width: 100%;
	align-items: center;
}

.box9 .block1>.wrap>.up>.link-bt:first-child>div{
    border-right: 1px solid #fff;
}
.box9 .block1>.wrap>.up>.link-bt>div>.t1{
	font-size: 18px;
	color: #fff;
	font-family: var(--sans-font);
	margin-bottom: 20px;
}
.box9 .block1>.wrap>.up>.link-bt>div>a{
	display: inline-block;
	width: 70%;
	font-size: 18px;
	font-weight: 500;
	background-color: #fff;
	font-family: var(--sans-font);
	text-align: center;
	padding: 10px 20px;
	transition: all 300ms 0s ease;
}
.box9 .block1>.wrap>.up>.link-bt>div>a:hover{
	opacity:0.5;
}
.box9 .block1>.wrap>.mid{
	background-color: #fff;
	padding: 30px 0 0px;
}
.box9 .block1>.wrap>.mid>div{
	text-align: center;
}
.box9 .block1>.wrap>.mid>div>.t1{
	font-size: 24px;
	font-weight: 900;
	color: var(--key-color);
	margin-bottom: 5px;
}
.box9 .block1>.wrap>.mid>div>.t2{
	font-size: 16px;
	font-family: var(--sans-font);
	color: #001E49;
}
.box9 .block1>.wrap>.low{
	background-color: #fff;
	padding: 30px 0;
}
.box9 .block1>.wrap>.low>div{
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
}
.box9 .block1>.wrap>.low>div>div{
	width: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
}
.box9 .block1>.wrap>.low>div>.t1{
	
}
.box9 .block1>.wrap>.low>div>.t1>p{
	font-size: 20px;
	font-weight: 700;
	font-family: var(--sans-font);
	text-align: center;
	line-height: 1.7em;
}
.box9 .block1>.wrap>.low>div>.t2{
	
}
.box9 .block1>.wrap>.low>div>.t2>.image{
	
}
.box9 .block1>.wrap>.low>div>.t2>.image>img{
	width: 35px;
}
.box9 .block1>.wrap>.low>div>.t2>.text{
	text-align: center;
}
.box9 .block1>.wrap>.low>div>.t2>.text>.t1{
	font-size: 24px;
	font-weight: 700;
	font-family: var(--sans-font);
	color: #074E8F;
}
.box9 .block1>.wrap>.low>div>.t2>.text>.t2{
	font-size: 12px;
	color: #074E8F;
	font-family: var(--sans-font);
	font-weight: 600;
}
@media screen and (max-width:768px){
	.box9>.inner{
		padding: 50px 5% 50px;
	}
	.box9 .title>.text>.t1{
		font-size: 18px;
	}
	.box9 .title>.text>.t2{
		font-size: 20px;
	}
	.box9 .block1{
		width: 100%;
	}
	.box9 .block1>.wrap>.up{
		flex-direction: column;
		align-items: center;
	}
	.box9 .block1>.wrap>.up>.link-bt{
		width: 80%;
	}
	.box9 .block1>.wrap>.up>.link-bt:first-child>div{
		border-right: none;
		border-bottom: 1px solid #fff;
		padding-bottom: 30px;
		margin-bottom: 30px;
	}
	.box9 .block1>.wrap>.up>.link-bt>div>a{
		font-size: 16px;
	}
	.box9 .block1>.wrap>.mid{
		padding: 30px 20px 0px;
	}
	.box9 .block1>.wrap>.mid>div>.t1{
		font-size: 20px;
		margin-bottom: 15px;
	}
	.box9 .block1>.wrap>.low>div{
		flex-direction: column;
	}
	.box9 .block1>.wrap>.low>div>div{
		width: 100%;
	}
	.box9 .block1>.wrap>.low>div>.t1{
		margin-bottom: 30px;
	}
	.box9 .block1>.wrap>.low>div>.t1>p{
		font-size: 18px;
	}
}
/***** box10 *****/
.box10{
	
}
.box10>.inner{
	
}
.box10 .block1{
	
}
.box10 .block1>div{
	
}
.box10 .block1>div>iframe{
	aspect-ratio: 7 / 2;
	width: 100%;
	height: auto;
	min-height: 300px;
}
@media screen and (max-width:768px){
	.box10 .block1>div>iframe{
		aspect-ratio: 7 / 5;
		min-height: auto;
	}
	
}
/***** side-banner *****/
.side-banner{
	position: fixed;
	top: 50vh;
	right: 0;
	z-index: 1;
}
.side-banner>div{
	
}
.side-banner>div>a{
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	align-items: center;
	background-color: #003F73;
	gap: 10px;
	padding: 20px 12px;
	transition: all 300ms 0s ease;
}
.side-banner>div>a:hover{
	opacity:0.5;
}
.side-banner>div>a>.image{
	
}
.side-banner>div>a>.image>img{
	width: 25px;
}
.side-banner>div>a>p{
	font-size: 15px;
	writing-mode: vertical-lr;
	font-family: var(--sans-font);
	color: #fff;
}
@media screen and (max-width:768px){
	.side-banner{
		position: relative;
		top: auto;
		bottom: 0;
		background-color: #003684;
	}
	.side-banner>div{
		position: relative;
		height: 59px;
	}
	.side-banner>div>a{
		flex-direction: row;
		align-items: center;
		justify-content: center;
		padding: 17px 12px;
		position: fixed;
		bottom: 0;
		left: 0;
		width: 100%;
		transform: translateY(60px);
		transition: all 300ms 0s ease;
	}
	.side-banner>div>a.active{
		transform: translateY(0px);
	}
	.side-banner>div>a>p{
		font-size: 16px;
		writing-mode: unset;
	}
}




/*****  *****/


@media screen and (max-width:768px){
	
	
}
/***** fade-target *****/
.fade-target{
	transition: all 600ms 0s ease-out;
	transform: translateY(20px);
	opacity: 0;
}
.f-active{
	transform: translateY(0);
	opacity: 1;
}
@media screen and (max-width:768px){
	
	
}
/***** back top top *****/
.backtoup{
	position: fixed;
	bottom: 10px;
	right: 10px;
	cursor: pointer;
	opacity: 0;
	transition: opacity 200ms 0s ease;
	z-index: 10;
}
.backtoup.btuActive{
	opacity: 1;
}
.backtoup>div{
	width: 100%;
	height: 100%;
	position: relative;
	border: 1px solid var(--border-color);
	border-radius: 50%;
	transform: scale(0.9);
	transition: all 200ms 0s ease;
}
.backtoup:hover>div{
	transform: scale(1);
}
.backtoup>div>svg>path{
	stroke: var(--border-color);
}
@media screen and (max-width:768px){
	
	
}
/***** 404 *****/
.not-found-box .text-box{
	min-height: 50vh;
	text-align: center;
}
.not-found-box .text-box>.p-1{
	font-size: 2rem;
	font-weight: bold;
	font-family: monospace, monospace;
	margin-bottom: 2rem;
}
.not-found-box .text-box>div>p>a:hover{
	text-decoration: underline;
	-webkit-text-decoration: underline #000;
}
@media screen and (max-width:768px){
	
	
}
