/* ============================================
   りくまま LP — Libecity-inspired pop style
============================================ */

:root {
  --pop-bg: #fffdf5;
  --pop-bg-2: #fff8e6;
  --pop-bg-card: #ffffff;
  --pop-ink: #1a2332;
  --pop-ink-2: #4a5568;
  --pop-ink-3: #8a96a8;
  --pop-line: #e8e2d0;

  --pop-green: #2bb673;
  --pop-green-dark: #229957;
  --pop-yellow: #ffd84a;
  --pop-orange: #ff8a3d;
  --pop-terracotta: #d96c4a;
  --pop-terracotta-dark: #a84a30;
  /* 3色構成に統一: pink/blue/purple は廃止し、yellow/orange/green にエイリアス */
  --pop-pink: var(--pop-orange);
  --pop-blue: var(--pop-green);
  --pop-purple: var(--pop-yellow);

  --pop-rounded: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "M PLUS Rounded 1c", sans-serif;
  --pop-sans: "Noto Sans JP", "Hiragino Sans", sans-serif;
  --pop-display: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", sans-serif;

  --pop-shadow: 0 4px 0 rgba(26, 35, 50, 0.08);
  --pop-shadow-pop: 0 6px 0 #1a2332;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body.pop-style {
  font-family: var(--pop-sans);
  color: var(--pop-ink);
  background: var(--pop-bg);
  font-size: 16px;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt";
}
.pop-style a { color: inherit; text-decoration: none; }
.pop-style button { font-family: inherit; cursor: pointer; }
.pop-style img { max-width: 100%; display: block; }

/* dotted bg pattern */
.pop-style {
  background-image:
    radial-gradient(circle at 1px 1px, rgba(43, 182, 115, 0.07) 1px, transparent 0);
  background-size: 24px 24px;
}

.pop-style h1, .pop-style h2, .pop-style h3, .pop-style h4 {
  font-family: var(--pop-display);
  font-weight: 700;
  letter-spacing: 0.02em;
  margin: 0;
  line-height: 1.4;
}

.pop-container { width: min(1100px, 92vw); margin: 0 auto; }
.pop-container-narrow { width: min(820px, 92vw); margin: 0 auto; }

/* ─── Buttons ─── */
.pop-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 999px;
  border: 2px solid var(--pop-ink);
  font-size: 15px;
  font-weight: 700;
  font-family: var(--pop-display);
  letter-spacing: 0.02em;
  transition: transform .15s ease, box-shadow .15s ease;
  position: relative;
}
.pop-btn-primary {
  background: var(--pop-yellow);
  color: var(--pop-ink);
  border-color: var(--pop-ink);
  box-shadow: 0 6px 0 var(--pop-ink);
}
.pop-btn-primary:hover { transform: translateY(2px); box-shadow: 0 3px 0 var(--pop-ink); }
.pop-btn-primary:active { transform: translateY(5px); box-shadow: 0 0 0 var(--pop-ink); }
.pop-btn-yellow {
  background: var(--pop-yellow);
  color: var(--pop-ink);
  box-shadow: 0 5px 0 #c9a200;
  border-color: #c9a200;
}
.pop-btn-yellow:hover { transform: translateY(2px); box-shadow: 0 3px 0 #c9a200; }
.pop-btn-yellow:active { transform: translateY(5px); box-shadow: 0 0 0 #c9a200; }
.pop-btn-ghost {
  background: #fff;
  color: var(--pop-ink);
  box-shadow: 0 5px 0 var(--pop-ink);
}
.pop-btn-ghost:hover { transform: translateY(2px); box-shadow: 0 3px 0 var(--pop-ink); }
.pop-btn-ghost:active { transform: translateY(5px); box-shadow: 0 0 0 var(--pop-ink); }

.pop-arrow { transition: transform .2s; }
.pop-btn:hover .pop-arrow { transform: translateX(3px); }

/* ─── Nav ─── */
.pop-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 14px 0;
  background: rgba(255, 253, 245, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid transparent;
  transition: border-color .3s;
}
.pop-nav.scrolled { border-bottom-color: var(--pop-line); }
.pop-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pop-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--pop-display);
  font-weight: 700;
  font-size: 19px;
}
.pop-logo-mark {
  width: 38px; height: 38px;
  background: var(--pop-green);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  border: 2px solid var(--pop-ink);
  box-shadow: 0 3px 0 var(--pop-ink);
  overflow: hidden;
}
.pop-logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pop-logo-sub {
  font-size: 11px;
  color: var(--pop-ink-3);
  font-weight: 500;
}
.pop-nav-links {
  display: flex;
  gap: 26px;
  font-size: 13px;
  font-weight: 600;
  color: var(--pop-ink-2);
}
.pop-nav-links a:hover { color: var(--pop-green); }
@media (max-width: 820px) { .pop-nav-links { display: none; } }

.pop-nav-cta {
  padding: 10px 20px;
  font-size: 13px;
}
@media (max-width: 540px) { .pop-nav-cta { display: none; } }

/* ─── Hero ─── */
.pop-hero {
  padding: 130px 0 90px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.pop-hero::before {
  content: "";
  position: absolute;
  top: 80px; right: -120px;
  width: 320px; height: 320px;
  background: var(--pop-yellow);
  border-radius: 50%;
  opacity: 0.35;
  z-index: 0;
}
.pop-hero::after {
  content: "";
  position: absolute;
  bottom: -60px; left: -100px;
  width: 240px; height: 240px;
  background: var(--pop-green);
  border-radius: 50%;
  opacity: 0.15;
  z-index: 0;
}
.pop-hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 920px) {
  .pop-hero-grid { grid-template-columns: 1fr; gap: 50px; }
}

.pop-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 2px solid var(--pop-ink);
  padding: 8px 16px;
  border-radius: 999px;
  font-family: var(--pop-display);
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 3px 0 var(--pop-ink);
  margin-bottom: 24px;
}
.pop-hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--pop-green);
  border-radius: 50%;
}
.pop-hero h1 {
  font-size: clamp(26px, 3.4vw, 44px);
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.pop-hero h1 .pop-marker {
  padding: 0;
}
.pop-hero h1 .pop-emph {
  color: var(--pop-green);
  position: relative;
}
.pop-hero h1 .pop-emph::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -4px;
  height: 4px;
  background: var(--pop-yellow);
  border-radius: 2px;
}

.pop-hero-lede {
  margin: 28px 0 32px;
  font-size: 15px;
  color: var(--pop-ink-2);
  line-height: 1.95;
  max-width: 520px;
}

.pop-hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.pop-hero-cta-note {
  font-size: 12px;
  color: var(--pop-ink-3);
  font-weight: 600;
}

.pop-hero-genres {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pop-genre-chip {
  font-size: 12px;
  font-weight: 700;
  padding: 7px 14px;
  background: #fff;
  border: 1.5px solid var(--pop-ink);
  border-radius: 999px;
  color: var(--pop-ink);
  font-family: var(--pop-display);
}
.pop-genre-chip:nth-child(1) { background: #fff5cc; border-color: var(--pop-ink); }
.pop-genre-chip:nth-child(2) { background: #fff5cc; border-color: var(--pop-ink); }
.pop-genre-chip:nth-child(3) { background: #fff5cc; border-color: var(--pop-ink); }
.pop-genre-chip:nth-child(4) { background: #fff5cc; border-color: var(--pop-ink); }
.pop-genre-chip:nth-child(5) { background: #fff5cc; border-color: var(--pop-ink); }
.pop-genre-chip:nth-child(6) { background: #fff5cc; border-color: var(--pop-ink); }

/* hero illustration */
.pop-hero-visual {
  position: relative;
  aspect-ratio: 1;
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
}
.pop-blob {
  position: absolute;
  inset: 8% 8% 8% 8%;
  background: var(--pop-bg-card);
  border: 3px solid var(--pop-ink);
  border-radius: 50% 48% 52% 50% / 50% 52% 48% 50%;
  box-shadow: 8px 8px 0 var(--pop-ink);
  overflow: hidden;
}
.pop-blob img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pop-sticker {
  position: absolute;
  background: #fff;
  border: 2px solid var(--pop-ink);
  border-radius: 14px;
  padding: 10px 16px;
  box-shadow: 4px 4px 0 var(--pop-ink);
  font-family: var(--pop-display);
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.pop-sticker.s1 { top: 10%; left: -8%; background: var(--pop-yellow); transform: rotate(-6deg); }
.pop-sticker.s2 { top: 45%; right: -6%; background: var(--pop-green); color: #fff; border-color: #1a4d2e; box-shadow: 4px 4px 0 #1a4d2e; transform: rotate(4deg); }
.pop-sticker.s3 { bottom: 8%; left: 4%; background: var(--pop-orange); color: #fff; border-color: #c45a18; box-shadow: 4px 4px 0 #c45a18; transform: rotate(-3deg); }
.pop-sticker .ico {
  width: 22px; height: 22px;
  display: grid; place-items: center;
  font-size: 14px;
}
.pop-sticker .num {
  font-size: 18px;
  line-height: 1;
}
.pop-sticker .lbl {
  font-size: 10px;
  opacity: 0.85;
}

/* ─── Section frame ─── */
.pop-section { padding: 100px 0; position: relative; }
.pop-section-head {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}
.pop-section-eyebrow {
  display: inline-block;
  font-family: var(--pop-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--pop-green);
  background: #d4f4e1;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}
.pop-section-head h2 {
  font-size: clamp(28px, 4.4vw, 44px);
  line-height: 1.4;
}
.pop-section-head h2 .pop-marker {
  padding: 0;
}
.pop-section-head h2 .pop-emph { color: var(--pop-green); }
.pop-section-desc {
  margin-top: 20px;
  font-size: 15px;
  color: var(--pop-ink-2);
  line-height: 1.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── Pains ─── */
.pop-pains {
  background: var(--pop-bg-2);
  position: relative;
}
.pop-pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 820px) { .pop-pain-grid { grid-template-columns: 1fr; } }
.pop-pain-card {
  background: #fff;
  border: 2px solid var(--pop-ink);
  border-radius: 18px;
  padding: 32px 26px;
  position: relative;
  box-shadow: 5px 5px 0 var(--pop-ink);
  transition: transform .15s, box-shadow .15s;
}
.pop-pain-card:hover { transform: translate(2px, 2px); box-shadow: 3px 3px 0 var(--pop-ink); }
.pop-pain-illust {
  margin-bottom: 16px;
  background: var(--pop-yellow);
  width: 88px;
  height: 72px;
  border-radius: 14px;
  border: 3px solid var(--pop-ink);
  display: grid;
  place-items: center;
  padding: 6px;
  box-shadow: 3px 3px 0 var(--pop-ink);
}
.pop-pain-illust svg {
  width: 100%;
  height: 100%;
  display: block;
}
.pop-pain-card h3 {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 12px;
}
.pop-pain-card p {
  font-size: 13px;
  color: var(--pop-ink-2);
  line-height: 1.95;
  margin: 0;
}

/* arrow down between sections */
.pop-arrow-down {
  text-align: center;
  margin: 0 auto;
  padding: 0 0 30px;
  font-size: 32px;
  color: var(--pop-green);
}

/* ─── Reasons ─── */
.pop-reasons { background: var(--pop-bg); }
.pop-reason-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 820px) { .pop-reason-grid { grid-template-columns: 1fr; } }
.pop-reason-card {
  background: #fff;
  border: 2px solid var(--pop-ink);
  border-radius: 20px;
  padding: 36px 28px;
  position: relative;
  box-shadow: 5px 5px 0 var(--pop-ink);
}
.pop-reason-card:nth-child(1) { background: linear-gradient(180deg, #fff 0%, #fff 50%, #d4f4e1 50%, #d4f4e1 100%); }
.pop-reason-card:nth-child(2) { background: linear-gradient(180deg, #fff 0%, #fff 50%, #fff5cc 50%, #fff5cc 100%); }
.pop-reason-card:nth-child(3) { background: linear-gradient(180deg, #fff 0%, #fff 50%, #ffe0d0 50%, #ffe0d0 100%); }
.pop-reason-card { display: flex; flex-direction: column; }
.pop-reason-card h3 {
  min-height: 3em;
}
.pop-reason-tag {
  position: absolute;
  top: -16px;
  left: 24px;
  background: var(--pop-ink);
  color: #fff;
  font-family: var(--pop-display);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  letter-spacing: 0.06em;
}
.pop-reason-card:nth-child(1) .pop-reason-tag { background: var(--pop-green); }
.pop-reason-card:nth-child(2) .pop-reason-tag { background: var(--pop-orange); }
.pop-reason-card:nth-child(3) .pop-reason-tag { background: var(--pop-pink); }
.pop-reason-num {
  font-family: var(--pop-display);
  font-size: 64px;
  color: var(--pop-ink);
  line-height: 1;
  margin: 14px 0 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.pop-reason-card h3 {
  font-size: 20px;
  margin-bottom: 14px;
  line-height: 1.5;
}
.pop-reason-card p {
  font-size: 13px;
  color: var(--pop-ink-2);
  line-height: 1.95;
  margin: 0;
  min-height: 100px;
}

/* ─── Profile ─── */
.pop-profile {
  background: var(--pop-bg-2);
  position: relative;
  overflow: hidden;
}
.pop-profile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 820px) { .pop-profile-grid { grid-template-columns: 1fr; gap: 40px; } }

.pop-profile-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  margin-bottom: 60px;
}
@media (max-width: 720px) {
  .pop-profile-header { flex-direction: column; align-items: flex-start; gap: 24px; }
}
.pop-profile-avatar {
  width: 180px;
  height: 180px;
  position: absolute;
  top: -40px;
  left: -30px;
  border-radius: 50%;
  border: 4px solid var(--pop-ink);
  box-shadow: 6px 6px 0 var(--pop-yellow), 6px 6px 0 4px var(--pop-ink);
  overflow: hidden;
  background: #fff8d8;
  z-index: 2;
}
@media (max-width: 720px) {
  .pop-profile-avatar { width: 130px; height: 130px; top: -30px; left: -10px; }
}
.pop-profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pop-profile-text {
  background: #fff;
  border: 2px solid var(--pop-ink);
  border-radius: 20px;
  padding: 36px;
  box-shadow: 5px 5px 0 var(--pop-ink);
  position: relative;
}
.pop-profile-text p {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 2;
  color: var(--pop-ink-2);
}
@media (max-width: 720px) {
  .pop-profile-text { padding-top: 110px; }
  .pop-profile-avatar-shape { display: none; }
}
.pop-profile-avatar-shape {
  float: left;
  width: 170px;
  height: 160px;
  margin: -10px 24px 8px -10px;
  shape-outside: circle(50%);
  -webkit-shape-outside: circle(50%);
}
.pop-profile-text p strong {
  background: linear-gradient(transparent 60%, var(--pop-yellow) 60%);
  font-weight: 700;
  color: var(--pop-ink);
}
.pop-profile-card {
  background: #fff;
  border: 2px solid var(--pop-ink);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 5px 5px 0 var(--pop-ink);
}
.pop-profile-card h4 {
  font-size: 17px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 2px dashed var(--pop-line);
}

/* info cards (稼働 / ジャンル / ツール) */
.pop-info-card {
  background: #fff;
  border: 2px solid var(--pop-ink);
  border-radius: 18px;
  padding: 24px 26px;
  box-shadow: 5px 5px 0 var(--pop-ink);
}
.pop-info-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 2px dashed var(--pop-line);
}
.pop-info-ico {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2px solid var(--pop-ink);
  display: grid;
  place-items: center;
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
}
.pop-info-head h4 {
  font-size: 17px;
  margin: 0;
  padding: 0;
  border: 0;
}
.pop-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pop-info-list li {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 14px;
  padding: 9px 0;
  border-bottom: 1px dashed var(--pop-line);
  font-size: 13px;
  color: var(--pop-ink-2);
  line-height: 1.7;
}
.pop-info-list li:last-child { border-bottom: 0; }
.pop-info-list .k {
  font-family: var(--pop-display);
  font-size: 11px;
  font-weight: 800;
  color: var(--pop-green);
  letter-spacing: 0.06em;
  padding-top: 3px;
}
.pop-info-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.pop-info-tag {
  font-family: var(--pop-display);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  background: var(--pop-bg-2);
  border: 2px solid var(--pop-line);
  border-radius: 999px;
  color: var(--pop-ink-2);
}
.pop-info-tag.pop-tag-green { background: #d4f4e1; border-color: var(--pop-green-dark); color: #1a4d2e; }
.pop-info-tag.pop-tag-yellow { background: var(--pop-yellow); border-color: #c9a200; color: var(--pop-ink); }
.pop-info-tag.pop-tag-orange { background: #ffe0d0; border-color: var(--pop-orange); color: #b04a10; }
.pop-info-tag.pop-tag-pink { background: #ffe0d0; border-color: var(--pop-orange); color: #b04a10; }
.pop-info-tag.pop-tag-blue { background: #d4f4e1; border-color: var(--pop-green-dark); color: #1a4d2e; }
.pop-info-tag.pop-tag-purple { background: var(--pop-yellow); border-color: #c9a200; color: var(--pop-ink); }
.pop-about-list { list-style: none; padding: 0; margin: 0; }
.pop-about-list li {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px dashed var(--pop-line);
  font-size: 13px;
  color: var(--pop-ink-2);
  line-height: 1.7;
}
.pop-about-list li:last-child { border-bottom: 0; }
.pop-about-list .k {
  font-family: var(--pop-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--pop-green);
  padding-top: 4px;
  letter-spacing: 0.04em;
}

/* ─── Services ─── */
.pop-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 820px) { .pop-services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .pop-services-grid { grid-template-columns: 1fr; } }
.pop-service {
  background: #fff;
  border: 2px solid var(--pop-ink);
  border-radius: 18px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 4px 4px 0 var(--pop-ink);
  transition: transform .15s, box-shadow .15s;
}
.pop-service:hover { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--pop-ink); }
.pop-service-emoji {
  font-size: 28px;
  width: 68px; height: 68px;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 2px solid var(--pop-ink);
}
.pop-service:nth-child(1) .pop-service-emoji { background: var(--pop-yellow); }
.pop-service:nth-child(2) .pop-service-emoji { background: #d4f4e1; }
.pop-service:nth-child(3) .pop-service-emoji { background: #ffe0d0; }
.pop-service:nth-child(4) .pop-service-emoji { background: #fff5cc; }
.pop-service:nth-child(5) .pop-service-emoji { background: #d4f4e1; }
.pop-service:nth-child(6) .pop-service-emoji { background: #ffe0d0; }
.pop-service h3 {
  font-size: 18px;
  margin-bottom: 10px;
}
.pop-service p {
  font-size: 13px;
  color: var(--pop-ink-2);
  line-height: 1.85;
  margin: 0 0 16px;
  text-align: left;
}
.pop-service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: center;
}
.pop-service-tag {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  background: var(--pop-bg-2);
  border-radius: 999px;
  color: var(--pop-ink-2);
}

/* ─── Works ─── */
.pop-works {
  background: var(--pop-bg);
}
.pop-works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 820px) { .pop-works-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .pop-works-grid { grid-template-columns: 1fr; } }
.pop-work {
  background: #fff;
  border: 2px solid var(--pop-ink);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 5px 5px 0 var(--pop-ink);
  transition: transform .15s, box-shadow .15s;
}
.pop-work:hover { transform: translate(2px, 2px); box-shadow: 3px 3px 0 var(--pop-ink); }

/* Article link cards */
.pop-work-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.pop-work-link:hover { transform: translate(-2px, -2px); box-shadow: 9px 9px 0 var(--pop-ink); }
.pop-work-link:hover .pop-work-arrow { background: var(--pop-orange); transform: translateX(4px); }
.pop-work-thumb-illust {
  background: var(--pop-yellow) !important;
}
.pop-work-thumb-illust svg {
  width: 75%;
  height: 75%;
  display: block;
}
.pop-work-link-row {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 2px dashed var(--pop-line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
.pop-work-domain {
  font-size: 11px;
  font-weight: 700;
  color: var(--pop-ink-2);
  font-family: var(--pop-display);
  letter-spacing: 0.02em;
  word-break: break-all;
}
.pop-work-arrow {
  font-size: 11px;
  font-weight: 800;
  font-family: var(--pop-display);
  background: var(--pop-green);
  color: #fff;
  padding: 5px 11px;
  border-radius: 999px;
  border: 2px solid var(--pop-ink);
  box-shadow: 2px 2px 0 var(--pop-ink);
  white-space: nowrap;
  transition: transform 0.18s ease, background 0.18s ease;
}
.pop-work-thumb {
  aspect-ratio: 16/10;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 22px;
  font-family: var(--pop-display);
  font-weight: 700;
  font-size: 19px;
  line-height: 1.45;
  color: var(--pop-ink);
  position: relative;
}
.pop-work:nth-child(3n+1) .pop-work-thumb { background: linear-gradient(135deg, #fff5cc, #ffe69d); }
.pop-work:nth-child(3n+2) .pop-work-thumb { background: linear-gradient(135deg, #d4f4e1, #a8e6c1); }
.pop-work:nth-child(3n+3) .pop-work-thumb { background: linear-gradient(135deg, #ffe0d0, #ffc6a3); }
.pop-work-thumb::after {
  content: "";
  position: absolute;
  top: 12px; right: 12px;
  width: 18px; height: 18px;
  background: #fff;
  border: 2px solid var(--pop-ink);
  border-radius: 50%;
}
.pop-work-meta {
  padding: 22px 24px 24px;
}
.pop-work-cat {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  background: var(--pop-green);
  color: #fff;
  border-radius: 999px;
  margin-bottom: 12px;
  font-family: var(--pop-display);
  letter-spacing: 0.04em;
}
.pop-work-meta h4 {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 12px;
}
.pop-work-client {
  font-size: 12px;
  color: var(--pop-ink-3);
  font-weight: 600;
  margin-bottom: 12px;
}
.pop-work-scope {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.pop-scope-tag {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  background: var(--pop-bg-2);
  border: 1px solid var(--pop-line);
  border-radius: 999px;
  color: var(--pop-ink-2);
}
.pop-work-result {
  margin-top: 12px;
  padding: 10px 12px;
  background: linear-gradient(180deg, #fff8d8, #fff1b8);
  border: 2px solid var(--pop-ink);
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 2px 2px 0 var(--pop-ink);
}
.pop-result-label {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 800;
  background: var(--pop-green);
  color: #fff;
  padding: 3px 10px;
  border-radius: 999px;
  letter-spacing: 0.05em;
}
.pop-result-text {
  font-size: 13px;
  font-weight: 700;
  color: var(--pop-ink);
  line-height: 1.4;
}

.pop-other-works {
  margin-top: 60px;
}
.pop-other-title {
  font-size: 22px;
  text-align: center;
  margin-bottom: 72px;
}
.pop-other-title::before, .pop-other-title::after {
  content: "✎";
  margin: 0 12px;
  color: var(--pop-orange);
}
.pop-other-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 820px) { .pop-other-list { grid-template-columns: 1fr; } }
.pop-other-item {
  background: #fff;
  border: 2px solid var(--pop-ink);
  border-radius: 14px;
  padding: 22px;
  box-shadow: 4px 4px 0 var(--pop-ink);
}
.pop-other-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.pop-other-cat {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--pop-yellow);
  font-family: var(--pop-display);
}
.pop-other-length {
  font-size: 11px;
  color: var(--pop-ink-3);
  font-weight: 700;
}
.pop-other-client {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
}
.pop-other-text {
  font-size: 13px;
  color: var(--pop-ink-2);
  line-height: 1.7;
  margin: 0 0 12px;
}

/* ─── Numbers ─── */
.pop-numbers {
  background: var(--pop-green);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.pop-numbers::before {
  content: "";
  position: absolute;
  top: -80px; right: -80px;
  width: 200px; height: 200px;
  background: var(--pop-yellow);
  border-radius: 50%;
  opacity: 0.3;
}
.pop-numbers .pop-section-eyebrow {
  background: rgba(255,255,255,0.2);
  color: #fff;
}
.pop-numbers .pop-section-head h2 { color: #fff; }
.pop-numbers .pop-section-desc { color: rgba(255,255,255,0.85); }
.pop-numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative;
  z-index: 1;
}
@media (max-width: 820px) { .pop-numbers-grid { grid-template-columns: repeat(2, 1fr); } }
.pop-stat {
  background: #fff;
  color: var(--pop-ink);
  border-radius: 18px;
  padding: 30px 26px;
  text-align: center;
  border: 2px solid var(--pop-ink);
  box-shadow: 5px 5px 0 #1a4d2e;
}
.pop-stat .num {
  font-family: var(--pop-display);
  font-size: 56px;
  line-height: 1;
  font-weight: 700;
  color: var(--pop-green);
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: baseline;
}
.pop-stat .num .unit {
  font-size: 18px;
  margin-left: 4px;
  color: var(--pop-ink-2);
}
.pop-stat .lbl {
  font-family: var(--pop-display);
  font-size: 11px;
  font-weight: 700;
  margin-top: 12px;
  color: var(--pop-orange);
  letter-spacing: 0.06em;
}
.pop-stat .desc-sm {
  font-size: 12px;
  color: var(--pop-ink-2);
  margin-top: 8px;
  line-height: 1.7;
}

/* ─── Pricing ─── */
.pop-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
@media (max-width: 820px) { .pop-pricing-grid { grid-template-columns: 1fr; } }
.pop-plan {
  background: #fff;
  border: 2px solid var(--pop-ink);
  border-radius: 22px;
  padding: 36px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 5px 5px 0 var(--pop-ink);
}
.pop-plan.featured {
  background: linear-gradient(180deg, #fff5cc 0%, #fff 50%);
  border-color: var(--pop-orange);
  box-shadow: 5px 5px 0 var(--pop-orange);
  transform: translateY(-12px);
}
.pop-plan-tag {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--pop-orange);
  color: #fff;
  font-family: var(--pop-display);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 999px;
  border: 2px solid var(--pop-ink);
  white-space: nowrap;
}
.pop-plan h3 {
  font-size: 20px;
  margin-bottom: 8px;
}
.pop-plan-desc {
  font-size: 13px;
  color: var(--pop-ink-2);
  line-height: 1.85;
  margin-bottom: 24px;
  min-height: 50px;
}
.pop-plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
  font-family: var(--pop-display);
  font-weight: 700;
}
.pop-plan-price .yen {
  font-size: 22px;
  color: var(--pop-ink-2);
}
.pop-plan-price .num {
  font-size: 48px;
  color: var(--pop-green);
  line-height: 1;
}
.pop-plan-price .unit {
  font-size: 14px;
  color: var(--pop-ink-2);
}
.pop-plan-from {
  font-size: 12px;
  color: var(--pop-ink-3);
  margin-bottom: 22px;
  font-weight: 600;
}
.pop-plan ul {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  flex: 1;
}
.pop-plan li {
  padding: 9px 0 9px 26px;
  font-size: 13px;
  color: var(--pop-ink-2);
  position: relative;
  border-bottom: 1px dashed var(--pop-line);
  line-height: 1.6;
}
.pop-plan li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 9px;
  width: 18px; height: 18px;
  background: var(--pop-green);
  color: #fff;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  display: grid;
  place-items: center;
}
.pop-plan .pop-btn { width: 100%; justify-content: center; }
.pop-pricing-note {
  margin-top: 36px;
  text-align: center;
  font-size: 12px;
  color: var(--pop-ink-3);
  font-weight: 600;
}

/* ─── Voice ─── */
.pop-voice {
  background: var(--pop-bg-2);
}
.pop-voice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
@media (max-width: 820px) { .pop-voice-grid { grid-template-columns: 1fr; } }
.pop-testimonial {
  background: #fff;
  border: 2px solid var(--pop-ink);
  border-radius: 18px;
  padding: 30px;
  box-shadow: 5px 5px 0 var(--pop-ink);
  position: relative;
}
.pop-testimonial::before {
  content: "“";
  position: absolute;
  top: -18px; left: 24px;
  background: var(--pop-yellow);
  border: 2px solid var(--pop-ink);
  width: 48px; height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--pop-display);
  font-size: 36px;
  line-height: 1;
  color: var(--pop-ink);
}
.pop-stars {
  color: var(--pop-orange);
  font-size: 16px;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  margin-top: 8px;
}
.pop-quote {
  font-family: var(--pop-display);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.85;
  color: var(--pop-ink);
  margin: 0 0 22px;
}
.pop-who {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px dashed var(--pop-line);
}
.pop-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--pop-green);
  color: #fff;
  border: 2px solid var(--pop-ink);
  display: grid;
  place-items: center;
  font-family: var(--pop-display);
  font-weight: 700;
}
.pop-who-name {
  font-size: 14px;
  font-weight: 700;
}
.pop-who-role {
  font-size: 11px;
  color: var(--pop-ink-3);
  font-weight: 600;
}

/* ─── Process ─── */
.pop-process-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  position: relative;
}
@media (max-width: 920px) { .pop-process-list { grid-template-columns: 1fr; gap: 16px; } }
.pop-process-step {
  background: #fff;
  border: 2px solid var(--pop-ink);
  border-radius: 16px;
  padding: 22px 18px 24px;
  position: relative;
  box-shadow: 4px 4px 0 var(--pop-ink);
  text-align: center;
}
.pop-process-step:not(:last-child)::after {
  content: "▶";
  position: absolute;
  top: 50%;
  right: -16px;
  transform: translateY(-50%);
  color: var(--pop-green);
  font-size: 18px;
  z-index: 2;
}
@media (max-width: 920px) {
  .pop-process-step:not(:last-child)::after {
    top: auto;
    bottom: -22px;
    right: 50%;
    transform: translateX(50%) rotate(90deg);
  }
}
.pop-step-num-circle {
  width: 44px; height: 44px;
  background: var(--pop-green);
  color: #fff;
  border-radius: 50%;
  font-family: var(--pop-display);
  font-weight: 700;
  font-size: 17px;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  border: 2px solid var(--pop-ink);
}
.pop-process-step h4 {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 10px;
}
.pop-process-step p {
  font-size: 12px;
  color: var(--pop-ink-2);
  line-height: 1.75;
  margin: 0;
}

/* ─── FAQ ─── */
.pop-faq { background: var(--pop-bg-2); }
.pop-faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pop-faq-item {
  background: #fff;
  border: 2px solid var(--pop-ink);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 4px 4px 0 var(--pop-ink);
}
.pop-faq-q {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 22px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--pop-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--pop-ink);
  text-align: left;
}
.pop-q-mark {
  width: 32px; height: 32px;
  background: var(--pop-orange);
  color: #fff;
  border-radius: 50%;
  font-family: var(--pop-display);
  font-weight: 700;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border: 2px solid var(--pop-ink);
}
.pop-faq-q-text { flex: 1; }
.pop-faq-icon {
  width: 32px; height: 32px;
  border: 2px solid var(--pop-ink);
  border-radius: 50%;
  background: var(--pop-yellow);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-weight: 700;
  font-size: 16px;
  transition: transform .25s, background .25s;
}
.pop-faq-item.open .pop-faq-icon {
  background: var(--pop-green);
  color: #fff;
  transform: rotate(45deg);
}
.pop-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.pop-faq-item.open .pop-faq-a { max-height: 400px; }
.pop-faq-a-inner {
  padding: 0 26px 24px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: var(--pop-ink-2);
  font-size: 14px;
  line-height: 1.95;
}
.pop-a-mark {
  width: 32px; height: 32px;
  background: var(--pop-green);
  color: #fff;
  border-radius: 50%;
  font-family: var(--pop-display);
  font-weight: 700;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border: 2px solid var(--pop-ink);
}

/* ─── CTA ─── */
.pop-cta {
  padding: 90px 0;
  position: relative;
  overflow: hidden;
  background: var(--pop-yellow);
}
.pop-cta::before {
  content: "";
  position: absolute;
  inset: 30px;
  background: var(--pop-bg-card);
  border: 3px solid var(--pop-ink);
  border-radius: 28px;
  box-shadow: 8px 8px 0 var(--pop-ink);
  z-index: 0;
}
.pop-cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 30px 20px;
}
.pop-cta h2 {
  font-size: clamp(28px, 4.4vw, 44px);
  margin-bottom: 18px;
}
.pop-cta h2 .pop-marker {
  padding: 0;
}
.pop-cta p {
  color: var(--pop-ink-2);
  margin: 0 auto 32px;
  max-width: 540px;
  font-size: 15px;
  line-height: 1.95;
}
.pop-cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.pop-cta-note {
  margin-top: 32px;
  font-size: 12px;
  color: var(--pop-ink-3);
  font-weight: 600;
}

/* ─── Footer ─── */
.pop-footer {
  background: var(--pop-ink);
  color: rgba(255,255,255,0.85);
  padding: 60px 0 30px;
}
.pop-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
@media (max-width: 820px) { .pop-footer-grid { grid-template-columns: 1fr 1fr; } }
.pop-footer h5 {
  font-family: var(--pop-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--pop-yellow);
  margin: 0 0 16px;
}
.pop-footer-bio {
  font-size: 13px;
  line-height: 1.85;
  color: rgba(255,255,255,0.65);
  max-width: 320px;
}
.pop-footer-link {
  display: block;
  padding: 4px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  font-weight: 600;
}
.pop-footer-link:hover { color: var(--pop-yellow); }
.pop-footer-credits {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.pop-footer .pop-logo-mark { box-shadow: 0 3px 0 #fff3; border-color: #fff6; }
.pop-footer .pop-logo { color: #fff; }

/* reveal */
.pop-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}
.pop-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
