@layer component {
  .c-anchor-link-card {
    border-radius: 0.5rem;
    background: var(--clr--border-gray-2);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transition: background 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
    transition: background 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  }
  @media (min-width: 993px) {
    .c-anchor-link-card:hover {
      background: #dcdcd5;
    }
  }
  .c-anchor-link-card__img {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    border-radius: 0.5rem;
    overflow: hidden;
    width: clamp(120px, 11.8055555556vw, 170px);
  }
  .c-anchor-link-card__content {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 1.25rem;
  }
  .c-anchor-link-card__content .c-svg--arrow {
    --svg-fill: var(--clr--theme-red);
    width: 0.75rem;
    height: auto;
  }
  .c-anchor-link-card__title {
    font-size: clamp(16px, 1.25vw, 18px);
    font-weight: bold;
    line-height: 1.2;
  }
}
@layer component {
  .c-link-button {
    font-size: clamp(14px, 1.1111111111vw, 16px);
    font-weight: bold;
    background-color: #ccc;
    line-height: 1.5;
    height: var(--link-button-h);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.75rem;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    min-width: 7.5rem;
    padding-inline: var(--link-button-px, 1.75rem);
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-radius: calc(var(--link-button-h) * 0.5);
    color: var(--link-button-clr);
    background-color: var(--link-button-bgc);
    border: 1px solid var(--link-button-bdc, transparent);
    -webkit-transition-property: color, background-color, border-color, opacity;
    transition-property: color, background-color, border-color, opacity;
    -webkit-transition-duration: 0.4s;
            transition-duration: 0.4s;
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transition-delay: 0s;
            transition-delay: 0s;
  }
  .c-link-button[data-variant*="size:sm"] {
    --link-button-h: 2.375rem;
    --link-button-px: 1.25rem;
  }
  .c-link-button[data-variant*="size:md"] {
    --link-button-h: 3rem;
  }
  .c-link-button[data-variant*="clr:red"] {
    --link-button-bgc: var(--clr--theme-red);
    --link-button-clr: #fff;
  }
  .c-link-button[data-variant*="clr:red"]:hover {
    --link-button-bgc: color-mix(in srgb, #000 10%, var(--clr--theme-red));
  }
  .c-link-button[data-variant*="clr:white"] {
    --link-button-bgc: #fff;
    --link-button-clr: currentColor;
    --button-arrow-fill: var(--clr--theme-red);
  }
  .c-link-button[data-variant*="clr:white"]:hover {
    --link-button-bgc: var(--clr--bg-gray);
  }
  .c-link-button[data-variant*="border:gray-1"] {
    --link-button-bdc: var(--clr--border-gray-1);
  }
  .c-link-button:has(.c-svg--button-arrow) {
    padding-right: 0.625rem;
  }
  .c-link-button .c-svg--button-arrow {
    width: 1.125rem;
    height: 1.125rem;
    fill: var(--button-arrow-fill, currentColor);
  }
}
@layer component {
  .c-recipe {
    position: relative;
    height: 100%;
    container-name: c-recipe;
    container-type: inline-size;
    border-radius: 0.5rem;
    overflow: hidden;
  }
  .c-recipe__img {
    position: relative;
    height: 100%;
    z-index: 1;
  }
  .c-recipe__img::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.3)));
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.3) 100%);
  }
  .c-recipe__img img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .c-recipe__info {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 5;
    padding: clamp(12px, 1.1111111111vw, 16px);
    display: grid;
    gap: 0.75rem;
  }
  @container c-recipe (max-width: 350px) {
    .c-recipe__info .c-link-button {
      display: none;
    }
  }
  @container c-recipe (min-width: 350px) {
    .c-recipe__info {
      padding: clamp(20px, 1.6666666667vw, 24px);
    }
  }
  .c-recipe__title {
    font-size: clamp(16px, 1.25vw, 18px);
    color: #fff;
    font-weight: bold;
  }
  @container c-recipe (min-width: 350px) {
    .c-recipe__title {
      font-size: clamp(22px, 1.6666666667vw, 24px);
    }
  }
}
@layer component {
  .c-image-banner {
    position: relative;
  }
  .c-image-banner__img {
    position: relative;
    z-index: 1;
  }
  .c-image-banner__img img {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 25rem;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .c-image-banner__content {
    position: absolute;
    inset: 0;
    margin: auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    z-index: 2;
  }
  .c-image-banner__title {
    font-size: clamp(32px, 2.7777777778vw, 40px);
    font-family: var(--ff-beaufort);
    font-weight: bold;
  }
  .c-image-banner__text {
    font-size: clamp(12px, 1.1111111111vw, 16px);
    line-height: 1.5;
    margin-top: 1.5rem;
  }
}
.pg-mv {
  aspect-ratio: 16/9;
}
.pg-mv iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  background-color: var(--clr--bg-gray);
}

.pg-contents {
  padding-top: clamp(48px, 5.5555555556vw, 80px);
}

.pg-introduction {
  padding-bottom: clamp(96px, 8.8888888889vw, 128px);
}
.pg-introduction__inner {
  --minmax: max(calc(var(--content-min-margin, 24) * 1px), calc(var(--content-base-margin, 40) / var(--content-base-width, 1440) * 100vw));
  max-width: var(--content-max-width, 100%);
  margin-left: auto;
  margin-right: auto;
  width: calc(100% - var(--minmax) * 2);
}
.pg-introduction__contents {
  display: grid;
  gap: clamp(64px, 6.6666666667vw, 96px);
  grid-template-columns: minmax(0, 1fr);
  margin-top: clamp(64px, 6.6666666667vw, 96px);
}

.pg-header {
  --pg-header-top: 1.25rem;
  padding-bottom: clamp(32px, 3.3333333333vw, 48px);
  border-bottom: 1px solid var(--clr--border-gray-1);
}
.pg-header.is-hidden .pg-header__inner {
  -webkit-transform: translateY(-150%) !important;
          transform: translateY(-150%) !important;
}
.l-wrapper:has(.l-header.is-rollshade-ready:not(.is-rollshade-hidden)) .pg-header.is-fixed .pg-header__inner {
  -webkit-transform: translateY(var(--header-height));
          transform: translateY(var(--header-height));
}
.pg-header.is-fixed .pg-header__inner {
  position: fixed;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  top: var(--pg-header-top);
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  background-color: #fff;
  padding: 0.75rem;
  --minmax: max(calc(var(--content-min-margin, 24) * 1px), calc(var(--content-base-margin, 40) / var(--content-base-width, 1440) * 100vw));
  max-width: var(--content-max-width, 100%);
  margin-left: auto;
  margin-right: auto;
  width: calc(100% - var(--minmax) * 2);
  z-index: 10;
  -webkit-box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.15);
  border-radius: 2rem;
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  transition: -webkit-transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  transition: transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  transition: transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s, -webkit-transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
@media (max-width: 992px) {
  .pg-header.is-fixed .pg-header__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas: "HEADER BUTTON" "CONTENT CONTENT";
    gap: 0 1.25rem;
  }
  .pg-header.is-fixed .pg-header__inner.is-open .pg-header__content {
    height: var(--accordion-h);
  }
  .pg-header.is-fixed .pg-header__inner.is-open .pg-header__title::after {
    -webkit-transform: translateY(25%) rotate(-45deg);
            transform: translateY(25%) rotate(-45deg);
  }
  .pg-header.is-fixed .pg-header__inner .pg-header__header {
    grid-area: HEADER;
  }
  .pg-header.is-fixed .pg-header__inner .pg-header__title {
    padding-left: 0.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .pg-header.is-fixed .pg-header__inner .pg-header__title::after {
    content: "";
    --size: 8px;
    --bdw: 1px;
    --clr: currentColor;
    display: block;
    width: var(--size);
    height: var(--size);
    border-top: var(--bdw) solid var(--clr);
    border-right: var(--bdw) solid var(--clr);
    -webkit-transition-property: border-color;
    transition-property: border-color;
    -webkit-transition-duration: 0.4s;
            transition-duration: 0.4s;
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transition-delay: 0s;
            transition-delay: 0s;
    -webkit-transform: translateY(-25%) rotate(135deg);
            transform: translateY(-25%) rotate(135deg);
  }
  .pg-header.is-fixed .pg-header__inner .c-link-button {
    grid-area: BUTTON;
  }
  .pg-header.is-fixed .pg-header__inner .pg-header__content {
    grid-area: CONTENT;
    height: 0;
    overflow: hidden;
    -webkit-transition: height 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
    transition: height 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  }
  .pg-header.is-fixed .pg-header__inner .pg-header__anchor {
    display: grid;
    gap: clamp(14px, 1.1111111111vw, 16px);
    padding-inline: 0.5rem;
    padding-block: 0.75rem;
  }
  .pg-header.is-fixed .pg-header__inner .c-link-button {
    --link-button-h: 2.375rem;
    --link-button-px: 1.25rem;
    min-width: unset;
  }
}
@media (min-width: 993px) {
  .pg-header.is-fixed .pg-header__inner {
    gap: 2rem;
  }
  .pg-header.is-fixed .pg-header__inner .pg-header__content {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .pg-header.is-fixed .pg-header__inner .pg-header__anchor {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.5rem;
    font-size: 0.875rem;
  }
  .pg-header.is-fixed .pg-header__inner .pg-header__anchor a {
    -webkit-transition: color 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
    transition: color 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  }
  .pg-header.is-fixed .pg-header__inner .pg-header__anchor a:hover {
    color: var(--clr--theme-red);
  }
}
.pg-header.is-fixed .pg-header__title {
  font-size: 1.25rem;
  padding-left: 1.75rem;
}
.pg-header.is-fixed .pg-header__lead {
  display: none;
}
.pg-header:not(.is-fixed) .pg-header__anchor {
  display: none;
}
@media (max-width: 992px) {
  .pg-header:not(.is-fixed) .pg-header__inner {
    text-align: center;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .pg-header:not(.is-fixed) .pg-header__inner .c-link-button {
    display: none;
  }
}
.pg-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.pg-header__title {
  font-family: var(--ff-beaufort);
  font-weight: bold;
  font-size: clamp(40px, 4.1666666667vw, 60px);
  line-height: 1;
}
.pg-header__lead {
  margin-top: 0.75rem;
}

.pg-anchor-links {
  margin-top: clamp(32px, 4.4444444444vw, 64px);
}
.pg-anchor-links__inner {
  display: grid;
  gap: 1rem clamp(16px, 1.6666666667vw, 24px);
}
@media (max-width: 992px) {
  .pg-anchor-links__inner {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}
@media (min-width: 993px) {
  .pg-anchor-links__inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.pg-anchor-links__img {
  border-radius: 0.5rem;
  overflow: hidden;
}

.pg-promo-section {
  display: grid;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 2rem clamp(48px, 5.5555555556vw, 80px);
}
@media (min-width: 993px) {
  .pg-promo-section[data-variant*="layout:horizon"] {
    grid-template-columns: 480fr 720fr;
  }
}
@media (max-width: 992px) {
  .pg-promo-section:not([data-variant*="layout:horizon"]) .pg-promo-section__mv {
    border-radius: 0;
    margin-inline: min(var(--content-min-margin, 24) * -1px, var(--content-base-margin, 40) / var(--content-base-width, 1440) * -100vw);
  }
}
.pg-promo-section__title {
  font-size: clamp(28px, 2.6388888889vw, 38px);
  font-weight: bold;
  line-height: 1.2;
}
.pg-promo-section__lead {
  font-size: clamp(14px, 1.1111111111vw, 16px);
}
.pg-promo-section__lead:not(:first-child) {
  margin-top: 1.5rem;
}
.pg-promo-section__mov iframe {
  aspect-ratio: 16/9;
  width: 100%;
  border-radius: 1rem;
}
.pg-promo-section__mov:not(:first-child) {
  margin-top: clamp(32px, 4.4444444444vw, 64px);
}
.pg-promo-section__mv {
  border-radius: 1rem;
  overflow: hidden;
}
.pg-promo-section__mv img {
  --translateY: calc(var(--img-distance) * var(--progress) * 1px);
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
  -webkit-transform: translateY(var(--translateY, 0)) scale(1.2);
          transform: translateY(var(--translateY, 0)) scale(1.2);
  width: 100%;
}

.pg-histories {
  background-color: var(--clr--bg-beige);
  padding-block: clamp(48px, 4.4444444444vw, 64px);
  border-radius: 1.5rem;
  --content-base-margin: 32;
  --minmax: max(calc(var(--content-min-margin, 24) * 1px), calc(var(--content-base-margin, 40) / var(--content-base-width, 1440) * 100vw));
  max-width: var(--content-max-width, 100%);
  margin-left: auto;
  margin-right: auto;
  width: calc(100% - var(--minmax) * 2);
  margin-top: clamp(64px, 6.6666666667vw, 96px);
}
.pg-histories .c-link-button {
  margin-inline: auto;
  margin-top: 3rem;
}
.pg-histories__title {
  font-size: clamp(32px, 2.7777777778vw, 40px);
  font-family: var(--ff-beaufort);
  font-weight: bold;
  color: var(--clr--theme-gold);
  text-align: center;
  line-height: 1.2;
}
.pg-histories__slider {
  padding-inline: clamp(20px, 3.3333333333vw, 48px);
  margin-top: 3rem;
}
.pg-histories__slider:not(:has(.swiper-slide-active:first-child)) .swiper-scroll {
  opacity: 0;
}
.pg-histories__slider .swiper-slide {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: auto;
}
.pg-histories__slider .swiper-slide:has(.pg-history-label) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pg-histories__slider .swiper-controls {
  margin-top: 3rem;
  display: grid;
  gap: 2.5rem;
  grid-template-columns: minmax(0, 1fr) minmax(0, auto);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.pg-histories__slider .swiper-controls__left, .pg-histories__slider .swiper-controls__center, .pg-histories__slider .swiper-controls__right {
  position: relative;
}
.pg-histories__slider .swiper-controls__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
}
@media (max-width: 992px) {
  .pg-histories__slider .swiper-controls .swiper-controls__left {
    display: none;
  }
}
@media (min-width: 993px) {
  .pg-histories__slider .swiper-controls {
    grid-template-columns: minmax(120px, auto) minmax(0, 1fr) minmax(120px, auto);
  }
}
.pg-histories__slider .swiper-scrollbar {
  --swiper-scrollbar-drag-bg-color: #000;
  --swiper-scrollbar-size: 0.5rem;
  position: relative;
  bottom: unset;
  width: 100%;
  max-width: 140px;
  margin-inline: auto;
}
.pg-histories__slider .swiper-scroll {
  position: absolute;
  top: 0;
  right: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--clr--theme-gold);
  -webkit-transition: opacity 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  transition: opacity 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.pg-histories__slider .swiper-scroll svg {
  width: 0.75rem;
  height: 0.875rem;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  fill: var(--clr--theme-gold);
}
@media (min-width: 577px) {
  .pg-histories__slider .swiper-scroll {
    display: none;
  }
}

.pg-history-label {
  font-size: clamp(16px, 1.6666666667vw, 24px);
  font-family: var(--ff-garamond);
  letter-spacing: 0.02em;
  color: var(--clr--theme-gold);
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  -webkit-padding-before: clamp(32px, 4.4444444444vw, 64px);
          padding-block-start: clamp(32px, 4.4444444444vw, 64px);
}

.pg-history {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.pg-history__year {
  position: relative;
  font-size: clamp(32px, 3.3333333333vw, 48px);
  letter-spacing: 0.02em;
  font-family: var(--ff-garamond);
  border-bottom: 1px solid var(--clr--theme-gold);
  line-height: 1;
  padding-bottom: 0.75rem;
}
.pg-history__year::before {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  border: 1px solid var(--clr--theme-gold);
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
  z-index: 5;
}
.pg-history__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-right: clamp(48px, 5.5555555556vw, 80px);
  margin-top: 2rem;
  gap: clamp(16px, 1.6666666667vw, 24px);
}
.pg-history__text {
  width: 11.25rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: clamp(14px, 1.1111111111vw, 16px);
}
.pg-history__img img {
  -webkit-filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

.pg-section {
  position: relative;
  padding-block: clamp(64px, 6.6666666667vw, 96px);
  background-color: var(--section-bgc, #fff);
}
.pg-section[data-variant*=round-head] {
  padding-top: 2rem;
}
.pg-section[data-variant*=round-head]::before {
  content: "";
  display: block;
  width: 100%;
  height: 2rem;
  background-color: var(--section-bgc, #fff);
  border-radius: 2rem 2rem 0 0;
  position: absolute;
  bottom: 100%;
}
.pg-section[data-variant*="bgc:gray"] {
  --section-bgc: var(--clr--bg-gray);
}
.pg-section__inner {
  --minmax: max(calc(var(--content-min-margin, 24) * 1px), calc(var(--content-base-margin, 40) / var(--content-base-width, 1440) * 100vw));
  max-width: var(--content-max-width, 100%);
  margin-left: auto;
  margin-right: auto;
  width: calc(100% - var(--minmax) * 2);
}

.pg-product-lineup__header {
  border-bottom: 1px solid var(--clr--border-gray-1);
  padding-bottom: 1rem;
}
.pg-product-lineup__heading {
  font-size: clamp(16px, 1.25vw, 18px);
  font-weight: bold;
}
.pg-product-lineup__content {
  margin-top: clamp(48px, 4.4444444444vw, 64px);
}

.pg-product-section {
  container-name: product-section;
  container-type: inline-size;
}
.pg-product-section + .pg-product-section {
  margin-top: clamp(48px, 4.4444444444vw, 64px);
  padding-top: clamp(48px, 4.4444444444vw, 64px);
  border-top: 1px solid var(--clr--border-gray-1);
}
.pg-product-section__title {
  font-size: clamp(28px, 2.6388888889vw, 38px);
  font-weight: bold;
}
.pg-product-section__content {
  display: grid;
  gap: 2.5rem;
  margin-top: clamp(24px, 2.2222222222vw, 32px);
}
@container product-section (max-width: 610px) {
  .pg-product-section__content {
    grid-template-columns: minmax(0, 1fr);
  }
}
@container product-section (min-width: 610px) {
  .pg-product-section__content {
    grid-template-columns: 480fr 760fr;
  }
}
.pg-product-section__mv {
  border-radius: 1rem;
  overflow: hidden;
  position: sticky;
  top: 1.5rem;
}
.pg-product-section__mv img {
  width: 100%;
}

.pg-product-card {
  padding: 2.5rem clamp(28px, 2.7777777778vw, 40px);
  border-radius: 1rem;
  background-color: #fff;
  container-name: product-card;
  container-type: inline-size;
}
.pg-product-card + .pg-product-card {
  margin-top: 1rem;
}
@container product-card (min-width: 540px) {
  .pg-product-card .c-category-switcher__items {
    margin-inline: unset;
  }
}
.pg-product-card__title {
  font-size: clamp(22px, 1.6666666667vw, 24px);
  font-weight: bold;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.pg-product-card__contents {
  display: grid;
  position: relative;
}
.pg-product-card__contents > * {
  grid-area: 1/-1;
}

.pg-product {
  display: grid;
  margin-top: 1.5rem;
  gap: 2rem;
  width: 100%;
}
@container product-card (min-width: 540px) {
  .pg-product {
    grid-template-columns: auto minmax(0, 1fr);
  }
}
.pg-product__img {
  border: 1px solid var(--clr--border-gray-2);
  padding: 1.5rem;
  border-radius: 0.5rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@container product-card (max-width: 540px) {
  .pg-product__img {
    margin: auto;
  }
}
.pg-product__label {
  font-size: 0.875rem;
}
.pg-product__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.75rem;
}
@container product-card (max-width: 540px) {
  .pg-product__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .pg-product__buttons a {
    width: 100%;
  }
}
.pg-product__buttons a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-inline: 2rem;
  padding-block: 0.125rem;
  border: 1px solid var(--clr--border-gray-3);
  border-radius: 1.375rem;
  height: 2.75rem;
  overflow: hidden;
  -webkit-transition: background 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  transition: background 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
@media (min-width: 993px) {
  .pg-product__buttons a:hover {
    background-color: var(--clr--bg-gray);
  }
}
.pg-product__link {
  margin-top: 1rem;
  font-size: 0.875rem;
}
@container product-card (max-width: 540px) {
  .pg-product__link {
    text-align: center;
  }
}
.pg-product__link a {
  text-decoration: underline;
}
.pg-product__link a:hover {
  text-decoration: none;
}

.pg-recipes > .c-link-button {
  margin-top: clamp(32px, 3.3333333333vw, 48px);
  margin-inline: auto;
}
.pg-recipes__title {
  font-size: clamp(32px, 2.7777777778vw, 40px);
  font-weight: bold;
  font-family: var(--ff-beaufort);
  margin-bottom: clamp(32px, 3.3333333333vw, 48px);
}
.pg-recipes__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(0, auto));
  grid-template-areas: "A A" "B C" "D E";
  gap: 1rem;
}
@media (min-width: 993px) {
  .pg-recipes__grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, auto));
    grid-template-areas: "A A A B B B" "C C D D E E";
    gap: 2rem 1.25rem;
  }
}
.pg-recipes__cell {
  position: relative;
  overflow: hidden;
  container-name: recipe-cell;
  container-type: inline-size;
}
.pg-recipes__cell:nth-child(1) {
  grid-area: A;
}
.pg-recipes__cell:nth-child(2) {
  grid-area: B;
}
.pg-recipes__cell:nth-child(3) {
  grid-area: C;
}
.pg-recipes__cell:nth-child(4) {
  grid-area: D;
}
.pg-recipes__cell:nth-child(5) {
  grid-area: E;
}

.pg-recipe {
  position: relative;
}
.pg-recipe__img {
  z-index: 1;
  overflow: hidden;
  position: relative;
  border-radius: 0.5rem;
}
.pg-recipe__img img {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  transition: -webkit-transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s, -webkit-transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  z-index: 1;
}
@media (max-width: 992px) {
  @container recipe-cell (min-width: 346px) {
    .pg-recipe__img {
      height: 100%;
    }
    .pg-recipe__img::before {
      content: "";
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.3)));
      background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.3) 100%);
      z-index: 2;
    }
  }
}
@media (min-width: 993px) {
  @container recipe-cell (min-width: 480px) {
    .pg-recipe__img {
      height: 100%;
    }
    .pg-recipe__img::before {
      content: "";
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.3)));
      background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.3) 100%);
      z-index: 2;
    }
  }
  .pg-recipe__img:hover img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}
.pg-recipe__info {
  position: relative;
  z-index: 5;
  display: grid;
  gap: 0.75rem;
}
@media (max-width: 992px) {
  @container recipe-cell (max-width: 346px) {
    .pg-recipe__info {
      padding-block: 0.5rem;
    }
    .pg-recipe__info .c-link-button {
      display: none;
    }
  }
  @container recipe-cell (min-width: 346px) {
    .pg-recipe__info {
      position: absolute;
      left: 0;
      bottom: 0;
      padding: clamp(20px, 1.6666666667vw, 24px);
    }
  }
}
@media (min-width: 993px) {
  @container recipe-cell (max-width: 480px) {
    .pg-recipe__info {
      padding-block: 0.5rem;
    }
    .pg-recipe__info .c-link-button {
      display: none;
    }
  }
  @container recipe-cell (min-width: 480px) {
    .pg-recipe__info {
      position: absolute;
      left: 0;
      bottom: 0;
      padding: clamp(20px, 1.6666666667vw, 24px);
    }
  }
}
.pg-recipe__title {
  font-size: clamp(16px, 1.25vw, 18px);
  font-weight: bold;
  line-height: 1.2;
}
@media (max-width: 992px) {
  @container recipe-cell (min-width: 346px) {
    .pg-recipe__title {
      color: #fff;
      font-size: clamp(22px, 1.6666666667vw, 24px);
    }
  }
}
@media (min-width: 993px) {
  @container recipe-cell (min-width: 480px) {
    .pg-recipe__title {
      color: #fff;
      font-size: clamp(22px, 1.6666666667vw, 24px);
    }
  }
}

.pg-history .c-image-banner {
  text-align: center;
  color: #fff;
}
.pg-history .c-image-banner__content {
  width: 64%;
  max-width: 36.625rem;
}
.pg-history .c-link-button {
  margin: clamp(32px, 3.3333333333vw, 48px) auto 0;
}