@charset "UTF-8";
:root {
  --brand: #d6010d;
  --brand-dark: #9c1122;
  --accent: #e0ad41;
  --text: #1a1a1a;
  --ff-base: "Noto Sans JP", sans-serif;

  --header-h: 82px;
  --fv-contentSize: 1200px;
  --mech-contentSize: 925px;
}

@scope (.main_cp){
/* ==========================================================================
  Tokens
   ========================================================================== */

main {
  font-family: var(--ff-base);
  color: var(--text);
  overflow-x: hidden;
  container-type: inline-size;
}

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

img {
  max-width: 100%;
}

.fv__content {
  max-width: var(--fv-contentSize);
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

/* ==========================================================================
  共通パーツ
   ========================================================================== */
.desktop-only {
  display: block;
}
.mobile-only {
  display: none;
}
.container {
  max-width: calc(925px + 40px);
  margin-inline: auto;
  padding-inline: 20px;
}
@media screen and (max-width: 749px) {
  .desktop-only {
    display: none;
  }
  .mobile-only {
    display: block;
  }
  .container {
    padding-inline: 12px;
  }
}

/* ==========================================================================
   FV Section
   ========================================================================== */
.fv {
  position: relative;
  padding-bottom: 40px;
  overflow-x: clip;
}

.fv__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  height: 1453px;
  top: -43px;
}

.fv__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.fv__hero {
  display: flex;
  align-items: center;
  gap: 30px;
  padding-block: 0 8px;
}
.fv__content {
  padding-inline: 10px;
}
.fv__catch {
  position: relative;
  flex: 0 0 675px;
  height: 257px;
  filter: drop-shadow(0 0 12px #fff) drop-shadow(0 0 12px #fff);
}
.fv__catch img {
  position: absolute;
  top: -3px;
  left: -48px;
  width: 111%;
  max-width: none;
}

.fv__lead {
  flex: 1;
  font-size: 16px;
  line-height: 1.8;
}

.fv__lead strong {
  font-weight: 700;
}

.fv__shelf {
  margin-top: 24px;
}

.fv__shelf-title {
  background: #e0ce91;
  border: 2px solid #fff;
  border-radius: 8px;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  padding-block: 3px;
}

.fv__shelf-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 2px 0 0;
}
.fv__shelf-item {
  width: calc((100% - 32px)/5);
}
@media screen and (max-width:1200px) {
  .fv__catch {
    flex: 0 0 50vw;
  }
  .fv__catch img {
    left: 0;
    width: 100%;
  }
  .fv__shelf-item {
    width: calc((100% - 32px)/3);
  }
}

.fv__shelf-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  height: 100%;
  border: 2px solid #fff;
  border-radius: 8px;
  padding: 16px 24px 24px;
  background-color: #fff;
  background-size: cover;
  background-position: center;
}

.fv__shelf-head {
  display: flex;
  align-items: center;
  gap: 8px;
}

.fv__shelf-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  padding: 12px;
}

.fv__shelf-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.fv__shelf-label {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.fv__shelf-label small {
  display: block;
  font-size: 14px;
  font-weight: 700;
}

.fv__shelf-product {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.fv__shelf-product-img {
  height: 165px;
  width: auto;
  margin-bottom: -10px;
  object-fit: contain;
}

.fv__shelf-tag {
  background: #fff;
  border: 1px solid #707070;
  font-size: 12px;
  padding: 4px 21px;
  white-space: nowrap;
}

.fv__shelf-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  border: 1px solid #fff;
  border-radius: 4px;
  padding: 12px 24px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin-top: auto;
}

.fv__shelf-btn-arrow {
  width: 18px;
  height: 18px;
}

.fv__shelf-btn--1 { background: #e0ad41; }
.fv__shelf-btn--2 { background: #808080; }
.fv__shelf-btn--3 { background: #d6010d; }
.fv__shelf-btn--4 { background: #9c1122; }
.fv__shelf-btn--5 { background: #4a5b8f; }

.fv__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
}

.fv__note {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 12px;
  line-height: 1.3;
  filter: drop-shadow(0 0 3px #fff);
}

.fv__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-width: 246px;
  height: 78px;
  padding: 13px 41px;
  background: var(--brand);
  border: 1px solid var(--brand);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
}

.fv__cta-arrow {
  width: 32px;
  height: 6px;
  filter: brightness(0) invert(1);
}

/* ==========================================================================
   Mechanism Section
   ========================================================================== */
.mechanism {
  position: relative;
  background: linear-gradient(to bottom, rgba(255,255,255,0), #fff 30%);
  padding-block: 120px 0;
}

.mechanism__head {
  text-align: center;
}

.mechanism__eyebrow {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.04em;
  color: var(--brand);
}

.mechanism__title {
  font-size: 40px;
  font-weight: 700;
  margin-top: 4px;
}

.mechanism__intro {
  text-align: center;
  margin-top: 48px;
}

.mechanism__q {
  font-size: 26px;
  font-weight: 700;
}

.mechanism__lead {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
  margin-top: 16px;
}

.mechanism__points {
  list-style: none;
  margin-top: 64px;
  padding: 0;
  display: flex;
  flex-direction: column;

  gap: 16px;
}

.mechanism__points li {
  display: flex;
  gap: 12px;
  align-items: center;
}

.mechanism__num {
flex-shrink: 0;
background: var(--brand);
color: #fff;
font-family: "Roboto", sans-serif;
font-weight: 700;
font-size: 18px;
border-radius: 22px;
padding: 0px 25px;
}

.mechanism__points p {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  padding-bottom: 3px;
}

.mechanism__diagrams {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 30px;
}

.diagram-card {
  background: #f2f0e6;
  border-radius: 8px;
  padding: 24px;
}

.diagram-card__inner {
  background: #fff;
  border: 1px solid #f0ebe1;
  border-radius: 4px;
  padding: 24px 24px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 34px;
}

.diagram-card__title {
  position: relative;
  width: 100%;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: var(--brand);
  border-bottom: 2px solid var(--brand);
  padding: 8px 24px;
}
.diagram-card__title span{ 
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  color: #000;
  font-size: 10px;
  padding-left: .5em;
  text-indent: -.5em;
}

/* Cell diagram */
.cell-diagram {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 5px;
  width: 100%;
  max-width: 810px;
}

/* ATP row */
.atp-row {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Absorb diagram */
.absorb-diagram {
  margin-top: 10px;
}

.mechanism__link-note {
  width: 100%;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
}

.mechanism__link-note strong {
  color: var(--brand);
}

.diagram-card__lead {
  width: 100%;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}

/* Energy diagram */
.energy-diagram {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.mechanism__note {
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  margin-top: 16px;
}

.mechanism__note strong {
  color: var(--brand);
  font-weight: 700;
}

/* Ingredients */
.ingredients {
  max-width: var(--mech-contentSize);
  margin-inline: auto;
  margin-top: 88px;
  padding-bottom: 80px;
  text-align: center;
}

.ingredients__title {
  font-size: 26px;
  font-weight: 700;
}

.ingredients__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px 18px;
  margin-top: 14px;
}

.ingredient-card {
  position: relative;
  width: 296px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ingredient-card__badge {
  position: relative;
  z-index: 2;
  margin-bottom: -23px;
  background: var(--brand);
  color: #fff;
  border: 1px solid #fff;
  border-radius: 99px;
  padding: 8px 20px;
  font-size: 20px;
  font-weight: 700;
  white-space: nowrap;
}

.ingredient-card p {
  z-index: 1;
  width: 100%;
  background: #f2f0e6;
  border: 1px solid #fff;
  border-radius: 6px;
  padding: 40px 24px 24px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
  text-align: left;
  flex: 1;
}

/* ==========================================================================
   Type Nav (5-type jump nav)
   ========================================================================== */
.type-nav {
  position: relative;
}

.type-nav__top-wave {
  width: 100%;
  aspect-ratio: 1426/150;
}
.type-nav__top-wave::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  background-image: url("../images/f138-top-wave.svg");
  background-size: contain;
  background-repeat: no-repeat;
  aspect-ratio: 1426/150;
  width: 100%;  
}


.type-nav__body {
  background: #e3dfce;
  padding: 58px 24px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-bottom: -1px;
}

.type-nav__head {
  text-align: center;
}

.type-nav__eyebrow {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.04em;
  color: var(--brand);
}

.type-nav__title {
  font-size: 40px;
  font-weight: 700;
  margin-top: 4px;
}

.type-nav__group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.type-nav__question {
  font-size: 26px;
  font-weight: 700;
  text-align: center;
}

.type-nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 1120px;
  width: 100%;
}

.type-nav__item {
  min-width: 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 12px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 18px 8px;
  width: 216px;
  height: 211px;
}

.type-nav__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  padding: 12px;
}

.type-nav__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.type-nav__label {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
}

.type-nav__arrow {
  width: 24px;
  height: 24px;
}

.type-nav__bottom-wave {
  display: block;
  width: 100%;
}

/* ==========================================================================
   Recommend Section
   ========================================================================== */
.recommend {
  padding-block: 90px;
  background: var(--Neutral-Ingredient-Background, #F2F0E6);
}
.recommend__head {
  text-align: center;
  margin-bottom: 40px;
}

.recommend__eyebrow {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.04em;
  color: var(--brand);
}

.recommend__title {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  margin-top: 4px;
}

.rec-card {
  background: #fff;
  border-radius: 6px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 48px;
}

.rec-card__head {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--rec-color);
  padding-bottom: 14px;
  padding: 16px;
  border-radius: 6px;
}

.rec-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  padding: 12px;
}

.rec-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.rec-card__title {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
}

.rec-two-col {
  display: flex;
  gap: 10px;
  align-items: stretch;
}

.rec-col {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.rec-col__title {
  font-size: 24px;
  font-weight: 700;
}

.rec-checklist,.rec-bulletedlist {
  list-style: none;
  margin: 0;
  padding: 20px;  
  background: #f8f7f2;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  flex: 1;
}
.rec-bulletedlist {
  padding: 20px 5px;
}
.rec-checklist li {
  position: relative;
  padding-left: 30px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
}
.rec-checklist li::before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0;
  background-image: url('../images/check-amber.svg');
  background-size: contain;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
}
.rec-bulletedlist li {
  position: relative;
  padding-left: 24px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
}
.rec-bulletedlist li::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
}
.rec-checklist li img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.rec-checklist sub {
  font-size: 0.75em;
}
.rec-checklist small {
  font-feature-settings: 'palt' on;
}

.rec-products {
  background: var(--rec-color);
  border-radius: 6px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.rec-products__title {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  width: 100%;
}

.rec-products__title img {
  width: 32px;
  height: 32px;
}

.rec-products__list {
  display: flex;
  gap: 10px;
  width: 100%;
}

.rec-products__list--3 {
  flex-wrap: wrap;
}

.rec-products__list--3 .rec-product {
  flex: 0 0 calc(50% - 5px);
}

.rec-card__ctas--3 {
  flex-wrap: wrap;
}

.rec-card__ctas .rec-cta--wide {
  width: 370px;
}

.rec-product {
  flex: 1;
  min-width: 0;
  background: #fff;
  border-radius: 4px;
  transition: all .3s;
}
.rec-product:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.25);
}
.rec-product a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px;

}
.rec-product__img {
  flex-shrink: 0;
  height: 120px;
  object-fit: contain;
}
@media screen and (749px <= width < 900px) {
  .rec-product__img {
    height: 80px;  
  }
}
.rec-product__img--120px {
  width: 120px;
}

.rec-product__body {
  position: relative;
  flex: 1;
  min-width: 0;
  display: flex;
  gap: 7px;
  flex-direction: column;
  align-items: flex-start;
}

.rec-product__desc {
  display: block;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 500;
}

.rec-product__name {
  font-size: 22px;
  font-feature-settings: 'palt' on;
  font-weight: 700;
  line-height: 1.1;
}

.rec-product__name small {
  font-size: 18px;
}

.rec-product__tag {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border: 1px solid #707070;
  padding: 0 21px;
  font-size: 12px;
}

.rec-product__form {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--rec-color);
  color: #fff;
  border-radius: 99px;
  padding: 2px 16px;
  font-size: 16px;
  font-weight: 700;
}
.rec-product__small {
  letter-spacing: -0.05em;
}

.rec-product__badge {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60px;
  height: 60px;
}

.rec-reason {
  background: #f8f7f2;
  border-radius: 6px;
  padding: 20px;
}

.rec-reason__head {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.rec-reason__head img {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.rec-reason__title {
  font-size: 24px;
  font-weight: 700;
}

.rec-reason__note {
  font-size: 14px;
  margin-top: -3px;
  padding-left: 0.5em;
  text-indent: -.5em;
}

.rec-reason__note strong {
  color: var(--rec-color);
  font-weight: 700;
}

.rec-dosage {
  border: 1px solid #dcdddd;
  border-radius: 6px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rec-dosage__title {
  font-size: 24px;
  font-weight: 700;
}

.rec-dosage__lead {
  font-size: 18px;
  line-height: 1.8;
}

.rec-dosage__table {
  width: 100%;
  border-collapse: collapse;
}

.rec-dosage__table th,
.rec-dosage__table td {
  vertical-align: middle;
  border-top: 1px solid #dcdddd;
  border-bottom: 1px solid #dcdddd;
  padding: 8px 3px;
  font-size: 18px;
  text-align: left;
  line-height: 1.3;
  font-weight: 500;
}

.rec-dosage__table th {
  width: 180px;
  border-right: 1px solid #dcdddd;
  font-weight: 700;
}
.rec-dosage__table td {
  padding: 8px 14px;
}

.rec-dosage__table tr + tr th,
.rec-dosage__table tr + tr td {
  border-top: none;
}

.rec-dosage__footnote {
  font-size: 18px;
  line-height: 1.8;
}

.rec-more {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}

.rec-more__title {
  font-size: 24px;
  font-weight: 700;
}

.rec-more__card {
  background: #f3f6fb;
  border: 1px solid #9ca9c8;
  border-radius: 6px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rec-more__card p {
  font-size: 18px;
  line-height: 1.6;
}

.rec-more__link {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  color: var(--rec-color);
  font-size: 18px;
  font-weight: 700;
}

.rec-more__link img {
  width: 32px;
  height: 6px;
  filter: brightness(0) saturate(100%) invert(38%) sepia(20%) saturate(1024%) hue-rotate(182deg) brightness(90%) contrast(87%);
}

.rec-card__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 36px;
}

.rec-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 246px;
  min-height: 78px;
  padding: 13px 25px;
  background: var(--brand);
  border: 1px solid var(--brand);
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
}

.rec-cta img {
  width: 32px;
  height: 6px;
  filter: brightness(0) invert(1);
  flex-shrink: 0;
}

/* ==========================================================================
   Matrix Section
   ========================================================================== */
.matrix {
  background: #fff;
  padding-block: 120px;
}

.matrix__head {
  text-align: center;
}

.matrix__eyebrow {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.04em;
  color: var(--brand);
}

.matrix__title {
  font-size: 40px;
  font-weight: 700;
  margin-top: 4px;
}

.matrix__block {
  margin-top: 26px;
}

.matrix__block + .matrix__block {
  margin-top: 80px;
}

.matrix__intro {
  text-align: center;
  margin-bottom: 32px;
}

.matrix__intro-title {
  font-size: 26px;
  font-weight: 700;
}

.matrix__intro-lead {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 16px;
}

.matrix__sub-title {
  font-size: 26px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
}

.matrix-table-wrap,
.ingredient-table-wrap {
  overflow-x: auto;
}

.matrix-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.matrix-table th,
.matrix-table td {
  border: 1px solid #dcdddd;
}

.matrix-table .matrix-table__corner {
  width: 162px;
  border: none;
  background: #fff;
  border-top: none;
  border-left: none;
}

.matrix-table thead th {
  background: #f2f0e6;
  padding: 16px 12px;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}

.matrix-table thead th span {
  display: block;
  font-size: 13px;
  line-height: 0.9;
  font-weight: 700;
}
.matrix-table thead th svg {
  margin-top: 10px;
}

.matrix-table thead th strong {
  display: block;
  font-size: 18px;
  margin-top: 10px;
}

.matrix-table tbody th {
  background: #f2f0e6;
  width: 162px;
  padding: 6px;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  vertical-align: middle;
}

.matrix-table tbody td {
  padding: 8px;
  text-align: center;
  vertical-align: middle;
  height: 130px;
}

.matrix-table__dash {
  color: #666;
  font-size: 15px;
}

.matrix-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-feature-settings: 'palt' on;
  height: 100%;
  border-radius: 4px;
  border: 1px solid;
  padding: 8px 6px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}

.matrix-pill__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 99px;
  padding: 0 12px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}

.matrix-pill--amber { background: #fbf7ee; border-color: #c9a04e; color: #c9a04e; }
.matrix-pill--amber .matrix-pill__tag { background: #e0ad41; }
.matrix-pill--gray { background: #f5f5f5; border-color: #808080; color: #808080; }
.matrix-pill--gray .matrix-pill__tag { background: #808080; }
.matrix-pill--red { background: #fff3f3; border-color: #d6010d; color: #d6010d; }
.matrix-pill--red .matrix-pill__tag { background: #d6010d; }
.matrix-pill--darkred { background: #fff3f3; border-color: #9c1122; color: #9c1122; }
.matrix-pill--darkred .matrix-pill__tag { background: #9c1122; }
.matrix-pill--navy { background: #f3f6fb; border-color: #4a5b8f; color: #4a5b8f; }
.matrix-pill--navy .matrix-pill__tag { background: #4a5b8f; }

.matrix__note {
  font-size: 16px;
  line-height: 1.6;
  margin-top: 8px;
}

.ingredient-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.ingredient-table th,
.ingredient-table td {
  border: 1px solid #dcdddd;
  padding: 16px 12px;
  line-height: 1.4;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

.ingredient-table thead th {
  background: #f2f0e6;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.ingredient-table tbody tr.is-tint td {
  background: #fbfaf6;
}
.ingredient-table tbody td {
  vertical-align: middle;
}

.ingredient-table tbody td:first-child {
  width: 180px;
}

.ingredient-table tbody td:nth-child(2) {
  width: 200px;
}

.ingredient-table tbody td strong {
  display: block;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 700;
}

.ingredient-table tbody td small {
  display: block;
  font-feature-settings: 'palt' on;
  font-size: 12px;
  color: #777;
  font-weight: 500;
}

.ingredient-table tbody td {
  font-size: 14px;
  font-weight: 500;
}

/* ==========================================================================
   Compare Section
   ========================================================================== */
.compare {
  background: #f2f0e6;
  padding-block: 120px;
}
.compare__head {
  text-align: center;
  margin-bottom: 32px;
}

.compare__eyebrow {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.04em;
  color: var(--brand);
}

.compare__title {
  font-size: 40px;
  font-weight: 700;
  margin-top: 4px;
}

.compare-table-wrap {
  overflow-x: auto;
  background: #fff;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 900px;
}

.compare-table th,
.compare-table td {
  border: 1px solid #dcdddd;
  padding: 22px 12px;
  font-size: 14px;
  line-height: 1.4;
  font-feature-settings: 'palt' on;
  text-align: center;
  font-weight: 500;
}

.compare-table thead th {
  background: #f2f0e6;
  font-weight: 700;
  padding: 15px 0;
}

.compare-table tbody th {
  font-size: 16px;
  font-weight: 700;
  text-align: left;
}

.compare-table tbody td:nth-child(3) {
  text-align: left;
}

.compare-table tbody td:nth-child(4) {
  text-align: left;
}

.compare-table tbody tr.is-tint th,
.compare-table tbody tr.is-tint td {
  background: #fbfaf6;
}

.compare__note {
  font-size: 14px;
  line-height: 1.6;
  margin-top: 8px;
}

/* ==========================================================================
   How To Choose Section
   ========================================================================== */
.howto {
  background: #fff;
  padding-block: 120px;
}
.howto__head {
  text-align: center;
  margin-bottom: 48px;
}

.howto__eyebrow {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.04em;
  color: var(--brand);
}

.howto__title {
  font-size: 40px;
  font-weight: 700;
  margin-top: 4px;
}

.howto__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.howto__row {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.howto__lead {
  flex: 1;
  min-width: 0;
  display: flex;
  gap: 12px;
}

.howto__num {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid var(--brand);
  color: var(--brand);
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 24px;
}

.howto__lead-text {
  padding-top: 14px;
}

.howto__lead-title {
  font-size: 26px;
  font-weight: 700;
}

.howto__lead-sub {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 4px;
}

.howto-card {
  flex-shrink: 0;
  width: 500px;
  background: #fff;
  border: 1px solid #dfd4c4;
  border-radius: 8px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.howto-card__text {
  text-align: center;
}

.howto-flow {
  display: flex;
  align-items: center;
  gap: 10px;
}

.howto-flow__from {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
  border-radius: 4px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
}

.howto-flow__arrow {
  flex-shrink: 0;
  font-size: 18px;
  font-weight: 700;
}

.howto-flow__to {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
  border: 1px solid;
  border-radius: 4px;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
}

.howto-flow__to--tall {
  line-height: 1.2;
}

.howto-card--dosage {
  justify-content: center;
  padding: 0 20px;
  gap: 0;
}

.howto-dosage-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 12px 0;
  border-bottom: 1px solid #dfd4c4;
}

.howto-dosage-row--last {
  border-bottom: none;
}

.howto-dosage-row__icon {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 180px;
  font-size: 20px;
  font-weight: 700;
}

.howto-dosage-row__icon img {
  width: 32px;
  height: 32px;
}

.howto-dosage-row__desc {
  width: 192px;
  font-size: 16px;
}

.howto-card--caffeine {
  gap: 8px;
}

.howto-caffeine-row {
  display: flex;
  height: 88px;
}

.howto-caffeine-row__badge {
  flex-shrink: 0;
  width: 118px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  border: 1px solid;
  margin-right: -1px;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  line-height: 1.1;
}

.howto-caffeine-row__badge img {
  width: 24px;
  height: 24px;
}

.howto-caffeine-row__mid,
.howto-caffeine-row__prod {
  flex-shrink: 0;
  width: 146px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #dfd4c4;
  border-left: none;
  margin-right: -1px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.4;
}

.howto-caffeine-row__prod {
  flex: 1;
  width: auto;
  margin-right: 0;
}
.howto-special-link {
  display: flex;
  align-items: center;
  gap: 32px;
  width: fit-content;
  margin-top: 45px;
  max-width: 100%;
  margin-inline: auto;
  padding: 30px 46px;
  background: #fff;
  border: 1px solid #dfd4c4;
  border-radius: 8px;
}

.howto-special-link p {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}

.howto-special-link strong {
  color: var(--brand);
  font-weight: 700;
}

.howto-special-link img {
  flex-shrink: 0;
  width: 30.5px;
  height: 6px;
}
.howto__footer {
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 48px;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq {
  background: #f2f0e6;
  padding-block: 120px;
}

.faq__head {
  text-align: center;
  margin-bottom: 32px;
}

.faq__eyebrow {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.04em;
  color: var(--brand);
}

.faq__title {
  font-size: 40px;
  font-weight: 700;
  margin-top: 4px;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #fff;
}

.faq-item__q {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 38px;
  cursor: pointer;
  list-style: none;
}

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

.faq-item__mark {
  flex-shrink: 0;
  width: 40px;
  font-size: 20px;
  font-weight: 700;
  color: var(--brand);
  text-align: center;
}

.faq-item__text {
  flex: 1;
  min-width: 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
}

.faq-item__toggle {
  flex-shrink: 0;
  position: relative;
  width: 24px;
  height: 24px;
}

.faq-item__toggle::before,
.faq-item__toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #000;
  transform: translate(-50%, -50%);
}

.faq-item__toggle::before {
  width: 24px;
  height: 1px;
}

.faq-item__toggle::after {
  width: 1px;
  height: 24px;
  transition: all .2s;  
}

.faq-item[open] .faq-item__toggle::after {
  transform: translate(-50%,-50%) rotate(90deg);
}

.faq-item__a {
  display: flex;
  gap: 24px;
  background: #f8f7f2;
  padding: 38px;
}

.faq-item__a .faq-item__mark {
  padding-top: 2px;
}

.faq-item__a p {
  flex: 1;
  min-width: 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.7;
}

.faq-item__a strong {
  font-weight: 700;
}

/* ==========================================================================
   Related Section (slider)
   ========================================================================== */
.related {
  padding-block: 120px;
  overflow: hidden;
}

.related__head {
  text-align: center;
  margin-bottom: 40px;
}

.related__eyebrow {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.04em;
  color: var(--brand);
}

.related__title {
  font-size: 40px;
  font-weight: 700;
  margin-top: 4px;
}

.related-slider {
  position: relative;
}

/* スライダーOFF時（枚数がしきい値未満）はcenter揃えの静的表示 */
/* splide.min.css は mount() 前提で .splide に visibility:hidden を当てるため、
   非スライダー時はここで明示的に解除する */
.related-slider.related-slider--static {
  visibility: visible;
}

.related-slider--static .splide__track {
  overflow: visible;
}

.related-slider--static .splide__list {
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  padding-inline: 20px;
}

.related-slide {
  width: 500px;
  height: 691px;
}

.related-slide__link {
  display: block;
  width: 100%;
  height: 100%;
}

.related-slide__img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  border-radius: 4px;
  pointer-events: none;
  user-select: none;
}

.related-slide--cta .related-slide__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  height: 100%;
  background: #e1e1e1;
  border-radius: 4px;
  padding: 48px 22px;
  text-align: center;
}

.related-slide__cta-text {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.55;
}

.related-slide__cta-more {
  font-size: 16px;
  font-weight: 700;
}

.related-slider .splide__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #fff;
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.25);
  opacity: 1;
}

.related-slider .splide__arrow svg {
  width: 10px;
  height: 18px;
  fill: var(--text);
}

.related-slider .splide__arrow--prev {
  left: 20px;
}

.related-slider .splide__arrow--next {
  right: 20px;
}

.related-slider .splide__arrow:disabled {
  opacity: .3;
}


/* ==========================================================================
   Responsive (SP)
   ========================================================================== */
@media screen and (max-width: 749px) {
  .fv__bg {
    top: -77px;
    height: 700px; 
  }
  .fv__content {
    padding-inline: 0;
    margin-top: 30px;
  }
  .fv__subcatch-sp {
    margin-top: -30px;
    padding-inline: 20px;
  }
  .fv__hero {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }

  .fv__catch {
    flex: none;
    align-self: center;
    width: 100%;
    height: auto;
  }
  .fv__catch img {
    position: relative;
  }

  .fv__lead {
    margin-top: -22px;
    font-size: 14px;
    padding-inline: 17px;
  }
  .fv__lead strong {
    font-weight: 500;
  }
  .fv__shelf {
    margin-top: 14px;
    padding-inline: 12px;
  }
  .fv__shelf-title {
    font-size: 20px;
  }

  .fv__shelf-list {
    margin-top: 5px;
    gap: 4px 6px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .fv__shelf-item {
    flex: 1 1 calc(50% - 4px);
    min-width: calc(50% - 4px);
  }

  .fv__shelf-item--5 {
    flex: 0;
  }

  .fv__shelf-card {
    padding: 4px 10px 12px;
    gap: 7px;
  }
  .fv__shelf-icon {
    width: 46px;
    height: 46px;
  }
  .fv__shelf-label {
    font-size: 14px;
    letter-spacing: -0.05em;
    white-space: normal;
    text-align: center;
  }
  .fv__shelf-label small {
    font-size: 10px;
  }
  .fv__shelf-product-img {
    height: 120px;
  }
  .fv__shelf-tag {
    font-size: 10px;
    padding: 0px 21px;
    margin-top: 2px;
  }
  .fv__shelf-btn {
    font-size: 14px;
    padding: 3px 0;
  }
  .fv__note span {
    text-indent: -.5rem;
    padding-left: .5rem;
    line-height: 1.3;
    font-size: 10px;
  }
  .fv__foot {
    flex-direction: column;
    align-items: stretch;
  }

  .fv__cta {
    margin-top: 8px;
    padding: 13px 0 13px 15px;
    width: 100%;
    letter-spacing: -.1em;
    justify-content: flex-start;
  }

  /* Mechanism */
  .mechanism {
    padding-block: 75px 0;
    overflow-x: hidden;
  }
  .mechanism__eyebrow {
    font-size: 14px;
  }
  .mechanism__title {
    font-size: 26px;
    margin-top: -2px;
  }
  .mechanism__intro {
    margin-top: 37px;
  }
  .mechanism__q {    
    font-size: 22px;
  }

  .mechanism__lead {
    font-size: 16px;
    margin-top: 8px;
    text-align: left;
  }

  .mechanism__points {
    margin-top: 30px;
  }
  .mechanism__points p {
    font-size: 18px;
  }
  .mechanism__num {
    border-radius: 8px;
    padding: 29px 23px;
  }
  .mechanism__diagrams {
    margin-top: 40px;
    gap: 32px;
  }
  .diagram-card__title {
    font-size: 20px;
    padding: 5px 0;
  }
  .diagram-card__title span {
    display: block;
    position: relative;
    top: auto;
    transform: none;
    margin-top: 5px;
  }

  .diagram-card {
    overflow: hidden;
    background-color: transparent;
    padding: 0;
  }

  .diagram-card__inner {
    padding: 16px 8px 24px;
    border: 3px solid #f0ebe1;
    min-width: 0;
    gap: 0;
    border-radius: 8px;
    overflow: hidden;
  }

  .cell-diagram {
    margin-top: 30px;
    width: 100%;
    overflow-x: auto;
    justify-content: flex-start;
  }

  .absorb-diagram {
    justify-content: flex-start;
  }

  .mechanism__link-note,
  .diagram-card__lead {
    font-size: 18px;
    text-align: left;
  }
  .diagram-card__lead.diagram-card__lead--small {
    font-size: 12px;
    text-align: center;
    margin-top: 18px;
    line-height: 1.2;
  }
  .energy-diagram {
    margin-top: 15px;
  }

  .atp-row {
    margin-top: 10px;
    flex-direction: column;
    align-items: stretch;
  }

  .mechanism__note {
    text-align: left;
    font-size: 18px;
  }

  .ingredients {
    margin-top: 78px;
    padding-bottom: 78px;
  }

  .ingredients__title {
    font-size: 22px;
  }
  .ingredients__list {
    display: flex;
    gap: 8px;
  }
  .ingredient-card {
    width: calc((100% - 8px)/2);    
  }
  .ingredient-card:first-child {
    width: 100%;    
  }
  .ingredient-card p {
    padding: 32px 16px 12px;
    line-height: 1.6;
    font-size: 14px;
  }
  .ingredient-card__badge {
    font-size: 18px;
    padding: 5px 20px;
  }
  /* Type nav */
  .type-nav__body {
    padding: 59px 12px 35px;
  }

  .type-nav__title {
    margin-top: -2px;
    font-size: 26px;
  }
  .type-nav__eyebrow {
    font-size: 16px;
  }
  .type-nav__question {
    font-size: 22px;
  }

  .type-nav__list {
    flex-wrap: wrap;
    width: auto;
  }
  .type-nav__item {
    padding: 13px 8px;
    flex: none;
    width: calc((100% - 10px)/2);
    height: auto;
  }
  .type-nav__label {
    font-size: 14px;
  }
  .type-nav__bottom-wave {
    margin-bottom: -2px;
  }
  /* Recommend */
  .recommend {
    padding-block: 70px;
  }
  .recommend__eyebrow {
    font-size: 16px;
  }
  .recommend__title {
    margin-top: -2px;
    font-size: 26px;
  }
  .recommend__head {
    margin-bottom: 27px;
  }
  .rec-card {
    padding: 16px 14px;
    gap: 20px;
    margin-top: 0;
  }
  .rec-card+.rec-card {
    margin-top: 24px;
  }

  .rec-card__head {
    gap: 10px;
    border-bottom: none;
    padding-bottom: 0;
    padding: 10px;
  }
  .rec-card__title {
    font-size: 24px;
    line-height: 1.2;
  }
  .rec-col__title {
    font-size: 20px;
  }
  .rec-two-col {
    flex-direction: column;
  }
  .rec-checklist {
    padding: 14px 10px;
  }
  .rec-checklist li {
    font-size: 16px;
  }
  .rec-products {
    padding: 18px 10px;
  }
  .rec-products__list,
  .rec-products__list--3 {
    flex-direction: column;
  }

  .rec-products__list--3 .rec-product {
    flex-basis: auto;
  }

  .rec-product a {
    gap: 12px;
    padding: 12px;
  }
  .rec-products__title {
    font-size: 20px;
    line-height: 1.2;
  }
  .rec-products__title img {
    width: 40px;
    height: 40px;
  }
  .rec-product__img {
    width: 110px;
    height: auto;
  }
  .rec-product__img--120px {
    height: 110px;
  }

  .rec-product__desc {
    font-size: 12px;
  }
  .rec-product__tag {
    font-size: 10px;
    padding: 0 9px;
  }
  .rec-product__badge {
    width: 42px;
    height: 42px;
  }
  .rec-product__form {
    padding: 1px 11px;
    margin-top: 4px;
    font-size: 14px;
    line-height: 1.3;
  }
  .rec-product__name {
    font-size: 18px;
    font-feature-settings: 'palt' on;
  }

  .rec-product__name small {
    font-size: 15px;
  }
  .rec-reason {
    padding: 16px;
  }
  .rec-reason__title {
    font-size: 20px;
    line-height: 1.2;
  }
  .rec-reason__note {
    font-size: 12px;
    line-height: 1.2;
    margin-top: 7px;
  }
  .rec-bulletedlist {
    padding: 9px 0;
  }
  .rec-bulletedlist li {
    font-size: 16px;
    line-height: 1.4;
  }
  .rec-bulletedlist li::before {
    left: 5px;
  }
  .rec-dosage {
    padding: 16px;
  }
  .rec-dosage__title {
    font-size: 20px;
  }
  .rec-dosage__lead {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 16px;
  }
  .rec-dosage__table table,
  .rec-dosage__table tbody,
  .rec-dosage__table tr,
  .rec-dosage__table th,
  .rec-dosage__table td {
    display: block;
    border: none;
  }
  .rec-dosage__table tr {
    padding: 16px 0;
    border-top: 1px solid var(--Neutral-Border, #DCDDDD);
  }
  .rec-dosage__table tr:last-child {
    border-bottom: 1px solid var(--Neutral-Border, #DCDDDD);
  }
  .rec-dosage__table th {
    width: 100%;
    padding: 0;
    font-size: 16px;
    line-height: 1.3;
    margin-bottom: 4px;
  }
  .rec-dosage__table td {
    padding: 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
  }
  .rec-dosage__footnote {
    font-size: 16px;
    line-height: 1.4;
  }
  .rec-dosage__footnote small {
    font-size: 12px;
    line-height: 1.2;
  }
  .rec-card__ctas {
    margin-top: 0;
  }
  .rec-more__title {
    font-size: 20px;
    line-height: 1.4;
  }
  .rec-cta {
    font-size: 16px;
  }
  .rec-card__ctas,
  .rec-card__ctas--3 {
    flex-direction: column;
  }
  .rec-more__card {
    padding: 12px;
  }
  .rec-more__card p {
    font-size: 16px;
  }
  .rec-more__link {
    font-size: 16px;
  }
  .rec-cta,
  .rec-cta--wide {
    width: 100% !important;
  }
  /* Matrix */
  .matrix-table-wrap,
  .ingredient-table-wrap,
  .compare-table-wrap {
    position: relative;
  }
  .ingredient-table,.matrix-table,.compare-table {
    min-width: 925px;
  }

  .matrix-table-wrap::after,
  .ingredient-table-wrap::after,
  .compare-table-wrap::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: url('../images/scroll-nav.png');
    background-size: contain;
    width: 154px;
    aspect-ratio: 154/126;
    white-space: nowrap;
    pointer-events: none;
    transition: opacity 0.2s;
    z-index: 2;
  }
  .cmn-table.is-scrolled::after {
    opacity: 0;
  }
  .matrix {
    padding-block: 60px;
  }

  .matrix__title {
    font-size: 26px;
  }
  .matrix__eyebrow {
    font-size: 16px;
  }
  .matrix__block {
    margin-top: 30px;
  }
  .matrix__intro {
    margin-bottom: 25px;
  }
  .matrix__intro-title {
    font-size: 22px;
  }

  .matrix__intro-lead {
    margin-top: 13px;
    font-size: 18px;
    line-height: 1.7;
    text-align: left;
  }

  .matrix__sub-title {
    font-size: 20px;
  }
  .matrix-table {
    min-width: 785px;
  }
  .matrix-table colgroup col:first-child {
    width: 132px;
  }
  .matrix-table colgroup {
    width: 218px;
  }
  .matrix-table thead th svg {
    margin-top: 13px;
    width: 30px;
    aspect-ratio: 1/1;
  }
  .matrix-table tbody th {
    font-size: 16px;
    border: none;
  }
  .matrix-table tr td {
    border-left: none;
  }  
  .matrix-table .fixed {
    position: sticky;
    left: 0;
  }
  .matrix-table .fixed::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid #dcdddd;
  }
  .matrix-pill {
    font-size: 14px;
  }
  /* Compare */
  .compare {
    padding-block: 60px;
  }

  .compare__title {
    font-size: 26px;
  }
  .compare__eyebrow {
    font-size: 15px;
  }
  .compare-table thead th {
    font-size: 12px;
  }
  .compare-table th,td {
    vertical-align: middle;
  }
  .compare-table tbody th {
    font-size: 14px;
    border: none;
  }
  .compare-table tr td,.compare-table tr th {
    border-left: none;
  }
  .compare-table .fixed {
    position: sticky;
    z-index: 2;
    left: 0;
    color: #000;
    background-color: #fff;
    border: none;
  }
  .compare-table .fixed-last::before {
    border-bottom: 1px solid #dcdddd;
  }
  .compare-table .fixed::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid #dcdddd;
    border-bottom: none;
  }  
  .compare__note {
    font-weight: 500;
    font-size: 12px;
  }
  /* How to choose */
  .howto {
    padding-block: 60px;
  }
  .howto__title {
    font-size: 26px;
  }
  .howto__num {
    width: 48px;
    height: 48px; 
    font-size: 20px;   
  }
  .howto__row {
    flex-direction: column;
  }

  .howto-card {
    width: 100%;
  }
  .howto__eyebrow {
    font-size: 16px;
  }
  .howto__lead-title {
    font-size: 22px;
  }
  .howto__lead-sub {
    font-size: 18px;
  }
  .howto__list {
    gap: 40px;
  }
  .howto-card {
    padding: 10px;
  }
  .howto-flow__to {
    font-size: 14px;
  }
  .howto-flow__from {
    font-size: 14px;
  }
  .howto__footer {
    font-size: 18px;
    margin-top: 16px;
    text-align: left;
  }
  .howto__footer {
    font-size: 18px;
    margin-top: 16px;
    text-align: left;
  }
  .howto-dosage-row__icon {
    font-size: 18px;
  }
  .howto-dosage-row__desc {
    font-size: 14px;
  }
  .howto-caffeine-row__badge {
    width: 90px;
  }
  .howto-caffeine-row__badge {
    font-size: 16px;
  }
  .howto-caffeine-row__mid {
    width: 128px;
    font-size: 14px;
  }
  .howto-caffeine-row__prod {
    font-size: 14px;
  }
  /* FAQ */
  .faq {
    padding-block: 60px;
  }
  .faq__title {
    font-size: 26px;
  }
  .faq__eyebrow {
    font-size: 16px;
  }
  .faq-item__q {
    align-items: flex-start;
    padding: 18px 10px;
    gap: 0;
  }
  .faq-item__mark {
    font-size: 18px;
  }
  .faq-item__a {
    padding: 18px 10px; 
    gap: 0;
  }

  .faq-item__text,
  .faq-item__a p {
    font-size: 18px;
  }
  .faq-item__toggle::before {
    width: 18px;
  }
  .faq-item__toggle::after {
    height: 18px;
  }
  /* Related */
  .related {
    padding-block: 70px;
  }
  .related__head {
    margin-bottom: 27px;
  }
  .related__title {
    margin-top: -2px;
    font-size: 26px;
  }
  .related__eyebrow {
    font-size: 16px;
  }
  .related-slide {
    width: 78vw;
    height: auto;
    aspect-ratio: 500 / 691;
  }
  .related-slide--cta .related-slide__link {
    padding: 32px 16px;
  }
  .related-slider--static .splide__list {
    gap: 10px;
    padding-inline: 12px;
  }
  .related-slider .splide__arrow {
    width: 40px;
    height: 40px;
  }
  .related-slider .splide__arrow--prev {
    left: 8px;
  }
  .related-slider .splide__arrow--next {
    right: 8px;
  }
  .cta {
    padding-bottom: 15.4vw;
    background: #f2f0e6;
  }
}
}