@charset "UTF-8";
@layer component {
  .c-content-switcher {
    position: relative;
    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;
    border-radius: 50px;
    background-color: var(--clr--border-gray-2);
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
    padding: 0.25rem;
  }
  .c-content-switcher:not(:last-child) {
    margin-bottom: 3rem;
  }
  .c-content-switcher::before {
    content: "";
    background-color: var(--clr--theme-gold);
    width: var(--content-switcher-width, 50%);
    left: var(--content-switcher-left, 0.25rem);
    height: 3rem;
    border-radius: 3rem;
    position: absolute;
    top: 0.25rem;
    z-index: 1;
    -webkit-transition-property: width, left;
    transition-property: width, left;
    -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-content-switcher button {
    position: relative;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: 3rem;
    padding-inline: 1.75rem;
    border-radius: 3rem;
    border: none;
    outline: none;
    background: transparent;
    font-weight: bold;
    font-size: 1rem;
    z-index: 2;
    -webkit-transition-property: color;
    transition-property: 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;
  }
  .c-content-switcher button.is-active {
    color: #fff;
  }
}
@layer component {
  .c-section {
    padding-block: clamp(64px, 6.6666666667vw, 96px);
  }
  .c-section[data-variant*="bg:gray"] {
    background-color: var(--clr--bg-gray);
  }
}
@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-store-selector {
    position: relative;
    overflow: visible;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
  }
  .c-store-selector:not(.is-active) button::after {
    -webkit-transform: translateY(25%) rotate(-45deg);
            transform: translateY(25%) rotate(-45deg);
  }
  .c-store-selector:not(.is-active) .c-store-selector__items {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  .c-store-selector__items {
    padding-block: 0.75rem;
    border-radius: 0.625rem;
    border: 1px solid var(--clr--border-gray-1);
    margin-top: 0.5rem;
    position: absolute;
    bottom: calc(100% + 8px);
    background: rgba(255, 255, 255, 0.95);
    width: 100%;
    -webkit-transition-property: opacity, visibility, -webkit-transform;
    transition-property: opacity, visibility, -webkit-transform;
    transition-property: opacity, visibility, transform;
    transition-property: opacity, visibility, transform, -webkit-transform;
    -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-store-selector__item {
    height: 3rem;
    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;
  }
}
@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__slider img {
  width: 100%;
}
.pg-mv__slider .swiper-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #fff;
  padding: 0.75rem 1rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 2.5rem;
}
.pg-mv__slider .swiper-pagination-bullet {
  -webkit-transition-property: width, background-color;
  transition-property: width, background-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;
  border-radius: 1rem;
}
.pg-mv__slider .swiper-pagination-bullet-active {
  width: 20px;
  background-color: #000;
}
.pg-mv__slider .swiper-pagination {
  margin-left: auto;
  right: 1.25rem;
  bottom: 1.25rem;
}
.pg-mv__content {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: clamp(24px, 2.7777777778vw, 40px) clamp(20px, 2.7777777778vw, 40px);
}
.pg-mv__title {
  font-size: clamp(32px, 2.7777777778vw, 40px);
  font-family: var(--ff-beaufort);
  font-weight: bold;
  color: #fff;
  text-shadow: 0px 0px 15px color-mix(in srgb, #000 60%, transparent);
}

.pg-products {
  max-width: 100vw;
  width: 100%;
  background-color: #fff;
}
.pg-products__slider {
  padding-inline: max(var(--content-min-margin, 24) * 1px, var(--content-base-margin, 40) / var(--content-base-width, 1440) * 100vw);
}
.pg-products__slider .swiper-slide {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
}
.pg-products__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-products__slider .swiper-controls__left, .pg-products__slider .swiper-controls__center, .pg-products__slider .swiper-controls__right {
  position: relative;
}
.pg-products__slider .swiper-controls__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
}
@media (max-width: 992px) {
  .pg-products__slider .swiper-controls .swiper-controls__left {
    display: none;
  }
}
@media (min-width: 993px) {
  .pg-products__slider .swiper-controls {
    grid-template-columns: minmax(120px, auto) minmax(0, 1fr) minmax(120px, auto);
  }
}
.pg-products__slider .swiper-scrollbar {
  --swiper-scrollbar-drag-bg-color: #000;
  --swiper-scrollbar-size: 0.5rem;
  position: relative;
  bottom: unset;
  width: 100%;
  max-width: 400px;
  margin-inline: auto;
}
.pg-products__slider .swiper-button {
  position: relative;
  width: clamp(36px, 3.0555555556vw, 44px);
  height: clamp(36px, 3.0555555556vw, 44px);
  border-radius: 50%;
  background-color: var(--clr--border-gray-2);
  inset: unset;
  margin: unset;
}
.pg-products__slider .swiper-button svg {
  display: none;
}
.pg-products__slider .swiper-button::before {
  content: "";
  --size: 10px;
  --bdw: 2px;
  --clr: #000;
  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;
}
.pg-products__slider .swiper-button-prev::before {
  -webkit-transform: translateX(25%) rotate(-135deg);
          transform: translateX(25%) rotate(-135deg);
}
.pg-products__slider .swiper-button-next::before {
  -webkit-transform: translateX(-25%) rotate(45deg);
          transform: translateX(-25%) rotate(45deg);
}

.pg-product {
  display: grid;
  grid-template-rows: auto 1fr auto;
  height: 100%;
}
.pg-product__img {
  text-align: center;
}
.pg-product__content {
  margin-top: 0.75rem;
}
.pg-product__title {
  text-align: center;
  font-weight: bold;
  font-size: 1rem;
  line-height: 1.5;
}
.pg-product__subtitle {
  text-align: center;
  font-weight: bold;
  color: var(--clr--theme-gray-1);
  font-size: 0.75rem;
  margin-top: 0.25rem;
}

.pg-recipes {
  padding-inline: max(var(--content-min-margin, 24) * 1px, var(--content-base-margin, 40) / var(--content-base-width, 1440) * 100vw);
  background-color: #fff;
  width: 100vw;
}
.pg-recipes > .c-link-button {
  margin-top: clamp(32px, 3.3333333333vw, 48px);
  margin-inline: auto;
}
.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-areas: "A A B C" "A A D E";
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, auto));
  }
}
.pg-recipes__cell {
  position: relative;
  border-radius: 0.5rem;
  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;
  height: 100%;
}
.pg-recipe[href]::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
@media (min-width: 993px) {
  .pg-recipe[href]:hover .pg-recipe__img img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  .pg-recipe[href]:hover .c-link-button {
    --link-button-bgc: var(--clr--bg-gray);
  }
}
.pg-recipe__img {
  height: 100%;
  z-index: 1;
  overflow: hidden;
}
.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 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;
}
.pg-recipe__info {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 5;
  padding: clamp(12px, 1.1111111111vw, 16px);
  display: grid;
  gap: 0.75rem;
}
@container recipe-cell (min-width: 350px) {
  .pg-recipe__info {
    padding: clamp(20px, 1.6666666667vw, 24px);
  }
}
.pg-recipe__title {
  font-size: clamp(16px, 1.25vw, 18px);
  color: #fff;
  font-weight: bold;
  line-height: 1.2;
}
@container recipe-cell (min-width: 350px) {
  .pg-recipe__title {
    font-size: clamp(22px, 1.6666666667vw, 24px);
  }
}

.pg-major-products {
  background-color: var(--clr--bg-gray);
  padding-block: clamp(48px, 6.6666666667vw, 96px);
  padding-inline: clamp(20px, 2.2222222222vw, 32px);
}
.pg-major-products__header {
  text-align: center;
}
.pg-major-products__header img {
  width: clamp(310px, 36.8055555556vw, 530px);
}
.pg-major-products__header p {
  font-size: clamp(14px, 1.1111111111vw, 16px);
  margin-top: 1rem;
}
.pg-major-products__content {
  margin-top: clamp(32px, 4.4444444444vw, 64px);
}

.pg-major-product {
  position: relative;
  padding: 1.25rem;
  display: grid;
  gap: 1.25rem;
  border-radius: 1.5rem;
  overflow: hidden;
}
@media (max-width: 992px) {
  .pg-major-product {
    grid-template-areas: "MV" "CONTENT";
    grid-template-rows: auto auto;
  }
}
@media (min-width: 993px) {
  .pg-major-product {
    grid-template-columns: 536fr 780fr;
    grid-template-areas: "CONTENT MV";
  }
}
.pg-major-product + .pg-major-product {
  margin-top: 2rem;
}
.pg-major-product::before {
  content: "";
  display: block;
  position: absolute;
  background: transparent url("../common/img/bg-noise.jpg") center center repeat;
  background-size: 160px 160px;
  mix-blend-mode: multiply;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
.pg-major-product[data-variant=curry] {
  background-color: var(--clr--theme-gold);
}
.pg-major-product[data-variant=wasabi] {
  background-color: #87859e;
}
.pg-major-product.is-coming-soon {
  -webkit-filter: saturate(0.6);
          filter: saturate(0.6);
}
.pg-major-product.is-coming-soon::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1000;
  mix-blend-mode: unset;
}
.pg-major-product.is-coming-soon::after {
  content: "※ 公開時は非表示";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 0.5em 1em;
  z-index: 2000;
  border-radius: 4px;
}
.pg-major-product__mv {
  position: relative;
  border-radius: 1rem;
  height: 100%;
  overflow: hidden;
  grid-area: MV;
  z-index: 2;
}
.pg-major-product__mv img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.pg-major-product__content {
  position: relative;
  grid-area: CONTENT;
  display: grid;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  color: #fff;
  z-index: 2;
}
@media (max-width: 992px) {
  .pg-major-product__content {
    grid-template-areas: "INFO" "HEADER";
    gap: 2rem;
    padding: 0 0.75rem 0.75rem;
  }
}
@media (min-width: 993px) {
  .pg-major-product__content {
    grid-template-rows: repeat(2, 1fr);
    grid-template-areas: "HEADER" "INFO";
    margin-left: 2.5rem;
  }
}
.pg-major-product__header {
  grid-area: HEADER;
}
.pg-major-product__header .c-link-button {
  margin-top: 1.25rem;
}
.pg-major-product__category {
  font-size: clamp(16px, 1.25vw, 18px);
  font-weight: bold;
}
.pg-major-product__title {
  font-family: var(--ff-beaufort);
  font-weight: bold;
  font-size: clamp(32px, 4.1666666667vw, 60px);
}
.pg-major-product__info {
  display: grid;
  grid-area: INFO;
  gap: 1.5rem;
}
@media (max-width: 992px) {
  .pg-major-product__info {
    grid-template-columns: 174fr 120fr;
  }
}
@media (min-width: 993px) {
  .pg-major-product__info {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
    grid-template-columns: 268fr 228fr;
    padding-bottom: 2rem;
  }
}
.pg-major-product__lead {
  font-size: clamp(14px, 1.25vw, 18px);
  line-height: 1.5;
}
.pg-major-product__img {
  position: relative;
  width: 100%;
  max-width: 200px;
  justify-self: end;
}
.pg-major-product__img img {
  width: 100%;
  -webkit-filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.25));
          filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.25));
}
@media (max-width: 992px) {
  .pg-major-product__img img {
    position: absolute;
    bottom: 0;
  }
}
@media (min-width: 993px) {
  .pg-major-product__img img {
    -webkit-transform: translateX(56px);
            transform: translateX(56px);
  }
}

.pg-available {
  padding-block: clamp(64px, 6.6666666667vw, 96px);
}
.pg-available__title {
  text-align: center;
  font-size: clamp(22px, 1.6666666667vw, 24px);
  font-weight: bold;
}
.pg-available__content {
  margin-top: clamp(32px, 3.3333333333vw, 48px);
  --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-available__items {
  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-wrap: wrap;
      flex-wrap: wrap;
  gap: clamp(12px, 1.6666666667vw, 24px) clamp(40px, 5.5555555556vw, 80px);
}
.pg-available__item {
  height: clamp(64px, 5.5555555556vw, 80px);
}
.pg-available__item img {
  width: auto;
  height: 100%;
}

.pg-instagram-feeds {
  padding: 4rem clamp(24px, 4.4444444444vw, 64px);
  background-color: var(--clr--bg-beige);
}
@media (min-width: 993px) {
  .pg-instagram-feeds {
    border-radius: 1.5rem;
    --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-instagram-feeds__title {
  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;
  gap: 0.875rem;
  font-size: clamp(24px, 2.2222222222vw, 32px);
  font-family: var(--ff-beaufort);
  font-weight: bold;
  color: var(--clr--theme-gold);
}
.pg-instagram-feeds__title svg {
  width: 1.75rem;
  height: 1.75rem;
  fill: var(--clr--theme-gold);
}
.pg-instagram-feeds__content {
  margin-top: clamp(32px, 3.3333333333vw, 48px);
}
.pg-instagram-feeds__content .c-link-button {
  margin-top: clamp(32px, 2.7777777778vw, 40px);
  margin-inline: auto;
}
.pg-instagram-feeds__items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}
@media (min-width: 993px) {
  .pg-instagram-feeds__items {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.pg-instagram-feeds__item {
  border-radius: 0.5rem;
  overflow: hidden;
}
.pg-instagram-feeds__item img {
  width: 100%;
}

.pg-about-us .c-image-banner {
  margin-top: clamp(64px, 6.6666666667vw, 96px);
}
.pg-about-us .c-link-button {
  margin-top: clamp(32px, 2.7777777778vw, 40px);
  margin-inline: auto;
}