*{box-sizing:border-box}
html,body{margin:0;padding:0;background:#0f0f0f}
body{
  display:flex;justify-content:center;
  font-family:-apple-system,BlinkMacSystemFont,"Helvetica Neue","Hiragino Kaku Gothic ProN","Yu Gothic",sans-serif;
  color:#111;
}
img{display:block}
button,a{font:inherit;color:inherit}
:root{
  --bg:#f7f7f4;
  --ink:#111;
  --sub:#777;
  --line:#dadad6;
  --lime:#c8ff32;
  --white:#fff;
  --header-h:58px; /* ヘッダー高さ */
  --hero-h:min(560px, calc(100dvh - var(--header-h) - 80px));
  --hero-pad-top:42px;
  --hero-pad-x:16px;
  --hero-pad-bottom:36px;
  --hero-title-size:clamp(32px,7.8vw,42px);
  --hero-sub-size:13px;
  --hero-cta-h:58px; /* 登録ボタン高さ */
  --hero-cta-fs:15px;
  --hero-cta-gap:10px;
}
.site{
  width:100%;
  max-width:768px;
  min-height:100vh;
  overflow:hidden;
  background:var(--bg);
}
@media(min-width:769px){.site{box-shadow:0 0 60px rgba(0,0,0,.35)}}

/* HEADER */
.header{
  height:var(--header-h);
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 16px;
  border-bottom:1px solid var(--line);
  background:rgba(247,247,244,.95);
  position:sticky;top:0;z-index:30;
  backdrop-filter:blur(10px);
}
.logo{
  display:block;
  text-decoration:none;flex-shrink:0;
  line-height:0;
}
.logo img{
  height:28px;width:auto;
  display:block;
}
.head-note{
  font-size:9px;font-weight:900;letter-spacing:1.5px;color:#bbb;
}
.header-home-btn{
  display:inline-flex;align-items:center;gap:5px;
  font-size:11px;font-weight:900;letter-spacing:1px;
  color:var(--ink);text-decoration:none;
  padding:6px 12px;
  border:1px solid var(--line);
  background:transparent;
  transition:background .18s,color .18s,border-color .18s;
  white-space:nowrap;
}
.header-home-btn:hover{
  background:var(--ink);color:var(--lime);border-color:var(--ink);
}

/* COMMON */
.kicker{
  font-size:10px;
  font-weight:900;
  letter-spacing:1.8px;
  text-transform:uppercase;
}
.section{
  padding:58px 16px;
  border-bottom:1px solid var(--line);
  background:var(--bg);
}
.section h2{
  margin:8px 0 14px;
  font-family:Georgia,"Yu Mincho",serif;
  font-size:36px;
  line-height:1.05;
  letter-spacing:-1.7px;
}
.section p{
  margin:0;
  color:var(--sub);
  font-size:13px;
  line-height:1.9;
}

/* HERO
   背面: stage(穴) 全面 / 前面: overlay(テキスト+CTA)
*/
.hero{
  position:relative;
  height:var(--hero-h);
  min-height:var(--hero-h);
  max-height:var(--hero-h);
  overflow:hidden;
  background:var(--bg);
  display:flex;
  flex-direction:column;
}
.hero-stage{
  position:absolute;
  inset:0;
  z-index:0;
  overflow:hidden;
  pointer-events:none;
  background:var(--bg);
}
.hero h1{
  margin:10px 0 0;
  font-family:Georgia,"Yu Mincho",serif;
  font-size:var(--hero-title-size);
  line-height:1.12;
  letter-spacing:-1.6px;
  color:var(--ink);
}
.hero h1 em{
  font-style:normal;
  text-decoration:underline;
  text-decoration-thickness:10px;
  text-decoration-color:var(--lime);
  text-underline-offset:-6px;
  text-decoration-skip-ink:none;
}
.hero-peep{
  position:absolute;
  overflow:hidden;
  pointer-events:none;
  opacity:0;
  clip-path:ellipse(0% 0% at 50% 50%);
  -webkit-clip-path:ellipse(0% 0% at 50% 50%);
}
.hero-photo{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  display:block;
  transform:none;
}
.hero-rim{
  position:absolute;
  border-radius:50%;
  pointer-events:none;
  opacity:0;
  box-shadow:
    inset 0 16px 28px rgba(0,0,0,.42),
    inset 0 -10px 16px rgba(255,255,255,.16),
    inset 10px 0 18px rgba(0,0,0,.18),
    inset -8px 0 14px rgba(0,0,0,.12);
}
.hero-overlay{
  position:relative;
  z-index:2;
  flex:1;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  padding:var(--hero-pad-top) var(--hero-pad-x) var(--hero-pad-bottom);
}
.hero-copy{
  position:relative;
  max-width:540px;
  padding:4px 2px 18px;
  text-shadow:0 1px 0 rgba(247,247,244,.9), 0 0 16px rgba(247,247,244,.75);
}
.hero-kicker{
  font-size:10px;
  font-weight:900;
  letter-spacing:1.8px;
  color:var(--ink);
}
.hero-sub{
  margin:14px 0 0;
  max-width:320px;
  color:#555;
  font-size:var(--hero-sub-size);
  line-height:1.85;
}
.hero-foot{
  position:relative;
  display:flex;
  flex-direction:column;
  gap:var(--hero-cta-gap);
  padding-bottom:8px;
}
.hero-label{
  align-self:flex-start;
  background:var(--lime);
  padding:7px 9px;
  font-size:10px;
  font-weight:900;
  letter-spacing:.7px;
  box-shadow:3px 3px 0 #111;
}

/* CTA */
.hero-cta{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  width:100%;
  padding:14px 58px;
  overflow:hidden;
  z-index:1;
  border-radius:100px;
  border:2px solid rgba(255,255,255,.28);
  background:linear-gradient(145deg,#141414,#0a0a0a);
  color:#fff;
  text-decoration:none;
  box-shadow:
    0 8px 0 #111,
    0 14px 24px rgba(0,0,0,.28),
    0 0 28px rgba(200,255,50,.45),
    0 0 56px rgba(200,255,50,.22);
  animation:ctaGlow 1.8s ease-in-out infinite;
  transition:transform .35s ease, box-shadow .35s ease;
}
.hero-cta:before{
  content:"";
  position:absolute;
  top:-50%;left:-50%;
  width:200%;height:200%;
  background:conic-gradient(from 0deg, var(--lime), #fff 22%, var(--lime) 42%, #9ed400 62%, var(--lime));
  animation:ctaRotate 3.2s linear infinite;
  z-index:-2;
}
.hero-cta:after{
  content:"";
  position:absolute;
  inset:2px;
  background:
    linear-gradient(180deg,rgba(255,255,255,.16),transparent 28%),
    linear-gradient(180deg,#1a1a1a 0%,#0a0a0a 100%);
  border-radius:inherit;
  z-index:-1;
  box-shadow:inset 0 -10px 18px rgba(0,0,0,.45), inset 0 2px 0 rgba(255,255,255,.12);
}
.hero-cta-shine{
  position:absolute;
  inset:2px;
  border-radius:inherit;
  background:linear-gradient(110deg,transparent 32%,rgba(255,255,255,.55) 48%,transparent 64%);
  transform:translateX(-130%) skewX(-18deg);
  animation:ctaShine 2.2s ease-in-out infinite;
  pointer-events:none;
  z-index:2;
}
.hero-cta-spark{
  position:absolute;
  width:7px;height:7px;
  background:#fff;
  box-shadow:0 0 0 1px #111, 0 0 12px var(--lime);
  animation:ctaSpark 1.4s steps(2,end) infinite;
  z-index:3;
  pointer-events:none;
}
.hero-cta-spark:nth-child(2){left:18%;top:8px}
.hero-cta-spark:nth-child(3){right:22%;top:12px;width:5px;height:5px;animation-delay:.45s}
.hero-cta-spark:nth-child(4){left:52%;bottom:8px;width:6px;height:6px;animation-delay:.9s}
.hero-cta-copy{
  position:relative;
  z-index:4;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:3px;
  min-width:0;
  text-align:center;
}
.hero-cta-copy small{
  font-size:11px;
  font-weight:800;
  letter-spacing:1.4px;
  color:var(--lime);
}
.hero-cta-copy b{
  font-size:18px;
  font-weight:900;
  letter-spacing:.3px;
}
.hero-cta-arrow{
  position:absolute;
  right:10px;
  top:50%;
  z-index:4;
  width:42px;height:42px;
  margin-top:-21px;
  flex:0 0 42px;
  padding:10px;
  border-radius:50%;
  background:var(--lime);
  color:#111;
  box-shadow:0 3px 0 #6a8f00, 0 0 16px rgba(200,255,50,.55);
  transition:transform .3s ease;
}
.hero-cta:hover{
  transform:translateY(-4px) scale(1.03);
  box-shadow:
    0 12px 0 #111,
    0 20px 32px rgba(0,0,0,.3),
    0 0 40px rgba(200,255,50,.65),
    0 0 80px rgba(200,255,50,.28);
}
.hero-cta:hover .hero-cta-arrow{
  transform:translateX(5px);
}
.hero-cta:active{
  transform:translateY(6px);
  box-shadow:
    0 2px 0 #111,
    0 8px 16px rgba(0,0,0,.22),
    0 0 24px rgba(200,255,50,.4);
  animation:none;
}
@keyframes ctaRotate{to{transform:rotate(360deg)}}
@keyframes ctaGlow{
  0%,100%{box-shadow:0 8px 0 #111,0 14px 24px rgba(0,0,0,.28),0 0 24px rgba(200,255,50,.35),0 0 48px rgba(200,255,50,.16)}
  50%{box-shadow:0 8px 0 #111,0 14px 24px rgba(0,0,0,.28),0 0 40px rgba(200,255,50,.7),0 0 72px rgba(200,255,50,.32)}
}
@keyframes ctaShine{
  0%,40%{transform:translateX(-130%) skewX(-18deg)}
  100%{transform:translateX(160%) skewX(-18deg)}
}
@keyframes ctaSpark{
  0%,100%{opacity:1;transform:rotate(0) scale(1)}
  50%{opacity:.15;transform:rotate(45deg) scale(.4)}
}
@media (prefers-reduced-motion:reduce){
  .hero-cta,.hero-cta:before,.hero-cta-shine,.hero-cta-spark{animation:none}
}

/* SMALL STRIP */
.strip{
  overflow:hidden;
  background:var(--lime);
  border-bottom:1px solid var(--ink);
  padding:10px 0;
}
.strip-track{
  width:max-content;
  white-space:nowrap;
  font-size:11px;
  font-weight:900;
  letter-spacing:.8px;
  animation:run 18s linear infinite;
}
@keyframes run{to{transform:translateX(-50%)}}

/* LOVE FIRST SIGHT */
.section.first{
  position:relative;
  aspect-ratio:3/4.15;
  min-height:560px;
  max-height:780px;
  padding:0;
  overflow:hidden;
  color:#fff;
  background:#111;
  border-bottom:0;
}
.first-bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:46% 44%;
  transform:scale(1.14);
  transition:transform 4.2s cubic-bezier(.16,.84,.3,1), object-position 4.2s ease;
}
.section.first.is-in .first-bg{
  transform:scale(1.03);
  object-position:50% 36%;
}
.first-veil{
  position:absolute;
  inset:0;
  pointer-events:none;
  background:linear-gradient(180deg,rgba(8,8,6,.66) 0%,rgba(8,8,6,.28) 26%,rgba(8,8,6,.06) 48%,rgba(8,8,6,.22) 100%);
}
.first-frame{
  position:absolute;
  inset:14px;
  z-index:3;
  pointer-events:none;
  background:
    linear-gradient(to bottom right, var(--lime) 0 1.5px, transparent 1.5px) 0 0 / 22px 22px no-repeat,
    linear-gradient(to bottom left, var(--lime) 0 1.5px, transparent 1.5px) 100% 0 / 22px 22px no-repeat,
    linear-gradient(to top right, var(--lime) 0 1.5px, transparent 1.5px) 0 100% / 22px 22px no-repeat,
    linear-gradient(to top left, var(--lime) 0 1.5px, transparent 1.5px) 100% 100% / 22px 22px no-repeat;
}
.first-caption{
  position:absolute;
  left:22px;right:72px;top:22px;
  z-index:4;
}
.section.first .kicker{
  color:var(--lime);
}
.section.first .kicker:after{
  content:"";
  display:block;
  width:0;
  height:1px;
  margin-top:8px;
  background:var(--lime);
  transition:width .8s .15s cubic-bezier(.22,1,.36,1);
}
.section.first.is-in .kicker:after{
  width:52px;
}
.section.first h2{
  margin:10px 0 12px;
  color:#fff;
  font-size:clamp(32px,8vw,42px);
  line-height:1.06;
  letter-spacing:-1.8px;
  text-shadow:0 2px 20px rgba(0,0,0,.4);
}
.section.first h2 .first-line{
  display:block;
}
.section.first p{
  max-width:280px;
  color:rgba(255,255,255,.84);
  font-size:12px;
  line-height:1.8;
  text-shadow:0 1px 10px rgba(0,0,0,.4);
}
.first-copy{
  margin-top:16px;
  padding-top:0;
  color:#fff;
  font-family:Georgia,"Yu Mincho",serif;
  font-size:18px;
  font-style:italic;
  line-height:1.4;
  letter-spacing:.8px;
  text-shadow:0 2px 14px rgba(0,0,0,.45);
}
.first-copy:before{
  content:"";
  display:block;
  width:0;
  height:1px;
  margin:0 0 12px;
  background:rgba(200,255,50,.55);
  transition:width 1s 1.15s cubic-bezier(.22,1,.36,1);
}
.section.first.is-in .first-copy:before{
  width:72px;
}
.section.first.is-in .first-copy{
  letter-spacing:-.4px;
}
.first-in{
  opacity:0;
  transform:translateY(16px);
  filter:blur(7px);
  transition:
    opacity .85s var(--d,0s) ease,
    transform .95s var(--d,0s) cubic-bezier(.22,1,.36,1),
    filter .85s var(--d,0s) ease,
    letter-spacing 1.2s var(--d,0s) ease;
}
.section.first.is-in .first-in{
  opacity:1;
  transform:none;
  filter:none;
}
.section.first .kicker.first-in{--d:.08s}
.section.first h2 .first-line:nth-child(1){--d:.28s}
.section.first h2 .first-line:nth-child(2){--d:.52s}
.section.first p.first-in{--d:.84s}
.section.first .first-copy.first-in{--d:1.22s}
.section.first.is-in .first-meta{
  opacity:1;
  transform:none;
}
.first-meta{
  position:absolute;
  top:22px;right:22px;
  z-index:4;
  font-size:9px;
  font-weight:900;
  letter-spacing:2.2px;
  color:var(--lime);
  text-shadow:0 1px 8px rgba(0,0,0,.4);
  opacity:0;
  transform:translateY(-8px);
  transition:opacity .6s .2s ease, transform .6s .2s ease;
}
@media (prefers-reduced-motion:reduce){
  .first-bg,.first-in,.first-meta,.section.first .kicker:after,.first-copy:before{transition:none;animation:none;filter:none;opacity:1;transform:none}
  .section.first .kicker:after{width:52px}
  .first-copy:before{width:72px}
  .section.first .first-copy{letter-spacing:-.4px}
  .first-bg{transform:scale(1.03);object-position:50% 36%}
}

/* RANDOM */
.random{
  padding:0;
  background:var(--bg);
}
.random-head{
  padding:52px 16px 24px;
}
.random-head .kicker:after{
  content:"";
  display:block;
  width:0;
  height:1px;
  margin-top:8px;
  background:var(--lime);
  transition:width .8s .12s cubic-bezier(.22,1,.36,1);
}
.random.is-in .random-head .kicker:after{
  width:52px;
}
.random-head h2{
  margin:10px 0 12px;
  font-family:Georgia,"Yu Mincho",serif;
  font-size:clamp(32px,8vw,42px);
  line-height:1.08;
  letter-spacing:-1.8px;
}
.random-head h2 .random-line{
  display:block;
}
.random-head p{
  margin:0;
  max-width:300px;
  color:var(--sub);
  font-size:13px;
  line-height:1.85;
}
.random-stage{
  position:relative;
  padding:0 0 28px;
}
.random-spine{
  position:absolute;
  left:11px;
  top:20px;
  z-index:2;
  writing-mode:vertical-rl;
  font-size:9px;
  font-weight:900;
  letter-spacing:3px;
  color:var(--ink);
}
.random-shot{
  margin-left:40px;
  height:min(62vw, 560px);
  overflow:hidden;
  background:#e7d8cf;
  border-left:6px solid var(--lime);
  transform:translateX(18px);
  opacity:.4;
  transition:transform 1.1s cubic-bezier(.22,1,.36,1), opacity .7s ease;
}
.random.is-in .random-shot{
  transform:none;
  opacity:1;
}
.random-bg{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:50% 42%;
  transform:scale(1.08);
  transition:transform 3.8s cubic-bezier(.16,.84,.3,1), object-position 1s ease;
}
.random.is-in .random-bg{
  transform:scale(1);
}
.random-bg.is-swap{
  transition:object-position .9s cubic-bezier(.22,1,.36,1), transform .9s ease;
}
.random-bg.is-fade{
  opacity:0;
  transition:opacity .25s ease !important;
}
.random-ticket{
  position:absolute !important;
  left:16px !important;
  bottom:12px !important;
  width:min(72%, 250px) !important;
  z-index:3 !important;
  padding:14px 16px 16px !important;
  background:#f7f7f4 !important;
  border:1px solid #111 !important;
  box-shadow:7px 7px 0 #c8ff32 !important;
  box-sizing:border-box !important;
  border-radius:0 !important;
}
.random-ticket .rticket-mini{
  font-size:10px;
  font-weight:900;
  letter-spacing:1.8px;
  margin-bottom:6px;
  color:#111;
  line-height:1;
}
.random-ticket .rticket-big{
  font-family:Georgia,"Yu Mincho",serif;
  font-size:clamp(22px,6.4vw,30px);
  line-height:1.12;
  letter-spacing:-1.2px;
  color:#111;
  transition:opacity .28s ease, transform .45s cubic-bezier(.22,1,.36,1), filter .28s ease;
}
.random-ticket .rticket-big.is-out{
  opacity:0;
  transform:translateY(8px);
  filter:blur(5px);
}
.random-in{
  opacity:0;
  transform:translateY(14px);
  transition:opacity .8s var(--d,0s) ease, transform .9s var(--d,0s) cubic-bezier(.22,1,.36,1);
}
.random.is-in .random-in{
  opacity:1;
  transform:none;
}
.random-head .kicker.random-in{--d:.06s}
.random-head h2 .random-line:nth-child(1){--d:.2s}
.random-head h2 .random-line:nth-child(2){--d:.38s}
.random-head p.random-in{--d:.58s}
.random-ticket.random-in{--d:.72s}
.random-actions{
  display:grid;
  grid-template-columns:1fr 112px;
  border-top:1px solid var(--ink);
  border-bottom:1px solid var(--ink);
}
.random-actions button,.random-actions a{
  border:0;background:transparent;
  padding:18px 15px;
  font-size:13px;
  font-weight:900;
}
.random-actions button{
  text-align:left;
  border-right:1px solid var(--ink);
}
.random-actions a{
  text-align:center;
  text-decoration:none;
  background:var(--lime);
}
@media (prefers-reduced-motion:reduce){
  .random-bg,.random-in,.random-shot,.random-head .kicker:after,.random-ticket .big{transition:none;opacity:1;transform:none;filter:none}
  .random-head .kicker:after{width:52px}
  .random-bg{object-position:50% 42%}
}

/* FEELING */
.feeling{
  background:var(--ink);
  padding:8px;
}
.feeling-sheet{
  position:relative;
  overflow:hidden;
  padding:78px 22px 72px 28px;
  background:
    radial-gradient(80% 60% at 110% -8%, rgba(200,255,50,.18), transparent 52%),
    var(--bg);
}
.feeling-rail{
  position:absolute;
  left:0;top:0;bottom:0;
  width:8px;
  background:var(--lime);
  transform:scaleY(0);
  transform-origin:top;
  transition:transform .9s cubic-bezier(.22,1,.36,1);
}
.feeling.is-in .feeling-rail{
  transform:none;
}
.feeling-ghost{
  position:absolute;
  right:8px;
  top:50%;
  z-index:0;
  writing-mode:vertical-rl;
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(64px,18vw,96px);
  font-weight:500;
  line-height:1;
  letter-spacing:.28em;
  color:transparent;
  -webkit-text-stroke:1.15px rgba(17,17,17,.2);
  pointer-events:none;
  user-select:none;
  transform:translate(10px,-46%);
  opacity:0;
  transition:transform 1.6s cubic-bezier(.22,1,.36,1), opacity 1.2s ease;
}
.feeling.is-in .feeling-ghost{
  transform:translate(0,-50%);
  opacity:1;
}
.feeling-inner{
  position:relative;
  z-index:1;
  max-width:348px;
}
.feeling-inner .kicker{
  display:inline-block;
  color:var(--ink);
  background:var(--lime);
  padding:5px 8px;
}
.feeling-lead{
  margin:18px 0 0;
  color:var(--ink);
  font-family:Georgia,"Yu Mincho",serif;
  font-size:clamp(30px,7.6vw,40px);
  line-height:1.2;
  letter-spacing:-1.7px;
}
.feeling-soft{
  margin:12px 0 0;
  font-family:Georgia,"Yu Mincho",serif;
  font-size:clamp(26px,6.8vw,36px);
  font-style:italic;
  line-height:1.32;
  letter-spacing:-1.2px;
  clip-path:inset(0 100% 0 0);
  transition:clip-path 1.15s .5s cubic-bezier(.22,1,.36,1);
}
.feeling.is-in .feeling-soft{
  clip-path:inset(0);
}
.feeling-soft span{
  background-image:linear-gradient(var(--lime), var(--lime));
  background-repeat:no-repeat;
  background-size:0 42%;
  background-position:0 88%;
  box-decoration-break:clone;
  -webkit-box-decoration-break:clone;
  transition:background-size .9s 1.05s cubic-bezier(.22,1,.36,1);
}
.feeling.is-in .feeling-soft span{
  background-size:100% 42%;
}
.feeling-rule{
  width:0;
  height:1px;
  margin:30px 0 16px;
  background:var(--ink);
  transition:width .85s 1.25s cubic-bezier(.22,1,.36,1);
}
.feeling.is-in .feeling-rule{
  width:52px;
}
.feeling-small{
  margin:0;
  max-width:300px;
  font-size:12px;
  line-height:1.9;
  color:var(--sub);
}
.feeling-in{
  opacity:0;
  transform:translateY(12px);
  transition:opacity .9s var(--d,0s) ease, transform 1s var(--d,0s) cubic-bezier(.22,1,.36,1);
}
.feeling.is-in .feeling-in{
  opacity:1;
  transform:none;
}
.feeling-inner .kicker.feeling-in{--d:.08s}
.feeling-lead.feeling-in{--d:.22s}
.feeling-small.feeling-in{--d:1.42s}
@media (prefers-reduced-motion:reduce){
  .feeling-ghost,.feeling-in,.feeling-soft,.feeling-soft span,.feeling-rule,.feeling-rail{transition:none;opacity:1;transform:none;clip-path:none}
  .feeling-rule{width:52px}
  .feeling-ghost{opacity:1;transform:translate(0,-50%)}
  .feeling-soft span{background-size:100% 42%}
}

/* GALLERY */
.gallery{
  background:var(--bg);
  padding:58px 16px;
  border-bottom:1px solid var(--line);
}
.gallery-head{
  margin-bottom:28px;
}
.gallery-head .kicker:after{
  content:"";
  display:block;
  width:0;height:1px;
  margin-top:8px;
  background:var(--lime);
  transition:width .8s .1s cubic-bezier(.22,1,.36,1);
}
.gallery.is-in .gallery-head .kicker:after{width:52px}
.gallery-head h2{
  margin:10px 0 10px;
  font-family:Georgia,"Yu Mincho",serif;
  font-size:clamp(28px,7vw,36px);
  line-height:1.08;
  letter-spacing:-1.6px;
}
.gallery-head p{
  margin:0;
  color:var(--sub);
  font-size:12px;
  line-height:1.8;
}
.gallery-mosaic{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}
.gp{
  overflow:hidden;
  background:#ccc;
  opacity:0;
  transform:translateY(12px);
  transition:opacity .8s var(--d,.1s) ease, transform .9s var(--d,.1s) cubic-bezier(.22,1,.36,1);
}
.gallery.is-in .gp{opacity:1;transform:none}
.gp img{
  width:100%;height:100%;
  object-fit:cover;
  display:block;
}
/* 右列：正方形×2が高さを決める */
.gp-b,.gp-c{
  aspect-ratio:1;
}
.gp-b{--d:.2s}
.gp-b img{object-position:50% 36%}
.gp-c{--d:.3s}
.gp-c img{object-position:50% 40%}
/* 黒豹：左列、右2枚の合計高にstretch */
.gp-a{
  grid-row:span 2;
  --d:.08s;
}
.gp-a img{object-position:52% 18%}
/* 白馬：全幅横長 */
.gp-d{
  grid-column:1/-1;
  aspect-ratio:16/7;
  --d:.42s;
}
.gp-d img{object-position:50% 68%}
.gallery-foot{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding-top:18px;
  border-top:1px solid var(--line);
  margin-top:10px;
}
.gallery-foot p{
  margin:0;
  font-size:11px;
  font-weight:700;
  letter-spacing:.6px;
  color:var(--sub);
}
.gallery-foot a{
  font-size:12px;
  font-weight:900;
  text-decoration:none;
  color:var(--ink);
  border-bottom:2px solid var(--lime);
  padding-bottom:1px;
}
.gallery-in{
  opacity:0;
  transform:translateY(10px);
  transition:opacity .8s var(--d,0s) ease, transform .9s var(--d,0s) cubic-bezier(.22,1,.36,1);
}
.gallery.is-in .gallery-in{opacity:1;transform:none}
.gallery-head .kicker.gallery-in{--d:.04s}
.gallery-head h2.gallery-in{--d:.14s}
.gallery-head p.gallery-in{--d:.24s}
@media (prefers-reduced-motion:reduce){
  .gp,.gallery-in,.gallery-head .kicker:after{transition:none;opacity:1;transform:none}
  .gallery-head .kicker:after{width:52px}
}

/* BLACK MOMENT */
.black{
  background:#060606;
  color:#fff;
  overflow:hidden;
  border-bottom:0;
}
.black-inner{
  display:grid;
  grid-template-columns:1fr 1fr;
  min-height:580px;
}
.black-text{
  padding:38px 22px 36px 22px;
  border-right:1px solid rgba(255,255,255,.08);
  display:flex;
  flex-direction:column;
  gap:0;
}
.black-meta{
  font-size:9px;
  font-weight:900;
  letter-spacing:2.2px;
  color:rgba(255,255,255,.3);
}
.black-rule{
  width:100%;
  height:1px;
  background:rgba(255,255,255,.1);
  margin:16px 0;
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .9s var(--d,.1s) cubic-bezier(.22,1,.36,1);
}
.black.is-in .black-rule{transform:none}
.black-rule:nth-of-type(2){--d:.4s}
.black-kicker{
  font-size:9px;
  font-weight:900;
  letter-spacing:2px;
  color:var(--lime);
}
.black-h{
  flex:1;
  margin:14px 0 0;
  font-family:Georgia,"Yu Mincho",serif;
  font-size:clamp(34px,9vw,48px);
  line-height:.98;
  letter-spacing:-2.2px;
  opacity:0;
  transform:translateY(16px);
  transition:opacity .9s .2s ease, transform 1s .2s cubic-bezier(.22,1,.36,1);
}
.black.is-in .black-h{opacity:1;transform:none}
.black-body{
  font-size:11px;
  line-height:1.95;
  color:rgba(255,255,255,.55);
  opacity:0;
  transition:opacity .8s .72s ease;
}
.black.is-in .black-body{opacity:1}
.black-species{
  margin-top:20px;
  font-size:9px;
  font-weight:900;
  letter-spacing:2.4px;
  color:rgba(255,255,255,.2);
}
.black-photo{
  overflow:hidden;
  position:relative;
}
.black-photo img{
  width:100%;height:100%;
  object-fit:cover;
  object-position:70% 26%;
  display:block;
  transform:scale(1.1);
  transition:transform 3.8s cubic-bezier(.16,.84,.3,1);
}
.black.is-in .black-photo img{transform:scale(1)}
.black-photo-label{
  position:absolute;
  bottom:16px;left:0;
  writing-mode:vertical-rl;
  font-size:9px;
  font-weight:900;
  letter-spacing:2.8px;
  color:rgba(255,255,255,.28);
  padding-left:8px;
}
@media (prefers-reduced-motion:reduce){
  .black-h,.black-body,.black-photo img,.black-rule{transition:none;opacity:1;transform:none}
}

/* RANKING */
.ranking{
  background:var(--bg);
}
.rank-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-top:14px;
  padding:5px 10px;
  border:1px solid var(--line);
  font-size:10px;
  font-weight:700;
  letter-spacing:1.2px;
  color:var(--sub);
}
.rank-badge b{
  display:inline-block;
  width:7px;height:7px;
  border-radius:50%;
  background:var(--lime);
  animation:rankPulse 1.6s ease-in-out infinite;
}
@keyframes rankPulse{0%,100%{opacity:1}50%{opacity:.3}}
.ranklist{margin-top:24px}
.rank{
  display:grid;
  grid-template-columns:64px 1fr;
  gap:14px;
  padding:16px 0;
  border-top:1px solid var(--ink);
  align-items:start;
}
.rank:last-child{border-bottom:1px solid var(--ink)}
.rankno{
  font-family:Arial Black,Impact,sans-serif;
  font-size:62px;
  line-height:.84;
  letter-spacing:-4px;
  padding-top:4px;
}
.rankno span{
  background:var(--lime);
  padding:0 4px;
}
.rankphoto{
  aspect-ratio:4/3;
  overflow:hidden;
  background:#ccc;
}
.rankphoto img{
  width:100%;height:100%;
  object-fit:cover;
  transition:transform .6s cubic-bezier(.22,1,.36,1);
}
.rank:hover .rankphoto img{transform:scale(1.04)}
.rankmeta{
  margin-top:8px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:9px;
  font-weight:900;
  letter-spacing:1.2px;
}
.rankmeta-arrow{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:22px;height:22px;
  background:var(--ink);
  color:var(--bg);
  font-size:11px;
  flex-shrink:0;
}

/* WALLPAPER PREVIEW */
.preview{
  background:#f5f3ef;
  color:#111;
}
.preview .kicker{
  display:inline-block;
  background:#111;color:#c8ff32;
  padding:3px 10px;
  font-size:9px;font-weight:900;letter-spacing:2px;
}
.preview h2{
  color:#111;
  margin-top:12px;
}
.preview p{color:#888}

/* レイアウト */
.preview-layout{
  display:flex;
  flex-direction:column;
  align-items:center;
  margin-top:32px;
  gap:0;
}

/* フォン本体 */
.phone-wrap{
  width:62%;
  max-width:240px;
  position:relative;
}
.phone{
  background:#0a0a0a;
  border-radius:42px;
  padding:7px;
  border:1.5px solid #1e1e1e;
  aspect-ratio:9/19.5;
  box-shadow:
    0 0 0 1px #111,
    0 24px 64px rgba(0,0,0,.18),
    0 8px 20px rgba(0,0,0,.10);
  position:relative;
}
.phone-notch{
  position:absolute;
  top:12px;left:50%;
  transform:translateX(-50%);
  width:34px;height:8px;
  background:#000;
  border-radius:10px;
  z-index:5;
}
.screen{
  position:relative;
  width:100%;height:100%;
  border-radius:35px;
  overflow:hidden;
}
.screen img{
  width:100%;height:100%;
  object-fit:cover;
  transition:opacity .32s ease;
}
.screen img.fading{opacity:0}
.screen-ui{
  position:absolute;inset:0;pointer-events:none;
  background:linear-gradient(180deg,rgba(0,0,0,.42) 0%,transparent 25%,transparent 52%,rgba(0,0,0,.6) 100%);
}
.screen-time{
  position:absolute;left:0;right:0;top:36px;
  text-align:center;color:#fff;
  text-shadow:0 2px 10px rgba(0,0,0,.6);
  pointer-events:none;
}
.screen-time-h{
  display:block;font-size:42px;font-weight:200;
  letter-spacing:2px;line-height:1;
}
.screen-time-d{
  display:block;font-size:10px;font-weight:600;
  letter-spacing:1.5px;margin-top:5px;opacity:.8;
}
.screen-lock{
  position:absolute;bottom:20px;left:50%;transform:translateX(-50%);
  font-size:8px;font-weight:700;letter-spacing:1.8px;
  color:rgba(255,255,255,.65);
  text-shadow:0 1px 6px rgba(0,0,0,.5);pointer-events:none;
  white-space:nowrap;
}

/* WALLPAPERタグ */
.preview-tag{
  position:absolute;right:-12px;bottom:80px;
  background:#111;color:#c8ff32;
  padding:6px 10px;font-size:8px;font-weight:900;letter-spacing:1px;
  transform:rotate(4deg);
  box-shadow:2px 2px 0 rgba(0,0,0,.12);
}

/* サムネイル */
.thumbs{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:5px;margin-top:20px;width:100%;
}
.thumb{
  position:relative;aspect-ratio:9/16;overflow:hidden;
  border-radius:8px;cursor:pointer;
  border:2px solid transparent;
  transition:border-color .18s, transform .18s;
  background:#e0ddd8;
}
.thumb:active{transform:scale(.96)}
.thumb.active{
  border-color:#111;
  box-shadow:0 0 0 1px rgba(0,0,0,.15);
}
.thumb img{width:100%;height:100%;object-fit:cover}
.thumb-check{
  position:absolute;top:4px;right:4px;
  width:15px;height:15px;border-radius:50%;
  background:#111;
  display:flex;align-items:center;justify-content:center;
  font-size:8px;font-weight:900;color:#c8ff32;
  opacity:0;transform:scale(.4);
  transition:opacity .18s, transform .18s;
}
.thumb.active .thumb-check{opacity:1;transform:scale(1)}

/* FINAL */
.final{
  position:relative;
  min-height:min(72dvh, 680px);
  overflow:hidden;
  color:#fff;
  display:flex;
  align-items:flex-end;
}
.final-bg{
  position:absolute;inset:0;
  width:100%;height:100%;object-fit:cover;
  object-position:center 35%;
  transform:scale(1.04);
  animation:finalDrift 18s ease-in-out infinite alternate;
}
@keyframes finalDrift{
  from{transform:scale(1.04) translateX(0)}
  to{transform:scale(1.08) translateX(-2%)}
}
.final-overlay{
  position:absolute;inset:0;
  background:
    linear-gradient(to top, rgba(0,0,0,.92) 0%, rgba(0,0,0,.52) 38%, rgba(0,0,0,.08) 70%, transparent 100%),
    linear-gradient(to right, rgba(0,0,0,.28) 0%, transparent 65%);
}
.final-grain{
  position:absolute;inset:0;
  opacity:.04;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size:180px 180px;
  pointer-events:none;
}
.final-copy{
  position:relative;
  z-index:2;
  padding:0 20px 44px;
  width:100%;
}
.final-copy .kicker{
  color:var(--lime);
  letter-spacing:2.5px;
  margin-bottom:10px;
}
.final-copy h2{
  margin:0 0 14px;
  font-family:Georgia,"Yu Mincho",serif;
  font-size:46px;
  line-height:1.03;
  letter-spacing:-2.5px;
  text-shadow:0 4px 24px rgba(0,0,0,.5);
}
.final-copy p{
  margin:0 0 28px;
  font-size:12px;
  line-height:1.9;
  color:rgba(255,255,255,.68);
  letter-spacing:.2px;
}

@media (max-height:720px){
  :root{
    --hero-h:min(500px, calc(100dvh - var(--header-h) - 64px));
    --hero-title-size:clamp(28px,7.4vw,38px);
    --hero-cta-h:48px;
    --hero-pad-top:36px;
    --hero-pad-bottom:28px;
  }
  .hero-sub{margin-top:8px}
}
@media(max-width:430px){
  .section h2{font-size:33px}
  .section.first{max-height:none}
  .random-shot{height:min(78vw, 520px)}
  .black .big{font-size:37px}
  .final{min-height:min(68dvh, 600px)}
  .final-copy h2{font-size:38px;letter-spacing:-1.8px}
}

/* ── LP GRID SECTIONS (materials_1 / materials_2) ── */
.lp-grid-section{
  padding:52px 16px 40px;
}
.lp-grid-section--dark{
  background:#111;
  color:#fff;
}
.lp-grid-section--dark .kicker{color:#c8ff32}
.lp-grid-section--dark h2{color:#fff}
.lp-grid-section--dark p{color:#666}
.lp-grid-section--dark .lp-grid-more a{color:#fff;border-color:#333}
.lp-grid-section--dark .lp-grid-more a:hover{background:#c8ff32;color:#111;border-color:#c8ff32}
.lp-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:6px;
  margin-top:20px;
}
.lp-grid-item{
  position:relative;
  display:block;
  aspect-ratio:3/4;
  overflow:hidden;
  background:#ddd;
  text-decoration:none;
}
.lp-grid-item img{
  width:100%;height:100%;
  object-fit:cover;
  transition:transform .45s cubic-bezier(.22,1,.36,1);
}
.lp-grid-item:hover img{transform:scale(1.05)}
.lp-grid-arrow{
  position:absolute;
  right:8px;bottom:8px;
  width:28px;height:28px;
  background:#c8ff32;
  color:#111;
  font-size:14px;font-weight:900;
  display:flex;align-items:center;justify-content:center;
  opacity:0;
  transition:opacity .2s;
}
.lp-grid-item:hover .lp-grid-arrow{opacity:1}
.lp-grid-more{
  margin-top:16px;
  text-align:right;
}
.lp-grid-more a{
  display:inline-block;
  padding:10px 18px;
  font-size:12px;font-weight:900;letter-spacing:.8px;
  text-decoration:none;
  border:1px solid #111;
  color:#111;
  transition:background .2s,color .2s;
}
.lp-grid-more a:hover{background:#111;color:#fff}

/* ── FOOTER (wlf- prefix) ── IDセレクターで既存システムCSSを上書き */
#footer_container{
  background:#111 !important;color:#fff !important;
  border-top:3px solid #c8ff32 !important;
  padding:0 !important;margin:0 !important;
  width:100% !important;max-width:100% !important;
  box-sizing:border-box !important;
}
#footer_wrap{
  padding:32px 20px 24px !important;
  background:transparent !important;
}
#footer{
  padding:16px 20px !important;
  background:transparent !important;
  font-size:10px !important;color:#333 !important;letter-spacing:.5px !important;
  display:flex !important;justify-content:space-between !important;align-items:center !important;
  border-top:1px solid #1e1e1e !important;
}
#footer_container h3.title_footer,
#footer_container .wlf-heading{
  font-size:8px !important;font-weight:900 !important;letter-spacing:2.5px !important;
  color:#c8ff32 !important;text-transform:uppercase !important;margin:0 0 14px !important;
  padding:0 !important;background:none !important;border:none !important;
}
#footer_container ul{
  list-style:none !important;margin:0 !important;padding:0 !important;
  display:grid !important;grid-template-columns:1fr 1fr !important;gap:0 16px !important;
}
#footer_container ul li{
  border-bottom:1px solid #1a1a1a !important;
  background:none !important;padding:0 !important;
}
#footer_container ul li:nth-last-child(-n+2){border-bottom:none !important}
#footer_container ul li a{
  display:block !important;
  padding:11px 0 !important;font-size:12px !important;line-height:1 !important;
  color:#666 !important;text-decoration:none !important;
  transition:color .18s !important;
  white-space:nowrap !important;overflow:hidden !important;text-overflow:ellipsis !important;
  background:none !important;border:none !important;
}
#footer_container ul li a:hover{color:#c8ff32 !important}
.wlf-container{
  background:#111;color:#fff;
  border-top:3px solid #c8ff32;
}
.wlf-inner{
  padding:32px 20px 24px;
}
.wlf-brand{
  margin-bottom:32px;
  padding-bottom:24px;
  border-bottom:1px solid #1e1e1e;
}
.wlf-logo-img{
  height:24px;width:auto;display:block;
  margin-bottom:10px;
  filter:brightness(0) invert(1);
}
.wlf-tagline{
  font-size:10px;color:#555;letter-spacing:.3px;line-height:1.7;
}
.wlf-heading{
  font-size:8px;font-weight:900;letter-spacing:2.5px;
  color:#c8ff32;text-transform:uppercase;margin:0 0 14px;
}
.wlf-list{
  list-style:none;margin:0;padding:0;
  display:grid;grid-template-columns:1fr 1fr;gap:0 16px;
}
.wlf-list li{
  border-bottom:1px solid #1a1a1a;
}
.wlf-list li:nth-last-child(-n+2){border-bottom:none}
.wlf-list li a{
  display:block;
  padding:11px 0;font-size:12px;line-height:1;
  color:#666;text-decoration:none;
  transition:color .18s;
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis;
}
.wlf-list li a:hover{color:#c8ff32}
.wlf-divider{
  height:1px;background:#1e1e1e;margin:24px 0 0;
}
.wlf-copyright{
  padding:16px 20px;
  font-size:10px;color:#333;letter-spacing:.5px;
  display:flex;justify-content:space-between;align-items:center;
}
.wlf-copyright-mark{
  font-size:9px;font-weight:900;letter-spacing:1.5px;color:#2a2a2a;
}

/* ── 追従CTA ── */
.float-cta-wrap{
  position:fixed;
  bottom:20px;left:50%;
  transform:translateX(-50%) translateY(100px);
  z-index:100;
  width:min(88vw, 360px);
  opacity:0;
  pointer-events:none;
  transition:transform .45s cubic-bezier(.22,1,.36,1), opacity .35s ease;
}
.float-cta-wrap.is-visible{
  transform:translateX(-50%) translateY(0);
  opacity:1;
  pointer-events:auto;
}
.float-cta-wrap .hero-cta{
  width:100%;
  box-shadow:
    0 8px 0 #111,
    0 14px 32px rgba(0,0,0,.38),
    0 0 28px rgba(200,255,50,.45),
    0 0 56px rgba(200,255,50,.22);
}
.photo-hunt{
  padding:0;
  background:#06100a; /* preview の #0c0c0c と明確に差別化するダークフォレスト */
  color:#fff;
  border-top:3px solid #c8ff32; /* 強いセパレーター */
  border-bottom:1px solid #0e1f11;
}
.photo-hunt .kicker{color:#c8ff32}
/* ── TOPスクリーン：画像オーバーレイタイトル ── */
.hunt-top-hero-text{
  position:absolute;
  left:0;right:0;bottom:0;
  z-index:8;
  padding:0 18px 18px;
  background:linear-gradient(to top, rgba(0,0,0,.82) 0%, rgba(0,0,0,.45) 55%, transparent 100%);
  pointer-events:none;
}
.hunt-top-kicker{
  font-size:9px;font-weight:900;letter-spacing:2.5px;
  color:#c8ff32;margin-bottom:4px;
}
.hunt-top-title{
  font-family:Georgia,"Yu Mincho",serif;
  font-size:52px;line-height:.9;letter-spacing:-3px;
  color:#fff;margin:0 0 8px;
  text-shadow:0 2px 24px rgba(0,0,0,.6);
}
.hunt-top-sub{
  font-size:12px;color:rgba(255,255,255,.7);margin:0;
  letter-spacing:.3px;line-height:1.5;
}
/* ===================================
   PHOTO HUNT — FULLSCREEN GAME CSS
   =================================== */

/* ── Screen management ── */
.hunt-screen{display:none}
.hunt-screen.is-active{
  display:flex;flex-direction:column;
  /* スマホ画角に収まりつつ最大560pxでキャップ */
  height:min(calc(100dvh - 58px), 560px);
  overflow:hidden;
}
#huntFinal.is-active{overflow-y:auto;height:auto;min-height:0}

/* ── TOP ── */
/* .hunt-tagline は hunt-top-sub に統合 */
.hunt-demo-view{
  flex:1;min-height:0;position:relative;overflow:hidden;
  background:#0a0a0a;
}
.hunt-demo-view::before{
  content:"";position:absolute;inset:0;
  background:url('/images/game_top.jpg') center/cover no-repeat;
  opacity:.72;
}
.hunt-demo-view::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(180deg,rgba(0,0,0,.38) 0%,rgba(0,0,0,.05) 45%,transparent 100%);
}
.hunt-demo-rec{position:absolute;top:12px;left:12px;font-size:10px;font-weight:900;letter-spacing:1.8px;color:#fff;z-index:5}
.hunt-demo-shot{position:absolute;top:12px;right:12px;font-size:10px;font-weight:900;letter-spacing:1.5px;color:#fff;z-index:5}
.hunt-demo-finder{position:absolute;inset:44px 28px 64px;border:1px solid rgba(255,255,255,.3);z-index:5;pointer-events:none}
.hunt-demo-cross-h{position:absolute;width:20px;height:1px;background:rgba(255,255,255,.5);left:50%;top:50%;transform:translate(-50%,-50%)}
.hunt-demo-cross-v{position:absolute;width:1px;height:20px;background:rgba(255,255,255,.5);left:50%;top:50%;transform:translate(-50%,-50%)}
.hunt-top-corner{position:absolute;width:18px;height:18px;border-color:#c8ff32}
.hunt-top-corner.tl{left:-1px;top:-1px;border-left:2px solid;border-top:2px solid}
.hunt-top-corner.tr{right:-1px;top:-1px;border-right:2px solid;border-top:2px solid}
.hunt-top-corner.bl{left:-1px;bottom:-1px;border-left:2px solid;border-bottom:2px solid}
.hunt-top-corner.br{right:-1px;bottom:-1px;border-right:2px solid;border-bottom:2px solid}
.hunt-rec-dot{
  display:inline-block;width:7px;height:7px;border-radius:50%;
  background:#ff4c4c;margin-right:6px;
  animation:huntRecBlink 1s steps(1) infinite;
}
@keyframes huntRecBlink{0%,100%{opacity:1}50%{opacity:0}}
/* Demo animal walking across the preview */
.hunt-demo-animal{
  position:absolute;bottom:54px;height:38%;
  object-fit:contain;z-index:6;pointer-events:none;
  animation:huntDemoWalk 4.5s linear infinite;
  opacity:.92;
}
@keyframes huntDemoWalk{
  0%{left:-20%;transform:scaleX(1)}
  48%{left:110%;transform:scaleX(1)}
  49%{left:110%;transform:scaleX(-1)}
  50%{left:110%;transform:scaleX(-1)}
  98%{left:-20%;transform:scaleX(-1)}
  99%{left:-20%;transform:scaleX(1)}
  100%{left:-20%;transform:scaleX(1)}
}
/* ── Rules accordion ── */
.hunt-rules{
  flex:0 0 auto;
  border-top:1px solid #1e1e1e;
  border-bottom:1px solid #1e1e1e;
  background:#0d0d0d;
}
.hunt-rules summary{
  display:flex;align-items:center;justify-content:space-between;
  padding:11px 16px;font-size:9px;font-weight:900;letter-spacing:2px;
  color:#666;cursor:pointer;list-style:none;user-select:none;
  -webkit-tap-highlight-color:transparent;
}
.hunt-rules summary::-webkit-details-marker{display:none}
.hunt-rules summary::before{
  content:"";display:block;width:3px;height:3px;
  border-radius:50%;background:#c8ff32;margin-right:8px;
}
.hunt-rules summary::after{
  content:"＋";font-size:13px;color:#c8ff32;line-height:1;
}
.hunt-rules[open] summary{color:#aaa}
.hunt-rules[open] summary::after{ content:"－" }
.hunt-rules-body{
  padding:0 16px 14px;
  display:flex;flex-direction:column;gap:8px;
  border-top:1px solid #1a1a1a;
}
.hunt-rule-item{
  display:grid;grid-template-columns:22px 1fr;gap:6px;
  align-items:start;font-size:11px;line-height:1.55;color:#888;
}
.hunt-rule-num{
  font-family:Arial Black,Impact,sans-serif;font-size:10px;
  color:#c8ff32;line-height:1.55;padding-top:1px;
}
.hunt-top-cta-wrap{flex:0 0 auto;padding:12px 16px 16px}
.hunt-cta-btn{
  display:flex;width:100%;align-items:center;justify-content:space-between;
  background:#c8ff32;color:#111;border:none;
  padding:18px 20px;font-size:15px;font-weight:900;letter-spacing:.5px;cursor:pointer;
  -webkit-tap-highlight-color:transparent;
  animation:huntCtaPulse 2.4s ease-in-out infinite;
  position:relative;overflow:hidden;
}
.hunt-cta-btn::before{
  content:"";position:absolute;inset:0;
  background:rgba(255,255,255,.18);
  transform:translateX(-100%) skewX(-15deg);
  animation:huntCtaShine 2.4s ease-in-out infinite;
}
@keyframes huntCtaPulse{
  0%,100%{box-shadow:0 0 0 0 rgba(200,255,50,.4)}
  50%{box-shadow:0 0 0 6px rgba(200,255,50,0)}
}
@keyframes huntCtaShine{
  0%,100%{transform:translateX(-100%) skewX(-15deg)}
  40%,60%{transform:translateX(200%) skewX(-15deg)}
}
.hunt-cta-btn .cta-arrow{
  font-size:20px;font-weight:900;
  animation:huntArrowBounce .9s ease-in-out infinite alternate;
}
@keyframes huntArrowBounce{
  from{transform:translateX(0)}
  to{transform:translateX(5px)}
}
.hunt-cta-btn:active{opacity:.82;animation:none}

/* ── DIFFICULTY ── */
.hunt-diff-header{
  flex:0 0 auto;padding:22px 18px 14px;
  border-bottom:1px solid #1a1a1a;
}
.hunt-diff-header .kicker{color:#c8ff32;font-size:9px;letter-spacing:2.5px}
.hunt-diff-header h2{
  font-family:Georgia,"Yu Mincho",serif;
  font-size:26px;letter-spacing:-1px;margin:4px 0 0;color:#fff;
}
.hunt-diff-list{
  flex:1;padding:14px 14px 14px;
  display:flex;flex-direction:column;gap:9px;justify-content:center;
}
/* カード本体 */
.hunt-diff-card{
  position:relative;width:100%;text-align:left;
  border:1px solid #282828;background:#111;color:#fff;
  padding:0;cursor:pointer;overflow:hidden;
  transition:border-color .2s, transform .12s;
  -webkit-tap-highlight-color:transparent;
  display:flex;align-items:stretch;
}
.hunt-diff-card:active{transform:scale(.98)}
.hunt-diff-card--rec{border-color:#c8ff32}
/* 左カラーバー */
.hunt-diff-bar{
  width:4px;flex:0 0 4px;
  background:#333;
  transition:background .2s;
}
.hunt-diff-card.easy-card .hunt-diff-bar{background:#4daaff}
.hunt-diff-card.normal-card .hunt-diff-bar{background:#c8ff32}
.hunt-diff-card.hard-card .hunt-diff-bar{background:#ff5e5e}
/* カードコンテンツ */
.hunt-diff-content{
  flex:1;padding:14px 12px;
  display:flex;flex-direction:column;gap:3px;
}
.hunt-diff-badge{
  font-size:8px;font-weight:900;letter-spacing:1.8px;color:#c8ff32;
  background:rgba(200,255,50,.12);display:inline-block;
  padding:2px 7px;margin-bottom:2px;align-self:flex-start;
}
.hunt-diff-top-row{
  display:flex;align-items:baseline;gap:10px;
}
.hunt-diff-label{
  font-family:Arial Black,Impact,sans-serif;
  font-size:26px;line-height:1;letter-spacing:-1.5px;
}
.hunt-diff-card.easy-card .hunt-diff-label{color:#4daaff}
.hunt-diff-card.normal-card .hunt-diff-label{color:#c8ff32}
.hunt-diff-card.hard-card .hunt-diff-label{color:#ff5e5e}
.hunt-diff-sub{font-size:10px;color:#666;line-height:1.5}
/* 難度メーター */
.hunt-diff-meter{
  display:flex;gap:3px;margin-top:7px;
}
.hunt-diff-pip{
  height:3px;flex:1;background:#222;border-radius:1px;
  transition:background .2s;
}
.hunt-diff-pip.on.easy-on{background:#4daaff}
.hunt-diff-pip.on.normal-on{background:#c8ff32}
.hunt-diff-pip.on.hard-on{background:#ff5e5e}
/* 右矢印 */
.hunt-diff-arrow{
  flex:0 0 auto;display:flex;align-items:center;
  padding:0 14px;font-size:14px;color:#444;
}

/* ── GAME VIEWPORT (fills remaining height) ── */
.hunt-viewport{
  flex:1;position:relative;width:100%;
  min-height:0;overflow:hidden;
  background:#0a0a0a;user-select:none;-webkit-user-select:none;
}
.hunt-bg-img{
  position:absolute;inset:0;width:100%;height:100%;
  object-fit:cover;transition:opacity .45s ease;
}
.hunt-animal-layer{
  position:absolute;pointer-events:none;z-index:2;
  will-change:left,top,width,height;
  transform-origin:center bottom;
}
.hunt-animal-layer img{
  width:100%;height:100%;object-fit:contain;display:block;
  transition:opacity .08s ease;
}
@keyframes huntPopIn{
  0%{transform:scale(.35);opacity:0}
  70%{transform:scale(1.06)}
  100%{transform:scale(1);opacity:1}
}
.hunt-animal-layer.popin{animation:huntPopIn .32s cubic-bezier(.22,1,.36,1) forwards}
.hunt-fg-layer{position:absolute;inset:0;z-index:3;pointer-events:none;overflow:hidden}
.hunt-fg-item{position:absolute;object-fit:contain;pointer-events:none;max-height:70%}

/* Finder frame */
.hunt-finder-ui{
  position:absolute;inset:44px 24px 86px;z-index:11;
  border:1px solid rgba(255,255,255,.22);pointer-events:none;
  transition:border-color .25s ease;
}
.hunt-finder-ui.detected{
  border-color:rgba(200,255,50,.55);
  animation:huntDetectPulse .5s ease;
}
@keyframes huntDetectPulse{
  0%{border-color:rgba(200,255,50,.9);box-shadow:0 0 0 2px rgba(200,255,50,.25) inset}
  100%{border-color:rgba(255,255,255,.22);box-shadow:none}
}
.hunt-corner{
  position:absolute;width:22px;height:22px;
  transition:border-color .25s ease;
}
.hunt-corner.tl{left:-1px;top:-1px;border-left:2.5px solid;border-top:2.5px solid;border-color:rgba(255,255,255,.7)}
.hunt-corner.tr{right:-1px;top:-1px;border-right:2.5px solid;border-top:2.5px solid;border-color:rgba(255,255,255,.7)}
.hunt-corner.bl{left:-1px;bottom:-1px;border-left:2.5px solid;border-bottom:2.5px solid;border-color:rgba(255,255,255,.7)}
.hunt-corner.br{right:-1px;bottom:-1px;border-right:2.5px solid;border-bottom:2.5px solid;border-color:rgba(255,255,255,.7)}
.hunt-finder-ui.detected .hunt-corner{border-color:#c8ff32}
.hunt-cross-h{position:absolute;width:22px;height:1px;background:rgba(255,255,255,.45);left:50%;top:50%;transform:translate(-50%,-50%)}
.hunt-cross-v{position:absolute;width:1px;height:22px;background:rgba(255,255,255,.45);left:50%;top:50%;transform:translate(-50%,-50%)}
/* AFフレーム (動物検知時に表示) */
.hunt-af-frame{
  position:absolute;top:50%;left:50%;
  width:32px;height:32px;transform:translate(-50%,-50%);
  border:1px solid transparent;
  transition:all .3s ease;
}
.hunt-finder-ui.detected .hunt-af-frame{
  border-color:rgba(200,255,50,.7);
  box-shadow:0 0 8px rgba(200,255,50,.3);
  animation:huntAfShrink .4s ease forwards;
}
@keyframes huntAfShrink{
  from{width:60px;height:60px;opacity:0}
  to{width:32px;height:32px;opacity:1}
}

/* Vignette & scanlines */
.hunt-vignette{
  position:absolute;inset:0;z-index:1;pointer-events:none;
  background:radial-gradient(ellipse at 50% 38%, transparent 28%, rgba(0,0,0,.72) 100%);
}
.hunt-scanlines{
  position:absolute;inset:0;z-index:10;pointer-events:none;
  background:repeating-linear-gradient(
    0deg,
    rgba(0,0,0,.05) 0px,rgba(0,0,0,.05) 1px,
    transparent 1px,transparent 3px
  );
}

/* HUD */
.hunt-hud-rec{position:absolute;top:12px;left:12px;z-index:11;font-size:10px;font-weight:900;letter-spacing:1.8px;color:#fff;pointer-events:none;display:flex;align-items:center;gap:4px}
.hunt-hud-shot{position:absolute;top:12px;right:12px;z-index:11;font-size:10px;font-weight:900;letter-spacing:1.5px;color:#fff;pointer-events:none}
.hunt-hud-af{position:absolute;bottom:90px;left:12px;z-index:11;font-size:9px;font-weight:900;letter-spacing:1px;color:#c8ff32;pointer-events:none;opacity:.8}
.hunt-hud-zoom{position:absolute;bottom:90px;right:12px;z-index:11;font-size:9px;font-weight:900;letter-spacing:1px;color:rgba(255,255,255,.55);pointer-events:none}
.hunt-hud-stab{
  position:absolute;bottom:104px;left:50%;transform:translateX(-50%);
  z-index:11;display:flex;gap:2px;pointer-events:none;
}
.hunt-hud-stab span{
  width:10px;height:2px;background:rgba(255,255,255,.2);
}
.hunt-hud-stab span.on{background:rgba(200,255,50,.6);}


/* Status overlay (READY...) */
.hunt-status-overlay{
  position:absolute;inset:0;z-index:13;
  display:flex;align-items:center;justify-content:center;
  opacity:0;pointer-events:none;transition:opacity .18s ease;
}
.hunt-status-overlay.is-visible{opacity:1}
.hunt-status-text{
  font-size:14px;font-weight:900;letter-spacing:4px;color:#fff;
  text-shadow:0 2px 12px rgba(0,0,0,.9);
  background:rgba(0,0,0,.62);padding:10px 22px;
  border:1px solid rgba(255,255,255,.12);
  border-left:3px solid #c8ff32;
}

/* Judgment overlay */
.hunt-judgment-overlay{
  position:absolute;inset:0;z-index:14;
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  opacity:0;pointer-events:none;transition:opacity .18s ease;
}
.hunt-judgment-overlay.is-visible{opacity:1}
.hunt-judgment-text{
  font-family:Georgia,"Yu Mincho",serif;
  font-size:32px;font-weight:700;letter-spacing:-1px;
  color:#fff;text-shadow:0 2px 20px rgba(0,0,0,.9);text-align:center;
  padding:0 16px;
}
.hunt-judgment-text.is-perfect{color:#c8ff32;text-shadow:0 0 28px rgba(200,255,50,.7)}
.hunt-judgment-score{
  margin-top:6px;font-family:Arial Black,Impact,sans-serif;
  font-size:48px;color:#fff;line-height:1;
  text-shadow:0 2px 16px rgba(0,0,0,.8);
}
.hunt-judgment-score:not(:empty)::after{content:" LOVE";font-size:13px;letter-spacing:1.5px;vertical-align:middle}

/* Flash & Shake */
.hunt-flash{position:absolute;inset:0;z-index:15;background:#fff;opacity:0;pointer-events:none}
.hunt-flash.fire{animation:huntFlash .35s ease}
@keyframes huntFlash{0%{opacity:0}10%{opacity:.92}100%{opacity:0}}
@keyframes huntShake{
  0%,100%{transform:translate(0,0)}
  20%{transform:translate(-4px,3px)}
  40%{transform:translate(4px,-3px)}
  60%{transform:translate(-3px,2px)}
  80%{transform:translate(2px,-2px)}
}

/* Particles */
.hunt-particles{position:absolute;inset:0;z-index:7;pointer-events:none;overflow:hidden}
.hunt-particle{position:absolute;animation:huntParticle var(--dur,.8s) var(--delay,0s) ease-out both}
@keyframes huntParticle{
  from{transform:translate(0,0) scale(1);opacity:1}
  to{transform:translate(var(--tx,0px),var(--ty,-80px)) scale(0);opacity:0}
}

/* Shutter panel */
.hunt-shutter-wrap{
  position:absolute;bottom:0;left:0;right:0;z-index:12;
  pointer-events:none;
}
.hunt-shutter-panel{
  display:flex;align-items:center;justify-content:center;gap:20px;
  padding:8px 24px 12px;
  background:linear-gradient(to top, rgba(0,0,0,.82) 0%, rgba(0,0,0,.4) 100%);
  pointer-events:auto;
}
.hunt-shutter-label{
  font-size:8px;font-weight:900;letter-spacing:2px;color:rgba(255,255,255,.35);
  text-align:right;flex:1;
}
.hunt-shutter-hint{
  font-size:18px;flex:1;
  color:rgba(200,255,50,0);
  transition:color .2s ease;
  text-align:left;
  line-height:1;
}
.hunt-shutter-hint.ready{
  color:rgba(200,255,50,.8);
  animation:huntHintBlink .5s steps(1) infinite;
}
@keyframes huntHintBlink{0%,100%{opacity:1}50%{opacity:.2}}
.hunt-shutter{
  width:68px;height:68px;border-radius:50%;
  background:radial-gradient(circle at 35% 35%, #fff 0%, #ddd 100%);
  border:6px solid rgba(255,255,255,.18);
  box-shadow:
    inset 0 0 0 2px rgba(0,0,0,.3),
    inset 0 2px 4px rgba(255,255,255,.5),
    0 0 0 1px rgba(255,255,255,.15),
    0 4px 20px rgba(0,0,0,.6);
  position:relative;cursor:pointer;transition:transform .1s ease;
  -webkit-tap-highlight-color:transparent;
}
.hunt-shutter:active{transform:scale(.84)}
.hunt-shutter:disabled{opacity:.22;cursor:default;transform:none!important}
.hunt-shutter-ring{
  position:absolute;inset:9px;border-radius:50%;
  background:radial-gradient(circle at 35% 35%, #d8ff2a 0%, #a8d800 100%);
  box-shadow:0 0 8px rgba(200,255,50,.4);
  pointer-events:none;
  transition:background .15s, box-shadow .15s;
}
.hunt-shutter:disabled .hunt-shutter-ring{background:#555;box-shadow:none}

/* ── SHOT RESULT (polaroid style) ── */
.hunt-shot-result-inner{
  flex:1;display:flex;flex-direction:column;
  align-items:center;justify-content:space-between;
  padding:18px 20px 16px;text-align:center;
}
.hunt-polaroid{
  position:relative;
  width:min(160px, 44vw);
  aspect-ratio:3/4;
  overflow:hidden;
  background:#111;
  box-shadow:0 6px 24px rgba(0,0,0,.6);
  flex-shrink:0;
}
.hunt-polaroid-bg{
  position:absolute;inset:0;
  width:100%;height:100%;object-fit:cover;
  filter:brightness(.82);
}
.hunt-polaroid-animal{
  position:absolute;inset:0;
  width:100%;height:100%;
  object-fit:contain;object-position:center 70%;
  filter:drop-shadow(0 4px 12px rgba(0,0,0,.6));
}
.hunt-polaroid-overlay{
  position:absolute;inset:0;
  display:flex;align-items:center;justify-content:center;
  background:rgba(0,0,0,.32);
}
.hunt-judgment-big{
  font-family:Georgia,"Yu Mincho",serif;
  font-size:15px;font-weight:700;letter-spacing:-.3px;
  color:#fff;text-shadow:0 1px 8px rgba(0,0,0,.9);
  padding:0 6px;text-align:center;line-height:1.3;
}
.hunt-judgment-big.is-perfect{color:#c8ff32}
.hunt-result-score-line{
  font-family:Arial Black,Impact,sans-serif;font-size:48px;line-height:1;
  color:#c8ff32;display:flex;align-items:baseline;gap:8px;
}
.hunt-love{font-size:11px;font-weight:900;letter-spacing:1.5px;color:#555}
.hunt-shot-rec{
  width:100%;
  border:1px solid #1e1e1e;
  background:#111;
  padding:10px 12px;
  opacity:0;transform:translateY(8px);
  transition:opacity .45s ease, transform .45s ease;
  pointer-events:none;
}
.hunt-shot-rec.is-visible{
  opacity:1;transform:none;pointer-events:auto;
}
.hunt-shot-rec-kicker{
  font-size:8px;font-weight:900;letter-spacing:2px;color:#c8ff32;
  margin-bottom:8px;
}
.hunt-shot-rec-inner{
  display:flex;gap:12px;align-items:center;
}
.hunt-shot-rec-img{
  width:68px;height:52px;object-fit:cover;flex-shrink:0;
  border:1px solid #2a2a2a;
}
.hunt-shot-rec-body p{
  font-size:10px;color:#888;margin:0 0 5px;line-height:1.4;
}
.hunt-shot-rec-link{
  font-size:11px;font-weight:900;color:#fff;text-decoration:none;letter-spacing:.5px;
}
.hunt-shot-rec-link:hover{color:#c8ff32}
.hunt-next-btn{
  width:100%;background:#c8ff32;color:#111;
  border:none;padding:13px;font-size:13px;font-weight:900;letter-spacing:.5px;cursor:pointer;
  -webkit-tap-highlight-color:transparent;
}
.hunt-next-btn:active{opacity:.82}

/* ── FINAL RESULT ── */
.hunt-final-inner{padding:0 0 36px}

/* フィルムヘッダー */
.hunt-film-header{
  padding:20px 16px 10px;
  border-bottom:1px solid #1a1a1a;
}
.hunt-film-kicker{
  font-size:9px;font-weight:900;letter-spacing:2.5px;color:#c8ff32;
}

/* フィルムストリップ */
.hunt-film-strip{
  display:flex;gap:6px;padding:12px 14px;
  background:#0a0a0a;
}
.hunt-film-card{
  flex:1;position:relative;
  aspect-ratio:2/3;overflow:hidden;
  background:#111;
}
.hunt-film-card.active-card{
  flex:1.5;
  outline:1.5px solid #c8ff32;
}
.hunt-film-bg{
  position:absolute;inset:0;
  width:100%;height:100%;object-fit:cover;
  filter:brightness(.75) saturate(.9);
}
.hunt-film-animal{
  position:absolute;inset:0;
  width:100%;height:100%;
  object-fit:contain;object-position:center 72%;
  filter:drop-shadow(0 2px 6px rgba(0,0,0,.7));
}
.hunt-film-bottom{
  position:absolute;bottom:0;left:0;right:0;
  padding:18px 6px 6px;
  background:linear-gradient(to top, rgba(0,0,0,.88) 0%, transparent 100%);
  text-align:center;
}
.hunt-film-judgment{
  display:block;font-size:7px;font-weight:900;letter-spacing:.8px;
  color:rgba(255,255,255,.8);line-height:1;margin-bottom:2px;
}
.hunt-film-judgment.is-perfect{color:#c8ff32}
.hunt-film-score-num{
  font-family:Arial Black,Impact,sans-serif;
  font-size:20px;line-height:1;color:#fff;letter-spacing:-1px;
}
.hunt-film-score-unit{
  font-size:7px;font-weight:900;letter-spacing:1px;color:#666;margin-left:2px;
}
.hunt-film-num-badge{
  position:absolute;top:5px;left:5px;
  font-size:7px;font-weight:900;letter-spacing:1px;
  color:rgba(255,255,255,.4);
}

/* ── フィルムラップ (shot ↔ rec クロスフェード) ── */
.hunt-film-wrap{
  position:relative;width:100%;
  /* strip の aspect-ratio に合わせて高さは中身で決まる */
}
.hunt-film-recs{
  position:absolute;inset:0;
  opacity:0;pointer-events:none;
  transition:opacity .9s cubic-bezier(.22,1,.36,1);
  background:#111;overflow:hidden;
}
.hunt-film-recs.is-visible{
  opacity:1;pointer-events:auto;
}
.hunt-film-strip{
  transition:opacity .6s ease;
}
.hunt-film-strip.faded{
  opacity:0;
}

/* トータルスコア */
.hunt-total-section{
  margin:0;padding:20px 16px 16px;
  background:linear-gradient(135deg, #0e0e0e 0%, #141414 100%);
  border-bottom:1px solid #1e1e1e;
}
.hunt-total-label{
  font-size:8px;font-weight:900;letter-spacing:2.5px;color:#555;margin-bottom:6px;
}
.hunt-total-row{
  display:flex;align-items:baseline;gap:8px;margin-bottom:10px;
}
.hunt-total-score{
  font-family:Arial Black,Impact,sans-serif;
  font-size:64px;line-height:.9;color:#c8ff32;letter-spacing:-4px;
}
.hunt-total-unit{
  font-size:12px;font-weight:900;letter-spacing:2px;color:#444;
}
/* スコアバー */
.hunt-total-bar-wrap{
  height:3px;background:#222;width:100%;overflow:hidden;
}
.hunt-total-bar{
  height:100%;background:linear-gradient(90deg,#6dff50,#c8ff32);
  width:0%;transition:width 1.2s cubic-bezier(.22,1,.36,1);
}

/* タイトル */
.hunt-title-section{
  padding:18px 16px;
  border-bottom:1px solid #1a1a1a;
}
.hunt-title-label{
  font-size:8px;font-weight:900;letter-spacing:2.5px;color:#555;margin-bottom:8px;
}
.hunt-title-text{
  font-family:Georgia,"Yu Mincho",serif;
  font-size:22px;letter-spacing:-.8px;
  color:#fff;line-height:1.35;
  opacity:0;transform:translateY(12px);
  transition:opacity .6s ease, transform .6s ease;
}
.hunt-title-text.revealed{opacity:1;transform:none}

/* エディトリアル推薦 */
.hunt-rec-editorial{
  position:relative;width:100%;
  aspect-ratio:4/5;overflow:hidden;background:#111;
}
.hunt-rec-tag{
  position:absolute;top:12px;left:12px;z-index:3;
  font-size:8px;font-weight:900;letter-spacing:2px;color:#111;
  background:#c8ff32;padding:3px 8px;
}
.hunt-rec-editorial-img{
  width:100%;height:100%;object-fit:cover;
  filter:brightness(.72);
  transition:transform 6s ease;
}
.hunt-rec-editorial:hover .hunt-rec-editorial-img{
  transform:scale(1.04);
}
.hunt-rec-editorial-body{
  position:absolute;bottom:0;left:0;right:0;z-index:3;
  padding:40px 16px 16px;
  background:linear-gradient(to top, rgba(0,0,0,.88) 0%, rgba(0,0,0,.4) 60%, transparent 100%);
}
.hunt-rec-sub{
  font-size:12px;color:rgba(255,255,255,.65);margin:0 0 10px;line-height:1.6;
}
.hunt-rec-link{
  display:flex;align-items:center;justify-content:space-between;
  padding:12px 14px;
  background:rgba(200,255,50,1);color:#111;
  font-size:13px;font-weight:900;letter-spacing:.4px;
  text-decoration:none;
}
.hunt-rec-link:active{opacity:.85}

/* リプレイ */
.hunt-replay-wrap{padding:14px 16px 4px}
.hunt-replay-btn{
  display:flex;width:100%;align-items:center;justify-content:space-between;
  background:transparent;color:#555;
  border:1px solid #222;padding:13px 16px;
  font-size:12px;font-weight:900;letter-spacing:.4px;cursor:pointer;
  -webkit-tap-highlight-color:transparent;
  transition:border-color .15s, color .15s;
}
.hunt-replay-btn:active{border-color:#c8ff32;color:#c8ff32}
.hunt-replay-icon{font-size:16px}

/* ============================================================
   画像保護 — 長押し・右クリック・ドラッグによる保存防止
   JS（wl_photo_hunt.js 末尾）と組み合わせて三重保護
   ============================================================ */

/* ① iOS 長押しコールアウト防止（全 img 共通） */
img {
  -webkit-touch-callout: none;
}

/* ② サイト内画像：ドラッグ保存防止 ＋ 右クリックターゲット除去
      pointer-events:none でも親 <a> がクリックを受け取るので遷移は壊れない */
.site img {
  -webkit-user-drag: none;
  user-drag: none;
  pointer-events: none;
}

/* ③ 透明オーバーレイ（Android 長押しメニュー防止）
      img の前面に空の ::after を重ね、長押し対象を画像以外にする */

/* ヒーロースライドショー */
.hero-peep { position: relative; }
.hero-peep::after {
  content: ''; position: absolute; inset: 0; z-index: 3;
}

/* ランダム壁紙 */
.random-bg { position: relative; }
.random-bg::after {
  content: ''; position: absolute; inset: 0; z-index: 3;
}

/* ギャラリーモザイク */
.gp { position: relative; }
.gp::after {
  content: ''; position: absolute; inset: 0; z-index: 3;
}

/* ランキング画像 */
.rankphoto { position: relative; }
.rankphoto::after {
  content: ''; position: absolute; inset: 0; z-index: 3;
}

/* フォンプレビュー */
.phone-wrap { position: relative; }
.phone-wrap::after {
  content: ''; position: absolute; inset: 0; z-index: 3;
}

/* ゲーム：背景・動物・結果・フィルムカード */
.hunt-bg-img      { position: relative; }
.hunt-animal-layer { position: relative; }
.hunt-film-bg     { position: relative; }
.hunt-shot-rec-img { position: relative; }

.hunt-bg-img::after,
.hunt-animal-layer::after,
.hunt-film-bg::after,
.hunt-shot-rec-img::after {
  content: ''; position: absolute; inset: 0; z-index: 3;
}
