:root {
  --paper: #fff;
  --white: #fff;
  --beige: #fff;
  --sage: #f4f4f4;
  --amber: #f4f4f4;
  --ink: #050505;
  --body: #111;
  --muted: #555;
  --cta: #000;
  --cta-hover: #262626;
  --accent: #000;
  --line: #d5d5d5;
  --serif: "Noto Serif JP", "Yu Mincho", serif;
  --sans: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  --shell: min(1180px, calc(100vw - 64px));
  --header-height: 72px;
  --section-space: clamp(84px, 9vw, 132px);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

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

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--body);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.8;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

a,
button {
  -webkit-tap-highlight-color: transparent;
}

[hidden] {
  display: none !important;
}

.page-shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 300;
  padding: 10px 14px;
  color: #fff;
  background: var(--cta);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.member-bar {
  display: grid;
  min-height: 36px;
  place-items: center;
  color: #fff;
  background: var(--cta);
}

.member-bar p {
  margin: 0;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: .05em;
}

.member-bar strong {
  font-weight: 600;
}

.member-bar span {
  margin-inline: 9px;
  color: #fff;
}

.campaign-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(15px);
  transition: background .3s ease, border-color .3s ease;
}

.campaign-header.is-scrolled {
  border-color: var(--line);
  background: rgba(255, 255, 255, .96);
}

.campaign-header__inner {
  display: flex;
  height: 100%;
  align-items: center;
  gap: 34px;
}

.campaign-brand {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  color: var(--ink);
  font-family: Georgia, var(--serif);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: .01em;
  text-decoration: none;
  white-space: nowrap;
}

.campaign-brand small {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.campaign-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
  margin-left: auto;
}

.campaign-nav a {
  position: relative;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.campaign-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}

.campaign-nav a:hover::after,
.campaign-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid var(--ink);
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: color .25s ease, background .25s ease, transform .25s ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  color: #fff;
  background: var(--ink);
  transform: translateY(-2px);
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 14px 24px;
  border: 1px solid var(--cta);
  border-radius: 4px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s ease;
}

.button--dark {
  color: #fff;
  background: var(--cta);
}

.button--dark:hover,
.button--dark:focus-visible {
  border-color: var(--cta-hover);
  background: var(--cta-hover);
  transform: translateY(-2px);
}

.section {
  padding-block: var(--section-space);
}

.section-label {
  margin: 0 0 22px;
  color: var(--cta);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(38px, 4.2vw, 60px);
  font-weight: 500;
  letter-spacing: -.06em;
  line-height: 1.48;
}

h2 em {
  color: var(--accent);
  font-style: normal;
}

.hero {
  padding-top: clamp(80px, 9vw, 138px);
  background: #fff;
}

.hero__layout {
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(0, 1.04fr);
  align-items: center;
  gap: clamp(34px, 6vw, 90px);
}

.hero__copy,
.hero__visual,
.section-intro,
.section-heading,
.product-card,
.straight__visual,
.straight__copy,
.choice-list,
.order__heading,
.order__panel,
.notes__body {
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}

.js .hero__copy,
.js .hero__visual,
.js .section-intro,
.js .section-heading,
.js .product-card,
.js .straight__visual,
.js .straight__copy,
.js .choice-list,
.js .order__heading,
.js .order__panel,
.js .notes__body {
  opacity: 0;
  transform: translateY(18px);
}

.js .is-visible {
  opacity: 1;
  transform: none;
}

.hero__kicker {
  margin: 0 0 34px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
}

.hero h1 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(40px, 4.5vw, 72px);
  font-weight: 500;
  letter-spacing: -.08em;
  line-height: 1.35;
}

.hero h1 span {
  display: block;
  white-space: nowrap;
}

.hero h1 em {
  color: var(--accent);
  font-style: normal;
}

.hero__offer {
  display: grid;
  gap: 2px;
  margin-top: 42px;
  padding-left: 18px;
  border-left: 2px solid var(--accent);
}

.hero__offer p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.hero__offer strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 500;
  letter-spacing: -.05em;
  line-height: 1.35;
}

.hero__description {
  margin: 26px 0 0;
  color: var(--body);
  font-family: var(--serif);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.8;
}

.hero__button {
  min-width: 220px;
  margin-top: 34px;
}

.hero__visual {
  position: relative;
  display: flex;
  min-height: clamp(430px, 42vw, 600px);
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 38px;
}

.hero__visual::before {
  position: absolute;
  inset: 9% 0 9% 8%;
  z-index: 0;
  background: var(--beige);
  content: "";
}

.hero-product {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero-product img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.hero-product--se {
  width: 67%;
  aspect-ratio: 1;
  padding: 3%;
  background: #f4f4f4;
}

.hero-product--iron {
  width: 34%;
  aspect-ratio: .86;
  margin: 0 0 5% -7%;
  padding: 4%;
  background: #f4f4f4;
}

.hero-product__fallback,
.product-image__fallback {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(17px, 2vw, 26px);
  line-height: 1.55;
  text-align: center;
}

.hero__visual-note {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
}

.hero__visual-note span {
  color: var(--accent);
  font-size: 10px;
  letter-spacing: .16em;
}

.hero__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(64px, 8vw, 112px);
  border-block: 1px solid var(--line);
}

.hero__facts div {
  display: flex;
  min-height: 78px;
  align-items: center;
  gap: 18px;
  padding-inline: 22px;
  border-right: 1px solid var(--line);
}

.hero__facts div:last-child {
  border-right: 0;
}

.hero__facts span {
  color: var(--muted);
  font-size: 12px;
}

.hero__facts strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
}

.selected {
  padding-bottom: calc(var(--section-space) * .78);
}

.section-intro {
  max-width: 720px;
}

.section-lead {
  margin: 30px 0 0;
  color: var(--body);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.9;
}

.products {
  background: var(--sage);
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 54px;
}

.section-heading__note {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 14px;
}

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

.product-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
}

.product-card__image {
  position: relative;
  display: grid;
  min-height: 0;
  height: clamp(280px, 31vw, 390px);
  place-items: center;
  overflow: hidden;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  mix-blend-mode: multiply;
}

.product-image--se,
.product-image--bx {
  background: #f4f4f4;
}

.product-image--kinujo {
  background: #f4f4f4;
}

.product-card__mark {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  padding: 5px 9px;
  color: var(--cta);
  border: 1px solid rgba(0, 0, 0, .3);
  background: rgba(255, 255, 255, .9);
  font-size: 11px;
  font-weight: 600;
}

.product-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px 24px 26px;
}

.product-card__brand {
  margin: 0;
  color: var(--accent);
  font-family: var(--serif);
  font-size: 17px;
}

.product-card h3 {
  margin: 2px 0 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(24px, 2.1vw, 32px);
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: 1.25;
}

.product-card h3 strong {
  color: var(--accent);
  font-weight: 500;
}

.product-card__role {
  margin: 22px 0 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
}

.product-card__reason {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.product-card__price {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 3px 12px;
  margin-top: auto;
  padding-top: 24px;
}

.product-card__price span {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 13px;
  text-decoration: line-through;
}

.product-card__price strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(32px, 3vw, 42px);
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: 1.2;
}

.product-card__price small {
  padding-bottom: 5px;
  color: var(--muted);
  font-size: 11px;
  white-space: nowrap;
}

.button--product {
  width: 100%;
  min-height: 52px;
  margin-top: 22px;
  padding-inline: 18px;
  color: #fff;
  background: var(--cta);
}

.button--product:hover,
.button--product:focus-visible {
  border-color: var(--cta-hover);
  background: var(--cta-hover);
  transform: translateY(-2px);
}

.section-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 52px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, .25);
}

.section-cta p {
  margin: 0;
  color: var(--body);
  font-size: 15px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--cta);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--accent);
}

.straight {
  background: var(--beige);
}

.straight__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .9fr);
  align-items: center;
  gap: clamp(44px, 8vw, 120px);
}

.straight__visual {
  display: grid;
  min-height: clamp(360px, 42vw, 580px);
  place-items: center;
  background: var(--white);
}

.straight__visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8%;
  mix-blend-mode: multiply;
}

.straight__copy h2 {
  font-size: clamp(38px, 4vw, 58px);
}

.straight__role {
  margin: 28px 0 0;
  color: var(--body);
  font-size: 18px;
}

.straight__name {
  margin: 22px 0 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 20px;
}

.straight__name strong {
  font-weight: 500;
}

.straight__price {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 4px 14px;
  max-width: 360px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.straight__price span {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 13px;
  text-decoration: line-through;
}

.straight__price strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: 1.2;
}

.straight__price small {
  padding-bottom: 6px;
  color: var(--muted);
  font-size: 11px;
}

.straight__copy > .button {
  min-width: 220px;
  margin-top: 30px;
}

.which-one {
  background: var(--paper);
}

.which-one h2 {
  margin-bottom: 48px;
}

.choice-list {
  max-width: 920px;
  border-top: 1px solid var(--line);
}

.choice-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  min-height: 78px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
  transition: color .25s ease, padding .25s ease;
}

.choice-row strong {
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 500;
  letter-spacing: -.03em;
}

.choice-row span {
  color: var(--cta);
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}

.choice-row:hover,
.choice-row:focus-visible {
  padding-inline: 12px;
  color: var(--accent);
}

.choice-row--accent span {
  color: var(--accent);
}

.order {
  color: #fff;
  background: var(--cta);
}

.order__layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(40px, 8vw, 120px);
}

.order .section-label {
  color: #fff;
}

.order h2 {
  color: #fff;
  font-size: clamp(42px, 5vw, 68px);
}

.order h2 em {
  color: #fff;
}

.order__panel {
  padding: clamp(28px, 5vw, 56px);
  color: var(--body);
  background: var(--paper);
}

.order__lead {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.55;
}

.button--wide {
  width: 100%;
  margin-top: 30px;
}

.order__note {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.notes {
  background: var(--paper);
}

.notes__layout {
  display: grid;
  grid-template-columns: minmax(220px, .55fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(40px, 9vw, 150px);
}

.notes h2 {
  font-size: clamp(32px, 3.4vw, 48px);
}

.notes__body p {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
  margin: 0;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.notes__body p:first-child {
  border-top: 1px solid var(--line);
}

.notes__body span {
  color: var(--muted);
  font-size: 13px;
}

.notes__body strong {
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
}

.campaign-footer {
  padding: 44px 0 24px;
  color: var(--muted);
  background: var(--paper);
}

.campaign-footer__top,
.campaign-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.campaign-footer__top {
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}

.campaign-brand--footer {
  color: var(--ink);
}

.campaign-footer p {
  margin: 0;
  font-size: 13px;
}

.campaign-footer__bottom {
  padding-top: 18px;
}

.campaign-footer__bottom > div {
  display: flex;
  gap: 24px;
}

.campaign-footer a:not(.campaign-brand) {
  font-size: 12px;
  text-decoration: none;
}

.campaign-footer a:hover,
.campaign-footer a:focus-visible {
  color: var(--accent);
}

.mobile-fixed-cta {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 200;
  display: none;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 -6px 22px rgba(0, 0, 0, .14);
}

.mobile-fixed-cta.is-visible {
  display: block;
}

.mobile-fixed-cta .button {
  width: 100%;
}

@media (max-width: 1040px) {
  :root {
    --shell: min(100% - 48px, 960px);
  }

  .hero__layout {
    gap: 40px;
  }

  .hero h1 {
    font-size: clamp(40px, 4.4vw, 58px);
  }

  .product-card__content {
    padding-inline: 20px;
  }

  .product-card__role {
    font-size: 16px;
  }
}

@media (max-width: 760px) {
  :root {
    --shell: calc(100% - 32px);
    --header-height: 64px;
    --section-space: 76px;
  }

  html {
    scroll-padding-top: calc(var(--header-height) + 16px);
  }

  body {
    font-size: 15px;
  }

  .member-bar {
    min-height: 34px;
  }

  .member-bar p {
    font-size: 11px;
  }

  .campaign-header__inner {
    gap: 12px;
  }

  .campaign-brand {
    font-size: 15px;
  }

  .campaign-brand small {
    font-size: 7px;
  }

  .campaign-nav {
    display: none;
  }

  .header-cta {
    min-height: 38px;
    margin-left: auto;
    padding: 7px 12px;
    font-size: 12px;
  }

  .hero {
    padding-top: 62px;
  }

  .hero__layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .hero__kicker {
    margin-bottom: 24px;
    font-size: 13px;
  }

  .hero h1 {
    font-size: clamp(34px, 8.6vw, 44px);
    line-height: 1.42;
  }

  .hero__offer {
    margin-top: 32px;
  }

  .hero__offer p {
    font-size: 14px;
  }

  .hero__offer strong {
    font-size: 29px;
  }

  .hero__description {
    margin-top: 20px;
    font-size: 17px;
  }

  .hero__button {
    width: 100%;
    margin-top: 28px;
  }

  .hero__visual {
    min-height: 330px;
    padding-bottom: 30px;
  }

  .hero__visual::before {
    inset: 5% 0 9% 4%;
  }

  .hero-product--se {
    width: 66%;
  }

  .hero-product--iron {
    width: 35%;
  }

  .hero__visual-note {
    right: 2%;
    left: 4%;
    font-size: 10px;
  }

  .hero__facts {
    grid-template-columns: 1fr;
    margin-top: 56px;
  }

  .hero__facts div {
    min-height: 56px;
    justify-content: space-between;
    padding-inline: 14px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero__facts div:last-child {
    border-bottom: 0;
  }

  .hero__facts strong {
    font-size: 17px;
  }

  h2,
  .straight__copy h2,
  .order h2 {
    font-size: clamp(34px, 9vw, 44px);
    line-height: 1.5;
  }

  .section-label {
    margin-bottom: 16px;
    font-size: 11px;
  }

  .section-lead {
    margin-top: 22px;
    font-size: 16px;
  }

  .selected {
    padding-bottom: 58px;
  }

  .section-heading {
    display: block;
    margin-bottom: 34px;
  }

  .section-heading__note {
    margin: 14px 0 0;
    font-size: 13px;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .product-card__image {
    height: 290px;
  }

  .product-card__content {
    padding: 22px 20px 22px;
  }

  .product-card h3 {
    font-size: 28px;
  }

  .product-card__role {
    margin-top: 18px;
    font-size: 17px;
  }

  .product-card__price strong {
    font-size: 37px;
  }

  .section-cta {
    display: block;
    margin-top: 38px;
  }

  .section-cta p {
    margin-bottom: 12px;
  }

  .straight__layout,
  .order__layout,
  .notes__layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .straight__visual {
    min-height: 330px;
  }

  .straight__role {
    margin-top: 20px;
    font-size: 16px;
  }

  .straight__name {
    margin-top: 18px;
    font-size: 18px;
  }

  .straight__price {
    margin-top: 22px;
  }

  .straight__price strong {
    font-size: 37px;
  }

  .straight__copy > .button {
    width: 100%;
    margin-top: 26px;
  }

  .which-one h2 {
    margin-bottom: 30px;
  }

  .choice-row {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 3px;
    min-height: 0;
    padding: 17px 0;
  }

  .choice-row strong {
    font-size: 19px;
  }

  .choice-row span {
    font-size: 14px;
  }

  .choice-row:hover,
  .choice-row:focus-visible {
    padding-inline: 0;
  }

  .order__panel {
    padding: 26px 20px 24px;
  }

  .order__lead {
    font-size: 27px;
  }

  .order__note {
    font-size: 12px;
  }

  .notes__layout {
    gap: 26px;
  }

  .notes__body p {
    grid-template-columns: 74px 1fr;
    gap: 14px;
    padding: 13px 0;
  }

  .notes__body strong {
    font-size: 14px;
  }

  .campaign-footer__top,
  .campaign-footer__bottom {
    display: block;
  }

  .campaign-footer__top p {
    margin-top: 16px;
  }

  .campaign-footer__bottom > div {
    flex-wrap: wrap;
    gap: 8px 18px;
    margin-top: 12px;
  }

  .mobile-fixed-cta .button {
    min-height: 52px;
    font-size: 14px;
  }
}

@media (max-width: 390px) {
  .hero h1 {
    font-size: 34px;
  }

  .hero__offer strong {
    font-size: 27px;
  }

  .product-card h3 {
    font-size: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* 2026-08-27: monochrome and readability refinement */
:root {
  --paper: #fff;
  --white: #fff;
  --beige: #fff;
  --sage: #f4f4f4;
  --amber: #f4f4f4;
  --ink: #050505;
  --body: #111;
  --muted: #555;
  --cta: #000;
  --cta-hover: #262626;
  --accent: #000;
  --line: #d5d5d5;
}

body {
  color: var(--body);
  background: #fff;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.75;
}

.member-bar {
  background: #000;
}

.member-bar p {
  font-size: 13px;
  font-weight: 600;
}

.member-bar strong {
  font-weight: 800;
}

.member-bar span {
  color: #fff;
}

.campaign-header,
.campaign-header.is-scrolled {
  border-color: var(--line);
  background: rgba(255, 255, 255, .96);
}

.campaign-brand {
  color: #000;
  font-weight: 700;
}

.campaign-brand small {
  color: #555;
  font-weight: 700;
}

.campaign-nav a,
.header-cta {
  color: #000;
  font-size: 15px;
  font-weight: 700;
}

.header-cta {
  border-color: #000;
}

.button {
  min-height: 60px;
  border-color: #000;
  border-radius: 0;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: .02em;
}

.button--dark,
.button--product {
  color: #fff;
  background: #000;
}

.button--dark:hover,
.button--dark:focus-visible,
.button--product:hover,
.button--product:focus-visible {
  border-color: var(--cta-hover);
  background: var(--cta-hover);
}

.section-label {
  margin-bottom: 24px;
  color: #000;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .09em;
}

h2 {
  color: #000;
  font-size: clamp(44px, 4.8vw, 68px);
  font-weight: 700;
  letter-spacing: -.08em;
  line-height: 1.36;
}

h2 em,
.hero h1 em,
.product-card h3 strong,
.choice-row--accent span {
  color: #000;
  font-weight: 700;
}

.hero {
  background: #fff;
}

.hero__kicker {
  margin-bottom: 36px;
  color: #000;
  font-size: 16px;
  font-weight: 800;
}

.hero h1 {
  color: #000;
  font-size: clamp(48px, 5vw, 74px);
  font-weight: 700;
  letter-spacing: -.1em;
  line-height: 1.28;
}

.hero__offer {
  gap: 5px;
  margin-top: 40px;
  padding-left: 22px;
  border-left: 4px solid #000;
}

.hero__offer p {
  color: #555;
  font-size: 16px;
  font-weight: 600;
}

.hero__offer strong {
  display: flex;
  align-items: baseline;
  gap: 12px;
  color: #000;
  font-size: clamp(34px, 3.5vw, 54px);
  font-weight: 800;
  letter-spacing: -.06em;
}

.hero__offer strong span {
  color: #000;
  font-family: var(--sans);
  font-size: .48em;
  font-weight: 800;
  letter-spacing: .05em;
}

.hero__offer strong b {
  font-weight: 900;
}

.hero__description {
  margin-top: 28px;
  color: #111;
  font-size: clamp(19px, 1.6vw, 22px);
  font-weight: 600;
  line-height: 1.8;
}

.hero__visual::before {
  background: #f4f4f4;
}

.hero-product--se,
.hero-product--iron,
.product-image--se,
.product-image--bx,
.product-image--kinujo {
  background: #f4f4f4;
}

.hero__visual-note {
  color: #555;
  font-size: 13px;
  font-weight: 700;
}

.hero__visual-note span {
  color: #000;
  font-size: 12px;
  font-weight: 800;
}

.hero__facts span {
  color: #555;
  font-size: 13px;
  font-weight: 600;
}

.hero__facts strong {
  color: #000;
  font-size: 20px;
  font-weight: 700;
}

.section-lead {
  color: #111;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.85;
}

.products {
  background: #f4f4f4;
}

.section-heading {
  margin-bottom: 58px;
}

.section-heading__note {
  color: #555;
  font-size: 16px;
  font-weight: 600;
}

.product-grid {
  gap: 24px;
}

.product-card {
  border-color: #000;
  background: #fff;
}

.product-card__image {
  background: #f4f4f4;
}

.product-image--kinujo img {
  transform: scale(1.45);
  transform-origin: center;
}

.product-card__mark {
  padding: 6px 10px;
  color: #000;
  border-color: #000;
  background: #fff;
  font-size: 13px;
  font-weight: 800;
}

.product-card__content {
  padding: 28px 26px 30px;
}

.product-card__brand {
  color: #000;
  font-size: 19px;
  font-weight: 700;
}

.product-card h3 {
  margin-top: 4px;
  color: #000;
  font-size: clamp(30px, 2.4vw, 38px);
  font-weight: 700;
  line-height: 1.25;
}

.product-card__role {
  margin-top: 24px;
  color: #000;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.55;
}

.product-card__reason {
  margin-top: 9px;
  color: #555;
  font-size: 16px;
  font-weight: 600;
}

.product-card__price {
  display: block;
  padding-top: 26px;
}

.product-card__price span,
.straight__price span {
  display: block;
  color: #555;
  font-size: 14px;
  font-weight: 600;
}

.product-card__price > div,
.straight__price > div {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}

.product-card__price strong {
  color: #000;
  font-size: clamp(40px, 3.3vw, 50px);
  font-weight: 800;
}

.product-card__price b,
.straight__price b {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 5px 10px;
  color: #fff;
  background: #000;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .04em;
  line-height: 1;
  white-space: nowrap;
}

.product-card__price small,
.straight__price small {
  display: block;
  padding: 0;
  color: #555;
  font-size: 13px;
  font-weight: 600;
}

.button--product {
  min-height: 58px;
  margin-top: 24px;
}

.section-cta {
  margin-top: 56px;
  border-top-color: var(--line);
}

.section-cta p,
.text-link {
  color: #000;
  font-size: 16px;
  font-weight: 700;
}

.text-link:hover,
.text-link:focus-visible {
  color: #555;
}

.straight {
  background: #fff;
}

.straight__visual {
  background: #f4f4f4;
}

.straight__copy h2 {
  font-size: clamp(44px, 4.6vw, 66px);
}

.straight__role {
  margin-top: 30px;
  color: #000;
  font-size: 20px;
  font-weight: 700;
}

.straight__description {
  margin: 16px 0 0;
  color: #111;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.8;
}

.straight__name {
  margin-top: 22px;
  color: #000;
  font-size: 22px;
  font-weight: 600;
}

.straight__name strong {
  font-weight: 700;
}

.straight__price {
  display: block;
  max-width: 400px;
  margin-top: 28px;
  padding-top: 24px;
}

.straight__price strong {
  color: #000;
  font-size: 50px;
  font-weight: 800;
}

.straight__copy > .button {
  min-height: 60px;
  margin-top: 32px;
}

.which-one {
  background: #fff;
}

.choice-row strong {
  color: #000;
  font-size: clamp(20px, 2.1vw, 27px);
  font-weight: 700;
}

.choice-row span {
  color: #000;
  font-size: 16px;
  font-weight: 800;
}

.choice-row:hover,
.choice-row:focus-visible {
  color: #555;
}

.order {
  background: #000;
}

.order .section-label {
  color: #fff;
}

.order h2 {
  color: #fff;
  font-size: clamp(46px, 5.3vw, 74px);
  font-weight: 700;
}

.order h2 em {
  color: #fff;
  font-weight: 800;
}

.order__panel {
  background: #fff;
}

.order__lead {
  color: #000;
  font-size: clamp(26px, 2.6vw, 38px);
  font-weight: 700;
}

.order__note {
  color: #555;
  font-size: 14px;
  font-weight: 600;
}

.notes,
.campaign-footer {
  background: #fff;
}

.notes h2 {
  font-size: clamp(36px, 3.7vw, 52px);
  font-weight: 700;
}

.notes__body span {
  color: #555;
  font-size: 14px;
  font-weight: 700;
}

.notes__body strong {
  color: #000;
  font-size: 17px;
  font-weight: 600;
}

.campaign-footer {
  color: #555;
}

.campaign-footer p,
.campaign-footer a:not(.campaign-brand) {
  font-size: 14px;
  font-weight: 500;
}

.campaign-footer a:hover,
.campaign-footer a:focus-visible {
  color: #000;
}

.mobile-fixed-cta {
  padding-top: 10px;
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 -6px 22px rgba(0, 0, 0, .14);
}

@media (max-width: 1040px) {
  .hero h1 {
    font-size: clamp(46px, 5.8vw, 64px);
  }

  .product-card__content {
    padding-inline: 22px;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 16px;
  }

  .member-bar p {
    font-size: 12px;
  }

  .campaign-nav {
    display: none;
  }

  .header-cta {
    font-size: 13px;
  }

  .hero__kicker {
    margin-bottom: 26px;
    font-size: 15px;
  }

  .hero h1 {
    font-size: clamp(35px, 9.2vw, 46px);
    font-weight: 700;
    line-height: 1.32;
  }

  .hero__offer {
    margin-top: 34px;
    padding-left: 16px;
    border-left-width: 3px;
  }

  .hero__offer p {
    font-size: 15px;
  }

  .hero__offer strong {
    gap: 8px;
    font-size: 32px;
  }

  .hero__offer strong span {
    font-size: .5em;
  }

  .hero__description {
    margin-top: 22px;
    font-size: 18px;
    font-weight: 600;
  }

  .button {
    min-height: 58px;
    font-size: 16px;
  }

  h2,
  .straight__copy h2,
  .order h2 {
    font-size: clamp(36px, 9.4vw, 48px);
    line-height: 1.4;
  }

  .section-label {
    margin-bottom: 18px;
    font-size: 13px;
  }

  .section-lead {
    margin-top: 24px;
    font-size: 17px;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading__note {
    margin-top: 16px;
    font-size: 15px;
  }

  .product-card__image {
    height: 300px;
  }

  .product-image--kinujo img {
    transform: scale(1.4);
  }

  .product-card__content {
    padding: 24px 22px 24px;
  }

  .product-card__brand {
    font-size: 19px;
  }

  .product-card h3 {
    font-size: 31px;
  }

  .product-card__role {
    margin-top: 20px;
    font-size: 18px;
  }

  .product-card__reason {
    font-size: 15px;
  }

  .product-card__price {
    padding-top: 28px;
  }

  .product-card__price strong {
    font-size: 40px;
  }

  .product-card__price b,
  .straight__price b {
    min-height: 32px;
    font-size: 13px;
  }

  .product-card__price small,
  .straight__price small {
    font-size: 12px;
  }

  .button--product {
    min-height: 56px;
    margin-top: 24px;
  }

  .straight__role {
    margin-top: 22px;
    font-size: 18px;
  }

  .straight__description {
    margin-top: 14px;
    font-size: 17px;
  }

  .straight__name {
    margin-top: 20px;
    font-size: 19px;
  }

  .straight__price {
    margin-top: 24px;
    padding-top: 22px;
  }

  .straight__price strong {
    font-size: 40px;
  }

  .straight__copy > .button {
    min-height: 58px;
    margin-top: 28px;
  }

  .choice-row strong {
    font-size: 20px;
  }

  .choice-row span {
    font-size: 15px;
  }

  .order__lead {
    font-size: 29px;
  }

  .order__note {
    font-size: 13px;
  }

  .notes__body span {
    font-size: 13px;
  }

  .notes__body strong {
    font-size: 15px;
  }

  .mobile-fixed-cta .button {
    min-height: 56px;
    font-size: 15px;
  }
}

@media (max-width: 390px) {
  .hero h1 {
    font-size: 35px;
  }

  .hero__offer strong {
    font-size: 30px;
  }

  .product-card h3 {
    font-size: 29px;
  }
}

/* 2026-08-27: dedicated dryer explanations */
.dryer-guide {
  background: #f4f4f4;
}

.dryer-guide__heading {
  margin-bottom: 54px;
}

.dryer-guide__list {
  max-width: 1080px;
  border-top: 1px solid #000;
}

.dryer-guide__item {
  display: grid;
  grid-template-columns: 52px minmax(240px, .82fr) minmax(0, 1.5fr) 112px;
  align-items: center;
  gap: 28px;
  min-height: 170px;
  padding: 28px 22px;
  border-bottom: 1px solid #000;
  background: #fff;
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}

.js .dryer-guide__item {
  opacity: 0;
  transform: translateY(18px);
}

.js .dryer-guide__item.is-visible {
  opacity: 1;
  transform: none;
}

.dryer-guide__number {
  align-self: start;
  margin: 3px 0 0;
  color: #555;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .12em;
}

.dryer-guide__brand {
  margin: 0;
  color: #000;
  font-size: 17px;
  font-weight: 700;
}

.dryer-guide__product h3 {
  margin: 3px 0 0;
  color: #000;
  font-family: var(--serif);
  font-size: clamp(27px, 2.4vw, 37px);
  font-weight: 700;
  letter-spacing: -.06em;
  line-height: 1.25;
}

.dryer-guide__product h3 strong {
  font-weight: 800;
}

.dryer-guide__copy {
  min-width: 0;
}

.dryer-guide__lead {
  margin: 0;
  color: #000;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.55;
}

.dryer-guide__copy > p:not(.dryer-guide__lead) {
  max-width: 520px;
  margin: 9px 0 0;
  color: #111;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
}

.dryer-guide__link {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
  padding-bottom: 5px;
  border-bottom: 2px solid #000;
  color: #000;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity .25s ease;
}

.dryer-guide__link:hover,
.dryer-guide__link:focus-visible {
  opacity: .55;
}

@media (max-width: 1040px) {
  .dryer-guide__item {
    grid-template-columns: 42px minmax(210px, .82fr) minmax(0, 1.35fr) 108px;
    gap: 20px;
    padding-inline: 18px;
  }

  .dryer-guide__product h3 {
    font-size: 29px;
  }

  .dryer-guide__lead {
    font-size: 18px;
  }
}

@media (max-width: 760px) {
  .dryer-guide__heading {
    margin-bottom: 36px;
  }

  .dryer-guide__item {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 4px 12px;
    min-height: 0;
    padding: 23px 18px 25px;
  }

  .dryer-guide__number {
    grid-row: 1 / span 3;
    margin-top: 5px;
    font-size: 13px;
  }

  .dryer-guide__brand {
    font-size: 17px;
  }

  .dryer-guide__product h3 {
    margin-top: 2px;
    font-size: 29px;
  }

  .dryer-guide__copy {
    grid-column: 2;
    margin-top: 13px;
  }

  .dryer-guide__lead {
    font-size: 18px;
  }

  .dryer-guide__copy > p:not(.dryer-guide__lead) {
    margin-top: 8px;
    font-size: 16px;
  }

  .dryer-guide__link {
    grid-column: 2;
    justify-self: start;
    margin-top: 16px;
    font-size: 14px;
  }
}

@media (max-width: 390px) {
  .dryer-guide__product h3 {
    font-size: 27px;
  }

  .dryer-guide__lead {
    font-size: 17px;
  }
}

/* 2026-08-27: photo-led dryer explanations */
.dryer-guide__list {
  max-width: none;
  border-top-color: #000;
}

.dryer-guide__item {
  grid-template-columns: minmax(320px, .92fr) minmax(0, 1.08fr);
  align-items: stretch;
  gap: 0;
  min-height: 0;
  padding: 0;
  border-bottom-color: #000;
  background: #fff;
}

.dryer-guide__item:nth-child(even) .dryer-guide__visual {
  order: 2;
}

.dryer-guide__item:nth-child(even) .dryer-guide__copy {
  order: 1;
}

.dryer-guide__visual {
  display: grid;
  height: auto;
  min-height: clamp(350px, 36vw, 520px);
  align-self: stretch;
  place-items: center;
  overflow: hidden;
  background: #f4f4f4;
}

.dryer-guide__visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: clamp(28px, 5vw, 72px);
  mix-blend-mode: multiply;
}

.dryer-guide__visual.product-image--kinujo img {
  transform: scale(1.55);
}

.dryer-guide__copy {
  display: flex;
  min-width: 0;
  min-height: clamp(350px, 36vw, 520px);
  flex-direction: column;
  justify-content: center;
  padding: clamp(36px, 5vw, 78px);
  background: #fff;
}

.dryer-guide__product {
  position: relative;
  margin-bottom: 30px;
  padding-right: 48px;
}

.dryer-guide__number {
  position: absolute;
  top: 2px;
  right: 0;
  margin: 0;
  color: #555;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .12em;
}

.dryer-guide__brand {
  color: #000;
  font-size: 18px;
  font-weight: 700;
}

.dryer-guide__product h3 {
  margin-top: 4px;
  color: #000;
  font-size: clamp(30px, 2.7vw, 42px);
  font-weight: 700;
  line-height: 1.22;
}

.dryer-guide__lead {
  margin: 0;
  color: #000;
  font-size: clamp(21px, 2vw, 27px);
  font-weight: 800;
  line-height: 1.5;
}

.dryer-guide__copy > p.dryer-guide__body {
  max-width: 540px;
  margin: 12px 0 0;
  color: #111;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.9;
}

.dryer-guide__features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.dryer-guide__features li {
  padding: 6px 10px;
  border: 1px solid #000;
  color: #000;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
}

.dryer-guide__link {
  align-self: flex-start;
  justify-self: auto;
  margin-top: 30px;
  color: #000;
  font-size: 15px;
  font-weight: 800;
}

.dryer-guide__note {
  margin: 14px 0 0;
  color: #555;
  font-size: 12px;
  font-weight: 500;
}

@media (max-width: 1040px) {
  .dryer-guide__item {
    grid-template-columns: minmax(280px, .9fr) minmax(0, 1.1fr);
  }

  .dryer-guide__copy {
    padding: 38px 34px;
  }

  .dryer-guide__product h3 {
    font-size: 32px;
  }

  .dryer-guide__lead {
    font-size: 21px;
  }
}

@media (max-width: 760px) {
  .dryer-guide__item,
  .dryer-guide__item:nth-child(even) {
    display: grid;
    grid-template-columns: 1fr;
  }

  .dryer-guide__item:nth-child(even) .dryer-guide__visual,
  .dryer-guide__item:nth-child(even) .dryer-guide__copy {
    order: initial;
  }

  .dryer-guide__visual,
  .dryer-guide__copy {
    grid-column: 1;
  }

  .dryer-guide__visual {
    height: 300px;
    min-height: 300px;
  }

  .dryer-guide__visual img {
    padding: 26px;
  }

  .dryer-guide__visual.product-image--kinujo img {
    transform: scale(1.45);
  }

  .dryer-guide__copy {
    min-height: 0;
    padding: 28px 22px 32px;
  }

  .dryer-guide__product {
    margin-bottom: 24px;
  }

  .dryer-guide__brand {
    font-size: 17px;
  }

  .dryer-guide__product h3 {
    font-size: 30px;
  }

  .dryer-guide__lead {
    font-size: 19px;
  }

  .dryer-guide__copy > p.dryer-guide__body {
    margin-top: 10px;
    font-size: 16px;
  }

  .dryer-guide__features {
    margin-top: 20px;
  }

  .dryer-guide__link {
    margin-top: 26px;
    font-size: 14px;
  }

  .dryer-guide__note {
    margin-top: 12px;
    font-size: 11px;
  }
}

@media (max-width: 390px) {
  .dryer-guide__product h3 {
    font-size: 28px;
  }

  .dryer-guide__lead {
    font-size: 18px;
  }
}
