@charset "UTF-8";

*, ::after, ::before { box-sizing: border-box; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #333333;
  text-align: left;
  background-color: #000;
}

img { width: 100%; display: block; }

/* Footer */
footer {
  text-align: center;
  padding: 10px;
  background: #A93D57;
  margin: 70px auto 0;
}
footer span { color: #fff; font-size: 10px; line-height: 1.2; display: block; }
footer a { color: #fff; }

/* Wrapper & Background */
.wrapper {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
}
.wrapper:before {
  content: "";
  background-image: url(https://x3hxzjkvlulq.ywufsjhc4.jp/mume/imgs/adult2/adult2_backimg.jpg);
  width: 100%; min-height: 100vh;
  background-size: cover; background-position: top center;
  position: fixed; z-index: -2; top: 0;
}

.wrapper:after {
  content: "";
  background-image: url(https://x3hxzjkvlulq.ywufsjhc4.jp/mume/imgs/adult2/adult2_backimg.jpg);
  width: 100%;
  min-height: 100vh;
  background-size: cover;
  background-position: top center;
  position: fixed;
  top: 0;
  z-index: -1;
}

/* Voice Sections */
.voice {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-bottom: 30px;
}
.fukidashi_icon { width: 30%; margin-left: 10%; position: relative; }
.fukidashi_text { width: 52%; padding-left: 14px; top: -10%; }
.typing-container { position: relative; }

/* Animations */
@keyframes dokidoki {
    0%   { transform: scale(1.0); }
    5%   { transform: scale(1.05); }
    10%  { transform: scale(1.0); }
    15%  { transform: scale(1.05); }
    20%  { transform: scale(1.0); }
    100% { transform: scale(1.0); }
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes button-pulse {
  0% { transform: scale(1.0); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1.0); }
}
.custom-pulse {
  display: block;
  animation: button-pulse 1.5s infinite ease-in-out;
  text-decoration: none;
}
.midashi_btn {
  margin: 0px auto; color: #ffffff; font-size: 0.4em; text-align: center; font-weight: bold;
}

/* --- メインビジュアルのスライドショー --- */
.top-visual-box {
  position: relative; width: 100%; overflow: hidden; line-height: 0; z-index: 0;
}
.topimg {
  display: block; width: 100%; height: auto; position: relative; z-index: 20; pointer-events: none;
}
.overlay-slideshow {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1;
}
.overlay-img {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity 1.5s ease-in-out; z-index: 1;
}
.overlay-img.active {
  opacity: 1; z-index: 2;
}

/* Last Movie */
.last-video-box { position: relative; width: 85%; margin: 0 auto; }
.last-movie { display: block; width: 100%; height: auto; border-radius: 8px; }
.last-logo-overlay { position: absolute; z-index: 10; bottom: 10px; right: 10px; width: 25%; height: auto; }

/* Floating Push Button */
div#push { position: fixed; bottom: 4%; right: 3%; width: 24%; z-index: 150; }
div#push img { border-radius: 10px; box-shadow: 0 0 10px rgba(255, 255, 255, 0.5), 0 15px 30px rgba(0, 0, 0, 0.7); }

/* --- 横スクロール（マーキー） --- */
.marquee-container { width: 100%; overflow: hidden; margin-top: -20px; padding: 10px 0; }
.marquee-inner { display: flex; width: fit-content; animation: marquee-scroll 25s linear infinite; }
.marquee-content { display: flex; padding-right: 0; }
.marquee-content span {
  display: inline-block; white-space: nowrap; padding: 0; margin: 0 0.8em;
  font-size: 1.0rem; font-weight: 600; color: #fff; font-family: "Klee One", serif;
  border-bottom: 1.5px solid #fff; line-height: 2.2;
}
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.btn { width: 70%; margin: 3.5% auto 0; }
.btn a { display: block; }

.animate__pulse { animation-iteration-count: infinite !important; }

/* --- ★今回修正：3枚並びスライダーの装飾★ --- */
.slider {
  width: 100%;
  margin: 0px auto; 
  padding: 0; /* Wrapperの余白は0にする */
}

/* ★重要：スライド自体の上下に余白を持たせることで、拡大しても見切れないようにする */
.slider .slick-slide {
  padding: 60px 0; /* これで上下に60pxずつの余裕が生まれます */
}

/* 1. スライド全体を包む箱の設定 */
.slider .slide-content {
  width: 95%;        
  margin: 0 auto;   
  transition: transform 0.8s ease, opacity 0.8s ease, filter 0.8s ease;
  will-change: transform; 
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  
  /* 通常時の状態 */
  transform: scale(0.8);
  opacity: 0.5;
  filter: brightness(60%);
}

/* 2. 中央に来た時の設定 */
.slider .slick-center .slide-content {
  transform: scale(1.15);
  opacity: 1;
  filter: brightness(100%);
  position: relative;
  z-index: 10;
}

/* 3. 画像単体の設定 */
.slider .slide-content img.main-img {
  width: 100%;
  display: block;
  border-radius: 10px;
  pointer-events: none; /* ★追加：この画像部分だけタッチやクリックの判定を無効にする */
}

/* 4. ★追加：ボタン画像だけさらに小さく */
.slider .slide-content .btn-img {
  width: 80%;    /* 幅を60%に縮小 */
  margin: 0 auto; /* 中央寄せ */
}

/* 5. リンク設定 */
.slider .slide-content a {
  display: block;
  text-decoration: none;
}

/* 1. 親要素: 重ねるための基準点とする */
.last-video-container {
    position: relative;
    /* align="center" の影響で中央寄せになりますが、念のためline-heightを0に設定 */
    line-height: 0;
}

/* 2. 動画要素: 画像の上に重ねて中央に配置し、サイズを調整 */
.last-movie {
    position: absolute;
    /* 動画のサイズ: video-frame (90%) よりも少し小さくする (例: 70%) */
    width: 72%; 
    height: auto;
    
    /* 上下左右の中央に配置 */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    /* 枠線と角丸を付けると動画っぽくなります */
    border: 2px solid #fff;
    border-radius: 0px;
    
    /* 念のためz-indexを設定して画像より手前に表示 */
    z-index: 10;
}

/* 3. 画像要素: 親要素のline-height: 0; が適用されるように display: block; を明示 */
.video-frame {
 width: 75%; 
 border-radius: 0px; 
    display: block; /* 親要素の line-height: 0; を有効にするために追加 */
}

/* チェックリスト全体のコンテナ */
.check-list-wrapper {
  width: 90%;
  margin: 20px auto;
  font-family: "Klee One", serif; /* 既存のフォントに合わせる */
  color: #ffffff; /* 画像に近い茶色系の文字色 */
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  position: relative;
  padding: 12px 0 18px 45px;
  border-bottom: 1.5px dotted #ffffff; /* 下の点線 */
  font-size: 15px;
  line-height: 1.7;
  font-weight: 600;
}

/* チェックボックス（Font Awesomeを使用） */
.check-list li::before {
  content: '\f00c'; /* チェックマークのアイコン */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 2.6%;
  top: 28%;
  width: 19px;
  height: 19px;
  background-color: #cccccc; /* 四角い背景色 */
  
  color: transparent; /* 最初は見えない状態 */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border-radius: 2px;
  
  transition: color 1s ease; /* ふんわり表示させるアニメーション時間 */
}

.check-list li.is-visible::before {
  color: #A93D57;
}

.dot {
  -webkit-text-emphasis: filled dot #ffffff;
  text-emphasis: filled dot #ffffff;
  -webkit-text-emphasis-position: over right;
  text-emphasis-position: over right;
}

/* =========================================
   ★ここから追加：常時アニメーション（フワフワ＆光の反射）
   ========================================= */
.premium-step-container {
  width: 92%;
  margin: 0 auto;
  padding: 10px 0;
}

.premium-step {
  position: relative;
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
  /* うっすらとしたドロップシャドウで少し浮き出ているように見せる */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.7), 0 0 10px rgba(226, 76, 155, 0.1) inset;
  background-color: #111; /* 画像のふちが透過している場合のための下地 */
}

.premium-step:last-child {
  margin-bottom: 0;
}

.premium-step img {
  width: 100%;
  display: block;
  position: relative;
  z-index: 1;
}

/* 常時フワフワ浮くアニメーション（各ステップでタイミングをずらす） */
.premium-step.step-1 { animation: floatAnim 4s ease-in-out infinite; }
.premium-step.step-2 { animation: floatAnim 4s ease-in-out infinite 1.3s; }
.premium-step.step-3 { animation: floatAnim 4s ease-in-out infinite 2.6s; }

@keyframes floatAnim {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

/* 画像の上をキラッと光が走るエフェクト（シマー効果） */
.shimmer-sweep {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  /* サイトのトーンに合わせた白・微ピンクの光 */
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-25deg);
  z-index: 10;
  pointer-events: none;
}

/* キラッと光るタイミングを上から順番にずらす */
.premium-step.step-1 .shimmer-sweep { animation: shimmerEffect 6s infinite 0s; }
.premium-step.step-2 .shimmer-sweep { animation: shimmerEffect 6s infinite 2s; }
.premium-step.step-3 .shimmer-sweep { animation: shimmerEffect 6s infinite 4s; }

@keyframes shimmerEffect {
  0% { left: -100%; opacity: 1; }
  20% { left: 200%; opacity: 1; } /* 20%の時間でサッと通り過ぎる */
  100% { left: 200%; opacity: 0; } /* 残りの時間は待機 */
}