:root {
  --brand: #1a4db5;
  --brand-soft: #eaf3ff;
  --orange: #ef6c00;
  --green: #06c755;
  --ink: #111827;
  --muted: #64748b;
  --line: #e5e7eb;
  --bg: #ffffff;
  --panel: #ffffff;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; overflow-x: hidden; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans JP', system-ui, -apple-system, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.8;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--brand); text-decoration: none; }
a:hover { opacity: .9; }
.wrap { width: min(1100px, calc(100% - 32px)); margin: 0 auto; }

.header-wide {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-top { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 12px 0 8px; }
.brand { color: var(--ink); font-weight: 900; line-height: 1.2; letter-spacing: 0; }
.brand small { display: block; color: #3b82f6; font-size: 11px; letter-spacing: .08em; }
.head-actions { display: flex; align-items: center; gap: 12px; }
.header-row { padding: 4px 0 12px; }
nav a { display: inline-flex; margin-right: 8px; padding: 8px 10px; border-radius: 8px; color: #374151; font-size: 14px; font-weight: 800; }
nav a[aria-current="page"], nav a:hover { background: rgba(26,77,181,.08); color: var(--brand); opacity: 1; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 2px solid var(--brand);
  background: var(--brand);
  color: #fff;
  font-weight: 900;
  text-align: center;
  box-shadow: 0 8px 20px rgba(26,77,181,.18);
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-2px); opacity: 1; box-shadow: 0 14px 28px rgba(26,77,181,.22); }
.btn.ghost { background: #fff; color: var(--brand); box-shadow: none; }
.btn.cta-orange { border-color: var(--orange); background: var(--orange); color: #fff; box-shadow: 0 8px 22px rgba(239,108,0,.25); }
.btn.cta-orange:hover { background: #fff; color: var(--orange); }
.btn.cta-orange.large { padding: 12px 20px; font-size: 16px; }
.btn.line-cta { border-color: var(--green); background: var(--green); color: #fff; }
.btn.btn-ghost-white { background: #fff; color: var(--brand); border-color: var(--brand); box-shadow: none; }

.call-card {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
}
.call-card em { display: block; color: var(--muted); font-size: 12px; font-style: normal; font-weight: 800; line-height: 1.2; }
.call-card b { display: block; color: var(--ink); font-size: 18px; line-height: 1.2; }
.call-card small { display: block; color: var(--muted); font-size: 11px; }
.call-ico svg, .nav-toggle svg, .card-icon svg, .os-nav svg, .fab svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 8px 18px rgba(20,40,80,.06);
}
.mobile-nav { display: none; }
.only-mobile { display: none; }
.mn-sep { border: none; border-top: 1px solid var(--line); margin: 2px 0; }

section { padding: 88px 0; border-top: 1px solid var(--line); }
.sec { padding: 88px 0; }
.sec-wide { padding: 96px 0; }
.sec-narrow { padding: 44px 0; }
.sec-alt { background: #f9fafb; }
.sec-head { margin-bottom: 28px; }
h1, h2, h3, p, li, dt, dd, a, label { overflow-wrap: anywhere; }
h2 {
  display: inline-block;
  margin: 0 0 16px;
  color: var(--ink);
  font-size: clamp(24px, 3.2vw, 34px);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0;
}
h2::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  margin-top: 10px;
  border-radius: 999px;
  background: var(--brand);
}
.lead-xl { color: var(--muted); font-size: clamp(15px, 1.5vw, 18px); line-height: 1.9; }

.grid3, .lineup-grid, .news-list, .values-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.cols { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.card, .lp, .item, .news-item, .fact-card, .value, .steps li {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(20,40,80,.06);
}
.card, .news-item, .fact-card, .value, .steps li { padding: 18px; }
.card h3, .lp h3, .item h3 { margin: 0 0 8px; font-size: 18px; }
.card p, .news-item p, .value p { margin: 0; color: var(--muted); }
.news-thumb { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: 10px; margin-bottom: 12px; display: block; }

.os-slider {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(20,40,80,.1);
  aspect-ratio: 16 / 6.5;
}
.os-slider--full {
  border: none;
  border-radius: 0;
  box-shadow: none;
  aspect-ratio: 16 / 6;
  margin: 0;
}
.os-slides { display: flex; width: 100%; height: 100%; transition: transform 1.6s cubic-bezier(0.65, 0, 0.35, 1); }
.os-slide { position: relative; flex: 0 0 100%; height: 100%; margin: 0; }
.os-slide img { width: 100%; height: 100%; object-fit: contain; padding: 24px; background: radial-gradient(circle at 50% 35%, rgba(167,211,255,.28), transparent 42%), #fff; }
.os-slide figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 12px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.86);
  color: var(--ink);
  font-weight: 900;
  text-align: center;
}
.os-dots { position: absolute; left: 0; right: 0; bottom: 8px; display: flex; justify-content: center; gap: 8px; }
.os-dot { width: 8px; height: 8px; border-radius: 50%; border: 1px solid rgba(0,0,0,.12); background: #fff; }
.os-dot[aria-selected="true"] { background: var(--brand); }
.os-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  color: var(--brand);
}
.os-prev { left: 12px; }
.os-next { right: 12px; }

.hero-message { background: linear-gradient(135deg, #eaf3ff 0%, #fff8ed 100%); border-top: 0; }
.hero-message-inner { display: grid; grid-template-columns: 1fr auto; gap: 36px; align-items: center; }
.hero-kicker, .philo-kicker, .cta-band-kicker { margin: 0 0 10px; color: var(--brand); font-size: 12px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.hero-title { margin: 0 0 16px; font-size: clamp(32px, 4.8vw, 52px); line-height: 1.25; font-weight: 900; letter-spacing: 0; }
.hero-lead { margin: 0 0 24px; color: #374151; line-height: 1.95; }
.hero-cta, .philo-cta, .cta-band-btns { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-message-badges { display: flex; flex-direction: column; gap: 10px; }
.badge-pill { min-width: 160px; padding: 14px 18px; border: 1px solid rgba(26,77,181,.18); border-radius: 14px; background: #fff; text-align: center; box-shadow: 0 8px 20px rgba(26,77,181,.1); }
.badge-pill b { display: block; color: #0b2e7a; font-size: 22px; line-height: 1.1; }
.badge-pill span { color: var(--muted); font-size: 12px; line-height: 1.4; }

.philo { position: relative; overflow: hidden; background: #f8fafc; }
.philo::after { content: ""; position: absolute; right: -10%; bottom: -36%; width: 48%; height: 72%; background: radial-gradient(circle, rgba(26,77,181,.08), transparent 68%); }
.philo-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.2fr .8fr; grid-template-areas: "head visual" "body visual"; column-gap: 48px; row-gap: 0; align-items: start; }
.philo-head { grid-area: head; }
.philo-visual { grid-area: visual; align-self: center; }
.philo-body { grid-area: body; }
.philo-title { margin: 0 0 16px; font-size: clamp(28px,4vw,42px); line-height: 1.35; font-weight: 900; }
.philo-lead { margin: 0 0 18px; color: #374151; line-height: 1.9; }
.pillpoints { display: flex; flex-wrap: wrap; gap: 10px; padding: 0; margin: 0 0 20px; list-style: none; }
.pillpoints li { padding: 10px 14px; border: 1px solid var(--line); border-radius: 999px; background: #fff; font-weight: 800; }
.philo-visual { margin: 0; }
.philo-visual img { width: 100%; object-fit: contain; display: block; }

.card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand);
}
.card-icon svg { width: 28px; height: 28px; }
.review-stars { margin: 0 0 8px; color: #f59e0b; letter-spacing: 3px; }
.review-body { margin: 0 0 12px; color: var(--ink); }
.review-author { margin: 0; padding-top: 10px; border-top: 1px solid var(--line); color: var(--muted); font-weight: 800; }
.steps { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 16px; padding: 0; margin: 0; list-style: none; }
.step-badge { display: grid; place-items: center; width: 50px; height: 50px; margin-bottom: 12px; border-radius: 50%; background: var(--brand); color: #fff; font-size: 20px; font-weight: 900; }

.faq-list { margin: 0; padding: 0; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; background: #fff; }
.faq-item { padding: 20px 24px; border-bottom: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 0; }
.faq-q { display: flex; justify-content: space-between; gap: 12px; margin: 0; cursor: pointer; font-weight: 900; }
.faq-q::before { content: "Q"; flex: 0 0 auto; padding: 1px 7px; border-radius: 6px; background: var(--brand); color: #fff; font-size: 12px; }
.faq-q::after { content: "+"; flex: 0 0 auto; color: var(--muted); font-size: 20px; line-height: 1; transition: transform .25s ease; }
.faq-item.open .faq-q::after { transform: rotate(45deg); color: var(--brand); }
.faq-a { max-height: 0; overflow: hidden; margin: 0; padding-left: 22px; color: var(--muted); border-left: 3px solid #bfdbfe; transition: max-height .35s ease, padding-top .25s ease; }
.faq-item.open .faq-a { max-height: 900px; padding-top: 12px; }

.news-meta { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 14px; }
.badge { display: inline-flex; padding: 4px 10px; border: 1px solid #d8e6ff; border-radius: 999px; background: #eef4ff; color: var(--brand); font-size: 12px; font-weight: 900; }
.more, .more-center { font-weight: 900; }
.more-center { margin-top: 18px; text-align: center; }
.fact-card dl { display: grid; gap: 10px; margin: 0; }
.fact-card dt { font-weight: 900; }
.fact-card dd { margin: 2px 0 0; color: var(--muted); }

.list { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.item { overflow: hidden; }
.item-link { display: block; height: 100%; color: inherit; }
.item-link:hover { opacity: 1; }
.item img, .lp img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  padding: 18px;
  background: radial-gradient(circle at 50% 35%, rgba(167,211,255,.28), transparent 42%), #fff;
}
.item .meta, .lp h3, .lp ul { padding-left: 16px; padding-right: 16px; }
.item .meta { padding-top: 12px; padding-bottom: 16px; }
.lp h3 { margin-top: 12px; }
.lp ul { margin: 0 0 16px; padding-left: 34px; color: var(--muted); }
.ranked-product {
  position: relative;
  overflow: hidden;
  border-width: 2px;
}
.ranked-product::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, #f59e0b, #facc15);
}
.ranked-product.rank-1 {
  border-color: rgba(245,158,11,.6);
  box-shadow: 0 18px 42px rgba(245,158,11,.16);
}
.ranked-product.rank-2::before { background: linear-gradient(90deg, #94a3b8, #e2e8f0); }
.ranked-product.rank-3::before { background: linear-gradient(90deg, #c08457, #f3c7a0); }
.rank-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 9px 13px;
  border: 2px solid rgba(255,255,255,.8);
  border-radius: 14px;
  background: linear-gradient(135deg, #f59e0b, #facc15);
  color: #fff;
  font-weight: 900;
  text-shadow: 0 1px 1px rgba(120,53,15,.24);
  box-shadow: 0 10px 22px rgba(245,158,11,.26);
}
.rank-badge::before { content: "♛"; font-size: 18px; line-height: 1; }
.rank-badge b { font-size: 28px; line-height: 1; }
.rank-badge span { font-size: 13px; line-height: 1; }
.rank-badge .rank-no { font-size: 12px; letter-spacing: .02em; }
.ranked-product.rank-2 .rank-badge {
  background: linear-gradient(135deg, #64748b, #cbd5e1);
  box-shadow: 0 10px 22px rgba(100,116,139,.22);
  text-shadow: 0 1px 1px rgba(15,23,42,.22);
}
.ranked-product.rank-3 .rank-badge {
  background: linear-gradient(135deg, #b45309, #f3c7a0);
  box-shadow: 0 10px 22px rgba(180,83,9,.22);
}
.item-link .more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 12px;
  padding: 8px 16px;
  border: 2px solid var(--brand);
  border-radius: 999px;
  background: #fff;
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
  transition: background .18s, color .18s;
}
.item-link:hover .more { background: var(--brand); color: #fff; }

.product-detail-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 36px; align-items: center; }
.product-detail-image { margin: 0; padding: 28px; border: 1px solid var(--line); border-radius: 18px; background: radial-gradient(circle at 50% 35%, rgba(167,211,255,.28), transparent 42%), #fff; box-shadow: 0 18px 40px rgba(20,40,80,.08); }
.product-detail-image img { width: 100%; max-height: 460px; object-fit: contain; }
.product-category { display: inline-flex; margin: 0 0 14px; padding: 6px 12px; border: 1px solid var(--line); border-radius: 999px; color: var(--brand); background: #f3f7ff; font-size: 13px; font-weight: 900; }
.product-detail-copy h2 { display: block; }
.product-detail-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }

.product-price-block {
  margin: 20px 0;
  padding: 16px 20px;
  border: 1px solid #bfdbfe;
  border-left: 4px solid var(--brand);
  border-radius: 0 12px 12px 0;
  background: #eff6ff;
}
.product-price-label { margin: 0 0 4px; font-size: 12px; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; color: var(--brand); }
.product-price-value { margin: 0; font-size: clamp(26px, 3.5vw, 36px); font-weight: 900; color: var(--ink); line-height: 1.2; }
.product-price-suffix { font-size: 16px; font-weight: 700; color: var(--muted); }
.product-price-note { margin: 6px 0 0; font-size: 12px; color: var(--muted); }

.item-price { margin: 6px 0 0; font-size: 13px; font-weight: 900; color: var(--brand); }

.checklist { padding: 0; margin: 16px 0; list-style: none; }
.checklist li { position: relative; padding-left: 24px; margin: 8px 0; }
.checklist li::before { content: "✓"; position: absolute; left: 0; color: #2563eb; font-weight: 900; }
form label { display: block; font-weight: 800; }
form input, form textarea, form select {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}
form textarea { min-height: 132px; resize: vertical; }
.hp-field { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; opacity: 0 !important; pointer-events: none !important; }
.alert { padding: 14px 16px; border-radius: 14px; font-weight: 800; }
.alert.success { background: #ecfdf5; color: #166534; }
.alert.error { background: #fef2f2; color: #991b1b; }

.product-strip { display: grid; grid-template-columns: .9fr 1.1fr; gap: 28px; align-items: center; }
.product-strip-images { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px; }
.product-strip-images img { width: 100%; aspect-ratio: 1 / 1; object-fit: contain; padding: 18px; border: 1px solid var(--line); border-radius: 16px; background: #fff; }

.greeting-wrap { max-width: 820px; margin: 0 auto; }
.greeting-body { padding: 36px 40px; border-left: 4px solid var(--brand); border-radius: 0 16px 16px 0; background: #fff; box-shadow: 0 10px 28px rgba(20,40,80,.06); }
.greeting-body p { margin: 0; line-height: 1.9; }

.stats-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; margin-top: 8px; }
.stat-card { padding: 28px 20px; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: 0 10px 28px rgba(20,40,80,.06); text-align: center; }
.stat-num { font-size: clamp(40px, 5vw, 60px); font-weight: 900; color: var(--brand); line-height: 1.1; }
.stat-unit { font-size: clamp(16px, 2vw, 20px); font-weight: 900; color: var(--brand); }
.stat-label { margin: 6px 0 8px; font-size: 15px; font-weight: 900; color: var(--ink); }
.stat-desc { font-size: 13px; color: var(--muted); line-height: 1.7; }

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 72px 0;
  border-top: 1px solid var(--line);
  background: linear-gradient(135deg, #fff8ed 0%, #f3f7ff 100%);
}
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 90% at 92% 35%, rgba(26,77,181,.08), transparent 62%), radial-gradient(ellipse 42% 62% at 8% 82%, rgba(239,108,0,.12), transparent 58%); }
.cta-band-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1.08fr; gap: 34px; align-items: center; }
.cta-band-media { margin: 0; display: flex; align-items: center; justify-content: center; }
.cta-band-media img { width: 88%; max-width: 360px; height: auto; object-fit: contain; filter: drop-shadow(0 28px 52px rgba(20,40,80,.20)) drop-shadow(0 6px 14px rgba(20,40,80,.10)); }
.cta-band-title { display: block !important; margin: 0 0 16px; padding: 0 !important; border: 0 !important; background: none !important; box-shadow: none !important; color: var(--ink); font-size: clamp(26px,3.5vw,40px); line-height: 1.35; }
.cta-band-title::after { display: none; }
.cta-band-lead { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.85; }
.cta-band-btns { margin-top: 24px; }

.footer-green { margin-top: 0; background: #0b1f45; color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 24px; padding: 30px 0; }
.footer-green a { color: #fff; }
.footer-brand .meiji-mark { color: #ff7d6b; font-size: 20px; font-weight: 900; line-height: 1.4; }
.footer-title { font-size: 22px; font-weight: 900; }
.footer-brand .addr { margin: 10px 0 0; color: rgba(255,255,255,.75); }
.footer-brand dd { margin: 0 0 6px; }
.footer-cta { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-tel { color: #fff; font-size: 26px; font-weight: 900; }
.footer-note { color: rgba(255,255,255,.65); }
.copy { padding: 12px 0 22px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.5); display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; }
.footer-legal { display: flex; gap: 14px; align-items: center; font-size: 13px; }
.footer-legal a { color: rgba(255,255,255,.65); text-decoration: none; }
.footer-legal a:hover { color: #fff; text-decoration: underline; }
.footer-legal span { color: rgba(255,255,255,.3); }
.terms-body { margin-top: 32px; }
.terms-body h3 { font-size: 18px; font-weight: 900; margin: 28px 0 8px; color: var(--navy); }
.terms-body p, .terms-body ol, .terms-body ul { margin: 0; line-height: 1.8; }
.terms-body ol, .terms-body ul { padding-left: 1.5em; margin-top: 8px; }
.terms-body li { margin-bottom: 6px; }
.terms-date { margin-top: 32px; color: var(--muted); font-size: 14px; }
.agree-block { margin-bottom: 16px; }
.agree-label { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; font-size: 15px; line-height: 1.6; }
.agree-label input[type="checkbox"] { flex-shrink: 0; width: 18px; height: 18px; margin-top: 3px; cursor: pointer; accent-color: var(--brand); }
.agree-label a { color: var(--brand); text-decoration: underline; }
.fab { position: fixed; right: 14px; bottom: 14px; z-index: 60; display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--line); background: #fff; color: var(--brand); box-shadow: 0 10px 24px rgba(0,0,0,.14); }
.fab.line { right: 74px; background: var(--green); color: #fff; border-color: var(--green); font-size: 12px; font-weight: 900; }

.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  align-items: stretch;
  gap: 8px;
  background: #fff;
  border-top: 1px solid var(--line);
  box-shadow: 0 -6px 24px rgba(20,40,80,.13);
  padding: 8px 12px;
  padding-bottom: max(8px, env(safe-area-inset-bottom, 8px));
}
.mbb-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px 4px;
  border-radius: 12px;
  font-weight: 900;
  font-size: 11px;
  line-height: 1.3;
  text-align: center;
  color: #fff;
}
.mbb-btn svg { flex: 0 0 auto; }
.mbb-btn:hover { opacity: .88; }
.mbb-tel { background: var(--brand); }
.mbb-line { background: var(--green); }
.mbb-apply { background: var(--orange); }

.card-illus { width: 80px; height: 80px; margin: 0 0 16px; }
.card-illus img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.mono-blend { mix-blend-mode: multiply; filter: none !important; }

/* ────────── Milk Loader ────────── */
.milk-loader-wrap {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #aed6ee 0%, #c8e8f5 30%, #dff2f9 60%, #edf7ee 100%);
  transition: opacity .65s ease, visibility .65s ease;
}
.milk-loader-wrap.milk-loader-done {
  opacity: 0;
  visibility: hidden;
}
body.has-loader:not(.milk-loaded) main,
body.has-loader:not(.milk-loaded) header,
body.has-loader:not(.milk-loaded) footer { opacity: 0; }

/* 注ぎ口 */
.milk-loader-pour {
  position: absolute;
  top: 0;
  left: calc(50% - 5px);
  z-index: 4;
  pointer-events: none;
  animation: milk-loader-sway .4s ease-in-out infinite alternate;
}
.milk-loader-pour-stream {
  width: 10px;
  height: 56vh;
  background: linear-gradient(180deg, rgba(255,252,248,.98) 0%, rgba(255,252,248,.3) 100%);
  border-radius: 0 0 6px 6px;
  transform-origin: top center;
  animation: milk-loader-stream-shrink 2.5s cubic-bezier(.4,0,.2,1) .1s forwards;
}

/* 牛乳が満ちる */
.milk-loader-fill {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  background: #fffcf8;
  animation: milk-loader-rise 2.5s cubic-bezier(.22,.68,.38,.99) .1s forwards;
}

/* 波打つ液面 */
.milk-loader-surface {
  position: absolute;
  top: -59px;
  left: 0;
  width: 200%;
  height: 60px;
  pointer-events: none;
  animation: milk-loader-wave-scroll 2s linear infinite;
}
.milk-loader-wave-svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* テキスト */
.milk-loader-content {
  position: relative;
  z-index: 5;
  text-align: center;
  pointer-events: none;
  user-select: none;
}
.milk-loader-brand {
  margin: 0 0 6px;
  font-size: clamp(26px, 5.5vw, 46px);
  font-weight: 900;
  color: #1a4db5;
  letter-spacing: .06em;
  text-shadow: 0 2px 14px rgba(255,255,255,.95), 0 0 48px rgba(255,255,255,.7);
}
.milk-loader-sub {
  margin: 0;
  font-size: clamp(13px, 2.2vw, 16px);
  font-weight: 700;
  color: #3b6ea8;
  text-shadow: 0 1px 8px rgba(255,255,255,.85);
}

@keyframes milk-loader-rise {
  0%   { height: 0%; }
  18%  { height: 10%; }
  52%  { height: 54%; }
  84%  { height: 88%; }
  100% { height: 112%; }
}
@keyframes milk-loader-wave-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes milk-loader-stream-shrink {
  0%   { transform: scaleY(1); opacity: 1; }
  72%  { opacity: .6; }
  100% { transform: scaleY(0); opacity: 0; }
}
@keyframes milk-loader-sway {
  from { transform: translateX(-2px); }
  to   { transform: translateX(2px); }
}

.fade-up { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.is-visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .grid3, .lineup-grid, .news-list, .values-grid, .cols, .list, .product-strip, .product-detail-grid, .cta-band-inner, .footer-grid, .hero-message-inner { grid-template-columns: 1fr; }
  .philo-inner { grid-template-columns: 1fr 160px; grid-template-areas: "head visual" "body body"; }
  .steps { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .stats-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .hero-message-badges { flex-direction: row; flex-wrap: wrap; }
}

@media (max-width: 700px) {
  html { scroll-padding-top: 72px; }
  body { font-size: 15px; }
  .wrap { width: 100%; padding-left: 16px; padding-right: 16px; }
  .header-wide { --mh: 64px; position: fixed; top: 0; left: 0; right: 0; }
  body { padding-top: 64px; }
  .header-top { display: grid; grid-template-columns: minmax(0,1fr) 46px; min-height: var(--mh); padding: 8px 16px; gap: 8px; }
  .brand { min-width: 0; max-width: calc(100vw - 88px); font-size: 15px; }
  .brand span { display: block; overflow-wrap: anywhere; }
  .brand small { font-size: 10px; }
  .head-actions { width: 46px; min-width: 46px; margin-left: auto; }
  .only-desktop { display: none !important; }
  .nav-toggle { display: inline-flex; }
  .header-row { display: none; }
  .mobile-nav { position: fixed; left: 0; right: 0; top: var(--mh); z-index: 70; display: none; max-height: calc(100dvh - var(--mh)); overflow-y: auto; border-top: 1px solid var(--line); background: #fff; box-shadow: 0 14px 28px rgba(20,40,80,.12); }
  .mobile-nav.open { display: block; }
  .mobile-nav .wrap { display: flex; flex-direction: column; gap: 10px; padding: 14px 16px 18px; }
  .mobile-nav a:not(.btn):not(.call-card) { display: block; padding: 13px 12px; border: 1px solid var(--line); border-radius: 12px; color: var(--ink); font-weight: 800; background: #fff; }
  .only-mobile { display: block !important; }
  .only-mobile.call-card { display: flex !important; width: 100%; }
  body.menu-open { overflow: hidden; }
  section, .sec, .sec-wide { padding: 54px 0; }
  .sec-narrow { padding: 28px 0; }
  h2 { font-size: 24px; }
  .hero-title { font-size: 28px; }
  .philo-title { font-size: 22px; }
  .philo-inner { grid-template-columns: 1fr 100px; grid-template-areas: "head visual" "body body"; column-gap: 14px; row-gap: 14px; }
  .philo-visual img { max-width: 100px; }
  .hero-cta, .cta-band-btns, .product-detail-actions { flex-direction: column; align-items: stretch; }
  .philo-cta { flex-direction: column; align-items: stretch; }
  .btn, .btn.cta-orange, .btn.cta-orange.large, .btn.line-cta, .btn.btn-ghost-white { width: 100%; padding: 12px 16px; }
  .os-slider { aspect-ratio: 4 / 3; border-radius: 14px; }
  .os-slider--full { aspect-ratio: 4 / 3; border-radius: 0; }
  .steps { grid-template-columns: 1fr; }
  .os-slide img { padding: 16px; }
  .card, .lp, .item, .news-item, .fact-card, .value, .steps li { border-radius: 14px; }
  .item img, .lp img { aspect-ratio: 16 / 11; max-height: 230px; padding: 14px; }
  .product-detail-image { padding: 18px; }
  .product-detail-image img { max-height: 300px; }
  .pillpoints { display: grid; grid-template-columns: 1fr; }
  .pillpoints li { border-radius: 12px; }
  .hero-message-badges { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .footer-cta { align-items: stretch; }
  .fab { display: none; }
  form input, form textarea, form select { max-width: 100%; font-size: 16px; }
  .product-strip-images { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; }
  .stats-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .greeting-body { padding: 24px 20px; }
  .badge-pill { padding: 10px 8px; min-width: 0; }
  .badge-pill b { font-size: 18px; }
  .badge-pill span { font-size: 11px; }
  body { padding-bottom: 76px; }
  .mobile-bottom-bar { display: flex; }
}
