@charset "UTF-8";
/* ↓ バリバリグループ Color設定 */
/* ↑ バリバリグループ Color設定 */
/* ↓ バリバリグループ フォントサイズ設定 */
/*↑基本的なフォントサイズ*/
/*↑h4タグのフォントサイズ ($basic-font-sizeの1.5倍の大きさ)*/
/*↑h3タグのフォントサイズ ($h4-font-sizeの1.5倍の大きさ)*/
/*↑h2タグのフォントサイズ ($h3-font-sizeの1.5倍の大きさ)*/
/*↑h1タグのフォントサイズ ($h2-font-sizeの1.5倍の大きさ)*/
/*↑サブタイトル(h2直下の読み)のフォントサイズ*/
/* ↑ バリバリグループ フォントサイズ設定 */
html,
body {
  overflow-x: clip;
}

.img-01 {
  background-image: url("../img/mv/mv01.jpg");
  background-position: 0 80%;
}

.img-02 {
  background-image: url("../img/mv/mv02.jpg");
  background-position: 0 80%;
}

.img-03 {
  background-image: url("../img/mv/mv03.jpg");
  background-position: 0 80%;
}

.hoteltransition {
  position: sticky;
  top: 50%;
  transform: translate(0, 0) !important;
  width: min(94vw, 980px);
  margin: 0 auto 50px;
  z-index: 20;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(0, 0, 0, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.06) inset, 0 0 24px rgba(255, 215, 0, 0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow: hidden;
  animation: hoteltransitionIn 700ms ease both, hoteltransitionPulse 2.6s ease-in-out infinite;
}

/* 中身：縦並び */
.hoteltransition__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hoteltransition__badge {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.06em;
  font-size: 13px;
  color: #111;
  background: linear-gradient(90deg, #fff3a6, #ffd24a, #fff3a6);
  box-shadow: 0 8px 18px rgba(255, 210, 74, 0.25);
}

.hoteltransition__text {
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.03em;
  font-size: clamp(15px, 2.2vw, 22px);
  line-height: 1.35;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

/* ×ボタン：右上にabsolute */
.hoteltransition__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}

.hoteltransition__close:hover {
  transform: scale(1.06);
  background: rgba(255, 255, 255, 0.16);
}

.hoteltransition__close:active {
  transform: scale(0.98);
}

/* PCは中央、スマホは下 */
@media (max-width: 480px) {
  .hoteltransition {
    margin: 0 auto 5vw;
    padding: 3vw 4vw;
  }
  .hoteltransition__text {
    font-size: 4vw;
  }
  .hoteltransition__close {
    width: 7vw;
    height: 7vw;
    font-size: 6vw;
  }
}
/* キラッと走る光（前のまま使える） */
.hoteltransition::after {
  content: "";
  position: absolute;
  inset: -40% -30%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 35%, rgba(255, 255, 255, 0.35) 50%, rgba(255, 255, 255, 0) 65%);
  transform: translateX(-60%) rotate(8deg);
  animation: hoteltransitionShine 2.8s ease-in-out infinite;
  pointer-events: none;
}

/* 動きが苦手な人向け */
@media (prefers-reduced-motion: reduce) {
  .hoteltransition,
  .hoteltransition::after {
    animation: none !important;
  }
}
@keyframes hoteltransitionIn {
  from {
    opacity: 0;
    transform: translate(-50%, calc(-50% + 10px)) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}
@keyframes hoteltransitionPulse {
  0%, 100% {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35), 0 0 24px rgba(255, 215, 0, 0.18);
  }
  50% {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35), 0 0 30px rgba(255, 215, 0, 0.3);
  }
}
@keyframes hoteltransitionShine {
  0% {
    transform: translateX(-70%) rotate(8deg);
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  45% {
    transform: translateX(70%) rotate(8deg);
    opacity: 0.9;
  }
  100% {
    transform: translateX(70%) rotate(8deg);
    opacity: 0;
  }
}
@media (max-width: 1024px) {
  .catchCopy-img img {
    object-position: 0 80%;
  }
}