:root {
  --pink: #ff7bb3;
  --pink-strong: #ff5ea0;
  --pink-soft: #ffe2ef;
  --pink-pale: #fff6fb;
  --lavender: #b292f2;
  --blue: #9cddf8;
  --mint: #b7efd8;
  --yellow: #ffe7a8;
  --ink: #64496a;
  --muted: #8c7591;
  --line: #f3d6e4;
  --surface: #ffffff;
  --surface-soft: #fff8fc;
  --gradient-candy: linear-gradient(135deg, #ff72ae 0%, #ffa1c7 38%, #b593f0 100%);
  --shadow-sm: 0 12px 30px rgba(100, 65, 88, .08);
  --shadow-md: 0 24px 70px rgba(100, 65, 88, .13);
  --radius-sm: 18px;
  --radius-md: 28px;
  --radius-lg: 42px;
  --container: 1180px;
  --header-h: 82px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 20px); }
body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, #fffdfd 0%, #fff8fc 100%);
  font-family: "M PLUS Rounded 1c", "Zen Maru Gothic", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: .02em;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
::selection { color: #3d2b38; background: #ffd6e6; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  z-index: 5000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  color: #fff;
  background: var(--pink-strong);
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  border-bottom: 1px solid rgba(240, 213, 224, .75);
  background: rgba(255, 248, 252, .88);
  backdrop-filter: blur(18px);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 30px;
  min-height: var(--header-h);
}
.brand { display: block; width: 145px; flex: 0 0 auto; }
.brand img { width: 100%; }
.desktop-nav { display: flex; align-items: center; justify-content: center; gap: 25px; margin-left: auto; }
.desktop-nav a {
  position: relative;
  color: #bf4d8f;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--pink);
  transform: scaleX(0);
  transition: transform .2s ease;
}
.desktop-nav a:hover::after { transform: scaleX(1); }
.header-line,
.mobile-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 10px 17px;
  border-radius: 999px;
  color: #fff;
  background: #20c965;
  box-shadow: 0 12px 26px rgba(32, 201, 101, .24), 0 4px 0 rgba(17, 143, 69, .12);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}
.line-mark {
  display: inline-grid;
  place-items: center;
  min-width: 38px;
  height: 24px;
  padding: 0 6px;
  border-radius: 999px;
  color: #20b75d;
  background: #fff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: -.02em;
}
.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  padding: 10px;
  border: 0;
  border-radius: 50%;
  background: var(--pink-pale);
  cursor: pointer;
}
.menu-button span { display: block; width: 100%; height: 2px; margin: 5px 0; border-radius: 2px; background: var(--pink-strong); transition: .2s ease; }
.mobile-menu { border-top: 1px solid var(--line); background: rgba(255, 255, 255, .98); }
.mobile-menu-inner { display: grid; padding-block: 18px 26px; }
.mobile-menu-inner > a:not(.mobile-line) { padding: 15px 4px; border-bottom: 1px solid #f4e2e9; font-weight: 800; }
.mobile-line { margin-top: 20px; }

.hero {
  position: relative;
  padding: 44px 0 70px;
  background:
    radial-gradient(circle at 9% 22%, rgba(255, 174, 206, .46), transparent 24%),
    radial-gradient(circle at 90% 10%, rgba(189, 232, 255, .42), transparent 27%),
    radial-gradient(circle at 84% 78%, rgba(207, 189, 255, .28), transparent 20%),
    linear-gradient(180deg, #fff9fc 0%, #fffdfd 100%);
}
.hero-visual {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(240, 213, 224, .92);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #ffffff 0%, #fffafe 100%);
  box-shadow: var(--shadow-md);
}
.hero-visual img { width: 100%; }
.hero-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 35px;
  margin: 26px auto 0;
  padding: 26px 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(255,245,251,.96));
  box-shadow: var(--shadow-sm);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  padding: 7px 13px;
  border-radius: 999px;
  color: var(--pink-strong);
  background: #fff1f7;
  box-shadow: inset 0 0 0 1px #ffd8e8;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
}
.hero-cta-title { margin: 0 0 4px; font-size: 23px; font-weight: 900; line-height: 1.45; }
.hero-cta-text { margin: 0; color: var(--muted); font-size: 14px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 56px;
  padding: 14px 23px;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-3px); }
.button-line { color: #fff; background: linear-gradient(135deg, #24d169, #16b95a); box-shadow: 0 14px 30px rgba(27, 187, 91, .23); }
.button-sub { color: var(--pink-strong); background: #fff; border: 1px solid #efc7d8; box-shadow: var(--shadow-sm); }
.button-arrow { font-size: 20px; line-height: 1; }
.button-large { min-height: 64px; padding-inline: 30px; }

.trust-strip { border-block: 1px solid #f2dfe7; background: #fff; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 122px;
  padding: 24px;
  border-right: 1px solid #f2dfe7;
}
.trust-item:first-child { border-left: 1px solid #f2dfe7; }
.trust-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  border-radius: 17px;
  color: var(--pink-strong);
  background: var(--pink-pale);
}
.trust-icon svg { width: 30px; fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.trust-item strong { display: block; font-size: 18px; font-weight: 900; line-height: 1.35; }
.trust-item small { display: block; margin-top: 3px; color: var(--muted); font-size: 11px; font-weight: 700; }

.section { padding: 108px 0; }
.section-tint { background: var(--surface-soft); }
.section-heading { max-width: 760px; margin: 0 auto 54px; text-align: center; }
.section-heading h2 { margin: 0; font-size: clamp(31px, 4vw, 50px); line-height: 1.35; font-weight: 900; letter-spacing: -.02em; }
.section-heading > p:last-child { margin: 18px 0 0; color: var(--muted); }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card {
  position: relative;
  min-height: 340px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: linear-gradient(180deg, #ffffff 0%, #fffafe 100%);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.feature-no { position: absolute; top: 25px; right: 28px; color: #e9cad8; font-size: 13px; font-weight: 900; letter-spacing: .12em; }
.feature-icon { display: grid; place-items: center; width: 86px; height: 86px; margin-bottom: 28px; border-radius: 27px; }
.feature-icon svg { width: 47px; fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.feature-icon-pink { color: var(--pink-strong); background: #fff0f6; }
.feature-icon-blue { color: #4dafda; background: #eef9ff; }
.feature-icon-purple { color: #876dd4; background: #f4f0ff; }
.feature-card h3 { margin: 0 0 11px; font-size: 22px; font-weight: 900; }
.feature-card p { margin: 0; color: var(--muted); font-size: 14px; }

.item-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.item-card { overflow: hidden; border: 1px solid var(--line); border-radius: 28px; background: #fff; box-shadow: var(--shadow-sm); transition: transform .22s ease, box-shadow .22s ease; }
.item-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.item-visual { background: #fff; }
.item-visual img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.item-content { padding: 22px 22px 25px; }
.item-label { display: inline-block; margin: 0 0 10px; padding: 5px 11px; border-radius: 999px; color: #fff; background: var(--pink); font-size: 10px; font-weight: 900; }
.item-label-blue { background: #61bfe8; }
.item-label-purple { background: #977edd; }
.item-label-mint { background: #4ebc94; }
.item-card h3 { margin: 0 0 8px; font-size: 20px; font-weight: 900; }
.item-card p:last-child { margin: 0; color: var(--muted); font-size: 13px; }
.center-action { margin-top: 42px; text-align: center; }

.design-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.design-card { overflow: hidden; border: 1px solid var(--line); border-radius: 28px; background: #fff; box-shadow: var(--shadow-sm); transition: transform .22s ease, box-shadow .22s ease; }
.design-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.design-card img { width: 100%; aspect-ratio: 760 / 920; object-fit: cover; }
.design-meta { padding: 18px 20px 22px; }
.design-meta span { color: var(--pink-strong); font-size: 9px; font-weight: 900; letter-spacing: .14em; }
.design-meta h3 { margin: 3px 0 0; font-size: 18px; font-weight: 900; }
.design-note { display: flex; align-items: center; gap: 18px; max-width: 760px; margin: 44px auto 0; padding: 22px 26px; border: 1px solid #f1cddd; border-radius: 24px; background: #fff8fb; }
.design-note-icon { display: grid; place-items: center; width: 52px; height: 52px; flex: 0 0 auto; border-radius: 18px; color: var(--pink-strong); background: #fff; box-shadow: var(--shadow-sm); font-size: 22px; }
.design-note p { margin: 0; color: var(--muted); }
.design-note strong { color: var(--ink); }

.flow-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.flow-list::before {
  content: "";
  position: absolute;
  top: 28px;
  right: 12.5%;
  left: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, #f1bfd4, #dcd0fa, #bde5f6, #b9ead7);
}
.flow-step { position: relative; z-index: 1; }
.flow-marker { display: grid; place-items: center; width: 56px; height: 56px; margin: 0 auto 20px; border: 8px solid var(--surface-soft); border-radius: 50%; background: var(--pink-strong); box-shadow: 0 8px 18px rgba(246, 79, 146, .22); }
.flow-step:nth-child(2) .flow-marker { background: #967cdb; }
.flow-step:nth-child(3) .flow-marker { background: #5ab9df; }
.flow-step:nth-child(4) .flow-marker { background: #4ab88f; }
.flow-marker span { color: #fff; font-size: 11px; font-weight: 900; }
.flow-card { min-height: 290px; padding: 30px 24px; border: 1px solid var(--line); border-radius: 28px; background: #fff; box-shadow: var(--shadow-sm); text-align: center; }
.flow-icon { display: grid; place-items: center; width: 78px; height: 78px; margin: 0 auto 22px; border-radius: 24px; color: var(--pink-strong); background: #fff1f7; }
.flow-step:nth-child(2) .flow-icon { color: #876bd4; background: #f4f0ff; }
.flow-step:nth-child(3) .flow-icon { color: #46aad3; background: #eff9fd; }
.flow-step:nth-child(4) .flow-icon { color: #3ba27d; background: #eefaf5; }
.flow-icon svg { width: 44px; fill: none; stroke: currentColor; stroke-width: 2.3; stroke-linecap: round; stroke-linejoin: round; }
.flow-card h3 { margin: 0 0 10px; font-size: 19px; font-weight: 900; }
.flow-card p { margin: 0; color: var(--muted); font-size: 13px; }
.flow-caption { margin: 30px 0 0; color: var(--muted); font-size: 12px; text-align: center; }

.sns-panel { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 58px; padding: 54px; border: 1px solid var(--line); border-radius: 38px; background: linear-gradient(135deg, #fff8fc, #f7f3ff); box-shadow: var(--shadow-md); }
.sns-visual img { width: 100%; }
.sns-content h2 { margin: 0 0 16px; font-size: clamp(32px, 4vw, 48px); line-height: 1.25; font-weight: 900; }
.sns-content h2 strong { color: var(--pink-strong); }
.sns-content > p:not(.eyebrow):not(.small-note) { color: var(--muted); }
.check-list { display: grid; gap: 10px; margin: 24px 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 29px; font-weight: 800; }
.check-list li::before { content: "✓"; position: absolute; left: 0; display: grid; place-items: center; width: 20px; height: 20px; border-radius: 50%; color: #fff; background: var(--pink); font-size: 11px; }
.small-note { margin: 0; color: var(--muted); font-size: 11px; }

.faq-container { max-width: 900px; }
.accordion { display: grid; gap: 13px; }
.faq-item { overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: 0 8px 22px rgba(100, 65, 88, .05); }
.faq-item h3 { margin: 0; }
.faq-item button { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 13px; width: 100%; min-height: 76px; padding: 18px 22px; border: 0; background: transparent; text-align: left; font-weight: 900; cursor: pointer; }
.faq-q { color: var(--pink-strong); font-size: 20px; }
.faq-plus { position: relative; width: 24px; height: 24px; }
.faq-plus::before, .faq-plus::after { content: ""; position: absolute; top: 50%; left: 50%; width: 16px; height: 2px; border-radius: 2px; background: var(--pink-strong); transform: translate(-50%, -50%); transition: transform .2s ease; }
.faq-plus::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item button[aria-expanded="true"] .faq-plus::after { transform: translate(-50%, -50%) rotate(0deg); }
.faq-answer { padding: 0 22px 22px 59px; }
.faq-answer p { margin: 0; color: var(--muted); }

.final-cta { padding: 92px 0; background: linear-gradient(135deg, #ffe4ef, #fff9fc 48%, #eee9ff); }
.final-inner { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 50px; }
.final-inner h2 { margin: 0 0 14px; font-size: clamp(34px, 5vw, 56px); line-height: 1.3; font-weight: 900; }
.final-inner p:not(.eyebrow) { margin: 0; color: var(--muted); }

.site-footer { padding: 48px 0 110px; border-top: 1px solid var(--line); background: #fff; }
.footer-inner { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 30px; }
.footer-inner > img { width: 150px; }
.footer-links { display: flex; justify-content: flex-end; gap: 22px; flex-wrap: wrap; }
.footer-links a { color: var(--muted); font-size: 12px; font-weight: 800; }
.copyright { grid-column: 1 / -1; margin: 16px 0 0; color: #a395a0; font-size: 11px; text-align: center; }

.floating-line { position: fixed; z-index: 900; right: 22px; bottom: 22px; display: inline-flex; align-items: center; gap: 10px; min-height: 56px; padding: 12px 20px; border-radius: 999px; color: #fff; background: linear-gradient(135deg, #24d169, #16b95a); box-shadow: 0 16px 34px rgba(27, 187, 91, .3); font-weight: 900; transition: transform .2s ease; }
.floating-line:hover { transform: translateY(-3px); }
.page-top { position: fixed; z-index: 880; right: 28px; bottom: 91px; display: grid; place-items: center; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%; background: rgba(255,255,255,.92); box-shadow: var(--shadow-sm); opacity: 0; pointer-events: none; transform: translateY(12px); transition: .2s ease; cursor: pointer; }
.page-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
  .desktop-nav { gap: 16px; }
  .desktop-nav a { font-size: 11px; }
  .item-grid, .design-grid { grid-template-columns: repeat(2, 1fr); }
  .flow-list { grid-template-columns: repeat(2, 1fr); }
  .flow-list::before { display: none; }
  .flow-card { min-height: 250px; }
}

@media (max-width: 900px) {
  :root { --header-h: 72px; }
  .desktop-nav, .header-line { display: none; }
  .brand { width: 132px; }
  .menu-button { display: block; margin-left: auto; }
  .menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero { padding-top: 30px; }
  .hero-cta { grid-template-columns: 1fr; text-align: center; }
  .hero-cta .button { justify-self: center; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 1px solid #f2dfe7; }
  .trust-item:nth-child(3) { border-left: 1px solid #f2dfe7; border-top: 1px solid #f2dfe7; }
  .trust-item:nth-child(4) { border-top: 1px solid #f2dfe7; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 0; }
  .sns-panel { grid-template-columns: 1fr; gap: 30px; padding: 38px; }
  .sns-visual { max-width: 620px; margin-inline: auto; }
  .sns-content { text-align: center; }
  .check-list { width: fit-content; margin-inline: auto; text-align: left; }
  .final-inner { grid-template-columns: 1fr; text-align: center; }
  .final-inner .button { justify-self: center; }
}

@media (max-width: 650px) {
  :root { --header-h: 66px; }
  body { font-size: 15px; padding-bottom: 72px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .brand { width: 118px; }
  .header-inner { min-height: var(--header-h); }
  .menu-button { width: 42px; height: 42px; }
  .hero { padding: 20px 0 48px; }
  .hero-visual { border-radius: 22px; }
  .hero-cta { margin-top: 18px; padding: 22px 18px; border-radius: 22px; }
  .hero-cta-title { font-size: 20px; }
  .hero-cta-text { font-size: 13px; }
  .button { width: 100%; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item, .trust-item:first-child, .trust-item:nth-child(2), .trust-item:nth-child(3), .trust-item:nth-child(4) { min-height: 96px; border: 0; border-bottom: 1px solid #f2dfe7; }
  .trust-item:last-child { border-bottom: 0; }
  .section { padding: 78px 0; }
  .section-heading { margin-bottom: 38px; }
  .section-heading h2 { font-size: 30px; }
  .section-heading > p:last-child { font-size: 14px; }
  .feature-card { padding: 28px 24px; border-radius: 24px; }
  .feature-icon { width: 72px; height: 72px; border-radius: 22px; }
  .feature-card h3 { font-size: 20px; }
  .item-grid, .design-grid { grid-template-columns: 1fr; }
  .item-card, .design-card { border-radius: 24px; }
  .design-note { align-items: flex-start; padding: 20px; }
  .flow-list { grid-template-columns: 1fr; gap: 0; }
  .flow-step { display: grid; grid-template-columns: 54px 1fr; gap: 14px; padding-bottom: 24px; }
  .flow-step:not(:last-child)::before { content: ""; position: absolute; top: 52px; bottom: 0; left: 27px; width: 2px; background: #efd5e1; }
  .flow-marker { width: 50px; height: 50px; margin: 0; border-width: 6px; }
  .flow-card { display: grid; grid-template-columns: 64px 1fr; align-items: center; gap: 16px; min-height: 0; padding: 22px; text-align: left; }
  .flow-icon { width: 64px; height: 64px; margin: 0; border-radius: 20px; }
  .flow-icon svg { width: 36px; }
  .flow-card h3 { margin-bottom: 5px; font-size: 18px; }
  .sns-panel { padding: 26px 20px; border-radius: 28px; }
  .sns-content h2 { font-size: 34px; }
  .faq-item button { min-height: 70px; padding: 15px; font-size: 14px; }
  .faq-answer { padding: 0 16px 18px 48px; font-size: 13px; }
  .final-cta { padding: 76px 0; }
  .final-inner h2 { font-size: 36px; }
  .final-inner h2 br { display: none; }
  .footer-inner { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .footer-links { justify-content: center; }
  .site-footer { padding-bottom: 28px; }
  .floating-line { right: 10px; bottom: max(10px, env(safe-area-inset-bottom)); left: 10px; justify-content: center; }
  .page-top { right: 16px; bottom: 80px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}


body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -2;
  border-radius: 50%;
  filter: blur(4px);
  opacity: .45;
}
body::before {
  top: -70px;
  left: -70px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255, 175, 208, .85) 0%, rgba(255,175,208,0) 72%);
}
body::after {
  right: -90px;
  top: 180px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(190, 223, 255, .8) 0%, rgba(190,223,255,0) 72%);
}
.hero::before {
  content: "♡  ✦  ♡  ୨୧  ♡";
  position: absolute;
  left: 50%;
  top: 18px;
  transform: translateX(-50%);
  color: rgba(255, 109, 168, .26);
  font-size: clamp(18px, 2vw, 24px);
  letter-spacing: 18px;
  white-space: nowrap;
}
.hero-visual {
  position: relative;
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: auto 24px -18px auto;
  width: 112px;
  height: 112px;
  border-radius: 28px;
  background: radial-gradient(circle at 35% 35%, rgba(255,255,255,.95), rgba(255,255,255,.2) 40%), linear-gradient(135deg, rgba(255,128,183,.25), rgba(163,137,232,.22));
  z-index: 2;
  transform: rotate(12deg);
}
.hero-cta-title,
.feature-card h3,
.item-card h3,
.design-meta h3,
.flow-card h3,
.sns-content h2,
.final-inner h2 {
  font-family: "Yusei Magic", "M PLUS Rounded 1c", sans-serif;
  font-weight: 400;
  color: #db4f96;
}
.hero-cta-text,
.section-heading > p:last-child,
.feature-card p,
.item-card p:last-child,
.design-note p,
.flow-card p,
.sns-content > p:not(.eyebrow):not(.small-note),
.faq-answer p,
.final-inner p:not(.eyebrow) {
  color: #876f89;
}
.site-header,
.hero-visual,
.hero-cta,
.feature-card,
.item-card,
.design-card,
.design-note,
.flow-card,
.sns-panel,
.faq-item {
  backdrop-filter: blur(10px);
}
.trust-item:nth-child(1) .trust-icon,
.feature-card:nth-child(1) .feature-icon,
.item-card:nth-child(1) .item-label,
.flow-step:nth-child(1) .flow-marker { box-shadow: 0 10px 20px rgba(255, 94, 160, .16); }
.trust-item:nth-child(2) .trust-icon,
.feature-card:nth-child(2) .feature-icon,
.item-card:nth-child(2) .item-label,
.flow-step:nth-child(2) .flow-marker { box-shadow: 0 10px 20px rgba(147, 124, 219, .18); }
.trust-item:nth-child(3) .trust-icon,
.feature-card:nth-child(3) .feature-icon,
.item-card:nth-child(3) .item-label,
.flow-step:nth-child(3) .flow-marker { box-shadow: 0 10px 20px rgba(90, 185, 223, .18); }
.trust-item:nth-child(4) .trust-icon,
.item-card:nth-child(4) .item-label,
.flow-step:nth-child(4) .flow-marker { box-shadow: 0 10px 20px rgba(74, 184, 143, .18); }
.feature-card::before,
.item-card::before,
.design-card::before,
.flow-card::before,
.faq-item::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, rgba(255,94,160,.95), rgba(177,146,242,.9), rgba(156,221,248,.9));
}
.feature-card::after {
  content: "♡";
  position: absolute;
  right: 18px;
  bottom: 10px;
  color: rgba(255, 190, 216, .55);
  font-size: 42px;
  line-height: 1;
}
.item-card,
.design-card { position: relative; }
.item-content,
.design-meta { position: relative; z-index: 1; }
.item-card:nth-child(odd),
.design-card:nth-child(odd) {
  transform: rotate(-0.7deg);
}
.item-card:nth-child(even),
.design-card:nth-child(even) {
  transform: rotate(0.7deg);
}
.item-card:hover,
.design-card:hover { transform: translateY(-6px) rotate(0deg); }
.section-heading h2 {
  text-shadow: 0 4px 0 rgba(255,255,255,.85);
}
.section-heading h2::before,
.section-heading h2::after {
  color: rgba(255, 126, 178, .8);
  font-size: .72em;
  vertical-align: middle;
}
.section-heading h2::before { content: "♡ "; }
.section-heading h2::after { content: " ♡"; }
.button-sub { color: #e25297; }
.button-sub:hover { box-shadow: 0 16px 34px rgba(255, 109, 168, .14); }
.trust-item strong,
.faq-item button,
.footer-links a { color: #7b4f86; }
.faq-q { color: #ff5ea0; }
.final-cta { position: relative; overflow: hidden; }
.final-cta::before,
.final-cta::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  opacity: .42;
}
.final-cta::before {
  width: 240px; height: 240px; left: -90px; bottom: -130px;
  background: radial-gradient(circle, rgba(255, 173, 207, 1) 0%, rgba(255,173,207,0) 70%);
}
.final-cta::after {
  width: 220px; height: 220px; right: -80px; top: -80px;
  background: radial-gradient(circle, rgba(186, 214, 255, 1) 0%, rgba(186,214,255,0) 70%);
}
@media (max-width: 650px) {
  body::before, body::after { display: none; }
  .hero::before { letter-spacing: 10px; font-size: 16px; }
  .item-card:nth-child(odd), .item-card:nth-child(even), .design-card:nth-child(odd), .design-card:nth-child(even) { transform: none; }
  .hero-cta-title,
  .feature-card h3,
  .item-card h3,
  .design-meta h3,
  .flow-card h3,
  .sns-content h2,
  .final-inner h2,
  .section-heading h2 {
    line-height: 1.45;
  }
}


.button-row { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.item-grid { grid-template-columns: repeat(4, 1fr); }
.item-card, .design-card { border-width: 2px; }
.item-card::after, .design-card::after { content: ""; position: absolute; right: 12px; top: 12px; width: 18px; height: 18px; border-radius: 50%; background: linear-gradient(135deg, rgba(255,126,178,.95), rgba(255,201,224,.8)); box-shadow: 0 0 0 4px rgba(255,240,247,.9); }
.section-tint { background: linear-gradient(180deg, #fff7fc 0%, #fffdfd 100%); }
.hero-cta { border: 2px solid rgba(255, 205, 225, .95); }
.trust-item strong { color: #e05498; }
.item-card h3, .design-meta h3, .flow-card h3 { font-size: 19px; }
.section-heading { max-width: 820px; }
.section-heading h2 { display: inline-block; }
.section-heading h2::before, .section-heading h2::after { font-size: .62em; }
.center-action { margin-top: 38px; }
.desktop-nav, .mobile-menu-inner, .footer-links { font-family: "M PLUS Rounded 1c", "Zen Maru Gothic", sans-serif; }
@media (max-width: 1080px) { .item-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 650px) { .button-row { gap: 10px; } .button-row .button { width: 100%; } .item-grid { grid-template-columns: 1fr; } .section-heading h2 { font-size: 28px; } }


/* section heading layout */
.section-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-heading .eyebrow {
  display: inline-flex;
  margin: 0 0 10px;
}
.section-heading h2 {
  display: block;
  margin-bottom: 0;
}
.section-heading > p:last-child {
  max-width: 760px;
}

/* pop background */
.hero,
.section,
.discounts-section,
.final-cta {
  position: relative;
  overflow: hidden;
}
.section::before,
.section::after,
.discounts-section::before,
.discounts-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.section > .container,
.discounts-section > .container,
.hero > .container,
.final-cta > .container,
.trust-strip > .container {
  position: relative;
  z-index: 1;
}
.section::before {
  right: 2%;
  top: 34px;
  width: 78px;
  height: 78px;
  border-radius: 24px;
  transform: rotate(18deg);
  background: linear-gradient(135deg, rgba(255, 201, 224, .42), rgba(255,255,255,0));
}
.section::after {
  left: 3%;
  bottom: 42px;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(182, 226, 251, .34) 0%, rgba(182, 226, 251, 0) 70%);
}
.section-tint::before {
  content: "♡";
  right: 5%;
  top: 28px;
  width: auto;
  height: auto;
  background: none;
  color: rgba(255, 120, 178, .18);
  font-size: 68px;
  transform: rotate(-12deg);
}
.section-tint::after {
  content: "✦";
  left: 5%;
  bottom: 28px;
  width: auto;
  height: auto;
  background: none;
  color: rgba(153, 202, 245, .26);
  font-size: 42px;
}
.trust-strip {
  position: relative;
  overflow: hidden;
}
.trust-strip::before {
  content: "♡  ✦  ୨୧  ♡  ✦";
  position: absolute;
  left: 50%;
  top: 14px;
  transform: translateX(-50%);
  color: rgba(255, 126, 178, .24);
  font-size: 18px;
  letter-spacing: 14px;
  white-space: nowrap;
}
.item-grid,
.design-grid,
.discount-grid { position: relative; z-index: 1; }

/* button rows */
.center-action { text-align: center; }
.button-row { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* discounts */
.discounts-section {
  background: linear-gradient(180deg, #fffdfd 0%, #fff7fc 100%);
}
.discount-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.discount-card {
  position: relative;
  padding: 28px 24px 26px;
  border: 2px solid #f5d6e4;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #fff8fc 100%);
  box-shadow: 0 14px 34px rgba(100,65,88,.08);
}
.discount-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 6px;
  border-radius: 28px 28px 0 0;
  background: linear-gradient(90deg, #ff72ae, #b593f0, #95dffa);
}
.discount-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: #fff0f7;
  color: #ff5ea0;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
}
.discount-badge-purple { background: #f5f0ff; color: #9375e6; }
.discount-badge-blue { background: #eef8ff; color: #59b5de; }
.discount-card h3 {
  margin: 14px 0 8px;
  color: #db4f96;
  font-family: "Yusei Magic", "M PLUS Rounded 1c", sans-serif;
  font-size: 24px;
  font-weight: 400;
}
.discount-price {
  margin: 0 0 10px;
  color: #7b57c8;
  font-size: 18px;
  font-weight: 900;
}
.discount-card > p:not(.discount-price) {
  margin: 0 0 14px;
  color: #876f89;
  font-size: 14px;
}
.discount-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.discount-list li {
  position: relative;
  padding-left: 24px;
  color: #7f6b83;
  font-size: 13px;
  font-weight: 700;
}
.discount-list li::before {
  content: "♡";
  position: absolute;
  left: 0;
  top: 0;
  color: #ff78b2;
  font-size: 13px;
}

@media (max-width: 1080px) {
  .discount-grid { grid-template-columns: 1fr; }
}
@media (max-width: 650px) {
  .section::before,
  .section::after,
  .section-tint::before,
  .section-tint::after,
  .trust-strip::before { opacity: .7; }
  .section-heading .eyebrow { margin-bottom: 8px; }
  .discount-card h3 { font-size: 22px; }
}


/* ===== v5 pop refresh ===== */
.hero-visual {
  border: 2px solid rgba(245, 201, 220, .9);
  box-shadow: 0 28px 60px rgba(255, 143, 188, .14);
}
.hero-cta {
  margin-top: 24px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(255,242,248,.96));
}

/* stronger pop section backgrounds */
#flow.section-tint,
#faq.section-tint,
#items.section-tint {
  background: linear-gradient(180deg, #fff7fc 0%, #fffefe 100%);
}
#flow::before,
#sns::before {
  content: "♡";
  position: absolute;
  left: 3%;
  top: 28px;
  color: rgba(255, 121, 176, .18);
  font-size: 78px;
  transform: rotate(-12deg);
  z-index: 0;
}
#flow::after,
#sns::after {
  content: "✦";
  position: absolute;
  right: 4%;
  bottom: 36px;
  color: rgba(161, 205, 246, .22);
  font-size: 52px;
  z-index: 0;
}

/* flow redesign */
.flow-list {
  gap: 24px;
}
.flow-list::before {
  top: 22px;
  right: 13%;
  left: 13%;
  height: 3px;
  background: linear-gradient(90deg, rgba(255, 106, 171, .55), rgba(181, 147, 240, .45), rgba(138, 214, 244, .45));
}
.flow-marker {
  width: 62px;
  height: 62px;
  border-width: 7px;
  box-shadow: 0 10px 22px rgba(255, 116, 176, .16);
}
.flow-card {
  position: relative;
  min-height: 310px;
  padding: 34px 24px 28px;
  border: 2px solid #f2d8e5;
  border-radius: 30px;
  background: linear-gradient(180deg, #ffffff 0%, #fffafe 100%);
  box-shadow: 0 18px 38px rgba(116, 75, 104, .08);
  overflow: hidden;
}
.flow-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 8px;
  border-radius: 30px 30px 0 0;
  background: linear-gradient(90deg, #ff78b3, #b192f0, #8fd7f5);
}
.flow-step:nth-child(1) .flow-card { background: linear-gradient(180deg, #ffffff 0%, #fff8fc 100%); }
.flow-step:nth-child(2) .flow-card { background: linear-gradient(180deg, #ffffff 0%, #faf7ff 100%); }
.flow-step:nth-child(3) .flow-card { background: linear-gradient(180deg, #ffffff 0%, #f8fcff 100%); }
.flow-step:nth-child(4) .flow-card { background: linear-gradient(180deg, #ffffff 0%, #f8fffb 100%); }
.flow-icon {
  width: 94px;
  height: 94px;
  margin: 2px auto 24px;
  border-radius: 28px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.68);
}
.flow-icon svg { width: 50px; }
.flow-card h3 {
  margin-bottom: 12px;
  font-size: 25px;
  line-height: 1.35;
}
.flow-card p {
  font-size: 15px;
  line-height: 1.9;
}
.flow-caption {
  margin-top: 34px;
  font-size: 13px;
}

/* discount redesign */
.discounts-section {
  background: linear-gradient(180deg, #fffdfd 0%, #fff7fc 100%);
}
.discount-grid {
  gap: 28px;
}
.discount-card {
  padding: 32px 30px 30px;
  border: 2px solid #f2d7e4;
  border-radius: 32px;
  box-shadow: 0 18px 38px rgba(116, 75, 104, .08);
  overflow: hidden;
}
.discount-card:nth-child(1) { background: linear-gradient(180deg, #ffffff 0%, #fff8fc 100%); }
.discount-card:nth-child(2) { background: linear-gradient(180deg, #ffffff 0%, #faf7ff 100%); }
.discount-card:nth-child(3) { background: linear-gradient(180deg, #ffffff 0%, #f8fcff 100%); }
.discount-card::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 16px;
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: radial-gradient(circle at 35% 35%, rgba(255,255,255,.95), rgba(255,255,255,0) 40%), linear-gradient(135deg, rgba(255, 190, 220, .28), rgba(170, 199, 255, .18));
  transform: rotate(14deg);
}
.discount-badge {
  min-width: 72px;
  height: 44px;
  padding: 0 18px;
  border-radius: 18px;
  font-size: 14px;
  letter-spacing: .08em;
}
.discount-card h3 {
  margin: 22px 0 12px;
  font-size: 48px;
  line-height: 1.25;
}
.discount-price {
  margin-bottom: 18px;
  font-size: 28px;
  letter-spacing: -.01em;
}
.discount-card > p:not(.discount-price) {
  margin-bottom: 18px;
  font-size: 15px;
  line-height: 1.9;
}
.discount-list { gap: 14px; }
.discount-list li {
  padding-left: 30px;
  font-size: 14px;
}
.discount-list li::before {
  top: 1px;
  font-size: 14px;
}

/* more playful cards globally */
.item-card,
.design-card,
.discount-card,
.flow-card {
  border-width: 2px;
}
.section-heading h2 {
  text-wrap: balance;
}

@media (max-width: 1080px) {
  .flow-card { min-height: 280px; }
  .discount-card h3 { font-size: 40px; }
}
@media (max-width: 900px) {
  .flow-card {
    min-height: 0;
    padding: 28px 20px 24px;
  }
  .flow-card h3 { font-size: 22px; }
  .discount-card h3 { font-size: 36px; }
}
@media (max-width: 650px) {
  .hero-cta { margin-top: 18px; }
  .flow-step { gap: 16px; }
  .flow-marker {
    width: 54px;
    height: 54px;
    border-width: 6px;
  }
  .flow-card {
    grid-template-columns: 72px 1fr;
    padding: 22px 18px;
    border-radius: 24px;
  }
  .flow-card::before { height: 6px; border-radius: 24px 24px 0 0; }
  .flow-icon {
    width: 72px;
    height: 72px;
    border-radius: 22px;
    margin: 0;
  }
  .flow-icon svg { width: 38px; }
  .flow-card h3 { font-size: 20px; margin-bottom: 6px; }
  .flow-card p { font-size: 13px; line-height: 1.75; }
  .discount-card {
    padding: 24px 20px 22px;
    border-radius: 26px;
  }
  .discount-card h3 {
    margin-top: 18px;
    font-size: 34px;
  }
  .discount-price { font-size: 24px; margin-bottom: 14px; }
  .discount-card > p:not(.discount-price) { font-size: 14px; }
  .discount-badge { min-width: 64px; height: 40px; font-size: 13px; }
}


/* ===== v6: keep rainbow accents inside cards ===== */
.flow-card,
.discount-card {
  overflow: hidden;
  isolation: isolate;
}
.flow-card::before,
.discount-card::before {
  left: 14px !important;
  right: 14px !important;
  top: 0 !important;
  width: auto !important;
  max-width: calc(100% - 28px);
  border-radius: 0 0 999px 999px !important;
  transform: none !important;
}
.flow-card::before {
  height: 7px !important;
}
.discount-card::before {
  height: 7px !important;
}

@media (max-width: 650px) {
  .flow-card::before,
  .discount-card::before {
    left: 10px !important;
    right: 10px !important;
    max-width: calc(100% - 20px);
    height: 6px !important;
  }
}


/* ===== v7: pop card redesign ===== */
:root {
  --card-shadow-pop: 0 18px 42px rgba(214, 106, 165, .10), 0 8px 18px rgba(135, 95, 150, .06);
  --card-outline-pop: #f4d8e6;
}

/* common card polish */
.hero-cta,
.trust-item,
.item-card,
.design-card,
.flow-card,
.discount-card,
.faq-item {
  position: relative;
  overflow: hidden;
  border: 2px solid var(--card-outline-pop);
  border-radius: 30px;
  box-shadow: var(--card-shadow-pop);
}
.hero-cta::after,
.trust-item::after,
.item-card::after,
.design-card::after,
.flow-card::after,
.discount-card::after,
.faq-item::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.72);
}

/* trust mini cards */
.trust-grid {
  gap: 16px;
  padding: 12px 0;
}
.trust-item,
.trust-item:first-child,
.trust-item:nth-child(2),
.trust-item:nth-child(3),
.trust-item:nth-child(4) {
  min-height: 122px;
  padding: 20px 18px;
  border: 2px solid #f4d8e6;
  background: linear-gradient(180deg, #ffffff 0%, #fff8fc 100%);
}
.trust-item:nth-child(2) { background: linear-gradient(180deg, #ffffff 0%, #faf7ff 100%); }
.trust-item:nth-child(3) { background: linear-gradient(180deg, #ffffff 0%, #f8fcff 100%); }
.trust-item:nth-child(4) { background: linear-gradient(180deg, #ffffff 0%, #f8fff9 100%); }
.trust-item::before {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  top: 0;
  height: 8px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, #ff78b3, #b192f0, #8fd7f5);
}
.trust-item:nth-child(4)::before { background: linear-gradient(90deg, #ff78b3, #b192f0, #7adcb0); }
.trust-icon {
  width: 58px;
  height: 58px;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(255, 118, 178, .10);
}
.trust-item strong {
  font-family: "Yusei Magic", "M PLUS Rounded 1c", sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
}
.trust-item small { font-size: 12px; }

/* item + design cards */
.item-card,
.design-card {
  border-radius: 32px;
  background: linear-gradient(180deg, #ffffff 0%, #fff9fd 100%);
}
.item-card:nth-child(2n),
.design-card:nth-child(2n) {
  background: linear-gradient(180deg, #ffffff 0%, #faf7ff 100%);
}
.item-card:nth-child(3n),
.design-card:nth-child(3n) {
  background: linear-gradient(180deg, #ffffff 0%, #f8fcff 100%);
}
.item-card::before,
.design-card::before {
  left: 14px !important;
  right: 14px !important;
  top: 0 !important;
  width: auto !important;
  height: 8px !important;
  border-radius: 0 0 999px 999px !important;
  background: linear-gradient(90deg, #ff78b3, #b192f0, #8fd7f5) !important;
}
.item-card::after,
.design-card::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 16px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff 0 26%, rgba(255,255,255,0) 40%), linear-gradient(135deg, rgba(255,124,180,.92), rgba(255,205,229,.85));
  box-shadow: 0 0 0 6px rgba(255,241,247,.92);
}
.item-visual,
.design-card img {
  position: relative;
}
.item-visual {
  background:
    radial-gradient(circle at 12% 16%, rgba(255, 198, 224, .55), transparent 18%),
    radial-gradient(circle at 88% 20%, rgba(197, 229, 252, .55), transparent 18%),
    linear-gradient(180deg, #fffdfd 0%, #fff8fc 100%);
}
.item-visual::after {
  content: "";
  position: absolute;
  left: 18px;
  bottom: 16px;
  width: 64px;
  height: 20px;
  border-radius: 999px;
  background: rgba(255,255,255,.85);
  filter: blur(10px);
}
.item-content { padding: 24px 22px 26px; }
.item-label {
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 11px;
  box-shadow: 0 8px 18px rgba(255, 111, 168, .16);
}
.item-card h3,
.design-meta h3 {
  font-size: 24px;
  line-height: 1.35;
}
.item-card p:last-child,
.design-meta span { font-size: 14px; }
.design-card img {
  background: linear-gradient(180deg, #fffdfd 0%, #fff7fc 100%);
}
.design-meta {
  padding: 20px 22px 24px;
}
.design-meta span {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  background: #fff1f7;
  color: #ff5ea0;
  letter-spacing: .10em;
}

/* order flow cards */
.flow-card {
  border-radius: 32px;
  background: linear-gradient(180deg, #ffffff 0%, #fff9fd 100%);
  box-shadow: 0 18px 40px rgba(214, 106, 165, .11), 0 10px 18px rgba(135,95,150,.06);
}
.flow-card::before {
  left: 14px !important;
  right: 14px !important;
  width: auto !important;
  height: 8px !important;
  border-radius: 0 0 999px 999px !important;
}
.flow-icon {
  width: 98px;
  height: 98px;
  border-radius: 30px;
  box-shadow: 0 10px 22px rgba(255, 119, 177, .10);
}
.flow-card h3 {
  font-size: 28px;
  line-height: 1.3;
}
.flow-card p {
  font-size: 15px;
  line-height: 1.9;
}
.flow-card .flow-icon + div {
  position: relative;
  z-index: 1;
}
.flow-step:nth-child(1) .flow-card::after,
.flow-step:nth-child(2) .flow-card::after,
.flow-step:nth-child(3) .flow-card::after,
.flow-step:nth-child(4) .flow-card::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 66px;
  height: 66px;
  border-radius: 22px;
  transform: rotate(14deg);
  opacity: .65;
  background: radial-gradient(circle at 32% 32%, rgba(255,255,255,.94), rgba(255,255,255,0) 42%), linear-gradient(135deg, rgba(255,197,223,.32), rgba(183,215,255,.25));
}

/* discount cards */
.discount-card {
  border-radius: 32px;
  box-shadow: 0 18px 40px rgba(214, 106, 165, .11), 0 10px 18px rgba(135,95,150,.06);
}
.discount-card::before {
  left: 14px !important;
  right: 14px !important;
  width: auto !important;
  height: 8px !important;
  border-radius: 0 0 999px 999px !important;
}
.discount-card h3 {
  font-size: 44px;
  line-height: 1.2;
}
.discount-price {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  background: #fff3fa;
  box-shadow: inset 0 0 0 1px #f8dbe8;
}
.discount-list li {
  font-size: 15px;
}

/* faq cards */
.faq-item {
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #fff9fd 100%);
}
.faq-item:nth-child(even) { background: linear-gradient(180deg, #ffffff 0%, #faf7ff 100%); }
.faq-item::before {
  left: 14px !important;
  right: 14px !important;
  top: 0 !important;
  width: auto !important;
  height: 8px !important;
  border-radius: 0 0 999px 999px !important;
  background: linear-gradient(90deg, #ff78b3, #b192f0, #8fd7f5) !important;
}
.faq-item button {
  min-height: 84px;
  padding: 22px 22px 18px;
  font-size: 18px;
  line-height: 1.55;
}
.faq-q {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff1f7;
  font-size: 15px;
  font-weight: 900;
}
.faq-answer {
  padding: 0 24px 22px 68px;
}
.faq-answer p {
  font-size: 15px;
  line-height: 1.9;
}

/* Hero CTA as pop card */
.hero-cta {
  border-radius: 30px;
  padding: 24px 24px;
}
.hero-cta::before {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  top: 0;
  height: 8px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, #ff78b3, #b192f0, #8fd7f5);
}

@media (max-width: 1080px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .item-card h3, .design-meta h3 { font-size: 22px; }
  .flow-card h3 { font-size: 24px; }
  .discount-card h3 { font-size: 38px; }
}
@media (max-width: 650px) {
  .hero-cta,
  .trust-item,
  .item-card,
  .design-card,
  .flow-card,
  .discount-card,
  .faq-item { border-radius: 24px; }
  .trust-grid { gap: 12px; }
  .trust-item,
  .trust-item:first-child,
  .trust-item:nth-child(2),
  .trust-item:nth-child(3),
  .trust-item:nth-child(4) {
    min-height: 0;
    padding: 18px 16px;
    border-bottom: 2px solid #f4d8e6;
  }
  .trust-item::before,
  .item-card::before,
  .design-card::before,
  .flow-card::before,
  .discount-card::before,
  .faq-item::before,
  .hero-cta::before {
    left: 10px !important;
    right: 10px !important;
    height: 6px !important;
  }
  .trust-icon {
    width: 52px;
    height: 52px;
    border-radius: 18px;
  }
  .trust-item strong { font-size: 20px; }
  .item-content,
  .design-meta { padding: 20px 18px 22px; }
  .item-card h3,
  .design-meta h3 { font-size: 21px; }
  .flow-card {
    border-radius: 24px;
    grid-template-columns: 74px 1fr;
  }
  .flow-icon {
    width: 72px;
    height: 72px;
    border-radius: 22px;
  }
  .flow-card h3 { font-size: 20px; }
  .flow-card p,
  .faq-answer p { font-size: 14px; }
  .discount-card h3 { font-size: 32px; }
  .discount-price { font-size: 22px; }
  .faq-item button {
    min-height: 74px;
    padding: 18px 16px 14px;
    font-size: 15px;
  }
  .faq-answer { padding: 0 16px 18px 52px; }
}


/* ===== v8: remove rainbow top lines + unify card style ===== */
.hero-cta::before,
.item-card::before,
.design-card::before,
.flow-card::before,
.discount-card::before,
.faq-item::before,
.trust-item::before {
  content: none !important;
  display: none !important;
}

.hero-cta,
.item-card,
.design-card,
.flow-card,
.discount-card,
.faq-item {
  border: 2px solid #f4d8e6 !important;
  border-radius: 30px !important;
  background: linear-gradient(180deg, #ffffff 0%, #fff9fd 100%) !important;
  box-shadow: 0 18px 42px rgba(214, 106, 165, .10), 0 8px 18px rgba(135, 95, 150, .06) !important;
  overflow: hidden;
  position: relative;
}
.item-card:nth-child(2n),
.design-card:nth-child(2n),
.discount-card:nth-child(2),
.faq-item:nth-child(2n) {
  background: linear-gradient(180deg, #ffffff 0%, #faf7ff 100%) !important;
}
.item-card:nth-child(3n),
.design-card:nth-child(3n),
.discount-card:nth-child(3) {
  background: linear-gradient(180deg, #ffffff 0%, #f8fcff 100%) !important;
}
.hero-cta::after,
.flow-card::after,
.discount-card::after,
.faq-item::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 14px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff 0 26%, rgba(255,255,255,0) 40%), linear-gradient(135deg, rgba(255,124,180,.92), rgba(255,205,229,.85));
  box-shadow: 0 0 0 6px rgba(255,241,247,.92);
  transform: none !important;
  opacity: 1;
  inset: auto 14px auto auto;
}

.hero-cta {
  margin-top: 24px !important;
  padding: 24px 24px !important;
  display: grid;
  grid-template-columns: 1.2fr auto;
  align-items: center;
  gap: 20px;
}
.hero-cta > div { position: relative; z-index: 1; }
.hero-cta .eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff1f7;
  color: #ff5ea0;
  box-shadow: inset 0 0 0 1px #ffd6e8;
  margin-bottom: 12px;
}
.hero-cta-title {
  margin-bottom: 8px !important;
  color: #db4f96 !important;
  font-family: "Yusei Magic", "M PLUS Rounded 1c", sans-serif;
  font-size: 30px !important;
  line-height: 1.35 !important;
  font-weight: 400 !important;
}
.hero-cta-text {
  color: #876f89 !important;
  font-size: 15px !important;
  line-height: 1.85 !important;
}
.hero-cta .button { justify-self: end; }
.trust-strip { display: none !important; }

.flow-list { gap: 24px; }
.flow-list::before { opacity: .25; left: 14%; right: 14%; }
.flow-card { min-height: 0 !important; padding: 28px 24px !important; text-align: center; }
.flow-icon {
  width: 88px !important;
  height: 88px !important;
  border-radius: 26px !important;
  margin: 4px auto 22px !important;
  box-shadow: 0 10px 22px rgba(255, 119, 177, .10);
}
.flow-card h3 {
  margin: 0 0 10px !important;
  color: #db4f96 !important;
  font-family: "Yusei Magic", "M PLUS Rounded 1c", sans-serif;
  font-weight: 400 !important;
  font-size: 26px !important;
  line-height: 1.35 !important;
}
.flow-card p {
  color: #876f89 !important;
  font-size: 15px !important;
  line-height: 1.85 !important;
}

.discount-card { padding: 28px 26px 24px !important; }
.discount-badge {
  min-width: 70px;
  height: 38px;
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.7);
}
.discount-card h3 {
  margin: 20px 0 10px !important;
  color: #db4f96 !important;
  font-family: "Yusei Magic", "M PLUS Rounded 1c", sans-serif;
  font-weight: 400 !important;
  font-size: 38px !important;
  line-height: 1.25 !important;
}
.discount-price {
  display: inline-block;
  margin: 0 0 14px !important;
  padding: 8px 16px;
  border-radius: 999px;
  background: #fff3fa;
  box-shadow: inset 0 0 0 1px #f8dbe8;
  color: #7b57c8 !important;
  font-size: 24px !important;
}
.discount-card > p:not(.discount-price) {
  color: #876f89 !important;
  font-size: 15px !important;
  line-height: 1.85 !important;
}
.discount-list li { color: #7f6b83 !important; font-size: 14px !important; }

.faq-item { border-radius: 26px !important; }
.faq-item button {
  min-height: 84px !important;
  padding: 20px 22px !important;
  font-size: 17px !important;
  line-height: 1.65 !important;
  color: #7b4f86 !important;
}
.faq-q {
  width: 36px !important;
  height: 36px !important;
  border-radius: 50%;
  background: #fff1f7 !important;
  color: #ff5ea0 !important;
  font-size: 15px !important;
}
.faq-answer { padding: 0 22px 22px 72px !important; }
.faq-answer p {
  color: #876f89 !important;
  font-size: 15px !important;
  line-height: 1.85 !important;
}

@media (max-width: 900px) {
  .hero-cta { grid-template-columns: 1fr; text-align: center; }
  .hero-cta .button { justify-self: center; }
}
@media (max-width: 650px) {
  .hero-cta,
  .item-card,
  .design-card,
  .flow-card,
  .discount-card,
  .faq-item { border-radius: 24px !important; }
  .hero-cta::after,
  .flow-card::after,
  .discount-card::after,
  .faq-item::after {
    right: 10px;
    top: 10px;
    width: 18px;
    height: 18px;
    box-shadow: 0 0 0 5px rgba(255,241,247,.92);
  }
  .hero-cta { margin-top: 18px !important; padding: 20px 18px !important; }
  .hero-cta-title { font-size: 24px !important; }
  .hero-cta-text,
  .discount-card > p:not(.discount-price),
  .faq-answer p,
  .flow-card p { font-size: 14px !important; }
  .flow-card {
    display: grid;
    grid-template-columns: 72px 1fr;
    align-items: center;
    gap: 16px;
    text-align: left;
    padding: 22px 18px !important;
  }
  .flow-icon {
    width: 72px !important;
    height: 72px !important;
    margin: 0 !important;
    border-radius: 22px !important;
  }
  .flow-card h3 { font-size: 20px !important; margin-bottom: 6px !important; }
  .discount-card { padding: 22px 18px 20px !important; }
  .discount-card h3 { font-size: 31px !important; }
  .discount-price { font-size: 21px !important; }
  .faq-item button { min-height: 74px !important; padding: 18px 16px !important; font-size: 15px !important; }
  .faq-answer { padding: 0 16px 18px 56px !important; }
}


/* ===== v9: design support section ===== */
.hero-cta { display: none !important; }
.hero-cta::after { content: none !important; display: none !important; }

.design-support {
  position: relative;
  padding: 70px 0 86px;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 20%, rgba(255, 188, 218, .34), transparent 24%),
    radial-gradient(circle at 92% 78%, rgba(190, 227, 255, .38), transparent 25%),
    linear-gradient(180deg, #fffdfd 0%, #fff8fc 100%);
}
.design-support::before {
  content: "♡  ✦  ୨୧  ♡";
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 116, 174, .20);
  font-size: 22px;
  letter-spacing: 22px;
  white-space: nowrap;
}
.design-support-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, .96fr);
  align-items: center;
  gap: 64px;
}
.design-support-visual {
  position: relative;
}
.design-support-visual::before,
.design-support-visual::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
}
.design-support-visual::before {
  width: 150px;
  height: 150px;
  left: -18px;
  bottom: 16px;
  background: rgba(255, 204, 225, .45);
}
.design-support-visual::after {
  width: 120px;
  height: 120px;
  right: 8px;
  top: 20px;
  background: rgba(202, 233, 255, .54);
}
.design-support-visual img {
  width: 100%;
  filter: drop-shadow(0 20px 34px rgba(135, 81, 116, .10));
}
.design-support-copy {
  position: relative;
}
.design-support-copy .eyebrow {
  display: inline-flex;
  margin: 0 0 14px;
}
.design-support-copy h2 {
  margin: 0 0 16px;
  color: #db4f96;
  font-family: "Yusei Magic", "M PLUS Rounded 1c", sans-serif;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: .01em;
}
.design-support-copy > p:not(.eyebrow) {
  margin: 0;
  color: #826e86;
  font-size: 16px;
  line-height: 1.95;
}
.design-support-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 28px;
}
.design-support-points span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 7px 13px;
  border: 1px solid #f1d4e2;
  border-radius: 999px;
  color: #b34e87;
  background: rgba(255,255,255,.82);
  box-shadow: 0 8px 18px rgba(173, 93, 139, .07);
  font-size: 12px;
  font-weight: 900;
}
.design-support-points span::before {
  content: "♡";
  margin-right: 7px;
  color: #ff72ad;
}
.design-support-button {
  width: fit-content;
}

@media (max-width: 900px) {
  .design-support-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .design-support-visual {
    max-width: 680px;
    margin-inline: auto;
  }
  .design-support-copy {
    max-width: 720px;
    margin-inline: auto;
    text-align: center;
  }
  .design-support-points {
    justify-content: center;
  }
  .design-support-button {
    margin-inline: auto;
  }
}
@media (max-width: 650px) {
  .design-support {
    padding: 56px 0 66px;
  }
  .design-support::before {
    font-size: 16px;
    letter-spacing: 12px;
  }
  .design-support-inner {
    gap: 24px;
  }
  .design-support-copy h2 {
    font-size: 34px;
  }
  .design-support-copy > p:not(.eyebrow) {
    font-size: 14px;
  }
  .design-support-points {
    margin: 20px 0 24px;
  }
  .design-support-points span {
    min-height: 34px;
    padding: 6px 11px;
    font-size: 11px;
  }
  .design-support-button {
    width: 100%;
  }
}


/* support section service copy tweak */
.design-support-copy h2 { max-width: 10em; }
.design-support-copy > p:not(.eyebrow) { max-width: 32em; }


/* ===== support section pop redesign v2 ===== */
.design-support {
  padding: 76px 0 92px;
  background:
    radial-gradient(circle at 6% 14%, rgba(255, 196, 225, .34), transparent 18%),
    radial-gradient(circle at 92% 18%, rgba(214, 233, 255, .36), transparent 18%),
    radial-gradient(circle at 14% 88%, rgba(223, 210, 255, .28), transparent 20%),
    linear-gradient(180deg, #fffdfd 0%, #fff8fc 100%);
}
.design-support::before {
  content: "♡  ✦  ୨୧  ♡  ✦";
  top: 26px;
  font-size: 20px;
  letter-spacing: 18px;
}
.design-support-inner {
  position: relative;
  grid-template-columns: minmax(0, .98fr) minmax(360px, 1.02fr);
  gap: 34px;
  padding: 32px;
  border: 2px solid #f4d8e6;
  border-radius: 40px;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 210, 232, .42), transparent 20%),
    radial-gradient(circle at 88% 16%, rgba(210, 230, 255, .42), transparent 18%),
    linear-gradient(180deg, rgba(255,255,255,.94) 0%, rgba(255,249,253,.96) 100%);
  box-shadow: 0 22px 48px rgba(214, 106, 165, .10), 0 10px 22px rgba(135, 95, 150, .06);
  overflow: hidden;
}
.design-support-inner::before,
.design-support-inner::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}
.design-support-inner::before {
  width: 160px;
  height: 160px;
  right: -30px;
  top: -30px;
  background: radial-gradient(circle, rgba(255, 210, 232, .32) 0%, rgba(255,210,232,0) 70%);
}
.design-support-inner::after {
  width: 170px;
  height: 170px;
  left: -45px;
  bottom: -40px;
  background: radial-gradient(circle, rgba(213, 230, 255, .30) 0%, rgba(213,230,255,0) 72%);
}
.design-support-visual {
  position: relative;
  padding: 18px 10px 18px 18px;
}
.design-support-visual::before {
  content: "";
  position: absolute;
  inset: 18px 20px 0 0;
  border-radius: 34px;
  background: linear-gradient(145deg, #f8dded, #e7e0ff);
  transform: rotate(-4deg);
  box-shadow: 0 18px 36px rgba(170, 115, 153, .12);
}
.design-support-visual::after {
  content: "";
  position: absolute;
  inset: 8px 0 14px 26px;
  border-radius: 34px;
  background: linear-gradient(145deg, #ffffff, #fff7fb);
  border: 2px solid #f6dde9;
  transform: rotate(4deg);
  box-shadow: 0 16px 28px rgba(170, 115, 153, .08);
}
.design-support-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 30px;
  border: 4px solid #fff;
  transform: rotate(-2deg);
  box-shadow: 0 22px 42px rgba(135, 81, 116, .14);
}
.design-support-copy {
  position: relative;
  z-index: 1;
  padding: 28px 26px 28px;
  border: 2px solid #f4d8e6;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(255,244,250,.96) 100%);
  box-shadow: 0 16px 34px rgba(214, 106, 165, .08);
}
.design-support-copy::before {
  content: "♡";
  position: absolute;
  right: 22px;
  top: 18px;
  color: rgba(255, 112, 171, .22);
  font-size: 28px;
}
.design-support-copy .eyebrow {
  margin: 0 0 12px;
  background: #fff0f7;
  color: #ff5ea0;
  box-shadow: inset 0 0 0 1px #ffd5e7;
}
.design-support-copy h2 {
  max-width: none;
  margin: 0 0 14px;
  font-size: clamp(28px, 3.3vw, 44px);
  line-height: 1.28;
  letter-spacing: .01em;
  color: #db4f96;
  text-wrap: balance;
}
.design-support-copy > p:not(.eyebrow) {
  max-width: none;
  font-size: 15px;
  line-height: 1.95;
  color: #826e86;
}
.design-support-points {
  gap: 12px;
  margin: 22px 0 26px;
}
.design-support-points span {
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid #f2d4e4;
  background: rgba(255,255,255,.92);
  font-size: 12px;
  box-shadow: 0 8px 18px rgba(173, 93, 139, .07);
}
.design-support-button {
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) {
  .design-support {
    padding: 62px 0 76px;
  }
  .design-support-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 22px;
    border-radius: 32px;
  }
  .design-support-visual {
    max-width: 700px;
    margin-inline: auto;
    padding: 14px 10px 14px 14px;
  }
  .design-support-copy {
    max-width: 720px;
    margin-inline: auto;
    text-align: left;
    padding: 24px 22px;
  }
  .design-support-points {
    justify-content: flex-start;
  }
  .design-support-button {
    margin-inline: 0;
  }
}
@media (max-width: 650px) {
  .design-support::before {
    font-size: 15px;
    letter-spacing: 10px;
  }
  .design-support-inner {
    padding: 16px;
    border-radius: 26px;
  }
  .design-support-visual {
    padding: 10px 6px 10px 10px;
  }
  .design-support-visual::before,
  .design-support-visual::after {
    border-radius: 24px;
  }
  .design-support-visual img {
    border-radius: 22px;
  }
  .design-support-copy {
    padding: 20px 16px 20px;
    border-radius: 24px;
  }
  .design-support-copy h2 {
    font-size: 28px;
  }
  .design-support-copy > p:not(.eyebrow) {
    font-size: 14px;
  }
  .design-support-points {
    gap: 8px;
    margin: 18px 0 22px;
  }
  .design-support-points span {
    min-height: 34px;
    padding: 6px 11px;
    font-size: 11px;
  }
  .design-support-button {
    width: 100%;
  }
}


/* ===== student discount image cards ===== */
.discount-image-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}
.discount-image-card {
  margin: 0;
  padding: 0;
}
.discount-image-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 26px;
  box-shadow: 0 18px 40px rgba(214, 106, 165, .10), 0 8px 18px rgba(135, 95, 150, .06);
}
@media (max-width: 1080px) {
  .discount-image-grid {
    grid-template-columns: 1fr;
    max-width: 760px;
    margin-inline: auto;
  }
}


/* ===== design example image replacement ===== */
.design-sample-card {
  position: relative;
  padding: 0;
  overflow: hidden;
  border-radius: 28px;
}
.design-sample-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.design-code {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  min-height: 34px;
  padding: 7px 13px;
  border: 2px solid rgba(255,255,255,.94);
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  color: #db4f96;
  box-shadow: 0 8px 20px rgba(99, 61, 94, .16);
  backdrop-filter: blur(8px);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .06em;
  line-height: 1;
}
@media (max-width: 650px) {
  .design-code {
    top: 10px;
    left: 10px;
    min-width: 64px;
    min-height: 30px;
    padding: 6px 11px;
    font-size: 12px;
  }
}


/* FAQ links and notes */
.faq-answer p + p {
  margin-top: 10px;
}
.faq-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: 1px solid #f1cfe0;
  border-radius: 999px;
  background: #fff1f7;
  color: #d94a91;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.faq-link::after {
  content: "↗";
  font-size: .9em;
}
.faq-link:hover,
.faq-link:focus-visible {
  transform: translateY(-1px);
  background: #ffe7f2;
  box-shadow: 0 8px 18px rgba(214, 106, 165, .12);
}
.faq-note {
  padding-left: 1em;
  text-indent: -1em;
  font-size: 13px !important;
}
.faq-note::before {
  content: "※";
}


/* ===== legal / company subpages ===== */
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 18px;
  margin-top: 2px;
  color: rgba(100, 73, 106, .72);
  font-size: 10px;
  font-weight: 700;
}
.footer-legal-links a {
  position: relative;
  transition: color .2s ease;
}
.footer-legal-links a:not(:last-child)::after {
  content: "·";
  position: absolute;
  right: -12px;
  color: rgba(100, 73, 106, .35);
}
.footer-legal-links a:hover { color: var(--pink-strong); }
.footer-logo-link { display: block; }
.subpage-body {
  background:
    radial-gradient(circle at 4% 16%, rgba(255, 197, 223, .30), transparent 19%),
    radial-gradient(circle at 96% 12%, rgba(199, 228, 255, .34), transparent 20%),
    linear-gradient(180deg, #fffafd 0%, #fffdfd 100%);
}
.subpage-main { min-height: 65vh; }
.subpage-hero {
  position: relative;
  overflow: hidden;
  padding: 70px 0 58px;
  text-align: center;
  background:
    radial-gradient(circle at 14% 30%, rgba(255, 202, 226, .42), transparent 20%),
    radial-gradient(circle at 86% 20%, rgba(205, 229, 255, .46), transparent 20%),
    linear-gradient(180deg, #fff9fc 0%, #fffdfd 100%);
}
.subpage-hero::before,
.subpage-hero::after {
  position: absolute;
  color: rgba(255, 111, 172, .18);
  pointer-events: none;
}
.subpage-hero::before {
  content: "♡  ✦  ୨୧";
  left: 5%;
  top: 30px;
  font-size: 34px;
  letter-spacing: 10px;
  transform: rotate(-8deg);
}
.subpage-hero::after {
  content: "✦  ♡";
  right: 7%;
  bottom: 20px;
  color: rgba(137, 194, 238, .22);
  font-size: 36px;
  letter-spacing: 14px;
  transform: rotate(8deg);
}
.subpage-hero-inner { position: relative; z-index: 1; }
.subpage-hero h1 {
  margin: 10px 0 12px;
  color: #d94d94;
  font-family: "Yusei Magic", "M PLUS Rounded 1c", sans-serif;
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 400;
  line-height: 1.35;
  text-wrap: balance;
}
.subpage-lead {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.legal-section {
  position: relative;
  padding: 64px 0 92px;
}
.legal-container { max-width: 960px; }
.legal-intro { margin-bottom: 24px; }
.legal-card {
  position: relative;
  padding: 28px 30px;
  border: 2px solid #f3d9e6;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(255,249,253,.98) 100%);
  box-shadow: 0 16px 38px rgba(117, 74, 103, .08);
}
.legal-card-featured {
  padding-right: 86px;
  background:
    radial-gradient(circle at 92% 14%, rgba(255, 202, 228, .42), transparent 23%),
    linear-gradient(135deg, #ffffff 0%, #fff5fb 100%);
}
.legal-card-featured p { margin: 0; }
.legal-card-featured p + p { margin-top: 10px; }
.legal-icon {
  position: absolute;
  right: 28px;
  top: 24px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 15px;
  color: var(--pink-strong);
  background: #fff;
  box-shadow: 0 10px 24px rgba(255, 94, 160, .13);
  font-size: 23px;
}
.legal-stack { display: grid; gap: 18px; }
.legal-card h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 14px;
  color: #d94d94;
  font-size: 21px;
  line-height: 1.45;
}
.legal-card h2 span {
  display: inline-grid;
  place-items: center;
  min-width: 42px;
  height: 28px;
  padding: 0 9px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #ff7bb3, #ae8cf0);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
}
.legal-card p { margin: 0; color: #7e6982; }
.legal-card p + p { margin-top: 10px; }
.legal-list {
  display: grid;
  gap: 8px;
  margin: 14px 0;
  padding: 0;
  list-style: none;
}
.legal-list li {
  position: relative;
  padding-left: 25px;
  color: #79667e;
}
.legal-list li::before {
  content: "♡";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--pink);
  font-weight: 900;
}
.contact-chip-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}
.contact-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 68px;
  padding: 13px 16px;
  border: 1px solid #f1d4e3;
  border-radius: 20px;
  background: rgba(255,255,255,.9);
  transition: transform .2s ease, box-shadow .2s ease;
}
.contact-chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(121, 77, 108, .08);
}
.contact-chip strong {
  display: inline-grid;
  place-items: center;
  min-width: 52px;
  height: 30px;
  border-radius: 999px;
  color: #d54a91;
  background: #fff0f7;
  font-size: 11px;
}
.contact-chip span { font-size: 14px; font-weight: 800; overflow-wrap: anywhere; }
.legal-date {
  margin: 24px 4px 0;
  color: #9a859e;
  font-size: 11px;
  text-align: right;
}
.company-table,
.commerce-table { margin: 0; }
.company-table > div,
.commerce-table > div {
  display: grid;
  grid-template-columns: minmax(150px, 28%) minmax(0, 1fr);
  border-bottom: 1px solid #f2dfe8;
}
.company-table > div:last-child,
.commerce-table > div:last-child { border-bottom: 0; }
.company-table dt,
.company-table dd,
.commerce-table dt,
.commerce-table dd {
  margin: 0;
  padding: 19px 16px;
}
.company-table dt,
.commerce-table dt {
  color: #cf4f91;
  font-size: 13px;
  font-weight: 900;
}
.company-table dd,
.commerce-table dd {
  color: #77647b;
  font-size: 14px;
}
.company-table a,
.commerce-table a { color: #c34889; text-decoration: underline; text-underline-offset: 3px; }
.company-table small,
.commerce-table small { color: #9a869e; font-size: 11px; }
.company-links-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}
.mini-info-card {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 2px 13px;
  align-items: center;
  padding: 20px;
  border: 2px solid #f3d9e6;
  border-radius: 24px;
  background: linear-gradient(180deg, #fff 0%, #fff7fb 100%);
  box-shadow: 0 12px 28px rgba(117, 74, 103, .07);
  transition: transform .2s ease;
}
.mini-info-card:hover { transform: translateY(-3px); }
.mini-info-card > span {
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 15px;
  color: var(--pink-strong);
  background: #fff0f7;
  font-size: 20px;
}
.mini-info-card strong { color: #c84b8d; font-size: 14px; }
.mini-info-card small { color: #9a859e; font-size: 11px; }
.text-link { display: inline-block; margin-top: 5px; font-weight: 900; }
.legal-back-wrap { margin-top: 34px; text-align: center; }
.legal-site-footer { margin-top: 0; }
@media (max-width: 700px) {
  .subpage-hero { padding: 54px 0 46px; }
  .subpage-hero::before,
  .subpage-hero::after { font-size: 22px; opacity: .72; }
  .legal-section { padding: 42px 0 74px; }
  .legal-card { padding: 22px 18px; border-radius: 23px; }
  .legal-card-featured { padding-right: 64px; }
  .legal-icon { right: 16px; top: 18px; width: 38px; height: 38px; border-radius: 13px; }
  .legal-card h2 { align-items: flex-start; font-size: 18px; }
  .contact-chip-grid,
  .company-links-grid { grid-template-columns: 1fr; }
  .company-table > div,
  .commerce-table > div { grid-template-columns: 1fr; padding-block: 13px; }
  .company-table dt,
  .company-table dd,
  .commerce-table dt,
  .commerce-table dd { padding: 3px 4px; }
  .company-table dt,
  .commerce-table dt { font-size: 12px; }
  .footer-legal-links { gap: 7px 14px; font-size: 9px; }
  .footer-legal-links a:not(:last-child)::after { right: -9px; }
}


/* ===== Kawaii capsule header redesign ===== */
:root {
  --header-h: 104px;
}
.site-header {
  padding: 10px 0 8px;
  border: 0;
  background: linear-gradient(180deg, rgba(255,248,252,.96), rgba(255,248,252,.70));
  backdrop-filter: blur(16px);
}
.header-inner {
  position: relative;
  gap: 14px;
  min-height: 78px;
  padding: 10px 14px 10px 20px;
  border: 2px solid rgba(246, 211, 228, .94);
  border-radius: 30px;
  background:
    radial-gradient(circle at 4% 22%, rgba(255, 213, 232, .50), transparent 18%),
    radial-gradient(circle at 94% 18%, rgba(214, 235, 255, .46), transparent 18%),
    rgba(255,255,255,.94);
  box-shadow: 0 14px 32px rgba(187, 92, 143, .12), 0 4px 12px rgba(112, 73, 105, .06);
}
.header-inner::before {
  content: "♡  ✦";
  position: absolute;
  left: 142px;
  top: 4px;
  color: rgba(255, 107, 169, .30);
  font-size: 13px;
  letter-spacing: 8px;
  pointer-events: none;
}
.header-inner::after {
  content: "୨୧";
  position: absolute;
  right: 148px;
  top: -11px;
  color: rgba(255, 133, 183, .34);
  font-size: 22px;
  transform: rotate(8deg);
  pointer-events: none;
}
.brand {
  width: 142px;
  padding: 3px 4px;
}
.desktop-nav {
  gap: 8px;
  margin-left: auto;
}
.desktop-nav .nav-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 8px 13px;
  border: 1.5px solid var(--nav-border, #f4d5e4);
  border-radius: 999px;
  color: var(--nav-color, #d94d94);
  background: linear-gradient(180deg, rgba(255,255,255,.98), var(--nav-bg, #fff7fb));
  box-shadow: 0 8px 18px rgba(147, 92, 126, .08), inset 0 0 0 1px rgba(255,255,255,.78);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .01em;
  white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.desktop-nav .nav-pill::after { display: none; }
.desktop-nav .nav-pill:hover,
.desktop-nav .nav-pill:focus-visible {
  transform: translateY(-3px) rotate(-1deg);
  border-color: var(--nav-color);
  box-shadow: 0 13px 24px rgba(147, 92, 126, .14), inset 0 0 0 1px rgba(255,255,255,.86);
}
.nav-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 10px;
  color: var(--nav-color);
  background: var(--nav-icon-bg, #fff0f7);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.84);
}
.nav-icon svg { width: 19px; height: 19px; }
.nav-products { --nav-color: #f0529d; --nav-bg: #fff6fa; --nav-border: #f6d4e4; --nav-icon-bg: #ffe4f0; }
.nav-designs { --nav-color: #9a61df; --nav-bg: #fbf8ff; --nav-border: #e6d9fa; --nav-icon-bg: #eee4ff; }
.nav-flow { --nav-color: #599be5; --nav-bg: #f7fbff; --nav-border: #d5e6fa; --nav-icon-bg: #e3f0ff; }
.nav-discount { --nav-color: #51b99b; --nav-bg: #f7fffc; --nav-border: #d3eee5; --nav-icon-bg: #def7ee; }
.nav-faq { --nav-color: #e4a600; --nav-bg: #fffdf5; --nav-border: #f7e7b6; --nav-icon-bg: #fff0b8; }
.header-line {
  position: relative;
  min-height: 54px;
  padding: 9px 18px 9px 11px;
  border: 2px solid rgba(255,255,255,.95);
  background: linear-gradient(135deg, #43dc79, #19bd5c);
  box-shadow: 0 12px 25px rgba(29, 184, 87, .25), 0 4px 0 rgba(16, 132, 62, .12);
  font-size: 12px;
  line-height: 1.25;
}
.header-line::after {
  content: "♡✦";
  position: absolute;
  right: 7px;
  top: 3px;
  color: rgba(255,255,255,.72);
  font-size: 9px;
  letter-spacing: 1px;
}
.header-line .line-mark,
.mobile-line .line-mark {
  min-width: 38px;
  height: 38px;
  padding: 0 5px;
  border-radius: 50%;
  color: #20bd61;
  background: #fff;
  font-size: 10px;
  box-shadow: 0 4px 12px rgba(12, 104, 47, .13);
}
.menu-button {
  position: relative;
  width: 50px;
  height: 50px;
  border: 2px solid #fff;
  background: linear-gradient(145deg, #ff78b3, #ff5da0);
  box-shadow: 0 10px 22px rgba(255, 94, 160, .26), inset 0 0 0 1px rgba(255,255,255,.35);
}
.menu-button::before {
  content: "✦";
  position: absolute;
  right: -3px;
  top: -8px;
  color: #ff73ae;
  font-size: 15px;
  text-shadow: 0 1px 0 #fff;
}
.menu-button span {
  width: 22px;
  margin: 5px auto;
  background: #fff;
}
.mobile-menu[hidden] { display: none !important; }
.mobile-menu {
  position: fixed;
  z-index: 990;
  inset: 0;
  padding: calc(var(--header-h) + 18px) 14px 24px;
  border: 0;
  background: rgba(82, 61, 80, .48);
  backdrop-filter: blur(8px);
  overflow-y: auto;
  animation: kawaiiMenuFade .22s ease both;
}
.mobile-menu-inner {
  width: min(100%, 430px);
  margin: 0 auto;
  padding: 24px 18px 18px;
  border: 2px solid rgba(246, 211, 228, .96);
  border-radius: 32px;
  background:
    radial-gradient(circle at 4% 10%, rgba(255, 211, 231, .46), transparent 22%),
    radial-gradient(circle at 96% 12%, rgba(212, 232, 255, .44), transparent 22%),
    linear-gradient(180deg, #fffefe 0%, #fff7fb 100%);
  box-shadow: 0 25px 60px rgba(76, 49, 70, .25);
  display: grid;
  gap: 11px;
  animation: kawaiiMenuPop .26s cubic-bezier(.2,.8,.2,1) both;
}
.mobile-menu-title {
  margin: 0 0 4px;
  color: #e6549b;
  font-family: "Yusei Magic", "M PLUS Rounded 1c", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .14em;
  text-align: center;
}
.mobile-menu-title span { color: #ff8aba; }
.mobile-menu-inner > .mobile-nav-item {
  display: grid;
  grid-template-columns: 42px 1fr 24px;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 8px 12px;
  border: 1.5px solid var(--nav-border);
  border-radius: 999px;
  color: var(--nav-color);
  background: linear-gradient(180deg, #fff, var(--nav-bg));
  box-shadow: 0 8px 18px rgba(147, 92, 126, .08), inset 0 0 0 1px rgba(255,255,255,.82);
  font-size: 14px;
  font-weight: 900;
}
.mobile-menu-inner > .mobile-nav-item:not(.mobile-line) {
  border-bottom: 1.5px solid var(--nav-border);
}
.mobile-nav-item .nav-icon {
  width: 38px;
  height: 38px;
  border-radius: 13px;
}
.mobile-nav-item .nav-icon svg { width: 23px; height: 23px; }
.mobile-nav-arrow {
  color: currentColor;
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
}
.mobile-line {
  position: relative;
  gap: 12px;
  min-height: 62px;
  margin-top: 6px;
  padding: 10px 50px 10px 12px;
  border: 2px solid #fff;
  background: linear-gradient(135deg, #45dc79, #19bd5c);
  box-shadow: 0 14px 28px rgba(29, 184, 87, .28);
  font-size: 15px;
}
.mobile-line-deco {
  position: absolute;
  right: 16px;
  color: rgba(255,255,255,.82);
  letter-spacing: 3px;
}
@keyframes kawaiiMenuFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes kawaiiMenuPop { from { opacity: 0; transform: translateY(-12px) scale(.97); } to { opacity: 1; transform: translateY(0) scale(1); } }

@media (max-width: 1230px) {
  .desktop-nav .nav-pill { padding-inline: 10px; gap: 6px; font-size: 10px; }
  .nav-icon { width: 25px; height: 25px; flex-basis: 25px; }
  .nav-icon svg { width: 17px; height: 17px; }
  .header-inner { gap: 9px; padding-left: 14px; }
  .brand { width: 128px; }
  .header-line { padding-right: 13px; }
}
@media (max-width: 1120px) {
  :root { --header-h: 90px; }
  .site-header { padding: 8px 0 6px; }
  .desktop-nav, .header-line { display: none !important; }
  .menu-button { display: block; margin-left: auto; }
  .header-inner {
    min-height: 70px;
    padding: 8px 12px 8px 16px;
    border-radius: 26px;
  }
  .brand { width: 132px; }
  .header-inner::before { left: 144px; top: 5px; }
  .header-inner::after { right: 72px; top: -6px; }
}
@media (max-width: 650px) {
  :root { --header-h: 80px; }
  .site-header { padding: 6px 0 4px; }
  .header-inner {
    min-height: 64px;
    padding: 7px 8px 7px 13px;
    border-radius: 22px;
  }
  .brand { width: 118px; }
  .header-inner::before { left: 118px; font-size: 10px; letter-spacing: 5px; }
  .header-inner::after { right: 60px; font-size: 17px; }
  .menu-button { width: 46px; height: 46px; }
  .mobile-menu { padding: calc(var(--header-h) + 12px) 12px 18px; }
  .mobile-menu-inner { padding: 20px 14px 14px; border-radius: 26px; gap: 9px; }
  .mobile-menu-inner > .mobile-nav-item { min-height: 54px; font-size: 13px; }
  .mobile-line { min-height: 58px; font-size: 14px; }
}


/* ===== Header frame + mobile menu overlay fix ===== */
.site-header {
  z-index: 6000 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* Keep only the rounded capsule itself visible on desktop. */
.header-inner {
  isolation: isolate;
}

/* The menu is outside the header and covers the viewport, while the header button remains clickable above it. */
.mobile-menu {
  position: fixed !important;
  z-index: 5000 !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100dvh !important;
  min-height: 100vh !important;
  padding-top: calc(var(--header-h) + 18px) !important;
  pointer-events: auto !important;
  overflow-y: auto !important;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
.mobile-menu[hidden] {
  display: none !important;
}
.mobile-menu-inner {
  position: relative;
  z-index: 1;
  pointer-events: auto;
}
.menu-button {
  position: relative;
  z-index: 7000;
}
body.menu-open {
  overflow: hidden;
}

@media (max-width: 650px) {
  .mobile-menu {
    padding: calc(var(--header-h) + 10px) 12px 18px !important;
  }
}


/* ===== Final layout refinements: mobile nav / support copy / top background ===== */

/* Extend the hero pastel atmosphere continuously from the top of the page. */
body.home-page {
  position: relative;
  background: #fffdfd;
}
.home-page .top-gradient-backdrop {
  position: absolute;
  z-index: 0;
  inset: 0 0 auto;
  height: clamp(820px, 69vw, 1040px);
  pointer-events: none;
  background:
    radial-gradient(circle at 9% 22%, rgba(255, 174, 206, .46), transparent 24%),
    radial-gradient(circle at 90% 10%, rgba(189, 232, 255, .42), transparent 27%),
    radial-gradient(circle at 84% 78%, rgba(207, 189, 255, .28), transparent 20%),
    linear-gradient(180deg, #fff9fc 0%, #fffdfd 100%);
}
.home-page .site-header,
.home-page main {
  position: relative;
  z-index: 1;
}
.home-page .hero {
  background: transparent;
}

/* Remove the text-side card frame and keep only subtle decorative accents. */
.design-support-copy {
  position: relative;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible;
}
.design-support-copy::before {
  content: "♡";
  position: absolute;
  z-index: -1;
  right: 5%;
  top: 3%;
  color: rgba(255, 116, 174, .13);
  font-size: 76px;
  line-height: 1;
  transform: rotate(12deg);
  pointer-events: none;
}
.design-support-copy::after {
  content: "✦  ♡";
  position: absolute;
  z-index: -1;
  left: 2%;
  bottom: 8%;
  color: rgba(157, 191, 242, .16);
  font-size: 27px;
  letter-spacing: 12px;
  transform: rotate(-8deg);
  pointer-events: none;
}

/* Give mobile menu icons and labels enough inset from rounded edges. */
@media (max-width: 1120px) {
  .mobile-menu-inner > .mobile-nav-item:not(.mobile-line) {
    grid-template-columns: 38px minmax(0, 1fr) 20px;
    gap: 11px;
    padding: 8px 15px 8px 24px;
    overflow: hidden;
  }
  .mobile-menu-inner > .mobile-nav-item:not(.mobile-line) .nav-label {
    min-width: 0;
    text-align: left;
  }
  .mobile-menu-inner > .mobile-nav-item:not(.mobile-line) .nav-icon {
    justify-self: center;
  }
}

@media (max-width: 650px) {
  .home-page .top-gradient-backdrop {
    height: 900px;
    background:
      radial-gradient(circle at 5% 14%, rgba(255, 174, 206, .48), transparent 28%),
      radial-gradient(circle at 96% 8%, rgba(189, 232, 255, .44), transparent 29%),
      radial-gradient(circle at 82% 75%, rgba(207, 189, 255, .30), transparent 24%),
      linear-gradient(180deg, #fff9fc 0%, #fffdfd 100%);
  }
  .mobile-menu-inner > .mobile-nav-item:not(.mobile-line) {
    grid-template-columns: 36px minmax(0, 1fr) 18px;
    gap: 9px;
    padding: 7px 12px 7px 21px;
  }
  .mobile-nav-item .nav-icon {
    width: 35px;
    height: 35px;
  }
  .mobile-nav-item .nav-icon svg {
    width: 21px;
    height: 21px;
  }
  .design-support-copy {
    padding: 20px 12px 20px !important;
  }
  .design-support-copy::before {
    right: 2%;
    top: 1%;
    font-size: 58px;
  }
  .design-support-copy::after {
    left: 0;
    bottom: 5%;
    font-size: 21px;
    letter-spacing: 8px;
  }
}

/* ===== Typography refinement: cleaner Japanese gothic, SEO-safe live text ===== */
:root {
  --font-body: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  --font-display: "Zen Kaku Gothic New", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
}

body,
button,
input,
textarea,
select {
  font-family: var(--font-body);
  font-feature-settings: "palt" 1;
  font-kerning: normal;
}

.desktop-nav,
.mobile-menu-inner,
.footer-links,
.footer-legal-links,
.button,
.eyebrow,
.item-label,
.design-code,
.flow-marker,
.faq-q,
.line-mark {
  font-family: var(--font-body);
}

h1,
h2,
h3,
.hero-cta-title,
.feature-card h3,
.item-card h3,
.design-meta h3,
.flow-card h3,
.discount-card h3,
.sns-content h2,
.final-inner h2,
.mobile-menu-title {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -.025em;
}

.section-heading h2,
.design-support-copy h2,
.final-inner h2 {
  color: #cf4f91;
  text-shadow:
    0 1px 0 rgba(255,255,255,.98),
    0 3px 0 rgba(255,255,255,.76),
    0 7px 16px rgba(173, 94, 144, .12);
}

.hero-cta-title,
.feature-card h3,
.item-card h3,
.design-meta h3,
.flow-card h3,
.discount-card h3,
.sns-content h2 {
  color: #c94f91;
  text-shadow:
    0 1px 0 rgba(255,255,255,.95),
    0 3px 10px rgba(166, 87, 137, .10);
}

/* Keep every product title on one line using one consistent rule. */
.item-card h3 {
  margin-bottom: 9px;
  font-size: clamp(16px, 1.28vw, 18px) !important;
  line-height: 1.45;
  letter-spacing: -.055em;
  white-space: nowrap;
}

.item-card p:last-child {
  font-size: 13px;
  line-height: 1.8;
}

.section-heading > p:last-child,
.design-support-copy > p,
.flow-card p,
.faq-answer p,
.final-inner p:not(.eyebrow) {
  font-weight: 500;
  letter-spacing: .01em;
}

.nav-label,
.button,
.faq-item button {
  letter-spacing: -.01em;
}

@media (max-width: 1080px) {
  .item-card h3 {
    font-size: 18px !important;
  }
}

@media (max-width: 650px) {
  .item-card h3 {
    font-size: 17px !important;
    letter-spacing: -.045em;
  }
  .section-heading h2,
  .design-support-copy h2,
  .final-inner h2 {
    text-shadow:
      0 1px 0 rgba(255,255,255,.98),
      0 3px 10px rgba(173, 94, 144, .10);
  }
}

/* ===== Image section headings with SEO text preserved ===== */
.image-heading {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 780px);
  margin: 0 auto;
  line-height: 1;
  letter-spacing: 0;
  text-shadow: none;
}
.image-heading img {
  display: block;
  width: 100%;
  height: auto;
  margin-inline: auto;
  object-fit: contain;
}
.image-heading-items { max-width: 740px; }
.image-heading-designs { max-width: 760px; }
.image-heading-flow { max-width: 760px; }
.image-heading-discounts { max-width: 760px; }
.heading-seo-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.section-heading .image-heading + p {
  margin-top: 10px;
}
@media (max-width: 860px) {
  .image-heading {
    width: min(100%, 620px);
  }
}
@media (max-width: 650px) {
  .image-heading {
    width: min(108%, 440px);
    margin-inline: -4%;
  }
  .section-heading .image-heading + p {
    margin-top: 4px;
  }
}


/* ===== Final heading-image refinements ===== */
.section-heading h2::before,
.section-heading h2::after {
  content: none !important;
  display: none !important;
}

.image-heading {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: none !important;
  margin: 0 auto;
  line-height: 1;
  text-shadow: none !important;
}
.image-heading img {
  display: block;
  width: auto !important;
  max-width: min(100%, 520px);
  height: auto !important;
  max-height: 92px;
  margin: 0 auto;
  object-fit: contain;
}
.image-heading-flow img,
.image-heading-discounts img {
  max-width: min(100%, 600px);
  max-height: 98px;
}
.image-heading-faq img {
  max-width: min(100%, 520px);
  max-height: 92px;
}
.section-heading .image-heading + p {
  margin-top: 12px !important;
}

/* Match order-flow and service title typography to product names. */
.flow-card h3,
.design-support-copy h2 {
  font-family: var(--font-display) !important;
  font-weight: 800 !important;
  letter-spacing: -.025em !important;
}

@media (max-width: 650px) {
  .image-heading img {
    max-width: min(100%, 360px);
    max-height: 72px;
  }
  .image-heading-flow img,
  .image-heading-discounts img {
    max-width: min(100%, 390px);
    max-height: 78px;
  }
  .image-heading-faq img {
    max-width: min(100%, 340px);
    max-height: 72px;
  }
}


/* ===== v11: discount image swap + title no-wrap ===== */
#design-support-title {
  white-space: nowrap;
  word-break: keep-all;
  line-height: 1.18;
  font-size: clamp(24px, 2.95vw, 40px);
}
@media (max-width: 650px) {
  #design-support-title {
    font-size: clamp(22px, 7vw, 29px);
  }
}


/* ===== v12: latest discount images / FAQ heading sizing / legal page typography ===== */
.image-heading-faq img {
  max-width: min(100%, 600px) !important;
  max-height: 115px !important;
}
.footer-logo-link img {
  width: 150px !important;
  height: auto !important;
}
.subpage-hero h1 {
  font-family: var(--font-display) !important;
  font-weight: 800 !important;
  letter-spacing: -.025em !important;
}
@media (max-width: 650px) {
  .image-heading-faq img {
    max-width: min(100%, 390px) !important;
    max-height: 90px !important;
  }
  .footer-logo-link img {
    width: 136px !important;
  }
}


/* ===== v13: mobile layout and copy refinements ===== */
#design-support-title {
  white-space: nowrap !important;
  word-break: keep-all !important;
  overflow-wrap: normal !important;
  line-height: 1.16 !important;
  letter-spacing: -.055em !important;
  font-size: clamp(28px, 2.65vw, 39px) !important;
}

.final-inner h2 {
  white-space: nowrap;
  word-break: keep-all;
  overflow-wrap: normal;
  letter-spacing: -.045em;
  font-size: clamp(30px, 4vw, 50px) !important;
}

.legal-icon { display: none !important; }
.legal-card-featured { padding-right: clamp(22px, 4vw, 42px) !important; }
.subpage-hero h1 {
  white-space: nowrap;
  word-break: keep-all;
  overflow-wrap: normal;
  line-height: 1.18;
  font-size: clamp(28px, 4.2vw, 52px) !important;
}

@media (max-width: 760px) {
  /* Product and design cards become horizontal swipe lists on smartphones. */
  .item-grid,
  .design-grid,
  .discount-image-grid {
    display: flex !important;
    grid-template-columns: none !important;
    gap: 14px !important;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding: 4px 20px 18px;
    margin-inline: -20px;
    scrollbar-width: none;
  }
  .item-grid::-webkit-scrollbar,
  .design-grid::-webkit-scrollbar,
  .discount-image-grid::-webkit-scrollbar { display: none; }
  .item-card,
  .design-card,
  .discount-image-card {
    flex: 0 0 min(78vw, 310px) !important;
    width: min(78vw, 310px) !important;
    max-width: none !important;
    scroll-snap-align: center;
  }
  .design-card { flex-basis: min(74vw, 292px) !important; width: min(74vw, 292px) !important; }
  .discount-image-card { flex-basis: min(76vw, 296px) !important; width: min(76vw, 296px) !important; }
  .item-card img { max-height: 205px; object-fit: contain; }
  .design-card img { max-height: 230px; object-fit: cover; }
  .discount-image-card img { width: 100%; height: auto; display: block; }

  #design-support-title {
    font-size: clamp(20px, 5.1vw, 25px) !important;
    letter-spacing: -.08em !important;
    max-width: 100%;
  }
  .design-support-copy {
    min-width: 0;
  }
  .final-inner h2 {
    font-size: clamp(22px, 6vw, 30px) !important;
    letter-spacing: -.06em;
  }
  .subpage-hero h1 {
    font-size: clamp(20px, 5vw, 28px) !important;
    letter-spacing: -.05em !important;
  }
  .subpage-lead {
    font-size: 14px;
  }
}

@media (max-width: 390px) {
  #design-support-title {
    font-size: clamp(19px, 4.9vw, 22px) !important;
    letter-spacing: -.09em !important;
  }
  .final-inner h2 {
    font-size: clamp(21px, 5.65vw, 27px) !important;
  }
  .subpage-hero h1 {
    font-size: clamp(19px, 4.7vw, 24px) !important;
  }
}


/* ===== v14: latest discount images / mobile item card image fit / no-wrap text ===== */
@media (max-width: 760px) {
  .item-card {
    flex: 0 0 min(82vw, 330px) !important;
    width: min(82vw, 330px) !important;
    border-radius: 26px !important;
    overflow: hidden !important;
  }
  .item-visual {
    width: 100% !important;
    overflow: hidden !important;
    border-radius: 24px 24px 0 0 !important;
  }
  .item-visual img,
  .item-card img {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    height: auto !important;
    max-height: none !important;
    aspect-ratio: 1 / 1 !important;
    object-fit: cover !important;
    border-radius: 24px 24px 0 0 !important;
  }
  .item-content {
    padding: 18px 16px 20px !important;
  }
  .item-card h3 {
    white-space: nowrap !important;
    word-break: keep-all !important;
    overflow-wrap: normal !important;
    font-size: clamp(16px, 4.2vw, 19px) !important;
    letter-spacing: -.055em !important;
    line-height: 1.22 !important;
  }
  .item-label {
    font-size: 10px !important;
  }
}
@media (max-width: 390px) {
  .item-card {
    flex-basis: min(84vw, 316px) !important;
    width: min(84vw, 316px) !important;
  }
  .item-card h3 {
    font-size: clamp(15px, 4vw, 17px) !important;
    letter-spacing: -.07em !important;
  }
}
