/* ===========================
   pagetop.css
   =========================== */

/* ページトップボタン */
#pageTop {
  position: fixed;
  bottom: 90px;
  right: 20px;
  z-index: 9000;
  margin: 0;
}

#pageTop a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #E8351A;
  color: #E8351A;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 3px 10px rgba(0, 0, 0, .15);
  transition: .3s;
}

#pageTop a:hover {
  background: #E8351A;
  color: #fff;
}

/* 固定CTAボタン */
#CTA_fixed {
  display: block;
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  padding: 10px 20px;
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 -2px 15px rgba(0, 0, 0, .12);
  text-align: center;
}

#CTA_fixed a.moreview {
  width: 500px;
  max-width: 100%;
  min-height: 56px;
  font-size: 18px;
  padding: 10px 40px;
  box-shadow: 0 4px 14px rgba(232, 53, 26, .35);
}

@media (max-width: 768px) {
  #CTA_fixed {
    padding: 8px 12px;
  }

  #CTA_fixed a.moreview {
    width: 100%;
    border-radius: 10px;
    font-size: 16px;
    min-height: 52px;
  }

  #pageTop {
    bottom: 80px;
    right: 12px;
  }
}
