@charset "utf-8";

body{
	color:#070b35;
	background-color: #FFF;
}


.copyright{
	margin-top: 23px;
	font-size: 11px;
	font-weight: bold;
	text-align: center;
	color: #ff91af;
	letter-spacing:0.1em;
	opacity: 0.75;
}

.main{
	width: 100%;
	min-width: 1040px;
	height:calc( 100vh + 240px );
	min-height:1000px ;
	padding: 100px 20px;
	text-align: center;
}
  
/**######sp用######**/
.main-sp .main{
	display: flex; /* 子要素をflexboxで揃える */
	flex-direction: column; /* 子要素をflexboxにより縦方向に揃える */
	justify-content: center; /* 子要素をflexboxにより中央に配置する */
	align-items: cent"er;  /* 子要素をflexboxにより中央に配置する */
}
.main-sp .main-ttl{
	margin-top: -300px;
	width: 100%;
}
.main-sp .main-ttl img{
	width: 100%;
}
/**######sp用######**/
  .main-wrap{
	opacity: 0;
	transform: translate(0px, 18px);
	transition: all cubic-bezier(0.34, 1.56, 0.64, 1) .6s;
  }
  
  .main-set{
	transform: translate(0px, 0px);
	opacity: 1;
  }
  
/*-------------------------------------------------------------
			flex-box
-------------------------------------------------------------*/

.anime-set{
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: all ease 0.6s;
}
.anime-active{
	opacity: 1;
}

/*-------------------------------------------------------------
			animatuion
-------------------------------------------------------------*/

@keyframes jump {
    0% {
        transform: translate(0px, 6px);
    }
    10% {
        transform: translate(0px, 0px);
    }
    20% {
        transform: translate(0px, 6px);
    }
    30% {
        transform: translate(0px, 0px);
    }
    40% {
        transform: translate(0px, 6px);
    }
    100% {
        transform: translate(0px, 6px);
    }
}
@keyframes fadeIn {
    5% {
      opacity:0;
      transform: translate(0px, 0px);
    }
    15% {
      opacity:1;
      transform: translate(0px, -10px);
    }
    60%{
      opacity:1;
      transform: translate(0px, -10px);
    }
    75%{
      opacity:0;
      transform: translate(0px, -20px);
    }
    100% {
      opacity:0
    }
}
/*-------------------------------------------------------------
			copyright
-------------------------------------------------------------*/

.logo{
	display: block;
	position: absolute;
	top: 30px;
	left: 30px;
  }
  .logo:hover{
	opacity: 0.65;
  }

  #share-wrap{
	display: block;
	position: fixed;
	top: 35%;
	right: 5px;
	width: 50px;
	height: 100px;
	z-index: 100;
}

.share-ttl {
  display:block;
  width: 32px;
  height: 70px;
}

.share-ttl span{
	position:absolute;
	left: 15px;
	-webkit-font-smoothing:antialiased;
	transform-origin:0 0;
	-moz-transform-origin:0 0;
	-webkit-transform-origin:0 0;
	letter-spacing:.08em;
	transform:rotate(90deg);
  
	font-size: 13px;
	font-weight: bold;
}

.sidebar-list{
	display: block;
	width: 32px;
	height: 40px;

	transition: all ease 0.2s;
}
.sidebar-list:hover{
	opacity: 0.5;
}

/*-------------------------------------------------------------
			set
-------------------------------------------------------------*/
.bg-wrap{
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	min-width: 1040px;
	height:calc( 100vh + 240px );
	min-height:1000px ;
	overflow: hidden;
  
	pointer-events: none;
  }
  .bg-set{
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	min-width: 1040px;
	height:calc( 100vh + 240px );
	min-height:1000px ;

	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: inherit;
  
	pointer-events: none;
  
	transform: translate(0px, 6px);
	
	opacity: 0;
	transition: opacity .32s cubic-bezier(0.11, 0, 0.5, 0) ;
  }
  .op-active{
	opacity: 1;
  }
  
  .anime-charaset{animation: jump 3s ease 0s 1 normal;}
  
  #A{background-image: url(../img/A.png);}
  #B{background-image: url(../img/B.png);}
  #C{background-image: url(../img/C.png);}
  #D{background-image: url(../img/D.png);}
  
  /*********/
  .serif-wrap{
	pointer-events: none;
  }
  .serif-set{
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height:calc( 100vh + 240px );
	min-height:1000px ;
	/*background-image: url(img/bg.png);*/
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: inherit;
	pointer-events: none;
  
	opacity: 0;
  }
  .anime-serifset{animation: fadeIn 4s ease-out 0s 1 normal;}
  
  #sA{background-image: url(../img/sA.png);}
  #sB{background-image: url(../img/sB.png);}
  #sC{background-image: url(../img/sC.png);}
  #sD{background-image: url(../img/sD.png);}

/*-------------------------------------------------------------
			set
-------------------------------------------------------------*/
.show-btn{
	position: absolute;
	right: 10px;
	top: 20px;
	display: block;
	padding: 1em 1em;

	background-color: #FFF;
	font-weight: bold;
	font-size: 13px;
	letter-spacing: 0.02em;

	border-radius: 50px;
	opacity: 0.23;
	color: inherit;


	transition: all ease 0.4s;
}

.show-btn:hover{
	color: #1da1f2;
	opacity: 1;

}