:root {
      --ivory: #fbf8f4;
      --blush: #f3e4e3;
      --blush-deep: #d7acab;
      --rose: #a87373;
      --greige: #8a7d77;
      --ink: #443c39;
      --white: #fffdfb;
      --line: rgba(100, 80, 74, .16);
      --shadow: 0 22px 60px rgba(91, 70, 65, .10);
      --serif: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
      --sans: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", sans-serif;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      color: var(--ink);
      background: var(--ivory);
      font-family: var(--sans);
      font-size: 16px;
      line-height: 1.9;
      letter-spacing: .045em;
      -webkit-font-smoothing: antialiased;
    }
    img { display: block; max-width: 100%; }
    a { color: inherit; }
    button { font: inherit; }
    .wrap { width: min(1120px, calc(100% - 48px)); margin: 0 auto; }
    .narrow { width: min(820px, calc(100% - 48px)); margin: 0 auto; }
    .eyebrow {
      margin: 0 0 18px;
      color: var(--rose);
      font-family: Georgia, serif;
      font-size: 12px;
      letter-spacing: .24em;
      text-transform: uppercase;
    }
    .section-title {
      margin: 0;
      font-family: var(--serif);
      font-size: clamp(29px, 4vw, 46px);
      font-weight: 500;
      line-height: 1.5;
      letter-spacing: .08em;
    }
    .section-title .accent { color: var(--rose); }
    .section-lead { margin: 22px 0 0; color: var(--greige); }
    .center { text-align: center; }

    .header {
      position: absolute;
      z-index: 5;
      top: 0;
      left: 0;
      width: 100%;
      padding: 24px 0;
    }
    .header-inner { display: flex; align-items: center; justify-content: space-between; }
    .brand {
      text-decoration: none;
      font-family: Georgia, var(--serif);
      font-size: 18px;
      letter-spacing: .16em;
      line-height: 1.3;
    }
    .brand small {
      display: block;
      color: var(--greige);
      font-family: var(--sans);
      font-size: 8px;
      letter-spacing: .22em;
    }
    .header-link {
      border-bottom: 1px solid currentColor;
      color: var(--greige);
      font-size: 12px;
      text-decoration: none;
    }

    .hero {
      min-height: 760px;
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(420px, .92fr);
      background: linear-gradient(120deg, #f9f4ef 0%, #f6eeea 60%, #f0dfdd 100%);
    }
    .hero-copy {
      display: flex;
      align-items: center;
      padding: 130px max(6vw, 48px) 90px;
    }
    .hero-copy-inner { width: min(590px, 100%); margin-left: auto; }
    .hero-kicker {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 28px;
      color: var(--rose);
      font-size: 13px;
      letter-spacing: .18em;
    }
    .hero-kicker::before { content: ""; width: 38px; height: 1px; background: currentColor; }
    h1 {
      margin: 0;
      font-family: var(--serif);
      font-size: clamp(38px, 5vw, 64px);
      font-weight: 500;
      line-height: 1.42;
      letter-spacing: .09em;
    }
    h1 span { color: var(--rose); }
    h1 .hero-assurance {
      display: block;
      margin-top: 21px;
      color: #8e6a68;
      font-family: var(--sans);
      font-size: .30em;
      font-weight: 500;
      line-height: 1.7;
      letter-spacing: .08em;
    }
    h1 .hero-support {
      display: block;
      margin-top: 5px;
      font-size: .58em;
      line-height: 1.55;
      letter-spacing: .11em;
    }
    .hero-lead {
      margin: 30px 0 0;
      color: var(--greige);
      font-size: 15px;
      line-height: 2.15;
    }
    .hero-price-message {
      display: inline-flex;
      align-items: baseline;
      gap: 11px;
      margin: 28px 0 0;
      padding: 12px 18px;
      border-top: 1px solid rgba(168, 115, 115, .28);
      border-bottom: 1px solid rgba(168, 115, 115, .28);
      color: #735b58;
      font-family: var(--serif);
      font-size: 16px;
      letter-spacing: .08em;
    }
    .hero-price-message strong {
      color: var(--rose);
      font-size: 19px;
      font-weight: 500;
    }
    .hero-price-note {
      display: block;
      max-width: 520px;
      margin-top: 7px;
      color: rgba(110, 97, 93, .72);
      font-size: 9px;
      line-height: 1.65;
      letter-spacing: .02em;
    }
    .hero-notes {
      display: flex;
      flex-wrap: wrap;
      gap: 10px 22px;
      margin: 32px 0 0;
      padding: 0;
      list-style: none;
      color: #6e615d;
      font-size: 12px;
    }
    .hero-notes li::before { content: "—"; margin-right: 8px; color: var(--blush-deep); }
    .hero-actions { display: flex; align-items: center; gap: 22px; margin-top: 38px; }
    .btn {
      display: inline-flex;
      min-height: 58px;
      align-items: center;
      justify-content: center;
      padding: 14px 36px;
      border: 1px solid var(--rose);
      border-radius: 999px;
      background: var(--rose);
      color: white;
      font-size: 14px;
      letter-spacing: .08em;
      text-decoration: none;
      box-shadow: 0 12px 26px rgba(168, 115, 115, .18);
      transition: transform .2s ease, background .2s ease;
    }
    .btn:hover { transform: translateY(-2px); background: #956464; }
    .btn-sub { color: var(--greige); font-size: 11px; line-height: 1.6; }
    .hero-visual { position: relative; min-height: 760px; overflow: hidden; }
    .hero-visual::after {
      position: absolute;
      inset: 0;
      content: "";
      background: linear-gradient(90deg, rgba(247, 239, 234, .23), transparent 30%);
      pointer-events: none;
    }
    .hero-visual img { width: 100%; height: 100%; object-fit: cover; object-position: 52% 44%; }
    .hero-caption {
      position: absolute;
      z-index: 2;
      right: 30px;
      bottom: 26px;
      color: rgba(74, 60, 56, .7);
      font-family: Georgia, serif;
      font-size: 10px;
      letter-spacing: .2em;
      writing-mode: vertical-rl;
    }

    .quiet-points { padding: 34px 0; border-bottom: 1px solid var(--line); background: var(--white); }
    .quiet-points ul {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      margin: 0;
      padding: 0;
      list-style: none;
    }
    .quiet-points li { padding: 12px 26px; border-right: 1px solid var(--line); text-align: center; }
    .quiet-points li:last-child { border-right: 0; }
    .quiet-points strong {
      display: block;
      font-family: var(--serif);
      font-size: 17px;
      font-weight: 500;
      letter-spacing: .08em;
    }
    .quiet-points span { color: var(--greige); font-size: 11px; }

    section { padding: 120px 0; }
    .glp1 {
      position: relative;
      overflow: hidden;
      background: linear-gradient(180deg, #fbf8f4 0%, #f5e9e6 100%);
    }
    .glp1::before,
    .glp1::after {
      position: absolute;
      border-radius: 50%;
      background: rgba(225, 192, 189, .18);
      content: "";
    }
    .glp1::before { top: -110px; left: -80px; width: 300px; height: 300px; }
    .glp1::after { right: -90px; bottom: -130px; width: 360px; height: 360px; }
    .glp1-inner { position: relative; z-index: 1; }
    .glp1-intro {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 84px;
      align-items: center;
    }
    .glp1-copy {
      padding: 44px 0 44px 52px;
      border-left: 1px solid rgba(168, 115, 115, .24);
    }
    .glp1-copy h3 {
      margin: 0 0 18px;
      color: #805f5d;
      font-family: var(--serif);
      font-size: 24px;
      font-weight: 500;
      line-height: 1.65;
    }
    .glp1-copy p { margin: 0; color: var(--greige); font-size: 13px; }
    .glp1-message h3 {
      margin: 28px 0 0;
      color: #805f5d;
      font-family: var(--serif);
      font-size: 21px;
      font-weight: 500;
      line-height: 1.7;
    }
    .glp1-message > p:not(.eyebrow) {
      margin: 18px 0 0;
      color: var(--greige);
      font-size: 13px;
    }
    .glp1-quick-points {
      display: grid;
      grid-template-columns: 1fr;
      gap: 9px;
      margin-top: 26px;
    }
    .glp1-quick-points span {
      display: flex;
      min-height: 46px;
      align-items: center;
      padding: 10px 16px;
      border: 1px solid rgba(168, 115, 115, .2);
      border-radius: 999px;
      background: rgba(255, 253, 251, .72);
      color: #735b58;
      font-family: var(--serif);
      font-size: 14px;
    }
    .glp1-quick-points b {
      margin-right: 12px;
      color: var(--blush-deep);
      font-family: Georgia, serif;
      font-size: 10px;
      letter-spacing: .12em;
    }
    .glp1-product-visual {
      align-self: center;
      margin: 0;
      box-shadow: 0 22px 54px rgba(91, 70, 65, .12);
    }
    .glp1-functions {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      margin-top: 72px;
    }
    .glp1-card {
      position: relative;
      min-height: 310px;
      padding: 38px 30px 34px;
      border: 1px solid rgba(168, 115, 115, .16);
      border-radius: 130px 130px 18px 18px;
      background: rgba(255, 253, 251, .76);
      text-align: center;
      box-shadow: 0 14px 36px rgba(104, 77, 72, .05);
    }
    .glp1-icon {
      position: relative;
      width: 104px;
      height: 104px;
      margin: 0 auto 25px;
      border-radius: 50%;
      background: #f0d9d7;
      color: #9e6f6e;
    }
    .glp1-icon::before,
    .glp1-icon::after { position: absolute; content: ""; }
    .glp1-icon.satiety::before {
      top: 27px;
      left: 29px;
      width: 45px;
      height: 36px;
      border: 2px solid currentColor;
      border-radius: 48% 52% 46% 54%;
      transform: rotate(-8deg);
    }
    .glp1-icon.satiety::after {
      top: 64px;
      left: 49px;
      width: 2px;
      height: 13px;
      background: currentColor;
    }
    .glp1-icon.stomach::before {
      top: 23px;
      left: 35px;
      width: 38px;
      height: 55px;
      border: 2px solid currentColor;
      border-radius: 12px 24px 30px 24px;
      transform: rotate(13deg);
    }
    .glp1-icon.stomach::after {
      top: 15px;
      left: 42px;
      width: 12px;
      height: 23px;
      border-left: 2px solid currentColor;
      border-radius: 50%;
      transform: rotate(-11deg);
    }
    .glp1-icon.balance::before {
      top: 51px;
      left: 20px;
      width: 64px;
      height: 2px;
      background: currentColor;
      box-shadow: 0 -13px 0 rgba(158, 111, 110, .25), 0 13px 0 rgba(158, 111, 110, .25);
    }
    .glp1-icon.balance::after {
      top: 34px;
      left: 43px;
      width: 17px;
      height: 17px;
      border: 2px solid currentColor;
      border-radius: 50%;
      background: #f0d9d7;
    }
    .glp1-card small {
      display: block;
      margin-bottom: 10px;
      color: var(--blush-deep);
      font-family: Georgia, serif;
      font-size: 10px;
      letter-spacing: .16em;
    }
    .glp1-card h3 { margin: 0 0 12px; font-family: var(--serif); font-size: 19px; font-weight: 500; }
    .glp1-card p { margin: 0; color: var(--greige); font-size: 12px; }
    .glp1-summary {
      width: min(740px, 100%);
      margin: 54px auto 0;
      padding: 28px 38px;
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      color: #725b58;
      font-family: var(--serif);
      font-size: 19px;
      line-height: 1.8;
      text-align: center;
    }
    .glp1-summary span { color: var(--rose); }
    .glp1-benefits {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      margin-top: 52px;
      border: 1px solid var(--line);
      background: var(--line);
    }
    .glp1-benefit {
      min-height: 245px;
      padding: 38px 30px;
      background: rgba(251, 248, 244, .94);
    }
    .glp1-benefit b {
      display: block;
      margin-bottom: 16px;
      color: var(--blush-deep);
      font-family: Georgia, serif;
      font-size: 11px;
      font-weight: 400;
      letter-spacing: .16em;
    }
    .glp1-benefit h3 {
      margin: 0 0 15px;
      color: #745b58;
      font-family: var(--serif);
      font-size: 19px;
      font-weight: 500;
      line-height: 1.65;
    }
    .glp1-benefit p { margin: 0; color: var(--greige); font-size: 12px; }
    .glp1-caution {
      width: min(820px, 100%);
      margin: 22px auto 0;
      color: var(--greige);
      font-size: 10px;
      line-height: 1.8;
      text-align: center;
    }
    .medicine-showcase {
      padding: 96px 0;
      background: var(--white);
    }
    .medicine-showcase-inner {
      display: grid;
      grid-template-columns: minmax(0, 1.02fr) minmax(360px, .98fr);
      align-items: center;
      gap: 72px;
    }
    .medicine-showcase-copy h3 {
      margin: 22px 0 0;
      color: #745b58;
      font-family: var(--serif);
      font-size: 22px;
      font-weight: 500;
      line-height: 1.75;
    }
    .medicine-showcase-copy p {
      margin: 22px 0 0;
      color: var(--greige);
      font-size: 13px;
    }
    .medicine-points {
      display: flex;
      flex-wrap: wrap;
      gap: 9px;
      margin-top: 28px;
    }
    .medicine-points span {
      padding: 7px 13px;
      border: 1px solid rgba(168, 115, 115, .24);
      border-radius: 999px;
      background: #fbf4f1;
      color: #755f5c;
      font-size: 11px;
    }
    .medicine-visual {
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(168, 115, 115, .14);
      border-radius: 28px;
      background: linear-gradient(145deg, #fbf8f4, #f1dedb);
      box-shadow: var(--shadow);
    }
    .medicine-visual img {
      width: 100%;
      aspect-ratio: 4 / 3;
      object-fit: cover;
    }
    .medicine-visual figcaption {
      position: absolute;
      right: 18px;
      bottom: 16px;
      padding: 6px 10px;
      border-radius: 999px;
      background: rgba(255, 253, 251, .88);
      color: #7a6762;
      font-size: 9px;
      letter-spacing: .05em;
      backdrop-filter: blur(8px);
    }
    .medicine-note {
      margin-top: 18px !important;
      color: rgba(110, 97, 93, .74) !important;
      font-size: 9px !important;
      line-height: 1.7 !important;
    }
    .intro { position: relative; overflow: hidden; }
    .intro::before {
      position: absolute;
      top: 70px;
      right: -100px;
      width: 310px;
      height: 310px;
      border-radius: 50%;
      background: rgba(238, 216, 214, .35);
      content: "";
      filter: blur(2px);
    }
    .intro-copy { position: relative; text-align: center; }
    .intro-copy p { margin: 34px auto 0; color: var(--greige); }

    .care { background: var(--white); }
    .care-grid {
      display: grid;
      grid-template-columns: .8fr 1.2fr;
      gap: 90px;
      align-items: start;
    }
    .care-list { border-top: 1px solid var(--line); }
    .care-item {
      display: grid;
      grid-template-columns: 54px 1fr;
      gap: 18px;
      padding: 28px 0;
      border-bottom: 1px solid var(--line);
    }
    .care-num { color: var(--blush-deep); font-family: Georgia, serif; font-size: 13px; }
    .care-item h3 { margin: -5px 0 7px; font-family: var(--serif); font-size: 19px; font-weight: 500; }
    .care-item p { margin: 0; color: var(--greige); font-size: 13px; }

    .flow { background: linear-gradient(180deg, #f7efed, #fbf8f4); }
    .flow-list {
      display: grid;
      grid-template-columns: 1fr;
      gap: 42px;
      width: min(820px, 100%);
      margin-top: 64px;
      margin-right: auto;
      margin-left: auto;
    }
    .flow-item {
      position: relative;
      display: grid;
      grid-template-columns: 94px minmax(0, 1fr) 170px;
      min-height: 190px;
      align-items: center;
      gap: 28px;
      padding: 24px 28px;
      border: 1px solid rgba(168, 115, 115, .23);
      border-radius: 16px;
      background: rgba(255, 253, 251, .92);
      box-shadow: 0 10px 26px rgba(104, 77, 72, .07);
    }
    .flow-item:not(:last-child)::after {
      position: absolute;
      z-index: 2;
      bottom: -29px;
      left: 50%;
      width: 13px;
      height: 13px;
      border-right: 2px solid #ce9492;
      border-bottom: 2px solid #ce9492;
      content: "";
      transform: translateX(-50%) rotate(45deg);
    }
    .flow-item:not(:last-child)::before {
      position: absolute;
      bottom: -24px;
      left: 50%;
      width: 2px;
      height: 16px;
      background: #ce9492;
      content: "";
      transform: translateX(-50%);
    }
    .flow-copy {
      display: contents;
      min-width: 0;
    }
    .flow-visual {
      position: relative;
      grid-column: 3;
      grid-row: 1;
      width: 154px;
      height: 154px;
      margin: 0;
      border-radius: 50%;
      background: linear-gradient(145deg, rgba(242, 219, 217, .54), rgba(255, 253, 251, .78));
      overflow: hidden;
    }
    .flow-visual::before {
      position: absolute;
      top: 34px;
      left: 50%;
      width: 76px;
      height: 76px;
      border-radius: 50%;
      background: rgba(218, 177, 175, .18);
      content: "";
      transform: translateX(-50%);
    }
    .line-art,
    .line-art::before,
    .line-art::after,
    .line-art * {
      position: absolute;
      box-sizing: border-box;
    }
    .line-art { inset: 0; color: #a87978; }

    .phone {
      top: 20px;
      left: 50%;
      width: 52px;
      height: 88px;
      border: 1.5px solid currentColor;
      border-radius: 12px;
      transform: translateX(-50%) rotate(-3deg);
    }
    .phone::before {
      top: 7px;
      left: 17px;
      width: 17px;
      height: 2px;
      border-radius: 2px;
      background: currentColor;
      content: "";
      opacity: .65;
    }
    .phone::after {
      right: 8px;
      bottom: 10px;
      left: 8px;
      height: 25px;
      border-radius: 7px;
      background: rgba(216, 174, 172, .33);
      content: "";
    }
    .phone .bubble {
      top: 27px;
      left: 10px;
      width: 30px;
      height: 17px;
      border: 1.3px solid currentColor;
      border-radius: 8px;
    }
    .phone .bubble::after {
      right: 3px;
      bottom: -4px;
      width: 7px;
      height: 7px;
      border-right: 1.3px solid currentColor;
      border-bottom: 1.3px solid currentColor;
      background: #faf5f2;
      content: "";
      transform: rotate(30deg);
    }

    .laptop {
      top: 32px;
      left: 50%;
      width: 84px;
      height: 54px;
      border: 1.5px solid currentColor;
      border-radius: 6px;
      background: rgba(255,255,255,.4);
      transform: translateX(-50%);
    }
    .laptop::before {
      bottom: -8px;
      left: -10px;
      width: 104px;
      height: 8px;
      border: 1.5px solid currentColor;
      border-radius: 0 0 8px 8px;
      content: "";
    }
    .laptop .person {
      top: 9px;
      left: 50%;
      width: 15px;
      height: 15px;
      border: 1.3px solid currentColor;
      border-radius: 50%;
      transform: translateX(-50%);
    }
    .laptop .person::after {
      top: 17px;
      left: 50%;
      width: 30px;
      height: 16px;
      border: 1.3px solid currentColor;
      border-bottom: 0;
      border-radius: 18px 18px 0 0;
      content: "";
      transform: translateX(-50%);
    }
    .laptop .camera {
      top: 6px;
      right: 7px;
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: currentColor;
      opacity: .6;
    }

    .card {
      top: 36px;
      left: 50%;
      width: 86px;
      height: 57px;
      border: 1.5px solid currentColor;
      border-radius: 9px;
      background: rgba(255,255,255,.42);
      box-shadow: 8px 8px 0 rgba(216, 174, 172, .17);
      transform: translateX(-50%) rotate(-3deg);
    }
    .card::before {
      top: 14px;
      right: 0;
      left: 0;
      height: 10px;
      background: rgba(168, 121, 120, .22);
      content: "";
    }
    .card::after {
      right: 10px;
      bottom: 10px;
      width: 22px;
      height: 5px;
      border-radius: 5px;
      background: currentColor;
      content: "";
      opacity: .45;
    }
    .card .check {
      top: -13px;
      right: -12px;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: #b68382;
    }
    .card .check::after {
      top: 7px;
      left: 9px;
      width: 7px;
      height: 11px;
      border-right: 1.5px solid white;
      border-bottom: 1.5px solid white;
      content: "";
      transform: rotate(42deg);
    }

    .parcel {
      top: 43px;
      left: 50%;
      width: 74px;
      height: 55px;
      border: 1.5px solid currentColor;
      background: rgba(255,255,255,.4);
      transform: translateX(-50%);
    }
    .parcel::before {
      top: -19px;
      left: -1.5px;
      width: 74px;
      height: 20px;
      border: 1.5px solid currentColor;
      background: rgba(238, 211, 209, .55);
      content: "";
      transform: skewX(-35deg);
      transform-origin: bottom;
    }
    .parcel::after {
      top: -19px;
      right: -1.5px;
      width: 37px;
      height: 20px;
      border: 1.5px solid currentColor;
      border-left: 0;
      background: rgba(243, 224, 222, .7);
      content: "";
      transform: skewX(35deg);
      transform-origin: bottom;
    }
    .parcel .label {
      top: 16px;
      left: 21px;
      width: 31px;
      height: 19px;
      border: 1.2px solid currentColor;
      border-radius: 2px;
    }
    .parcel .label::after {
      top: 5px;
      left: 6px;
      width: 17px;
      height: 1px;
      background: currentColor;
      box-shadow: 0 4px 0 currentColor;
      content: "";
      opacity: .45;
    }
    .flow-item b {
      grid-column: 1;
      grid-row: 1;
      display: flex;
      width: 86px;
      height: 86px;
      align-items: center;
      justify-content: center;
      margin: 0;
      border: 0;
      border-radius: 50%;
      background: #ca8c8c;
      color: white;
      font-family: Georgia, serif;
      font-size: 12px;
      line-height: 1.25;
      letter-spacing: .09em;
      text-align: center;
    }
    .flow-copy h3 {
      grid-column: 2;
      grid-row: 1;
      margin: -30px 0 0;
      color: #9e6767;
      font-family: var(--serif);
      font-size: 28px;
      font-weight: 600;
      letter-spacing: .05em;
    }
    .flow-copy p {
      grid-column: 2;
      grid-row: 1;
      align-self: center;
      margin: 54px 0 0;
      color: #6e615d;
      font-size: 13px;
    }

    .price { background: var(--white); }
    .price-panel {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      margin-top: 62px;
      border: 1px solid var(--line);
      background: var(--ivory);
      box-shadow: var(--shadow);
    }
    .price-copy { padding: 56px; }
    .price-copy h3 { margin: 0 0 18px; font-family: var(--serif); font-size: 26px; font-weight: 500; }
    .price-copy p { margin: 0; color: var(--greige); font-size: 13px; }
    .included {
      display: flex;
      flex-wrap: wrap;
      gap: 9px;
      margin-top: 28px;
    }
    .included span {
      padding: 7px 13px;
      border: 1px solid rgba(168, 115, 115, .26);
      border-radius: 999px;
      background: rgba(255,255,255,.6);
      color: #755f5c;
      font-size: 11px;
    }
    .price-table { padding: 42px 52px; background: #f1e3e1; }
    .price-status {
      display: inline-block;
      margin-bottom: 18px;
      padding: 5px 12px;
      border: 1px solid rgba(117, 86, 83, .28);
      border-radius: 999px;
      color: #755b58;
      font-size: 10px;
      letter-spacing: .12em;
    }
    .price-row {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      gap: 20px;
      padding: 18px 0;
      border-bottom: 1px solid rgba(100, 80, 74, .15);
    }
    .price-row:first-child { padding-top: 0; }
    .price-row strong { font-family: var(--serif); font-size: 17px; font-weight: 500; }
    .price-row span { color: #725b58; font-family: var(--serif); font-size: 16px; }
    .price-note { margin: 18px 0 0; color: var(--greige); font-size: 10px; line-height: 1.8; }

    .support-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      margin-top: 56px;
    }
    .support-card { min-height: 235px; padding: 42px; border: 1px solid var(--line); background: rgba(255,255,255,.65); }
    .support-card small { color: var(--blush-deep); font-family: Georgia, serif; letter-spacing: .16em; }
    .support-card h3 { margin: 12px 0; font-family: var(--serif); font-size: 21px; font-weight: 500; }
    .support-card p { margin: 0; color: var(--greige); font-size: 13px; }

    .faq { background: var(--white); }
    .faq-list { margin-top: 52px; border-top: 1px solid var(--line); }
    details { border-bottom: 1px solid var(--line); }
    summary {
      position: relative;
      padding: 25px 52px 25px 42px;
      cursor: pointer;
      font-family: var(--serif);
      font-size: 16px;
      list-style: none;
    }
    summary::-webkit-details-marker { display: none; }
    summary::before { position: absolute; left: 6px; color: var(--blush-deep); content: "Q"; font-family: Georgia, serif; }
    summary::after { position: absolute; right: 12px; content: "＋"; color: var(--rose); }
    details[open] summary::after { content: "−"; }
    details p { margin: 0; padding: 0 44px 26px; color: var(--greige); font-size: 13px; }

    .final-cta {
      padding: 110px 0 120px;
      background: #e9d5d3;
      text-align: center;
    }
    .final-cta p { margin: 24px 0 34px; color: #715f5b; font-size: 14px; }
    .final-cta .btn { min-width: 310px; background: #8f6867; border-color: #8f6867; }
    footer { padding: 48px 0 110px; background: #443d3a; color: rgba(255,255,255,.7); font-size: 10px; }
    .footer-inner { display: flex; justify-content: space-between; gap: 30px; }
    .footer-brand { color: white; font-family: Georgia, serif; font-size: 15px; letter-spacing: .14em; }
    .legal { max-width: 680px; }

    .mobile-cta { display: none; }

    @media (max-width: 900px) {
      .hero { grid-template-columns: 1fr; min-height: auto; }
      .hero-copy { min-height: 650px; padding: 126px 8vw 70px; }
      .hero-copy-inner { margin: 0; }
      .hero-visual { min-height: 580px; }
      .care-grid { grid-template-columns: 1fr; gap: 46px; }
      .glp1-intro { grid-template-columns: 1fr; gap: 36px; }
      .glp1-copy { padding: 32px 0 32px 34px; }
      .glp1-product-visual { width: min(620px, 100%); margin: 0 auto; }
      .medicine-showcase-inner { grid-template-columns: 1fr; gap: 44px; }
      .price-panel { grid-template-columns: 1fr; }
    }

    @media (max-width: 640px) {
      body { font-size: 14px; line-height: 1.85; }
      .wrap, .narrow { width: min(100% - 36px, 1120px); }
      .header { padding: 19px 0; }
      .header-link { display: none; }
      .brand { font-size: 15px; }
      .hero-copy { min-height: auto; padding: 116px 24px 70px; }
      .hero-kicker { margin-bottom: 22px; font-size: 11px; }
      h1 { font-size: clamp(34px, 10.8vw, 46px); line-height: 1.5; }
      h1 .hero-assurance { font-size: .38em; }
      .hero-lead { margin-top: 23px; font-size: 13px; line-height: 2; }
      .hero-price-message {
        display: flex;
        flex-wrap: wrap;
        gap: 2px 8px;
        margin-top: 23px;
        padding: 10px 0;
        font-size: 13px;
      }
      .hero-price-message strong { font-size: 16px; }
      .hero-price-note { font-size: 8px; }
      .hero-notes { display: grid; grid-template-columns: 1fr 1fr; gap: 7px 8px; font-size: 10px; }
      .hero-actions { display: block; margin-top: 30px; }
      .hero-actions .btn { width: 100%; }
      .btn-sub { margin-top: 10px; text-align: center; }
      .hero-visual { min-height: 500px; }
      .hero-visual img { object-position: 57% 44%; }
      .hero-caption { right: 16px; bottom: 20px; }
      .quiet-points { padding: 22px 0; }
      .quiet-points ul { grid-template-columns: 1fr; }
      .quiet-points li { padding: 14px 0; border-right: 0; border-bottom: 1px solid var(--line); }
      .quiet-points li:last-child { border-bottom: 0; }
      .quiet-points strong { font-size: 15px; }
      section { padding: 86px 0; }
      .glp1-intro { gap: 28px; }
      .glp1-copy { padding: 24px 0 24px 20px; }
      .glp1-copy h3 { font-size: 19px; }
      .glp1-copy p { font-size: 12px; }
      .glp1-message h3 { margin-top: 20px; font-size: 18px; }
      .glp1-message > p:not(.eyebrow) { margin-top: 14px; font-size: 12px; }
      .glp1-quick-points { margin-top: 20px; }
      .glp1-quick-points span { min-height: 42px; font-size: 12px; }
      .glp1-functions { grid-template-columns: 1fr; gap: 14px; margin-top: 46px; }
      .glp1-card {
        display: grid;
        grid-template-columns: 86px 1fr;
        min-height: 0;
        align-items: center;
        gap: 18px;
        padding: 24px 22px;
        border-radius: 16px;
        text-align: left;
      }
      .glp1-icon { width: 78px; height: 78px; margin: 0; transform: scale(.82); }
      .glp1-card small { margin-bottom: 4px; }
      .glp1-card h3 { margin-bottom: 5px; font-size: 17px; }
      .glp1-card p { font-size: 11px; }
      .glp1-summary { margin-top: 38px; padding: 22px 12px; font-size: 16px; }
      .glp1-benefits { grid-template-columns: 1fr; margin-top: 38px; }
      .glp1-benefit { min-height: 0; padding: 28px 24px; }
      .glp1-benefit h3 { font-size: 17px; }
      .glp1-benefit p { font-size: 11px; }
      .glp1-caution { font-size: 9px; text-align: left; }
      .medicine-showcase { padding: 78px 0; }
      .medicine-showcase-inner { gap: 34px; }
      .medicine-showcase-copy h3 { margin-top: 16px; font-size: 18px; }
      .medicine-showcase-copy p { margin-top: 16px; font-size: 12px; }
      .medicine-visual { border-radius: 20px; }
      .medicine-visual figcaption { right: 12px; bottom: 10px; font-size: 8px; }
      .section-title { font-size: 29px; line-height: 1.55; }
      .section-lead { margin-top: 17px; font-size: 12px; }
      .intro-copy p { margin-top: 26px; font-size: 12px; text-align: left; }
      .care-item { grid-template-columns: 37px 1fr; padding: 24px 0; gap: 8px; }
      .care-item h3 { font-size: 17px; }
      .care-item p { font-size: 12px; }
      .flow-list { grid-template-columns: 1fr; margin-top: 42px; }
      .flow-item, .flow-item:nth-child(2) {
        grid-template-columns: 64px minmax(0, 1fr) 96px;
        min-height: 150px;
        gap: 12px;
        padding: 18px 13px;
        border: 1px solid rgba(168, 115, 115, .2);
      }
      .flow-item:not(:last-child)::after {
        bottom: -31px;
        width: 12px;
        height: 12px;
      }
      .flow-list { gap: 40px; }
      .flow-visual { width: 96px; height: 96px; }
      .flow-visual::before { top: 18px; width: 60px; height: 60px; }
      .flow-item b { width: 62px; height: 62px; font-size: 9px; }
      .flow-copy h3 { margin-top: -27px; font-size: 18px; line-height: 1.4; }
      .flow-copy p { margin-top: 48px; font-size: 10px; line-height: 1.65; }
      .phone { top: 13px; transform: translateX(-50%) rotate(-3deg) scale(.82); }
      .laptop { top: 21px; transform: translateX(-50%) scale(.72); }
      .card { top: 23px; transform: translateX(-50%) rotate(-3deg) scale(.72); }
      .parcel { top: 30px; transform: translateX(-50%) scale(.72); }
      .price-panel { margin-top: 42px; box-shadow: none; }
      .price-copy, .price-table { padding: 34px 24px; }
      .price-copy h3 { font-size: 22px; }
      .price-row { display: block; padding: 16px 0; }
      .price-row strong, .price-row span { display: block; }
      .price-row span { margin-top: 5px; }
      .support-grid { grid-template-columns: 1fr; margin-top: 42px; }
      .support-card { min-height: auto; padding: 30px 24px; }
      summary { padding: 22px 38px 22px 30px; font-size: 14px; }
      summary::before { left: 0; }
      details p { padding: 0 20px 22px 30px; font-size: 12px; }
      .final-cta { padding: 80px 22px 90px; }
      .final-cta .btn { min-width: 0; width: 100%; }
      .footer-inner { display: block; }
      .legal { margin-top: 24px; }
      .mobile-cta {
        position: fixed;
        z-index: 20;
        right: 12px;
        bottom: calc(12px + env(safe-area-inset-bottom));
        left: 12px;
        display: block;
      }
      .mobile-cta .btn { width: 100%; min-height: 54px; box-shadow: 0 12px 30px rgba(75,54,52,.25); }
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after { transition: none !important; }
    }
