@charset "UTF-8";

/*--------------------------------------------------------------------
=== [共通レイアウト] ====================================
 -------------------------------------------------------------------*/

body {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5;
  font-weight: 500;
  color: #333;
  background-color: #fffde3;
}

main {
  max-width: 750px;
  margin: 0 auto;
  background-color: #fff;
}

img {
  max-width: 750px;
  width: 100%;
}

.conv {
  background-image: url("../img/conv_bg.jpg");
  background-size: 100%;
  background-repeat: no-repeat;
  height: 362px;
  position: relative;
}

.conv .btn {
  position: absolute;
  max-width: 670px;
  top: 120px;
  left: 0;
  right: 0;
  margin: auto;
}

@media (max-width: 750px) {
  .conv {
    height: 48.2vw;
  }
  .conv .btn {
    top: 16vw;
  }
}
.conv .btn a {
  transition: 0.3s;
  margin: 0 40px;
  display: block;
}
.conv .btn a:hover {
  opacity: 0.7;
}

.reservation {
  background-image: url("../img/sec08_01.jpg?250822");
  background-size: 100%;
  background-repeat: no-repeat;
  height: 2106px;
  position: relative;
  margin-top: 60px;
}

.reservation figure {
  position: absolute;
  max-width: 500px;
  top: 940px;
  left: 0;
  right: 0;
  margin: auto;
}

@media (max-width: 750px) {
  .reservation {
    height: 280.8vw;
  }
  .reservation figure {
    top: 125.33vw;
    padding: 0 16vw;
  }
}
footer {
  padding: 50px 0 230px;
  background-color: #fff;
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
  font-size: 20px;
}

footer ul {
  display: flex;
  justify-content: center;
}
footer ul li {
  margin: 0 15px;
}
footer ul li a {
  color: #a8a8a8;
  text-decoration: none;
}

footer .copy {
  font-weight: bold;
  margin-top: 30px;
}

@media (max-width: 750px) {
  footer {
    padding: 6.66vw 0 30vw;
    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), 30px);
  border-radius: min(calc(30 / 750 * 100vw), 30px);
}
.shiny-btn:after {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 50px;
  height: 50px;
  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);
  }
}
/* 跳ねるエフェクト */

/* ftg */

.ftg {
  display: none;
  position: fixed;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 750px;
  width: 100%;
  padding: 20px 25px;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 99;
}

.ftg-btn {
  width: 590px;
}

@media (max-width: 750px) {
  .ftg {
    width: 100%;
    padding: 2vw;
  }

  .ftg-btn {
    width: 78.6vw;
  }
}

.ftg a {
  display: block;
  width: 100%;
  margin: 0 auto;
}

.ftg a:hover {
  filter: brightness(120%);
  opacity: 1;
}

.ftg img {
  max-width: 100%;
  height: auto;
}
