@charset "UTF-8";
/* CSS Document */
html {
  font-size: calc(100vw / 37.5);
}
body {
  font-size: 62.5%;
  color: var(--text-color);
  font-family: "Noto Sans JP", serif;
  letter-spacing: 0.05em;/*都度調整してください*/
  line-height: 1.5;/*都度調整してください*/
  background: #3e220d;
}
.wrapper {
  width: 100%;
  margin: 0 auto;
  position: relative;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 0px 26px 0px;/*都度調整してください*/
}
img {
  width: 100%;
  height: auto;
}
a {
  cursor: pointer;
  display: block;
}
/*CTAエリア*/
.ctaArea a {
  width: 90%;
  margin: 0 auto;
}
.ctaArea:hover {
}
/*footerエリア*/
footer {
  background: #3e220d;
  padding: 2em 0;
}
footer nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 90%;
  max-width: 500px;
  margin: 0 auto;
  line-height: 2.6;
}
footer nav ul li  {
  font-size: 0.9rem;
  letter-spacing: -0.05em;
  color: #FFF;
}
footer nav ul li:last-child:after {
  content: none;
}
footer nav ul li.line {
  position: relative;
  margin: 0.3em 1.5em;
}
footer nav ul li.line::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  height: 12px;
  border-right: 1px solid #FFF;
}
footer p {
  text-align: center;
  font-size: 0.9rem;
  padding-top: 1em;
  color: rgba(255, 255, 255, 0.6)!important;
  letter-spacing: 0.2em;
}
#ReservationArea {
    width: 100%;
    height: auto;
    position: relative;
    display: inline-block;
}
#ctaArea {
    width: 100%;
    position: absolute;
    top: 81%;
    left: auto;
    margin-left: 10px;
    animation-name: updown;
    animation-delay: 0s;
    animation-duration: 3s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    padding-top: 1.5em;
}
@keyframes updown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px); /* 上に10px */
  }
  100% {
    transform: translateY(0);
  }
}
.teaser {
    width: 100%;
    height: auto;
    position: relative;
    display: inline-block; 
}
.teaserV {
    width: 80%;
    position: absolute;
    left: auto;
    margin-left: 10px;
    
}
/*　動画 */
.videoWrapper {
  background-color:#000;
  position: relative;
  width: 90%;
  max-width: 700px; /* 必要に応じて調整 */
  aspect-ratio: 16 / 9;   /* ← コレで高さを作る！ */
  margin: 20px auto 50px;
  overflow: hidden;
}

.videoWrapper video {
  background-color: #3f2314;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* コンテンツを枠いっぱいに表示、切り抜きあり */

}
