@charset "UTF-8";

body {
  background-image: url(../images/body_bg.jpg);
  background-size: cover;
  background-attachment: fixed;
  background-position: bottom;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体",
    "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

@media screen and (min-width: 750px) {
  .body__inner {
    max-width: 750px;
    -webkit-box-shadow: 0 1px 20px rgb(0 0 0 / 30%);
    box-shadow: 0 1px 20px rgb(0 0 0 / 30%);
    background: #fff;
    background-color: #fff;
    margin-left: auto;
    margin-right: auto;
  }
}

img {
  width: 100%;
}

/* コンテンツの横幅 */
/* ============================================ */
.o-wrapper {
  width: 100%;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}
/* ============================================ */
/* コンテンツの横幅 ここまで */

.tokuten{
  padding-top: 15px;
  background-color: #fff;
}

/* footer */
/* ============================================ */
footer {
  display: block;
  padding-top: 10px;
  border-top: 3px solid #ddd;
  background: #fff;
}
@media screen and (max-width: 750px) {
  footer{
    padding-bottom: 130px;
  }
}

ul {
  list-style: none;
}

.footer__nav {
  text-align: center;
  padding: 10px 0;
}

.footer__nav li {
  margin: 0 5px 10px 0;
  font-size: 13px;
}

.footer__nav li a {
  text-decoration: none;
  padding: 0 10px 0 0;
  color: #666;
}

footer .copyright {
  text-align: center;
  padding: 10px 0;
  font-size: 12px;
  padding-bottom: 10px;
  color: #333;
}

.tokushouhou__footer{
  padding-bottom: 20px;
}
/* footer ここまで */
/* ============================================ */

@keyframes shiny {
  0% { left: -20%; }
  10% { left: 120%; }
  100% { left: 120%; }
}

.shiny-btn {
  position: relative;
  display: block;
  max-width: 90%;
  line-height: 40px;
  text-align: center;
  text-decoration: none;
  overflow: hidden;
}

.shiny-btn::after {
  content: '';
  position: absolute;
  top: -10%;
  left: -20%;
  width: 40px;
  height: 100%;
  transform: scale(2) rotate(20deg);
  background-image: linear-gradient(100deg, rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, .5) 100%, rgba(255, 255, 255, 0) 0%);
  
  /* アニメーション */
  animation-name: shiny;
  animation-duration: 3s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
/* .first-cta{
  height: 248px;
  position: relative;
}
.first-cta >.btn{
  height: 135px;
}
.first-cta >.btn > a{
  height: 135px;
  display: inline-block;
  width: 100%;
}
.first-cta__btn{
  position: absolute;
  content: '';
  left: -10px;
} */
.first-cta__btn{
  max-width: 95%;
}
.cta{
  position: relative;
  width: 100%;
}

.cta__btn{
  position: absolute;
  top: 51%;
  max-width: 95%;
}
.fixed-btn{
  display: none;
}



@media screen and (max-width: 750px) {
    /* 一定量スクロールしたらボタン下に固定 */
  .fixed-btn {
    display: block;
    margin: 0 auto;
    box-sizing: border-box;
    position: fixed;
    bottom: 0;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
  }

  .fixed-btn.active {
    opacity: 1;
    visibility: visible;
  }
  .fixed-btn img{
    display: inline-block;
    max-width: 95%;
    margin: 0 auto;
    text-align: center;
  }
}


/* ボタン動くアニメーション */
.animation{
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-duration: 1.5s;
}

.keyframe5{
  animation-name: anim_sc;
  transform: scale(0.85,0.85);
}

@keyframes anim_sc {
  100% {
    transform: scale(1,1);
  }
}

.modoru{
  text-align: center;
  font-size: 24px;
  padding: 20px;

}
.modoru a{
  display: inline-block;
  border: 1px solid #666;
  padding: 20px;
  border-radius: 5px;
}