@charset "UTF-8";
.entry_box {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: 4;
  background: linear-gradient(45deg, rgba(245, 144, 46, 0.05), rgba(254, 228, 0, 0.05));
}
.entry_box ul {
  margin: 0 auto;
  padding: 15px 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  width: 800px;
}
.entry_box ul li {
  width: 31%;
  text-align: center;
}
.entry_box ul li a {
  display: block;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(45deg, rgba(245, 144, 46, 1), rgba(254, 228, 0, 1), rgba(245, 144, 46, 1));
  background-position: 1% 50%;
  background-size: 200% auto;
  border-radius: 50px;
  padding: 10px 0 12px;
  text-align: center;
}
.entry_box ul li.entry a {
  font-family: neuzeit-grotesk, sans-serif;
  font-weight: 700;
  font-style: normal;
  padding: 12px 0;
  font-size: 18px;
  letter-spacing: 2px;
}
.entry_box ul li a:hover {
  opacity: 1;
  background-position: 99% 50%;
}
/*-------------------フッター-------------------*/
footer {
  position: relative;
  border-top: solid 1px #333;
}
footer small {
  font-family: neuzeit-grotesk, sans-serif;
  font-weight: 400;
  font-style: normal;
  display: block;
  font-size: 12px;
  letter-spacing: 1px;
  color: #fff;
  text-align: center;
  padding: 25px 0 100px;
}
.page-top a {
  display: block;
  text-decoration: none;
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 60px;
  text-align: center;
  color: #fff;
  background: linear-gradient(45deg, rgba(245, 144, 46, 1), rgba(254, 228, 0, 1), rgba(245, 144, 46, 1));
  background-position: 1% 50%;
  background-size: 200% auto;
  position: fixed;
  right: 2%;
  bottom: 45px;
  z-index: 9998;
}
.page-top a:hover {
  opacity: 1;
  background-position: 99% 50%;
}
.page-top a:after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  position: absolute;
  top: 5px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
@media screen and (max-width:1050px) {
  .entry_box ul {
    padding: 10px 0;
    width: 90%;
  }
  .entry_box ul li {
    width: 49%;
  }
  .entry_box ul li a {
    padding: 5px 0 7px;
    font-size: 15px;
  }
  .entry_box ul li.entry {
    display: none;
  }
  /*-------------------フッター-------------------*/
  footer small {
    font-size: 10px;
    padding: 20px 0 75px;
  }
  .page-top a {
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50px;
    position: fixed;
    right: 5%;
    bottom: 83px;
  }
}