@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;
  }
}
@layer component {
  .c-circle-icon {
    position: relative;
    width: var(--circlr-icon-size, 1.125rem);
    height: var(--circlr-icon-size, 1.125rem);
    border-radius: 50%;
    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;
  }
  .c-circle-icon[data-variant*="clr:red"] {
    --svg-fill: #fff;
    background-color: var(--clr--theme-red);
  }
  .c-circle-icon .c-svg--bracket {
    width: 0.3125rem;
  }
}
@-webkit-keyframes up-to-down {
  0% {
    -webkit-transform: translateY(-10%);
            transform: translateY(-10%);
  }
  50% {
    -webkit-transform: translateY(10%);
            transform: translateY(10%);
  }
  100% {
    -webkit-transform: translateY(-10%);
            transform: translateY(-10%);
  }
}
@keyframes up-to-down {
  0% {
    -webkit-transform: translateY(-10%);
            transform: translateY(-10%);
  }
  50% {
    -webkit-transform: translateY(10%);
            transform: translateY(10%);
  }
  100% {
    -webkit-transform: translateY(-10%);
            transform: translateY(-10%);
  }
}
.pg-first-view {
  position: relative;
}

.pg-mv {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1;
}
.pg-mv__screen {
  --progress: clamp(0, calc(var(--enterProgress) * 2), 1);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: color-mix(in srgb, transparent, #b28328 calc(60% * var(--progress)));
  backdrop-filter: blur(calc(60px * var(--progress)));
  z-index: 10;
}
.pg-mv__img {
  width: 100%;
  height: 100%;
}
.pg-mv__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.pg-mv__content {
  position: absolute;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.pg-mv__content img {
  width: clamp(184px, 18.3333333333vw, 264px);
}
.pg-mv__scroll {
  position: absolute;
  bottom: 1.25rem;
  left: 0;
  right: 0;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.25rem;
  opacity: calc(1 - var(--enterProgress, 0) * 4);
  z-index: 10;
}
.pg-mv__scroll span {
  font-size: 0.875rem;
}
.pg-mv__scroll svg {
  width: 0.75rem;
  fill: var(--clr--theme-red);
  -webkit-animation: up-to-down 1s cubic-bezier(0.645, 0.045, 0.355, 1) 0s infinite;
          animation: up-to-down 1s cubic-bezier(0.645, 0.045, 0.355, 1) 0s infinite;
}

.pg-introduction {
  --content-min-margin: 40;
  position: relative;
  margin-top: calc(100vh - var(--header-height));
  z-index: 5;
  height: 100vh;
  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-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, 1120px);
  margin-left: auto;
  margin-right: auto;
  width: calc(100% - var(--minmax) * 2);
  display: grid;
}
@media (min-width: 993px) {
  .pg-introduction__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.pg-introduction__col {
  color: #fff;
}
@media (max-width: 992px) {
  .pg-introduction__col + .pg-introduction__col {
    margin-top: 4rem;
  }
}
.pg-introduction__subtitle {
  font-size: clamp(20px, 2.2222222222vw, 32px);
  font-weight: 500;
  font-family: var(--ff-beaufort);
  line-height: 1;
}
.pg-introduction__title {
  font-size: clamp(34px, 4.1666666667vw, 60px);
  font-weight: 500;
  font-family: var(--ff-beaufort);
  line-height: 1;
}
.pg-introduction__lead {
  font-size: clamp(14px, 1.1111111111vw, 16px);
  line-height: 1.7;
  margin-top: clamp(48px, 4.4444444444vw, 64px);
}

.pg-contents {
  position: relative;
  z-index: 10;
}

.c-round-section:has(.pg-philosophy) {
  background: transparent url("../img/about-philosophy-bg@2x.jpg") center center repeat;
  background-size: 1440px 960px;
}
.c-round-section:has(.pg-histories) {
  position: relative;
  overflow: hidden;
}

.pg-section-title {
  font-size: clamp(20px, 2.2222222222vw, 32px);
  font-family: var(--ff-beaufort);
  color: var(--section-title-clr);
  font-weight: 500;
  letter-spacing: 0.02em;
  text-align: center;
}
.pg-section-title[data-variant*="clr:gold"] {
  --section-title-clr: var(--clr--theme-gold);
}
.pg-section-title[data-variant*="clr:white"] {
  --section-title-clr: #fff;
}

.pg-philosophy {
  --content-min-margin: 40;
  position: relative;
  margin-inline: auto;
  min-height: 50vh;
  display: grid;
  grid-template-rows: auto 1fr;
  padding-top: 3rem;
  margin-top: -2rem;
}
.pg-philosophy__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent url("../img/about-philosophy-bg@2x.jpg") center center repeat;
  background-size: 1440px 960px;
  border-radius: 2rem 2rem 0 0;
}
.pg-philosophy__inner {
  position: relative;
  --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, 1120px);
  margin-left: auto;
  margin-right: auto;
  width: calc(100% - var(--minmax) * 2);
  z-index: 5;
}
.pg-philosophy__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
}
.pg-philosophy__grid {
  width: 100%;
  display: grid;
  gap: 3rem 0;
  margin-block: clamp(128px, 22.2222222222vw, 320px);
}
@media (min-width: 993px) {
  .pg-philosophy__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    grid-template-areas: "A B" "C D";
  }
}
@media (min-width: 993px) {
  .pg-philosophy__col:has(.pg-philosophy__logo) {
    grid-area: A;
  }
  .pg-philosophy__col:has(.pg-philosophy__text) {
    grid-area: D;
  }
}
.pg-philosophy__logo {
  overflow: hidden;
  width: clamp(240px, 27.7777777778vw, 400px);
}
.pg-philosophy__logo img {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  transition: -webkit-transform 1s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1) 0s, -webkit-transform 1s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.pg-philosophy__logo:not(.is-animated) img {
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}

.pg-histories {
  position: relative;
  padding-top: 3rem;
  margin-top: -2rem;
  padding-bottom: clamp(80px, 8.8888888889vw, 128px);
  z-index: 5;
}
.pg-histories + * {
  margin-top: -2rem;
}
.pg-histories + *::before {
  content: "";
  display: block;
  height: 2rem;
}
.pg-histories.is-entered .pg-histories__slider {
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 0;
}
.pg-histories.is-leaving .pg-histories__slider, .pg-histories.is-leaved .pg-histories__slider {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  border-radius: 0;
}
.pg-histories__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent url("../img/about-philosophy-bg@2x.jpg") center center repeat;
  background-size: 1440px 960px;
  border-radius: 2rem 2rem 0 0;
  overflow: hidden;
}
@media (min-width: 993px) {
  .pg-histories__bg {
    border-radius: 2rem;
  }
}
.pg-histories__slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1;
  border-radius: 0 0 2rem 2rem;
  -webkit-transition-property: border-radius;
  transition-property: border-radius;
  -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;
}
@media (min-width: 993px) {
  .pg-histories__slider {
    border-radius: 2rem;
  }
}
.pg-histories__slider .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.pg-histories__inner {
  --content-base-margin: 32;
  --content-min-margin: 40;
  position: relative;
  --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: 5;
}
.pg-histories__content {
  margin-top: clamp(80px, 12.9166666667vw, 186px);
  position: relative;
}
@media (min-width: 993px) {
  .pg-histories__content {
    display: grid;
  }
  .pg-histories__content > * {
    grid-area: 1/-1;
    width: 100%;
    height: 100%;
  }
}
.pg-histories__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 500;
  font-size: 2rem;
  color: #fff;
  font-family: var(--ff-beaufort);
  line-height: 1;
  z-index: 1;
}
.pg-histories__title span {
  position: sticky;
  top: 3rem;
}
@media (max-width: 992px) {
  .pg-histories__title {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
}
@media (min-width: 993px) {
  .pg-histories__title {
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }
}
.pg-histories__grid {
  position: relative;
  display: grid;
  gap: 2rem;
  z-index: 2;
}
.pg-histories__grid .pg-history-card:nth-child(even) {
  justify-self: end;
}
@media (max-width: 992px) {
  .pg-histories__grid {
    margin-top: 5rem;
  }
}

.pg-history-card {
  border-radius: 1rem;
  padding: 0.75rem 1rem 3rem;
  background-color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 27.75rem;
}
.pg-history-card__img {
  border-radius: 0.5rem;
  overflow: hidden;
}
.pg-history-card__info {
  padding-inline: 1.25rem;
  margin-top: clamp(32px, 3.3333333333vw, 48px);
}
.pg-history-card__year {
  font-size: clamp(48px, 4.4444444444vw, 64px);
  font-family: var(--ff-garamond);
  letter-spacing: 0.02em;
}
.pg-history-card__text {
  font-size: clamp(14px, 1.1111111111vw, 16px);
}
.pg-history-card .c-link-button {
  margin-top: 2rem;
}

.pg-external-links__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-external-links__items {
  display: grid;
  gap: 0.5rem;
  grid-template-columns: repeat(auto-fill, minmax(480px, 1fr));
}
@media (max-width: 576px) {
  .pg-external-links__items {
    grid-template-columns: minmax(0, 1fr);
  }
}
@media (min-width: 993px) {
  .pg-external-links__items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.pg-external-links__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  gap: clamp(24px, 2.2222222222vw, 32px);
  background-color: var(--clr--bg-gray);
  padding: clamp(20px, 2.2222222222vw, 32px);
  border-radius: 0.5rem;
  -webkit-transition: background-color 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  transition: background-color 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.pg-external-links__item img {
  width: clamp(80px, 8.3333333333vw, 120px);
  border-radius: 0.25rem;
}
.pg-external-links__item a {
  line-height: 1.2;
  font-size: clamp(14px, 1.1111111111vw, 16px);
  font-weight: bold;
}
.pg-external-links__item a::after {
  content: "";
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
@media (min-width: 993px) {
  .pg-external-links__item:has(a[href]):hover {
    background-color: var(--clr--border-gray-2);
  }
}
.pg-external-links__text {
  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.5rem;
}/*# sourceMappingURL=index.css.map */