@charset "UTF-8";

/* ---------------------------個別デザイン *ここから*--------------------------- */






/* スクロールで試し読み */
h1{
  font-family: Meiryo UI , sans-serif;
  width: 100%;
  background: #ff7696;/*背景色*/
  color: #fff; /*文字色*/
  text-align: center;
  padding: 4px 0;
}
/* ---------------------------個別デザイン *ここまで*--------------------------- */


/*---------------------------ボタン1---------------------------*/
.button1{
    width: 90%;
    height: 60px;
    margin: 15px auto;
    background-size: auto auto;
    background-color: rgba(255, 110, 125, 1);
    background-image: repeating-linear-gradient(45deg, transparent, transparent 5px, rgba(255, 135, 140, 1) 5px, rgba(255, 135, 140, 1) 7px );
    text-align: center;
    box-shadow: 0px 0px 0px 5px rgba(255, 110, 125, 1);
    border: dashed 1px #FFF;
    transition: .9s;
    border-radius: 10px;
	line-height: 60px;
}

.button1 a{
    color: #fff;
    font-size: 1.6em;
    letter-spacing: 0.13em;
}
.button1 a p{
	height: 100%;
  display: block;
}

.bound span{
  display: inline-block;
  animation: bound .9s linear infinite;
  color:#ff0;
}

.bound span:nth-child(2) {
  animation-delay: 0.2s;
}

.bound {
  animation: bound .7s linear infinite;
}
@keyframes bound {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-30%);
  }
  100% {
    transform: translateY(0px) scaleY(0.7);
  }
}
/*---------------------------ボタン1---------------------------*/

/* ---------------------------以下共通設定--------------------------- */

*{
  height: auto;
  margin: 0;
  padding: 0;
  border: 0;
}

body{
  background: #000;
  font-family: "M PLUS Rounded 1c";
  border-collapse: collapse;
}

header{
  background: #fff;
  padding: 10px 0 8px 10px;
}

header img{
  width: 20%;
}

.kaiin img
{
  position: fixed;
  width: 160px;
  height: auto;
  bottom: -65px;
  right: -24px;
  z-index: 998;
}

img{
  display: block;
  width: 100%;
}

a{
  font-weight: 700;
  text-decoration: none;
  border: none;
}

#wrapper{
  max-width: 600px;
  width: 100%;
  overflow: none;
  margin: 0 auto;
}

#story{
  position: relative;
  margin-bottom: 50px;
}

.ng, .ng img{
  pointer-events: none; 
  -webkit-touch-callout:none;
  -webkit-user-select:none;
  -moz-touch-callout:none;
  -moz-user-select:none;
  touch-callout:none;
  user-select:none;
}

div[class^="catch"]{
  position: absolute;
}

footer{
  background: #fff;
  text-align: center;
  padding: 25px 0;
  font-size:11px;
  font-weight: 300;
  color: #040024;
}
/* ---------------------------共通設定ここまで--------------------------- */