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

img {
  pointer-events: none;
}
@font-face {
	font-family: 'MyFont';
	src: url("../font/SabonLTStd-Roman.otf");
}
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  box-sizing: border-box;
}
body {
  color: #2376FF; /* RGB */
  font-family: ‘Shippori Mincho’, serif;
  font-weight: 500;
  font-size: 1.4em;
  line-height: 2.4rem;
  text-align: center;

 
}
a{text-decoration: none;}

li{
 list-style: none;
}

.none{
	display: none;
}

#header{
	position: fixed;/*fixedを設定して固定*/
  z-index: 999;/*最前面へ*/
  bottom: 20vh;
  left:4%;
	display: block;
	text-align: left;
}




/*========= 以下は検証用のレイアウトのためのCSS ===============*/
#g-nav{
	list-style: none;
	justify-content: center;
}

#g-nav li a{
	text-decoration: none;
	height: 1.8rem;
	display: block;
	padding:20px 10px;
}
#g-nav li a img {
	width: auto;
	height: 100%;
	object-fit: contain;
}

.gnavi li a{
  /*線の基点とするためrelativeを指定*/
	position: relative;
}

.gnavi li a::after {
	content: '';
  /*絶対配置で線の位置を決める*/
  position: absolute;
  top:50%;
  left: 0%;
  /*線の形状*/
  width: 100%;
  height: 1px;
  background: #2376FF;
  /*アニメーションの指定*/
  transition: all .3s;
  transform: scale(0, 1);/*X方向0、Y方向1*/
  transform-origin: center top;/*上部中央基点*/
}

/*現在地とhoverの設定*/
.gnavi li.current a::after,
.gnavi li a:hover::after {
	transform: scale(1, 1);/*X方向にスケール拡大*/
}

#footer {
	-ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
	position: fixed;
	z-index: 999;/*最前面へ*/
  top: 50%;
	transform: translateY(-50%) translateX(0);
  right:1%;
	display: block;
	font-size: 1.4rem;
}


@media (max-width:1080px) {
	
/*========= ナビゲーションのためのCSS ===============*/

#g-nav{
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position:fixed;
  z-index: 999;
  /*ナビのスタート位置と形状*/
  top:0;
  left: -120%;
  width:100%;
  height: 100vh;/*ナビの高さ*/
  background:#CFEEFE;
  /*動き*/
  transition: all 1s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
  left: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999; 
  width: 100%;
  height: 100vh;/*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  top:50%;
  left:50px;
  transform: translate(0,-50%);
}

/*リストのレイアウト設定*/

#g-nav li{
  list-style: none;
}

#g-nav li a{
  text-decoration: none;
  display: block;
  text-transform: uppercase;
}

/*========= ボタンのためのCSS ===============*/
.openbtn1{
  position:fixed;
  z-index: 9999;/*ボタンを最前面に*/
  top:10px;
  right: 10px;
  cursor: pointer;
  width: 50px;
  height:50px;
}
  
/*×に変化*/  
.openbtn1 span{
  display: inline-block;
  transition: all .5s;
  position: absolute;
  left: 14px;
  height: 1px;
  border-radius: 2px;
  background-color: #2376FF;
  width: 45%;
  }

.openbtn1 span:nth-of-type(1) {
  top:15px; 
}

.openbtn1 span:nth-of-type(2) {
  top:23px;
}

.openbtn1 span:nth-of-type(3) {
  top:31px;
}

.openbtn1.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.openbtn1.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn1.active span:nth-of-type(3){
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}
	#footer{
	position: relative;
	writing-mode: horizontal-tb;
  padding:20px;
	top: 0px;
  right:0px;
	z-index: 0;
	transform: translateY(0) translateX(0);
}
}
