@charset "utf-8";

/*----------------------------------------------------
	page_top
----------------------------------------------------*/
#page_top {
  position: fixed;
  bottom: 10px;
  right: 10px;
  width: 48px;
  height: 48px;
  background: #eeece4 url(../img/icon/top.svg) no-repeat center center;
  border-radius: 50%;
  border: 1px solid #6a5f56;
  cursor: pointer;
  display: none;
  z-index: 1000;
  transition: background-color 0.3s, transform 0.3s;
  filter: drop-shadow(0 0px 3px rgba(60, 54, 51, .4));
}
#page_top:hover {
  background: #6a5f56 url(../img/icon/top_c.svg) no-repeat center center;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  #page_top {
    bottom: 5px;
    right: 5px;
    width: 40px;
    height: 40px;
    background-size: 45px auto;
  }
  #page_top:hover {
    background-size: 45px auto;
  }
}