.pagetop {
  position: fixed;
  right: 10px;
  z-index: 2;
  opacity: 0;
  transform: translateY(100px);
}
.pagetop a {
  font-size: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #0066DD;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s;
}
.pagetop a:hover {
  background: #F0F9FC;
  color: #0066DD;
}
/*　上に上がる動き　*/
.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_contact {
  padding: 3em 0;
  background: url("/img/common/bg_sp.webp") center / cover;
}
.f_contact div {
  width: 80%;
  margin: 0 auto 1em;
  font-weight: 500;
  font-size: 1.4rem;
}
.f_contact div span {
  display: block;
  font-family: "Kumbh Sans", sans-serif;
  font-weight: 600;
  color: #0066DD;
  font-size: 5rem;
  line-height: 1;
  margin: 0 auto 0.2em;
}
.f_contact a {
  width: 320px;
  margin: auto;
  display: block;
  position: relative;
  color: #fff;
  border-radius: 100px;
  font-weight: 500;
  font-size: 1.4rem;
  padding: 25px 0;
  background: linear-gradient(135deg, rgba(0, 185, 253, 1) 0%, rgba(0, 85, 887, 1)50%, rgba(0, 85, 887, 1)100%);
  background-position: 1% 50%;
  background-size: 200% auto;
  transition: all 0.3s ease-out;
}
.f_contact a:hover {
  background-position: 99% 50%;
}
.f_contact a img {
  display: inline-block;
  width: 22px;
  margin: 0 8px 2px 0;
}
.f_contact a::before {
  position: absolute;
  content: '';
  top: 50%;
  right: 15px;
  transform: translate(0%, -50%);
  display: block;
  width: 30px;
  height: 30px;
  background-image: url("/img/common/arrow_blue.webp");
  background-size: contain;
  background-repeat: no-repeat;
  transition: ease .2s;
}
.f_contact a:hover::before {
  right: 10px;
}
.footer {
  background: #0066DD;
  padding: 3em 0;
}
.footer a {
  color: #fff;
}
.footer a:hover {
  color: #FFE65A;
}
.footer_logo {
  width: 220px;
  margin: 0 auto 2em;
}
.footer_nav {
  display: none;
}
.f_pp {
  font-size: 1.2rem;
}
.f_pp:hover {
  text-decoration: underline;
}
.pagetop {
  display: none;
}
/* ------------------------------------ */
/* ▼PC用デザインとして付け足すデザイン */
/* ------------------------------------ */
@media all and (min-width: 768px) {
  .f_contact {
    padding: 4em 0;
    background: url("/img/common/bg.webp") center / cover;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0em auto 0em;
    justify-content: center;
    align-items: center;
  }
  .f_contact div {
    width: auto;
    margin: 0;
    text-align: left;
    font-size: 1.8rem;
  }
  .f_contact div span {
    font-size: 9rem;
    margin: 0 auto 0.1em;
  }
  .f_contact a {
    width: 550px;
    margin: 0 0 0 80px;
    border-radius: 100px;
    font-size: 2rem;
    padding: 50px 0;
  }
  .f_contact a img {
    width: 30px;
    margin: 0 12px 5px 0;
  }
  .f_contact a::before {
    right: 25px;
    width: 50px;
    height: 50px;
  }
  .f_contact a:hover::before {
    right: 20px;
  }
  .footer {
    position: relative;
    padding: 5em 0 7em;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0em auto 0em;
    justify-content: center;
  }
  .footer_logo {
    width: 300px;
    margin: 0 100px 0 0;
  }
  .footer_nav {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    justify-content: flex-start;
  }
  .footer_nav > li {
    text-align: left;
    display: inline-block;
    padding: 0 50px 0 0;
  }
  .footer_nav > li ul li {
    position: relative;
    line-height: 1.4;
    padding: 0 0 14px 25px;
  }
  .footer_nav > li ul li::before {
    position: absolute;
    content: '';
    top: 3px;
    left: 0px;
    display: block;
    width: 18px;
    height: 18px;
    background-image: url("/img/common/arrow_yellow.webp");
    background-size: contain;
    background-repeat: no-repeat;
  }
  .f_pp {
    position: absolute;
    display: inline-block;
    bottom: 2em;
    right: 5%;
    text-align: right;
    font-size: 1.4rem;
  }
  .pagetop {
    display: block;
  }
}