@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap');




*{margin:0;padding:0;text-decoration:none}fieldset{border:0}body{line-height:1.8}body,dd,dl,dt,form,h1,h2,h3,h4,h5,h6,input,li,ol,p,select,ul{margin:0;padding:0}img{border:0;vertical-align:top}a{text-decoration:none}em{font-style:normal}ul li{list-style-type:none;list-style-image:none}address{font-style:normal}
html{font-size: 62.5%;}
body{font-size: 1.6em;}


/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* 共通項目 */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */



/* マージン */
.margin02 {	margin-bottom: 2px; }
.margin05 {	margin-bottom: 5px; }
.margin06 {	margin-bottom: 6px; }
.margin08 {	margin-bottom: 8px; }
.margin10 {	margin-bottom: 10px; }
.margin15 {	margin-bottom: 15px; }
.margin20 {	margin-bottom: 20px; }
.margin30 {	margin-bottom: 30px; }
.margin40 {	margin-bottom: 40px; }


/* 文字装飾 */
strong {
	font-weight: 700;
}

ul {
}
ul li {
	list-style:none;	
}


/* float解除 */
.cbox { 
}
* html .cbox {
	zoom: 100%;
}
*:first-child+html .cbox {
	display: inline-block;
}
.cbox:after {
	content: "."; 
	clear: both; 
	height: 0; 
	display: block; 
	visibility: hidden;
}

input[type="button"],input[type="text"],input[type="submit"],input[type="image"],textarea{
    -webkit-appearance: none;
    border-radius: 0;
}

/* box-sizing */ 
* {
	box-sizing: border-box;
}




/* リンク */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
a {
	color: #000;
	transition: 0.3s;
	-webkit−transition: 0.3s;
}
a:hover {
}


/* テキスト装飾 */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* 小文字 */
.cap {
	line-height: 1.5;
	font-size: 86%;
}


.pc {
	display: block;
}
.sp {
	display: none;
}
table {
	width: 100%;
	border-collapse: collapse;
}
	table th {
		font-weight: 500;
	}
	table td {
	}





/* 横幅 */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
body {
	position: relative;
	font-family: "Noto Sans JP";
	font-weight: 500;
	color: #000;
	padding: 0;
	margin: 0;
	letter-spacing: 0.1em;
	line-height: 2;
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;
	/*text-align: justify;*/
	text-justify: inter-ideograph;
	-ms-text-justify: inter-ideograph;
}





/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* ヘッダー */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
#header {
	width: 100%;
	z-index: 200;
	padding: 20px 50px;
}
	* html #header {
		zoom: 100%;
	}
	*:first-child+html #header {
		display: inline-block;
	}
	#header:after {
		content: "."; 
		clear: both; 
		height: 0; 
		display: block; 
		visibility: hidden;
	}
	#header h1 {
		float: left;
		width: 370px;
		max-width: 30%;
	}
		#header h1 img {
			width: 100%;
			height: auto;
		}


	#header .telArea {
		float: right;
		font-size: 1.2rem;
		line-height: 1.4;
		margin-right: 20px;
		margin-top: 15px;
	}
		#header .telArea a {
			font-size: 2.4rem;
			position: relative;
			padding-left: 30px;
			color: #1f2774;
			font-weight: 700;
		}
		#header .telArea a::before {
			content: url("../img/icon_tel.svg");
			width: 20px;
			height: 22px;
			position: absolute;
			top: 4px;
			left: 0;
		}

	
	#header p {
		width: 250px;
		float: right;
		background: #009eff;
		text-align: center;
	}
	#header p a {
		display: block;
		color: #FFF;
		font-weight: 700;
		padding: 15px 0;
	}




/*==ナビゲーション全体の設定*/
nav{
	width: 25%;
	float: right;
	z-index: 999;
	top: 0;
	left: 0;
	transition: padding .3s;
	

	margin-right: 30px;
	text-align: center;
	font-size: 1.6rem;
	line-height: 1.4;
}
/*ナビゲーションを横並びに*/
nav ul{
	list-style: none;
	display: flex;
	justify-content: center;
}
/*2階層目以降は横並びにしない*/
nav ul ul{
	display: block;
}

/*下の階層のulや矢印の基点にするためliにrelativeを指定*/
nav ul li{
	padding: 10px 0;
	width: 33.33333%;
	position: relative;
	
	transition: .5s;

}
nav ul li:hover {
}
	nav ul li:hover a {
		color: #025083 !important;
	}



nav ul li:nth-child(5){
}
nav ul li:last-child {
	border-right: none;
}

/*ナビゲーションのリンク設定*/
nav ul li a{
	display: block;
	text-decoration: none;
	padding:10px;
	font-weight: 700;
	transition:all .3s;
}


nav ul li a:hover{
	color:#fff;	
}

/*==矢印の設定*/


/*3階層目を持つliの矢印の設定*/
nav ul ul li.has-child::before{
	content:'';
	position: absolute;
	left:6px;
	top:17px;
	width:6px;
	height:6px;
    border-top: 2px solid #fff;
    border-right:2px solid #fff;
    transform: rotate(45deg);
}

/*== 2・3階層目の共通設定 */

/*下の階層を持っているulの指定*/
nav li.has-child ul{
    /*絶対配置で位置を指定*/
	position: absolute;
	left:0;
	top:60px;
	z-index: 4;
    /*形状を指定*/
	background:#1f2774;
	width:300%;
    /*はじめは非表示*/
	visibility: hidden;
	opacity: 0;
    /*アニメーション設定*/
	transition: all .3s;
}

/*hoverしたら表示*/
nav li.has-child:hover > ul,
nav li.has-child ul li:hover > ul,
nav li.has-child:active > ul,
nav li.has-child ul li:active > ul{
  visibility: visible;
  opacity: 1;
}

/*ナビゲーションaタグの形状*/
nav li.has-child ul li {
	padding-top: 0;
	width: 100%;
	position: relative;
	border-right: none;
}

/*ナビゲーションaタグの形状*/
nav li.has-child ul li a{
	color: #FFF !important;
	font-weight: 700;
}

nav li.has-child ul li:last-child a{
	border-bottom:none;
}

nav li.has-child ul li a:hover,
nav li.has-child ul li a:active{
	color: #009eff !important;
}


/*==3階層目*/

/*3階層目の位置*/
nav li.has-child ul ul{
	top:0;
	left:182px;
	background:#66ADF5;
}

nav li.has-child ul ul li a:hover,
nav li.has-child ul ul li a:active{
	background:#448ED3;
}


/*==768px以下の形状*/

@media screen and (max-width:768px){
	nav{
		padding: 0;
	}
	
	nav ul{
		display: block;
	}
	
	nav li.has-child ul,
	nav li.has-child ul ul{
  	position: relative;
	left:0;
	top:0;
	width:100%;
	visibility:visible;/*JSで制御するため一旦表示*/
	opacity:1;/*JSで制御するため一旦表示*/
	display: none;/*JSのslidetoggleで表示させるため非表示に*/
	transition:none;/*JSで制御するためCSSのアニメーションを切る*/
}
	
nav ul li a{
	border-bottom:1px solid #ccc;
}

/*矢印の位置と向き*/

nav ul li.has-child::before{
	left:20px;	
}

nav ul ul li.has-child::before{
    transform: rotate(135deg);
	left:20px;
}
    
nav ul li.has-child.active::before{
    transform: rotate(-45deg);
}

}


nav.scroll {
  position: fixed;
  animation-name: anime;
  animation-duration: 0.3s;
}
@keyframes anime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}



/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* 基本レイアウト */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
.inner {
	width: 1200px;
	max-width: 90%;
	margin: 0 auto;
}

.article {
	margin-bottom: 80px;
}


#main {
	width: 1200px;
	max-width: 90%;
	margin: 0 auto;
}


#mainTitle {
	background: #1f2774;
	text-align: center;
	padding: 80px 0;
	margin-bottom: 8%;
}
	#mainTitle h2 {
		font-size: 3rem;
		color: #FFF;
		font-weight: 700;
	}




.set {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	
	-webkit-flex-wrap: wrap; 
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}


.title {
	margin-bottom: 40px;
	border-bottom: solid 1px #bcbed5;
	padding-bottom: 10px;
}
	.title h3 {
		font-size: 2.8rem;
		color: #009eff;
		font-weight: 900;
	}


h4 {
	font-size: 2rem;
	color: #009eff;
	font-weight: 700;
	border-left: 3px solid #009eff;
	padding-left: 10px;
	margin-bottom: 20px;
}



ul.dot {
	margin-bottom: 0px;
	padding-left: 11px;
}
	ul.dot li {
		margin-bottom: 5px;
		text-indent: -11px;
	}
	ul.dot li::before {
		display: inline-block;
		content: "";
		margin-top: 16px;
		margin-right: 7px;
		width: 4px;
		height: 4px;
		vertical-align: top;
		border-radius: 5px;
		background-color: #025083;
	}

ol.no {
	margin-left: 1.5em;
}
	ol.no li {
	}



.btn {
	max-width: 300px;
	background: #009ce5;
	text-align: center;
}
	.btn a {
		display: block;
		color: #FFF;
		padding: 20px 10px;
		font-weight: 900;
		margin-top: 30px;
	}




.textLink a {
	line-height: 1.4;
	font-size: 1.4rem;

	position: relative;
	display: inline-block;
	padding-left: 20px;
}
	.textLink a:before {
	  content: '';
	  width: 6px;
	  height: 6px;
	  border: 0;
	  border-top: solid 2px #013682;
	  border-right: solid 2px #013682;
	  position: absolute;
	  top: 50%;
	  left: 0;
	  margin-top: -4px;
	  transform: rotate(45deg);
	}







/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* フッター */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
#footer {
	font-size: 1.2rem;
	margin-top: 100px;
	background: #1f2774;
	color: #FFF;
	text-align: center;
	padding: 20px 0;
}





/* max 1023px */
@media screen and (max-width: 1023px) {
.pc {
	display: none;
}
.sp {
	display: block;
}

	
	
body {
	background: #FFF;
	font-size: 1.4rem;
}
	
	
	
	
	
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* ヘッダー */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
#header {
	width: 100%;
	z-index: 200;
	padding: 2% !important;
}
	#header h1 {
		float: left;
		width: 370px;
		max-width: 70%;
	}
		#header h1 img {
			width: 100%;
			height: auto;
		}


	#header .telArea {
		display: none;
	}

	
	#header p {
		display: none;
	}

/*==ナビゲーション全体の設定*/
nav{
	display: none;
}
	
	
	
	
	
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* 基本レイアウト */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
.inner {
}
	
#Main {
	padding-bottom: 10%;
	background: #FFF;
}

#mainTitle {
	text-align: center;
	padding: 30px 0;
}
	#mainTitle h2 {
		font-size: 1.8rem;
		color: #FFF;
	}

#bread {
	background: #FFF;
	padding: 10px 0 50px 0;
	font-size: 1.2rem;
}
	
	
	
.title {
	margin-bottom: 20px;
	border-bottom: solid 1px #bcbed5;
	padding-bottom: 10px;
}
	.title h3 {
		font-size: 2.2rem;
		color: #009eff;
		font-weight: 900;
	}
	
	
	
ul.dot {
	margin-bottom: 0px;
	padding-left: 11px;
}
	ul.dot li {
		margin-bottom: 10px;
		text-indent: -11px;
	}
	ul.dot li::before {
		display: inline-block;
		content: "";
		margin-top: 16px;
		margin-right: 7px;
		width: 4px;
		height: 4px;
		vertical-align: top;
		border-radius: 5px;
		background-color: #025083;
	}
	
	
	
.btn {
	max-width: 100%;
	background: #009ce5;
	text-align: center;
}
	.btn a {
		display: block;
		color: #FFF;
		padding: 20px 10px;
		font-weight: 900;
		margin-top: 30px;
	}
	
	
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* フッター */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
#footer {
	font-size: 1.2rem;
	margin-top: 50px;
	background: #1f2774;
	color: #FFF;
	text-align: center;
	padding: 20px 0;
}


	
	
}



