.daito_cop_more_button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 200px;
  height: 40px;
  padding: 14px 20px;
  background: #008CD6;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 1.8rem;
  font-weight: bold;
  transition: 0.3s;
}
@media (min-width: 1024px) {
  .daito_cop_more_button {
    width: 293px;
    height: 63px;
    padding: 18px 27px;
    font-size: 2.4rem;
  }
}

.daito_cop_more_button::before {
  content: "";
  position: absolute;
  top: 7px;
  left: -6px;
  width: 200px;
  height: 40px;
  border: 2px solid #008CD6;
  z-index: -1;
  transition: 0.3s;
}
@media (min-width: 1024px) {
  .daito_cop_more_button::before {
    top: 13px;
    left: -12px;
    width: 293px;
    height: 63px;
  }
}

.daito_cop_more_button__arrow {
  position: relative;
  width: 50px;
  height: 14px;
}
@media (min-width: 1024px) {
  .daito_cop_more_button__arrow {
    width: 84px;
    height: 18px;
  }
}

.daito_cop_more_button__line {
  position: absolute;
  left: 0;
  top: 40%;
  width: 50px;
  height: 2px;
  background: #fff;
  transform: translateY(-50%);
  transform-origin: right center;
  transition-property: width, background;
  transition-duration: 0.3s;
}
@media (min-width: 1024px) {
  .daito_cop_more_button__line {
    width: 76px;
  }
}

.daito_cop_more_button__circle {
  position: absolute;
  right: 0;
  top: 0;
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  transition: all 0.3s ease;
}
@media (min-width: 1024px) {
  .daito_cop_more_button__circle {
    width: 18px;
    height: 18px;
  }
}

/* ====================
   hover
==================== */
@media (min-width: 1024px) {
  .daito_cop_more_button:hover {
    width: 293px;
    height: 63px;
    padding: 17px 27px;
    background: #EF7C00;
    transform: translate(-13px, 12px);
  }
  .daito_cop_more_button:hover::before {
    top: 0;
    left: 0;
    border: 2px solid #EF7C00;
  }
  .daito_cop_more_button:hover .daito_cop_more_button__line {
    width: 10px;
  }
  .daito_cop_more_button:hover .daito_cop_more_button__arrow {
    width: 18px;
    height: 18px;
  }
}
#page_top {
  position: fixed;
  right: 15px;
  bottom: 65px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
@media (min-width: 769px) {
  #page_top {
    bottom: 15px;
  }
}
@media (min-width: 1024px) {
  #page_top {
    right: 67px;
    bottom: 67px;
  }
}

#page_top.is-active {
  opacity: 1;
  visibility: visible;
}

#page_top a {
  display: block;
  width: 40px;
  height: 40px;
}
@media (min-width: 769px) {
  #page_top a {
    width: 60px;
    height: 60px;
  }
}
@media (min-width: 1024px) {
  #page_top a {
    width: 157px;
    height: 157px;
  }
}

#page_top a:hover {
  opacity: 0.8;
}
