/* ========================
   BASE & RESET
======================== */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Noto Sans JP', 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
  color: #333;
  overflow-x: hidden;
}

html {
  scroll-padding-top: 70px;
  scroll-behavior: smooth;
}

.main-content p { line-height: 1.8; }
.main-content { padding-top: 64px; }

/* ========================
   SCROLL ANIMATIONS
======================== */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-animate].is-visible {
  opacity: 1;
  transform: none;
}
[data-animate-delay="1"] { transition-delay: 0.08s; }
[data-animate-delay="2"] { transition-delay: 0.16s; }
[data-animate-delay="3"] { transition-delay: 0.24s; }
[data-animate-delay="4"] { transition-delay: 0.32s; }
[data-animate-delay="5"] { transition-delay: 0.40s; }

/* ========================
   LOADING SCREEN
======================== */
.loading-screen {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100svh;
  min-height: 100svh;
  background: linear-gradient(160deg, #f8fdff 0%, #ffffff 55%, #fffbf4 100%);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

@supports (height: 100dvh) {
  .loading-screen { height: 100dvh; min-height: 100dvh; }
}

.loading-screen.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* ---- 浮遊グラデーション円 ---- */
.ls-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.ls-blob-1 {
  width: 360px; height: 360px;
  top: -100px; right: -80px;
  background: radial-gradient(circle, rgba(0,173,239,0.13) 0%, transparent 68%);
  animation: lsFloat 5s ease-in-out infinite;
}
.ls-blob-2 {
  width: 260px; height: 260px;
  bottom: -60px; left: -60px;
  background: radial-gradient(circle, rgba(255,71,87,0.1) 0%, transparent 68%);
  animation: lsFloat 7s ease-in-out infinite reverse;
}
.ls-blob-3 {
  width: 180px; height: 180px;
  bottom: 20%; right: 8%;
  background: radial-gradient(circle, rgba(233,171,71,0.12) 0%, transparent 68%);
  animation: lsFloat 6s ease-in-out infinite 1s;
}

/* ---- 浮遊ピル ---- */
.ls-pill {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}
.ls-pill-1 {
  width: 12px; height: 32px;
  top: 22%; left: 18%;
  background: rgba(0,173,239,0.18);
  transform: rotate(25deg);
  animation: lsFloat 4.5s ease-in-out infinite 0.5s;
}
.ls-pill-2 {
  width: 10px; height: 24px;
  top: 60%; right: 16%;
  background: rgba(255,71,87,0.15);
  transform: rotate(-20deg);
  animation: lsFloat 5.5s ease-in-out infinite 1.5s;
}
.ls-pill-3 {
  width: 8px; height: 20px;
  top: 35%; right: 22%;
  background: rgba(233,171,71,0.2);
  transform: rotate(40deg);
  animation: lsFloat 6s ease-in-out infinite 0.8s;
}

/* ---- スパークル ---- */
.ls-spark {
  position: absolute;
  pointer-events: none;
  color: #E9AB47;
  font-size: 14px;
  opacity: 0.6;
  animation: lsPulse 2.5s ease-in-out infinite;
}
.ls-spark-1 { top: 28%; left: 22%; animation-delay: 0s; }
.ls-spark-2 { top: 20%; right: 24%; animation-delay: 0.8s; }
.ls-spark-3 { bottom: 28%; right: 20%; animation-delay: 1.6s; }

@keyframes lsFloat {
  0%, 100% { transform: translateY(0px) rotate(var(--r, 0deg)); }
  50%       { transform: translateY(-14px) rotate(var(--r, 0deg)); }
}
@keyframes lsPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50%       { transform: scale(1.5); opacity: 1; }
}

/* ---- ラッパー ---- */
.ls-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
}

/* ---- タグライン ---- */
.ls-tagline {
  margin-top: 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #aab4c0;
  text-transform: uppercase;
}

/* ========================
   GACHAPON MACHINE
======================== */
.gachapon-container {
  position: relative;
  width: 340px;
  height: 560px;
  transform-origin: top center;
}

/* レスポンシブ縮小 */
@media (max-width: 340px) {
  .gachapon-container { transform: scale(0.72); }
  .ls-tagline { transform: scale(0.72); transform-origin: top center; margin-top: 4px; }
}
@media (min-width: 341px) and (max-width: 400px) {
  .gachapon-container { transform: scale(0.84); }
  .ls-tagline { transform: scale(0.84); transform-origin: top center; margin-top: 8px; }
}
@media (min-width: 401px) and (max-width: 480px) {
  .gachapon-container { transform: scale(0.92); }
}

.gachapon-body {
  position: absolute;
  inset: auto 0 0 50%;
  transform: translateX(-50%);
  width: 280px;
  height: 500px;
  background: linear-gradient(180deg, #fdfefe 0%, #f4f8fb 100%);
  border-radius: 12px;
  border: 1px solid rgba(80, 110, 140, 0.12);
  box-shadow:
    0 28px 60px rgba(42, 75, 140, 0.12),
    inset 0 1px 0 rgba(255,255,255,0.9);
  overflow: hidden;
}

.gachapon-shine {
  position: absolute;
  top: 18px;
  left: 14px;
  width: 40px;
  height: 92%;
  background: linear-gradient(180deg, rgba(255,255,255,0.55), rgba(255,255,255,0.04));
  border-radius: 999px;
  filter: blur(1px);
}

.gachapon-window {
  position: absolute;
  top: 26px;
  left: 18px;
  width: 118px;
  height: 238px;
  background: linear-gradient(180deg, rgba(255,255,255,0.78), rgba(232,242,248,0.72));
  border: 3px solid rgba(255,255,255,0.92);
  border-radius: 10px;
  box-shadow:
    inset 0 0 0 1px rgba(110,140,170,0.12),
    inset 0 10px 18px rgba(255,255,255,0.5),
    0 6px 18px rgba(0,0,0,0.05);
  overflow: hidden;
}

.gachapon-window-inner {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 14px;
  height: 56px;
  background: rgba(255,255,255,0.42);
  border-radius: 999px;
  transform: rotate(14deg);
}

.gachapon-shelf {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 1px;
  background: rgba(100,120,150,0.22);
}
.shelf-1 { top: 76px; }
.shelf-2 { top: 146px; }
.shelf-3 { top: 216px; }

.toy {
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50% 50% 42% 42%;
  background: #9fd6d5;
  box-shadow:
    inset 0 -4px 0 rgba(0,0,0,0.08),
    0 2px 4px rgba(0,0,0,0.08);
}
.toy::before,
.toy::after {
  content: "";
  position: absolute;
  top: -4px;
  width: 8px;
  height: 8px;
  background: inherit;
  border-radius: 50%;
}
.toy::before { left: 2px; }
.toy::after  { right: 2px; }

.toy-1 { top: 28px; left: 14px; background: #8ed4d6; }
.toy-2 { top: 28px; left: 48px; background: #c6a8d8; }
.toy-3 { top: 28px; left: 82px; background: #f1a0b1; }
.toy-4 { top: 98px; left: 32px; background: #f6c468; }
.toy-5 { top: 98px; left: 64px; background: #c7de7b; }
.toy-6 { top: 168px; left: 32px; background: #c6a8d8; }
.toy-7 { top: 168px; left: 64px; background: #f6c468; }

.gachapon-display {
  position: absolute;
  top: 116px;
  right: 44px;
  width: 40px;
  height: 64px;
  border-radius: 6px;
  background: linear-gradient(180deg, #202733, #0e131b);
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.08);
}
.gachapon-display::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 4px;
  background: linear-gradient(180deg, #3fd2ff, #0f8dff);
}

.gachapon-coin-slot {
  position: absolute;
  top: 156px;
  right: 18px;
  width: 24px;
  height: 14px;
  border-radius: 7px;
  background: linear-gradient(180deg, #a6adb6, #747d88);
  box-shadow: inset 0 1px 2px rgba(255,255,255,0.35);
}

.gachapon-control-panel {
  position: absolute;
  top: 196px;
  right: 26px;
  width: 76px;
  height: 64px;
  border-radius: 18px 18px 18px 18px;
  background: linear-gradient(180deg, #1e2229, #0f1319);
  box-shadow: 0 8px 16px rgba(0,0,0,0.16);
}

.gachapon-handle {
  position: absolute;
  top: 20px;
  left: 14px;
  width: 42px;
  height: 10px;
  background: linear-gradient(135deg, #ffb74a, #f08f00);
  border-radius: 999px;
  transform-origin: 75% 50%;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.gachapon-handle::after {
  content: "";
  position: absolute;
  right: -8px;
  top: 50%;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff, #d5d8de 55%, #8f98a3 100%);
}

.gachapon-handle.turn {
  animation: turnHandle 1.5s ease-in-out forwards;
}

.gachapon-big-knob-base {
  position: absolute;
  left: 20px;
  top: 308px;
  width: 92px;
  height: 92px;
  border-radius: 12px;
  background: linear-gradient(180deg, #f7fbff, #dde8f5);
  box-shadow:
    inset 0 0 0 2px rgba(255,255,255,0.9),
    0 6px 16px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gachapon-big-knob {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: linear-gradient(180deg, #ffbf61, #f09a1f);
  box-shadow:
    inset 0 2px 4px rgba(255,255,255,0.35),
    0 4px 8px rgba(0,0,0,0.16);
  position: relative;
}
.gachapon-big-knob.turn {
  animation: turnBigKnob 1.5s ease-in-out forwards;
}
@keyframes turnBigKnob {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.gachapon-big-knob::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 10px;
  right: 10px;
  height: 8px;
  transform: translateY(-50%);
  border-radius: 999px;
  background: rgba(255,255,255,0.5);
}

.gachapon-payment {
  position: absolute;
  right: 24px;
  top: 352px;
  width: 34px;
  height: 48px;
  border-radius: 6px;
  background: linear-gradient(180deg, #ffb54d, #f28d00);
  box-shadow: 0 4px 8px rgba(0,0,0,0.12);
}

.gachapon-outlet {
  position: absolute;
  left: 45px;
  bottom: 26px;
  width: 190px;
  height: 64px;
  border-radius: 6px 6px 14px 14px;
  background: linear-gradient(180deg, #8f959d 0%, #4b525b 38%, #dadfe4 39%, #eef2f6 100%);
  box-shadow:
    inset 0 10px 14px rgba(0,0,0,0.28),
    0 6px 14px rgba(0,0,0,0.1);
}



/* ========================
   CAPSULE
======================== */
.capsule {
  position: absolute;
  bottom: 148px;
  left: 50%;
  transform: translateX(-50%) scale(0);
  width: 80px;
  height: 80px;
  z-index: 20;
  visibility: hidden;
}

.capsule.drop {
  visibility: visible;
  animation: dropCapsule 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes dropCapsule {
  0%   { transform: translateX(-50%) translateY(50px) scale(0); opacity: 0; }
  30%  { transform: translateX(-50%) translateY(-20px) scale(1.2); opacity: 1; }
  60%  { transform: translateX(-50%) translateY(90px) scale(1.1) rotate(20deg); }
  80%  { transform: translateX(-50%) translateY(80px) scale(1) rotate(-10deg); }
  100% { transform: translateX(-50%) translateY(90px) scale(1.5) rotate(0deg); opacity: 1; }
}

.capsule-top,
.capsule-bottom {
  position: absolute;
  width: 80px;
  height: 40px;
  left: 0;
  transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.capsule-top {
  top: 0;
  background: linear-gradient(135deg, rgba(80,130,240,0.9), rgba(50,100,220,0.85));
  border-radius: 40px 40px 0 0;
  border: 2px solid rgba(255,255,255,0.55);
  border-bottom: none;
  transform-origin: bottom center;
  box-shadow: inset 0 3px 8px rgba(255,255,255,0.2);
}
.capsule-bottom {
  bottom: 0;
  background: linear-gradient(135deg, #ffdaba, #ffcaa0);
  border-radius: 0 0 40px 40px;
  border: 2px solid rgba(255,255,255,0.55);
  border-top: none;
  transform-origin: top center;
  box-shadow: inset 0 -3px 8px rgba(0,0,0,0.06);
}

.capsule.open .capsule-top    { transform: translateY(-32px) rotate(-18deg); opacity: 0; }
.capsule.open .capsule-bottom { transform: translateY(32px) rotate(18deg); opacity: 0; }

.pop-out-container {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none;
  z-index: 50;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  background: rgba(255,255,255,0);
  backdrop-filter: blur(0px);
  transition: opacity 0.4s ease, backdrop-filter 0.4s ease, background 0.4s ease;
}
.pop-out-container.show {
  opacity: 1;
  pointer-events: auto;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(5px);
}

.confetti-container {
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  pointer-events: none;
  z-index: 10;
}
.conf-piece {
  position: absolute;
  width: 12px; height: 12px;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
}
.pop-out-container.show .conf-piece {
  animation: pop-confetti 2s ease-out forwards;
  animation-delay: var(--delay);
}
@keyframes pop-confetti {
  0% { transform: translate(-50%, -50%) scale(0) rotate(0deg); opacity: 1; }
  10% { opacity: 1; }
  100% { transform: translate(calc(-50% + var(--tx)), calc(-50% + var(--ty))) scale(1) rotate(var(--rot)); opacity: 0; }
}

.pop-logo {
  position: relative;
  z-index: 20;
  width: 85vw; max-width: 600px;
  transform: scale(0);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1.2) 0.1s, opacity 0.4s 0.1s;
}
.pop-out-container.show .pop-logo {
  transform: scale(1);
  opacity: 1;
}

.pop-item {
  position: absolute;
  width: 25vw; max-width: 160px;
  transform: translate(-50%, -50%) scale(0) rotate(0deg);
  opacity: 0;
  left: 50%; top: 50%;
  z-index: 15;
  filter: drop-shadow(0 10px 15px rgba(0,0,0,0.15));
  transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.5, 1.1), opacity 0.4s;
}

.pop-out-container.show .item-1 { transform: translate(calc(-50% - 180px), calc(-50% - 160px)) scale(1) rotate(-15deg); opacity: 1; transition-delay: 0.1s; }
.pop-out-container.show .item-2 { transform: translate(calc(-50% + 180px), calc(-50% - 130px)) scale(1) rotate(20deg);  opacity: 1; transition-delay: 0.15s; }
.pop-out-container.show .item-3 { transform: translate(calc(-50% - 150px), calc(-50% + 150px)) scale(1) rotate(-10deg); opacity: 1; transition-delay: 0.2s; }
.pop-out-container.show .item-4 { transform: translate(calc(-50% + 190px), calc(-50% + 150px)) scale(1) rotate(15deg);  opacity: 1; transition-delay: 0.25s; }

@media (max-width: 767px) {
  .pop-item { width: 35vw; }
  .pop-out-container.show .item-1 { transform: translate(calc(-50% - 30vw), calc(-50% - 25vh)) scale(1) rotate(-15deg); }
  .pop-out-container.show .item-2 { transform: translate(calc(-50% + 30vw), calc(-50% - 22vh)) scale(1) rotate(20deg);  }
  .pop-out-container.show .item-3 { transform: translate(calc(-50% - 28vw), calc(-50% + 23vh)) scale(1) rotate(-10deg); }
  .pop-out-container.show .item-4 { transform: translate(calc(-50% + 28vw), calc(-50% + 24vh)) scale(1) rotate(15deg);  }
}

.loading-screen.is-gone { display: none; }

body.is-loading {
  overflow: hidden;
  height: 100vh;
  height: 100dvh;
  min-height: 100dvh;
  width: 100vw;
  position: fixed;
  top: 0; left: 0;
}

/* ========================
   HEADER
======================== */
.header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 64px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  padding: 0 5%;
  box-shadow: 0 1px 0 rgba(0,0,0,0.08), 0 2px 20px rgba(0,0,0,0.05);
  z-index: 100;
}

/* ========================
   SECTION BADGES
======================== */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 16px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.badge-blue  { background: rgba(0,173,239,0.1);  color: #0095cc; border: 1px solid rgba(0,173,239,0.25); }
.badge-red   { background: rgba(255,71,87,0.1);  color: #e63347; border: 1px solid rgba(255,71,87,0.25); }
.badge-gold  { background: rgba(233,171,71,0.15); color: #a87200; border: 1px solid rgba(233,171,71,0.35); }
.badge-white { background: rgba(255,255,255,0.15); color: #fff; border: 1px solid rgba(255,255,255,0.3); }

/* ========================
   HERO
======================== */
.hero {
  padding-top: 40px;
  padding-bottom: 40px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #f8fdff 0%, #ffffff 55%, #fffbf4 100%);
}

.hero-deco {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero-content,
.hero-image { position: relative; z-index: 1; }

/* ========================
   CTA BUTTON
======================== */
.cta-button {
  position: relative;
  overflow: hidden;
  padding: 14px 36px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #FF9A4A, #FF7E27);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(233,171,71,0.45), 0 2px 6px rgba(0,0,0,0.08);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
}
.cta-button::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: skewX(-15deg);
  transition: left 0.6s ease;
}
.cta-button:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 28px rgba(233,171,71,0.55), 0 4px 10px rgba(0,0,0,0.08);
}
.cta-button:hover::before { left: 150%; }

/* ========================
   ISSUES SECTION (LIGHT)
======================== */
.issues-section {
  position: relative;
  overflow: hidden;
}
.issues-section::before {
  content: '';
  position: absolute;
  top: -140px; right: -140px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,173,239,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.issues-section::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(255,71,87,0.09) 0%, transparent 65%);
  pointer-events: none;
}

.issue-card {
  background: white;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 16px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.03);
  transition: transform 0.25s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.issue-card:hover {
  border-color: rgba(255,71,87,0.3);
  box-shadow: 0 8px 20px rgba(255,71,87,0.1);
  transform: translateX(5px);
}
.issue-icon {
  flex-shrink: 0;
  width: 38px; height: 38px;
  background: rgba(255,71,87,0.15);
  border: 1px solid rgba(255,71,87,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #ff7b8a;
}

.issue-solve-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #00c2ff, #00ADEF, #0090c5);
  color: white;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 32px;
  border-radius: 50px;
  box-shadow: 0 6px 20px rgba(0,173,239,0.4);
  margin-top: 40px;
}

/* ========================
   CHARM / REASONS
======================== */
.charm-card {
  position: relative;
  overflow: hidden;
  background: white;
  border-radius: 22px;
  padding: 34px 24px 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  border: 1px solid rgba(255,71,87,0.08);
  text-align: center;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}
.charm-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(255,71,87,0.14);
}
.charm-bg-num {
  position: absolute;
  top: -14px; right: 6px;
  font-size: 120px;
  font-weight: 900;
  line-height: 1;
  color: rgba(255,71,87,0.07);
  pointer-events: none;
  user-select: none;
}
.charm-icon-circle {
  width: 66px; height: 66px;
  background: linear-gradient(135deg, #ff6b6b, #ff4757);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 8px 20px rgba(255,71,87,0.3);
  color: white;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.charm-card:hover .charm-icon-circle {
  transform: scale(1.1) rotate(-5deg);
}

/* ========================
   BENEFIT SECTION
======================== */
.benefit-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media (min-width: 768px) {
  .benefit-card { flex-direction: row; }
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0,173,239,0.12);
}
.benefit-image-area {
  background: linear-gradient(135deg, #e4f5ff, #ccebff);
  display: flex; align-items: center; justify-content: center;
  min-height: 200px;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .benefit-image-area { width: 41.666667%; }
}
.benefit-num-badge {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 30px; height: 30px;
  background: linear-gradient(135deg, #33c5f7, #00ADEF);
  color: white;
  font-weight: 900;
  font-size: 13px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(0,173,239,0.35);
  margin-right: 8px;
  vertical-align: middle;
  position: relative;
  top: -1px;
}

/* ========================
   SCENE CARDS
======================== */
.scene-card {
  background: white;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}
.scene-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 52px rgba(0,0,0,0.11);
}
.scene-image-area {
  height: 280px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.scene-image-area.commercial { background: linear-gradient(135deg, #ffeef0, #ffd6da); }
.scene-image-area.tourism    { background: linear-gradient(135deg, #e8fff0, #c8f5d8); }
.scene-image-area.storefront { background: linear-gradient(135deg, #fef5e4, #fde8b5); }
.scene-image-area.event      { background: linear-gradient(135deg, #eef4ff, #d0e4ff); }

/* ========================
   FEATURES (できること)
======================== */
.feature-card {
  background: white;
  padding: 28px 18px;
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,173,239,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0,173,239,0.14);
  border-color: rgba(0,173,239,0.28);
}
.feature-icon-ring {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, #e4f5ff, #c8e9ff);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  color: #00ADEF;
  transition: background 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}
.feature-card:hover .feature-icon-ring {
  background: linear-gradient(135deg, #00ADEF, #0090c5);
  box-shadow: 0 6px 18px rgba(0,173,239,0.35);
  color: white;
}

/* ========================
   FLOW SECTION
======================== */
.flow-step {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  position: relative;
}
.flow-connector {
  position: absolute;
  left: 25px;
  top: 52px;
  bottom: -24px;
  width: 2px;
  background: linear-gradient(to bottom, rgba(0,173,239,0.35), rgba(0,173,239,0.1));
  z-index: 1;
}
.flow-num {
  flex-shrink: 0;
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900;
  font-size: 20px;
  color: white;
  position: relative;
  z-index: 2;
}
.flow-num-blue {
  background: linear-gradient(135deg, #33c5f7, #00ADEF);
  box-shadow: 0 4px 16px rgba(0,173,239,0.4);
}
.flow-num-red {
  background: linear-gradient(135deg, #ff6b6b, #ff4757);
  box-shadow: 0 4px 16px rgba(255,71,87,0.4);
}
.flow-card {
  background: white;
  border-radius: 16px;
  padding: 18px 22px;
  flex: 1;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  margin-bottom: 0;
}
.flow-card:hover {
  transform: translateX(5px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.1);
}
.flow-card-final {
  border-color: rgba(255,71,87,0.2);
  background: linear-gradient(135deg, #fff8f8, #ffffff);
}

/* ========================
   FAQ ACCORDION (smooth)
======================== */
.faq-item {
  border: 1.5px solid rgba(0,173,239,0.25);
  background: white;
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.faq-item:hover {
  box-shadow: 0 4px 20px rgba(0,173,239,0.1);
  border-color: rgba(0,173,239,0.45);
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.accordion-content.is-open {
  max-height: 500px;
}
.accordion-header .arrow {
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ========================
   SPECS TABLE
======================== */
.specs-table {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(42,75,140,0.12);
  border: none !important;
}

/* ========================
   HAMBURGER
======================== */
.hamburger-active .hamburger-line-1 { transform: translateY(8px) rotate(45deg); }
.hamburger-active .hamburger-line-2 { opacity: 0; }
.hamburger-active .hamburger-line-3 { transform: translateY(-8px) rotate(-45deg); }

/* ========================
   FLOATING PULSE (デコ)
======================== */
@keyframes floatY {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}
@keyframes floatYSlow {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}
.float-anim      { animation: floatY 4s ease-in-out infinite; }
.float-anim-slow { animation: floatYSlow 6s ease-in-out infinite; }

/* Stagger delays for deco elements */
.float-d1 { animation-delay: 0s; }
.float-d2 { animation-delay: 1.2s; }
.float-d3 { animation-delay: 2.4s; }

/* ========================
   SECTION DIVIDER WAVE
======================== */
.wave-divider {
  display: block;
  width: 100%;
  line-height: 0;
  pointer-events: none;
}
