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

@font-face{
  font-family: 'Hannari';
  src:url(../font/Hannari.woff);
}

@font-face{
  font-family: 'timeburner';
  src:url(../font/timeburnernormal.woff);
}

*{
	font-weight: 200;
	padding: 0;
	margin:0;
	-webkit-box-sizing: border-box;
			box-sizing: border-box;
/*	font-family: "Yu Gothic";*/
/*	font-family: "Mplus 1p";*/
/*	font-family: "Rounded Mplus 1c";*/
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: bold;
  scroll-behavior: smooth;
}

a{
	text-decoration: none;
  font-size: 16px;
	letter-spacing: 1px;
	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: .7;
	transition: .2s;
}

li{
	list-style: none;
}

h1,h2,h3,h4,h5,h6,p{
	color:#666;
/*    -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{	
	letter-spacing: 10px;
}
h2{
  font-size: 16px;
  line-height: 16px;
	letter-spacing: 0px;
  font-weight: normal;
}
h3{	
  font-size: 16px;
  line-height: 16px;
	letter-spacing: 0px;
  font-weight: normal;
}
h4{	
	letter-spacing: 7px;
}
h5{	
	letter-spacing: 6px;
}
h6{	
	letter-spacing: 5px;
}
p{
  font-weight: normal;
  font-size: 15px;
  line-height: 24px;
	letter-spacing: 1px;
  font-family: 'Hannari';
}
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;
}

.eng{
  font-family: 'Overpass', sans-serif;
  font-weight: bold;
}

.pc{
}

.sp{
  display: none;
}

@media screen and (max-width: 500px){
  .pc{
    display: none;
  }

  .sp{
    display: block;
  }
}

/*==============================
nav
==============================*/
nav{
  width: 100%;
  height: 80px;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(255,255,255,.9);
  padding: 0 80px;
  z-index: 99999;
}

nav > a{
  display: block;
  margin-right: auto;
}

nav > a img{
}

nav > ul{
  display: flex;
  align-items: center;
}

nav > ul > li{
  position: relative;
  margin-right: 10px;
}

nav > ul > li:last-of-type{
  margin-right: 0;
}

nav > ul > li a{
  font-family: 'timeburner';
  display: block;
  font-weight: 500;
  color: #666666;
  cursor: pointer;
  transition: .2s;
}

nav > ul > li > ul{
  display: none;
}

nav > ul > li > ul li{
  padding: 5px 10px;
  background-color: rgba(21,46,78,.8);
  margin-bottom: 1px;
}

nav > ul > li > ul li a{
  font-size: 14px;
}
/*==============================
SPメニュー
==============================*/

.spnavBack{
  display: none;
}

.spLogo{
	display: none;
}

.nav-unshown {
  display:none;
}
@media screen and (max-width: 1000px){
.spnavBack{
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  height: 50px;
  width: 100%;
  z-index: 999998;
  background-color: rgba(255,255,255,.9)
}
  
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-drawer {
  position: relative;
}

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

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

/*閉じる用の薄黒カバー*/
#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;
}

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

/*チェックが入ったらもろもろ表示*/
#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 > a{
    margin-bottom: 15px;
  }

  nav > ul{
    flex-wrap: wrap;
  }

  nav > ul > li{
    width: 100%;
    margin-right: 0;
  }

  nav > ul > li a,
  nav > ul > li label{
    padding: 10px 10px;
    border-bottom: 1px solid #fff;
    text-align: left;
  }
}

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


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

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

footer{
  text-align: center;
  padding: 0px 15px 50px;
}

footer p{
  font-size: 12px;
  font-family: 'timeburner';
}

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

@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){  
  p{
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0px;
  }
}

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

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


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