.pagetop {
  position: fixed;
  right: 10px;
  z-index: 2;
  opacity: 0;
  transform: translateY(100px);
}
.pagetop a {
  font-family: "ador-hairline", sans-serif;
  font-weight: 400;
  line-height: 1.4;
  font-size: 13px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000;
  border-radius: 5px;
  width: 60px;
  height: 60px;
  color: #fff !important;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s;
}
.pagetop a:hover {
  background: #fabe00;
	text-decoration: none;
}
/*　上に上がる動き　*/
.pagetop.UpMove {
  animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*　下に下がる動き　*/
.pagetop.DownMove {
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}
/* --------------------------------------------- */
/* ▼モバイルファースト (全環境に共通のデザイン) */
/* --------------------------------------------- */
.f-bg {
  padding: 2em 0 0;
  background-color: #e9e9e8;
  border-top: 3px solid #000;
}
.footer_logo {
  width: 90%;
  margin: auto;
}
.footer_logo img {
  width: 200px;
  margin: 0 auto 1em;
}
.footer_logo p {
  font-size: 1.3rem;
}
.footer_logo p span {
  display: block;
  margin: 1em auto 0.3em;
  font-weight: bold;
}
.f_sns {
  margin: 1em auto 1em;
  font-size: 2.8rem;
}
.f_sns a {
  margin: 0 15px;
}
.footer_contact {
  margin: 0 auto 2em;
}
.footer_tel {}
.footer_tel div {
  margin: 0 auto 0.3em;
  letter-spacing: 1px;
}
.footer_tel p {
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin: 0.5em auto 0;
}
.footer_tel a {
  font-size: 3rem;
  line-height: 1.2;
  letter-spacing: 1px;
}
.footer_tel a i {
  font-size: 2rem;
  display: inline-block;
  margin: 0 5px 0 0;
}
.footer_contact ul {
  width: 280px;
  margin: 1.5em auto 0;
}
.footer_contact ul li {
  margin: 1em auto 0;
}
.footer_contact ul li a {
  display: block;
  position: relative;
  border: 1px solid #000;
  padding: 10px 0;
  font-size: 1.4rem;
  transition: .4s;
}
.footer_contact ul li a:hover {
  background: #000;
  color: #fff;
}
.footer_contact ul li a::before {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translate(0%, -50%);
  content: '\f054';
  font-family: FontAwesome;
  font-weight: 400;
  color: #000;
  transition: .4s;
}
.footer_contact ul li a:hover::before {
  color: #fff;
}
.footer_nav {
  display: none;
}
.copyright {
  background: #fdbf40;
  color: #fff;
  font-size: 12px;
  padding: 1em 0;
  margin: 2em auto 0;
}
.pagetop {
  display: none;
}
/* ------------------------------------ */
/* ▼PC用デザインとして付け足すデザイン */
/* ------------------------------------ */
@media all and (min-width: 768px) {
  .f-bg {
    padding: 3em 0 0;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0em auto 0em;
    justify-content: center;
    align-items: flex-end;
  }
  .footer_logo {
    width: 350px;
    margin: 0 50px 0 0;
    text-align: left;
  }
  .footer_logo img {
    width: 250px;
    margin: 0 auto 1em 0;
  }
  .footer_logo p {
    font-size: 15px;
  }
  .footer_logo p span {
    margin: 0.6em auto 0.1em;
  }
  .footer_right {
    width: 700px;
    text-align: right;
  }
  .f_sns {
    margin: 0em auto 0.5em;
    font-size: 35px;
  }
  .footer_contact {
    margin: 0 auto 1.5em;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    justify-content: flex-end;
    align-items: center;
  }
  .footer_tel {
    text-align: left;
    display: inline-block;
    margin: 0 30px 0 0;
  }
  .footer_tel div {
    margin: 0 auto 0.5em;
    font-size: 17px;
  }
  .footer_tel p {
    font-size: 13px;
  }
  .footer_tel a {
    font-size: 35px;
  }
  .footer_tel a:hover {
    text-decoration: none;
  }
  .footer_tel a i {
    font-size: 28px;
  }
  .footer_contact ul {
    width: 330px;
    margin: 0;
    text-align: center;
  }
  .footer_contact ul li {
    margin: 1em auto 0;
  }
  .footer_contact ul li a {
    padding: 10px 0;
    font-size: 16px;
  }
  .footer_contact ul li a:hover {
    text-decoration: none;
  }
  .footer_nav {
    display: block;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 1em auto 0em;
    justify-content: flex-end;
  }
  .footer_nav li {
    position: relative;
    padding: 0 10px;
    font-size: 15px;
    line-height: 1.2;
    margin: 10px 0 0;
  }
  .footer_nav li::before {
    position: absolute;
    top: 0;
    right: 0;
    content: '';
    width: 1px;
    height: 100%;
    background: #000;
  }
  .footer_nav li a:hover {
    color: #fdbf40;
  }
  .copyright {
    text-align: center;
    width: 100%;
    font-size: 14px;
    padding: 1em 0;
    margin: 3em auto 0;
  }
  .pagetop {
    display: block;
  }
  #sbdiv_all {
    position: relative !important;
    width: 100% !important;
  }
}