@charset "utf-8";
.scroll-control {
  position: relative;
  z-index: 7;
}
.tmpBanner {
  display: block;
  position: fixed;
  bottom: 30px;
  left: 0;
  right: 0;
  box-sizing: border-box;
  font-family: Helvetica, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  z-index: 998;
}

.tmpBanner-content {
  display: table !important;
  margin: -3px auto;
  /*2px auto*/
  padding: 17px 0px 17px 10px;
}

.tmpBanner-text {
  display: table-cell;
  vertical-align: middle;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  line-height: 1.3;
  font-weight: bold;
  font-size: 14px;
  color: #fff;
}
.tmpBanner-text span {
  position: relative;
}
.tmpBanner-link {
  display: block;
  overflow: hidden;
  height: 100%;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  background: #eb5505;
  box-shadow: 0px -2px 6px 0px rgb(0 0 0 / 20%);
  border-radius: 50px;
  transition: 0.4s;
}
.tmpBanner-link::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  width: 22px;
  height: 12px;
  background: url('/content/dam/au-com/mobile/onlineshop/lp2/images/arrow_icon_down.png') center;
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
}
@media all and (max-width: 767px) {
  .tmpBanner-text {
    max-width: none;
  }
  .tmpBanner {
    bottom: 10px;
    padding: 0 3%;
  }
  .btn-pageTop {
    bottom: 60px;
  }
  .tmpBanner-link::after {
    right: 15px;
    width: 18px;
    height: 11px;
  }
  .tmpBanner-link {
    padding-right: 20px;
  }
}
.tmpBanner-link:hover,
.tmpBanner-content:link,
.tmpBanner-content:visited {
  text-decoration: none;
  color: #fff !important;
  opacity: 0.6;
}

@media all and (min-width: 768px) {
  .btn-tmpBanner-close {
    height: 50px;
    width: 50px;
  }
  .tmpBanner-content {
    display: table !important;
    margin: -3px auto;
    padding: 20px 0px 20px 10px;
  }
  .btn-tmpBanner-close::before {
    height: 20px;
    width: 20px;
  }

  .tmpBanner-text {
    font-size: 20px;
  }
}

@media all and (min-width: 1000px) {
  .tmpBanner-text {
    font-size: 20px;
    /*24px*/
  }

}

/* PC時左のナビとはかぶらないように調整 */
@media all and (min-width: 1200px) {
  .tmpBanner {
    left: 180px;
  }
}

/* iphone5でくずれないように調整 */
@media all and (max-width: 374px) {
  .tmpBanner-text {
    font-size: 13px;
  }
}

/* バナー表示中はフッターロゴに被らないよう調整 */
.footerLogo {
  margin-top: 30px;
}

.footerElem {
  padding-bottom: 80px;
  background: #f3f3f3;
}

.scroll-hide {
  animation: fadeOut 0.7s;
  animation-fill-mode: both;
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}
.scroll-show {
  animation: fadeIn 0.7s;
  animation-fill-mode: both;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
