/* =========================================================
   モカモコMOON LP
   Brand: pink #EE67D7 / navy #272E92 / light-blue #E2F0FC
   ========================================================= */

:root {
  --pink:       #EE67D7;
  --pink-dark:  #DB51C4;
  --pink-soft:  #FFEBFC;
  --navy:       #272E92;
  --navy-2:     #3038A7;
  --blue-soft:  #E2F0FC;
  --blue-soft2: #C6DDF1;
  --bg-top:     #F1F8FF;
  --ink:        #3E3D42;
  --white:      #ffffff;
  --radius:     20px;
  --maxw:       1040px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Noto Sans JP", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

.pc-only { display: inline; }

/* ---------------- Header ---------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(160%) blur(8px);
  border-bottom: 1px solid var(--blue-soft);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.brand-logo { height: 22px; width: auto; }
.header-dl-btn {
  background: var(--pink);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(238,103,215,.35);
  transition: transform .15s ease, box-shadow .15s ease;
}
.header-dl-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(238,103,215,.45); }

/* ---------------- Hero ---------------- */
.hero {
  background:
    radial-gradient(900px 480px at 85% -10%, var(--pink-soft) 0%, rgba(255,235,252,0) 60%),
    linear-gradient(180deg, var(--bg-top) 0%, var(--blue-soft) 100%);
  padding: 72px 0 88px;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: center;
}
.hero-badge {
  display: inline-block;
  background: var(--pink);
  color: var(--white);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .08em;
  padding: 6px 16px;
  border-radius: 999px;
  margin: 0 0 18px;
}
.hero-title {
  font-size: 42px;
  line-height: 1.35;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 18px;
}
.hero-title .accent { color: var(--pink); }
.hero-sub {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy-2);
  margin: 0 0 14px;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--blue-soft2);
  display: inline-block;
}
.hero-lead {
  font-size: 16px;
  color: var(--ink);
  margin: 0 0 28px;
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.store-badges--center { justify-content: center; }
.badge-img {
  height: 52px;
  width: auto;
  transition: transform .15s ease;
}
.badge-img:hover { transform: translateY(-2px); }

.hero-visual { display: flex; justify-content: center; }
.hero-icon-wrap {
  position: relative;
  width: 230px;
  height: 230px;
  display: grid;
  place-items: center;
}
.hero-icon-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 40%, rgba(255,255,255,.9), rgba(255,255,255,0) 70%);
  border-radius: 50%;
}
.hero-icon {
  position: relative;
  width: 180px;
  height: 180px;
  border-radius: 40px;
  box-shadow: 0 24px 60px rgba(39,46,146,.28);
}

/* ---------------- Section commons ---------------- */
.section-eyebrow {
  text-align: center;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--pink);
  margin: 0 0 6px;
}
.section-title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 44px;
}

/* ---------------- Recommend (こんな方におすすめ) ---------------- */
.recommend { padding: 84px 0 0; }
.recommend-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 640px;
  display: grid;
  gap: 14px;
}
.recommend-list li {
  position: relative;
  background: var(--blue-soft);
  border-radius: 14px;
  padding: 16px 20px 16px 52px;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
}
.recommend-list li::before {
  content: "✓";
  position: absolute;
  left: 18px; top: 50%;
  transform: translateY(-50%);
  width: 22px; height: 22px;
  display: grid; place-items: center;
  background: var(--pink);
  color: #fff;
  font-size: 13px;
  border-radius: 50%;
}

/* ---------------- Reason (選ばれる理由) ---------------- */
.reason {
  padding: 84px 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--bg-top) 100%);
}
.reason-inner { max-width: 760px; text-align: center; }
.reason-lead {
  font-size: 16px;
  margin: 0 0 18px;
}
.reason-lead:last-child { margin-bottom: 0; }

/* ---------------- Features ---------------- */
.features { padding: 84px 0; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--blue-soft);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: 0 10px 30px rgba(39,46,146,.06);
  transition: transform .18s ease, box-shadow .18s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(39,46,146,.12);
}
.feature-icon {
  width: 60px; height: 60px;
  display: grid; place-items: center;
  border-radius: 16px;
  margin-bottom: 18px;
}
.feature-icon img { width: 30px; height: 30px; object-fit: contain; }
.feature-icon--pink { background: var(--pink-soft); }
.feature-icon--blue { background: var(--blue-soft); }
/* 5枚目はフル幅で中央寄せ（2+2+1 レイアウト） */
.feature-card--wide { grid-column: 1 / -1; }
.feature-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 10px;
}
.feature-card p {
  font-size: 15px;
  margin: 0;
  color: var(--ink);
}

/* ---------------- Screens (画面イメージ) ---------------- */
.screens {
  padding: 84px 0;
  background: linear-gradient(180deg, var(--bg-top) 0%, var(--blue-soft) 100%);
  overflow: hidden;
}
.screens-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 8px 4px 22px;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  /* 収まる時は中央寄せ・あふれる時は左端から正しくスクロール（端が切れない） */
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
}
/* マウスでのドラッグスクロール（JS で .draggable / .dragging を付与） */
.screens-track.draggable { cursor: grab; }
.screens-track.dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  user-select: none;
}
.screen img {
  -webkit-user-drag: none;
  user-select: none;
}
.screens-track::-webkit-scrollbar { height: 8px; }
.screens-track::-webkit-scrollbar-thumb { background: var(--blue-soft2); border-radius: 999px; }
.screen {
  flex: 0 0 auto;
  width: 208px;
  margin: 0;
  scroll-snap-align: center;
  text-align: center;
}
.screen img {
  width: 100%;
  border-radius: 24px;
  border: 6px solid #fff;
  box-shadow: 0 16px 38px rgba(39,46,146,.16);
  background: #fff;
}
.screen figcaption {
  margin-top: 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.6;
}

/* ---------------- About ---------------- */
.about {
  background: linear-gradient(180deg, var(--bg-top) 0%, var(--pink-soft) 100%);
  padding: 80px 0;
}
.about-inner {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 48px;
  align-items: center;
}
.about-visual { display: flex; justify-content: center; }
.about-moca {
  width: 220px;
  filter: drop-shadow(0 16px 30px rgba(39,46,146,.18));
}
.about .section-eyebrow,
.about .section-title { text-align: left; }
.about .section-title { margin-bottom: 18px; }
.about-copy p { font-size: 16px; margin: 0; }

/* ---------------- Download ---------------- */
.download {
  padding: 88px 0;
  background:
    radial-gradient(700px 400px at 50% 120%, var(--pink-soft), rgba(255,235,252,0) 70%),
    var(--white);
}
.download-inner { text-align: center; }
.download-title { margin-bottom: 14px; }
.download-lead { margin: 0 0 32px; font-size: 16px; }

/* ---------------- Footer ---------------- */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.86);
  padding: 48px 0 36px;
}
.footer-inner { text-align: center; }
.footer-logo {
  height: 22px;
  width: auto;
  margin: 0 auto 16px;
  filter: brightness(0) invert(1);
}
.footer-company { font-weight: 700; margin: 0 0 4px; color: var(--white); }
.footer-address { font-size: 13px; margin: 0 0 22px; color: rgba(255,255,255,.7); }
.footer-links {
  display: flex;
  gap: 28px;
  justify-content: center;
  margin-bottom: 22px;
}
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,.9);
  border-bottom: 1px solid transparent;
  transition: border-color .15s ease;
}
.footer-links a:hover { border-bottom-color: var(--pink); }
.copyright { font-size: 12px; color: rgba(255,255,255,.6); margin: 0; }

/* ---------------- Responsive ---------------- */
@media (max-width: 820px) {
  .pc-only { display: none; }

  .hero { padding: 56px 0 64px; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { order: 2; }
  .hero-visual { order: 1; margin-bottom: 8px; }
  .store-badges { justify-content: center; }
  .hero-title { font-size: 32px; }
  .hero-icon-wrap { width: 180px; height: 180px; }
  .hero-icon { width: 140px; height: 140px; border-radius: 32px; }

  .features { padding: 60px 0; }
  .feature-grid { grid-template-columns: 1fr; gap: 18px; }
  .section-title { font-size: 24px; margin-bottom: 32px; }

  .about { padding: 60px 0; }
  .about-inner { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .about .section-eyebrow,
  .about .section-title { text-align: center; }
  .about-moca { width: 170px; }

  .download { padding: 64px 0; }
  .footer-links { flex-direction: column; gap: 12px; }
}

@media (max-width: 420px) {
  .badge-img { height: 46px; }
  .hero-title { font-size: 27px; }
  .header-dl-btn { padding: 9px 16px; font-size: 13px; }
}
