@charset "UTF-8";

/*--------------------------------------------------------------------
=== [共通レイアウト] ====================================
 -------------------------------------------------------------------*/

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3.4rem;
  font-weight: 400;
  color: #000;
  line-height: 2;
}

main {
  max-width: 75rem;
  margin: 0 auto;
  background-color: #fff;
}

img {
  max-width: 75rem;
  width: 100%;
}

.conv .btn {
  max-width: 72.4rem;
  top: 11.7rem;
  left: 0;
  right: 0;
  margin: auto;
}

@media (max-width: 750px) {
  .conv .btn {
    top: 16vw;
  }
}
.conv .btn a {
  transition: 0.3s;
  margin: 0 1.3rem;
  display: block;
}
.conv .btn a:hover {
  opacity: 0.7;
}

.reservation {
  background-image: url("../img/sec08_01.jpg");
  background-size: 100%;
  background-repeat: no-repeat;
  height: 210.6rem;
  position: relative;
  margin-top: 6rem;
}

.reservation figure {
  position: absolute;
  max-width: 50rem;
  top: 94rem;
  left: 0;
  right: 0;
  margin: auto;
}

@media (max-width: 750px) {
  .reservation {
    height: 280.8vw;
  }
  .reservation figure {
    top: 125.33vw;
    padding: 0 16vw;
  }
}
footer {
  padding: 5rem 0;
  background-color: #fff;
  max-width: 75rem;
  margin: 0 auto;
  text-align: center;
  font-size: 2rem;
}

footer ul {
  display: flex;
  justify-content: center;
}
footer ul li {
  margin: 0 1.5rem;
}
footer ul li a {
  color: #a8a8a8;
  text-decoration: none;
}

footer .copy {
  font-weight: bold;
  margin-top: 3rem;
}

@media (max-width: 750px) {
  footer {
    padding: 6.66vw 0;
    font-size: 2.66vw;
  }
  footer .copy {
    margin-top: 4vw;
  }
}

/* 光が横切るエフェクト */
.light-box {
  display: block;
  overflow: hidden;
  margin: 0 auto;
  background-color: transparent;
}
.shiny-btn {
  display: inline-block;
  text-align: center;
  position: relative;
  /* width: 100%; */
  color: #fff;
  font-size: min(calc(30 / 750 * 100vw), 3rem);
  border-radius: min(calc(30 / 750 * 100vw), 3rem);
}
.shiny-btn:after {
  content: "";
  position: absolute;
  top: -10rem;
  left: -10rem;
  width: 5rem;
  height: 5rem;
  background-image: linear-gradient(100deg, rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, 0.8) 100%, rgba(255, 255, 255, 0) 0%);
  animation-name: shiny;
  animation-duration: 2.5s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
@keyframes shiny {
  0% {
    transform: scale(0) rotate(25deg);
    opacity: 0;
  }

  50% {
    transform: scale(1) rotate(25deg);
    opacity: 1;
  }

  100% {
    transform: scale(50) rotate(25deg);
    opacity: 0;
  }
}
/* 光が横切るエフェクト */

/* 跳ねるエフェクト */

.bounce {
  animation: bounce 1.5s ease infinite;
}
@keyframes bounce {
  70% {
    transform: translateY(0%);
  }
  80% {
    transform: translateY(-15%);
  }
  90% {
    transform: translateY(0%);
  }
  95% {
    transform: translateY(-7%);
  }
  97% {
    transform: translateY(0%);
  }
  99% {
    transform: translateY(-3%);
  }
  100% {
    transform: translateY(0);
  }
}
/* 跳ねるエフェクト */
