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

*{
	font-weight: 200;
	padding: 0;
	margin:0;
	-webkit-box-sizing: border-box;
			box-sizing: border-box;
	font-family: "Noto Sans JP";;
  scroll-behavior:smooth;
}

a{
	text-decoration: none;
  letter-spacing: 2px;
}

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

li{
	list-style: none;
}

a,p,h1,h2,h3,h4,h5,h6{
  color: #333;
}


h2{
  font-size: 38px;
  font-weight: 900;
  line-height: 50px;
  letter-spacing: 6px;
}

h3{
  font-size: 22px;
  line-height: 40px;
  font-weight: 200;
  letter-spacing: 3px;
}

p{
  letter-spacing: 2px;
  font-size: 16px;
  line-height: 26px;
}

body{
  overflow-x: hidden;
}

body::before{
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100vw;
  height: 100vh;
  background-image: url(../img/mainBack.jpg);
  background-position: center;
  background-size: cover;
}

.clear{
	clear:both;
}

.fa{
	color: #fff;
}

.sp{
  display: none;
}

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

nav{
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  z-index: 9999;
}

nav h1 a{
  display: flex;
  align-items: center;
  height: 70px;
  padding-right: 50px;
  padding-left: 50px;
  background-color: #fff;
}

nav h1 a:hover{
  opacity: 1;
}

nav h1 a img{
  transition: .2s;  
}

nav h1 a:hover img{
  opacity: .7;
  transition: .2s; 
}

nav ul{
  display: flex;
}

nav ul li{
  display: flex;
  align-items: center;
  height: 70px;
  padding: 15px;
  text-align: center;
}

nav ul a{
  color: #fff;
  font-size: 16px;
  line-height: 16px;
}

nav ul li:nth-of-type(4){
  padding: 0;
}

nav ul li:nth-of-type(4) a{
  display: flex;
  align-items: center;
  background-color: #06355c;
  padding-right: 20px;
  padding-left: 20px;
  height: 70px;
}

nav ul li:nth-of-type(5){
  padding: 0;
}

nav ul li:nth-of-type(5) a{
  display: flex;
  align-items: center;
  background-color: #fff;
  color: #333;
  padding-right: 20px;
  padding-left: 20px;
  height: 70px;
}

nav ul li:nth-of-type(5) a i{
  margin-right: 5px;
  font-size: 20px;
}

nav ul li:nth-of-type(5) a h3{
  font-weight: bold;
  letter-spacing: 2px;
  font-size: 18px;
}

header{
  position: relative;
  height: 100vh;
  width: 100%;
}

header h2{
  display: block;
  position: absolute;
  left: 5%;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 250px;
  color: #fff;
  font-weight: normal;
  letter-spacing: 8px;
}
@-webkit-keyframes sdb {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes sdb {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

article > p{
  text-align: center;
  padding: 0 0 100px;
  color: #fff;
}

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

.spMenu{
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: #fff;
}

.spMenu > a{
  display: flex;
  align-items: center;
  height: 60px;
  padding-left: 15px;
  background-color: #fff;
}

.spMenu h2{
  margin-bottom: 15px;
}

.spMenu ul{
  display: flex;
  flex-wrap: wrap;
}

#nav-drawer {
  position: relative;
}

/*チェックボックス等は非表示に*/
.nav-unshown {
  display:none;
}

/*アイコンのスペース*/
#nav-open {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  padding: 13px 11px;
  vertical-align: middle;
  background-color: #06355c;
  cursor: pointer;
}

/*ハンバーガーアイコンをCSSだけで表現*/
#nav-open span, #nav-open span:before, #nav-open span:after {
  position: absolute;
  height: 4px;/*線の太さ*/
  width: 38px;/*長さ*/
  background: #fff;
  display: block;
  content: '';
  cursor: pointer;
}
#nav-open span:before {
  bottom: -15px;
}
#nav-open span:after {
  bottom: -30px;
}

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

/*中身*/
#nav-content {
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;/*最前面に*/
  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-content {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);/*中身を表示（右へスライド）*/
  box-shadow: 6px 0 25px rgba(0,0,0,.15);
}

#nav-content{
  padding: 20px 20px;
  text-align: center;
}

#nav-content > a{
  display: block;
}

#nav-content > a img{
  width: 60px;
  margin-bottom: 20px;
}

#nav-content ul li{
  width: 100%;
  margin: 0 auto 10px;
  padding: 2px;
  background-color: #06355c;
  transition: .3s;
}

#nav-content ul li a{
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  width: 100%;
  height: 100%;
  border: 1px solid #fff;
  text-align: center;
  padding: 20px;
}

#nav-content ul li a i{
  font-size: 25px;
}

#nav-content ul li a p{
  font-size: 16px;
  letter-spacing: 2px;
}

#nav-content ul li:hover{
  background-color: #06355c;
}

#nav-content ul li a:hover{
  opacity: 1;
  background-color: #fff;
  color: #06355c;
}

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



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

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

#footContent{
  display: flex;
}

#footContent iframe{
  width: 50%;
}

#footContent div{
  width: 50%;
  padding: 50px;
  background-color: #f3ec3e;
  text-align: center;
}

#footContent div h2{
  font-weight: 100;
  font-size: 26px;
}

#footContent div table{
  margin: 0 auto;
}

#footContent div table th,
#footContent div table td{
  color: #333;
  letter-spacing: 2px;
  border-bottom: 1px solid #333;
  padding: 5px 30px 5px;
  text-align: left;
}

footer ul{
  width: 100%;
  background-color: #fff;
  display: flex;
  padding: 25px 0;
  justify-content: center;
  align-items: center;
}

footer ul li{
  margin: 0 10px;
}

footer ul li a{
  padding: 5px;
  border-bottom: 1px solid #333;
}

footer > p{
  text-align: center;
  font-weight: bold;
  padding: 40px 0;
  color: #fff;
}

#policyWrap{
  padding: 100px 15px 50px;
  background-color: #f1f1f1;
}

.policyBox{
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px;
  background-color: #fff;
  margin-bottom: 50px;
}

.policyBox h2{
  text-align: center;
  letter-spacing: 1px;
  font-size: 18px;
  line-height: 20px;
  margin-bottom: 10px;
}

.policyBox h3{
  text-align: left;
  padding-left: 5px;
  border-left: 5px solid #666;
  letter-spacing: 1px;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 10px;
}

.policyBox p{
  font-size: 14px;
  padding: 0 5px 10px;
  line-height: 16px;
  border-bottom: 1px solid #ccc;
  margin-bottom: 20px;
  text-align: justify;
}

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

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

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

@media screen and (max-width: 1200px) {
  #footContent div table th, #footContent div table td{
    font-size: 14px;
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media screen and (max-width: 1000px) {
  .pc{
    display: none;
  }
  
  .spMenu{
    display: block;
  }
  
  #footContent{
    flex-wrap: wrap;
  }
  
  #footContent iframe{
    height: 400px;
  }
  
  #footContent iframe,#footContent div{
    width: 100%;
  }
  
  footer ul{
    flex-wrap: wrap;
    padding: 50px;
  }
  
  footer ul li{
    width: 100%;
    max-width: 600px;
  }
  
  footer ul li a{
    display: block;
    width: 100%;
  }
}

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

@media screen and (max-width: 800px) {
  header h2{
    font-size: 18px;
    line-height: 28px;
  }
}

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

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

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