.pagetop {
  position: fixed;
  right: 10px;
  z-index: 99;
  opacity: 0;
  transform: translateY(100px);
}
.pagetop a {
  text-transform: uppercase;
  font-family: "itc-avant-garde-gothic-pro", sans-serif;
  font-weight: 700;
  line-height: 1.4;
  font-size: 1.3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s;
}
.pagetop a:hover {
  background: #FFEB04;
  color: #000;
}
/*　上に上がる動き　*/
.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);
  }
}
.reserve {
  position: fixed;
  right: calc(50% - 100px);
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transform: translateY(100px);
  width: 200px;
}
.reserve a {
  background: #000;
  display: block;
  position: relative;
  padding: 10px 20px 10px 0;
  color: #fff;
  font-weight: 500;
  font-size: 1.6rem;
  letter-spacing: 2px;
  border-radius: 40px;
  transition: ease .4s;
}
.reserve a img {
  width: 24px;
  margin: 0 10px 0px 0px;
}
.reserve a:hover {
  background: #FFEB04;
  color: #000;
}
.reserve a:hover img {
  filter: brightness(0);
}
.reserve a::before {
  position: absolute;
  content: '';
  top: 50%;
  right: 10px;
  transform: translate(0%, -50%);
  display: block;
  width: 20px;
  height: 20px;
  background-image: url("/img/common/arrow.webp");
  background-size: contain;
  background-repeat: no-repeat;
  transition: ease .2s;
}
.reserve a:hover::before {
  background-image: url("/img/common/arrow_black.webp");
}
.reserve.UpMove {
  animation: UpAnime 0.5s forwards;
  visibility: visible;
}
.reserve.DownMove {
  animation: DownAnime 0.5s forwards;
  visibility: hidden;
}
/* --------------------------------------------- */
/* ▼モバイルファースト (全環境に共通のデザイン) */
/* --------------------------------------------- */
.f-bg {
  padding: 2em 0 0;
}
.f_contact {
  position: relative;
  z-index: 20;
  width: 90%;
  margin: auto;
}
.f_contact::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  background: #000;
  opacity: 0.4;
  mix-blend-mode: multiply;
  border-radius: 15px 15px 0 0;
}
.f_contact::after {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url("/img/common/circle_footer.webp"), url("/img/common/circle_footer02.webp");
  background-repeat: no-repeat, no-repeat;
  background-size: 120px, 120px;
  background-position: top 0 left 0, bottom 0px right 0px;
}
.f_contact > img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 15px 15px 0 0;
}
.f_contact h2 {
  position: absolute;
  top: -0.8em;
  left: 50%;
  transform: translate(-50%, 0%);
}
.f_contact_inner {
  position: absolute;
  z-index: 3;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.f_contact_inner div {
  font-weight: 700;
  color: #fff;
  display: inline-block;
  font-size: 1.6rem;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  padding: 3px 0;
  letter-spacing: 2px;
}
.f_contact_inner p {
  margin: 0.3em auto;
  font-size: 2.4rem;
  letter-spacing: 3px;
  font-weight: bold;
  color: #fff;
}
.f_contact_inner p span {
  color: #FFEB04;
}
.f_contact_note {
  font-weight: 400 !important;
  font-size: 1.2rem !important;
  letter-spacing: 1px !important;
}
.f_contact_note span {
  color: #fff !important;
  display: inline-block;
}
.f_contact_inner a {
  position: relative;
  overflow: hidden;
  display: inline-block;
  padding: 15px 45px 15px 25px;
  background: rgba(255, 235, 4, 0.85);
  outline: 1px solid rgb(0, 0, 0); /*outlineでドットの線を追加*/
  outline-offset: -3px; /*outline-offsetの値を-15pxにして内側に調整*/
  border-radius: 30px;
  font-weight: 500;
  transition: ease .2s;
}
.f_contact_inner a img {
  width: 20px;
  margin: 0 5px 0px 0;
  transition: none;
  filter: brightness(0);
}
.f_contact_inner a span {
  position: relative;
  z-index: 3;
}
.f_contact_inner a:hover span {
  color: #FFEB04;
}
.f_contact_inner a:hover img {
  filter: brightness(0) saturate(100%) invert(85%) sepia(95%) saturate(3837%) hue-rotate(359deg) brightness(106%) contrast(105%);
}
.f_contact_inner a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -130%;
  /*色や形状*/
  background: #000;
  width: 120%;
  height: 100%;
  transform: skewX(-25deg);
}
.f_contact_inner a:hover::before {
  animation: skewanime .5s forwards;
}
@keyframes skewanime {
  100% {
    left: -10%; /*画面の見えていない左から右へ移動する終了地点*/
  }
}
.f_contact_inner a::after {
  position: absolute;
  content: '';
  top: 50%;
  right: 15px;
  transform: translate(0%, -50%);
  display: block;
  width: 20px;
  height: 20px;
  background-image: url("/img/common/arrow_black.webp");
  background-size: contain;
  background-repeat: no-repeat;
  transition: ease .2s;
}
.f_contact_inner a:hover::after {
  right: 10px;
}
.footer {
  padding: 3em 0;
  background: #000;
  color: #fff;
}
.footer a {
  color: #fff;
}
.footer a:hover {
  color: #FFEB04;
}
.footer_logo {
  width: 90%;
  margin: 0 auto 20px;
  padding: 0 0 20px;
  border-bottom: 0.5px solid #fff;
}
.footer_logo img {
  display: block;
  width: 200px;
  margin: 0 auto 20px;
}
.footer_logo a {
  text-decoration: none !important;
}
.footer_line {
  margin: 1.5em auto 0;
  width: 200px;
}
.footer_line a {
  display: block;
  background: #02C101;
  border-radius: 5px;
  padding: 12px 0;
  font-size: 1.5rem;
}
.footer_line a img {
  width: 20px;
  margin: 0 10px 2px 0;
}
.footer_line a:hover img {
  opacity: 1;
}
.footer_line::before {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translate(0%, -50%);
  content: '\f054';
  font-family: FontAwesome;
  font-weight: 400;
  color: #fff;
  transition: ease .2s;
}
.footer_line:hover::before {
  right: 10px;
}
.footer ul {
  width: 80%;
  margin: 2em auto 0;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  font-size: 1.2rem;
  line-height: 1.3;
  letter-spacing: 2px;
}
.footer ul li {
  position: relative;
  padding: 15px 15px 0;
}
.footer ul li:first-child::before {
  position: absolute;
  top: 15px;
  right: 0;
  width: 1px;
  height: calc(100% - 15px);
  content: '';
  background: #fff;
}
.pagetop {
  display: none;
}
/* ------------------------------------ */
/* ▼PC用デザインとして付け足すデザイン */
/* ------------------------------------ */
@media all and (min-width: 768px) {
  .reserve {
    right: 0px;
    width: 60px;
    bottom: auto;
    top: 100px;
    opacity: 1 !important;
    visibility: visible !important;
  }
  .reserve a {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    text-align: left;
    padding: 20px 0 50px;
    line-height: 60px;
    font-size: 2rem;
    letter-spacing: 5px;
    border-radius: 20px 0 0 20px;
  }
  .reserve a img {
    width: 28px;
    margin: 0 0 8px 16px;
  }
  .reserve a::before {
    top: auto;
    right: auto;
    bottom: 18px;
    left: 50%;
    transform: translate(-50%, 0%);
    width: 25px;
    height: 25px;
  }
  .f-bg {
    padding: 3em 0 0;
  }
  .f_contact {
    max-width: 1300px;
  }
  .f_contact::before {
    border-radius: 30px 30px 0 0;
  }
  .f_contact::after {
    background-size: 350px, 350px;
  }
  .f_contact > img {
    height: 480px;
    border-radius: 30px 30px 0 0;
  }
  .f_contact h2 {
    top: -0.9em;
  }
  .f_contact_inner div {
    font-size: 3.5rem;
    padding: 1px 0;
  }
  .f_contact_inner p {
    margin: 0em auto 0.1em;
    font-size: 6.5rem;
    letter-spacing: 3px;
  }
  .f_contact_note {
    margin: 1em auto 0 !important;
    font-weight: 400 !important;
    font-size: 1.7rem !important;
    letter-spacing: 2px !important;
  }
  .f_contact_inner a {
    padding: 35px 125px 35px 95px;
    outline-offset: -5px; /*outline-offsetの値を-15pxにして内側に調整*/
    border-radius: 80px;
    font-size: 2rem;
  }
  .f_contact_inner a img {
    width: 30px;
    margin: 0 8px 2px 0;
  }
  .f_contact_inner a::after {
    top: 50%;
    right: 25px;
    width: 30px;
    height: 30px;
  }
  .f_contact_inner a:hover::after {
    right: 20px;
  }
  .footer {
    padding: 4em 0;
  }
  .footer_logo {
    max-width: 800px;
    margin: 0 auto 30px;
    padding: 0 0 30px;
  }
  .footer_logo img {
    width: 300px;
    margin: 0 auto 30px;
  }
  .footer_line {
    margin: 1.5em auto 0;
    width: 300px;
  }
  .footer_line a {
    border-radius: 10px;
    padding: 12px 0;
    font-size: 1.8rem;
  }
  .footer_line a img {
    width: 30px;
    margin: 0 10px 2px 0;
  }
  .footer ul {
    width: 100%;
    margin: 3em auto 0;
    font-size: 1.4rem;
  }
  .footer ul li {
    padding: 0 15px 0;
  }
  .footer ul li:first-child::before {
    top: 0px;
    height: 100%;
  }
  .footer ul li::before {
    position: absolute;
    top: 0px;
    right: 0;
    width: 1px;
    height: 100%;
    content: '';
    background: #fff;
  }
  .footer ul li:last-child::before {
    display: none;
  }
  .pagetop {
    display: block;
  }
}