/* file: /app/style.css */
/* ------------------------------------------------------------
  働いて働いて時間管理 - LP
------------------------------------------------------------ */

:root{
  --bg0:#05060a;
  --bg1:#070a14;
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.70);
  --muted2: rgba(255,255,255,.55);
  --accent:#a78bfa;
  --accent2:#22d3ee;
  --good:#34d399;
  --warn:#fbbf24;
  --r: 18px;
  --shadow: 0 20px 60px rgba(0,0,0,.45);
  --shadow2: 0 16px 40px rgba(0,0,0,.35);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  color: var(--text);
  background:
    radial-gradient(1200px 800px at 20% 10%, rgba(167,139,250,.14), transparent 60%),
    radial-gradient(1000px 700px at 80% 30%, rgba(34,211,238,.12), transparent 60%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
  font-family: ui-sans-serif, system-ui, -apple-system, "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  overflow-x:hidden;
}

a{ color:inherit; text-decoration:none; }
img,video{ max-width:100%; height:auto; display:block; }

.container{
  width: min(1120px, calc(100% - 40px));
  margin-inline:auto;
}

/* ---------- 背景演出 ---------- */
.bg{
  position:fixed;
  inset:0;
  z-index:-2;
  pointer-events:none;
}
.bg__grid{
  position:absolute; inset:-40px;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 68px 68px;
  transform: perspective(900px) rotateX(60deg) translateY(-160px);
  opacity:.35;
}
.bg__glow{
  position:absolute;
  width: 520px; height: 520px;
  border-radius: 50%;
  filter: blur(40px);
  opacity:.45;
  mix-blend-mode: screen;
}
.bg__glow--a{ left:-120px; top:120px; background: rgba(167,139,250,.55); }
.bg__glow--b{ right:-140px; top:240px; background: rgba(34,211,238,.45); }
.bg__glow--c{ left:40%; bottom:-180px; background: rgba(244,114,182,.35); }

.bg__noise{
  position:absolute; inset:0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.10'/%3E%3C/svg%3E");
  opacity:.18;
}

/* ---------- ヘッダー ---------- */
.header{
  position:sticky;
  top:0;
  z-index:50;

  /* ★iOS Safari 対応（警告の通り） */
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);

  background: linear-gradient(180deg, rgba(0,0,0,.60), rgba(0,0,0,.25));
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 12px 0;
  gap: 16px;
}

.brand{
  display:flex; align-items:center; gap: 12px;
  min-width: 220px;
}
.brand__mark{
  width: 50px; height: 50px;
  display:grid; place-items:center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(221, 213, 242, 0.35), rgba(196, 230, 235, 0.2));
  border: 1px solid rgba(206, 146, 245, 0.12);
  box-shadow: var(--shadow2);
  overflow:hidden;
}
.brand__mark img{
  width:100%;
  height:100%;
  object-fit: contain;
  display:block;
}
.brand__name{ font-weight: 900; letter-spacing:.02em; }
.brand__sub{ display:block; font-size: 12px; color: var(--muted2); margin-top: 2px; }

.nav{ display:flex; gap: 18px; align-items:center; }
.nav__link{
  font-size: 14px;
  color: var(--muted);
  padding: 10px 10px;
  border-radius: 12px;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.nav__link:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.92);
}
.nav__link--cta{
  background: linear-gradient(135deg, rgba(167,139,250,.25), rgba(34,211,238,.18));
  border: 1px solid rgba(255,255,255,.12);
}

.burger{
  display:none;
  width: 44px; height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  box-shadow: var(--shadow2);
  cursor:pointer;
}
.burger__line{
  display:block;
  width: 18px; height: 2px;
  background: rgba(255,255,255,.86);
  margin: 5px auto;
  border-radius: 2px;
}

/* SPドロワー */
.drawer{ position:fixed; inset:0; display:none; z-index:80; }
.drawer.is-open{ display:block; }
.drawer__backdrop{ position:absolute; inset:0; background: rgba(0,0,0,.55); }
.drawer__panel{
  position:absolute;
  right: 12px; top: 70px;
  width: min(360px, calc(100% - 24px));
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(10,12,18,.82);

  /* ★iOS Safari 対応 */
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);

  box-shadow: var(--shadow);
  padding: 14px;
  animation: pop .18s ease-out;
}
@keyframes pop{
  from{ transform: translateY(-8px); opacity:0; }
  to{ transform: translateY(0); opacity:1; }
}
.drawer__top{
  display:flex; justify-content:space-between; align-items:center;
  padding: 6px 6px 10px 6px;
}
.drawer__title{ font-weight:900; letter-spacing:.08em; font-size: 12px; color: var(--muted2); }
.drawer__close{
  border:0;
  width: 38px; height: 38px;
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.9);
  cursor:pointer;
}
.drawer__link{
  display:block;
  padding: 12px 12px;
  border-radius: 14px;
  color: rgba(255,255,255,.86);
  border: 1px solid transparent;
}
.drawer__link:hover{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.12);
}
.drawer__link--cta{
  margin-top: 8px;
  background: linear-gradient(135deg, rgba(167,139,250,.25), rgba(34,211,238,.18));
  border-color: rgba(255,255,255,.12);
}

/* ---------- HERO ---------- */
.hero{
  position:relative;
  min-height: calc(100svh - 68px);
  display:flex;
  flex-direction:column;
}

.hero__slides{
  position:absolute;
  inset:0;
  z-index:0;
  overflow:hidden;
}
.hero__slide{
  position:absolute; inset:-10px;
  background-size:cover;
  background-position:center;
  filter: saturate(1.08) contrast(1.02);
  opacity:0;
  transform: scale(1.06);
  transition: opacity 900ms ease, transform 2400ms ease;
}
.hero__slide.is-active{
  opacity:1;
  transform: scale(1.02);
}
.hero__vignette{
  position:absolute; inset:0;
  background:
    radial-gradient(900px 620px at 50% 30%, rgba(0,0,0,.10), rgba(0,0,0,.78)),
    linear-gradient(180deg, rgba(0,0,0,.22), rgba(0,0,0,.72));
}

.hero__content{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 36px;
  padding: 44px 0 18px 0;
  align-items:center;
}

.chip{
  display:inline-flex; align-items:center; gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.86);
  font-size: 13px;
}
.dot{ width:8px; height:8px; border-radius:50%; display:inline-block; }
.dot--ok{ background: var(--good); box-shadow: 0 0 0 6px rgba(52,211,153,.16); }
.dot--wait{ background: var(--warn); box-shadow: 0 0 0 6px rgba(251,191,36,.14); }
.sep{ color: rgba(255,255,255,.40); }

.hero__title{
  margin: 16px 0 14px 0;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.12;
  letter-spacing: .01em;
  font-weight: 950;
}
.accent{
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  -webkit-background-clip:text;
  background-clip:text;
  color: transparent;
}
.hero__lead{
  margin: 0 0 18px 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}
.hero__note{
  margin: 10px 0 0 0;
  color: var(--muted2);
  font-size: 12px;
}

/* ボタン */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap: 10px;
  border-radius: 16px;
  padding: 14px 16px;
  font-weight: 900;
  letter-spacing: .02em;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  box-shadow: var(--shadow2);
  position:relative;
  overflow:hidden;
  transition: transform .2s ease, background .2s ease;
}
.btn:hover{ transform: translateY(-1px); background: rgba(255,255,255,.09); }
.btn--primary{
  background: linear-gradient(135deg, rgba(167,139,250,.30), rgba(34,211,238,.22));
  border-color: rgba(255,255,255,.18);
}
.btn--ghost{ background: rgba(255,255,255,.03); }
.btn__shine{
  position:absolute;
  inset:-40px;
  background: radial-gradient(260px 160px at 20% 10%, rgba(255,255,255,.18), transparent 60%);
  transform: translateX(-20%);
  animation: shine 2.8s ease-in-out infinite;
  pointer-events:none;
}
@keyframes shine{
  0%,100%{ opacity:.4; transform: translateX(-18%); }
  50%{ opacity:.72; transform: translateX(10%); }
}

/* ★ストアバッジ */
.store{
  display:flex;
  gap: 12px;
  align-items:center;
  margin-top: 12px;
  flex-wrap:wrap;
}
.store--center{ justify-content:center; }

.store--toplayer{
  position: relative;
  z-index: 20;
}

.store__btn{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 16px;
  background: rgba(255,255,255,.10);

  /* ★iOS Safari 対応 */
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);

  padding: 3px 4px;
  box-shadow: 0 1px 3px rgba(0,0,0,.35);
  overflow:hidden;
}
.store__btn::before{
  content:"";
  position:absolute; inset:0;
  background: radial-gradient(220px 120px at 20% 10%, rgba(255,255,255,.20), transparent 60%);
  opacity:.9;
  pointer-events:none;
}
.store__btn:hover{ transform: translateY(-1px); background: rgba(255,255,255,.22); }

.store__btn img{
  height: 46px;
  width:auto;
  opacity: 1 !important;
  filter: drop-shadow(0 14px 24px rgba(0,0,0,.55));
  mix-blend-mode: normal;
  position: relative;
  z-index: 2;
  border-radius: 14px;
  overflow: hidden;
}

/* 右側ショーケース */
.hero__showcase{ position:relative; min-height: 520px; }
.device{
  width: min(320px, 86%);
  margin-left:auto;
  border-radius: 32px;
  padding: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
  position:relative;
  z-index:2;
}
.device__screen{
  border-radius: 26px;
  overflow:hidden;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.12);
}
.device__glare{
  position:absolute;
  inset: 0;
  border-radius: 32px;
  background: radial-gradient(280px 220px at 20% 10%, rgba(255,255,255,.18), transparent 60%);
  pointer-events:none;
  mix-blend-mode: screen;
}

.float{
  position:absolute;
  width: 120px; height: 120px;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(167,139,250,.30), rgba(34,211,238,.18));
  border: 1px solid rgba(255,255,255,.14);
  opacity:.78;
  animation: bob 5.2s ease-in-out infinite;
  z-index:1;
}
.float--a{ left: 10px; top: 80px; transform: rotate(8deg); }
.float--b{ right: -8px; bottom: 110px; width: 88px; height: 88px; border-radius: 22px; animation-duration: 4.6s; }
.float--c{ left: 40px; bottom: 40px; width: 72px; height: 72px; border-radius: 20px; animation-duration: 6.2s; opacity:.65; }
@keyframes bob{ 0%,100%{ transform: translateY(0) rotate(8deg); } 50%{ transform: translateY(-10px) rotate(10deg); } }

.statcard{
  position:absolute;
  width: 210px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(10,12,18,.70);

  /* ★iOS Safari 対応 */
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);

  border: 1px solid rgba(255,255,255,.14);
  box-shadow: var(--shadow2);
  z-index:3;
}
.statcard--a{ left: 0; top: 18px; }
.statcard--b{ right: 0; top: 230px; width: 220px; }
.statcard__k{ color: var(--muted2); font-size: 12px; font-weight: 900; letter-spacing:.06em; }
.statcard__v{ margin-top: 6px; font-weight: 950; }
.statcard__mini{ margin-top: 6px; color: var(--muted); font-size: 12px; }

.hero__bottom{ margin-top:auto; padding: 10px 0 26px 0; position:relative; z-index:2; }
.hero__bottomInner{ display:flex; justify-content:center; }
.marquee{
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  overflow:hidden;
}
.marquee__track{
  display:flex;
  gap: 26px;
  padding: 12px 20px;
  white-space: nowrap;
  animation: roll 22s linear infinite;
  color: rgba(255,255,255,.72);
  font-weight: 900;
  letter-spacing:.04em;
}
@keyframes roll{ from{ transform: translateX(0); } to{ transform: translateX(-50%); } }

/* ---------- セクション共通 ---------- */
.section{ padding: 72px 0; }
.section__head{ margin-bottom: 24px; }
.section__title{
  margin: 0;
  font-size: clamp(24px, 2.6vw, 36px);
  letter-spacing:.01em;
  font-weight: 950;
}
.section__desc{ margin: 10px 0 0 0; color: var(--muted); line-height: 1.7; }
.spOnly{ display:none; }

/* Features grid */
.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.card3d{
  border-radius: var(--r);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: var(--shadow2);
  padding: 18px 16px;
  position:relative;
  overflow:hidden;
  transform-style: preserve-3d;
}
.card3d::before{
  content:"";
  position:absolute; inset:-80px;
  background:
    radial-gradient(420px 220px at 20% 10%, rgba(167,139,250,.20), transparent 60%),
    radial-gradient(420px 220px at 80% 30%, rgba(34,211,238,.14), transparent 60%);
  opacity:.8;
  pointer-events:none;
}
.card3d__icon{
  width: 44px; height: 44px;
  border-radius: 16px;
  display:grid; place-items:center;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  margin-bottom: 10px;
}
.card3d__title{ margin: 0 0 8px 0; font-weight: 950; }
.card3d__text{ margin: 0; color: var(--muted); line-height: 1.7; }

.banner{
  margin-top: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(135deg, rgba(167,139,250,.16), rgba(34,211,238,.10));
  box-shadow: var(--shadow2);
  padding: 18px 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
}
.banner__title{ font-weight: 950; }
.banner__text{ margin-top: 6px; color: var(--muted); line-height: 1.7; }

.legalNote{ margin: 14px 0 0 0; color: var(--muted2); font-size: 12px; }

/* ---------- ギャラリー ---------- */
.galleryGrid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 22px;
  gap: 14px;
  align-items:start;
}

.galleryGrid .shot{
  border-radius: 18px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow2);
  padding: 12px;
  position: relative;
  z-index: 1;

  transform: translate(var(--tx,0px), var(--ty,0px)) rotate(var(--rot,0deg)) scale(var(--sc,1));
  transform-origin: center;
  backface-visibility: hidden;
  will-change: transform;
}

.galleryGrid .shot figcaption{
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.galleryGrid .shot--front{ z-index: 5; }

.phone{
  border-radius: 26px;
  padding: 10px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  position:relative;
  overflow:hidden;
}
.phone::before{
  content:"";
  position:absolute;
  top: 8px; left: 50%;
  width: 86px; height: 10px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.10);
  opacity:.75;
}
.phone img, .phone video{
  border-radius: 18px;
  width:100%;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.12);
}

/* 縦動画 */
.shot--video .phone{
  max-width: 320px;
  margin: 0 auto;
  aspect-ratio: 9 / 16;
}
.shot--video .phone video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 不規則配置（PC） */
.shot--p1{  grid-column: 1 / span 5;  grid-row: 1 / span 26;  --rot:-2.2deg; --tx:-6px; --ty: 6px;  --sc:1.02; }
.shot--p2{  grid-column: 6 / span 4;  grid-row: 3 / span 22;  --rot: 1.6deg; --ty:-6px;          --sc:0.98; }
.shot--p3{  grid-column: 10/ span 3;  grid-row: 1 / span 20;  --rot:-1.2deg; --ty:10px;          --sc:0.96; }

.shot--p4{  grid-column: 2 / span 4;  grid-row: 24/ span 20;  --rot: 1.8deg; --ty:-10px;         --sc:0.98; }
.shot--p5{  grid-column: 6 / span 3;  grid-row: 26/ span 18;  --rot:-1.6deg; --tx: 8px;          --sc:0.92; }
.shot--p6{  grid-column: 9 / span 4;  grid-row: 22/ span 24;  --rot: 2.1deg; --ty: 6px;          --sc:1.03; }

.shot--p7{  grid-column: 1 / span 7;  grid-row: 44/ span 22;  --rot:-1.2deg; --ty:-6px;          --sc:1.02; }
.shot--p8{  grid-column: 8 / span 3;  grid-row: 48/ span 18;  --rot: 1.4deg; --tx:-6px;          --sc:0.90; }
.shot--p9{
  grid-column: 9 / span 4;
  grid-row: 50 / span 18;
  --rot: -1.6deg;
  --ty: 8px;
  --sc: 0.98;
}
.shot--p10{ grid-column: 6 / span 7;  grid-row: 66/ span 22;  --rot: 1.2deg; --ty:-8px;          --sc:1.00; }

@media (hover:hover){
  .galleryGrid .shot:hover{
    transform: translate(0px,-6px) rotate(0deg) scale(1.03);
    box-shadow: 0 26px 70px rgba(0,0,0,.55);
    z-index: 10;
  }
}

.galleryCta{
  margin-top: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  padding: 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
}
.galleryCta__text{ color: var(--muted); }

/* ---------- 料金 ---------- */
.pricing{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 16px;
}
.priceCard{
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  box-shadow: var(--shadow2);
  padding: 18px 16px;
  position:relative;
  transform-style: preserve-3d;
}
.priceCard--featured{
  background: linear-gradient(135deg, rgba(167,139,250,.16), rgba(34,211,238,.10));
  border-color: rgba(255,255,255,.18);
}
.priceCard__tag{
  position:absolute;
  top: 14px; right: 14px;
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(167,139,250,.18);
  border: 1px solid rgba(167,139,250,.35);
  color: rgba(255,255,255,.92);
  font-weight: 950;
}
.priceCard__title{ margin: 0; font-size: 18px; font-weight: 950; }
.priceCard__price{
  margin-top: 10px;
  font-size: 40px;
  font-weight: 980;
  letter-spacing: .01em;
}
.priceCard__price span{ font-size: 14px; color: var(--muted2); margin-left: 6px; font-weight: 900; }
.priceCard__save{ margin: 8px 0 0 0; color: var(--muted); }
.priceCard__list{
  margin: 12px 0 16px 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}
.priceCard__note{ margin: 10px 0 0 0; font-size: 12px; color: var(--muted2); }
.w100{ width:100%; }

.trust{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.trust__item{
  border-radius: 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  padding: 14px 12px;
}
.trust__k{ font-weight: 980; letter-spacing:.06em; font-size: 12px; color: rgba(255,255,255,.80); }
.trust__v{ margin-top: 8px; color: var(--muted); line-height: 1.7; font-size: 13px; }

/* ---------- FAQ ---------- */
.faq{ display:grid; gap: 10px; }
.qa{
  border-radius: 18px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  padding: 12px 12px;
}
.qa summary{
  cursor:pointer;
  font-weight: 950;
  color: rgba(255,255,255,.92);
  list-style:none;
}
.qa summary::-webkit-details-marker{ display:none; }
.qa__a{ margin-top: 10px; color: var(--muted); line-height: 1.7; }

/* ---------- 最後CTA ---------- */
.finalCta{ margin-top: 18px; }
.finalCta__box{
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(135deg, rgba(167,139,250,.14), rgba(34,211,238,.08));
  box-shadow: var(--shadow);
  padding: 22px 16px;
  text-align:center;
  position: relative;
  z-index: 2;
}
.finalCta__box h3{ margin: 0; font-size: 22px; font-weight: 980; }
.finalCta__box p{ margin: 10px 0 0 0; color: var(--muted); line-height: 1.7; }
.finalCta__mini{
  margin-top: 12px;
  color: var(--muted2);
  font-size: 12px;
}
.finalCta__mini a{
  color: rgba(255,255,255,.78);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.dotSep{ margin: 0 8px; opacity:.5; }

/* ---------- フッター ---------- */
.footer{
  border-top: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.35);

  /* ★iOS Safari 対応 */
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
.footer__inner{
  display:flex;
  justify-content:space-between;
  gap: 12px;
  padding: 18px 0;
  align-items:center;
}
.footer__brand{ font-weight: 980; }
.footer__copy{ color: var(--muted2); font-size: 12px; margin-top: 4px; }
.footer__right{ display:flex; gap: 12px; color: var(--muted); }
.footer__right a:hover{ color: rgba(255,255,255,.92); }

/* ---------- Reveal ---------- */
[data-reveal]{
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .7s ease, transform .7s ease;
}
.is-revealed{ opacity:1; transform: translateY(0); }

/* ---------- レスポンシブ ---------- */
@media (max-width: 980px){
  .hero__content{ grid-template-columns: 1fr; gap: 20px; padding-top: 26px; }
  .hero__showcase{ min-height: 460px; }
  .device{ margin: 0 auto; }
  .statcard--a{ left: 12px; top: 16px; }
  .statcard--b{ right: 12px; top: 270px; }

  .grid3{ grid-template-columns: 1fr; }
  .pricing{ grid-template-columns: 1fr; }
  .trust{ grid-template-columns: 1fr; }

  .galleryGrid{ grid-template-columns: repeat(6, 1fr); grid-auto-rows: 20px; }
  .shot--p1,.shot--p6,.shot--p7,.shot--p10{ grid-column: 1 / span 6; grid-row:auto; }
  .shot--p2,.shot--p4,.shot--p8{ grid-column: 1 / span 3; grid-row:auto; }
  .shot--p3,.shot--p5,.shot--p9{ grid-column: 4 / span 3; grid-row:auto; }
}

@media (max-width: 760px){
  .nav{ display:none; }
  .burger{ display:block; }
  .spOnly{ display:inline; }

  .hero__lead{ font-size: 14px; }
  .store__btn img{ height: 48px; }

  .banner, .galleryCta{ flex-direction:column; align-items:flex-start; }
  .footer__inner{ flex-direction:column; align-items:flex-start; }

  /* ★SP最重要修正：
     .shot--p3 等の grid-column:10... が残ると「暗黙列」が増えて画面外に押し出される
     → SPでは全ショットの位置指定を強制解除して、必ず縦1列で10枚全部表示 */
  .galleryGrid{
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
  .galleryGrid .shot{
    transform: none;                /* 視認性優先 */
    grid-column: 1 / -1 !important; /* ★暗黙列の発生を潰す */
    grid-row: auto !important;      /* ★固定rowを解除 */
  }
}

/* 低モーション設定 */
@media (prefers-reduced-motion: reduce){
  .marquee__track{ animation: none; }
  .float{ animation: none; }
  .hero__slide{ transition: none; }
  [data-reveal]{ transition: none; }
}
