  *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    :root {
      --cream: #fdf8ec;
      --cream-deep: #f7efdb;
      --leaf: #7fae72;
      --leaf-deep: #4e7c4a;
      --leaf-pale: #e3efdc;
      --uguisu: #a9b45e;
      --sakura: #f6cdd8;
      --sakura-deep: #e58aa4;
      --sun: #f2c14e;
      --cta: #f08c3c;
      --cta-hover: #e07a28;
      --ink: #111111;
      --ink-soft: #111111;
      --white: #ffffff;
      --maru: 'Zen Maru Gothic', sans-serif;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: var(--maru);
      color: var(--ink);
      background: var(--cream);
      line-height: 2;
      font-size: 16px;
      overflow-x: hidden;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .container {
      max-width: 1020px;
      margin: 0 auto;
      padding: 0 28px;
    }

    section {
      padding: 88px 0;
      position: relative;
    }

    /* --- section label --- */
    .badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: transparent;
      border: none;
      color: var(--leaf-deep);
      font-size: 11.5px;
      font-weight: 900;
      letter-spacing: .22em;
      padding: 0;
      border-radius: 0;
      margin-bottom: 20px;
      box-shadow: none;
      text-transform: uppercase;
    }

    .badge::before {
      content: "";
      width: 34px;
      height: 2px;
      background: var(--leaf);
      border-radius: 999px;
    }

    h2.sec-title {
      font-weight: 900;
      font-size: clamp(23px, 3.4vw, 32px);
      line-height: 1.65;
      color: var(--ink);
      letter-spacing: .02em;
    }

    h2.sec-title .mk {
      background: linear-gradient(transparent 62%, var(--sakura) 62%, var(--sakura) 92%, transparent 92%);
      border-radius: 2px;
    }

    .sec-lead {
      font-size: 15.5px;
      color: var(--ink-soft);
      margin-top: 16px;
      max-width: 620px;
    }

    /* --- buttons --- */
    .cta-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--cta);
      color: #fff;
      font-family: var(--maru);
      font-weight: 900;
      font-size: 16.5px;
      letter-spacing: .06em;
      padding: 18px 44px;
      border-radius: 999px;
      border: none;
      cursor: pointer;
      box-shadow: 0 6px 0 #cf7423;
      transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
    }

    .cta-btn::after {
      content: "→";
      font-weight: 900;
    }

    .cta-btn:hover {
      background: var(--cta-hover);
      transform: translateY(3px);
      box-shadow: 0 3px 0 #cf7423;
    }

    .cta-note {
      font-size: 13.5px;
      color: var(--ink-soft);
      margin-top: 14px;
    }

    /* --- wave dividers --- */
    .wave {
      display: block;
      width: 100%;
      height: 56px;
    }

    .wave--flip {
      transform: scaleY(-1);
    }

    /* --- reveal --- */
    .fade {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity .7s ease, transform .7s ease;
    }

    .fade.in {
      opacity: 1;
      transform: none;
    }

    @media (prefers-reduced-motion: reduce) {
      .fade {
        opacity: 1;
        transform: none;
        transition: none;
      }

      .note,
      .petal {
        animation: none !important;
      }

      html {
        scroll-behavior: auto;
      }
    }

    /* ---------- header ---------- */
    header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(253, 248, 236, .94);
      backdrop-filter: blur(8px);
      border-bottom: 2px dashed var(--cream-deep);
    }

    .header-in {
      max-width: 1160px;
      margin: 0 auto;
      padding: 12px 28px;
      display: flex;
      align-items: center;
      gap: 26px;
    }

    .brand {
      font-weight: 900;
      font-size: 20px;
      color: var(--leaf-deep);
      letter-spacing: .05em;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .brand::before {
      content: "♪";
      color: var(--sun);
      font-size: 18px;
    }

    .brand small {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .2em;
      color: var(--uguisu);
      margin-left: 4px;
    }

    nav {
      margin-left: auto;
      display: flex;
      gap: 24px;
      font-size: 13.5px;
      font-weight: 700;
      color: var(--ink-soft);
    }

    nav br {
      display: none;
    }

    .lp02-menu-toggle,
    .lp02-menu-actions {
      display: none;
    }

    nav a:hover {
      color: var(--leaf-deep);
    }

    .header-cta {
      background: var(--cta);
      color: #fff;
      font-size: 12.5px;
      font-weight: 900;
      padding: 10px 20px;
      border-radius: 999px;
      box-shadow: 0 3px 0 #cf7423;
    }

    .header-cta:hover {
      background: var(--cta-hover);
    }

    @media (max-width:880px) {
      .header-in {
        position: relative;
        gap: 12px;
        padding: 10px 18px;
      }

      .brand {
        min-width: 0;
        font-size: 17px;
        line-height: 1.3;
      }

      .brand small {
        display: block;
        margin: 1px 0 0;
        font-size: 8px;
      }

      .lp02-menu-toggle {
        display: inline-flex;
        flex: 0 0 auto;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        width: 46px;
        height: 44px;
        margin-left: auto;
        padding: 0;
        border: 1px solid rgba(72,105,64,.24);
        border-radius: 14px;
        background: rgba(255,253,246,.96);
        box-shadow: 0 4px 12px rgba(37,54,27,.10);
        cursor: pointer;
      }

      .lp02-menu-toggle span {
        display: block;
        width: 21px;
        height: 2px;
        border-radius: 999px;
        background: var(--leaf-deep);
        transition: transform .25s ease, opacity .2s ease;
      }

      header.is-menu-open .lp02-menu-toggle span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
      }

      header.is-menu-open .lp02-menu-toggle span:nth-child(2) {
        opacity: 0;
      }

      header.is-menu-open .lp02-menu-toggle span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
      }

      .header-in > nav {
        position: absolute;
        top: calc(100% + 8px);
        right: 14px;
        left: 14px;
        z-index: 70;
        display: flex;
        flex-direction: column;
        gap: 0;
        margin: 0;
        padding: 12px;
        border: 1px solid rgba(89,112,69,.18);
        border-radius: 18px;
        background: rgba(255,253,247,.99);
        box-shadow: 0 15px 35px rgba(38,52,28,.17);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity .24s ease, visibility .24s ease, transform .24s ease;
      }

      header.is-menu-open .header-in > nav {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
      }

      .header-in > nav > a {
        display: block;
        padding: 13px 10px;
        border-bottom: 1px solid rgba(89,112,69,.13);
        color: var(--ink);
        font-size: 15px;
      }

      .header-in > .morinouguisu-line-header-button,
      .header-in > .header-cta,
      .header-in > p {
        display: none !important;
      }

      .lp02-menu-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        padding-top: 12px;
      }

      .lp02-menu-actions a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 46px;
        padding: 10px 14px;
        border: 0;
        border-radius: 999px;
        color: #fff;
        font-size: 14px;
        font-weight: 900;
        text-align: center;
      }

      .lp02-menu-line {
        background: #06c755;
        box-shadow: 0 3px 0 #049b43;
      }

      .lp02-menu-contact {
        background: var(--cta);
        box-shadow: 0 3px 0 #cf7423;
      }
    }

    /* ---------- hero ---------- */
    .hero {
      position: relative;
      padding: 70px 0 30px;
      background: linear-gradient(180deg, #f3f7ea 0%, var(--cream) 100%);
      overflow: hidden;
    }

    .hero-in {
      max-width: 1160px;
      margin: 0 auto;
      padding: 0 28px;
      display: grid;
      grid-template-columns: 1.02fr .98fr;
      gap: 24px;
      align-items: center;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--white);
      border: 2px solid var(--sakura);
      color: var(--sakura-deep);
      font-size: 12.5px;
      font-weight: 900;
      letter-spacing: .06em;
      padding: 8px 18px;
      border-radius: 999px;
      margin-bottom: 24px;
      box-shadow: 0 3px 0 var(--sakura);
    }

    .hero h1 {
      font-weight: 900;
      color: var(--ink);
      font-size: clamp(30px, 4.8vw, 50px);
      line-height: 1.5;
      letter-spacing: .02em;
    }

    .hero h1 .num {
      color: var(--leaf-deep);
    }

    .hero h1 .num b {
      font-size: 1.18em;
      color: var(--cta);
    }

    .hero-sub {
      margin-top: 20px;
      font-size: 16px;
      color: var(--ink-soft);
      max-width: 520px;
    }

    .hero-sub strong {
      color: var(--ink);
      font-weight: 900;
    }

    .hero-cta {
      margin-top: 30px;
    }

    .hero-visual {
      position: relative;
    }

    .hero-visual .blob {
      position: absolute;
      inset: 6% 4% 2% 4%;
      background: var(--white);
      border-radius: 53% 47% 46% 54% / 55% 48% 52% 45%;
      box-shadow: 0 10px 30px rgba(127, 174, 114, .18);
    }

    .hero-visual img {
      position: relative;
      z-index: 2;
      width: 100%;
      max-width: 500px;
      margin: 0 auto;
    }

    /* signature: floating song notes */
    .note {
      position: absolute;
      z-index: 3;
      font-size: 22px;
      color: var(--uguisu);
      font-weight: 900;
      opacity: 0;
      animation: float 4.6s ease-out infinite;
    }

    .note.n1 {
      top: 24%;
      left: 26%;
    }

    .note.n2 {
      top: 18%;
      left: 36%;
      animation-delay: 1.5s;
      font-size: 17px;
      color: var(--sun);
    }

    .note.n3 {
      top: 30%;
      left: 18%;
      animation-delay: 3s;
      font-size: 15px;
      color: var(--sakura-deep);
    }

    @keyframes float {
      0% {
        transform: translateY(6px) rotate(-8deg);
        opacity: 0;
      }

      15% {
        opacity: .95;
      }

      100% {
        transform: translateY(-58px) rotate(10deg);
        opacity: 0;
      }
    }

    @media (max-width:880px) {
      .hero-in {
        grid-template-columns: 1fr;
      }

      .hero-visual {
        order: 2;
        max-width: 420px;
        margin: 8px auto 0;
      }
    }

    /* ---------- results ---------- */
    .results {
      background: var(--leaf-pale);
      padding: 70px 0 78px;
    }

    .results-title {
      text-align: center;
      font-weight: 900;
      font-size: 15px;
      color: var(--leaf-deep);
      letter-spacing: .12em;
      margin-bottom: 34px;
    }

    .results-title span {
      display: inline-block;
      position: relative;
      padding: 0 26px;
    }

    .results-title span::before,
    .results-title span::after {
      content: "♪";
      position: absolute;
      top: 0;
      color: var(--uguisu);
    }

    .results-title span::before {
      left: 0;
    }

    .results-title span::after {
      right: 0;
    }

    .results-layout {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 28px;
    }

    .results-in {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .results-sign {
      max-width: 230px;
      margin: 0 auto;
      filter: drop-shadow(0 10px 18px rgba(78, 124, 74, .18));
    }

    .result {
      background: var(--white);
      border-radius: 26px;
      padding: 32px 22px 28px;
      text-align: center;
      border: 3px solid var(--white);
      box-shadow: 0 6px 0 rgba(127, 174, 114, .25);
      position: relative;
    }

    .result::before {
      content: "";
      position: absolute;
      top: -13px;
      left: 50%;
      transform: translateX(-50%);
      width: 26px;
      height: 26px;
      border-radius: 50% 50% 50% 6px;
    }

    .result:nth-child(1)::before {
      background: var(--leaf);
      transform: translateX(-50%) rotate(-35deg);
    }

    .result:nth-child(2)::before {
      background: var(--sun);
      transform: translateX(-50%) rotate(20deg);
    }

    .result:nth-child(3)::before {
      background: var(--sakura-deep);
      transform: translateX(-50%) rotate(-15deg);
    }

    .result .big {
      font-weight: 900;
      font-size: clamp(24px, 3vw, 32px);
      color: var(--leaf-deep);
      line-height: 1.35;
    }

    .result:nth-child(2) .big {
      color: #c8901d;
    }

    .result:nth-child(3) .big {
      color: var(--sakura-deep);
    }

    .result .cap {
      font-size: 13.5px;
      color: var(--ink-soft);
      margin-top: 12px;
      line-height: 1.9;
    }

    @media (max-width:800px) {
      .results-in {
        grid-template-columns: 1fr;
      }

      .results-sign {
        max-width: 190px;
      }
    }

    /* ---------- pains ---------- */
    .pains-grid {
      margin-top: 42px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .pain {
      background: var(--white);
      border: 3px dashed var(--cream-deep);
      border-radius: 24px;
      padding: 30px 24px;
    }

    .pain .face {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 900;
      letter-spacing: .08em;
      color: var(--leaf-deep);
      padding: 5px 14px;
      margin-bottom: 16px;
    }

    .pain:nth-child(1) .face {
      background: var(--leaf-pale);
    }

    .pain:nth-child(2) .face {
      background: #fdeeda;
    }

    .pain:nth-child(3) .face {
      background: #fbe3ea;
    }

    .pain h3 {
      font-weight: 900;
      font-size: 16.5px;
      color: var(--ink);
      line-height: 1.8;
    }

    .pain p {
      font-size: 14px;
      color: var(--ink-soft);
      margin-top: 10px;
    }

    .pains-close {
      margin-top: 38px;
      text-align: center;
      font-weight: 900;
      font-size: clamp(16px, 2.4vw, 20px);
      color: var(--ink);
    }

    .pains-close em {
      font-style: normal;
      background: linear-gradient(transparent 60%, var(--sun) 60%, var(--sun) 90%, transparent 90%);
    }

    @media (max-width:880px) {
      .pains-grid {
        grid-template-columns: 1fr;
      }
    }

    /* ---------- concept ---------- */
    .concept {
      background: var(--white);
    }

    .concept-in {
      display: grid;
      grid-template-columns: 1fr .78fr;
      gap: 48px;
      align-items: center;
    }

    .concept-body p {
      font-size: 14.5px;
      color: var(--ink-soft);
      margin-top: 16px;
    }

    .concept-body p strong {
      color: var(--leaf-deep);
      font-weight: 900;
    }

    .concept-visual {
      position: relative;
    }

    .concept-visual .blob {
      position: absolute;
      inset: 4%;
      background: var(--leaf-pale);
      border-radius: 47% 53% 55% 45% / 48% 44% 56% 52%;
    }

    .concept-visual img {
      position: relative;
      max-width: 330px;
      margin: 0 auto;
    }

    @media (max-width:880px) {
      .concept-in {
        grid-template-columns: 1fr;
      }

      .concept-visual img {
        max-width: 250px;
      }
    }

    /* ---------- cases ---------- */
    .cases {
      background: var(--cream);
    }

    .case-grid {
      margin-top: 44px;
      display: grid;
      grid-template-columns: 1fr;
      gap: 28px;
    }

    .case {
      background: var(--white);
      border-radius: 28px;
      overflow: hidden;
      box-shadow: 0 6px 0 var(--cream-deep);
      display: flex;
      flex-direction: column;
    }

    .case-head {
      padding: 14px 26px;
      font-size: 13px;
      font-weight: 900;
      letter-spacing: .06em;
      color: #fff;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .case:nth-child(1) .case-head {
      background: var(--leaf);
    }

    .case:nth-child(2) .case-head {
      background: var(--sakura-deep);
    }

    .case:nth-child(3) .case-head {
      background: var(--cta);
    }

    .case-head::before {
      content: "♪";
    }

    .case-body {
      padding: 26px 26px 30px;
    }

    .case-num {
      font-weight: 900;
      font-size: clamp(22px, 2.8vw, 27px);
      color: var(--leaf-deep);
      line-height: 1.5;
    }

    .case:nth-child(2) .case-num {
      color: var(--sakura-deep);
    }

    .case:nth-child(3) .case-num {
      color: var(--cta);
    }

    .case-num small {
      font-size: 13px;
      color: var(--ink-soft);
      font-weight: 700;
      display: block;
      margin-top: 4px;
    }

    .case-body dl {
      font-size: 14px;
      margin-top: 14px;
    }

    .case-body dt {
      font-weight: 900;
      color: var(--ink);
      margin-top: 12px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .case-body dt::before {
      content: "";
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--sun);
    }

    .case-body dd {
      color: var(--ink-soft);
      margin-top: 2px;
    }

    /* ---------- plans ---------- */
    .plans {
      background: var(--leaf-pale);
    }

    .plan-grid {
      margin-top: 44px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      align-items: stretch;
      position: relative;
    }

    .plan {
      background: var(--white);
      border-radius: 28px;
      padding: 36px 26px 30px;
      display: flex;
      flex-direction: column;
      position: relative;
      box-shadow: 0 6px 0 rgba(127, 174, 114, .25);
    }

    .plan--main {
      border: 3px solid var(--sun);
      box-shadow: 0 6px 0 var(--sun);
    }

    .plan-tag {
      position: absolute;
      top: -16px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--sun);
      color: #7a5a10;
      font-size: 12px;
      font-weight: 900;
      letter-spacing: .06em;
      padding: 5px 18px;
      border-radius: 999px;
      white-space: nowrap;
      z-index: 2;
    }

    .plan h3 {
      font-weight: 900;
      font-size: 18px;
      color: var(--ink);
      text-align: center;
    }

    .plan .price {
      font-weight: 900;
      font-size: 25px;
      color: var(--leaf-deep);
      margin-top: 12px;
      text-align: center;
    }

    .plan--main .price {
      color: var(--cta);
    }

    .plan .price small {
      font-size: 12.5px;
      color: var(--ink-soft);
      font-weight: 700;
    }

    .plan ul {
      list-style: none;
      margin-top: 18px;
      font-size: 14px;
      color: var(--ink-soft);
      display: flex;
      flex-direction: column;
      gap: 9px;
    }

    .plan ul li {
      display: flex;
      gap: 8px;
    }

    .plan ul li::before {
      content: "✿";
      color: var(--sakura-deep);
      flex-shrink: 0;
    }

    .plan-note {
      margin-top: 24px;
      font-size: 13px;
      color: var(--ink-soft);
      text-align: center;
    }

    @media (max-width:880px) {
      .plan-grid {
        grid-template-columns: 1fr;
      }

      .plan--main {
        order: -1;
      }
    }

    /* ---------- reasons ---------- */
    .reasons {
      background: var(--white);
    }

    .reason-in {
      display: grid;
      grid-template-columns: .72fr 1fr;
      gap: 48px;
      align-items: center;
    }

    .reason-visual {
      position: relative;
    }

    .reason-visual .blob {
      position: absolute;
      inset: 6%;
      background: #fdeeda;
      border-radius: 52% 48% 44% 56% / 46% 54% 46% 54%;
    }

    .reason-visual img {
      position: relative;
      max-width: 300px;
      margin: 0 auto;
    }

    .reason-list {
      margin-top: 6px;
      display: flex;
      flex-direction: column;
      gap: 22px;
    }

    .reason {
      display: flex;
      gap: 16px;
      align-items: flex-start;
    }

    .reason .no {
      flex-shrink: 0;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--leaf-pale);
      color: var(--leaf-deep);
      font-weight: 900;
      font-size: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 4px;
    }

    .reason:nth-child(2) .no {
      background: #fdeeda;
      color: #c8901d;
    }

    .reason:nth-child(3) .no {
      background: #fbe3ea;
      color: var(--sakura-deep);
    }

    .reason h3 {
      font-weight: 900;
      font-size: 16.5px;
      color: var(--ink);
    }

    .reason p {
      font-size: 14.5px;
      color: var(--ink-soft);
      margin-top: 6px;
    }

    @media (max-width:880px) {
      .reason-in {
        grid-template-columns: 1fr;
      }

      .reason-visual {
        order: 2;
      }

      .reason-visual img {
        max-width: 230px;
      }
    }

    /* ---------- flow ---------- */
    .flow {
      background: var(--cream);
    }

    .flow-grid {
      margin-top: 44px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 34px;
    }

    .step {
      background: var(--white);
      border-radius: 26px;
      padding: 32px 24px;
      position: relative;
      box-shadow: 0 6px 0 var(--cream-deep);
    }

    .step:not(:last-child)::after {
      content: "→";
      position: absolute;
      right: -27px;
      top: 50%;
      transform: translateY(-50%);
      font-weight: 900;
      font-size: 20px;
      color: var(--uguisu);
    }

    .step .no {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: var(--leaf);
      color: #fff;
      font-weight: 900;
      font-size: 13px;
      padding: 5px 16px;
      border-radius: 999px;
    }

    .step:nth-child(2) .no {
      background: var(--sun);
      color: #7a5a10;
    }

    .step:nth-child(3) .no {
      background: var(--sakura-deep);
    }

    .step h3 {
      font-weight: 900;
      font-size: 16.5px;
      color: var(--ink);
      margin-top: 14px;
    }

    .step p {
      font-size: 14px;
      color: var(--ink-soft);
      margin-top: 8px;
    }

    @media (max-width:880px) {
      .flow-grid {
        grid-template-columns: 1fr;
        gap: 26px;
      }

      .step:not(:last-child)::after {
        right: 50%;
        top: auto;
        bottom: -26px;
        transform: translateX(50%) rotate(90deg);
      }
    }

    /* ---------- profile ---------- */
    .profile {
      background: var(--white);
    }

    .profile-in {
      display: grid;
      grid-template-columns: .68fr 1fr;
      gap: 48px;
      align-items: center;
    }

    .profile-visual {
      position: relative;
    }

    .profile-visual .blob {
      position: absolute;
      inset: 7%;
      background: #fbe3ea;
      border-radius: 26px;
      transform: rotate(-4deg);
    }

    .profile-visual img {
      position: relative;
      width: min(100%, 320px);
      aspect-ratio: 1 / 1;
      object-fit: cover;
      border-radius: 24px;
      border: 6px solid var(--white);
      box-shadow: 0 12px 28px rgba(78, 124, 74, .18);
      margin: 0 auto;
    }

    .profile-name {
      font-weight: 900;
      font-size: 21px;
      color: var(--ink);
      margin-top: 14px;
    }

    .profile-name small {
      font-size: 13px;
      color: var(--ink-soft);
      font-weight: 700;
      margin-left: 12px;
    }

    .profile-body p {
      font-size: 15px;
      color: var(--ink-soft);
      margin-top: 12px;
    }

    @media (max-width:880px) {
      .profile-in {
        grid-template-columns: 1fr;
      }

      .profile-visual img {
        width: min(100%, 260px);
      }
    }

    /* ---------- faq ---------- */
    .faq {
      background: var(--cream);
    }

    .faq-list {
      margin-top: 40px;
      display: flex;
      flex-direction: column;
      gap: 14px;
      max-width: 800px;
    }

    details {
      background: var(--white);
      border: 3px dashed var(--cream-deep);
      border-radius: 20px;
      padding: 18px 24px;
    }

    summary {
      cursor: pointer;
      font-weight: 900;
      font-size: 15.5px;
      color: var(--ink);
      list-style: none;
      display: flex;
      gap: 12px;
      align-items: baseline;
    }

    summary::-webkit-details-marker {
      display: none;
    }

    summary::before {
      content: "Q";
      flex-shrink: 0;
      width: 26px;
      height: 26px;
      border-radius: 50%;
      background: var(--leaf);
      color: #fff;
      font-size: 13px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transform: translateY(4px);
    }

    details p {
      margin-top: 12px;
      font-size: 14.5px;
      color: var(--ink-soft);
      padding-left: 38px;
    }

    summary:focus-visible {
      outline: 3px solid var(--sun);
      outline-offset: 4px;
      border-radius: 8px;
    }

    /* ---------- final cta ---------- */
    .final {
      background: linear-gradient(180deg, var(--leaf-pale) 0%, #d7e8cd 100%);
      text-align: center;
      overflow: hidden;
    }

    .final img {
      max-width: 190px;
      margin: 0 auto 6px;
    }

    .final h2 {
      font-weight: 900;
      font-size: clamp(22px, 3.4vw, 32px);
      line-height: 1.7;
      color: var(--ink);
    }

    .final h2 .mk {
      background: linear-gradient(transparent 62%, #fff 62%, #fff 92%, transparent 92%);
    }

    .final p {
      font-size: 14px;
      color: var(--ink-soft);
      margin-top: 16px;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    .final .cta-btn {
      margin-top: 30px;
    }

    footer {
      background: var(--leaf-deep);
      color: rgba(255, 255, 255, .85);
      font-size: 12px;
      text-align: center;
      padding: 24px 0 30px;
    }

    footer .foot-brand {
      font-weight: 900;
      font-size: 14px;
    }

    footer .foot-brand::before {
      content: "♪ ";
      color: var(--sun);
    }

    .br-sp {
      display: none;
    }

    @media (max-width:640px) {
      .br-sp {
        display: block;
      }

      .cta-btn {
        display: block;
        width: 100%;
        text-align: center;
        line-height: 1.55;
        white-space: normal;
      }
    }

/* JIN:RがLP内に入れるブロック間余白を削除 */
body.lp-fixed-page #main {
  margin: 0 !important;
  padding: 0 !important;
  background: var(--cream);
}

body.lp-fixed-page #main > * {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

body.lp-fixed-page .wp-block-html {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

body.lp-fixed-page svg.wave {
  display: block;
  margin: 0 !important;
  vertical-align: bottom;
}

/* PC readability: keep all supporting copy at 16px or larger. */
@media (min-width: 761px) {
  .badge,
  .sec-lead,
  .cta-note,
  .brand small,
  nav,
  .header-cta,
  .hero-badge,
  .note.n3,
  .results-title,
  .result .cap,
  .pain .face,
  .pain p,
  .concept-body p,
  .case-head,
  .case-num small,
  .case-body dl,
  .plan-tag,
  .plan .price small,
  .plan ul,
  .plan-note,
  .reason p,
  .step .no,
  .step p,
  .profile-name small,
  .profile-body p,
  summary,
  summary::before,
  details p,
  .final p,
  footer,
  footer .foot-brand {
    font-size: 16px;
  }
}
