@charset "UTF-8";

/*--------------------------------------------------------------------
=== [共通レイアウト] ====================================
 -------------------------------------------------------------------*/

body {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5;
  font-weight: 500;
  color: #333;
  background-color: #fffde3;
}

main {
  max-width: 750px;
  margin: 0 auto;
  background-color: #fff;
}

img {
  max-width: 750px;
  width: 100%;
}

.conv {
  background-image: url("../img/conv_bg.jpg");
  background-size: 100%;
  background-repeat: no-repeat;
  height: 362px;
  position: relative;
}

.conv.conv--sec09 {
  margin: 0 0.5%;
  background-image: url("../img/conv_bg02.jpg");
}
.conv .btn {
  position: absolute;
  max-width: 670px;
  top: 120px;
  left: 0;
  right: 0;
  margin: auto;
}

@media (max-width: 750px) {
  .conv {
    height: 48.2vw;
  }
  .conv .btn {
    top: 16vw;
  }
}
.conv .btn a {
  transition: 0.3s;
  margin: 0 40px;
  display: block;
}
.conv .btn a:hover {
  opacity: 0.7;
}

.ftg {
  display: none;
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 750px;
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.8);
}

.ftg-btn {
  display: block;
  width: 590px;
  margin: 0 auto;
}

.ftg-btn img {
  max-width: none;
  width: 100%;
  height: auto;
}

@media (max-width: 750px) {
  .ftg {
    width: 100%;
    padding: 2vw;
  }

  .ftg-btn {
    width: 78.6vw;
  }
}

footer {
  padding: 50px 0 200px;
  background-color: #fff;
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
  font-size: 20px;
}

footer ul {
  display: flex;
  justify-content: center;
}
footer ul li {
  margin: 0 15px;
}
footer ul li a {
  color: #a8a8a8;
  text-decoration: none;
}

footer .copy {
  font-weight: bold;
  margin-top: 30px;
}

@media (max-width: 750px) {
  footer {
    padding: 6.66vw 0 26vw;
    font-size: 2.66vw;
  }
  footer .copy {
    margin-top: 4vw;
  }
}

/* 光が横切るエフェクト */
.light-box {
  display: block;
  overflow: hidden;
  margin: 0 auto;
  background-color: transparent;
}
.shiny-btn {
  display: inline-block;
  text-align: center;
  position: relative;
  /* width: 100%; */
  color: #fff;
  font-size: min(calc(30 / 750 * 100vw), 30px);
  border-radius: min(calc(30 / 750 * 100vw), 30px);
}
.shiny-btn:after {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 50px;
  height: 50px;
  background-image: linear-gradient(100deg, rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, 0.8) 100%, rgba(255, 255, 255, 0) 0%);
  animation-name: shiny;
  animation-duration: 2.5s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
@keyframes shiny {
  0% {
    transform: scale(0) rotate(25deg);
    opacity: 0;
  }

  50% {
    transform: scale(1) rotate(25deg);
    opacity: 1;
  }

  100% {
    transform: scale(50) rotate(25deg);
    opacity: 0;
  }
}
/* 光が横切るエフェクト */

/* 跳ねるエフェクト */

.bounce {
  animation: bounce 1.5s ease infinite;
}
@keyframes bounce {
  70% {
    transform: translateY(0%);
  }
  80% {
    transform: translateY(-15%);
  }
  90% {
    transform: translateY(0%);
  }
  95% {
    transform: translateY(-7%);
  }
  97% {
    transform: translateY(0%);
  }
  99% {
    transform: translateY(-3%);
  }
  100% {
    transform: translateY(0);
  }
}
/* 跳ねるエフェクト */

/* now */

.now-wrap {
  position: relative;
}

.now-txt {
  position: absolute;
  top: 264px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 32px;
  font-weight: 600;
  width: 100%;
  text-align: center;
}

@media (max-width: 750px) {
  .now-txt {
    top: calc((264 / 750) * 100vw);
    font-size: calc((32 / 750) * 100vw);
  }
}
