@charset "utf-8";

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', 'Segoe UI', YuGothic, 'Yu Gothic Medium', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
  background: #fff0e8;
}

#wrap {
  max-width: 720px;
  min-width: 320px;
  margin: 0 auto;
  overflow: hidden;
}

.clearfix:after {
  content: ".";
  display: block;
  height: 0.1px;
  font-size: 0.1em;
  line-height: 0;
  clear: both;
  visibility: hidden;
}

img {
  display: block;
  width:100%;
  max-width: 100%;
  height: auto;
}

.btn {
  position: relative;
  display: block;
  width: 90%;
  margin: 20px auto;
  padding: 16px 10px;
  text-align: center;
  font-size: 24px;
  line-height: 1.2;
  color: #fff;
  text-shadow: 2px 2px 1px rgba(0, 0, 0, 0.8);
  font-weight: bold;
  background-image: linear-gradient(to top, rgba(243, 15, 132, 1), rgba(253, 90, 175, 1));
  box-shadow:0 5px 0 #a2006b;
  border-radius: 10px;
  box-sizing: border-box;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 30px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  transform: skewX(-45deg) translateX(0);
  transition: none;
  animation: btn 1.2s ease-in-out infinite;
  z-index: 1000;
}

@keyframes btn {
  0% {
      transform: skewX(-45deg) translateX(0);
  }
  80% {
      transform: skewX(-45deg) translateX(1000px);
  }
  100% {
      transform: skewX(-45deg) translateX(1000px);
  }
}

.sub {
  display: inline-block;
  padding: 2.5px;
  font-size: 12px;
  color: #f78a9d;
  background: #fff;
  box-sizing: border-box;
}

.yellow {
  font-size: 26px;
  color: #ffe400;
}



.flow-box {
  display: none;
}

#flow {
  position: fixed;
  width: 90%;
  left: 0;
  right: 0;
  bottom: 10px;
  margin: 0 auto;
  box-shadow: 20px 20px 16px -6px rgba(0,0,0,0.6);
  z-index: 1000;
}

#footer {
  width: 100%;
  padding: 10px 0;
  text-align: center;
  background: #eee;
  font-size: 12px;
}

#footer a{
	color: #333;
}


@keyframes fv {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}