@charset "utf-8";

* {
	font-family:'Roboto Condensed',"游ゴシック",YuGothic,"ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic ProN","メイリオ",Meiryo,sans-serif;
	font-size: 100%;
	margin: 0px;
	padding: 0px;
}

body {
	margin: 0px;
	padding: 0px;
	border-top-color: #000000;
	overscroll-behavior: none;
  	height: 100vh;
}

div,p,h1,h2,h3,h4 {
	margin: 0;
	padding: 0;
}

a {
	color: #999999;
	text-decoration: none;
}

li {
	list-style:none;
}

h2 {
	font-size: 160%;
}

a:hover {
	text-decoration: none;
}


img {
	border: 0;
}

.header {
	width: 900px;
	position: relative;
	background-color: #000;
	height: 75px;
	text-align: center;
	margin-top: 10;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
}

.container {
    display: flex;
	overscroll-behavior: none;
    flex-wrap: nowrap;
	overflow: hidden;
	width: 600%;
	height: 100%;
}

.wrap{
	display: flex;
  }

.item{
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 47px;
	font-weight: bold;
	color: #000000;
}
  .item01{ background: #000000; color: #fff; }
  .item02{ background: #cfcece; }
  .item03{ background: #131312; }
  .item04{ background: #108dbf; }
  .item05{ background: #88bde6; }
  .item06{ background: rgb(254, 255, 254) transparent; }

.item06 a{
	color: #108dbf;
	-webkit-animation: anime_cta 0.5s ease 0s infinite alternate;
    animation: anime_cta 0.5s ease 0s infinite alternate;
    transform-origin: center;
}

.item06 a:hover{
	-webkit-animation: anime_cta 0.5s ease 0s infinite alternate;
    animation: anime_cta 0.5s ease 0s infinite alternate;
    transform-origin: center;
}

.footer {
	margin: 15px auto;
	font-size: 9px;
	line-height: 150%;
	color: #CCCCCC;
}

.item01 .subbox{ display: block; }

.s_button {
    position: relative;
}



.s_buttonbox .s_button::before {
    content: "";
    position: absolute;
    display: block;
    background: blue;
    width: 30px;
    height: 30px;
    top: -60px;
    left: -60px;
}

.s_buttonbox .s_button::before {
    animation-name:shine-run;   /* アニメーション名の指定 */
    animation-delay:0s;   /* アニメーションの開始時間指定 */
    animation-duration: 3s;   /* アニメーション動作時間の指定 */
    animation-timing-function: ease-in;
   /* アニメーションの動き指定（徐々に早く）*/
    animation-iteration-count: infinite; 
  /* アニメーションの無限繰り返しの指定 */
}
 
/* アニメーションのタイミングとボックスの拡大率、角度、透過率の指定*/
@keyframes shine-run {
    0% {
        transform: scale(0) rotate(50deg);
        /* アニメ開始時は大きさ0、50度の傾き */
        
        opacity: 0;
        /* アニメ開始時は全透過 */
    }
 
    40% {
        transform: scale(1) rotate(50deg);
        /* 40%まで進む間に大きさを等倍に。傾きは50度のまま*/
        
        opacity: 1;
        /* 透過しない（しっかり表示される）ように1を設定 */
    }
 
    100% {
        transform: scale(250) rotate(50deg);
        /* 最後は元の大きさの250倍になるようにする。傾きは50度のまま*/
 
        opacity: 0;
        /* 全透過になるようにして、徐々に消えるような変化を付ける */
    }
}

.s_buttonbox .s_button::before {
	background: linear-gradient(to right,rgba(255,255,255,0), rgba(255,255,255,0.9));
}

.s_buttonbox .s_button {
    display: block;	
    background: red;	
    margin: 1em auto;	
    text-align: center;	
	font-size: 16px;
    width: 100%;	/* ボタンの横幅を目いっぱいに伸ばす */
    max-width: 300px;	/* でもボタンの最大幅は500pxに制限 */
    border-radius: 50px;	/* ボタンの角に丸みを持たせる */
    padding: 1em;	/* 上下左右に1文字分の余白を設ける */
    color: white;	
    text-decoration: none;
	overflow: hidden;
}

.s_buttonbox .s_button a{
    color: #fff;
}


.sand-text {
  mix-blend-mode: multiply; /* 背景色と混ぜ合わせることで文字を消す */
  text-shadow: 0px 1px 0px rgba(255, 255, 255, 0.4); /* 模糊効果を加えることで砂状に見せる */
  font-size: 3em; /* テキストのフォントサイズを指定 */
  color: rgba(0,0,0,0); /* テキストの色を透明にする */
  line-height: 1; /* テキストの行間を指定 */
  letter-spacing: 0.05em; /* 文字間のスペースを指定 */
}