@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?241011_1");
  background-size: 100%;
  background-repeat: no-repeat;
  height: 396px;
  position: relative;
  max-width: 742px;
  width: 100%;
  margin: 0 auto;
}

.conv .btn {
  position: absolute;
  max-width: 696px;
  width: 100%;
  top: 103px;
  left: 50%;
  margin: 0 auto;
  transform: translateX(-50%);
}

.conv.conv02 .btn {
  top: 27px;
}

@media (max-width: 750px) {
  .conv {
    width: 99vw;
    height: 52.2vw;
  }
  .conv.conv02 {
    height: 48.2vw;
  }
  .conv .btn {
    top: 13vw;
    width: 95vw;
  }
  .conv.conv02 .btn {
    top: 4.5vw;
    width: 95vw;
  }
}
.conv .btn a {
  transition: 0.3s;
  margin: 0 auto;
  display: block;
  width: 100%;
  height: auto;
}
.conv .btn a:hover {
  opacity: 0.7;
}

.reservation {
  background-image: url("../img/sec08_01.jpg");
  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;
  }
}

.sec08__item {
  max-width: 730px;
  width: 100%;
  margin: 8% auto 0;
  padding-bottom: 8%;
}

@media (max-width: 750px) {
  .sec08__item {
    width: 98vw;
  }
}

.sec08__item img {
  width: 100%;
}

footer {
  padding: 50px 0;
  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;
    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);
  }
}
/* 跳ねるエフェクト */

/* プルプルエフェクト */
.purupuru {
  animation: purupuru 0.8s linear 1s infinite;
}
@keyframes purupuru {
  0% {
    transform: translateX(-50%) skew(9deg);
  }
  10% {
    transform: translateX(-50%) skew(-8deg);
  }
  20% {
    transform: translateX(-50%) skew(7deg);
  }
  30% {
    transform: translateX(-50%) skew(-6deg);
  }
  40% {
    transform: translateX(-50%) skew(5deg);
  }
  50% {
    transform: translateX(-50%) skew(-4deg);
  }
  60% {
    transform: translateX(-50%) skew(3deg);
  }
  70% {
    transform: translateX(-50%) skew(-2deg);
  }
  80% {
    transform: translateX(-50%) skew(1deg);
  }
  90% {
    transform: translateX(-50%) skew(0deg);
  }
  100% {
    transform: translateX(-50%) skew(0deg);
  }
}
