@charset "UTF-8";
/* CSS Document */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Yu Gothic", "游ゴシック", sans-serif;
  color: #2C2C2A;
  background: #FAF8F4;
  line-height: 1.8;
  font-size: 16px;
  font-weight: 400;
}

/* ============ ヘッダー（グローバルナビ） ============ */
.global-header {
  background: white;
  border-bottom: 1px solid #e5e2dc;
  padding: 16px 32px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.global-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.global-logo {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #2C3E33;
  text-decoration: none;
}

.global-logo span {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: #5a5a5a;
  display: block;
  margin-top: 2px;
  font-weight: 300;
}

.global-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}

.global-nav a {
  font-size: 12px;
  color: #3a3a3a;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

.global-nav a:hover {
  color: #4a6f5c;
}

.global-nav .cart-btn {
  background: #4a6f5c;
  color: white;
  padding: 8px 20px;
  border-radius: 2px;
}

.global-nav .cart-btn:hover {
  color: white;
  opacity: 0.85;
}

/* ハンバーガーメニュートリガー */
.menu-trigger {
  display: none;
  background: none;
  border: none;
  width: 30px;
  height: 22px;
  position: relative;
  cursor: pointer;
  z-index: 200;
}

.menu-trigger span {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #2C3E33;
  transition: all 0.3s;
  left: 0;
}

.menu-trigger span:nth-child(1) {
  top: 0;
}

.menu-trigger span:nth-child(2) {
  top: 10px;
}

.menu-trigger span:nth-child(3) {
  top: 20px;
}

.menu-trigger.active span:nth-child(1) {
  top: 10px;
  transform: rotate(45deg);
}

.menu-trigger.active span:nth-child(2) {
  opacity: 0;
}

.menu-trigger.active span:nth-child(3) {
  top: 10px;
  transform: rotate(-45deg);
}

/* ============ 共通要素 ============ */
.section {
  padding: 100px 24px;
  max-width: 1080px;
  margin: 0 auto;
}

.section-narrow {
  max-width: 720px;
  margin: 0 auto;
}

h1, h2, h3 {
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.5;
  color: #1a1a1a;
}

h2 {
  font-size: 30px;
  margin-bottom: 32px;
}

h3 {
  font-size: 20px;
  margin-bottom: 20px;
}

p {
  margin-bottom: 1.2em;
  font-size: 15px;
  line-height: 1.9;
  color: #3a3a3a;
}

.lead {
  font-size: 17px;
  color: #1a1a1a;
}

.section-label {
  font-size: 11px;
  letter-spacing: 0.3em;
  color: #4a6f5c;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.section-divider {
  width: 40px;
  height: 1px;
  background: #4a6f5c;
  margin: 32px auto;
}

/* 画像プレースホルダー（シアン向け・実装時に実画像へ差替） */
.img-placeholder {
  background: repeating-linear-gradient(45deg, #e8e4dc, #e8e4dc 12px, #ddd8ce 12px, #ddd8ce 24px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8a8576;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-align: center;
  border-radius: 2px;
  padding: 16px;
  line-height: 1.6;
}

/* ============ S1: FV ============ */
.fv {
  position: relative;
  min-height: 720px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0.5)), url("../img/fv-img.webp");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 100px 48px 80px;
  color: white;
  overflow: hidden;
}

.fv-bg-note {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.05em;
  text-align: right;
  line-height: 1.6;
  max-width: 280px;
}

.fv-inner {
  max-width: 1080px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
  text-align: left;
}

.fv-eyebrow {
  font-size: 11px;
  letter-spacing: 0.4em;
  margin-bottom: 32px;
  opacity: 0.85;
  color: #9FB8A6;
}

.fv-main {
  font-size: 42px;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.08em;
  margin-bottom: 28px;
  color: white;
}

.fv-sub {
  font-size: 15px;
  line-height: 2;
  margin-bottom: 48px;
  opacity: 0.9;
  color: white;
  max-width: 760px;
  margin-left: 0;
  margin-right: auto;
}

.fv-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: left;
  margin-bottom: 48px;
}

.badge {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(159, 184, 166, 0.4);
  padding: 10px 20px;
  font-size: 12px;
  letter-spacing: 0.05em;
  border-radius: 2px;
  backdrop-filter: blur(8px);
  color: white;
  transition: all 0.3s ease;
}

.badge:hover {
  transform: translateY(-2px);
  border-color: rgba(159, 184, 166, 0.7);
}

.badge-primary {
  background: rgba(159, 184, 166, 0.2);
  border-color: rgba(159, 184, 166, 0.65);
}

.cta-primary {
  display: inline-block;
  background: #4a6f5c;
  color: white;
  padding: 18px 44px;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.1em;
  border-radius: 2px;
  font-weight: 400;
  text-align: center;
  border: 1px solid #4a6f5c;
  transition: all 0.3s ease;
}

.cta-primary:hover {
  opacity: 0.85;
}

/* ============ S2: WHO WE ARE ============ */
.s2 {
  background: white;
  text-align: center;
  padding: 120px 24px;
}

.s2 h2 {
  font-size: 32px;
  line-height: 1.7;
  font-weight: 300;
}

.s2 p {
  font-size: 15px;
  max-width: 640px;
  margin: 0 auto 1.4em;
  line-height: 2;
}

.s2-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  margin-top: 64px;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.s2-pillar {
  text-align: center;
  padding: 24px;
}

.s2-pillar-icon {
  width: 56px;
  height: 56px;
  border: 1px solid #4a6f5c;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: #4a6f5c;
}

.s2-pillar h3 {
  font-size: 15px;
  color: #2C3E33;
  margin-bottom: 12px;
}

.s2-pillar p {
  font-size: 13px;
  line-height: 1.85;
  max-width: 280px;
  margin: 0 auto;
}

/* ============ S3: 80日サイクル ============ */
.s3 {
  background: #F4F1EA;
  padding: 120px 24px;
}

.s3 .section-narrow {
  text-align: center;
}

.s3 p {
  text-align: left;
  margin-bottom: 1.4em;
}

.s3-timeline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  max-width: 880px;
  margin: 72px auto 0;
}

.s3-timeline::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 11%;
  right: 11%;
  height: 2px;
  background: linear-gradient(90deg, #9FB8A6 0%, #4a6f5c 100%);
  z-index: 0;
}

.s3-step {
  text-align: center;
  flex: 1;
  position: relative;
  z-index: 1;
  padding: 0 8px;
}

.s3-step-dot {
  width: 56px;
  height: 56px;
  background: #4a6f5c;
  border: 2px solid #4a6f5c;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.s3-step-dot::after {
  content: "";
  width: 14px;
  height: 14px;
  background: #ffffff;
  border-radius: 50%;
}

.s3-step:first-child .s3-step-dot {
  background: #9FB8A6;
  border-color: #9FB8A6;
}

.s3-step:nth-child(2) .s3-step-dot::after {
  width: 18px;
  height: 18px;
}

.s3-step:nth-child(3) .s3-step-dot::after {
  width: 22px;
  height: 22px;
}

.s3-step:last-child .s3-step-dot::after {
  width: 26px;
  height: 26px;
}

.s3-step-day {
  font-size: 20px;
  font-weight: 300;
  color: #2C3E33;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.s3-step-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: #888;
  margin-bottom: 12px;
}

.s3-step-desc {
  font-size: 12px;
  line-height: 1.7;
  color: #3a3a3a;
}

@media (max-width: 768px) {
  /* タイムライン */
  .s3-timeline {
    flex-direction: column;
    gap: 32px;
    position: relative;
  }
  /* ▼ 縦線（これが見えなかった原因を修正） */
  .s3-timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 35px;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, #9FB8A6 0%, #4a6f5c 80%, rgba(0, 0, 0, 0) 80%, rgba(0, 0, 0, 0) 100%);
    z-index: 0;
  }
  /* ステップ */
  .s3-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
    position: relative;
    z-index: 1; /* ← 線より前に出す */
  }
  /* dot */
  .s3-step-dot {
    margin: 0;
    flex-shrink: 0;
  }
  /* ▼ テキストを縦積みにする本体 */
  .s3-step-content {
    display: flex;
    flex-direction: column;
  }
  .s3-step-day {
    margin-bottom: 4px;
  }
  .s3-step-label {
    margin-bottom: 8px;
  }
}
/* ============ S4: 3商品マップ ============ */
.s4 {
  background: white;
  padding: 120px 24px;
  text-align: center;
}

.s4 h2 {
  text-align: center;
}

.s4 > p {
  max-width: 680px;
  margin: 0 auto 16px;
  text-align: left;
  line-height: 2;
}

.s4-guide {
  font-size: 14px;
  color: #4a6f5c;
  max-width: 680px;
  margin: 0 auto 24px;
  text-align: center;
  letter-spacing: 0.05em;
}

.s4-map {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 24px;
  max-width: 1080px;
  margin: 56px auto 0;
}

.s4-card {
  background: #FAF8F4;
  padding: 40px 32px;
  border-radius: 2px;
  text-align: left;
  position: relative;
}

.s4-card-main {
  background: #2C3E33;
  color: white;
}

.s4-card-main h3, .s4-card-main p {
  color: white;
}

.s4-card-main .s4-card-role {
  color: #9FB8A6;
}

.s4-card-badge {
  position: absolute;
  top: -12px;
  left: 32px;
  background: #4a6f5c;
  color: white;
  font-size: 11px;
  padding: 4px 14px;
  border-radius: 2px;
  letter-spacing: 0.1em;
}

.s4-card-role {
  font-size: 11px;
  letter-spacing: 0.25em;
  color: #4a6f5c;
  margin-bottom: 12px;
}

.s4-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
}

.s4-card p {
  font-size: 13px;
  line-height: 1.85;
}

/* ============ S5-S7: 各商品紹介（Zパターン） ============ */
.product-section {
  padding: 110px 24px;
}

.product-section.dark {
  background: #2C3E33;
  color: white;
}

.product-section.dark h2 {
  color: white;
}

.product-section.dark p {
  color: rgba(255, 255, 255, 0.85);
}

.product-section.dark .section-label {
  color: #9FB8A6;
}

.product-section.dark .product-tagline {
  color: #9FB8A6;
}

.product-section.light {
  background: white;
}

.product-section.beige {
  background: #F4F1EA;
}

.product-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 56px;
  align-items: center;
}

.product-inner.reverse {
  grid-template-columns: 1.3fr 1fr;
}

.product-inner.reverse .product-visual {
  order: 2;
}

.product-inner.reverse .product-text {
  order: 1;
}

.product-visual img {
  max-width: 100%;
}

.product-text h2 {
  font-size: 32px;
  line-height: 1.4;
  margin-bottom: 16px;
}

.product-tagline {
  font-size: 16px;
  letter-spacing: 0.05em;
  opacity: 0.85;
  margin-bottom: 24px;
  color: #4a6f5c;
}

.product-section .product-body p {
  font-size: 15px;
  line-height: 2;
  margin-bottom: 1.2em;
}

.product-cta {
  display: inline-block;
  margin-top: 16px;
  padding: 14px 32px;
  border: 1px solid #4a6f5c;
  color: #4a6f5c;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.1em;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.product-cta:hover {
  background: #4a6f5c;
  color: white;
}

.product-section.dark .product-cta {
  border-color: #9FB8A6;
  color: #9FB8A6;
}

.product-section.dark .product-cta:hover {
  background: #9FB8A6;
  color: #2C3E33;
}

.product-section .section-divider {
  margin: 24px 0;
}

/* ============ S8: 医療現場実績 ============ */
.s8 {
  background: white;
  padding: 120px 24px;
  text-align: center;
}

.s8 > .section-narrow > p {
  text-align: left;
  margin-bottom: 1.4em;
}

.s8-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 880px;
  margin: 64px auto 0;
}

.s8-stat {
  text-align: center;
  padding: 32px 24px;
  border-top: 1px solid #4a6f5c;
}

.s8-stat-number {
  font-size: 44px;
  font-weight: 300;
  color: #2C3E33;
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin-bottom: 8px;
}

.s8-stat-unit {
  font-size: 14px;
  color: #4a6f5c;
  margin-bottom: 16px;
  letter-spacing: 0.1em;
}

.s8-stat-label {
  font-size: 12px;
  color: #666;
  line-height: 1.7;
  letter-spacing: 0.05em;
}

.s8-visual > img {
  width: 100%;
  max-width: 520px;
}

.s8-note {
  font-size: 11px;
  color: #999;
  margin-top: 32px;
  letter-spacing: 0.03em;
}

@media (max-width: 768px) {
  .s8-stats {
    grid-template-columns: 1fr;
    gap: 0px;
  }
}
/* ============ S9: 監修体制 ============ */
.s9 {
  background: #F4F1EA;
  padding: 120px 24px;
  text-align: center;
}

.s9 > .section-narrow > p {
  text-align: left;
  margin-bottom: 1.4em;
}

.s9-team {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 800px;
  margin: 64px auto 0;
}

.s9-member {
  background: white;
  padding: 36px 40px;
  border-left: 3px solid #4a6f5c;
  text-align: left;
}

.s9-member-name {
  font-size: 18px;
  font-weight: 400;
  color: #2C3E33;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}

.s9-member-titles {
  font-size: 12px;
  color: #4a6f5c;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  line-height: 1.8;
}

.s9-member-desc {
  font-size: 13px;
  line-height: 1.85;
  color: #3a3a3a;
  margin: 0;
}

.s9-member--with-img {
  position: relative;
  padding-right: 172px;
}

.s9-member-img {
  position: absolute;
  top: 36px;
  right: 40px;
  width: 132px;
  height: 132px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 768px) {
  .s9-member--with-img {
    padding-right: 40px;
  }
  .s9-member-img {
    position: static;
    display: block;
    margin: 0 auto 16px;
  }
}
/* ============ S10: グループ構造 ============ */
.s10 {
  background: #2C3E33;
  color: white;
  padding: 120px 24px;
  text-align: center;
}

.s10 h2 {
  color: white;
}

.s10 > .section-narrow > p {
  color: rgba(255, 255, 255, 0.85);
  text-align: left;
  margin-bottom: 1.4em;
}

.s10 .section-label {
  color: #9FB8A6;
}

.s10-diagram {
  max-width: 880px;
  margin: 64px auto 48px;
}

.s10-diagram-top {
  background: rgba(159, 184, 166, 0.15);
  border: 1px solid #9FB8A6;
  padding: 28px;
  border-radius: 2px;
  margin-bottom: 32px;
  display: inline-block;
}

.s10-diagram-top-name {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
  color: #ffffff;
}

.s10-diagram-top-desc {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #9FB8A6;
}

.s10-diagram-connector {
  width: 1px;
  height: 32px;
  background: #9FB8A6;
  margin: 0 auto;
}

.s10-diagram-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.s10-diagram-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(159, 184, 166, 0.4);
  padding: 28px;
  border-radius: 2px;
  text-align: left;
}

.s10-diagram-box-name {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
  color: #ffffff;
}

.s10-diagram-box-role {
  font-size: 11px;
  letter-spacing: 0.15em;
  color: #9FB8A6;
  margin-bottom: 12px;
}

.s10-diagram-box-desc {
  font-size: 12px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* ============ S11: FAQ ============ */
.s11 {
  background: #FAF8F4;
  padding: 120px 24px;
}

.s11 .section-narrow {
  max-width: 800px;
}

.faq-item {
  background: white;
  padding: 0;
  margin-bottom: 16px;
  border-radius: 2px;
  border-left: 3px solid #4a6f5c;
  overflow: hidden;
}

.faq-item h3 {
  font-size: 15px;
  color: #1a1a1a;
  margin-bottom: 0;
  font-weight: 500;
  cursor: pointer;
  position: relative;
  padding: 24px 56px 24px 32px;
  transition: background 0.2s ease;
}

.faq-item h3:hover {
  background: #faf8f4;
}

.faq-item h3::after {
  content: "+";
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 300;
  color: #4a6f5c;
  transition: transform 0.3s ease;
}

.faq-item.open h3::after {
  content: "−";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

.faq-item p {
  font-size: 14px;
  line-height: 1.85;
  margin: 0;
  color: #3a3a3a;
  padding: 0 32px 28px;
}

/* ============ S12: 最終CTA ============ */
.s12 {
  background: linear-gradient(135deg, #FAF8F4 0%, #F4F1EA 100%);
  text-align: center;
  padding: 140px 24px;
}

.s12 h2 {
  font-size: 32px;
  line-height: 1.6;
  margin-bottom: 24px;
  font-weight: 300;
}

.s12 > p {
  font-size: 15px;
  max-width: 640px;
  margin: 0 auto 48px;
  line-height: 2;
}

.s12-ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.s12-ctas .cta-primary {
  font-size: 15px;
  padding: 22px 56px;
}

.s12-cta-sub {
  display: inline-block;
  color: #4a6f5c;
  padding: 12px 32px;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #4a6f5c;
}

.s12-store-link {
  margin: 8px 0 0;
}

.s12-store-link a {
  display: inline-block;
  color: #6a6a6a;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-decoration: none;
  border-bottom: 1px dotted #aaa;
  padding-bottom: 2px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.s12-store-link a:hover {
  color: #4a6f5c;
  border-color: #4a6f5c;
}

.disclaimer-light {
  font-size: 14px;
  color: #3a3a3a;
  border-left: 2px solid #4a6f5c;
  padding: 16px 20px;
  max-width: 640px;
  margin: 40px auto 0;
  line-height: 1.85;
  background: rgba(74, 111, 92, 0.05);
  text-align: left;
}

/* ============ フッター ============ */
.global-footer {
  background: #1a2622;
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 24px 32px;
}

.global-footer-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.global-footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-company-name {
  font-size: 18px;
  font-weight: 400;
  color: white;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.footer-company-info {
  font-size: 13px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.65);
}

.footer-nav-title {
  font-size: 12px;
  letter-spacing: 0.2em;
  color: #9FB8A6;
  margin-bottom: 16px;
}

.footer-nav-list {
  list-style: none;
}

.footer-nav-list li {
  margin-bottom: 10px;
}

.footer-nav-list a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.footer-nav-list a:hover {
  color: white;
}

.global-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.05em;
}

/* ============ レスポンシブ ============ */
@media (max-width: 768px) {
  .global-header {
    padding: 12px 20px;
  }
  .menu-trigger {
    display: block;
  }
  .global-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    z-index: 150;
    padding: 40px;
  }
  .global-nav.mobile-shown {
    display: flex;
  }
  .global-nav a {
    font-size: 16px;
  }
  .fv {
    padding: 80px 24px 60px;
    min-height: auto;
  }
  .fv-main {
    font-size: 28px;
  }
  .fv-sub {
    font-size: 14px;
  }
  .fv-badges {
    flex-direction: column;
    gap: 8px;
    align-items: stretch;
  }
  .badge {
    text-align: center;
  }
  .fv-bg-placeholder {
    display: none;
  }
  .mb-none {
    display: none;
  }
  .mb-left {
    text-align: left;
  }
  .s2-pillars, .s4-map, .s10-diagram-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .product-inner, .product-inner.reverse {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .product-inner.reverse .product-visual {
    order: 1;
  }
  .product-inner.reverse .product-text {
    order: 2;
  }
  .product-visual {
    margin: 0 auto;
  }
  .product-visual .img-placeholder {
    min-height: 240px;
  }
  h2, .product-text h2, .s12 h2, .s2 h2 {
    font-size: 24px;
  }
  .product-section, .s2, .s3, .s4, .s8, .s9, .s10, .s11, .s12 {
    padding: 80px 24px;
  }
  .global-footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .global-footer-bottom {
    flex-direction: column;
    gap: 12px;
  }
  .s3 p, .s4 > p, .s8 > .section-narrow > p, .s9 > .section-narrow > p, .s10 > .section-narrow > p {
    text-align: left;
  }
}
/* ============ アニメーション ============ */
.fade-in {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}/*# sourceMappingURL=style.css.map */