@charset "utf-8";
/* CSS Document */

*{
	font-weight: 200;
	padding: 0;
	margin:0;
	-webkit-box-sizing: border-box;
			box-sizing: border-box;
  font-family: 'メイリオ', Meiryo, "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", sans-serif;
}

html{
  scroll-behavior: smooth;
}

a{
	text-decoration: none;
	transition: .2s;
/*    -webkit-transform: scale(1.001,1);
    -moz-transform: scale(1.001,1);
    -ms-transform: scale(1.001,1);
    -o-transform: scale(1.001,1);
    transform: scale(1.001,1);*/
}

a:hover{
  opacity: .6;
	transition: .2s;
}

li{
	list-style: none;
}

h1,h2,h3,h4,h5,h6,p{
	color:#111;
/*    -webkit-transform: scale(1.001,1);
    -moz-transform: scale(1.001,1);
    -ms-transform: scale(1.001,1);
    -o-transform: scale(1.001,1);
    transform: scale(1.001,1);*/
}

h1{	
}
h2{
  font-size: 32px;
}
h3{	
}
h4{	
}
h5{	
}
h6{	
}
p,th,td,span{
  font-size: 15px;
}
hr{
}

.clear{
	clear:both;
}

.fa{
	color: #fff;
}
body{
	overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

.spOnly{
  display: none;
}

a.linkBtn{
  display: block;
  width: 220px;
  text-align: center;
  font-family: "Mplus 1p";
	color:#333;
  border: 1px solid #333;
  padding: 15px 0;
}

a.linkBtn:hover{
  opacity: 1;
  background-color: #333;
  color: #fff;
}

.flexBox{
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.spbr{
  display: none;
}

/*==============================
ヘッダ
==============================*/

header{
  position: relative;
  width: 100%;
  box-shadow: 0 5px 5px 0px rgba(0,0,0,.1);
  z-index: 99999;
}

header h1{
  width: 100%;
  max-width: 1000px;
  text-align: left;
  margin: 20px auto 0;
}

header nav{
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
}

header nav ul{
  display: flex;  
}

header nav ul a{
  display: block;
  color: #111;
  padding: 20px 40px;
}

header nav ul a:hover{
  background-color: #0e7ac4;
  color: #fff;
  opacity: 1;
}

header nav ul a.onPage{
  background-color: #0e7ac4;
  color: #fff;
  opacity: 1;  
}

header > a::before{
  content: ">";
  margin-right: 5px;
  color: #0e7ac4;
}

header > a{
  display: block;
  position: absolute;
  top: 0px;
  font-size: 14px;
  color: #111;
  right: calc(50% - 500px);
}

/*==============================
SPメニュー
==============================*/

.spnavBack{
  display: none;
}

.spLogo{
	display: none;
}

.nav-unshown {
  display:none;
}
@media screen and (max-width: 1000px){
  header > a{
    display: none;
  }
nav{
  display: none;
  padding: 10px 0;
	margin-top: 50px;
  width: 100%;
  text-align: center;
  background-color: rgba(255,255,255,.9)
}

nav h1{
  display: inline-block;
  margin: 0 auto;
}

nav h1 > a{
  display: block;
}

nav h1 > a img{
  width: 200px;
}

#nav-drawer {
  position: relative;
}

/*チェックボックス等は非表示に*/

/*アイコンのスペース*/
#nav-open {
  position: fixed;
  top:5px;
	right: 5px;
  width: 40px;
  height: 40px;
  vertical-align: middle;
  padding:10px 9px;
	z-index: 999999;
}
/*ハンバーガーアイコンをCSSだけで表現*/
#nav-open span, #nav-open span:before, #nav-open span:after {
  position: absolute;
  height: 2px;/*線の太さ*/
  width: 20px;/*長さ*/
  border-radius: 3px;
  background: #555;
  display: block;
  content: '';
  cursor: pointer;
}
#nav-open span:before {
  bottom: -9px;
}
#nav-open span:after {
  bottom: -17px;
}

/*閉じる用の薄黒カバー*/
#nav-close {
  display: none;/*はじめは隠しておく*/
  position: fixed;
  z-index: 999999;
  top: 0;/*全体に広がるように*/
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0;
  transition: .3s ease-in-out;
}

/*中身*/
header nav {
  overflow: auto;
  position: fixed;
	display: block;
  top: 0;
  left: 0;
	margin: 0;
  z-index: 1000000;/*最前面に*/
  width: 90%;/*右側に隙間を作る（閉じるカバーを表示）*/
  max-width: 330px;/*最大幅（調整してください）*/
  height: 100%;
  background: #fff;/*背景色*/
  transition: .3s ease-in-out;/*滑らかに表示*/
  -webkit-transform: translateX(-105%);
  transform: translateX(-105%);/*左に隠しておく*/
}

  
  
/*チェックが入ったらもろもろ表示*/
#nav-input:checked ~ #nav-close {
  display: block;/*カバーを表示*/
  opacity: .5;
}

#nav-input:checked ~ nav {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);/*中身を表示（右へスライド）*/
  box-shadow: 6px 0 25px rgba(0,0,0,.15);
}

nav{
  padding: 30px 10px 0;
  text-align: center;
}

  header h1{
    margin-top: 10px;
    margin-left: 10px;
  }
	
	header nav ul{
		display: block;
	}

nav li{
  margin-bottom: 10px;
}

nav li a{
  padding: 10px 0 13px;
  border-bottom: 1px solid #053785;
  display: block;
}

}

/*==============================
TOPボタン
==============================*/


/*==============================
メインコンテンツ
==============================*/

/*==============================
フッタ
==============================*/

footer{
  background-color: #0e7ac4;
}

footer > div{
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 30px 15px;
}

footer > div h2{
  font-size: 18px;
  margin-bottom: 10px;
  color: #fff;
}

footer > div p{
  font-size: 12px;
  color: #fff;
}

footer > p{
  font-size: 10px;
  padding: 10px 0;
  text-align: center;
  color: #fff;
  background-color: #003458;
}

/*==============================
レスポンシブ
==============================*/

@media screen and (max-width: 1400px) {
}

@media screen and (max-width: 1300px) {
}

@media screen and (max-width: 1200px) {
}

@media screen and (max-width: 1000px) {
}

@media screen and (max-width: 900px) {
}

@media screen and (max-width: 800px) {
}

@media screen and (max-width: 600px){
}

@media screen and (max-width: 500px){
}

@media screen and (max-width: 414px){
}


/*==============================
ローディングアニメーション
==============================*/
