@charset "UTF-8";
/*========*/
/* フッタ */
/*========*/
/* ページトップへ戻る
-----------------------------------*/
.ptop {
  position: fixed;
  bottom: 90px;
  right: 64px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #ffe500;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  z-index: 10;
}
@media (max-width: 767px) {
  .ptop {
    width: 40px;
    height: 40px;
    right: 8px;
  }
}
.ptop:hover {
  opacity: 0.7;
}
.ptop a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}
.ptop a::after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  left: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 calc(24px / 2) 16px calc(24px / 2);
  border-color: transparent transparent #FFF transparent;
  margin: -10px auto 0;
}

/* フッタ
-----------------------------------*/
footer {
  padding: 60px 0;
  background-color: #fac800;
}
@media (max-width: 767px) {
  footer {
    padding: 40px 0 80px;
  }
}
footer a {
  color: #333 !important;
}
footer .contents {
  width: 86%;
  max-width: 1000px;
  margin: 0 auto;
  font-size: 16px;
  text-align: center;
}
@media (max-width: 767px) {
  footer .contents {
    width: 90%;
    font-size: clamp(14px, 3.73vw, 16px);
  }
}
footer .contents dl {
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  footer .contents dl {
    margin-bottom: 8px;
  }
}
footer .copyright {
  padding: 40px 24px 16px;
  font-size: 14px;
  color: #333;
  text-align: center;
  line-height: 1.3;
}
@media (max-width: 767px) {
  footer .copyright {
    font-size: clamp(12px, 3.2vw, 14px);
    padding: 24px 24px 8px;
  }
}
/*# sourceMappingURL=footer.css.map */