@import url("https://fonts.googleapis.com/css2?family=Kiwi+Maru:wght@500&family=Noto+Sans+JP:wght@500&family=Zen+Maru+Gothic:wght@500&display=swap");
:root {
  --color-black: #000;
  --color-white: #fff;
  --color-main: #744420;
  --color-main-light: #d4b69f;
  --color-accent: #e76e14;
  --color-text-brand: #440101;
  --color-text-brand-alpha-20: rgba(68, 1, 1, 0.2);
  --color-text-brand-alpha-25: rgba(68, 1, 1, 0.25);
  --color-bg-brand: #f8f5ec;
  --color-green-section: #c1e385;
  --color-care-metabolism: #17a8af;
  --color-care-metabolism-light: #74c7ca;
  --color-care-metabolism-bg: #cee7e8;
  --color-care-blood-sugar: #df8500;
  --color-care-blood-sugar-light: #ef9819;
  --color-care-blood-sugar-bg: #fde9cc;
  --color-care-neutral-fat: #f06b4e;
  --color-care-neutral-fat-light: #ffb092;
  --color-care-neutral-fat-bg: #ffe7de;
  --color-care-neutral-fat-faq: #f4785c;
  --color-text: #333;
  --color-bg: var(--color-white);
  --text-primary: 'Zen Maru Gothic', sans-serif;
  --font-kiwi: 'Kiwi Maru', serif;
  --font-noto: 'Noto Sans JP', sans-serif;
  --text-size-regular: 1.6rem;
  --trd-duration: .8s;
  --trd-hover-duration: 0.5s;
  --trd-timing: cubic-bezier(.165, .84, .44, 1);
  --modal-index: 1000;
  --page-top-index: 700;
}
@media (max-width: 768px) {
  :root {
    --text-size-regular: 4.2666666667vw;
  }
}

:where(:not(:is(ul, ol, li))) {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  box-sizing: border-box;
  background-color: transparent;
}

html, body {
  font-size: 62.5%;
}

:where(:is(article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, main)) {
  display: block;
}

:where(:is(ul, ol)) {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
:where(:is(ul, ol)) li {
  margin: 0;
  padding: 0;
}

:where(:is(blockquote, q)) {
  quotes: none;
}
:where(:is(blockquote, q))::before, :where(:is(blockquote, q))::after {
  content: none;
}

:where(a) {
  text-decoration: none;
  color: inherit;
}

:where(img) {
  display: inline-flex;
  vertical-align: bottom;
  max-width: 100%;
}

:where(input) {
  vertical-align: middle;
}

:where(label) {
  cursor: pointer;
}

:where(picture) {
  max-width: 100%;
}

:where(input, select) {
  vertical-align: middle;
}

:where(br) {
  line-height: 0;
}

:where(input, textarea, select, button) {
  font: inherit;
  font-size: 16px;
}

:where(:is(button)) {
  color: var(--color-text);
  cursor: pointer;
}

:where(:is(input:is([type=checkbox][type=radio]), select, button)) {
  cursor: pointer;
}

:where(:is(input[type=submit], input[type=button])) {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  box-sizing: border-box;
}
:where(:is(input[type=submit], input[type=button]))::-webkit-search-decoration {
  display: none;
}
:where(:is(input[type=submit], input[type=button])):focus {
  outline-offset: -2px;
}

:where(:is(h1, h2, h3, h4, h5, h6)) {
  font-size: inherit;
  font-weight: inherit;
}

html {
  scroll-behavior: smooth;
}

.uah-main {
  font-family: var(--text-primary);
  font-weight: 500;
  color: var(--color-text);
  font-size: var(--text-size-regular);
  line-height: 1.7;
  display: flex;
  flex-direction: column;
  font-feature-settings: "palt";
  min-height: 100vh;
}
.uah-main .sp-only {
  display: none;
}
@media (max-width: 768px) {
  .uah-main .sp-only {
    display: block;
  }
}
@media (max-width: 768px) {
  .uah-main .pc-only {
    display: none;
  }
}
.uah-main .js-inview {
  transition: opacity var(--trd-duration) var(--trd-timing), transform var(--trd-duration) var(--trd-timing);
}
.uah-main .js-inview.is-inview-fade {
  opacity: 0;
}
.uah-main .js-inview.is-inview-up {
  opacity: 0;
  transform: translateY(20px);
}
.uah-main .js-inview.is-active {
  opacity: 1;
  transform: translate(0, 0);
}

.section-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.section-bg-1 {
  background-image: url("/andhealthy/dist/images/common/bg-1.svg");
  background-size: 207.5rem auto;
}
@media (max-width: 768px) {
  .section-bg-1 {
    background-image: url("/andhealthy/dist/images/common/sp/bg-1.svg");
    background-size: 100%;
  }
}
.section-bg-1 {
  background-repeat: no-repeat;
  background-position: top center;
}

.fab {
  background-color: transparent;
  border: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: inherit;
  font-family: inherit;
}
.fab:not(:focus) {
  outline: none;
}
.fab {
  position: fixed;
  right: clamp(1.2rem, -1.3333333333rem + 3.1746031746vw, 4rem);
  bottom: clamp(2rem, 0.1904761905rem + 2.2675736961vw, 4rem);
  z-index: var(--page-top-index);
  display: grid;
  place-items: center;
  width: clamp(12rem, 8.380952381rem + 4.5351473923vw, 16rem);
  height: clamp(12rem, 8.380952381rem + 4.5351473923vw, 16rem);
  padding: 0;
  border: 0.2rem solid var(--color-main);
  border-radius: 50vh;
  background-color: var(--color-white);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(calc(100% + clamp(1.2rem, -1.3333333333rem + 3.1746031746vw, 4rem)));
  transition: opacity var(--trd-duration) var(--trd-timing), visibility var(--trd-duration) var(--trd-timing), transform var(--trd-duration) var(--trd-timing);
}
.fab.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}
@media (hover: hover) {
  .fab.is-visible:hover {
    transform: translateY(-2px);
  }
}
.fab-inner {
  position: relative;
  display: grid;
  gap: 0.8rem;
  justify-items: center;
  align-content: center;
  padding: 0.8rem 0.5rem;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
}
.fab-icon {
  width: clamp(2.4rem, 1.6761904762rem + 0.9070294785vw, 3.2rem);
}
.fab-icon img {
  display: block;
  width: 100%;
}
.fab-text {
  font-family: var(--font-kiwi);
  color: var(--color-main);
  text-align: center;
  font-size: clamp(1.4rem, 0.8571428571rem + 0.6802721088vw, 2rem);
  line-height: 1.3;
}
.fab-arrow {
  width: clamp(2rem, 1.5476190476rem + 0.566893424vw, 2.5rem);
}
.fab-arrow img {
  display: block;
  width: 100%;
}
.fab-bean {
  position: absolute;
  display: block;
  pointer-events: none;
}
.fab-bean-left {
  width: 2.5rem;
  top: 10%;
  left: 2%;
}
.fab-bean-right {
  width: 3.5rem;
  top: 70%;
  left: 77%;
}
@media (max-width: 768px) {
  .fab {
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: auto;
    padding: 4.2666666667vw;
    border: 0.5333333333vw solid var(--color-main-light);
    border-bottom: 0;
    border-radius: 4.2666666667vw 4.2666666667vw 0 0;
    background-color: var(--color-bg-brand);
    place-items: unset;
    justify-content: center;
    align-items: center;
    transform: translateY(100%);
  }
  .fab.is-visible {
    transform: translateY(0);
  }
}
@media (max-width: 768px) and (hover: hover) {
  .fab.is-visible:hover {
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .fab-inner {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 1.6vw;
    width: 76vw;
    height: 16vw;
    padding: 2.1333333333vw 13.3333333333vw 2.1333333333vw 8vw;
    border: 0.5333333333vw solid var(--color-main);
    border-radius: 50vh;
    background-color: var(--color-white);
  }
  .fab-icon {
    width: 6.6666666667vw;
    flex-shrink: 0;
  }
  .fab-text {
    font-size: 4.8vw;
    white-space: nowrap;
  }
  .fab-arrow {
    position: absolute;
    right: 4.8vw;
    top: 50%;
    translate: 0 -50%;
    width: 6.1333333333vw;
  }
  .fab-bean-left {
    width: 5.3333333333vw;
    top: -2.6666666667vw;
    left: 1.3333333333vw;
  }
  .fab-bean-right {
    width: 6.6666666667vw;
    top: 8vw;
    right: -2.6666666667vw;
    left: auto;
  }
}

.uah-purchase-block {
  display: grid;
  gap: clamp(3rem, 2.0952380952rem + 1.1337868481vw, 4rem);
  justify-items: center;
  width: 100%;
}
@media (max-width: 768px) {
  .uah-purchase-block {
    gap: 8vw;
  }
}
.uah-purchase-title {
  font-family: var(--font-kiwi);
  color: var(--color-main);
  text-align: center;
  font-size: clamp(2.6rem, 0.6095238095rem + 2.4943310658vw, 4.8rem);
}
@media (max-width: 768px) {
  .uah-purchase-title {
    font-size: 6.9333333333vw;
  }
}
.uah-purchase-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(1.6rem, 0.3333333333rem + 1.5873015873vw, 3rem);
  width: 100%;
}
@media (min-width: 769px) {
  .uah-purchase-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1.5rem, 0.1428571429rem + 1.7006802721vw, 3rem) clamp(2.5rem, 0.2380952381rem + 2.8344671202vw, 5rem);
    width: 96%;
  }
}
@media (max-width: 768px) {
  .uah-purchase-list {
    gap: 4.2666666667vw;
  }
}
.uah-purchase-link {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 455/100;
  border: 0.1rem solid var(--color-main);
  background-color: var(--color-white);
  overflow: hidden;
  transition: opacity var(--trd-hover-duration) var(--trd-timing);
}
@media (hover: hover) {
  .uah-purchase-link:hover {
    opacity: 0.85;
  }
}
@media (max-width: 768px) {
  .uah-purchase-link {
    aspect-ratio: 335/74;
    border-width: 0.2666666667vw;
  }
}
.uah-purchase-link img {
  display: block;
  width: 100%;
}

@keyframes modal-fade-in-up {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes modal-fade-out-down {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(40px);
  }
}
@keyframes modal-backdrop-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes modal-backdrop-fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.modal {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  margin: 0;
  padding: 0;
  border: none;
  background-color: transparent;
  z-index: var(--modal-index);
}
.modal::backdrop {
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(2px);
}
.modal[open] {
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal[open]::backdrop {
  animation: modal-backdrop-fade-in var(--trd-duration) var(--trd-timing) both;
}
.modal[open] .modal-inner {
  animation: modal-fade-in-up var(--trd-duration) var(--trd-timing) both;
}
.modal.is-closing::backdrop {
  animation: modal-backdrop-fade-out var(--trd-duration) var(--trd-timing) both;
}
.modal.is-closing .modal-inner {
  animation: modal-fade-out-down var(--trd-duration) var(--trd-timing) both;
}
.modal-video[open] {
  overflow: visible;
}
.modal-inner {
  position: relative;
  width: clamp(33.5rem, 9.5238095238rem + 30.0453514739vw, 60rem);
  max-height: 90vh;
  background-color: var(--color-white);
  border: 0.2rem solid var(--color-main);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .modal-inner {
    width: 89.3333333333vw;
    border-width: 0.5333333333vw;
  }
}
.modal-inner-video {
  display: block;
  width: calc(100% - clamp(4rem, 0.380952381rem + 4.5351473923vw, 8rem));
  max-width: 100rem;
  max-height: none;
  background-color: transparent;
  border: none;
  overflow: visible;
  flex: none;
}
@media (max-width: 768px) {
  .modal-inner-video {
    width: calc(100% - 10.6666666667vw);
    max-width: 89.3333333333vw;
    border: none;
  }
}
.modal-close {
  background-color: transparent;
  border: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: inherit;
  font-family: inherit;
}
.modal-close:not(:focus) {
  outline: none;
}
.modal-close {
  position: absolute;
  top: clamp(0.8rem, 0.4380952381rem + 0.4535147392vw, 1.2rem);
  right: clamp(0.8rem, 0.4380952381rem + 0.4535147392vw, 1.2rem);
  width: clamp(3.2rem, 2.4761904762rem + 0.9070294785vw, 4rem);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}
@media (max-width: 768px) {
  .modal-close {
    top: 2.1333333333vw;
    right: 2.1333333333vw;
    width: 8.5333333333vw;
  }
}
.modal-inner-video .modal-close {
  top: clamp(-5.2rem, -3.6761904762rem + -0.9070294785vw, -4.4rem);
  right: 0;
  background-color: var(--color-white);
  border-radius: 50%;
}
@media (max-width: 768px) {
  .modal-inner-video .modal-close {
    top: -11.7333333333vw;
  }
}
.modal-inner-video .modal-close::before, .modal-inner-video .modal-close::after {
  background-color: var(--color-main);
}
.modal-close::before, .modal-close::after {
  content: "";
  position: absolute;
  width: 60%;
  height: 0.2rem;
  background-color: var(--color-main);
}
@media (max-width: 768px) {
  .modal-close::before, .modal-close::after {
    height: 0.5333333333vw;
  }
}
.modal-close::before {
  rotate: 45deg;
}
.modal-close::after {
  rotate: -45deg;
}
.modal-body {
  padding: clamp(4rem, 3.2761904762rem + 0.9070294785vw, 4.8rem) clamp(2.4rem, 0.9523809524rem + 1.8140589569vw, 4rem);
  overflow-y: auto;
}
@media (max-width: 768px) {
  .modal-body {
    padding: 10.6666666667vw 6.4vw;
  }
}
.modal-body-video {
  padding: 0;
  overflow: hidden;
  flex: none;
  width: 100%;
}

.page-top {
  position: relative;
  color: var(--color-text-brand);
  overflow-wrap: break-word;
  background-color: var(--color-bg-brand);
}
.page-top .uah-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: clamp(96rem, 92.380952381rem + 4.5351473923vw, 100rem);
  margin-inline: auto;
}
@media (max-width: 768px) {
  .page-top .uah-inner {
    max-width: 100%;
  }
}
.page-top .uah-mainvisual {
  position: relative;
  width: 100%;
  background-color: var(--color-bg-brand);
}
.page-top .uah-mainvisual-title {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.page-top .uah-mainvisual-picture {
  display: block;
  width: 100%;
}
.page-top .uah-mainvisual-picture img {
  display: block;
  width: 100%;
}
.page-top .uah-mainvisual-copy {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}
.page-top .uah-mainvisual-copy img {
  display: block;
  width: 100%;
}
.page-top .uah-mainvisual-copy-01 {
  top: 0;
  right: 5%;
  width: 20%;
  transition-delay: var(--trd-duration);
}
@media (max-width: 768px) {
  .page-top .uah-mainvisual-copy-01 {
    display: none;
  }
}
.page-top .uah-mainvisual-copy-02 {
  top: 35%;
  left: 6%;
  width: 23%;
  transition-delay: calc(var(--trd-duration) * 2);
}
@media (max-width: 768px) {
  .page-top .uah-mainvisual-copy-02 {
    top: 8vw;
    right: 5.3333333333vw;
    left: inherit;
    width: 13.8666666667vw;
    transition-delay: var(--trd-duration);
  }
}
.page-top .uah-intro {
  position: relative;
  width: 100%;
  padding-block: clamp(1.6rem, 0.6952380952rem + 1.1337868481vw, 2.6rem);
  background-color: var(--color-bg-brand);
}
@media (max-width: 768px) {
  .page-top .uah-intro {
    padding: 6.4vw 5.3333333333vw;
  }
}
.page-top .uah-intro-body {
  max-width: clamp(68rem, 22.7619047619rem + 56.6893424036vw, 118rem);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  grid-template-areas: "logo category products";
  align-items: end;
  -moz-column-gap: clamp(1.6rem, 0.1523809524rem + 1.8140589569vw, 3.2rem);
       column-gap: clamp(1.6rem, 0.1523809524rem + 1.8140589569vw, 3.2rem);
}
@media (max-width: 768px) {
  .page-top .uah-intro-body {
    max-width: 100%;
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas: "heading" "category" "products" "logo";
    justify-items: center;
    row-gap: 5.3333333333vw;
  }
}
.page-top .uah-intro-heading {
  display: none;
}
@media (max-width: 768px) {
  .page-top .uah-intro-heading {
    display: block;
    grid-area: heading;
    width: 72vw;
  }
}
.page-top .uah-intro-heading img {
  display: block;
  width: 100%;
}
.page-top .uah-intro-mark {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 1;
}
@media (max-width: 768px) {
  .page-top .uah-intro-mark {
    display: none;
  }
}
.page-top .uah-intro-mark-label {
  display: block;
  padding: clamp(0.2rem, 0.1095238095rem + 0.1133786848vw, 0.3rem) clamp(0.6rem, 0.419047619rem + 0.2267573696vw, 0.8rem);
  border: 1px solid var(--color-text-brand);
  font-size: clamp(1rem, 0.0952380952rem + 1.1337868481vw, 2rem);
  color: var(--color-text-brand);
  white-space: nowrap;
}
.page-top .uah-intro-logo {
  grid-area: logo;
  width: clamp(20rem, 4.619047619rem + 19.2743764172vw, 37rem);
}
@media (max-width: 768px) {
  .page-top .uah-intro-logo {
    width: 48vw;
  }
}
.page-top .uah-intro-logo img {
  display: block;
  width: 100%;
}
.page-top .uah-intro-category {
  grid-area: category;
  justify-self: center;
  width: 100%;
  max-width: clamp(18rem, 3.0714285714rem + 18.7074829932vw, 34.5rem);
}
@media (max-width: 768px) {
  .page-top .uah-intro-category {
    max-width: 72vw;
    margin-top: 5.3333333333vw;
  }
}
.page-top .uah-intro-category img {
  display: block;
  width: 100%;
}
.page-top .uah-intro-products {
  display: flex;
  align-items: flex-end;
  gap: clamp(0.4rem, 0.0380952381rem + 0.4535147392vw, 0.8rem);
  grid-area: products;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 768px) {
  .page-top .uah-intro-products {
    justify-content: center;
    width: 100%;
    gap: 1.0666666667vw;
  }
}
.page-top .uah-intro-product {
  flex-shrink: 0;
}
.page-top .uah-intro-product img {
  display: block;
  width: auto;
}
.page-top .uah-intro-product:nth-child(1) img, .page-top .uah-intro-product:nth-child(2) img, .page-top .uah-intro-product:nth-child(3) img {
  height: clamp(8rem, 5.2857142857rem + 3.4013605442vw, 11rem);
}
@media (max-width: 768px) {
  .page-top .uah-intro-product:nth-child(1) img, .page-top .uah-intro-product:nth-child(2) img, .page-top .uah-intro-product:nth-child(3) img {
    height: 24vw;
  }
}
.page-top .uah-intro-product:nth-child(4) img {
  height: clamp(7rem, 4.2857142857rem + 3.4013605442vw, 10rem);
}
@media (max-width: 768px) {
  .page-top .uah-intro-product:nth-child(4) img {
    height: 21.3333333333vw;
  }
}
.page-top .uah-intro-product:nth-child(5) img {
  height: clamp(9rem, 5.380952381rem + 4.5351473923vw, 13rem);
}
@media (max-width: 768px) {
  .page-top .uah-intro-product:nth-child(5) img {
    height: 26.6666666667vw;
  }
}
.page-top .uah-title {
  font-family: var(--font-kiwi);
  color: var(--color-main);
  text-align: center;
  line-height: 1.3;
}
.page-top .uah-title-accent {
  color: var(--color-accent);
}
.page-top .uah-statement {
  position: relative;
  flex-shrink: 0;
  width: 100%;
  background-color: var(--color-bg-brand);
}
.page-top .uah-statement-fixed {
  position: sticky;
  top: 0;
  z-index: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
}
.page-top .uah-statement-bg {
  display: block;
  width: 100%;
  height: 100%;
}
.page-top .uah-statement-bg-img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.page-top .uah-statement-footer {
  display: grid;
  justify-items: start;
  gap: clamp(4rem, 0.380952381rem + 4.5351473923vw, 8rem);
  margin-top: clamp(4rem, 2.5523809524rem + 1.8140589569vw, 5.6rem);
}
@media (max-width: 768px) {
  .page-top .uah-statement-footer {
    justify-items: center;
    gap: 10.6666666667vw;
    margin-top: 5.3333333333vw;
  }
}
.page-top .uah-statement-logo {
  margin: 0;
  width: clamp(16rem, 3.3333333333rem + 15.873015873vw, 30rem);
}
@media (max-width: 768px) {
  .page-top .uah-statement-logo {
    width: 64vw;
  }
}
.page-top .uah-statement-logo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 84/30;
}
.page-top .uah-statement-note {
  margin: 0;
  font-size: clamp(1rem, 0.6380952381rem + 0.4535147392vw, 1.4rem);
  line-height: 1.5;
  color: var(--color-white);
}
@media (max-width: 768px) {
  .page-top .uah-statement-note {
    font-size: 2.6666666667vw;
    text-align: center;
  }
}
.page-top .uah-statement-inner {
  position: relative;
  z-index: 1;
  margin-top: -100vh;
  margin-top: -100dvh;
  padding-top: 22vh;
  padding-bottom: 20vh;
  padding-left: clamp(16rem, 12.380952381rem + 4.5351473923vw, 20rem);
}
@media (max-width: 768px) {
  .page-top .uah-statement-inner {
    padding-block: 14.9333333333vw;
    padding-left: 0;
  }
}
.page-top .uah-statement-content {
  display: flex;
  flex-direction: column;
  gap: 5.6rem;
  width: 50%;
  margin-left: auto;
}
@media (max-width: 768px) {
  .page-top .uah-statement-content {
    width: 100%;
    gap: 10.6666666667vw;
  }
}
.page-top .uah-statement-text {
  margin: 0;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
}
@media (max-width: 768px) {
  .page-top .uah-statement-text {
    margin-left: 12.8vw;
    max-width: calc(100% - 12.8vw);
  }
}
.page-top .uah-statement-text-picture {
  display: block;
}
.page-top .uah-statement-text img {
  display: block;
  height: auto;
}
.page-top .uah-statement-text-01 img {
  width: clamp(26.5rem, 9.4rem + 21.4285714286vw, 45.4rem);
  aspect-ratio: 121/46;
}
@media (max-width: 768px) {
  .page-top .uah-statement-text-01 img {
    width: 62.9333333333vw;
    aspect-ratio: 182/164;
  }
}
.page-top .uah-statement-text-02 img {
  width: clamp(21.4rem, 7.4666666667rem + 17.4603174603vw, 36.8rem);
  aspect-ratio: 98/20;
}
@media (max-width: 768px) {
  .page-top .uah-statement-text-02 img {
    width: 77.0666666667vw;
    aspect-ratio: 223/46;
  }
}
.page-top .uah-statement-text-03 img {
  width: clamp(21rem, 7.4285714286rem + 17.0068027211vw, 36rem);
  aspect-ratio: 96/20;
}
@media (max-width: 768px) {
  .page-top .uah-statement-text-03 img {
    width: 48.5333333333vw;
    aspect-ratio: 140/72;
  }
}
.page-top .uah-statement-text-04 img {
  width: clamp(28rem, 9.9047619048rem + 22.6757369615vw, 48rem);
  aspect-ratio: 128/20;
}
@media (max-width: 768px) {
  .page-top .uah-statement-text-04 img {
    width: 61.6vw;
    aspect-ratio: 178/74;
  }
}
.page-top .uah-section {
  position: relative;
  overflow: clip;
}
.page-top .uah-section-body {
  position: relative;
  z-index: 1;
  display: grid;
}
.page-top .uah-care {
  background-color: var(--color-bg-brand);
  padding-top: clamp(8rem, 1.6666666667rem + 7.9365079365vw, 15rem);
  padding-bottom: clamp(10rem, 0.9523809524rem + 11.3378684807vw, 20rem);
  padding-inline: clamp(0rem, 7.619047619rem + -4.5351473923vw, 4rem);
}
@media (max-width: 768px) {
  .page-top .uah-care {
    padding-top: 21.3333333333vw;
    padding-bottom: 26.6666666667vw;
    padding-inline: 5.3333333333vw;
  }
}
.page-top .uah-care .uah-section-body {
  gap: clamp(9rem, 0.8571428571rem + 10.2040816327vw, 18rem);
}
@media (max-width: 768px) {
  .page-top .uah-care .uah-section-body {
    gap: 21.3333333333vw;
  }
}
.page-top .uah-care-block {
  display: grid;
  gap: clamp(3rem, 2.0952380952rem + 1.1337868481vw, 4rem);
  justify-items: center;
}
@media (max-width: 768px) {
  .page-top .uah-care-block {
    gap: 10.6666666667vw;
  }
}
.page-top .uah-care-title {
  font-size: clamp(2.6rem, 1.3333333333rem + 1.5873015873vw, 4rem);
}
@media (max-width: 768px) {
  .page-top .uah-care-title {
    font-size: 6.9333333333vw;
  }
}
.page-top .uah-care-title-line {
  display: block;
}
.page-top .uah-care-title .uah-title-accent {
  font-size: clamp(3.4rem, 2.5857142857rem + 1.0204081633vw, 4.3rem);
}
@media (max-width: 768px) {
  .page-top .uah-care-title .uah-title-accent {
    font-size: 9.0666666667vw;
  }
}
.page-top .uah-care-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0rem, 3.8095238095rem + -2.2675736961vw, 2rem) clamp(1.6rem, -0.5714285714rem + 2.7210884354vw, 4rem);
  justify-items: center;
  width: 100%;
}
@media (min-width: 769px) {
  .page-top .uah-care-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 110%;
    margin-inline: -5%;
    padding-inline: 2rem;
  }
}
@media (max-width: 768px) {
  .page-top .uah-care-list {
    gap: 5.3333333333vw 4.2666666667vw;
  }
}
.page-top .uah-care-item {
  background-color: transparent;
  border: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: inherit;
  font-family: inherit;
}
.page-top .uah-care-item:not(:focus) {
  outline: none;
}
.page-top .uah-care-item {
  display: block;
  position: relative;
  width: 100%;
  max-width: clamp(30rem, 25.4761904762rem + 5.6689342404vw, 35rem);
  aspect-ratio: 350/235;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: scale var(--trd-hover-duration) var(--trd-timing);
}
@media (hover: hover) {
  .page-top .uah-care-item:hover {
    scale: 1.06;
  }
}
@media (max-width: 768px) {
  .page-top .uah-care-item {
    max-width: 45.3333333333vw;
  }
}
.page-top .uah-care-item:nth-child(3) {
  grid-column: 1/-1;
  justify-self: center;
}
@media (max-width: 768px) {
  .page-top .uah-care-item:nth-child(3) {
    width: calc((100% - 4.2666666667vw) / 2);
  }
}
@media (min-width: 769px) {
  .page-top .uah-care-item:nth-child(3) {
    grid-column: auto;
    justify-self: stretch;
    width: 100%;
  }
}
.page-top .uah-care-item-shape {
  display: block;
  width: 100%;
}
.page-top .uah-care-item-shape img {
  display: block;
  width: 100%;
}
.page-top .uah-care-item-content {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(0.4rem, 0.0380952381rem + 0.4535147392vw, 0.8rem);
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .page-top .uah-care-item-content {
    gap: 1.0666666667vw;
    padding-inline: 3.2vw;
  }
}
.page-top .uah-care-item-metabolism .uah-care-item-content, .page-top .uah-care-item-blood .uah-care-item-content, .page-top .uah-care-item-fat .uah-care-item-content {
  left: 50%;
  right: auto;
  translate: -50% 0;
  padding-inline: 0;
}
.page-top .uah-care-item-metabolism .uah-care-item-content {
  width: 42.7%;
}
.page-top .uah-care-item-blood .uah-care-item-content {
  width: 50%;
}
.page-top .uah-care-item-fat .uah-care-item-content {
  width: 64%;
}
.page-top .uah-care-item-label {
  font-family: var(--font-noto);
  font-size: clamp(2.8rem, 2.4380952381rem + 0.4535147392vw, 3.2rem);
  line-height: 1.5;
  text-align: center;
  color: var(--color-text-brand);
  overflow-wrap: normal;
  word-break: keep-all;
}
@media (max-width: 768px) {
  .page-top .uah-care-item-label {
    font-size: 4.2666666667vw;
  }
}
.page-top .uah-care-item-icon {
  width: clamp(3rem, 2.0952380952rem + 1.1337868481vw, 4rem);
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .page-top .uah-care-item-icon {
    width: 5.3333333333vw;
  }
}
.page-top .uah-care-item-icon img {
  display: block;
  width: 100%;
}
.page-top .uah-care-item-bean {
  position: absolute;
  display: block;
  pointer-events: none;
  -o-object-fit: cover;
     object-fit: cover;
  will-change: transform;
}
.page-top .uah-care-item-bean-left {
  width: 3.5rem;
  left: 2%;
  top: 8%;
}
@media (max-width: 768px) {
  .page-top .uah-care-item-bean-left {
    width: 5.3333333333vw;
  }
}
.page-top .uah-care-item-bean-right {
  width: 5rem;
  right: -2%;
  top: 60%;
}
@media (max-width: 768px) {
  .page-top .uah-care-item-bean-right {
    width: 8vw;
  }
}
.page-top .uah-care-item-note {
  position: absolute;
  font-family: var(--font-noto);
  font-size: clamp(0.9rem, 0.0857142857rem + 1.0204081633vw, 1.8rem);
  color: var(--color-text-brand);
  white-space: nowrap;
  pointer-events: none;
}
@media (max-width: 768px) {
  .page-top .uah-care-item-note {
    font-size: 2.4vw;
  }
}
.page-top .uah-care-item-note-1 {
  left: 70%;
  top: 46%;
}
.page-top .uah-care-item-note-2 {
  left: 75%;
  top: 46%;
}
.page-top .uah-care-item-note-3 {
  left: 80%;
  top: 46%;
}
.page-top .uah-care-footnotes {
  display: grid;
  gap: 1.6rem;
  width: 100%;
}
@media (max-width: 768px) {
  .page-top .uah-care-footnotes {
    gap: 6.4vw;
  }
}
.page-top .uah-care-notes {
  width: 100%;
  font-size: clamp(1.2rem, 0.8380952381rem + 0.4535147392vw, 1.6rem);
  color: var(--color-text-brand);
  text-indent: -2em;
  padding-left: 2em;
}
@media (max-width: 768px) {
  .page-top .uah-care-notes {
    font-size: 3.2vw;
  }
}
.page-top .uah-care-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.2rem, 0.8380952381rem + 0.4535147392vw, 1.6rem);
  width: 100%;
  font-size: clamp(1.2rem, 0.8380952381rem + 0.4535147392vw, 1.6rem);
  color: var(--color-text-brand);
}
@media (max-width: 768px) {
  .page-top .uah-care-disclaimer {
    flex-direction: column;
    gap: 2.1333333333vw;
    font-size: 3.2vw;
  }
}
.page-top .uah-care-disclaimer-label {
  flex-shrink: 0;
  padding: 0.2rem clamp(0.6rem, 0.419047619rem + 0.2267573696vw, 0.8rem);
  border: 1px solid var(--color-text-brand);
  white-space: nowrap;
}
.page-top .uah-care-disclaimer-text {
  flex: 1;
  min-width: 0;
}
.page-top .uah-video-block {
  display: grid;
  gap: clamp(3rem, 2.0952380952rem + 1.1337868481vw, 4rem);
  width: 100%;
}
@media (max-width: 768px) {
  .page-top .uah-video-block {
    gap: 8vw;
  }
}
.page-top .uah-video-title {
  font-size: clamp(2.6rem, 0.6095238095rem + 2.4943310658vw, 4.8rem);
}
@media (max-width: 768px) {
  .page-top .uah-video-title {
    font-size: 6.9333333333vw;
  }
}
.page-top .uah-video-player {
  background-color: transparent;
  border: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: inherit;
  font-family: inherit;
}
.page-top .uah-video-player:not(:focus) {
  outline: none;
}
.page-top .uah-video-player {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 1000/563;
  overflow: hidden;
  cursor: default;
}
.page-top .uah-video-player::after {
  content: "Coming Soon";
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  background-color: var(--color-bg);
  color: var(--color-text-brand);
  font-family: var(--font-kiwi);
  font-size: clamp(2.8rem, 1.7142857143rem + 1.3605442177vw, 4rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  pointer-events: none;
}
@media (max-width: 768px) {
  .page-top .uah-video-player::after {
    font-size: 5.8666666667vw;
  }
}
.page-top .uah-video-player-thumbnail {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-top .uah-video-player-icon {
  position: relative;
  z-index: 2;
  display: none;
  width: clamp(6.4rem, 4.9523809524rem + 1.8140589569vw, 8rem);
  pointer-events: none;
  transition: scale var(--trd-hover-duration) var(--trd-timing);
}
.page-top .uah-video-player-icon img {
  display: block;
  width: 100%;
}
.page-top .uah-video-player.is-ready {
  cursor: pointer;
}
.page-top .uah-video-player.is-ready::after {
  display: none;
}
.page-top .uah-video-player.is-ready .uah-video-player-icon {
  display: block;
}
@media (hover: hover) {
  .page-top .uah-video-player.is-ready:hover .uah-video-player-icon {
    scale: 1.1;
  }
}
.page-top .uah-video-embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
  background-color: var(--color-black);
}
.page-top .uah-video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.page-top .uah-research {
  background-color: var(--color-green-section);
  background-image: linear-gradient(90deg, rgba(236, 255, 193, 0.2), rgba(236, 255, 193, 0.2));
  padding-top: clamp(8rem, 1.6666666667rem + 7.9365079365vw, 15rem);
  padding-bottom: 15rem;
  padding-inline: clamp(0rem, 7.619047619rem + -4.5351473923vw, 4rem);
}
@media (max-width: 768px) {
  .page-top .uah-research {
    padding-top: 21.3333333333vw;
    padding-bottom: 32vw;
    padding-inline: 5.3333333333vw;
  }
}
.page-top .uah-research-bg-pattern {
  position: absolute;
  inset: 0;
  width: 100%;
  opacity: 0.2;
  mix-blend-mode: multiply;
  background: url("/andhealthy/dist/images/bg-research-pattern.jpg") top center/100% auto repeat-y;
}
.page-top .uah-research-bg-bean {
  position: absolute;
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  pointer-events: none;
  top: clamp(5rem, 0.4761904762rem + 5.6689342404vw, 10rem);
  left: clamp(2.4rem, -4.4761904762rem + 8.6167800454vw, 10rem);
  width: clamp(5.2rem, 0.4952380952rem + 5.89569161vw, 10.4rem);
  aspect-ratio: 104/117;
  background-image: url("/andhealthy/dist/images/bg-research-bean.svg");
}
@media (max-width: 768px) {
  .page-top .uah-research-bg-bean {
    top: 8vw;
    left: 6.4vw;
    width: 8.5333333333vw;
  }
}
.page-top .uah-research-bg-deco {
  position: absolute;
  display: block;
  width: clamp(20rem, 13.2142857143rem + 8.5034013605vw, 27.5rem);
  right: 0;
  bottom: 0;
}
@media (max-width: 768px) {
  .page-top .uah-research-bg-deco {
    width: 25.6vw;
  }
}
.page-top .uah-research-body {
  gap: clamp(6rem, 4.1904761905rem + 2.2675736961vw, 8rem);
}
@media (max-width: 768px) {
  .page-top .uah-research-body {
    gap: 16vw;
  }
}
.page-top .uah-research-card {
  position: relative;
  width: 100%;
  background-color: var(--color-bg-brand);
  border: 0.2rem solid var(--color-main);
  padding: clamp(4rem, 2.1904761905rem + 2.2675736961vw, 6rem) clamp(0rem, 7.619047619rem + -4.5351473923vw, 4rem) clamp(4rem, 0.380952381rem + 4.5351473923vw, 8rem);
}
@media (max-width: 768px) {
  .page-top .uah-research-card {
    border-width: 0.5333333333vw;
    padding: 10.6666666667vw 5.3333333333vw;
  }
}
.page-top .uah-research-card-corner {
  position: absolute;
  width: clamp(6rem, 4.1904761905rem + 2.2675736961vw, 8rem);
  z-index: 1;
}
@media (max-width: 768px) {
  .page-top .uah-research-card-corner {
    width: 16vw;
  }
}
.page-top .uah-research-card-corner img {
  display: block;
  width: 100%;
}
.page-top .uah-research-card-corner-tl {
  top: 0.6rem;
  left: 0.6rem;
}
@media (max-width: 768px) {
  .page-top .uah-research-card-corner-tl {
    top: 1.6vw;
    left: 1.6vw;
  }
}
.page-top .uah-research-card-corner-tr {
  top: 0.6rem;
  right: 0.6rem;
  transform: scaleX(-1);
}
@media (max-width: 768px) {
  .page-top .uah-research-card-corner-tr {
    top: 1.6vw;
    right: 1.6vw;
  }
}
.page-top .uah-research-card-corner-bl {
  bottom: 0.6rem;
  left: 0.6rem;
  transform: scaleY(-1);
}
@media (max-width: 768px) {
  .page-top .uah-research-card-corner-bl {
    bottom: 1.6vw;
    left: 1.6vw;
  }
}
.page-top .uah-research-card-corner-br {
  bottom: 0.6rem;
  right: 0.6rem;
  transform: scale(-1);
}
@media (max-width: 768px) {
  .page-top .uah-research-card-corner-br {
    bottom: 1.6vw;
    right: 1.6vw;
  }
}
.page-top .uah-research-card-inner {
  display: grid;
  gap: clamp(2.4rem, 0.9523809524rem + 1.8140589569vw, 4rem);
}
@media (max-width: 768px) {
  .page-top .uah-research-card-inner {
    gap: 6.4vw;
  }
}
.page-top .uah-research-title {
  font-size: clamp(2.6rem, 0.6095238095rem + 2.4943310658vw, 4.8rem);
  line-height: 1.3;
}
@media (max-width: 768px) {
  .page-top .uah-research-title {
    font-size: 6.9333333333vw;
  }
}
.page-top .uah-research-text {
  font-size: clamp(1.6rem, 1.0571428571rem + 0.6802721088vw, 2.2rem);
  text-align: center;
  color: var(--color-text-brand);
}
@media (max-width: 768px) {
  .page-top .uah-research-text {
    font-size: 4.2666666667vw;
    padding-inline: 0vw;
  }
}
.page-top .uah-research-gallery {
  position: relative;
  width: 100%;
  max-width: 93.2rem;
  margin-inline: auto;
  aspect-ratio: 932/230;
}
@media (max-width: 768px) {
  .page-top .uah-research-gallery {
    max-width: 78.6666666667vw;
    aspect-ratio: 295/270;
  }
}
.page-top .uah-research-photo {
  position: absolute;
  width: 27.37%;
  background-color: var(--color-white);
  padding: clamp(0.4rem, 0.0380952381rem + 0.4535147392vw, 0.8rem);
}
@media (max-width: 768px) {
  .page-top .uah-research-photo {
    padding: 1.0666666667vw;
  }
}
.page-top .uah-research-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 255/156;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-top .uah-research-photo:nth-child(1) {
  left: 0;
  top: 20%;
  rotate: -4deg;
  z-index: 4;
}
.page-top .uah-research-photo:nth-child(2) {
  left: 22%;
  top: 0;
  rotate: 9deg;
  z-index: 3;
}
.page-top .uah-research-photo:nth-child(3) {
  left: 45%;
  top: 19%;
  rotate: -4deg;
  z-index: 2;
}
.page-top .uah-research-photo:nth-child(4) {
  left: 70%;
  top: 7%;
  rotate: 9deg;
  z-index: 1;
}
@media (max-width: 768px) {
  .page-top .uah-research-photo:nth-child(1) {
    top: 0;
    left: 0;
    width: 53%;
    rotate: -4deg;
    z-index: 2;
  }
  .page-top .uah-research-photo:nth-child(2) {
    top: 5.3333333333vw;
    right: 0;
    left: inherit;
    width: 56%;
    rotate: 9deg;
    z-index: 1;
  }
  .page-top .uah-research-photo:nth-child(3) {
    top: 48%;
    left: 0;
    width: 56%;
    rotate: 9deg;
    z-index: 2;
  }
  .page-top .uah-research-photo:nth-child(4) {
    top: 58%;
    right: 0;
    left: inherit;
    width: 53%;
    rotate: -4deg;
    z-index: 1;
  }
}
.page-top .uah-research-cta {
  display: grid;
  gap: clamp(2rem, 0.1904761905rem + 2.2675736961vw, 4rem);
  justify-items: center;
  width: 100%;
}
@media (max-width: 768px) {
  .page-top .uah-research-cta {
    gap: 5.3333333333vw;
  }
}
.page-top .uah-research-cta-bubble {
  position: relative;
  width: clamp(40rem, 25.8857142857rem + 17.6870748299vw, 55.6rem);
}
@media (max-width: 768px) {
  .page-top .uah-research-cta-bubble {
    width: 89.3333333333vw;
  }
}
.page-top .uah-research-cta-bubble img {
  display: block;
  width: 100%;
  height: auto;
}
.page-top .uah-research-cta-bubble-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 65%;
  z-index: 1;
  display: grid;
  place-items: center;
  margin: 0;
  font-family: var(--font-kiwi);
  color: var(--color-main);
  text-align: center;
  font-size: clamp(1.8rem, 1.0761904762rem + 0.9070294785vw, 2.6rem);
}
@media (max-width: 768px) {
  .page-top .uah-research-cta-bubble-text {
    font-size: 4.2666666667vw;
  }
}
.page-top .uah-research-cta-buttons {
  display: grid;
  width: 100%;
  justify-content: center;
  justify-items: center;
  gap: clamp(1.6rem, -2.380952381rem + 4.9886621315vw, 6rem);
}
@media (min-width: 769px) {
  .page-top .uah-research-cta-buttons {
    grid-template-columns: repeat(2, minmax(0, clamp(31.5rem, 18.2904761905rem + 16.5532879819vw, 46.1rem)));
    gap: clamp(3rem, 0.2857142857rem + 3.4013605442vw, 6rem);
    align-items: stretch;
  }
}
@media (max-width: 768px) {
  .page-top .uah-research-cta-buttons {
    grid-template-columns: minmax(0, 1fr);
    gap: 4.2666666667vw;
  }
}
.page-top .uah-research-btn {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: clamp(1rem, 0.4571428571rem + 0.6802721088vw, 1.6rem);
  width: 100%;
  max-width: clamp(31.5rem, 18.380952381rem + 16.4399092971vw, 46rem);
  padding: 1.6rem clamp(1.4rem, 0.1333333333rem + 1.5873015873vw, 2.8rem) 1.6rem clamp(1rem, -2.4380952381rem + 4.3083900227vw, 4.8rem);
  background-color: var(--color-main);
  color: var(--color-white);
  text-decoration: none;
  text-shadow: 0 0 0.5rem rgba(152, 19, 5, 0.55);
  transition: opacity var(--trd-hover-duration) var(--trd-timing);
}
@media (hover: hover) {
  .page-top .uah-research-btn:hover {
    opacity: 0.85;
  }
}
@media (max-width: 768px) {
  .page-top .uah-research-btn {
    max-width: 84vw;
    height: 19.7333333333vw;
    gap: 2.6666666667vw;
    padding: 4.2666666667vw 2.1333333333vw 4.2666666667vw 2.6666666667vw;
  }
}
.page-top .uah-research-btn-text {
  font-size: clamp(1.6rem, 1.0571428571rem + 0.6802721088vw, 2.2rem);
  line-height: 1.3;
  text-align: center;
}
@media (max-width: 768px) {
  .page-top .uah-research-btn-text {
    font-size: 4.2666666667vw;
  }
}
.page-top .uah-research-btn-arrow {
  width: clamp(2.4rem, 1.5857142857rem + 1.0204081633vw, 3.3rem);
}
@media (max-width: 768px) {
  .page-top .uah-research-btn-arrow {
    width: 7.4666666667vw;
  }
}
.page-top .uah-research-btn-arrow img {
  display: block;
  width: 100%;
}

.page-drip_trigonelline {
  --color-care: var(--color-care-metabolism);
  --color-care-light: var(--color-care-metabolism-light);
  --color-care-bg: var(--color-care-metabolism-bg);
  --color-care-faq: var(--color-care-light);
}

.page-drip_chlorogenic-acids {
  --color-care: var(--color-care-blood-sugar);
  --color-care-light: var(--color-care-blood-sugar-light);
  --color-care-bg: var(--color-care-blood-sugar-bg);
  --color-care-faq: var(--color-care-light);
}

.page-powder_chlorogenic-acids {
  --color-care: var(--color-care-neutral-fat);
  --color-care-light: var(--color-care-neutral-fat-light);
  --color-care-bg: var(--color-care-neutral-fat-bg);
  --color-care-faq: var(--color-care-neutral-fat-faq);
}

.product {
  position: relative;
  color: var(--color-text-brand);
  overflow-wrap: break-word;
  background-color: var(--color-bg-brand);
}
.product .uah-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: clamp(96rem, 92.380952381rem + 4.5351473923vw, 100rem);
  margin-inline: auto;
}
@media (max-width: 768px) {
  .product .uah-inner {
    max-width: 100%;
  }
}
.product .uah-mainvisual {
  position: relative;
  width: 100%;
  background-color: var(--color-bg-brand);
}
.product .uah-mainvisual-title {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.product .uah-mainvisual-picture {
  display: block;
  width: 100%;
}
.product .uah-mainvisual-picture img {
  display: block;
  width: 100%;
}
.product .uah-mainvisual-copy {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}
.product .uah-mainvisual-copy img {
  display: block;
  width: 100%;
}
.product .uah-mainvisual-copy-01 {
  top: 0;
  right: 5%;
  width: 20%;
  transition-delay: var(--trd-duration);
}
@media (max-width: 768px) {
  .product .uah-mainvisual-copy-01 {
    display: none;
  }
}
.product .uah-mainvisual-copy-02 {
  top: 35%;
  left: 6%;
  width: 23%;
  transition-delay: calc(var(--trd-duration) * 2);
}
@media (max-width: 768px) {
  .product .uah-mainvisual-copy-02 {
    top: 8vw;
    right: 5.3333333333vw;
    left: inherit;
    width: 13.8666666667vw;
    transition-delay: var(--trd-duration);
  }
}
.product .uah-intro {
  position: relative;
  width: 100%;
  padding-block: clamp(1.6rem, 0.6952380952rem + 1.1337868481vw, 2.6rem);
  background-color: var(--color-bg-brand);
}
@media (max-width: 768px) {
  .product .uah-intro {
    padding: 6.4vw 5.3333333333vw;
  }
}
.product .uah-intro-body {
  max-width: clamp(68rem, 22.7619047619rem + 56.6893424036vw, 118rem);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  grid-template-areas: "logo category products";
  align-items: end;
  -moz-column-gap: clamp(1.6rem, 0.1523809524rem + 1.8140589569vw, 3.2rem);
       column-gap: clamp(1.6rem, 0.1523809524rem + 1.8140589569vw, 3.2rem);
}
@media (max-width: 768px) {
  .product .uah-intro-body {
    max-width: 100%;
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas: "heading" "category" "products" "logo";
    justify-items: center;
    row-gap: 5.3333333333vw;
  }
}
.product .uah-intro-heading {
  display: none;
}
@media (max-width: 768px) {
  .product .uah-intro-heading {
    display: block;
    grid-area: heading;
    width: 72vw;
  }
}
.product .uah-intro-heading img {
  display: block;
  width: 100%;
}
.product .uah-intro-mark {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 1;
}
@media (max-width: 768px) {
  .product .uah-intro-mark {
    display: none;
  }
}
.product .uah-intro-mark-label {
  display: block;
  padding: clamp(0.2rem, 0.1095238095rem + 0.1133786848vw, 0.3rem) clamp(0.6rem, 0.419047619rem + 0.2267573696vw, 0.8rem);
  border: 1px solid var(--color-text-brand);
  font-size: clamp(1rem, 0.0952380952rem + 1.1337868481vw, 2rem);
  color: var(--color-text-brand);
  white-space: nowrap;
}
.product .uah-intro-logo {
  grid-area: logo;
  width: clamp(20rem, 4.619047619rem + 19.2743764172vw, 37rem);
}
@media (max-width: 768px) {
  .product .uah-intro-logo {
    width: 48vw;
  }
}
.product .uah-intro-logo img {
  display: block;
  width: 100%;
}
.product .uah-intro-category {
  grid-area: category;
  justify-self: center;
  width: 100%;
  max-width: clamp(18rem, 3.0714285714rem + 18.7074829932vw, 34.5rem);
}
@media (max-width: 768px) {
  .product .uah-intro-category {
    max-width: 72vw;
    margin-top: 5.3333333333vw;
  }
}
.product .uah-intro-category img {
  display: block;
  width: 100%;
}
.product .uah-intro-products {
  display: flex;
  align-items: flex-end;
  gap: clamp(0.4rem, 0.0380952381rem + 0.4535147392vw, 0.8rem);
  grid-area: products;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 768px) {
  .product .uah-intro-products {
    justify-content: center;
    width: 100%;
    gap: 1.0666666667vw;
  }
}
.product .uah-intro-product {
  flex-shrink: 0;
}
.product .uah-intro-product img {
  display: block;
  width: auto;
}
.product .uah-intro-product:nth-child(1) img, .product .uah-intro-product:nth-child(2) img, .product .uah-intro-product:nth-child(3) img {
  height: clamp(8rem, 5.2857142857rem + 3.4013605442vw, 11rem);
}
@media (max-width: 768px) {
  .product .uah-intro-product:nth-child(1) img, .product .uah-intro-product:nth-child(2) img, .product .uah-intro-product:nth-child(3) img {
    height: 24vw;
  }
}
.product .uah-intro-product:nth-child(4) img {
  height: clamp(7rem, 4.2857142857rem + 3.4013605442vw, 10rem);
}
@media (max-width: 768px) {
  .product .uah-intro-product:nth-child(4) img {
    height: 21.3333333333vw;
  }
}
.product .uah-intro-product:nth-child(5) img {
  height: clamp(9rem, 5.380952381rem + 4.5351473923vw, 13rem);
}
@media (max-width: 768px) {
  .product .uah-intro-product:nth-child(5) img {
    height: 26.6666666667vw;
  }
}
.product-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: clamp(96rem, 92.380952381rem + 4.5351473923vw, 100rem);
  margin-inline: auto;
  padding-inline: clamp(0rem, 7.619047619rem + -4.5351473923vw, 4rem);
}
@media (max-width: 768px) {
  .product-inner {
    max-width: 100%;
    padding-inline: 5.3333333333vw;
  }
}
.product-title {
  display: table;
  width: auto;
  max-width: 100%;
  margin-inline: auto;
  font-family: var(--font-kiwi);
  color: var(--color-main);
  text-align: center;
  line-height: normal;
  overflow-wrap: normal;
  word-break: keep-all;
}
.product-title-care {
  color: var(--color-care);
}
.product-title-line {
  display: block;
  width: 100%;
  height: 0.3rem;
  margin: clamp(0.6rem, 0.0571428571rem + 0.6802721088vw, 1.2rem) auto 0;
  background: var(--color-care-light);
}
@media (max-width: 768px) {
  .product-title-line {
    height: 0.5333333333vw;
    margin-top: 1.6vw;
  }
}
.product-section {
  position: relative;
  overflow: clip;
  padding-block: clamp(8rem, 1.6666666667rem + 7.9365079365vw, 15rem) 0;
}
@media (max-width: 768px) {
  .product-section {
    padding-block: 21.3333333333vw 0;
  }
}
.product-body {
  position: relative;
}
.product-body-fill {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-color: var(--color-bg);
}
.product-body-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-repeat: repeat-y;
  background-position: top center;
}
.product-body-bg-1 {
  background-image: url("/andhealthy/dist/images/common/bg-1.svg");
  background-size: 207.5rem auto;
}
@media (max-width: 768px) {
  .product-body-bg-1 {
    background-image: url("/andhealthy/dist/images/common/sp/bg-1.svg");
    background-size: 100%;
  }
}
.product-body-bg-2 {
  background-image: url("/andhealthy/dist/images/common/bg-2.svg");
  background-size: 207.5rem auto;
}
@media (max-width: 768px) {
  .product-body-bg-2 {
    background-image: url("/andhealthy/dist/images/common/sp/bg-2.svg");
    background-size: 100%;
  }
}
.product-body > .product-section {
  position: relative;
  z-index: 1;
}
.product-body-white .product-body-bg {
  z-index: 1;
}
.product-body-white > .product-section {
  z-index: 2;
}
.product-intro {
  position: relative;
  z-index: 1;
}
.product-intro-title {
  font-size: clamp(3.2rem, 2.4761904762rem + 0.9070294785vw, 4rem);
  margin-bottom: clamp(8rem, 6.1904761905rem + 2.2675736961vw, 10rem);
  overflow-wrap: normal;
  word-break: keep-all;
}
@media (max-width: 768px) {
  .product-intro-title {
    font-size: 6.4vw;
    margin-bottom: 19.2vw;
  }
}
.product-intro-title-care {
  display: block;
  font-size: clamp(3rem, 1.8238095238rem + 1.4739229025vw, 4.3rem);
  color: var(--color-care);
}
@media (max-width: 768px) {
  .product-intro-title-care {
    font-size: 6.9333333333vw;
  }
}
.product-intro-card {
  background-color: var(--color-bg);
  border-left: clamp(0.8rem, 0.619047619rem + 0.2267573696vw, 1rem) solid var(--color-care-light);
}
@media (max-width: 768px) {
  .product-intro-card {
    border-left: 1.3333333333vw solid var(--color-care-light);
  }
}
.product-intro-card {
  position: relative;
  display: grid;
  grid-template-columns: clamp(28rem, 19.8571428571rem + 10.2040816327vw, 37rem) 1fr;
  gap: clamp(2.4rem, -0.8571428571rem + 4.0816326531vw, 6rem);
  align-items: center;
  padding: clamp(8rem, 6.1904761905rem + 2.2675736961vw, 10rem) clamp(2.4rem, 0.9523809524rem + 1.8140589569vw, 4rem) clamp(3.2rem, 2.4761904762rem + 0.9070294785vw, 4rem);
}
@media (max-width: 768px) {
  .product-intro-card {
    grid-template-columns: 1fr;
    gap: 10.6666666667vw;
    padding: 19.2vw 5.3333333333vw 8.5333333333vw;
    justify-items: center;
  }
}
.product-intro-badge {
  position: absolute;
  left: 50%;
  top: 0;
  translate: -50% -50%;
  width: 20rem;
  z-index: 2;
}
@media (max-width: 768px) {
  .product-intro-badge {
    width: 42.6666666667vw;
  }
}
.product-intro-badge-shape {
  display: block;
  width: 100%;
}
.product-intro-badge-text {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: grid;
  place-content: center;
  font-family: var(--font-noto);
  font-size: clamp(2rem, 1.6380952381rem + 0.4535147392vw, 2.4rem);
  line-height: 1.3;
  text-align: center;
  color: var(--color-text-brand);
  overflow-wrap: normal;
  word-break: keep-all;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .product-intro-badge-text {
    font-size: 4.8vw;
  }
}
.product-intro-badge-bean {
  position: absolute;
  display: block;
  pointer-events: none;
  -o-object-fit: cover;
     object-fit: cover;
  will-change: transform;
}
.product-intro-badge-bean-left {
  width: 3rem;
  left: 2%;
  top: 8%;
}
@media (max-width: 768px) {
  .product-intro-badge-bean-left {
    width: 5.3333333333vw;
  }
}
.product-intro-badge-bean-right {
  width: 4rem;
  right: -4%;
  top: 60%;
}
@media (max-width: 768px) {
  .product-intro-badge-bean-right {
    width: 8vw;
  }
}
.product-intro-product {
  width: 100%;
  max-width: clamp(28rem, 19.8571428571rem + 10.2040816327vw, 37rem);
}
@media (max-width: 768px) {
  .product-intro-product {
    max-width: 64vw;
  }
}
.product-intro-product img {
  display: block;
  width: 100%;
  filter: drop-shadow(0 0 44px rgba(255, 255, 255, 0.8));
}
.product-intro-body {
  display: grid;
  gap: clamp(1.6rem, 0.8761904762rem + 0.9070294785vw, 2.4rem);
}
@media (max-width: 768px) {
  .product-intro-body {
    width: 100%;
    gap: 4.2666666667vw;
  }
}
.product-intro-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.6rem, 0.419047619rem + 0.2267573696vw, 0.8rem) clamp(1.2rem, 0.8380952381rem + 0.4535147392vw, 1.6rem);
  border: 0.2rem solid var(--color-text-brand);
  font-family: var(--font-kiwi);
  font-size: clamp(1.6rem, 1.2380952381rem + 0.4535147392vw, 2rem);
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  overflow-wrap: normal;
  word-break: keep-all;
}
@media (max-width: 768px) {
  .product-intro-label {
    padding: 1.6vw 2.6666666667vw;
    font-size: 3.7333333333vw;
  }
}
.product-intro-lead {
  font-size: clamp(2rem, 1.4571428571rem + 0.6802721088vw, 2.6rem);
  overflow-wrap: normal;
}
@media (max-width: 768px) {
  .product-intro-lead {
    font-size: 5.3333333333vw;
  }
}
.product-intro-lead-em {
  color: var(--color-care);
}
.product-intro-divider {
  display: block;
  width: 100%;
  height: 1px;
  border: 0;
  background-color: var(--color-text-brand);
  opacity: 0.25;
}
.product-intro-taste {
  display: grid;
  gap: 0.8rem;
}
@media (max-width: 768px) {
  .product-intro-taste {
    gap: 4.2666666667vw;
  }
}
.product-intro-taste-catch {
  font-size: clamp(1.8rem, 1.4380952381rem + 0.4535147392vw, 2.2rem);
}
@media (max-width: 768px) {
  .product-intro-taste-catch {
    font-size: 4.2666666667vw;
  }
}
.product-intro-taste-list {
  display: grid;
  gap: clamp(1.2rem, 0.8380952381rem + 0.4535147392vw, 1.6rem);
}
@media (max-width: 768px) {
  .product-intro-taste-list {
    gap: 4.2666666667vw;
  }
}
.product-intro-taste-item {
  display: grid;
  gap: 0.4rem;
}
@media (max-width: 768px) {
  .product-intro-taste-item {
    gap: 1.0666666667vw;
  }
}
.product-intro-taste-item-name {
  font-size: clamp(1.8rem, 1.4380952381rem + 0.4535147392vw, 2.2rem);
  line-height: 1.3;
  color: var(--color-care);
}
@media (max-width: 768px) {
  .product-intro-taste-item-name {
    font-size: 4.8vw;
  }
}
.product-intro-taste-item-beans {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
@media (max-width: 768px) {
  .product-intro-taste-item-beans {
    gap: 2.1333333333vw;
  }
}
.product-intro-taste-item-bean {
  width: clamp(2.8rem, 2.0761904762rem + 0.9070294785vw, 3.6rem);
}
@media (max-width: 768px) {
  .product-intro-taste-item-bean {
    width: 10.6666666667vw;
  }
}
.product-intro-taste-item-bean img {
  display: block;
  width: 100%;
}
.product-intro-taste-item-bean-off {
  opacity: 0.25;
}
.product-ingredient {
  position: relative;
  z-index: 1;
}
.product-ingredient-head {
  display: grid;
  gap: clamp(2.4rem, 1.6761904762rem + 0.9070294785vw, 3.2rem);
  justify-items: center;
  margin-bottom: clamp(3.2rem, 2.4761904762rem + 0.9070294785vw, 4rem);
}
@media (max-width: 768px) {
  .product-ingredient-head {
    gap: 5.3333333333vw;
    margin-bottom: 10.6666666667vw;
  }
}
.product-ingredient-title {
  font-size: clamp(2.8rem, 1.7142857143rem + 1.3605442177vw, 4rem);
  color: var(--color-care);
}
@media (max-width: 768px) {
  .product-ingredient-title {
    font-size: 5.8666666667vw;
  }
}
.product-ingredient-desc {
  font-size: clamp(1.6rem, 1.0571428571rem + 0.6802721088vw, 2.2rem);
  text-align: center;
}
@media (max-width: 768px) {
  .product-ingredient-desc {
    font-size: 4.2666666667vw;
  }
}
.product-ingredient-desc-em {
  color: var(--color-care);
}
.product-ingredient-points {
  display: grid;
  gap: clamp(3.2rem, 2.4761904762rem + 0.9070294785vw, 4rem);
}
@media (max-width: 768px) {
  .product-ingredient-points {
    gap: 6.4vw;
  }
}
.product-ingredient-point {
  background-color: var(--color-bg);
  border-left: clamp(0.8rem, 0.619047619rem + 0.2267573696vw, 1rem) solid var(--color-care-light);
}
@media (max-width: 768px) {
  .product-ingredient-point {
    border-left: 1.3333333333vw solid var(--color-care-light);
  }
}
.product-ingredient-point {
  display: grid;
  grid-template-columns: 1fr clamp(32rem, 24.1285714286rem + 9.8639455782vw, 40.7rem);
  gap: clamp(2rem, 0.1904761905rem + 2.2675736961vw, 4rem);
  align-items: start;
  padding: clamp(2.8rem, 1.7142857143rem + 1.3605442177vw, 4rem) clamp(2.4rem, -0.8571428571rem + 4.0816326531vw, 6rem);
}
@media (max-width: 768px) {
  .product-ingredient-point {
    grid-template-columns: 1fr;
    padding: 6.4vw;
    gap: 10.6666666667vw;
  }
}
.product-ingredient-label {
  display: inline-grid;
  place-items: center;
  align-content: start;
  width: clamp(16rem, 12.2904761905rem + 4.6485260771vw, 20.1rem);
  height: clamp(5rem, 3.8238095238rem + 1.4739229025vw, 6.3rem);
  margin-top: clamp(2rem, 0.1904761905rem + 2.2675736961vw, 4rem);
  margin-left: auto;
  margin-bottom: clamp(0.8rem, 0.4380952381rem + 0.4535147392vw, 1.2rem);
  padding-top: clamp(1rem, 0.6380952381rem + 0.4535147392vw, 1.4rem);
  background: url("/andhealthy/dist/images/common/point-label.svg") no-repeat center top/100% auto;
  font-family: var(--font-kiwi);
  font-weight: 500;
  font-size: clamp(1.6rem, 1.2380952381rem + 0.4535147392vw, 2rem);
  line-height: 1;
  color: var(--color-main);
  text-align: center;
}
@media (max-width: 768px) {
  .product-ingredient-label {
    width: 42.6666666667vw;
    height: 13.3333333333vw;
    font-size: 4vw;
    margin-top: 0;
    margin-bottom: 2.6666666667vw;
    padding-top: 2.6666666667vw;
  }
}
.product-ingredient-text {
  font-size: clamp(1.6rem, 1.419047619rem + 0.2267573696vw, 1.8rem);
}
@media (max-width: 768px) {
  .product-ingredient-text {
    font-size: 3.7333333333vw;
  }
}
.product-ingredient-text-em {
  text-decoration: underline;
  text-decoration-color: var(--color-care-light);
  text-decoration-thickness: 8%;
  text-underline-offset: 32%;
}
.product-ingredient-graph {
  width: 100%;
}
@media (max-width: 768px) {
  .product-ingredient-graph {
    width: 64vw;
    margin: auto;
  }
}
.product-ingredient-graph img {
  display: block;
  width: 100%;
}
.product-ingredient-note {
  margin-top: clamp(2rem, 1.6380952381rem + 0.4535147392vw, 2.4rem);
  font-size: clamp(1.1rem, 1.0095238095rem + 0.1133786848vw, 1.2rem);
}
@media (max-width: 768px) {
  .product-ingredient-note {
    margin-top: 6.4vw;
    font-size: 3.2vw;
  }
}
.product-ingredient-note-ref {
  margin-top: clamp(1.6rem, 0.8761904762rem + 0.9070294785vw, 2.4rem);
}
@media (max-width: 768px) {
  .product-ingredient-note-ref {
    margin-top: 6.4vw;
  }
}
.product-mechanism {
  position: relative;
  z-index: 1;
}
.product-mechanism-head {
  margin-bottom: clamp(3.2rem, 2.4761904762rem + 0.9070294785vw, 4rem);
}
@media (max-width: 768px) {
  .product-mechanism-head {
    margin-bottom: 10.6666666667vw;
  }
}
.product-mechanism-title {
  font-size: clamp(2.4rem, 1.4047619048rem + 1.2471655329vw, 3.5rem);
  color: var(--color-text-brand);
}
@media (max-width: 768px) {
  .product-mechanism-title {
    font-size: 5.8666666667vw;
  }
}
.product-mechanism-list {
  display: grid;
  gap: clamp(4.8rem, 1.9047619048rem + 3.6281179138vw, 8rem);
}
@media (max-width: 768px) {
  .product-mechanism-list {
    gap: 10.6666666667vw;
  }
}
.product-mechanism-list .product-mechanism-visual {
  margin-bottom: 0;
}
.product-mechanism-item {
  display: grid;
  gap: 1.6rem;
}
@media (max-width: 768px) {
  .product-mechanism-item {
    gap: 4.2666666667vw;
  }
}
.product-mechanism-visual {
  margin-bottom: clamp(2.4rem, 1.6761904762rem + 0.9070294785vw, 3.2rem);
  padding: clamp(2.4rem, 0.2285714286rem + 2.7210884354vw, 4.8rem) clamp(1.2rem, 0.1142857143rem + 1.3605442177vw, 2.4rem) clamp(0.8rem, 0.0761904762rem + 0.9070294785vw, 1.6rem);
  background-color: var(--color-care-bg);
}
@media (max-width: 768px) {
  .product-mechanism-visual {
    aspect-ratio: auto;
    margin-bottom: 4.2666666667vw;
    padding: 6.4vw 6.4vw 4.2666666667vw;
  }
}
.product-mechanism-visual img {
  display: block;
  width: 100%;
  max-width: clamp(56rem, 48.7619047619rem + 9.0702947846vw, 64rem);
  margin: auto;
}
@media (max-width: 768px) {
  .product-mechanism-visual img {
    width: 100%;
    max-width: none;
  }
}
.product-mechanism-caption {
  font-size: 1.2rem;
  text-align: right;
  margin-top: clamp(0.4rem, 0.0380952381rem + 0.4535147392vw, 0.8rem);
}
@media (max-width: 768px) {
  .product-mechanism-caption {
    font-size: 3.2vw;
    margin-top: 2.1333333333vw;
  }
}
.product-mechanism-text {
  font-size: clamp(1.6rem, 1.0571428571rem + 0.6802721088vw, 2.2rem);
  text-align: center;
}
@media (max-width: 768px) {
  .product-mechanism-text {
    font-size: 4.2666666667vw;
  }
}
@media (max-width: 768px) {
  .page-drip_trigonelline.product .product-mechanism-visual img {
    width: 57.0666666667vw;
  }
}
.page-powder_chlorogenic-acids.product .product-mechanism-visual img {
  max-width: 100%;
}
.product-more {
  position: relative;
  z-index: 1;
}
.product-more-head {
  margin-bottom: clamp(3.2rem, 2.4761904762rem + 0.9070294785vw, 4rem);
}
@media (max-width: 768px) {
  .product-more-head {
    margin-bottom: 10.6666666667vw;
  }
}
.product-more-title {
  font-size: clamp(2.4rem, 1.4047619048rem + 1.2471655329vw, 3.5rem);
}
@media (max-width: 768px) {
  .product-more-title {
    font-size: 5.8666666667vw;
  }
}
.product-more-list {
  display: grid;
  gap: clamp(4rem, 3.2761904762rem + 0.9070294785vw, 4.8rem);
}
@media (max-width: 768px) {
  .product-more-list {
    gap: 10.6666666667vw;
  }
}
.product-more-item {
  background-color: var(--color-bg);
  border-left: clamp(0.8rem, 0.619047619rem + 0.2267573696vw, 1rem) solid var(--color-care-light);
}
@media (max-width: 768px) {
  .product-more-item {
    border-left: 1.3333333333vw solid var(--color-care-light);
  }
}
.product-more-item {
  display: grid;
  grid-template-columns: 1fr clamp(24rem, 7.7142857143rem + 20.4081632653vw, 42rem);
  gap: clamp(2.4rem, 0.9523809524rem + 1.8140589569vw, 4rem);
  align-items: start;
  padding: clamp(2.8rem, 1.7142857143rem + 1.3605442177vw, 4rem) clamp(2.4rem, -0.8571428571rem + 4.0816326531vw, 6rem) clamp(2.8rem, 1.7142857143rem + 1.3605442177vw, 4rem) clamp(2.8rem, -1rem + 4.7619047619vw, 7rem);
}
@media (max-width: 768px) {
  .product-more-item {
    grid-template-columns: 1fr;
    gap: 8vw;
    padding: 6.4vw;
  }
}
.product-more-item-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 1.6380952381rem + 0.4535147392vw, 2.4rem);
}
@media (max-width: 768px) {
  .product-more-item-stack {
    gap: 8vw;
  }
}
.product-more-item-main {
  display: grid;
  grid-template-columns: 1fr clamp(18rem, 11.6666666667rem + 7.9365079365vw, 25rem);
  gap: clamp(2.4rem, 0.9523809524rem + 1.8140589569vw, 4rem);
  align-items: center;
}
@media (max-width: 768px) {
  .product-more-item-main {
    grid-template-columns: 1fr;
    gap: 8vw;
  }
  .product-more-item-main .product-more-illust img {
    width: 64vw;
    margin-inline: auto;
  }
}
.product-more-q, .product-more-a {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.2rem, 0.8380952381rem + 0.4535147392vw, 1.6rem);
  align-items: start;
}
@media (max-width: 768px) {
  .product-more-q, .product-more-a {
    gap: 4.2666666667vw;
  }
}
.product-more-q {
  margin-bottom: clamp(2rem, 0.1904761905rem + 2.2675736961vw, 4rem);
}
@media (max-width: 768px) {
  .product-more-q {
    margin-bottom: 4.2666666667vw;
  }
}
.product-more-q-mark {
  font-family: var(--font-kiwi);
  font-size: clamp(2.2rem, 1.6571428571rem + 0.6802721088vw, 2.8rem);
  color: var(--color-accent);
  line-height: 1.3;
}
@media (max-width: 768px) {
  .product-more-q-mark {
    font-size: 6.4vw;
  }
}
.product-more-q-text {
  font-size: clamp(1.8rem, 1.4380952381rem + 0.4535147392vw, 2.2rem);
  padding-top: 0.5rem;
}
@media (max-width: 768px) {
  .product-more-q-text {
    font-size: 4.2666666667vw;
    padding-top: 1.3333333333vw;
  }
}
.product-more-a-mark {
  font-family: var(--font-kiwi);
  font-size: clamp(2.2rem, 1.6571428571rem + 0.6802721088vw, 2.8rem);
  color: var(--color-care);
  line-height: 1.3;
}
@media (max-width: 768px) {
  .product-more-a-mark {
    font-size: 6.4vw;
  }
}
.product-more-a-text {
  font-size: clamp(1.5rem, 1.2285714286rem + 0.3401360544vw, 1.8rem);
}
@media (max-width: 768px) {
  .product-more-a-text {
    font-size: 3.7333333333vw;
  }
}
.product-more-a-text-em {
  text-decoration: underline;
  text-decoration-color: var(--color-care-light);
  text-decoration-thickness: 8%;
  text-underline-offset: 32%;
}
.product-more-illust {
  width: 100%;
}
.product-more-illust img {
  display: block;
  width: 100%;
}
.product-more-illust-note {
  margin-top: clamp(0.8rem, 0.4380952381rem + 0.4535147392vw, 1.2rem);
  font-size: clamp(1.1rem, 1.0095238095rem + 0.1133786848vw, 1.2rem);
  text-align: center;
  color: var(--color-text);
}
@media (max-width: 768px) {
  .product-more-illust-note {
    margin-top: 3.2vw;
    font-size: 2.6666666667vw;
  }
}
.product-more-divider {
  height: 1px;
  background-color: var(--color-text-brand-alpha-20);
  border: 0;
  margin: 0;
}
.product-faq {
  position: relative;
  z-index: 1;
  padding-bottom: clamp(8rem, 1.6666666667rem + 7.9365079365vw, 15rem);
}
@media (max-width: 768px) {
  .product-faq {
    padding-bottom: 26.6666666667vw;
  }
}
.product-faq-title {
  font-size: clamp(3.2rem, 1.7523809524rem + 1.8140589569vw, 4.8rem);
  margin-bottom: clamp(3.2rem, 2.4761904762rem + 0.9070294785vw, 4rem);
}
@media (max-width: 768px) {
  .product-faq-title {
    font-size: 6.9333333333vw;
    margin-bottom: 8vw;
  }
}
.product-faq-list {
  display: grid;
  gap: clamp(2.4rem, 0.9523809524rem + 1.8140589569vw, 4rem);
}
@media (max-width: 768px) {
  .product-faq-list {
    gap: 6.4vw;
  }
}
.product-faq-item {
  width: 100%;
}
.product-faq-question {
  background-color: transparent;
  border: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: inherit;
  font-family: inherit;
}
.product-faq-question:not(:focus) {
  outline: none;
}
.product-faq-question {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(1.2rem, 0.8380952381rem + 0.4535147392vw, 1.6rem);
  width: 100%;
  padding: clamp(1.4rem, 1.219047619rem + 0.2267573696vw, 1.6rem) clamp(1.6rem, 0.8761904762rem + 0.9070294785vw, 2.4rem) clamp(1.4rem, 1.219047619rem + 0.2267573696vw, 1.6rem) clamp(1.2rem, 0.8380952381rem + 0.4535147392vw, 1.6rem);
  background-color: var(--color-care-faq);
  transition: opacity var(--trd-hover-duration) var(--trd-timing);
}
@media (hover: hover) {
  .product-faq-question:hover {
    opacity: 0.9;
  }
}
@media (max-width: 768px) {
  .product-faq-question {
    gap: 2.1333333333vw;
    padding: 4.2666666667vw;
  }
}
.product-faq-question-mark {
  font-family: var(--font-kiwi);
  font-size: clamp(2.2rem, 1.6571428571rem + 0.6802721088vw, 2.8rem);
  color: var(--color-bg);
  line-height: 1.2;
}
@media (max-width: 768px) {
  .product-faq-question-mark {
    font-size: 5.8666666667vw;
  }
}
.product-faq-question-text {
  font-size: clamp(1.6rem, 1.0571428571rem + 0.6802721088vw, 2.2rem);
  text-align: left;
  color: var(--color-bg);
}
@media (max-width: 768px) {
  .product-faq-question-text {
    font-size: 4.2666666667vw;
  }
}
.product-faq-question-icon {
  position: relative;
  width: clamp(2rem, 1.6380952381rem + 0.4535147392vw, 2.4rem);
  height: clamp(2rem, 1.6380952381rem + 0.4535147392vw, 2.4rem);
  margin-top: 0.4rem;
}
@media (max-width: 768px) {
  .product-faq-question-icon {
    width: 4.8vw;
    height: 4.8vw;
    margin-top: 1.3333333333vw;
  }
}
.product-faq-question-icon::before, .product-faq-question-icon::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 0;
  width: 100%;
  height: 0.2rem;
  background-color: var(--color-bg);
  translate: 0 -50%;
  transition: transform var(--trd-duration) var(--trd-timing), opacity var(--trd-duration) var(--trd-timing);
}
@media (max-width: 768px) {
  .product-faq-question-icon::before, .product-faq-question-icon::after {
    height: 0.5333333333vw;
  }
}
.product-faq-question-icon::after {
  rotate: 90deg;
}
.product-faq-item.is-open .product-faq-question-icon::after {
  opacity: 0;
  transform: scaleY(0);
}
.product-faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--trd-duration) var(--trd-timing);
}
.product-faq-answer-inner {
  overflow: hidden;
  min-height: 0;
}
.product-faq-answer-body {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.2rem, 0.8380952381rem + 0.4535147392vw, 1.6rem);
  align-items: start;
  padding: clamp(1.4rem, 1.219047619rem + 0.2267573696vw, 1.6rem) clamp(1.6rem, 0.8761904762rem + 0.9070294785vw, 2.4rem) clamp(1.4rem, 1.219047619rem + 0.2267573696vw, 1.6rem) clamp(1.2rem, 0.8380952381rem + 0.4535147392vw, 1.6rem);
  background-color: var(--color-bg);
  border: 0.1rem solid var(--color-care-faq);
  border-top: 0;
}
@media (max-width: 768px) {
  .product-faq-answer-body {
    gap: 2.1333333333vw;
    padding: 4.2666666667vw;
    border: 0.2666666667vw solid var(--color-care-faq);
  }
}
.product-faq-answer-mark {
  font-family: var(--font-kiwi);
  font-size: clamp(2.2rem, 1.6571428571rem + 0.6802721088vw, 2.8rem);
  line-height: 1;
  color: var(--color-care);
  padding-top: clamp(0.2rem, 0.019047619rem + 0.2267573696vw, 0.4rem);
}
@media (max-width: 768px) {
  .product-faq-answer-mark {
    font-size: 5.8666666667vw;
    padding-top: 0;
  }
}
.product-faq-answer-text {
  font-size: clamp(1.5rem, 1.2285714286rem + 0.3401360544vw, 1.8rem);
  padding-top: clamp(0.2rem, -0.0714285714rem + 0.3401360544vw, 0.5rem);
}
@media (max-width: 768px) {
  .product-faq-answer-text {
    font-size: 3.7333333333vw;
    padding-top: 0;
  }
}
.product-faq-item.is-open .product-faq-answer {
  grid-template-rows: 1fr;
}
.product-detail {
  position: relative;
  z-index: 1;
}
.product-detail-title {
  font-size: clamp(3.2rem, 1.7523809524rem + 1.8140589569vw, 4.8rem);
  margin-bottom: clamp(3.2rem, 2.4761904762rem + 0.9070294785vw, 4rem);
}
@media (max-width: 768px) {
  .product-detail-title {
    font-size: 6.9333333333vw;
    margin-bottom: 8vw;
  }
}
.product-detail-list {
  display: grid;
  gap: clamp(6rem, 4.1904761905rem + 2.2675736961vw, 8rem);
}
@media (max-width: 768px) {
  .product-detail-list {
    gap: 26.6666666667vw;
  }
}
.product-detail-block {
  display: grid;
  gap: 0;
}
.product-detail-main {
  display: grid;
  grid-template-columns: 1fr clamp(20rem, 11.4952380952rem + 10.6575963719vw, 29.4rem);
  gap: clamp(2.4rem, 0.9523809524rem + 1.8140589569vw, 4rem);
  align-items: start;
  margin-bottom: 2.4rem;
}
@media (max-width: 768px) {
  .product-detail-main {
    grid-template-columns: 1fr;
    gap: 6.4vw;
    margin-bottom: 10.6666666667vw;
  }
}
@media (max-width: 768px) {
  .product-detail-info {
    order: 2;
  }
}
.product-detail-table {
  width: 100%;
  border-collapse: collapse;
}
.product-detail-table caption,
.product-detail-table th,
.product-detail-table td {
  border-bottom: 1px solid var(--color-text-brand-alpha-25);
}
.product-detail-table caption {
  font-family: var(--font-kiwi);
  font-size: clamp(1.6rem, 1.419047619rem + 0.2267573696vw, 1.8rem);
  text-align: left;
  padding-bottom: clamp(1.2rem, 0.8380952381rem + 0.4535147392vw, 1.6rem);
}
@media (max-width: 768px) {
  .product-detail-table caption {
    font-size: 4.2666666667vw;
    padding-bottom: 3.2vw;
  }
}
.product-detail-table th,
.product-detail-table td {
  padding: clamp(1.2rem, 0.8380952381rem + 0.4535147392vw, 1.6rem) 0;
  font-family: var(--font-kiwi);
  font-size: clamp(1.4rem, 1.219047619rem + 0.2267573696vw, 1.6rem);
  line-height: 1.5;
  vertical-align: top;
  text-align: left;
}
@media (max-width: 768px) {
  .product-detail-table th,
  .product-detail-table td {
    padding: 1.0666666667vw 0 3.2vw;
    font-size: 3.7333333333vw;
    display: block;
  }
}
.product-detail-table th {
  width: clamp(12rem, 8.5619047619rem + 4.3083900227vw, 15.8rem);
  font-size: clamp(1.5rem, 1.2285714286rem + 0.3401360544vw, 1.8rem);
  font-weight: inherit;
  white-space: nowrap;
  padding-right: 0.8rem;
}
@media (max-width: 768px) {
  .product-detail-table th {
    width: 100%;
    font-size: 4.2666666667vw;
    border-bottom: none;
    padding: 3.2vw 0 0;
  }
}
.product-detail-summary {
  font-family: var(--font-kiwi);
  font-size: clamp(1.5rem, 1.2285714286rem + 0.3401360544vw, 1.8rem);
  line-height: 1.5;
  padding-top: clamp(1.2rem, 0.8380952381rem + 0.4535147392vw, 1.6rem);
}
@media (max-width: 768px) {
  .product-detail-summary {
    font-size: 4.2666666667vw;
  }
}
.product-detail-product {
  width: 100%;
}
@media (max-width: 768px) {
  .product-detail-product {
    order: 1;
  }
}
.product-detail-product img {
  display: block;
  width: 100%;
}
@media (max-width: 768px) {
  .product-detail-product img {
    width: 64vw;
    margin: auto;
  }
}
.product-detail-notes {
  display: grid;
  gap: clamp(2rem, 1.6380952381rem + 0.4535147392vw, 2.4rem);
  margin-bottom: clamp(4rem, 2.1904761905rem + 2.2675736961vw, 6rem);
}
@media (max-width: 768px) {
  .product-detail-notes {
    gap: 5.3333333333vw;
    margin-bottom: 10.6666666667vw;
  }
}
.product-detail-note {
  display: grid;
  gap: clamp(0.6rem, 0.419047619rem + 0.2267573696vw, 0.8rem);
}
@media (max-width: 768px) {
  .product-detail-note {
    gap: 2.1333333333vw;
  }
}
.product-detail-note-label {
  display: inline-flex;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 clamp(0.6rem, 0.419047619rem + 0.2267573696vw, 0.8rem);
  background-color: var(--color-main);
  color: var(--color-bg);
  font-size: clamp(1.1rem, 1.0095238095rem + 0.1133786848vw, 1.2rem);
}
@media (max-width: 768px) {
  .product-detail-note-label {
    padding: 0 2.1333333333vw;
    font-size: 3.2vw;
  }
}
.product-detail-note-text {
  font-size: clamp(1.1rem, 1.0095238095rem + 0.1133786848vw, 1.2rem);
}
@media (max-width: 768px) {
  .product-detail-note-text {
    font-size: 3.2vw;
  }
}
.product-detail-note-list {
  display: grid;
  gap: 0;
  padding-left: clamp(1.6rem, 1.419047619rem + 0.2267573696vw, 1.8rem);
  font-size: clamp(1.1rem, 1.0095238095rem + 0.1133786848vw, 1.2rem);
}
@media (max-width: 768px) {
  .product-detail-note-list {
    padding-left: 4.2666666667vw;
    font-size: 3.2vw;
  }
}
.product-detail-note-list li {
  list-style: disc;
}
.product-detail-links {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 0.1904761905rem + 2.2675736961vw, 4rem);
  justify-content: center;
}
@media (max-width: 768px) {
  .product-detail-links {
    gap: 5.3333333333vw;
  }
}
.product-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.2rem, 0.8380952381rem + 0.4535147392vw, 1.6rem);
  min-width: clamp(22rem, 16.2095238095rem + 7.2562358277vw, 28.4rem);
  padding: clamp(1.4rem, 1.219047619rem + 0.2267573696vw, 1.6rem) clamp(2rem, 1.6380952381rem + 0.4535147392vw, 2.4rem) clamp(1.4rem, 1.219047619rem + 0.2267573696vw, 1.6rem) clamp(2.8rem, 1.7142857143rem + 1.3605442177vw, 4rem);
  border: 1px solid var(--color-text-brand);
  color: var(--color-text-brand);
  text-decoration: none;
  font-size: clamp(1.6rem, 1.2380952381rem + 0.4535147392vw, 2rem);
  transition: opacity var(--trd-hover-duration) var(--trd-timing);
}
@media (hover: hover) {
  .product-link:hover {
    opacity: 0.7;
  }
}
@media (max-width: 768px) {
  .product-link {
    gap: 4.2666666667vw;
    min-width: 84vw;
    padding: 4.2666666667vw;
    border: 0.2666666667vw solid var(--color-text-brand);
    font-size: 4.8vw;
  }
}
.product-link-arrow {
  display: block;
  width: clamp(2.8rem, 2.3476190476rem + 0.566893424vw, 3.3rem);
  aspect-ratio: 33/13;
  background-color: var(--color-text-brand);
  -webkit-mask: url("/andhealthy/dist/images/common/btn-arrow.svg") center/contain no-repeat;
          mask: url("/andhealthy/dist/images/common/btn-arrow.svg") center/contain no-repeat;
}
@media (max-width: 768px) {
  .product-link-arrow {
    width: 8.8vw;
  }
}
.product-link-back {
  padding-inline: clamp(2rem, 1.6380952381rem + 0.4535147392vw, 2.4rem) clamp(2.8rem, 1.7142857143rem + 1.3605442177vw, 4rem);
}
.product-link-back .product-link-arrow {
  scale: -1 1;
}
.product-lineup {
  position: relative;
  z-index: 1;
  padding-bottom: clamp(8rem, 1.6666666667rem + 7.9365079365vw, 15rem);
}
@media (max-width: 768px) {
  .product-lineup {
    padding-bottom: 32vw;
  }
}
.product-lineup-title {
  font-size: clamp(3.2rem, 1.7523809524rem + 1.8140589569vw, 4.8rem);
  margin-bottom: clamp(8rem, 5.2857142857rem + 3.4013605442vw, 11rem);
}
@media (max-width: 768px) {
  .product-lineup-title {
    font-size: 6.9333333333vw;
    margin-bottom: 17.0666666667vw;
  }
}
.product-lineup-list {
  display: grid;
  gap: clamp(8rem, 5.2857142857rem + 3.4013605442vw, 11rem);
  margin-bottom: clamp(4.8rem, 1.9047619048rem + 3.6281179138vw, 8rem);
}
@media (max-width: 768px) {
  .product-lineup-list {
    gap: 21.3333333333vw;
    margin-bottom: 10.6666666667vw;
  }
}
.product-lineup-item {
  position: relative;
  display: grid;
  border: 1px solid var(--color-main);
}
@media (max-width: 768px) {
  .product-lineup-item {
    border: 0.2666666667vw solid var(--color-main);
  }
}
.product-lineup-item-link {
  display: grid;
  text-decoration: none;
  color: inherit;
  transition: opacity var(--trd-hover-duration) var(--trd-timing);
}
@media (hover: hover) {
  .product-lineup-item-link:hover {
    opacity: 0.9;
  }
}
.product-lineup-item-body img {
  display: block;
  width: 100%;
}
.product-lineup-item-badge {
  position: absolute;
  left: 50%;
  top: 0;
  translate: -50% -50%;
  width: clamp(17rem, 14.2857142857rem + 3.4013605442vw, 20rem);
  z-index: 2;
}
@media (max-width: 768px) {
  .product-lineup-item-badge {
    width: 32vw;
  }
}
.product-lineup-item-badge-shape {
  display: block;
  width: 100%;
}
.product-lineup-item-badge-text {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: grid;
  place-content: center;
  font-family: var(--font-noto);
  font-size: clamp(1.8rem, 1.2571428571rem + 0.6802721088vw, 2.4rem);
  line-height: 1.3;
  text-align: center;
  color: var(--color-text-brand);
  overflow-wrap: normal;
  word-break: keep-all;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .product-lineup-item-badge-text {
    font-size: 3.4666666667vw;
  }
}
.product-lineup-item-badge-bean {
  position: absolute;
  display: block;
  pointer-events: none;
  -o-object-fit: cover;
     object-fit: cover;
  will-change: transform;
}
.product-lineup-item-badge-bean-left {
  width: clamp(2.5rem, 2.0476190476rem + 0.566893424vw, 3rem);
  left: 2%;
  top: 8%;
}
@media (max-width: 768px) {
  .product-lineup-item-badge-bean-left {
    width: 5.3333333333vw;
  }
}
.product-lineup-item-badge-bean-right {
  width: clamp(3.5rem, 3.0476190476rem + 0.566893424vw, 4rem);
  right: -4%;
  top: 60%;
}
@media (max-width: 768px) {
  .product-lineup-item-badge-bean-right {
    width: 6.6666666667vw;
  }
}
.product-lineup-item-cta {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.6rem, 0.419047619rem + 0.2267573696vw, 0.8rem);
  background-color: var(--color-main);
  color: var(--color-bg);
  padding: clamp(1.2rem, 0.9285714286rem + 0.3401360544vw, 1.5rem) clamp(1.6rem, 1.2380952381rem + 0.4535147392vw, 2rem) clamp(1.2rem, 0.9285714286rem + 0.3401360544vw, 1.5rem) clamp(2.8rem, 1.7142857143rem + 1.3605442177vw, 4rem);
  font-family: var(--font-kiwi);
  font-size: clamp(2rem, 1.4571428571rem + 0.6802721088vw, 2.6rem);
}
@media (max-width: 768px) {
  .product-lineup-item-cta {
    gap: 2.1333333333vw;
    padding: 2.1333333333vw;
    font-size: 4.2666666667vw;
  }
}
.product-lineup-item-cta img {
  width: clamp(2.8rem, 2.3476190476rem + 0.566893424vw, 3.3rem);
  display: block;
}
@media (max-width: 768px) {
  .product-lineup-item-cta img {
    width: 5.3333333333vw;
  }
}
.product-lineup-back {
  display: flex;
  justify-content: center;
}/*# sourceMappingURL=style.css.map */