    :root {
      --bg: #f7f4f1;
      --bg-soft: #fbf8f4;
      --text: #2f2b28;
      --muted: #6d6259;
      --line: rgba(185, 149, 99, 0.24);
      --gold: #b99563;
      --gold-deep: #9d7b4f;
      --white: #ffffff;
    }

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

    @supports not (overflow: clip) {
      html {
        overflow-x: hidden;
      }
    }

    body {
      margin: 0;
      background: var(--bg);
      color: var(--text);
      font-family: "Inter", "Noto Sans JP", sans-serif;
      overflow-x: clip;
    }

    @supports not (overflow: clip) {
      body {
        overflow-x: hidden;
      }
    }

    body.is-locked { overflow: hidden; }

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

    a {
      color: inherit;
      text-decoration: none;
    }

    button { font: inherit; }

    .site-header {
      position: fixed;
      inset: 0 0 auto 0;
      z-index: 1000;
      pointer-events: none;
    }

    .site-header::before {
      content: "";
      position: absolute;
      inset: 0 0 0 0;
      height: 94px;
      background: rgba(247, 244, 241, 0.90);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(185, 149, 99, 0.18);
      box-shadow: 0 6px 22px rgba(72, 54, 34, 0.04);
      z-index: -1;
    }

    .site-header__inner {
      width: min(1280px, calc(100% - 48px));
      margin: 0 auto;
      padding: 22px 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      pointer-events: auto;
    }

    .site-logo {
      display: inline-flex;
      align-items: center;
      position: relative;
      z-index: 1002;
    }

    .site-logo__text {
      font-family: "Noto Serif JP", serif;
      font-size: 28px;
      font-weight: 500;
      letter-spacing: 0.02em;
      color: #3a332d;
      text-shadow: 0 1px 0 rgba(255, 255, 255, 0.42);
    }

    .menu-button {
      position: relative;
      z-index: 1002;
      width: 52px;
      height: 52px;
      border: 1px solid rgba(185, 149, 99, 0.28);
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.74);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      display: inline-flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 6px;
      cursor: pointer;
      box-shadow:
        0 10px 24px rgba(81, 60, 36, 0.06),
        inset 0 0 0 1px rgba(255, 255, 255, 0.50);
      transition:
        transform 0.24s ease,
        background 0.24s ease,
        border-color 0.24s ease,
        box-shadow 0.24s ease;
    }

    .menu-button:hover {
      transform: translateY(-1px);
      background: rgba(255, 255, 255, 0.86);
      border-color: rgba(185, 149, 99, 0.42);
      box-shadow:
        0 12px 28px rgba(81, 60, 36, 0.08),
        inset 0 0 0 1px rgba(255, 255, 255, 0.58);
    }

    .menu-button span {
      display: block;
      width: 18px;
      height: 1.25px;
      background: #514840;
      border-radius: 999px;
    }

    .drawer-overlay {
      position: fixed;
      inset: 0;
      background: rgba(26, 21, 18, 0.24);
      opacity: 0;
      visibility: hidden;
      transition: 0.35s ease;
      z-index: 1090;
    }

    .drawer-overlay.is-open {
      opacity: 1;
      visibility: visible;
    }

    .drawer-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, 100%);
  height: 100vh;
  padding: 28px 28px 36px;
  background: linear-gradient(180deg, rgba(255,255,255,0.97) 0%, rgba(248,244,239,0.97) 100%);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: -20px 0 50px rgba(40, 28, 20, 0.10);
  transform: translateX(100%);
  transition: transform 0.4s ease;
  z-index: 1100;
  display: none;
}

    .drawer-menu.is-open { transform: translateX(0); }

    .site-header,
    .drawer-overlay,
    .drawer-menu {
      max-width: 100%;
    }

    .drawer-menu__head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 28px;
      padding-bottom: 18px;
      border-bottom: 1px solid rgba(132, 112, 92, 0.12);
    }

    .drawer-menu__title {
      font-size: 12px;
      letter-spacing: 0.22em;
      color: var(--muted);
    }

    .drawer-close {
      border: none;
      background: transparent;
      font-size: 30px;
      line-height: 1;
      color: #4b433c;
      cursor: pointer;
      padding: 0;
    }

    .drawer-nav {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .drawer-nav a {
      display: block;
      padding: 16px 4px;
      font-size: 16px;
      color: #312b27;
      border-bottom: 1px solid rgba(132, 112, 92, 0.10);
      transition: color 0.28s ease, transform 0.28s ease;
    }

    .drawer-nav a:hover {
      color: var(--gold-deep);
      transform: translateX(4px);
    }

    .fv {
      position: relative;
      min-height: 100vh;
      overflow: hidden;
      isolation: isolate;
      display: flex;
      align-items: center;
      padding: 100px 0 90px;
      background: #f7f4f1;
    }

    .fv::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 120px;
      background: linear-gradient(
        180deg,
        rgba(247, 244, 241, 0) 0%,
    rgba(247, 244, 241, 0.42) 58%,
    rgba(247, 244, 241, 0.82) 82%,
    rgba(247, 244, 241, 1) 100%
      );
      pointer-events: none;
      z-index: -1;
    }

    .fv__bg {
      position: absolute;
      inset: 0;
      background: url("../img/fv-bg3.png") center center / contain no-repeat;
      z-index: -3;
    }

    .fv__overlay {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(
          90deg,
          rgba(247, 244, 241, 0.68) 0%,
          rgba(247, 244, 241, 0.52) 24%,
          rgba(247, 244, 241, 0.22) 52%,
          rgba(247, 244, 241, 0.08) 100%
        );
      z-index: -2;
    }

    .fv__inner {
      width: min(1280px, calc(100% - 48px));
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(0, 1.02fr) minmax(380px, 0.98fr);
      align-items: center;
      gap: 44px;
    }

    .fv__copy {
      max-width: 660px;
      padding-top: 6px;
      margin-bottom: 4px;
    }

    .fv__lead {
      margin: 0 0 24px;
      font-family: "Noto Serif JP", serif;
      font-size: clamp(20px, 2vw, 30px);
      font-weight: 500;
      letter-spacing: 0.10em;
      background: linear-gradient(180deg, #e3c37a 0%, #c89a3c 45%, #9f7426 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 1px 0 rgba(255,255,255,0.22);
    }

    .fv__title {
      margin: 0;
      font-family: "Noto Serif JP", serif;
      font-size: clamp(36px, 5.2vw, 72px);
      line-height: 1.38;
      font-weight: 600;
      letter-spacing: 0.02em;
      color: #2e2925;
      text-shadow: 0 1px 0 rgba(255,255,255,0.48);
    }

    .fv__text {
      margin: 32px 0 0;
      padding-top: 24px;
      border-top: 1px solid rgba(109, 94, 79, 0.28);
      font-size: clamp(14px, 1.28vw, 18px);
      line-height: 2;
      color: #4f4741;
    }

    .fv__meta {
      margin-top: 20px;
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 4px;
    }

    .fv__meta span {
      display: inline-flex;
      align-items: center;
      min-height: 40px;
      padding: 10px 16px;
      border: 1px solid rgba(185, 149, 99, 0.18);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.38);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      font-size: 12px;
      letter-spacing: 0.08em;
      color: #5f5349;
    }

    .fv__visual {
      position: relative;
      display: flex;
      justify-content: flex-end;
      align-items: flex-end;
      min-height: 520px;
    }

    .fv__product {
      position: relative;
      width: min(100%, 560px);
      max-width: 560px;
      object-fit: contain;
      filter: drop-shadow(0 26px 44px rgba(65, 47, 28, 0.12));
    }

    .fv__scroll {
      position: absolute;
      left: 50%;
      bottom: 26px;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      color: rgba(87, 76, 66, 0.74);
      font-size: 11px;
      letter-spacing: 0.22em;
    }

    .fv__scroll::after {
      content: "";
      width: 1px;
      height: 42px;
      background: rgba(87, 76, 66, 0.28);
    }

    .section-shell {
      position: relative;
        background: #f7f4f1;
    }

    .section-shell::before {
      content: "";
      position: absolute;
      inset: 0 auto auto 0;
      width: 360px;
      height: 360px;
      background: radial-gradient(circle, rgba(255,255,255,0.58) 0%, rgba(255,255,255,0) 68%);
      pointer-events: none;
    }

    .about-zombie,
    .about-senox {
      position: relative;
      width: min(1280px, calc(100% - 48px));
      margin: 0 auto;
    }

    .about-zombie {
      padding: 52px 0 112px;
      display: grid;
      grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.78fr);
      gap: 64px;
      align-items: start;
      margin-top: -26px;
    }

    .about-zombie__copy,
    .about-senox__copy {
      max-width: 760px;
    }

    .about-zombie__eyebrow,
    .about-senox__eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      margin: 0 0 22px;
      font-size: 12px;
      letter-spacing: 0.20em;
      color: #8e7862;
      text-transform: uppercase;
    }

    .about-zombie__eyebrow::before,
    .about-senox__eyebrow::before {
      content: "";
      width: 54px;
      height: 1px;
      background: linear-gradient(90deg, rgba(185,149,99,0.72) 0%, rgba(185,149,99,0.12) 100%);
    }

    .about-zombie__title,
    .about-senox__title {
      margin: 0;
      font-family: "Noto Serif JP", serif;
      font-size: clamp(40px, 4.8vw, 74px);
      line-height: 1.42;
      font-weight: 600;
      letter-spacing: 0.02em;
      color: #2d2925;
    }

    .about-zombie__text-group,
    .about-senox__text-group {
      margin-top: 38px;
      display: grid;
      gap: 22px;
    }

    .about-zombie__text,
    .about-senox__text {
      margin: 0;
      max-width: 820px;
      font-size: clamp(16px, 1.2vw, 20px);
      line-height: 2.15;
      letter-spacing: 0.02em;
      color: #4b433c;
    }

    .about-zombie__text strong,
    .about-senox__text strong {
      font-weight: 600;
      color: #352f2a;
    }

    .about-zombie__visual {
      position: relative;
      padding-top: 8px;
    }

    .about-zombie__visual::before {
      content: "";
      position: absolute;
      inset: -18px -18px auto auto;
      width: 180px;
      height: 180px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(244, 223, 203, 0.48) 0%, rgba(244, 223, 203, 0) 72%);
      pointer-events: none;
      z-index: 0;
    }

    .visual-frame {
      position: relative;
      z-index: 1;
      padding: 18px;
      border-radius: 34px;
      background: linear-gradient(180deg, rgba(255,255,255,0.72) 0%, rgba(255,255,255,0.50) 100%);
      border: 1px solid rgba(185, 149, 99, 0.16);
      box-shadow:
        0 26px 64px rgba(86, 66, 45, 0.09),
        inset 0 1px 0 rgba(255,255,255,0.76);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
    }

    .visual-frame__inner {
      position: relative;
      overflow: hidden;
      border-radius: 24px;
      background: linear-gradient(180deg, rgba(255,255,255,0.68) 0%, rgba(255,255,255,0.44) 100%);
      box-shadow: inset 0 0 0 1px rgba(255,255,255,0.52);
      line-height: 0;
    }

    .visual-frame__inner::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0) 28%, rgba(255,255,255,0.08) 100%);
      pointer-events: none;
    }

    .about-zombie__image {
      width: 100%;
      display: block;
      height: auto;
    }

    .about-senox {
      padding: 0 0 116px;
    }

    .about-senox__inner {
      max-width: 760px;
      position: relative;
    }

    .about-senox__inner::before {
      content: "";
      position: absolute;
      top: -26px;
      left: 0;
      width: min(100%, 760px);
      height: 1px;
      background: linear-gradient(90deg, rgba(185,149,99,0.18) 0%, rgba(185,149,99,0.55) 22%, rgba(185,149,99,0.10) 100%);
    }

    .about-senox__text { max-width: 760px; }
    
    
    
    .evidence-section__head {
  position: relative;
  margin-bottom: 28px;
  padding-top: 16px;
}

.evidence-section__head::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(185,149,99,0.18) 0%,
    rgba(185,149,99,0.55) 22%,
    rgba(185,149,99,0.10) 100%
  );
}

/* 既存の ingredient-section 関連CSSをこの内容に置き換え */

.ingredient-section--premium {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  padding: 0 0 116px;
}

.ingredient-section__head {
  position: relative;
  margin-bottom: 34px;
  padding-top: 12px;
}

.ingredient-section__head::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(185,149,99,0.18) 0%,
    rgba(185,149,99,0.55) 22%,
    rgba(185,149,99,0.10) 100%
  );
}

.ingredient-section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 22px;
  font-size: 12px;
  letter-spacing: 0.20em;
  color: #8e7862;
  text-transform: uppercase;
}

.ingredient-section__eyebrow::before {
  content: "";
  width: 54px;
  height: 1px;
  background: linear-gradient(90deg, rgba(185,149,99,0.72) 0%, rgba(185,149,99,0.12) 100%);
}

.ingredient-section__title {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(40px, 4.8vw, 74px);
  line-height: 1.42;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #2d2925;
}

.ingredient-hero-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: 46px;
  align-items: start;
  padding: 34px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 8% 10%, rgba(244, 229, 214, 0.38) 0%, rgba(244, 229, 214, 0) 26%),
    linear-gradient(180deg, rgba(255,255,255,0.82) 0%, rgba(255,255,255,0.58) 100%);
  border: 1px solid rgba(185, 149, 99, 0.16);
  box-shadow:
    0 28px 72px rgba(86, 66, 45, 0.09),
    inset 0 1px 0 rgba(255,255,255,0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: hidden;
}

.ingredient-hero-card::before {
  content: "";
  position: absolute;
  inset: auto -80px -100px auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(243, 226, 206, 0.34) 0%, rgba(243, 226, 206, 0) 70%);
  pointer-events: none;
}

.ingredient-hero-card__copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.ingredient-lead {
  position: relative;
  margin-bottom: 28px;
  padding: 0 0 24px;
}

.ingredient-lead::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(100%, 320px);
  height: 1px;
  background: linear-gradient(90deg, rgba(185,149,99,0.48) 0%, rgba(185,149,99,0.08) 100%);
}

.ingredient-lead__intro {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(18px, 1.55vw, 24px);
  line-height: 1.95;
  letter-spacing: 0.04em;
  color: #372f29;
}

.ingredient-pillars {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}

.ingredient-pillar {
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255,255,255,0.56);
  border: 1px solid rgba(185, 149, 99, 0.14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.76);
}

.ingredient-pillar__name {
  margin: 0 0 6px;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #a8772a;
}

.ingredient-pillar__desc {
  margin: 0;
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.95;
  color: #4c443d;
}

.ingredient-story {
  display: grid;
  gap: 18px;
}

.ingredient-story p {
  margin: 0;
  font-size: clamp(16px, 1.16vw, 19px);
  line-height: 2.08;
  letter-spacing: 0.02em;
  color: #4b433c;
}

.ingredient-story__emphasis {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(19px, 1.45vw, 24px) !important;
  line-height: 1.9 !important;
  color: #2f2924 !important;
}

.ingredient-hero-card__visual {
  position: relative;
  z-index: 1;
  padding-top: 2px;
}

.ingredient-visual-card {
  margin: 0;
  width: 100%;
  padding: 18px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,0.78) 0%, rgba(255,255,255,0.56) 100%);
  border: 1px solid rgba(185, 149, 99, 0.16);
  box-shadow:
    0 26px 64px rgba(86, 66, 45, 0.09),
    inset 0 1px 0 rgba(255,255,255,0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.ingredient-visual-card__inner {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  line-height: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.70) 0%, rgba(255,255,255,0.48) 100%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.52);
}

.ingredient-visual-card__inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0) 30%, rgba(255,255,255,0.08) 100%);
  pointer-events: none;
}

.ingredient-visual-card__image {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 1024px) {
  .ingredient-section--premium {
    padding-bottom: 96px;
  }

  .ingredient-hero-card {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 26px;
  }

  .ingredient-hero-card__copy {
    max-width: 100%;
  }

  .ingredient-hero-card__visual {
    max-width: 860px;
  }
}

@media (max-width: 768px) {
  .ingredient-section--premium {
    width: calc(100% - 32px);
    padding-bottom: 32px;
  }

  .ingredient-section__head {
    margin-bottom: 28px;
    padding-top: 12px;
  }

  .ingredient-section__eyebrow {
    margin-bottom: 16px;
    font-size: 11px;
    letter-spacing: 0.16em;
  }

  .ingredient-section__eyebrow::before {
    width: 38px;
  }

  .ingredient-section__title {
    font-size: 29px;
    line-height: 1.58;
    letter-spacing: 0.015em;
  }

  .ingredient-hero-card {
    gap: 24px;
    padding: 16px;
    border-radius: 24px;
  }

  .ingredient-lead {
    margin-bottom: 22px;
    padding-bottom: 18px;
  }

  .ingredient-lead__intro {
    font-size: 17px;
    line-height: 1.95;
  }

  .ingredient-pillars {
    gap: 12px;
    margin-bottom: 22px;
  }

  .ingredient-pillar {
    padding: 14px 14px 15px;
    border-radius: 16px;
  }

  .ingredient-pillar__name {
    font-size: 22px;
    line-height: 1.28;
  }

  .ingredient-pillar__desc {
    font-size: 14px;
    line-height: 1.9;
  }

  .ingredient-story {
    gap: 16px;
  }

  .ingredient-story p {
    font-size: 15px;
    line-height: 2.02;
  }

  .ingredient-story__emphasis {
    font-size: 18px !important;
    line-height: 1.9 !important;
  }

  .ingredient-visual-card {
    padding: 12px;
    border-radius: 24px;
  }

  .ingredient-visual-card__inner {
    border-radius: 18px;
  }
}

    @media (max-width: 768px) {
  .evidence-section {
    width: calc(100% - 32px);
    margin: 0 auto;
    padding: 0 0 48px;
  }

  .evidence-section__head {
    margin-bottom: 28px;
  }

  .evidence-section__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin: 0 0 16px;
    font-size: 11px;
    letter-spacing: 0.16em;
    color: #8e7862;
    text-transform: uppercase;
  }

  .evidence-section__eyebrow::before {
    content: "";
    width: 38px;
    height: 1px;
    background: linear-gradient(90deg, rgba(185,149,99,0.72) 0%, rgba(185,149,99,0.12) 100%);
  }

  .evidence-section__title {
    margin: 0;
    font-family: "Noto Serif JP", serif;
    font-size: 29px;
    line-height: 1.58;
    letter-spacing: 0.015em;
    font-weight: 600;
    color: #2d2925;
  }

  .evidence-grid {
    display: grid;
    gap: 22px;
  }

  .evidence-card {
    padding: 12px;
    border-radius: 24px;
    border: 1px solid rgba(185, 149, 99, 0.16);
    background: linear-gradient(180deg, rgba(255,255,255,0.72) 0%, rgba(255,255,255,0.50) 100%);
    box-shadow:
      0 20px 48px rgba(86, 66, 45, 0.08),
      inset 0 1px 0 rgba(255,255,255,0.76);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .evidence-card__image {
    overflow: hidden;
    border-radius: 18px;
    line-height: 0;
    background: rgba(255,255,255,0.84);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.52);
  }

  .evidence-card__image img {
    display: block;
    width: 100%;
    height: auto;
  }

  .evidence-card__body {
    padding: 16px 6px 4px;
  }

  .evidence-card__no {
    margin: 0 0 8px;
    font-size: 11px;
    letter-spacing: 0.18em;
    color: #9b866f;
    text-transform: uppercase;
  }

  .evidence-card__title {
    margin: 0 0 10px;
    font-family: "Noto Serif JP", serif;
    font-size: 24px;
    line-height: 1.45;
    font-weight: 600;
    color: #2d2925;
  }

  .evidence-card__text {
    margin: 0;
    font-size: 15px;
    line-height: 2.02;
    color: #4b433c;
  }
}

/* 追加CSS */
.quality-section {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  padding: 0 0 116px;
}

.quality-section__head {
  position: relative;
  margin-bottom: 34px;
  padding-top: 12px;
}

.quality-section__head::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(185,149,99,0.18) 0%,
    rgba(185,149,99,0.55) 22%,
    rgba(185,149,99,0.10) 100%
  );
}

.quality-section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 22px;
  font-size: 12px;
  letter-spacing: 0.20em;
  color: #8e7862;
  text-transform: uppercase;
}

.quality-section__eyebrow::before {
  content: "";
  width: 54px;
  height: 1px;
  background: linear-gradient(90deg, rgba(185,149,99,0.72) 0%, rgba(185,149,99,0.12) 100%);
}

.quality-section__title {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(40px, 4.8vw, 74px);
  line-height: 1.42;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #2d2925;
}

.quality-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  align-items: start;
}

.quality-card {
  position: relative;
}

.quality-card__frame {
  position: relative;
  margin: 0;
  width: 100%;
  padding: 14px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255,255,255,0.74) 0%, rgba(255,255,255,0.52) 100%);
  border: 1px solid rgba(185, 149, 99, 0.16);
  box-shadow:
    0 24px 56px rgba(86, 66, 45, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.80);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.quality-card__inner {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.72) 0%, rgba(255,255,255,0.46) 100%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.52);
  line-height: 0;
}

.quality-card__inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.10) 0%,
    rgba(255,255,255,0) 30%,
    rgba(255,255,255,0.08) 100%
  );
  pointer-events: none;
}

.quality-card__image {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 1024px) {
  .quality-section {
    padding-bottom: 96px;
  }

  .quality-grid {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .quality-section {
    width: calc(100% - 32px);
    padding-bottom: 32px;
  }

  .quality-section__head {
    margin-bottom: 28px;
    padding-top: 12px;
  }

  .quality-section__eyebrow {
    margin-bottom: 16px;
    font-size: 11px;
    letter-spacing: 0.16em;
  }

  .quality-section__eyebrow::before {
    width: 38px;
  }

  .quality-section__title {
    font-size: 29px;
    line-height: 1.58;
    letter-spacing: 0.015em;
  }

  .quality-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .quality-card__frame {
    padding: 10px;
    border-radius: 24px;
  }

  .quality-card__inner {
    border-radius: 18px;
  }
}

/* 追加CSS */
.link-section {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  padding: 0 0 116px;
}

.link-section__head {
  position: relative;
  margin-bottom: 34px;
  padding-top: 12px;
}

.link-section__head::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(185,149,99,0.18) 0%,
    rgba(185,149,99,0.55) 22%,
    rgba(185,149,99,0.10) 100%
  );
}

.link-section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 22px;
  font-size: 12px;
  letter-spacing: 0.20em;
  color: #8e7862;
  text-transform: uppercase;
}

.link-section__eyebrow::before {
  content: "";
  width: 54px;
  height: 1px;
  background: linear-gradient(90deg, rgba(185,149,99,0.72) 0%, rgba(185,149,99,0.12) 100%);
}

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

.link-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
  padding: 28px 24px 24px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 88% 12%, rgba(243, 229, 214, 0.36) 0%, rgba(243, 229, 214, 0) 28%),
    linear-gradient(180deg, rgba(255,255,255,0.82) 0%, rgba(255,255,255,0.58) 100%);
  border: 1px solid rgba(185, 149, 99, 0.16);
  box-shadow:
    0 24px 56px rgba(86, 66, 45, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow: hidden;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}

.link-card::before {
  content: "";
  position: absolute;
  inset: auto -40px -60px auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 223, 203, 0.30) 0%, rgba(244, 223, 203, 0) 72%);
  pointer-events: none;
}

.link-card:hover {
  transform: translateY(-4px);
  border-color: rgba(185, 149, 99, 0.24);
  box-shadow:
    0 28px 62px rgba(86, 66, 45, 0.11),
    inset 0 1px 0 rgba(255,255,255,0.84);
}

.link-card__label {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: #9b866f;
  text-transform: uppercase;
}

.link-card__label::before {
  content: "";
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, rgba(185,149,99,0.68) 0%, rgba(185,149,99,0.10) 100%);
}

.link-card__title {
  margin: 0 0 14px;
  font-family: "Noto Serif JP", serif;
  font-size: 30px;
  line-height: 1.38;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #2d2925;
}

.link-card__text {
  margin: 0 0 28px;
  font-size: 16px;
  line-height: 2;
  color: #4c443d;
}

.link-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: #a17841;
  text-transform: uppercase;
}

.link-card__cta::after {
  content: "";
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, rgba(185,149,99,0.72) 0%, rgba(185,149,99,0.16) 100%);
}


.link-section__title {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0.04em;
  font-weight: 600;
  color: #5b5046;
}

/* 追加CSS */
.info-section {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  padding: 0 0 100px;
}

.info-section__head {
  position: relative;
  margin-bottom: 30px;
  padding-top: 12px;
}

.info-section__head::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(185,149,99,0.18) 0%,
    rgba(185,149,99,0.55) 22%,
    rgba(185,149,99,0.10) 100%
  );
}

.info-section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 18px;
  font-size: 12px;
  letter-spacing: 0.20em;
  color: #8e7862;
  text-transform: uppercase;
}

.info-section__eyebrow::before {
  content: "";
  width: 54px;
  height: 1px;
  background: linear-gradient(90deg, rgba(185,149,99,0.72) 0%, rgba(185,149,99,0.12) 100%);
}

.info-section__title {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(24px, 2.3vw, 36px);
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #332d28;
}

.info-list {
  display: grid;
  gap: 16px;
}

.info-card {
  padding: 22px 22px 20px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.72) 0%, rgba(255,255,255,0.50) 100%);
  border: 1px solid rgba(185, 149, 99, 0.12);
  box-shadow:
    0 14px 34px rgba(86, 66, 45, 0.05),
    inset 0 1px 0 rgba(255,255,255,0.78);
}

.info-card__title {
  margin: 0 0 14px;
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  line-height: 1.45;
  font-weight: 600;
  color: #2d2925;
}

.info-card__body {
  display: grid;
  gap: 10px;
}

.info-card__body p {
  margin: 0;
  font-size: 15px;
  line-height: 1.95;
  color: #4d453e;
  word-break: break-word;
}

.info-card__body span {
  color: #6c6055;
}

.info-card__body a {
  color: #4d453e;
  text-decoration: underline;
  text-decoration-color: rgba(185,149,99,0.36);
  text-underline-offset: 3px;
}

@media (max-width: 768px) {
  .info-section {
    width: calc(100% - 32px);
    padding-bottom: 35px;
  }

  .info-section__head {
    margin-bottom: 24px;
    padding-top: 12px;
  }

  .info-section__eyebrow {
    margin-bottom: 16px;
    font-size: 11px;
    letter-spacing: 0.16em;
  }

  .info-section__eyebrow::before {
    width: 38px;
  }

  .info-section__title {
    font-size: 20px;
    line-height: 1.6;
    letter-spacing: 0.04em;
    color: #5b5046;
  }

  .info-list {
    gap: 14px;
  }

  .info-card {
    padding: 18px 16px 16px;
    border-radius: 20px;
  }

  .info-card__title {
    margin-bottom: 12px;
    font-size: 20px;
    line-height: 1.45;
  }

  .info-card__body {
    gap: 8px;
  }

  .info-card__body p {
    font-size: 14px;
    line-height: 1.9;
  }
}



@media (max-width: 1024px) {
  .link-section {
    padding-bottom: 96px;
  }

  .link-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .link-card {
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .link-section {
    width: calc(100% - 32px);
    padding-bottom: 48px;
  }

  .link-section__head {
    margin-bottom: 28px;
    padding-top: 12px;
  }

  .link-section__eyebrow {
    margin-bottom: 16px;
    font-size: 11px;
    letter-spacing: 0.16em;
  }

  .link-section__eyebrow::before {
    width: 38px;
  }

  .link-grid {
    gap: 16px;
  }

  .link-card {
    min-height: auto;
    padding: 20px 16px 18px;
    border-radius: 22px;
  }

  .link-card__label {
    margin-bottom: 16px;
    font-size: 10px;
  }

  .link-card__title {
    margin-bottom: 10px;
    font-size: 24px;
    line-height: 1.42;
  }

  .link-card__text {
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.95;
  }

  .link-card__cta {
    font-size: 11px;
  }
}

.site-footer {
  position: relative;
  padding: 22px 16px 34px;
  text-align: center;
}

.site-footer__copy {
  margin: 0;
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: #8b7d71;
}

.site-footer::before {
  content: "";
  display: block;
  width: min(1280px, calc(100% - 48px));
  max-width: 100%;
  height: 1px;
  margin: 0 auto 18px;
  background: linear-gradient(
    90deg,
    rgba(185,149,99,0.06) 0%,
    rgba(185,149,99,0.32) 50%,
    rgba(185,149,99,0.06) 100%
  );
}

@media (max-width: 768px) {
  .site-footer {
    padding: 18px 16px 28px;
    text-align: center;
  }

  .site-footer__copy {
    font-size: 11px;
    line-height: 1.8;
    letter-spacing: 0.08em;
    color: #8b7d71;
  }
}

    @media (max-width: 1024px) {
      .fv { padding: 96px 0 72px; }
      .fv__bg { background-position: 80% center; }
      .fv__overlay {
        background:
          linear-gradient(
            180deg,
            rgba(247, 244, 241, 0.42) 0%,
            rgba(247, 244, 241, 0.26) 26%,
            rgba(247, 244, 241, 0.14) 56%,
            rgba(247, 244, 241, 0.46) 100%
          );
      }

      .fv__inner {
        grid-template-columns: 1fr;
        gap: 28px;
      }

      .fv__copy { max-width: 100%; }
      .fv__visual {
        justify-content: center;
        min-height: auto;
      }

      .fv__product { width: min(100%, 460px); }

      .about-zombie {
        grid-template-columns: 1fr;
        gap: 34px;
        padding: 42px 0 96px;
      }

      .about-zombie__copy,
      .about-senox__copy { max-width: 100%; }

      .about-zombie__visual { max-width: 720px; }
      .about-senox { padding-bottom: 96px; }
      .about-senox__inner { max-width: 100%; }
    }

    @media (max-width: 768px) {
      .site-header::before {
        height: 82px;
        background: rgba(247, 244, 241, 0.64);
        border-bottom: 1px solid rgba(185, 149, 99, 0.20);
      }

      .site-header__inner {
        width: calc(100% - 32px);
        padding: 18px 0;
      }

      .site-logo__text { font-size: 25px; }

      .menu-button {
        width: 48px;
        height: 48px;
        gap: 5px;
        background: rgba(255, 255, 255, 0.88);
      }

      .menu-button span { width: 17px; }

      .fv {
        min-height: auto;
        padding: 88px 0 58px;
      }

      .fv::after { height: 92px; }

      .fv__bg {
        background-position: 76% 4%;
        background-size: cover;
      }

      .fv__overlay {
        background:
          linear-gradient(
            180deg,
            rgba(247, 244, 241, 0.06) 0%,
            rgba(247, 244, 241, 0.04) 18%,
            rgba(247, 244, 241, 0.08) 36%,
            rgba(247, 244, 241, 0.30) 58%,
            rgba(247, 244, 241, 0.74) 100%
          ),
          linear-gradient(
            90deg,
            rgba(247, 244, 241, 0.72) 0%,
            rgba(247, 244, 241, 0.46) 30%,
            rgba(247, 244, 241, 0.12) 100%
          );
      }

      .fv__inner {
        width: calc(100% - 32px);
        gap: 18px;
      }

      .fv__copy {
          padding-top: 6px;
      }
      .fv__lead { margin-bottom: 16px; }

      .fv__text {
        margin-top: 24px;
        padding-top: 18px;
        line-height: 1.9;
      }

      .fv__meta {
          gap: 8px;
          margin-bottom: 4px;
      }

      .fv__meta span {
        min-height: 36px;
        padding: 8px 12px;
        font-size: 11px;
      }

      .fv__visual {
        justify-content: center;
        margin-top: 4px;
      }

      .fv__product { width: min(100%, 360px); }
      .fv__scroll { display: none; }

      .drawer-menu { padding: 22px 20px 28px; }

      .drawer-nav a {
        font-size: 15px;
        padding: 14px 2px;
      }

      .about-zombie,
      .about-senox {
        width: calc(100% - 32px);
      }

      .about-zombie {
        margin-top: -14px;
        padding: 20px 0 32px;
        gap: 28px;
      }

      .about-zombie__eyebrow,
      .about-senox__eyebrow {
        margin-bottom: 16px;
        font-size: 11px;
        letter-spacing: 0.16em;
      }

      .about-zombie__eyebrow::before,
      .about-senox__eyebrow::before { width: 38px; }

      .about-zombie__title,
      .about-senox__title {
        font-size: 29px;
        line-height: 1.58;
        letter-spacing: 0.015em;
      }

      .about-zombie__text-group,
      .about-senox__text-group {
        margin-top: 24px;
        gap: 18px;
      }

      .about-zombie__text,
      .about-senox__text {
        font-size: 15px;
        line-height: 2.05;
      }

      .about-zombie__visual {
        padding-top: 0;
        margin-top: -30px;
      }

      .about-zombie__visual::before {
        inset: -18px 0 auto auto;
      }

      .link-card::before {
        inset: auto 0 -40px auto;
      }

      .ingredient-hero-card::before {
        inset: auto -20px -80px auto;
      }

      .visual-frame {
        padding: 12px;
        border-radius: 24px;
      }

      .visual-frame__inner { border-radius: 18px; }

      .about-senox { padding-bottom: 24px; }
      .about-senox__inner::before { top: -16px; }
    }

    @media (max-width: 480px) {
      .fv__bg { background-position: 80% 0%; }

      .fv__overlay {
        background:
          linear-gradient(
            180deg,
            rgba(247, 244, 241, 0.04) 0%,
            rgba(247, 244, 241, 0.04) 18%,
            rgba(247, 244, 241, 0.10) 34%,
            rgba(247, 244, 241, 0.36) 56%,
            rgba(247, 244, 241, 0.82) 100%
          ),
          linear-gradient(
            90deg,
            rgba(247, 244, 241, 0.76) 0%,
            rgba(247, 244, 241, 0.52) 30%,
            rgba(247, 244, 241, 0.16) 100%
          );
      }

      .fv__title {
        font-size: 32px;
        line-height: 1.5;
      }

      .fv__text { font-size: 14px; }
      .fv__product { width: min(100%, 320px); }

      .about-zombie__title,
      .about-senox__title { font-size: 27px; }
    }
    
  .drawer-nav__group {
    border-bottom: 1px solid rgba(132, 112, 92, 0.10);
  }

  .drawer-nav__parent {
    display: block;
    padding: 16px 4px 10px;
    font-size: 16px;
    color: #312b27;
  }

  .drawer-nav__children {
    display: grid;
    gap: 0;
    padding: 0 0 10px 18px;
  }

  .drawer-nav__children a {
    padding: 10px 4px;
    font-size: 13px;
    color: #6a5e54;
    border-bottom: none;
  }

  .drawer-nav__children a:hover {
    color: #9d7b4f;
    transform: translateX(4px);
  }

  @media (max-width: 768px) {
    .drawer-nav__parent {
      padding: 14px 2px 8px;
      font-size: 15px;
    }

    .drawer-nav__children {
      padding: 0 0 8px 16px;
    }

    .drawer-nav__children a {
      padding: 8px 2px;
      font-size: 12px;
    }
  }
.fv__note {
  margin: 0 0 0;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: #8a7d71;
  text-align: right;
}