/* ここからCSS */

body {
  background-color: #ffffff !important;
}

@media (min-width: 768px) {
  .line-button,
  .reserva-button {
    font-size: 26px !important;
    padding: 28px 60px !important;
  }
  .line-button:hover,
  .reserva-button:hover {
    transform: scale(1.05);
  }
  .qr-pc-only {
    display: block;
    margin-top: 24px;
  }
}
@media (max-width: 767px) {
  .qr-pc-only {
    display: none;
  }
}

/* LINEボタン：緑 */
.line-button {
  display: inline-block;
    margin-left: auto;
  margin-right: auto;
  padding: 24px 48px;
  background-color: #06C755;
  color: #fff;
  font-weight: bold;
  font-size: 22px;
  border-radius: 14px;
  text-decoration: none;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.4s ease-out 0.1s, transform 0.4s ease-out 0.1s;
}

.reserva-button {
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
  padding: 24px 48px;
  background: linear-gradient(to right, #FFA726, #FF8C00);
  color: #fff;
  font-weight: bold;
  font-size: 22px;
  border-radius: 14px;
  text-decoration: none;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.4s ease-out 0.1s, transform 0.4s ease-out 0.1s;
}


/* アクティブ状態の共通 */
.line-button.fade-zoom-in.active,
.reserva-button.fade-zoom-in.active {
  opacity: 1;
  transform: scale(1);
}


/* 固定LINEボタン */
.fixed-line-btn {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to right, #90e57a, #06C755);
  text-align: center;
  padding: 20px 10px;
  z-index: 9999;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.25);
}
.fixed-line-btn p {
  margin: 0 0 8px;
  font-size: 15px;
  color: #fff;
}
.fixed-line-btn a {
  display: inline-block;
  padding: 16px 36px;
  background-color: #fff;
  color: #06C755;
  font-weight: bold;
  font-size: 18px;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
}
.fixed-line-btn a:hover {
  transform: scale(1.05);
}

/* フェードアップアニメーション */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-up.active {
  opacity: 1;
  transform: translateY(0);
}

/* 動画間スペース（レスポンシブ） */
.video-gap {
  height: 40px;
}
@media (min-width: 768px) {
  .video-gap {
    height: 60px;
  }
}
.slider {
  overflow: hidden;
  width: 100%;
  background-color: #fff;
  min-height: 130px;
}

.slide-track {
  display: flex;
  gap: 20px;
  width: 5400px; /* 画像10枚 × 2セット × 270px（250px + 20px） */
  animation: scroll 55s linear infinite; /* スピードゆっくりに調整 */
}

.slide-track img {
  height: 180px;
  width: 250px;
  object-fit: cover;
  flex-shrink: 0;
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-2700px); /* 片側10枚ぶんだけ移動（5400の半分） */
  }
}
.fullwidth-video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  max-width: 100%;
  background-color: #ffffff;
  object-fit: contain;
}

.noto-bold {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  color: #444;
  text-align: center;
  padding: 40px 20px;
}
.noto-bold h3 {
  font-size: 20px;
  margin-bottom: 12px;
}
.noto-bold p {
  font-size: 16px;
  color: #666;
}

</style>
