@charset "utf-8";
*{
	margin:0px;
	padding:0px;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
img{
	border: 0px;
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}
body {
/*max-width: 320px;*/
	color: #000000;
	background-color: #ffffff;
	font-size: 16px;
	font-family : "Hiragino Kaku Gothic Pro","ヒラギノ角ゴ Pro W3",Osaka,sans-serif;
	text-align: left;
	-webkit-touch-callout: none;
	 text-size-adjust: 100%;
  	-webkit-text-size-adjust: 100%;
	}
@media screen and (max-width: 768px){
	body {
		font-size: 15px;
	}
}

a,a:link,a:visited {color: #000000; text-decoration: underline; outline: none;}
a:active,a:hover {color: #000000; text-decoration: none; outline: none;}


/* All box-sizing */
*, *:after, *:before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}



/* ####################################### */
/* ヘッダー */
/* ####################################### */
header{
	height: 80px;
	width: 100%;
    position: fixed;
    top: 0;
    z-index: 10;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: #1c2862;
}

header .logo{
	padding: 0 50px;
}

header .logo a{
	color: #fff;
	font-size: 1.5rem;
	font-weight: bold;
	text-decoration: none;
}


header .menu{
	display: flex;
	max-width: 980px;
	margin:0 auto;
	padding-right: 50px;
}

header .menu a{
	color: #fff;
	display: block;
	margin-right: 20px;
	padding: 10px 0px;
}

@media screen and (max-width: 768px){
	header .logo{
		padding: 0 2vh;
	}
	header .menu{
		display: block;
		width:100%;
		padding:0;
	}

  	header nav{
    	position: fixed;
    	width: 80%;
		height: 100vh;
    	top: 80px;
    	right: -100%;
    	background-color:#000;
		opacity: 0.85;
    	padding: 6vh 0 0  5vh;
  	}

	header nav ul li{
	  	width: 100%;
		padding: 10px 0px;
		font-size: 1.2rem;
	}

	header nav ul li a{
    	color: #ffffff;
		
  	}

  	header .btn-gnavi{
    	position: fixed;
    	top: 30px;
    	right: 2vh;
    	width: 30px;
    	height: 24px;
    	z-index: 3;
    	cursor: pointer;
    	transition: all 400ms;
    	-webkit-transition:all 400ms;
  	}

 	 header .btn-gnavi span {
		position: absolute;
		width: 30px;
		height: 4px;
		background: #fff;
		border-radius: 10px;
		-webkit-transition: all 400ms;
		transition: all 400ms
 	 }

 	 header .btn-gnavi span:nth-child(1){
		top: 0;
 	 }

 	 header .btn-gnavi span:nth-child(2){
		top: 10px;
 	 }

 	 header .btn-gnavi span:nth-child(3){
		top: 20px;
 	 }

 	 header .btn-gnavi.hb-open span:nth-child(1){
		transform: translate(2px, 1px) rotate(45deg);
		transform-origin: 0%; 
 	 }
 	 header .btn-gnavi.hb-open span:nth-child(2){
		opacity: 0; 
 	 }
 	 header .btn-gnavi.hb-open span:nth-child(3){
		transform: translate(2px, 3px) rotate(-45deg);
		transform-origin: 0%; 
 	 }
}



/* ####################################### */
/* フッター */
/* ####################################### */
footer {	
	margin-top: 30vh;
}
footer div{
	display: flex;
}
footer .bottom{
	border-top: 3px solid #404b7b;
	padding-top: 20px;
}
footer .logo{
	max-width: 290px;
	margin-right: 20px;
}
footer .mail-add{
	font-size: 90%;
	padding: 20px 0;
	display: flex; 
	flex-direction: column; 
}
footer .mail-add p{
	align-items: center;
}

footer .menu{
	display: flex;
	margin:10px auto;
}

footer .menu li a{
	color: #000;
	display: block;
	margin: 0 20px;
	padding: 10px 0px;
}

footer .menu span{
	position: relative;
	display: inline-block;
}
footer .menu span:before {
	content: '';
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 6px 0 6px 10px;
	border-color: transparent transparent transparent #324ca2;
	position: absolute;
	top: 0;
	left: -16px;
	bottom: 0;
	margin: auto;
}


@media screen and (max-width: 768px){
	footer {	
		margin-top: 20vh;
	}
	footer div{
		width: 100%;
		display: block;
	}
	footer .logo{
		margin:0 auto 0 auto;
		text-align: center;
	}
	footer .mail-add{
		font-size: 90%;
		text-align: center;
		padding: 0 0 2vh 0;
	}
	footer .menu{
		display: block;
		margin:10px 10;
		border-top: 1px solid #404b7b;
	}
	footer .menu a{
		color: #000;
		display: block;
		margin: 0 40px;
		padding: 10px 0px;	
	}
}


/* ####################################### */
/* main */
/* ####################################### */

section{
	width: 100%;;
}
.content{
	width: 80%;
	margin: 0 auto  12vh auto ;	
	padding:  0 ;
}

@media screen and (max-width: 768px){
	.content{
		width: 100%;
		padding:  0 2vh;
	}
}

h1{
	margin-top: 100px;
	text-align: center;
	padding: 5vh 0;
	color: #1c2862;
	font-size: 1.8rem;
}
h2{
	background-color: #324ca2;
	padding: 1vh 10%;
	color: #fff;
	font-size: 1.4trem;
}

h3{
	font-size: 1.2rem;
	padding: 3vh 0%;
}


.txtB{
	font-weight: bold;
	font-size: 1.3rem;
}
.txtCr{
	color: #cc0000;
}

.subtitle{
	padding: 1vh 2vh ;
	font-weight: bold;
	background-color: #eef2fa;
}

.subtitle2{
	padding: 1vh 2vh ;
	font-weight: bold;
	background-color: #f3f3f3;
}
.subtitle3{
	border:  2px solid #324ca2;
	padding: 1vh 2vh;
	font-weight: bold;
}
.inner{
	margin-top: 5vh;
}
.inner-bottom{
	margin-bottom: 10vh;
}
.inner-bottom2{
	margin-bottom: 3vh;
}
.box{
	padding: 1vh ;
	margin-bottom: 5vh;
}

.list-disc,
.list-decimal{
	margin: 2vh 0vh;
}
.list-disc li{
	list-style-type: disc;
	margin-left: 40px;
}
.list-decimal li{
	list-style-type: decimal;
	margin-left: 40px;
}

.column2{
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	gap:30px;
}
.column2 .column2-itm{
	display: block;
	width: calc(50% - 15px);
}
.column3{
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	gap:30px;
}
.column23 .column3-itm{
	display: block;
	width: calc(33% - 10px);
}
@media screen and (max-width: 768px){
	.column2{
		display: block;
		width: 100%;
		gap:30px;
	}
	.column2 .column2-itm{
		display: block;
		width: 100%;
		padding-bottom: 3vh;
	}
}

.bt a{
	display: block;
	width: 100%;
	color: #324ca2;
	font-size: 120%;
	font-weight: bold;
	text-decoration: none;
	text-align: center;
	padding: 30px;
	border-radius:10px;
	border: 2px solid #324ca2;
}
.bt a:hover{
	background-color: #324ca2;
	color: #fff;
}

.bt a span{
	position: relative;
	display: inline-block;
}
.bt a span:before {
	content: '';
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 10px 0 10px 12px;
	border-color: transparent transparent transparent #324ca2;
	position: absolute;
	top: 0;
	left: -40px;
	bottom: 0;
	margin: auto;
}
.bt a:hover span:before {
	border-color: transparent transparent transparent #fff;
}

.bt-center{
	width: 100%;
	margin: 0 auto;
		
}
