:root {
  --ink: #111111;
  --text: #2f3337;
  --muted: #6d737a;
  --paper: #ffffff;
  --white: #ffffff;
  --mist: #f6f7f8;
  --soft: #eef0f2;
  --charcoal: #1f1f1f;
  --line: rgba(17, 17, 17, .12);
  --line-strong: rgba(17, 17, 17, .2);
  --shadow: 0 22px 60px rgba(17, 17, 17, .1);
  --soft-shadow: 0 12px 34px rgba(17, 17, 17, .06);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
  line-height: 1.78;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p { margin: 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(18px);
}

.header-inner {
  max-width: 1220px;
  margin: 0 auto;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 190px;
}

.brand img {
  width: min(238px, 42vw);
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
}

.nav a {
  position: relative;
  padding: 8px 12px;
  color: var(--ink);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 4px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .24s ease;
}

.nav a:hover::after { transform: scaleX(1); }

.nav .nav-cta {
  margin-left: 8px;
  padding: 9px 18px;
  background: var(--ink);
  color: #fff;
  clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
}

.nav .nav-cta::after { display: none; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: 1px solid var(--line-strong);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  flex-direction: column;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.wrap {
  width: min(1160px, calc(100% - 44px));
  margin: 0 auto;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 73px);
  background:
    linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,.95) 47%, rgba(246,247,248,.94) 100%),
    url("/fmai-assets/hero-bg.jpg") center / cover;
  color: var(--ink);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(17, 17, 17, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, .045) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 28%, #000 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1220px, calc(100% - 56px));
  min-height: 760px;
  padding: 86px 0 88px;
  display: grid;
  grid-template-columns: minmax(390px, .45fr) minmax(0, .55fr);
  gap: 64px;
  align-items: start;
}

.hero-copy {
  padding-top: 52px;
  min-width: 0;
  animation: fadeUp .72s ease both;
}

.eyebrow {
  margin: 0 0 15px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 9px;
  border: 1px solid currentColor;
  box-shadow: 5px -5px 0 #fff, 5px -5px 0 1px currentColor;
  vertical-align: 1px;
}

h1, h2, h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.42;
  letter-spacing: 0;
}

h1 {
  max-width: 680px;
  font-size: clamp(44px, 4vw, 62px);
}

.hero h1 {
  color: #061a39;
  line-height: 1.24;
}

h2 { font-size: clamp(27px, 3.35vw, 40px); }
h3 { font-size: 19px; }

.hero-lead {
  max-width: 520px;
  margin-top: 22px;
  color: var(--text);
  font-size: 17px;
  overflow-wrap: anywhere;
}

.lead {
  margin-top: 16px;
  color: var(--muted);
  font-size: 16px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--line-strong);
  background: #fff;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.45;
  cursor: pointer;
  padding: 12px 24px;
  clip-path: polygon(14px 0, 100% 0, calc(100% - 14px) 100%, 0 100%);
  transition: transform .24s ease, background .24s ease, color .24s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn.primary {
  border-color: #061a39;
  background: #061a39;
  color: #fff;
  box-shadow: 0 18px 36px rgba(6, 26, 57, .18);
}

.hero .btn.primary {
  max-width: 430px;
  min-width: 340px;
  font-size: 16px;
  letter-spacing: 0;
}

.hero .btn.primary::after {
  content: ">";
  margin-left: 12px;
  font-weight: 500;
}

.btn.primary:hover { background: var(--charcoal); }
.btn.ghost { background: transparent; color: var(--ink); }
.dark .btn.ghost { border-color: rgba(255, 255, 255, .42); color: #fff; }
.dark .btn.primary { background: #fff; color: var(--ink); border-color: #fff; box-shadow: none; }

.hero-upload {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
  max-width: 430px;
}

.upload-step {
  display: inline-flex;
  margin-top: 30px;
  color: #061a39;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
}

.upload-card {
  display: grid;
  place-items: center;
  min-height: 166px;
  border: 1px solid rgba(6, 26, 57, .08);
  background: #fff;
  box-shadow: 0 16px 36px rgba(6, 26, 57, .08);
  opacity: 0;
  animation: cardReveal .72s .25s ease both;
}

.upload-card:nth-child(2) { animation-delay: .4s; }

.upload-card img {
  width: 80%;
  height: 132px;
  object-fit: contain;
}

.upload-caption {
  margin-top: 12px;
  color: var(--ink);
  font-weight: 600;
  font-size: 14px;
}

.hero-panel {
  position: relative;
  min-width: 0;
  min-height: 580px;
  animation: fadeUp .72s .18s ease both;
}

.hero-flow-slider {
  position: relative;
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 34px;
  align-items: stretch;
}

.hero-flow-slider::before {
  content: "";
  position: absolute;
  left: calc(50% - 26px);
  top: 50%;
  width: 52px;
  border-top: 1px solid rgba(6, 26, 57, .3);
  opacity: 0;
  animation: lineReveal .75s .58s ease both;
}

.hero-flow-slider::after {
  content: ">";
  position: absolute;
  left: calc(50% - 7px);
  top: calc(50% - 23px);
  color: rgba(6, 26, 57, .55);
  font-size: 26px;
  font-weight: 300;
  opacity: 0;
  animation: lineReveal .75s .75s ease both;
}

.flow-slide {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid rgba(6, 26, 57, .09);
  border-radius: 6px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 26px 64px rgba(6, 26, 57, .11);
  opacity: 0;
  transform: translateY(24px) scale(.98);
  animation: slideIn .72s ease both, slideBreathe 9s ease-in-out infinite;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.flow-step {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #061a39;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
}

.flow-slide h3 {
  color: #061a39;
  font-size: 17px;
  line-height: 1.55;
}

.flow-slide-product {
  left: 0;
  top: 146px;
  width: 310px;
  padding: 18px;
  animation-delay: .25s, 1.3s;
}

.flow-product-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 14px 0 12px;
}

.flow-product-pair img {
  width: 100%;
  height: 250px;
  object-fit: contain;
  background: #f7f8fa;
}

.flow-slide-model {
  width: 100%;
  padding: 18px;
  animation-delay: .72s, 1.75s;
}

.flow-slide-model .flow-step,
.flow-slide-model h3 {
  margin-left: 0;
}

.flow-slide-model img {
  width: 100%;
  margin: 12px 0 14px;
  aspect-ratio: 1 / 1.05;
  object-fit: cover;
  border-radius: 4px;
}

.flow-slide-content {
  width: 100%;
  padding: 18px;
  z-index: 2;
  animation-delay: 1.08s, 2.1s;
}

.content-preview {
  display: grid;
  grid-template-rows: auto 1fr auto;
  margin-top: 12px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.content-preview h3 {
  font-size: 17px;
  margin-bottom: 12px;
}

.content-preview img {
  width: 100%;
  aspect-ratio: 1 / 1.05;
  object-fit: cover;
  border-radius: 4px;
}

.content-preview p {
  display: grid;
  gap: 7px;
  margin-top: 12px;
}

.content-preview p span {
  display: block;
  height: 5px;
  border-radius: 999px;
  background: #d9dde3;
}

.content-preview p span:nth-child(1) { width: 92%; }
.content-preview p span:nth-child(2) { width: 76%; }
.content-preview p span:nth-child(3) { width: 54%; }

.hero-sequence-slider {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-height: 580px;
  overflow: hidden;
  border: 1px solid rgba(6, 26, 57, .08);
  border-radius: 6px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 28px 76px rgba(6, 26, 57, .1);
}

.hero-sequence-slider::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(6, 26, 57, .06);
  pointer-events: none;
}

.sequence-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 18px;
  padding: 32px;
  background: rgba(255, 255, 255, .94);
  opacity: 0;
  transform: translateX(64px);
  animation: sequenceSlide 15s ease-in-out infinite;
}

.sequence-slide-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.sequence-note {
  color: rgba(6, 26, 57, .48);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.sequence-slide h3 {
  color: #061a39;
  font-size: 23px;
  line-height: 1.45;
}

.sequence-slide img {
  width: 100%;
  min-height: 0;
  object-fit: cover;
}

.sequence-slide-product {
  animation-delay: 0s;
}

.sequence-slide-article,
.sequence-slide-model {
  animation-delay: 5s;
}

.sequence-slide-instagram,
.sequence-slide-content {
  animation-delay: 10s;
}

.sequence-product-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
  min-height: 0;
}

.sequence-product-stage {
  display: grid;
  align-items: stretch;
  min-height: 0;
}

.sequence-product-pair img {
  height: 100%;
  min-height: 0;
  object-fit: contain;
  background: #f6f7f8;
  border: 1px solid rgba(6, 26, 57, .06);
}

.scene-layout {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(220px, .28fr);
  gap: 20px;
  align-items: stretch;
  min-height: 0;
}

.scene-layout img {
  height: 100%;
  min-height: 0;
  object-fit: contain;
  object-position: center;
  background: #f6f7f8;
  border-radius: 4px;
}

.scene-copy {
  display: flex;
  align-items: flex-end;
  padding: 22px;
  border: 1px solid rgba(6, 26, 57, .08);
  background: #f7f8fa;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.article-preview {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(6, 26, 57, .08);
  border-radius: 4px;
  background: #fff;
}

.article-preview figure {
  margin: 0;
  min-height: 0;
}

.article-preview img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: 62% 24%;
}

.article-preview-body {
  padding: 18px 20px 20px;
}

.article-preview-body span {
  display: inline-flex;
  margin-bottom: 8px;
  color: rgba(6, 26, 57, .62);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
}

.article-preview-body h3 {
  font-size: 20px;
  line-height: 1.48;
}

.article-preview-body p {
  display: grid;
  gap: 7px;
  margin-top: 14px;
}

.article-preview-body i {
  display: block;
  height: 5px;
  border-radius: 999px;
  background: #d9dde3;
}

.article-preview-body i:nth-child(1) { width: 92%; }
.article-preview-body i:nth-child(2) { width: 72%; }
.article-preview-body i:nth-child(3) { width: 48%; }

.sequence-slide-content > h3 {
  font-size: 21px;
}

.instagram-preview {
  justify-self: center;
  width: min(100%, 500px);
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(6, 26, 57, .1);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(6, 26, 57, .08);
}

.instagram-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px;
  color: #061a39;
  font-size: 12px;
  font-weight: 800;
}

.instagram-bar::before {
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: url("/fmai-assets/hero-product-black-top.jpg") center / cover;
  border: 1px solid rgba(6, 26, 57, .1);
}

.instagram-bar span {
  margin-right: auto;
}

.instagram-bar i,
.instagram-bar i::before,
.instagram-bar i::after {
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #061a39;
}

.instagram-bar i {
  position: relative;
}

.instagram-bar i::before,
.instagram-bar i::after {
  content: "";
  position: absolute;
  top: 0;
}

.instagram-bar i::before { left: -8px; }
.instagram-bar i::after { right: -8px; }

.instagram-preview img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center center;
}

.instagram-preview p {
  padding: 14px 16px 18px;
  color: var(--text);
  font-size: 13px;
  line-height: 1.65;
}

.sequence-slide-instagram > h3 {
  font-size: 21px;
}

.sequence-dots {
  position: absolute;
  right: 34px;
  bottom: 24px;
  z-index: 4;
  display: flex;
  gap: 8px;
}

.sequence-dots button {
  appearance: none;
  width: 34px;
  height: 2px;
  padding: 0;
  border: 0;
  background: rgba(6, 26, 57, .18);
  overflow: hidden;
  cursor: pointer;
}

.sequence-dots button::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #061a39;
  transform: scaleX(0);
  transform-origin: left;
  animation: sequenceDot 15s linear infinite;
}

.sequence-dots button:nth-child(2)::before { animation-delay: 5s; }
.sequence-dots button:nth-child(3)::before { animation-delay: 10s; }

.hero-sequence-slider.is-manual .sequence-slide {
  animation: none;
  opacity: 0;
  transform: translateX(44px);
  transition: opacity .34s ease, transform .34s ease;
}

.hero-sequence-slider.is-manual .sequence-slide.is-active {
  z-index: 3;
  opacity: 1;
  transform: translateX(0);
}

.hero-sequence-slider.is-manual .sequence-dots button::before {
  animation: none;
  transform: scaleX(0);
  transition: transform .24s ease;
}

.hero-sequence-slider.is-manual .sequence-dots button.is-active::before {
  transform: scaleX(1);
}

.media-board {
  position: relative;
  min-height: 650px;
}

.media-board::after {
  content: "";
  position: absolute;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .65);
  box-shadow: var(--soft-shadow);
}

.media-board::after {
  right: 10px;
  top: 18px;
  width: 100px;
  height: 100px;
  background: #fff;
}

.product-frame,
.floating-card {
  position: absolute;
  z-index: 1;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.product-frame {
  left: 18px;
  top: 52px;
  width: 56%;
  padding: 14px;
  opacity: 0;
  animation: cardReveal .72s .2s ease both, floatSlow 7s 1.2s ease-in-out infinite;
}

.product-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: contain;
}

.product-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  align-items: stretch;
}

.product-pair img {
  min-height: 230px;
  background: #f7f7f7;
}

.product-frame span,
.mini-label {
  display: inline-block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
}

.product-frame span { margin-top: 10px; }

.floating-card {
  padding: 16px;
  opacity: 0;
  animation: cardReveal .72s .5s ease both, floatSlow 7s 1.45s ease-in-out infinite;
}

.floating-card p,
.floating-card strong {
  display: block;
  margin-top: 8px;
  color: var(--text);
  font-size: 13px;
  line-height: 1.6;
}

.article-card {
  left: 110px;
  top: 0;
  width: 300px;
  padding: 16px;
  border-radius: 8px;
  animation-delay: .65s, 1.65s;
}

.article-card h3 {
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.55;
}

.article-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 12px;
  padding: 10px;
  background: #f7f8fa;
}

.article-visual img {
  width: 100%;
  height: 120px;
  object-fit: contain;
}

.mock-lines {
  display: grid;
  gap: 7px;
  margin-top: 12px;
}

.mock-lines span {
  display: block;
  height: 5px;
  border-radius: 999px;
  background: #d9dde3;
}

.mock-lines span:nth-child(1) { width: 92%; }
.mock-lines span:nth-child(2) { width: 78%; }
.mock-lines span:nth-child(3) { width: 56%; }

.model-card {
  right: 0;
  top: 24px;
  width: 220px;
  padding: 8px;
  border-radius: 8px;
  animation-delay: .9s, 1.9s;
}

.model-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.model-card .mini-label { margin-top: 8px; }

.insta-card {
  left: 110px;
  bottom: 28px;
  width: 270px;
  padding: 8px;
  border-radius: 8px;
  animation-delay: 1.15s, 2.15s;
}

.insta-head {
  display: grid;
  grid-template-columns: 22px 1fr 20px;
  gap: 8px;
  align-items: center;
  margin-bottom: 8px;
  font-size: 12px;
}

.insta-head span {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: url("/fmai-assets/hero-model-black-skirt.jpg") center / cover;
}

.insta-head b {
  width: 18px;
  height: 3px;
  border-radius: 999px;
  background: #111;
  box-shadow: 0 6px 0 #111, 0 12px 0 #111;
}

.insta-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.insta-icons {
  display: flex;
  justify-content: space-between;
  color: #111;
  font-size: 15px;
  line-height: 1.2;
  margin-top: 8px;
}

.insta-icons em {
  color: #4771b3;
  font-style: normal;
}

.insta-card .mini-label { margin-top: 8px; }

.shop-card {
  right: 0;
  bottom: 48px;
  width: 320px;
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 18px;
  align-items: center;
  border-radius: 8px;
  animation-delay: 1.38s, 2.38s;
}

.shop-card img {
  width: 118px;
  height: 150px;
  object-fit: contain;
  background: #f7f7f7;
}

.shop-card strong {
  margin-top: 0;
  color: var(--ink);
  font-size: 14px;
}

.price {
  margin-top: 13px;
  color: var(--ink);
  font-size: 14px;
}

.color-dots {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.color-dots i {
  width: 18px;
  height: 18px;
  border: 1px solid #d8d8d8;
  border-radius: 999px;
  background: #f4f1ea;
}

.color-dots i:nth-child(2) { background: #c9b8a3; }
.color-dots i:nth-child(3) { background: #000; }

.cart-button {
  display: inline-flex;
  justify-content: center;
  width: 150px;
  margin-top: 14px;
  padding: 9px 14px;
  background: #061a39;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.flow-line {
  position: absolute;
  left: 0;
  top: 190px;
  width: 168px;
  height: 320px;
  border: 2px dashed rgba(44, 94, 162, .52);
  border-left: 0;
  border-radius: 0 14px 14px 0;
  opacity: 0;
  animation: lineReveal .8s .48s ease both;
}

.flow-line::before,
.flow-line::after {
  content: "";
  position: absolute;
  right: -8px;
  width: 13px;
  height: 13px;
  border-radius: 999px;
  background: #6b8ab8;
}

.flow-line::before { top: -8px; }
.flow-line::after { bottom: -8px; }

.hero-anchor {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: #050505;
}

.hero-anchor a {
  min-height: 96px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  padding: 18px 28px;
  color: #fff;
  background: #111;
  clip-path: polygon(24px 0, 100% 0, calc(100% - 24px) 100%, 0 100%);
  transition: background .24s ease, transform .24s ease;
}

.hero-anchor a:nth-child(even) { background: #fff; color: var(--ink); }
.hero-anchor a:hover { background: #2b2b2b; color: #fff; transform: translateY(-4px); }

.hero-anchor span {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  color: currentColor;
  opacity: .56;
}

.section { padding: 92px 0; background: var(--paper); }
.section.white { background: var(--white); }
.section.mist { background: var(--mist); }
.section.dark { background: var(--ink); color: #fff; }

.section.dark h2,
.section.dark h3,
.page-hero h1 { color: #fff; }

.section-head {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(280px, .55fr);
  gap: 30px;
  align-items: end;
  margin-bottom: 38px;
}

.section-head .lead { margin-top: 0; }

.solution-intro {
  max-width: 720px;
  margin-bottom: 38px;
}

.solution-intro h2,
.solution-intro .lead {
  word-break: auto-phrase;
}

.grid { display: grid; gap: 18px; }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid.five { grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }

.card {
  position: relative;
  border: 1px solid var(--line);
  background: #fff;
  padding: 26px;
  box-shadow: var(--soft-shadow);
}

.card::before {
  content: "";
  position: absolute;
  right: 18px;
  top: 18px;
  width: 12px;
  height: 12px;
  border: 1px solid rgba(17, 17, 17, .22);
  background: #fff;
}

.card.highlight {
  border-color: rgba(17, 17, 17, .32);
  background: #fdfdfd;
  box-shadow: var(--shadow);
}

.num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border: 1px solid var(--ink);
  background: #fff;
  color: var(--ink);
  font-weight: 900;
  font-size: 13px;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}

.small {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

.problem-section {
  position: relative;
  overflow: hidden;
}

.problem-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(17, 17, 17, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, .035) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(90deg, #000 0%, #000 52%, transparent 100%);
  pointer-events: none;
}

.problem-section .wrap {
  position: relative;
  z-index: 1;
}

.problem-layout {
  display: grid;
  grid-template-columns: minmax(420px, .92fr) minmax(560px, 1fr);
  gap: 58px;
  align-items: start;
}

.problem-statement {
  position: sticky;
  top: 116px;
}

.problem-statement h2 {
  max-width: 720px;
  font-size: clamp(30px, 3.1vw, 44px);
  line-height: 1.42;
}

.problem-statement .lead {
  max-width: 620px;
  margin-top: 22px;
}

.problem-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.problem-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  min-height: 162px;
  padding: 22px;
  border: 1px solid rgba(6, 26, 57, .12);
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 14px 36px rgba(6, 26, 57, .045);
  cursor: pointer;
  transition: border-color .24s ease, box-shadow .24s ease, transform .24s ease;
}

.problem-item:nth-child(5) {
  grid-column: 1 / -1;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 22px;
  min-height: 118px;
  align-items: start;
}

.problem-item::after {
  content: "+";
  position: absolute;
  right: 20px;
  bottom: 16px;
  color: rgba(6, 26, 57, .62);
  font-size: 18px;
  font-weight: 500;
}

.problem-item:hover,
.problem-item:focus-visible {
  border-color: rgba(6, 26, 57, .28);
  box-shadow: 0 18px 42px rgba(6, 26, 57, .075);
  outline: none;
}

.problem-item.is-open::after {
  content: "-";
}

.problem-item span {
  color: #061a39;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
}

.problem-item h3 {
  color: #061a39;
  font-size: 19px;
}

.problem-item:nth-child(5) h3 {
  max-width: 520px;
}

.problem-item p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
  display: none;
}

.problem-item.is-open p {
  display: block;
}

.problem-lead {
  display: grid;
  gap: 14px;
}

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

.flow .card { min-height: 250px; }

.before-after,
.comparison-list {
  display: grid;
  gap: 18px;
}

.comparison-list {
  border-top: 1px solid rgba(6, 26, 57, .14);
}

.comparison-row {
  display: grid;
  grid-template-columns: minmax(180px, .46fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
  padding: 22px 0;
  border-bottom: 1px solid rgba(6, 26, 57, .14);
}

.comparison-row h3 {
  font-size: 18px;
}

.comparison-row div {
  padding: 20px;
  border: 1px solid rgba(6, 26, 57, .1);
  background: #fff;
}

.comparison-row span {
  display: inline-flex;
  margin-bottom: 9px;
  color: #061a39;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
}

.comparison-row p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.before-after { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.company-profile__inner {
  display: grid;
  grid-template-columns: minmax(520px, .54fr) minmax(420px, .46fr);
  gap: 44px;
  align-items: start;
}

.company-profile .lead {
  max-width: 640px;
}

.company-table {
  box-shadow: var(--soft-shadow);
}

.company-table .row {
  grid-template-columns: 170px minmax(0, 1fr);
}

.company-table .row strong,
.company-table .row span {
  display: flex;
  align-items: center;
}

.company-table .row span {
  color: var(--text);
  word-break: keep-all;
  overflow-wrap: normal;
  line-break: strict;
}

.company-profile-image {
  width: min(100%, 520px);
  justify-self: end;
  position: relative;
}

.image-tile {
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.image-tile img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: grayscale(1);
}

.image-tile__body { padding: 20px; }

.company-profile-image img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  filter: none;
  object-fit: contain;
  object-position: center center;
  background: transparent;
}

.company-profile-image .image-tile__body {
  position: static;
  padding: 22px;
  background: #fff;
  box-shadow: none;
}

.js .company-profile.reveal,
.js .company-profile-image.reveal {
  opacity: 1;
  transform: none;
}

@media (max-width: 1180px) {
  .company-profile__inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .company-profile-image {
    width: min(100%, 620px);
    justify-self: center;
  }
}


.reuse-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.reuse {
  min-height: 260px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 24px;
  box-shadow: var(--soft-shadow);
}

.sample-card { overflow: hidden; padding: 0; }
.sample-card::before { display: none; }
.sample-card img {
  width: 100%;
  height: clamp(260px, 30vw, 380px);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: top center;
  transition: transform .7s ease;
}
.sample-card:hover img { transform: scale(1.04); }
.sample-body { padding: 20px; }

.plan-section {
  position: relative;
  overflow: hidden;
}

.plan-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(17, 17, 17, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, .035) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 20%, #000 100%);
  pointer-events: none;
}

.plan-section .wrap {
  position: relative;
  z-index: 1;
}

.plan-message {
  display: grid;
  max-width: 940px;
  margin: 0 auto 32px;
  gap: 8px;
  border-left: 4px solid #061a39;
  padding: 20px 24px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 16px 48px rgba(17, 17, 17, .06);
}

.plan-message p {
  margin: 0;
  color: #061a39;
  font-size: clamp(16px, 1.7vw, 20px);
  font-weight: 800;
  line-height: 1.65;
}

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

.plan-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 30px;
}

.plan-card.highlight {
  transform: translateY(-12px);
}

.plan-card-premium {
  border-color: #061a39;
  background: #061a39;
  color: #fff;
  box-shadow: 0 24px 62px rgba(6, 26, 57, .16);
}

.plan-card-premium h3,
.plan-card-premium .plan-price {
  color: #fff;
}

.plan-card-premium .small,
.plan-card-premium li {
  color: rgba(255, 255, 255, .78);
}

.plan-card-premium::before {
  border-color: rgba(255, 255, 255, .42);
  background: transparent;
}

.plan-label,
.plan-badge {
  color: #061a39;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
}

.plan-card-premium .plan-label,
.plan-card-premium .plan-badge {
  color: rgba(255, 255, 255, .82);
}

.plan-badge {
  align-self: flex-start;
  margin-bottom: 14px;
  border: 1px solid rgba(255, 255, 255, .34);
  padding: 7px 12px;
  color: #fff;
}

.plan-initial {
  width: fit-content;
  margin: 14px 0 0;
  padding: 7px 11px;
  border: 1px solid rgba(6, 26, 57, .18);
  color: #061a39;
  background: rgba(6, 26, 57, .045);
  font-size: 13px;
  font-weight: 900;
}

.plan-card-premium .plan-initial {
  border-color: rgba(255, 255, 255, .3);
  color: #fff;
  background: rgba(255, 255, 255, .1);
}

.plan-price {
  margin-top: 16px;
  color: #061a39;
  font-size: clamp(32px, 3vw, 42px);
  font-weight: 900;
  line-height: 1.2;
}

.plan-price span {
  margin-left: 4px;
  font-size: 15px;
  font-weight: 700;
}

.plan-card ul,
.role-card ul {
  display: grid;
  gap: 9px;
  margin: 24px 0 0;
  padding-left: 1.2em;
  color: var(--muted);
  font-size: 14px;
}

.plan-card ul {
  margin-top: auto;
  padding-top: 24px;
}

.plan-table-stack {
  display: grid;
  min-width: 0;
  gap: 24px;
  margin-top: 34px;
}

.plan-table-block {
  min-width: 0;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 18px 54px rgba(17, 17, 17, .06);
}

.plan-table-head {
  display: grid;
  gap: 8px;
  padding: 28px 30px 22px;
  border-bottom: 1px solid var(--line);
}

.plan-table-head .eyebrow {
  margin: 0;
}

.plan-table-head h3,
.plan-table-head p {
  margin: 0;
}

.plan-table-head p:not(.eyebrow) {
  color: var(--muted);
  font-size: 15px;
}

.plan-table-scroll {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
}

.plan-compare-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  font-size: 14px;
}

.plan-compare-table th,
.plan-compare-table td {
  border-bottom: 1px solid var(--line);
  padding: 16px 20px;
  font-size: 16px;
  text-align: center;
  vertical-align: middle;
}

.plan-compare-table thead th {
  color: #061a39;
  background: #f5f2ea;
  font-size: 18px;
  font-weight: 700;
}

.plan-compare-table tbody th {
  width: 34%;
  color: #111;
  text-align: left;
  font-weight: 800;
}

.plan-compare-table tbody tr:last-child th,
.plan-compare-table tbody tr:last-child td {
  border-bottom: 0;
}

.plan-compare-table td {
  color: var(--muted);
  font-weight: 700;
}

.plan-compare-table td:last-child {
  color: #061a39;
}

.plan-price-td {
  font-size: 32px;
  font-weight: 700;
}

.role-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.role-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 32px;
}

.role-card.highlight {
  border-color: #061a39;
  background: #061a39;
  color: #fff;
}

.role-card.highlight::before {
  border-color: rgba(255, 255, 255, .42);
  background: transparent;
}

.role-label {
  margin: 0 0 10px;
  color: #061a39;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
}

.role-card.highlight .role-label,
.role-card.highlight .small,
.role-card.highlight li {
  color: rgba(255, 255, 255, .78);
}

.role-card.highlight h3,
.role-card.highlight h4 {
  color: #fff;
}

.role-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: auto;
  padding-top: 24px;
}

.role-columns div {
  border-top: 1px solid rgba(6, 26, 57, .16);
  padding-top: 18px;
}

.role-card.highlight .role-columns div {
  border-color: rgba(255, 255, 255, .24);
}

.role-columns h4 {
  margin: 0 0 12px;
  color: #061a39;
  font-size: 15px;
  line-height: 1.5;
}

.role-card .role-columns ul {
  margin-top: 0;
}

.role-card .small {
  margin-top: 12px;
}

.faq-list {
  display: grid;
  max-width: 920px;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.faq-list summary {
  position: relative;
  cursor: pointer;
  padding: 22px 58px 22px 24px;
  color: #061a39;
  font-weight: 800;
  line-height: 1.6;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  color: #061a39;
  font-size: 22px;
  font-weight: 500;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  border-top: 1px solid var(--line);
  padding: 18px 24px 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.lookbook-teaser {
  position: relative;
  overflow: hidden;
}

.lookbook-teaser::before,
.lookbook-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(17, 17, 17, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, .035) 1px, transparent 1px);
  background-size: 88px 88px;
  pointer-events: none;
}

.lookbook-teaser__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .62fr) minmax(320px, .38fr);
  gap: 46px;
  align-items: center;
}

.lookbook-teaser__copy {
  max-width: 760px;
}

.lookbook-teaser__points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.lookbook-teaser__points span,
.lookbook-note {
  display: inline-flex;
  border: 1px solid rgba(6, 26, 57, .16);
  background: #fff;
  padding: 8px 12px;
  color: #061a39;
  font-size: 12px;
  font-weight: 800;
}

.lookbook-teaser__visual,
.lookbook-hero__visual {
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.lookbook-teaser__visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top center;
}

.lookbook-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.92) 54%, rgba(246,247,248,.9) 100%),
    url("/fmai-assets/sample-scene-jp.jpg") center / cover;
}

.lookbook-hero__inner {
  position: relative;
  z-index: 1;
  width: min(1220px, calc(100% - 56px));
  min-height: 760px;
  padding: 82px 0;
  display: grid;
  grid-template-columns: minmax(0, .58fr) minmax(340px, .42fr);
  gap: 58px;
  align-items: center;
}

.lookbook-hero__copy {
  min-width: 0;
}

.lookbook-hero h1 {
  max-width: 760px;
  color: #061a39;
  font-size: clamp(38px, 4.4vw, 64px);
  line-height: 1.22;
  overflow-wrap: anywhere;
}

.lookbook-hero .hero-lead {
  max-width: 700px;
  overflow-wrap: anywhere;
}

.lookbook-note {
  margin-top: 22px;
}

.lookbook-hero__visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top center;
}

.lookbook-strength-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.lookbook-caution__inner {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, .8fr);
  gap: 36px;
  align-items: start;
}

.lookbook-caution__card h3 {
  font-size: 22px;
}

.lookbook-use-table {
  display: grid;
  margin-top: 22px;
  border-top: 1px solid var(--line);
}

.lookbook-use-table div {
  display: grid;
  grid-template-columns: minmax(150px, .75fr) minmax(0, 1fr);
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.lookbook-use-table strong {
  color: #061a39;
  font-size: 13px;
}

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

.lookbook-flow {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.lookbook-price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.dark .eyebrow,
.dark .lead,
.dark .small,
.cta-note { color: rgba(255, 255, 255, .76); }

.cta-note {
  max-width: 760px;
  margin-top: 22px;
  font-size: 14px;
  line-height: 1.85;
}

.dark .eyebrow::before {
  box-shadow: 5px -5px 0 var(--ink), 5px -5px 0 1px currentColor;
}

.page-hero {
  background: var(--ink);
  color: #fff;
}
.page-hero .wrap { padding: 72px 0; }
.page-hero .hero-lead { color: rgba(255, 255, 255, .86); }

.form-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, .75fr);
  gap: 34px;
  align-items: start;
}

.form-box {
  border: 1px solid var(--line);
  background: #fff;
  padding: 26px;
  box-shadow: var(--shadow);
}

.field {
  width: 100%;
  min-height: 50px;
  margin-top: 12px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 12px 14px;
  color: var(--text);
  font: inherit;
}

.form-field {
  display: block;
  margin-top: 14px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.form-field span {
  display: inline-block;
  margin-left: 8px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
}

.form-message {
  margin: 14px 0 18px;
  border: 1px solid var(--line);
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 700;
}

.form-message.success {
  border-color: rgba(55, 118, 84, .35);
  background: #f0f8f3;
  color: #295f42;
}

.form-message.error {
  border-color: rgba(178, 54, 74, .4);
  background: #fff1f3;
  color: var(--accent);
}

textarea.field { min-height: 140px; resize: vertical; }

.table {
  border: 1px solid var(--line);
  background: #fff;
  overflow: hidden;
}

.row {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  border-bottom: 1px solid var(--line);
}

.row:last-child { border-bottom: 0; }
.row strong, .row span { padding: 15px 18px; }
.row strong { background: var(--mist); color: var(--ink); }

.footer {
  background: #080808;
  color: rgba(255, 255, 255, .72);
}

.footer .wrap {
  padding: 36px 0;
  display: flex;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
}

.footer a { color: rgba(255, 255, 255, .82); }

.footer-copy {
  width: min(1160px, calc(100% - 44px));
  margin: 0 auto;
  padding: 14px 0 22px;
  font-size: 12px;
  color: rgba(255,255,255,.38);
  border-top: 1px solid rgba(255,255,255,.08);
}

.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .72s ease, transform .72s ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes cardReveal {
  from { opacity: 0; transform: translateY(24px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes lineReveal {
  from { opacity: 0; transform: translateX(-18px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideIn {
  from { opacity: 0; transform: translateY(24px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes slideBreathe {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-8px) scale(1.01); }
}

@keyframes sequenceSlide {
  0% { opacity: 0; transform: translateX(64px); }
  6%, 28% { opacity: 1; transform: translateX(0); }
  36%, 100% { opacity: 0; transform: translateX(-54px); }
}

@keyframes sequenceDot {
  0%, 5% { transform: scaleX(0); }
  28% { transform: scaleX(1); }
  28.1%, 100% { transform: scaleX(0); }
}

@keyframes floatSlow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 1020px) {
  body.nav-open { overflow: hidden; }
  .site-header { position: sticky; }
  .header-inner { position: relative; align-items: center; flex-direction: row; }
  .brand { min-width: 0; }
  .nav-toggle { display: inline-flex; flex: 0 0 auto; }
  .site-header .nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 14px;
    left: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .98);
    box-shadow: var(--shadow);
    padding: 10px;
  }
  .site-header .nav.is-open { display: flex; }
  .site-header .nav a { padding: 13px 14px; }
  .site-header .nav a::after { display: none; }
  .site-header .nav .nav-cta { margin: 8px 0 0; text-align: center; }
  .hero-inner,
  .section-head,
  .problem-layout,
  .company-profile__inner,
  .grid.two,
  .grid.three,
  .grid.four,
  .grid.five,
  .flow,
  .plan-grid,
  .role-grid,
  .lookbook-teaser__inner,
  .lookbook-hero__inner,
  .lookbook-strength-grid,
  .lookbook-caution__inner,
  .lookbook-price-grid,
  .before-after,
  .reuse-grid,
  .form-grid,
  .row,
  .comparison-row { grid-template-columns: 1fr; }
  .hero-inner { width: min(100% - 44px, 1160px); min-height: auto; padding: 62px 0 42px; gap: 36px; }
  .lookbook-hero__inner { width: min(100% - 44px, 1160px); min-height: auto; padding: 62px 0; gap: 36px; }
  .hero-copy { padding-top: 0; }
  .hero-panel,
  .media-board,
  .hero-flow-slider { min-height: auto; }
  .hero-sequence-slider { min-height: 560px; }
  .sequence-slide { padding: 28px; }
  .scene-layout { grid-template-columns: minmax(0, .68fr) minmax(190px, .32fr); }
  .hero-flow-slider::before,
  .hero-flow-slider::after { display: block; }
  .hero-flow-slider {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 18px;
  }
  .flow-slide-product { left: 0; top: 72px; width: 36%; }
  .flow-slide-model,
  .flow-slide-content { inset: auto; width: 100%; }
  .flow-line { display: none; }
  .article-card { left: 0; top: 0; width: min(360px, 58vw); }
  .model-card { right: 0; top: 28px; width: min(280px, 42vw); }
  .insta-card { left: 0; bottom: 0; width: min(330px, 54vw); }
  .shop-card { right: 0; bottom: 28px; width: min(380px, 58vw); }
  .hero-anchor { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .problem-statement { position: static; }
  .plan-card.highlight { transform: none; }
  .plan-message {
    margin-bottom: 24px;
  }
}

@media (max-width: 640px) {
  .wrap { width: min(100% - 28px, 1160px); }
  .header-inner { padding: 14px; gap: 14px; }
  .brand img { width: min(218px, 62vw); }
  .site-header .nav { right: 14px; left: 14px; font-size: 14px; }
  .site-header .nav .nav-cta { padding: 12px 14px; }
  .hero { min-height: auto; }
  .hero-inner { width: min(100% - 28px, 1160px); }
  .lookbook-hero__inner { width: min(100% - 28px, 1160px); }
  h1 { font-size: 32px; }
  .lookbook-hero h1 {
    font-size: 28px;
    line-height: 1.34;
  }
  .hero-lead { font-size: 15px; }
  .actions { flex-direction: column; }
  .hero .btn.primary { min-width: 0; max-width: none; font-size: 14px; }
  .btn { width: 100%; }
  .hero-upload { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .upload-card { min-height: 150px; }
  .upload-card img { height: 126px; width: 86%; }
  .hero-panel,
  .media-board,
  .hero-flow-slider { min-height: auto; }
  .hero-sequence-slider { min-height: 500px; }
  .sequence-slide { gap: 12px; padding: 20px; }
  .sequence-slide h3 { font-size: 18px; }
  .sequence-product-pair { gap: 10px; }
  .scene-layout { grid-template-columns: 1fr; gap: 12px; }
  .scene-copy { display: none; }
  .article-preview-body { padding: 14px; }
  .article-preview-body h3 { font-size: 15px; }
  .instagram-preview { width: min(100%, 360px); }
  .instagram-preview img {
    height: auto;
  }
  .sequence-dots { right: 20px; bottom: 16px; }
  .sequence-dots button { width: 26px; }
  .hero-flow-slider {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .hero-flow-slider::before {
    left: 50%;
    top: calc(50% - 18px);
    width: 42px;
    transform: rotate(90deg);
    transform-origin: center;
  }
  .hero-flow-slider::after {
    content: ">";
    left: calc(50% - 9px);
    top: calc(50% - 32px);
    transform: rotate(90deg);
  }
  .flow-slide-product { left: 0; top: 0; width: 100%; }
  .flow-product-pair img { height: 150px; }
  .flow-slide-model,
  .flow-slide-content { inset: auto; width: 100%; }
  .article-card { left: 0; top: 0; width: 82%; }
  .article-visual img { height: 94px; }
  .model-card { right: 0; top: 214px; width: 48%; }
  .insta-card { left: 0; bottom: 0; width: 72%; }
  .shop-card { right: 0; bottom: 132px; width: 64%; grid-template-columns: 58px 1fr; gap: 10px; padding: 10px; }
  .shop-card img { width: 58px; height: 74px; }
  .cart-button { width: 110px; padding: 7px 10px; font-size: 11px; }
  .color-dots i { width: 14px; height: 14px; }
  .hero-anchor {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    padding: 1px;
    border-top: 0;
    background: #050505;
  }
  .hero-anchor a {
    position: relative;
    min-height: 106px;
    padding: 20px 16px 18px;
    justify-content: flex-end;
    gap: 8px;
    overflow: hidden;
    background: #111;
    color: #fff;
    clip-path: none;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.45;
  }
  .hero-anchor a:nth-child(even) {
    background: #171717;
    color: #fff;
  }
  .hero-anchor a::before {
    position: absolute;
    left: 16px;
    top: 15px;
    color: rgba(255, 255, 255, .32);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
  }
  .hero-anchor a:nth-child(1)::before { content: "01"; }
  .hero-anchor a:nth-child(2)::before { content: "02"; }
  .hero-anchor a:nth-child(3)::before { content: "03"; }
  .hero-anchor a:nth-child(4)::before { content: "04"; }
  .hero-anchor a::after {
    content: "";
    position: absolute;
    right: 14px;
    top: 16px;
    width: 18px;
    height: 1px;
    background: rgba(255, 255, 255, .38);
  }
  .hero-anchor span {
    font-size: 10px;
    letter-spacing: .14em;
    opacity: .48;
  }
  .section { padding: 66px 0; }
  #flow .solution-intro {
    margin-bottom: 22px;
  }
  .flow {
    gap: 0;
    border-top: 1px solid rgba(6, 26, 57, .14);
  }
  .flow .card {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 0 14px;
    min-height: 0;
    padding: 22px 0;
    border: 0;
    border-bottom: 1px solid rgba(6, 26, 57, .14);
    background: transparent;
    box-shadow: none;
  }
  .flow .card::before {
    display: none;
  }
  .flow .card.highlight {
    background: transparent;
    box-shadow: none;
  }
  .flow .num {
    grid-row: 1 / span 2;
    width: 42px;
    height: 34px;
    margin: 0;
    font-size: 12px;
  }
  .flow h3 {
    font-size: 17px;
    line-height: 1.55;
  }
  .flow .small {
    margin-top: 7px;
    font-size: 13px;
    line-height: 1.75;
  }
  .sample-grid {
    gap: 20px;
  }
  .sample-card img {
    height: 280px;
  }
  .problem-layout { gap: 34px; }
  .problem-statement h2 { font-size: 31px; }
  .problem-list { grid-template-columns: 1fr; }
  .problem-item {
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: auto;
    padding: 24px 32px 24px 0;
    border-right: 0;
    border-left: 0;
    border-top: 0;
    box-shadow: none;
  }
  .problem-item:nth-child(5) {
    grid-column: auto;
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: auto;
  }
  .problem-item::after {
    right: 6px;
    bottom: 22px;
  }
  .problem-item h3 { font-size: 18px; }
  .problem-item:nth-child(5) h3 { max-width: none; }
  .company-table .row {
    grid-template-columns: 1fr;
  }
  .company-table .row strong {
    padding-bottom: 6px;
    background: transparent;
    color: rgba(6, 26, 57, .7);
    font-size: 12px;
    letter-spacing: .08em;
  }
  .company-table .row span {
    padding-top: 0;
    font-size: 15px;
  }
  .company-profile-image img { height: auto; }
  .card,
  .form-box { padding: 22px; }
  .plan-card,
  .role-card {
    padding: 22px;
  }
  .role-columns {
    grid-template-columns: 1fr;
  }
  .plan-message {
    padding: 18px;
  }
  .plan-message p {
    font-size: 15px;
  }
  .plan-price {
    font-size: 31px;
  }
  .plan-table-head {
    padding: 22px 20px 18px;
  }
  .plan-compare-table {
    min-width: 680px;
    font-size: 13px;
  }
  .plan-compare-table th,
  .plan-compare-table td {
    padding: 12px;
  }
  .faq-list summary {
    padding: 18px 48px 18px 18px;
  }
  .faq-list p {
    padding: 16px 18px 20px;
  }
  .lookbook-use-table div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .lookbook-teaser__points span,
  .lookbook-note {
    font-size: 11px;
  }
}

/* ── コラムサンプル一覧リンク（#sample セクション末尾） ── */
.sample-column-link {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--line, rgba(17,17,17,.12));
  display: flex;
  align-items: center;
  gap: 28px;
}
.sample-column-link__text {
  font-size: 15px;
  color: var(--muted, #6d737a);
  flex: 1;
}
.sample-column-link .btn {
  white-space: nowrap;
  background: var(--navy, #061a39);
  color: #fff;
  border-color: var(--navy, #061a39);
}
.sample-column-link .btn:hover {
  background: #0a2a5c;
  border-color: #0a2a5c;
}
@media (max-width: 768px) {
  .sample-column-link {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* ── Role section ──────────────── */
.role-section{background:#f7f8fa;padding:80px 20px;}
.role-inner{max-width:1100px;margin:0 auto;}
.role-eyebrow{font-size:11px;letter-spacing:.2em;color:#888;text-transform:uppercase;margin-bottom:8px;}
.role-heading{font-size:32px;font-weight:700;color:#0a1628;margin-bottom:60px;}
.role-plan{background:#fff;border-radius:20px;padding:40px;margin-bottom:40px;box-shadow:0 4px 24px rgba(0,0,0,.08);}
.role-plan__header{display:flex;align-items:center;gap:16px;margin-bottom:32px;padding-bottom:24px;border-bottom:1px solid #eee;}
.role-plan__num{font-size:40px;font-weight:900;color:#0a1628;line-height:1;}
.role-plan__name{font-size:18px;font-weight:700;color:#0a1628;}
.role-step-label{font-size:16px;font-weight:700;color:#0a1628;margin-bottom:16px;}
.role-step-label--ai{color:#0a1628;margin-top:0;}
.role-cards--3col{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-bottom:24px;}
.role-cards--ai{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-bottom:24px;}
.role-cards--ai .role-card:nth-child(4){grid-column:1/2;margin-left:calc(50% + 8px);}
.role-cards--ai .role-card:nth-child(5){grid-column:2/3;margin-left:calc(50% + 8px);}
.role-ai-row1{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-bottom:16px;}
.role-ai-row2{display:flex;justify-content:center;gap:16px;margin-bottom:16px;}
.role-ai-row2 .role-card{width:calc(33.333% - 11px);}
.role-card{border-radius:12px;padding:32px 20px;text-align:center;box-shadow:0 2px 12px rgba(0,0,0,.08);}
.role-card--customer{background:#fff;border:2px solid #0a1628;}
.role-card--ai{background:#0a1628;}
.role-card__icon{font-size:48px;margin-bottom:12px;}
.role-card__text{font-size:16px;font-weight:600;line-height:1.5;}
.role-card--customer .role-card__text{color:#0a1628;}
.role-card--ai .role-card__text{color:#fff;}
.role-arrow{text-align:center;padding:24px 0;}
.role-arrow__icon{font-size:40px;color:#0a1628;display:block;}
.role-arrow__text{font-size:22px;font-weight:700;color:#0a1628;margin-top:8px;}
@media(max-width:768px){.role-cards{grid-template-columns:repeat(2,1fr);}.role-heading{font-size:24px;}.role-plan{padding:24px;}}
