.pagetop {
  position: fixed;
  right: 10px;
  z-index: 2;
  opacity: 0;
  transform: translateY(100px);
}
.pagetop a {
  font-family: "the-seasons", sans-serif;
  font-weight: 400;
  line-height: 1.4;
  font-size: 1.3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000;
  border-radius: 5px;
  width: 60px;
  height: 60px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s;
}
.pagetop a:hover {
  background: #EFEFEF;
  color: #333;
}
/*　上に上がる動き　*/
.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 {
  position: relative;
}
.f_contact::before {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  background: #000000;
  mix-blend-mode: multiply;
  opacity: 0.45;
}
.f_contact > img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center left;
}
.f_contact_in {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  color: #fff;
}
.f_contact_in h2 {
  font-family: "the-seasons", sans-serif;
  font-weight: 400;
  font-size: 4rem;
  line-height: 1.3;
}
.f_contact_in ul {}
.f_contact_in ul li {
  margin: 1.5em auto 0;
}
.f_contact_in ul li div {
  margin: 0 auto 0.5em;
  font-size: 1.4rem;
}
.f_contact_in ul li p {
  font-size: 1.1rem;
  margin: 0.8em auto 0;
}
.f_contact_in ul li a {
  position: relative;
  display: block;
  border-radius: 50px;
  border: 0.5px solid #fff;
  text-decoration: none;
  outline: none;
  overflow: hidden;
  padding: 15px 0px;
  color: #fff;
  width: 280px;
  margin: auto;
  letter-spacing: 3px;
}
.f_contact_in ul li a img {
  display: inline-block;
  width: 18px;
  margin: 0 7px 3px 0;
}
.f_contact_in ul li a:hover img {
  filter: invert(100%);
}
.f_contact_in ul li a:hover {
  color: #333;
  border-color: transparent;
}
.f_contact_in ul li a::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  height: 100%;
  width: 0;
  background: #fff;
  transition: all .3s;
}
.f_contact_in ul li a:hover::before {
  width: 100%;
}
.f_contact_in ul li a::after {
  position: absolute;
  content: '';
  display: block;
  width: 19px;
  height: 10px;
  background-image: url("/img/common/arrow_w.webp");
  background-size: contain;
  background-repeat: no-repeat;
  top: 50%;
  right: 15px;
  transform: translate(0%, -50%);
  transition: all .3s;
}
.f_contact_in ul li a:hover::after {
  background-image: url("/img/common/arrow.webp");
}
.f_contact_in ul li:first-child a {
  font-family: "the-seasons", sans-serif;
  font-weight: 400;
  font-size: 1.7rem;
  padding: 12px 0;
}


.f_contact_in ul li:last-child a {
  background: #06C755;
  border: none;
  color: #fff;
  transition: all .3s;
}
.f_contact_in ul li:last-child a:hover {
  color: #fff;
  background: #07B74F;
}
.f_contact_in ul li:last-child a img {
  filter: none;
}
.f_contact_in ul li:last-child a:hover img {
  filter: none;
  opacity: 1;
}
.f_contact_in ul li:last-child a:hover::after {
  background-image: url("/img/common/arrow_w.webp");
}

.footer {
  padding: 3em 0;
  margin: auto;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  background: #EFEFEF;
}
.footer_logo {
  width: 80px;
  margin: auto;
}
.footer_address {
  margin: 2em auto 0;
  width: 90%;
  line-height: 2;
}
.footer ul {
  margin: 2.5em auto 0;
}
.footer ul li {
  position: relative;
  display: inline-block;
  padding: 0 15px;
  line-height: 1.3;
}
.footer ul li::before {
  position: absolute;
  top: 0;
  right: 0;
  content: '';
  width: 1px;
  height: 100%;
  background: #333;
}
.footer ul li:last-child::before {
  display: none;
}
.cr {
  color: #A2A2A2;
  font-size: 1rem;
  margin: 2em auto 0;
}
.pagetop {
  display: none;
}
/* ------------------------------------ */
/* ▼PC用デザインとして付け足すデザイン */
/* ------------------------------------ */
@media all and (min-width: 768px) {
  .f_contact > img {
    height: 450px;
    object-position: center;
  }
  .f_contact_in {}
  .f_contact_in h2 {
    display: inline-block;
    margin: 0 0 0.2em 0;
    font-size: 7.5rem;
    line-height: 1.3;
  }
  .f_contact_in ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    justify-content: center;
  }
  .f_contact_in ul li {
    margin: 0 15px;
  }
  .f_contact_in ul li div {
    font-size: 1.7rem;
  }
  .f_contact_in ul li p {
    font-size: 1.4rem;
  }
  .f_contact_in ul li a {
    border-radius: 50px;
    font-size: 1.7rem;
    padding: 25px 0px;
    width: 350px;
  }
  .f_contact_in ul li a img {
    width: 23px;
    margin: 0 10px 4px 0;
  }
  .f_contact_in ul li:first-child a img {
    margin: 0 10px 7px 0;
  }
  .f_contact_in ul li:first-child a {
    font-size: 2.3rem;
    padding: 20px 0;
  }
  .footer {
    padding: 5em 0 3em;
  }
  .footer_logo {
    width: 130px;
  }
  .footer ul {
    margin: 4em auto 0;
  }
  .pagetop {
    display: block;
  }
}