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

*{
	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;
	letter-spacing: 3px;
	transition: .3s;
/*    -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: .5;
	transition: .4s;
}

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{	
	letter-spacing: 10px;
}
h2{
  font-size: 20px;
  line-height: 24px;
	letter-spacing: 4px;
}
h3{	
  font-size: 16px;
  letter-spacing: 4px;
}
h4{	
	letter-spacing: 7px;
}
h5{	
	letter-spacing: 6px;
}
h6{	
	letter-spacing: 5px;
}
p{
  font-size: 15px;
  line-height: 35px;
	letter-spacing: 1px;
}
hr{
}

.clear{
	clear:both;
}

.fa{
	color: #fff;
}
article{
  padding: 0px 20px 50px;
}

body{
	overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

.spOnly{
  display: none;
}

.spbr{
  display: none;
}

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

.futomin{
  font-family: a-otf-futo-min-a101-pr6n, serif;
  font-weight: 400;
  font-style: normal;
}

.futogo{
  font-family: a-otf-futo-go-b101-pr6n, sans-serif;
  font-weight: 500;
  font-style: normal;
}

/*==============================
ヘッダ
==============================*/
header{
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: #fff;
}

header > a{
  display: none;
}
nav{
  width: 100%;
  padding: 20px;
  width: 100%;
}

nav > a{
  display: none;
}

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

nav > ul li{
  margin-right: 30px;
}

nav > ul li a{
  display: block;
  font-size: 13px;
  font-family: 'Overpass', sans-serif;
  font-weight: bold;
  color: #000;
}

nav > ul li a:first-of-type img{
  width: 45px;
}

nav > ul li:nth-of-type(2){
  display: none;
}

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

.spnavBack{
  display: none;
}

.spLogo,.spLogobtm{
	display: none;
}

.nav-unshown {
  display:none;
}
@media screen and (max-width: 800px){
  header{
    position: relative;
  }
  
  header > a{
    position: absolute;
    display: inline-block;
    top: 20px;
    left: 15px;
  }
  
  header > a img{
    width: 160px;
    vertical-align: bottom;
  }
  
.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:30px;
	right: 20px;
  width: 45px;
  height: 25px;
  vertical-align: middle;
	z-index: 999999;
}
/*ハンバーガーアイコンをCSSだけで表現*/
#nav-open span, #nav-open span:before, #nav-open span:after {
  position: absolute;
  height: 1px;/*線の太さ*/
  width: 45px;/*長さ*/
  border-radius: 0px;
  background: #000;
  display: block;
  content: '';
  cursor: pointer;
  transition: .3s;
}
#nav-open span:before {
  bottom: -6px;
}
#nav-open span:after {
  bottom: -12px;
}
  
  #nav-input:checked ~ #nav-open span{
    transition: .3s;
    transform: rotate(20deg);
    top: 5px;
  }
  
  #nav-input:checked ~ #nav-open span:before{
    opacity: 0;
    transition: .3s;
  }
  
  #nav-input:checked ~ #nav-open span:after{
    transition: .3s;
    transform: rotate(-40deg);
    top: 0;
  }

/*閉じる用の薄黒カバー*/
#nav-close {
  display: none;/*はじめは隠しておく*/
  position: fixed;
  z-index: 999997;
  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: 999998;/*最前面に*/
  width: 100%;/*右側に隙間を作る（閉じるカバーを表示）*/
  height: 100%;
  background: #fff;/*背景色*/
  transition: .3s ease-in-out;/*滑らかに表示*/
  -webkit-transform: translateX(-105%);
  transform: translateX(-105%);/*左に隠しておく*/
  padding: 80px 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{
}

nav h1{
  height: 50px;
  margin-bottom: 15px;
}
	
	nav ul{
		display: block;
	}

nav li{
  margin-bottom: 10px;
}

nav > ul li a{
  font-size: 18px;
  letter-spacing: 4px;
  padding: 10px 0 20px;
  display: block;
  text-align: right;
}
  nav > a:first-of-type{
    display: none;
  }
  
  .spLogobtm{
    bottom: 20px;
    left: 20px;
    position: absolute;
    width: 50%;
    display: inline-block;
  }
  
  .spLogobtm > img{
    width: 100%;
  }

nav p{
  color: #555;
  font-size: 18px;
}

nav h1 img{
  width: 88px;
}

  nav ul li:first-of-type{
    display: none;
  }

  nav > ul li:nth-of-type(2){
    display: block;
  }

  nav ul li{
    margin: 0;
    margin-bottom: 0px;
  }

nav ul li a p{
	font-size: 14px;
}
	
.spLogo{
	display: block;
	position: fixed;
	top: 10px;
	left: 10px;
  z-index: 999999;
}
	
	.spLogo img{
		width: 150px;
	}	
}

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


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

/*==============================
フッタ
==============================*/
footer{
  padding: 0 10vw 5vw;
}

footer p{
  text-align: right;
  font-family: 'Overpass', sans-serif;
  font-weight: bold;
  font-size: 13px;
  color: #000;
}
/*==============================
レスポンシブ
==============================*/

@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) {
  article{
    padding: 80px 20px 50px;
  }
}

@media screen and (max-width: 600px){
  footer {
    padding: 0 20px 50px;
  }
}

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

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


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