@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: #222;
  background: #000;
}

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

header {
  background-color: #fff;
}

.logo {
  padding: 10px 20px 10px 5px;
}

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

.btnsp {
  margin: 15px 20px 15px 20px ;
}

.day {
  padding: 5px;
  font-size: 12px;
  color: #cecece;
  text-align: right;
  box-sizing: border-box;
}

.container {
  width: calc(100% - 20px);
  margin: 0 auto;
  padding-bottom: 20px;
}

p[class^="txt"] {
  padding: 5px;
}

.txt02 {
  margin-bottom: 10px;
}

.txt03,
.txt06,
.txt07 {
  margin-top: 10px;
}

.txt05 {
  margin: 10px 0;
}

.pink {
  color: #e86161;
}

.green {
  color: #b1e174;
}

.big {
  font-size: 40px;
  font-weight: bold;
}

.red {
  color: red;
}

.blue {
  color: blue;
}

.btn {
  position: relative;
  display: block;
  width: 90%;
  max-width: 400px;
  margin: 20px auto;
  padding: 10px;
  text-align: center;
  font-size: 24px;
  line-height: 1.2;
  color: #fff;
  font-weight: bold;
  border-bottom: 5px solid #b35162;
  background: linear-gradient(180deg, rgba(247,138,157,.5) 0%, rgba(245,112,136,.5) 50%, rgba(254,152,139,.5) 100%),repeating-linear-gradient(45deg, rgba(254,152,139,1) 20px, rgba(254,152,139,1) 15px, rgba(247,138,157,1) 15px, rgba(247,138,157,1) 30px);
  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;
}

.bound {
  font-size: 26px;
  color: #ffed26;
}


/* ゲーム画面がある場合 */
.talk01 {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: calc(100% - 20px);
  margin: 10px auto 0;
}

.talk01::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 47.222%;
  width: 50px;
  height: 20px;
  background: #f4f4f4;
  transform: translateY(-50%);
}

.talk01::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 51.222%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 25px 0 25px 30px;
  border-color: transparent transparent transparent #f4f4f4;
  transform: translateY(-50%);
}

.talk_item {
  width: 80%;
  max-width: 500px;
}

.talk_item:first-child {
  margin: 0 100px 0 0;
}

.talk_bigTxt {
  padding: 15px 5px;
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  box-sizing: border-box;
  opacity: 0;
}

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@media screen and (max-width: 500px) {
  body {
    font-size: 14px;
  }

  .big {
    font-size: 16px;
  }

  .pageHead_txt {
    font-size: 18px;
  }

  .head02 {
    padding: 1rem 2rem;
    border-left: 5px dotted #000;
    background: #f4f4f4;
  }


  /* 画像がある場合 */
  .talk01 {
    flex-direction: column;
  }

  .talk01::before {
    right: 0;
    left: 0;
    margin: auto;
    transform: translateY(-50%) rotate(90deg);
  }

  .talk01::after {
    right: 0;
    left: 0;
    margin: auto;
    transform: translateY(0) rotate(90deg);
  }

  .talk_item:first-child {
    margin: 0 0 100px 0;
  }

  .talk_bigTxt {
    font-size: 20px;
  }
}

@media screen and (max-width: 402px) {
  /* 画像がない場合
    p[class^="talk_txt"] {
        font-size: 12px;
    } */
}

@media screen and (max-width: 360px) {
  body {
    font-size: 12px;
  }

  .big {
    font-size: 14px;
  }

  .pageHead_txt {
    font-size: 16px;
  }

  .head02 {
    font-size: 14px;
  }
}

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

.flow-box {
  display: none;
}

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

.pcmor { display:none;}

@media screen and (min-width:480px) {
    .spmor { display:none;}
    .pcmor { display:inline;}
}

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

.fv {
  position: relative;
}

.fv_cp {
  position: absolute;
  top: 71%;
  right: 20px;
  display: block;
  width: 32%;
  animation: fv 1.5s ease-in infinite;
}

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