@charset "UTF-8";
.element {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

html {
  font-size: 100%;
}
@media (max-width: 1200px) {
  html {
    font-size: 1.3333333333vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 100%;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

body {
  font-family: "Zen Old Mincho", serif;
  color: #282B2B;
  background-color: #F5F3ED;
}

a,
button {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
a:hover,
button:hover {
  cursor: pointer;
}

/*****************************
* A Modern CSS Reset (https://github.com/hankchizljaw/modern-css-reset)
* 上記に、ul要素,ol要素,a要素への記述追加
*****************************/
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
li {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

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

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

button {
  border: none;
  padding: 0;
  background-color: initial;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.l-inner {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  max-width: 1200px;
  padding-right: 2.5rem;
  padding-left: 2.5rem;
}
@media screen and (max-width: 767px) {
  .l-inner {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
}

.l-wide__inner {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  max-width: 1280px;
  padding-right: 2.5rem;
  padding-left: 2.5rem;
}
@media screen and (max-width: 767px) {
  .l-wide__inner {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
}

/* ========================================= */
/* コンタクトボタンなど
/* ========================================= */
.c-button__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 2.25rem;
  padding-top: 5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .c-button__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
    padding-top: 4rem;
  }
}

.c-button__wrap--drawer {
  padding-top: 1.5rem;
}

.c-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1rem 2rem;
  width: 21.5rem;
  height: 4.25rem;
  text-align: center;
  background: #F8B500;
  -webkit-box-shadow: 0 4px 4px 0 rgba(51, 51, 51, 0.25);
          box-shadow: 0 4px 4px 0 rgba(51, 51, 51, 0.25);
  text-decoration: none;
  border: none;
}
@media screen and (max-width: 767px) {
  .c-btn {
    width: 16.75rem;
    height: 3.875rem;
    padding: 1rem 1.5rem;
  }
}
.c-btn:hover {
  -webkit-box-shadow: 0 2px 2px 0 rgba(40, 43, 43, 0.25);
          box-shadow: 0 2px 2px 0 rgba(40, 43, 43, 0.25);
  background-color: #868374;
  color: #FDFDFD;
}
.c-btn:hover .c-btn__text::before {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.c-btn--primary {
  background-color: #F8B500;
}
.c-btn--primary .c-btn__text::before {
  background-image: url(../images/btn-icon01.svg);
}

.c-btn--secondary {
  background-color: #F5F3ED;
}
.c-btn--secondary .c-btn__text::before {
  background-image: url(../images/btn-icon02.svg);
}

.c-btn--secondary-white {
  background-color: #FDFDFD;
}

.c-btn__text {
  font-family: "Zen Kaku Gothic New", serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.5;
  position: relative;
  padding-left: 2.125rem;
}
@media screen and (max-width: 767px) {
  .c-btn__text {
    font-size: 1.125rem;
    line-height: 1.6;
    letter-spacing: 0.18px;
  }
}
.c-btn__text::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.5rem;
  height: 1.125rem;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-transition: -webkit-filter 0.3s ease;
  transition: -webkit-filter 0.3s ease;
  transition: filter 0.3s ease;
  transition: filter 0.3s ease, -webkit-filter 0.3s ease;
}

/* ========================================= */
/* view more
/* ========================================= */
.c-btn-view-more {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 2.125rem;
  padding-top: 0;
  padding-right: 3.5rem;
  padding-bottom: 8px;
  padding-left: 1.25rem;
  position: relative;
}
.c-btn-view-more::before {
  content: "";
  position: absolute;
  bottom: -8px;
  right: 0;
  width: 10.625rem;
  height: 1px;
  background-color: #F8B500;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: right;
          transform-origin: right;
  -webkit-transition: -webkit-transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: -webkit-transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.c-btn-view-more::after {
  content: "";
  position: absolute;
  bottom: -8px;
  right: 0;
  width: 10.625rem;
  height: 1px;
  background-color: #F8B500;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.35s;
  transition: -webkit-transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.35s;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.35s;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.35s, -webkit-transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.35s;
}
.c-btn-view-more:hover::before {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}
.c-btn-view-more:hover::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.c-btn-view-more:hover .c-btn-view-more__text {
  opacity: 0.5;
}

.c-btn-view-more__text {
  display: inline-block;
  font-family: "Zen Kaku Gothic New", serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 1.6;
  position: relative;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
.c-btn-view-more__text:before {
  content: "";
  position: absolute;
  top: 50%;
  right: -2.375rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.5rem;
  height: 1.125rem;
  background-image: url(../images/btn-arrow-right.svg);
  background-position: right center;
  background-size: auto;
  background-repeat: no-repeat;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.c-btn-view-more:hover .c-btn-view-more__text::before {
  width: 6.25rem;
  height: 1.125rem;
  right: -3.125rem;
}

/* ========================================= */
/* category button
/* ========================================= */
.c-btn-category__wrap {
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  padding-top: 1.25rem;
  display: grid;
  padding-inline: 1.25rem;
}
@media screen and (max-width: 767px) {
  .c-btn-category__wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem 1.125rem;
  }
}
@media screen and (max-width: 600px) {
  .c-btn-category__wrap {
    grid-template-columns: 1fr;
  }
}

.c-btn--category {
  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;
  text-align: center;
  text-decoration: none;
  border: transparent;
  background-color: #FDFDFD;
  -webkit-box-shadow: 0 4px 4px 0 rgba(40, 43, 43, 0.25);
          box-shadow: 0 4px 4px 0 rgba(40, 43, 43, 0.25);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding: 0.625rem;
  height: 4rem;
  width: auto;
  font-family: "Zen Kaku Gothic New", serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.2px;
  color: inherit;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767px) {
  .c-btn--category {
    height: 3.0625rem;
    font-size: 1rem;
    letter-spacing: 0.16px;
  }
}
.c-btn--category:hover {
  -webkit-box-shadow: 0 2px 2px 0 rgba(40, 43, 43, 0.25);
          box-shadow: 0 2px 2px 0 rgba(40, 43, 43, 0.25);
  background-color: #868374;
  color: #FDFDFD;
}

.c-btn--category.is-active {
  border: 1px solid #868374;
  background: #868374;
  -webkit-box-shadow: 0 2px 2px 0 rgba(40, 43, 43, 0.25);
          box-shadow: 0 2px 2px 0 rgba(40, 43, 43, 0.25);
  color: #FDFDFD;
  text-align: center;
  font-family: "Zen Kaku Gothic New", serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6; /* 28.8px */
  letter-spacing: 0.01em;
}

.c-btn-category__wrap--col3 {
  grid-template-columns: repeat(3, 1fr);
  gap: 5rem;
}
@media screen and (max-width: 767px) {
  .c-btn-category__wrap--col3 {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.c-breadcrumb-inner {
  padding-inline: 2.5rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .c-breadcrumb-inner {
    padding-inline: 1.25rem;
  }
}

.c-breadcrumb {
  padding-block: 0.625rem;
  font-family: "Zen Kaku Gothic New", serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .c-breadcrumb {
    font-size: 0.875rem;
    letter-spacing: 0.14px;
    gap: 0.625rem;
  }
}

.c-breadcrumb__item {
  color: #282B2B;
  text-decoration: none;
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.c-breadcrumb__item:not(.is-current):hover {
  opacity: 0.7;
  text-decoration: none;
}
.c-breadcrumb__item.is-current {
  opacity: 1;
  pointer-events: none;
  cursor: default;
}

.c-breadcrumb__separator {
  padding-inline: 0;
  opacity: 1;
}

/* ========================================= */
/* カード構造 カテゴリー、other works
/* ========================================= */
.c-card__wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5rem;
  padding-top: 4rem;
  padding-inline: 0;
}
@media screen and (max-width: 767px) {
  .c-card__wrapper {
    padding-top: 2.5rem;
    grid-template-columns: 1fr;
    gap: 5rem;
  }
}

/* カードタイトル カテゴリー、other works
/* ========================================= */
.c-card__link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.c-card {
  width: 100%;
  max-width: 20rem;
  margin: 0 auto;
  background-color: #F5F3ED;
}
@media screen and (max-width: 767px) {
  .c-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 20rem;
    -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;
    gap: 5rem;
  }
}

.c-card__head {
  text-align: left;
  background-color: #F5F3ED;
}

.c-card__title {
  font-family: "Zen Old Mincho", serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.72px;
}
@media screen and (max-width: 767px) {
  .c-card__title {
    font-size: 1rem;
    letter-spacing: 0.64px;
  }
}

.c-card__visual {
  width: 100%;
  overflow: hidden;
  background-color: #F5F3ED;
  padding-top: 0.6875rem;
}

.c-card__image {
  display: block;
  height: 25rem;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  aspect-ratio: 4/5;
  -webkit-transition: -webkit-transform 0.5s ease-out;
  transition: -webkit-transform 0.5s ease-out;
  transition: transform 0.5s ease-out;
  transition: transform 0.5s ease-out, -webkit-transform 0.5s ease-out;
}

.c-card__link:hover .c-car__image {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.c-card__footer {
  padding-top: 0.6875rem;
  position: relative;
}

.c-card__description {
  font-size: 14px;
  color: #868374;
  font-family: "Zen Kaku Gothic New", serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.14px;
  -webkit-text-decoration: underline #868374 solid 1px;
          text-decoration: underline #868374 solid 1px;
}

.c-card__credit {
  margin-top: 1rem;
}

.c-card__credit-location,
.c-card__credit-title {
  color: #282B2B;
  font-family: "Zen Kaku Gothic New", serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.14px;
  position: relative;
}

.c-card__credit-title {
  padding-left: 2.25rem;
}
.c-card__credit-title:before {
  content: "";
  position: absolute;
  top: 40%;
  left: 0;
  width: 2.0625rem;
  height: 1.375rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(../images/category-log.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.c-card__credit-location {
  margin: 0;
  color: #282B2B;
  font-family: "Zen Kaku Gothic New", serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.14px;
}

.c-card__illustration {
  position: absolute;
  right: 0;
  bottom: 0;
}

.c-card__illustration-img {
  width: 8rem;
  height: auto;
  display: block;
}

.js-card-slider {
  width: 100%;
  overflow: hidden;
  padding: 40px 0;
}

.c-card__slider-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5rem;
  padding-top: 3rem;
  max-width: 70rem;
  margin: 0 auto;
  -webkit-transition: -webkit-transform 0.5s ease-out;
  transition: -webkit-transform 0.5s ease-out;
  transition: transform 0.5s ease-out;
  transition: transform 0.5s ease-out, -webkit-transform 0.5s ease-out;
}

/* ========================================= */
/* メンバー紹介 カード
/* ========================================= */
/* ========================================= */
/* 下層ページタイトル ABOUT, WORKS
/* ========================================= */
.c-page-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 7.5rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  padding-top: 2.5rem;
  padding-left: 7.5rem;
}
@media screen and (max-width: 767px) {
  .c-page-title {
    padding-top: 3.75rem;
    padding-left: 1.25rem;
  }
}

.c-page-title--en {
  color: #FDFDFD;
  font-family: "Montserrat Underline", serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 0.7;
  letter-spacing: -5.76px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-page-title--en {
    font-size: 3rem;
    letter-spacing: -4.32px;
  }
}

.c-page-title--ja {
  color: #FDFDFD;
  font-family: "Zen Kaku Gothic New", serif;
  font-size: 1.25rem;
  line-height: 1.6;
  letter-spacing: 0.2px;
}

/* ========================================= */
/* single-pageタイトル Epi01.
/* ========================================= */
.c-pagination {
  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: 2rem;
}
@media screen and (max-width: 767px) {
  .c-pagination {
    gap: 2rem;
  }
}

.c-pagination__numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .c-pagination__numbers {
    gap: 2rem;
  }
}

.c-pagination__arrow {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 0.0625rem solid #868374;
  background-color: transparent;
  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;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
}
.c-pagination__arrow::before {
  content: "";
  display: block;
  width: 1.0625rem;
  height: 0.75rem;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .c-pagination__arrow {
    width: 2.5rem;
    height: 2.5rem;
  }
}

.c-pagination__arrow--prev::before {
  background-image: url(../images/btn-circle-left-main.svg);
}
.c-pagination__arrow--prev:hover {
  background-color: #868374;
}
.c-pagination__arrow--prev:hover::before {
  background-image: url(../images/btn-circle-left-white.svg);
}

.c-pagination__arrow--next::before {
  background-image: url(../images/btn-circle-right-main.svg);
}
.c-pagination__arrow--next:hover {
  background-color: #868374;
}
.c-pagination__arrow--next:hover::before {
  background-image: url(../images/btn-circle-right-white.svg);
}

.c-pagination__number {
  width: 2.5rem;
  height: 3.25rem;
  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;
  font-family: "Zen Kaku Gothic New", serif;
  font-size: 1.25rem;
  line-height: 1.6;
  letter-spacing: 0.01em;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding: 0.625rem;
  border: 0.0625rem solid #868374;
  background-color: transparent;
  color: #868374;
}
.c-pagination__number:hover {
  background-color: #868374;
  color: #FDFDFD;
}
@media screen and (max-width: 767px) {
  .c-pagination__number {
    width: 2.375rem;
    height: 3.0625rem;
    font-size: 1.125rem;
    line-height: 1.6;
    letter-spacing: 0.01em;
  }
}

.c-pagination__number--current {
  background-color: #868374;
  color: #FDFDFD;
  pointer-events: none;
}
.c-pagination__number--current:hover {
  background-color: #868374;
  color: #FDFDFD;
}

.is-hidden {
  visibility: hidden;
  pointer-events: none;
}

/* ========================================= */
/* セクションタイトル（構造のみ・サイズはp-層で制御）
/* ========================================= */
.c-section-title {
  position: relative;
  z-index: 0;
  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-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  overflow: visible;
}
.c-section-title::before {
  content: attr(data-en);
  position: absolute;
  top: -5rem;
  left: calc(-1 * max((100vw - 1120px) / 2, 2.5rem));
  width: 100%;
  height: 100%;
  z-index: -1;
  color: #F5F3ED;
  font-family: "Montserrat Subrayada";
  font-size: 10rem;
  font-weight: 400;
  line-height: 0.7;
  letter-spacing: -0.09em;
  white-space: nowrap;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .c-section-title::before {
    font-size: 4rem;
    top: -1.5rem;
    left: calc(-1 * max((100vw - 1120px) / 2, 1.25rem));
  }
}

.c-section-title__heading {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #282B2B;
  gap: 0.625rem;
  font-family: "Zen Kaku Gothic New", serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .c-section-title__heading {
    font-size: 1.125rem;
  }
}

.c-section-title--en {
  color: #FDFDFD;
  font-family: "Montserrat Underline", serif;
  font-size: 4rem;
  font-weight: 400;
  line-height: 0.7;
  letter-spacing: -5.76px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-section-title--en {
    font-size: 3rem;
    letter-spacing: -4.32px;
  }
}

.c-section-title--ja {
  color: #FDFDFD;
  font-family: "Zen Kaku Gothic New", serif;
  font-size: 1.25rem;
  line-height: 1.6;
  letter-spacing: 0.2px;
}

.c-section-title__icon {
  display: inline-block;
  background-color: #F8B500;
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 1rem;
  height: 1rem;
}
/* ========================================= */
/* 小セクションタイトル category検索など アンダーライン
/* ========================================= */
.c-section-title--underline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 100%;
  max-width: 70rem;
  padding-top: 5rem;
  position: relative;
  white-space: nowrap;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .c-section-title--underline {
    padding-top: 0rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.5rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.c-section-title--underline::before {
  content: "";
  bottom: 3px;
  left: 18.625rem;
  width: 100%;
  height: 3px;
  position: absolute;
  background-color: #868374;
}
@media screen and (max-width: 767px) {
  .c-section-title--underline::before {
    display: none;
  }
}

.c-section-title--underline__en {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  font-family: "Montserrat Subrayada";
  font-size: 4rem;
  font-weight: 400;
  line-height: 0.7;
  letter-spacing: -0.36rem;
  color: #868374;
  white-space: nowrap;
  padding-bottom: 0.1875rem;
}
@media screen and (max-width: 767px) {
  .c-section-title--underline__en {
    font-size: 2.5rem;
    letter-spacing: -0.225rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.c-section-title--underline__ja {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 1.25rem;
  padding-bottom: 0.1875rem;
  width: 100%;
  font-family: "Zen Kaku Gothic New", serif, sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.0125rem;
  color: #282B2B;
}
@media screen and (max-width: 767px) {
  .c-section-title--underline__ja {
    font-size: 1.125rem;
    letter-spacing: 0.18px;
    padding-left: 0;
    padding-bottom: 0;
  }
}

.c-section-title--underline-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.c-section-title--underline-reverse .c-section-title--underline__ja {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  text-align: right;
  padding-left: 0;
  padding-right: 0.625rem;
}

.c-text {
  color: #282B2B;
  font-family: "Zen Old Mincho", serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.72px;
}
@media screen and (max-width: 767px) {
  .c-text {
    font-size: 1rem;
    letter-spacing: 0.64px;
  }
}

/* ========================================= */
/* footer/nav text
/* ========================================= */
.c-text--nav-lead {
  color: #FDFDFD;
  font-family: "Zen Kaku Gothic New", serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.16px;
}

.c-text--nav-label {
  color: #FDFDFD;
  font-family: "Zen Kaku Gothic New", serif;
  font-size: 1.25rem;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: 0.2px;
  position: relative;
  padding-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .c-text--nav-label {
    font-size: 1.125rem;
    letter-spacing: 0.18px;
  }
}
.c-text--nav-label::before {
  content: "";
  position: absolute;
  bottom: 1rem;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  height: 1px;
  background-color: #FDFDFD;
}

.c-text--nav-main {
  color: #FDFDFD;
  text-align: center;
  font-family: "Zen Kaku Gothic New", serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.16px;
}

.c-text--nav-main--black {
  color: #282B2B;
}

.c-text--nav-sub {
  color: #FDFDFD;
  text-align: center;
  font-family: "Zen Kaku Gothic New", serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.6;
  letter-spacing: 0.14px;
}

.c-text--nav-sub--black {
  color: #282B2B;
}

.c-bg-image--left {
  width: 100%;
  height: 100%;
}
.c-bg-image--left::after {
  content: "";
  position: absolute;
  top: 0;
  left: -2.8125rem;
  width: 62.5rem;
  height: 62.5rem;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-image: url(../images/common-image01.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .c-bg-image--left::after {
    top: 0;
    left: -2.8125rem;
    width: 37.5rem;
    height: 37.5rem;
  }
}

.p-category {
  position: relative;
  width: 6.25rem;
}

.c-bg-image--right {
  width: 100%;
  height: 100%;
}
.c-bg-image--right::after {
  content: "";
  position: absolute;
  top: 0;
  left: 83.125rem;
  width: 62.5rem;
  height: 62.5rem;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-image: url(../images/common-image01.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .c-bg-image--right::after {
    top: 0;
    left: 28.125rem;
    width: 37.5rem;
    height: 37.5rem;
  }
}

.c-arrow-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-arrow-btn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background: transparent;
  padding: 0;
  width: 2.5rem;
  height: 2.5rem;
  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;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.c-arrow-btn svg {
  width: 100%;
  height: 100%;
  display: block;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.c-arrow-btn circle {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.c-arrow-btn path {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.c-arrow-btn:hover circle {
  fill: #F8B500;
  stroke: #F8B500;
}
.c-arrow-btn:hover path {
  fill: #FDFDFD;
  stroke: #FDFDFD;
}
.c-arrow-btn:active {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}
.c-arrow-btn:focus-visible {
  outline: 2px solid #F8B500;
  outline-offset: 2px;
  border-radius: 50%;
}
.c-arrow-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  pointer-events: none;
}

/* ========================================= */
/* Work Meta Component
/* ========================================= */
.c-work-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
}

.c-work-meta__comment {
  font-family: "Zen Kaku Gothic New", serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: #868374;
  border-bottom: 1px solid #868374;
  padding-bottom: 0.25rem;
  display: inline-block;
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.c-work-meta__info-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.25rem;
}

.c-work-meta__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.375rem;
}

.c-work-meta__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.c-work-meta__icon img {
  width: 2.0625rem;
  height: auto;
  display: block;
}

.c-work-meta__building {
  font-family: "Zen Kaku Gothic New", serif;
  font-size: 0.8125rem;
  font-weight: 400;
  color: #282B2B;
  line-height: 1.4;
}

.c-work-meta__area {
  font-family: "Zen Kaku Gothic New", serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: #282B2B;
  line-height: 1.6;
  letter-spacing: 0.01em;
}

/* ========================================= */
/* Work Card Component
/* ========================================= */
.c-work-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.c-work-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.c-work-card__link:hover .c-work-card__img img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.c-work-card__title {
  font-family: "Zen Old Mincho", serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
  color: #282B2B;
}
@media screen and (max-width: 767px) {
  .c-work-card__title {
    font-size: 1rem;
  }
}

.c-work-card__img {
  position: relative;
  width: 100%;
  aspect-ratio: 320/400;
  overflow: hidden;
  margin-top: 0.75rem;
}
.c-work-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.c-work-card__body {
  margin-top: 1rem;
}

.c-work-card__body-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 0.5rem;
}

.c-work-card__meta {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.c-work-card__overlay {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 6.25rem;
          flex: 0 0 6.25rem;
  margin-top: -2.5rem;
  position: relative;
}
.c-work-card__overlay img {
  width: 100%;
  height: auto;
  display: block;
}

.c-banner {
  padding-top: 5rem;
  padding-bottom: 7.5rem;
  text-align: center;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .c-banner {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
}
.c-banner img {
  width: 100%;
  height: auto;
  max-width: 70rem;
}
.c-banner::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5rem;
  background: -webkit-gradient(linear, left bottom, left top, from(#F5F3ED), to(rgba(245, 243, 237, 0)));
  background: linear-gradient(to top, #F5F3ED, rgba(245, 243, 237, 0));
  z-index: 2;
  pointer-events: none;
}

.c-banner__link {
  display: block;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  overflow: hidden;
}
.c-banner__link img {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.c-banner__link:hover {
  opacity: 0.7;
}
.c-banner__link:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

/* ========================================= */
/* Archive Work MV Section
/* ========================================= */
.p-archive-work__mv {
  position: relative;
  width: 100%;
  height: 25rem;
  background-image: url(../images/page-archive-about-mv.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 5rem;
  background-color: #FDFDFD;
}
@media screen and (max-width: 767px) {
  .p-archive-work__mv {
    height: 17.6875rem;
  }
}

.p-archive-work .c-breadcrumb-inner {
  background-color: #FDFDFD;
}

.p-archive-work__title-wrapper {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  padding-top: 7.5rem;
  padding-left: 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-archive-work__title-wrapper {
    padding-top: 4rem;
    padding-left: 1.25rem;
  }
}

.p-archive-work__title {
  color: #FDFDFD;
  font-family: "Montserrat Subrayada";
  font-size: 4rem;
  font-weight: 400;
  line-height: 0.7;
  letter-spacing: -0.36rem;
}
@media screen and (max-width: 767px) {
  .p-archive-work__title {
    font-size: 3rem;
    letter-spacing: -0.27rem;
  }
}

.p-archive-work__subtitle {
  color: #FDFDFD;
  font-family: "Zen Kaku Gothic New", serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.0125rem;
}
@media screen and (max-width: 767px) {
  .p-archive-work__subtitle {
    font-size: 1.125rem;
    letter-spacing: 0.01125rem;
  }
}

/* ========================================= */
/* Archive Work PICKUP Section
/* ========================================= */
.p-archive-work__pickup {
  position: relative;
  background-color: #FDFDFD;
  padding-top: 9.375rem;
  padding-bottom: 7.5rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-archive-work__pickup {
    padding-top: 2rem;
    padding-bottom: 3.75rem;
    overflow: visible;
  }
}

.p-archive-work__description {
  position: relative;
  z-index: 1;
  padding-top: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-archive-work__description {
    padding-top: 2rem;
    gap: 1rem;
  }
}

.p-archive-work__description .c-text {
  color: #282B2B;
  font-family: "Zen Old Mincho", serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .p-archive-work__description .c-text {
    font-size: 1rem;
    line-height: 1.6;
    letter-spacing: 0.04rem;
  }
}

/* ========================================= */
/* Archive Work Slider Section
/* ========================================= */
.p-archive-work__slider-wrap {
  position: relative;
  margin-top: 3.4375rem;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -webkit-column-gap: 0;
     -moz-column-gap: 0;
          column-gap: 0;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media screen and (max-width: 767px) {
  .p-archive-work__slider-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 2.5rem;
    padding: 0;
    gap: 1.5rem;
  }
}

.p-archive-work__swiper {
  overflow: visible;
}

.p-archive-work__swiper .swiper-slide {
  width: 47.6875rem;
}
@media screen and (max-width: 767px) {
  .p-archive-work__swiper .swiper-slide {
    width: 18.75rem;
  }
}

.p-archive-work__slide-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.p-archive-work__slide-link:hover {
  opacity: 0.7;
}

/* ========================================= */
/* Slide Split Layout (左:パネル / 右:スライダー)
/* ========================================= */
/* 左: コンテンツパネル */
.p-archive-work__slide-panel {
  grid-column: 1/9;
  grid-row: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  background-color: #F5F3ED;
  z-index: 1;
  padding: 3.625rem calc(33.3333333333% + 7.5rem) 1.9375rem max(2.5rem, (100vw - 1120px) / 2);
}
.p-archive-work__slide-panel::before {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-archive-work__slide-panel {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    width: calc(100% - 2.5rem);
    margin-left: 1.25rem;
    margin-right: 1.25rem;
    margin-top: -7.5625rem;
    padding: 7.5625rem 1.25rem 2.5rem;
    z-index: 1;
  }
}

/* エピソード ナビタブ */
.p-archive-work__slide-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}

/* ナビタブアイテム */
.p-archive-work__slide-nav-item {
  display: none;
}
.p-archive-work__slide-nav-item.is-active {
  display: block;
}

/* ナビタブ内メタ情報（コンテキスト固有の上余白） */
.p-archive-work__slide-nav-item .c-work-meta {
  margin-top: 0.75rem;
}

/* SP: コメントテキスト（14px / $main-color） */
@media screen and (max-width: 767px) {
  .p-archive-work__slide-nav-item .c-work-meta__comment {
    font-family: "Zen Kaku Gothic New", serif;
    font-size: 0.875rem;
    color: #868374;
  }
}

/* 右: スライダートラック */
.p-archive-work__slide-visual {
  grid-column: 6/-1;
  grid-row: 1;
  position: relative;
  z-index: 2;
  margin-top: -2.1875rem;
  margin-bottom: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .p-archive-work__slide-visual {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
    overflow: hidden;
    margin-top: 0;
    margin-bottom: 0;
    z-index: 2;
    padding-left: 0rem;
  }
}

/* メインスライド画像 */
.p-archive-work__slide-img {
  width: 100%;
  aspect-ratio: 763/582;
  overflow: hidden;
}
.p-archive-work__slide-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-archive-work__slide-img {
    aspect-ratio: 300/229;
  }
}

/* エピソードタイトル */
.p-archive-work__slide-episode {
  font-family: "Zen Old Mincho", serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #282B2B;
}
@media screen and (max-width: 767px) {
  .p-archive-work__slide-episode {
    font-size: 1rem;
  }
}

/* 区切り線 */
.p-archive-work__slide-line {
  border: none;
  border-top: 1px solid #868374;
  opacity: 0.7;
  margin: 0;
  margin-top: 1.5rem;
  width: 100%;
}

/* 説明文ブロック（JS切替） */
.p-archive-work__slide-desc-wrap {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  margin-top: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-archive-work__slide-detail {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-archive-work__slide-detail.is-active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* 説明文テキスト */
.p-archive-work__slide-desc {
  font-family: "Zen Old Mincho", serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #282B2B;
}
.p-archive-work__slide-desc p {
  padding-top: 1rem;
}
@media screen and (max-width: 767px) {
  .p-archive-work__slide-desc {
    font-size: 1rem;
  }
}

/* View More リンク */
.p-archive-work__slide-more {
  margin-top: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}

/* スライダーコントロール (Arrows) */
.c-arrow-buttons--pickup {
  grid-column: 1/-2;
  grid-row: 2;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: -0.875rem;
  z-index: 5;
}
@media screen and (max-width: 767px) {
  .c-arrow-buttons--pickup {
    grid-column: auto;
    grid-row: auto;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    position: relative;
    z-index: 3;
    padding: 0 1.25rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

/* SP専用: スライドパネル内カード建物画像 */
.p-archive-work__slide-card-img {
  display: none;
}

/* SP専用: スライドパネル内家族イラスト */
.p-archive-work__slide-family {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-archive-work__slide-family {
    display: block;
    position: absolute;
    width: 8rem;
    height: 9rem;
    right: 0.875rem;
    top: 6.6875rem;
    z-index: 1;
  }
}

/* ========================================= */
/* Weave Text Section
/* ========================================= */
.p-archive-work__weave-text {
  width: 100%;
  background-color: #FDFDFD;
  overflow: hidden;
  margin-bottom: -1px;
}
@media screen and (max-width: 767px) {
  .p-archive-work__weave-text {
    display: none;
  }
}

.p-archive-work__weave-text-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-animation: marquee 30s linear infinite;
          animation: marquee 30s linear infinite;
}
.p-archive-work__weave-text-inner img {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 90rem;
  height: auto;
}

@-webkit-keyframes marquee {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes marquee {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
/* ========================================= */
/* List Section
/* ========================================= */
.p-archive-work__list-section {
  padding-bottom: 7.5rem;
  background-color: #F5F3ED;
  padding-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-archive-work__list-section {
    padding-bottom: 3.75rem;
    padding-top: 3.75rem;
  }
}

/* Category Nav */
.p-archive-work__category-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2.5rem;
  margin-top: 3.75rem;
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-archive-work__category-nav {
    gap: 1.25rem;
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }
}

/* Grid */
.p-archive-work__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.75rem 2.5rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .p-archive-work__grid {
    grid-template-columns: 1fr;
    gap: 5rem;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}

/* Pagination */
.p-archive-work__pagination {
  margin-top: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-archive-work__pagination {
    margin-top: 3.75rem;
  }
}
.p-archive-work__pagination .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}
.p-archive-work__pagination .page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid #524E49;
  color: #524E49;
  text-decoration: none;
  font-family: "Montserrat Subrayada";
}
.p-archive-work__pagination .page-numbers.current, .p-archive-work__pagination .page-numbers:hover {
  background-color: #524E49;
  color: #FDFDFD;
}
.p-archive-work__pagination .page-numbers.dots {
  border: none;
  background: transparent;
}
.p-archive-work__pagination .page-numbers.dots:hover {
  background: transparent;
  color: #FDFDFD;
}

/* CTA Styles (Reusing or defining specific if needed) */
.p-archive-work .p-top-cta {
  position: relative;
}
.p-archive-work .p-top-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6.25rem;
  background: -webkit-gradient(linear, left top, left bottom, from(#F5F3ED), to(rgba(245, 243, 237, 0)));
  background: linear-gradient(to bottom, #F5F3ED, rgba(245, 243, 237, 0));
  z-index: 2;
  pointer-events: none;
}

.p-drawer__overlay {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-drawer__overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .p-drawer__overlay.is-open {
    opacity: 0.7;
    visibility: visible;
  }
}

.p-drawer {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100vh;
  background-color: #F5F3ED;
  display: none;
  overflow-y: auto;
}
.p-drawer.is-open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-drawer {
    width: 90%;
    left: auto;
    right: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
    display: block;
    overflow-x: hidden;
  }
  .p-drawer.is-open {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.p-drawer__inner {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  max-width: 1440px;
  padding-right: 2.5rem;
  padding-left: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-drawer__inner {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
}

.p-drawer__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.5rem;
  position: relative;
  width: 100%;
  max-width: 90rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-drawer__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5rem;
  }
}
.p-drawer__wrap::before {
  content: "";
  position: absolute;
  width: clamp(25rem, 42vw, 37.5rem);
  height: 50.3125rem;
  max-height: 100vh;
  top: 0;
  width: 100%;
  left: clamp(-6.25rem, -32vw, -50rem);
  background-image: url("../images/drawer-image.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-drawer__wrap::before {
    display: none;
  }
}
.p-drawer__wrap::after {
  content: "";
  position: absolute;
  width: 15rem;
  height: 5rem;
  top: 16.75rem;
  left: clamp(11.875rem, 15vw, 18.125rem);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-image: url(../images/logo-black.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-drawer__wrap::after {
    display: none;
  }
}

.p-drawer__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-left: clamp(25rem, 42vw, 37.5rem);
}
@media screen and (max-width: 767px) {
  .p-drawer__content {
    max-width: 100%;
    padding: 0;
    margin-left: 0;
  }
}

.p-drawer__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  height: 5rem;
  padding-top: 2.5rem;
  padding-right: clamp(2.5rem, 11vw, 9.8125rem);
}
@media screen and (max-width: 767px) {
  .p-drawer__header {
    height: 3.75rem;
    padding-top: 0;
    padding-right: 1.25rem;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.p-drawer__logo {
  display: block;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.p-drawer__logo:hover {
  opacity: 0.7;
}
.p-drawer__logo img {
  width: 15rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-drawer__logo {
    display: none;
  }
}

.p-drawer__nav {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  padding-top: 8.375rem;
  border-top: 1px solid #524E49;
  margin-top: 7rem;
}
@media screen and (max-width: 783px) {
  .p-drawer__nav {
    margin-top: 95px;
  }
}
@media screen and (max-width: 767px) {
  .p-drawer__nav {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding-top: 2.5rem;
    margin-top: 6.25rem;
  }
}

.p-drawer__nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767px) {
  .p-drawer__nav-list {
    gap: 1.5rem;
  }
}

.p-drawer__nav-list--left,
.p-drawer__nav-list--right {
  justify-self: start;
  gap: 2rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-drawer__nav-list--left,
  .p-drawer__nav-list--right {
    gap: 1.5rem;
  }
}

.p-drawer__nav-item {
  display: grid;
  grid-template-columns: minmax(6.25rem, 8rem) 1fr;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-drawer__nav-item {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.p-drawer__nav-link {
  font-family: "Zen Kaku Gothic New", serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.16px;
  line-height: 1.6;
  text-decoration: none;
  display: inline-block;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-drawer__nav-link {
    margin-bottom: 1rem;
    width: 8rem;
  }
}
.p-drawer__nav-link:hover {
  opacity: 0.7;
}

.p-drawer__sub-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .p-drawer__sub-list {
    width: 100%;
    gap: 0.25rem;
    padding-left: 0;
    list-style: none;
  }
}

.p-drawer__sub-item {
  display: block;
}
@media screen and (max-width: 767px) {
  .p-drawer__sub-item {
    width: 8.625rem;
  }
}

.p-drawer__sub-link {
  font-family: "Zen Kaku Gothic New", serif;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.14px;
  line-height: 1.6;
  color: #282B2B;
  text-decoration: none;
  display: inline-block;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.p-drawer__sub-link:hover {
  opacity: 0.7;
}

.p-drawer-button__wrap {
  padding-top: 6.625rem;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-drawer-button__wrap {
    padding-top: 1.5rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.p-drawer-btn {
  padding: 0.625rem 2rem;
  width: 100%;
  max-width: 21.75rem;
  height: 2.875rem;
}
@media screen and (max-width: 767px) {
  .p-drawer-btn {
    max-width: 18.75rem;
    width: 100%;
  }
}

.p-drawer-btn__text {
  font-size: 1rem;
  letter-spacing: 0.16px;
}
.p-drawer-btn__text::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.0625rem;
  height: 0.75rem;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-transition: -webkit-filter 0.3s ease;
  transition: -webkit-filter 0.3s ease;
  transition: filter 0.3s ease;
  transition: filter 0.3s ease, -webkit-filter 0.3s ease;
}

.p-footer {
  position: relative;
  background-color: #524E49;
  overflow: hidden;
}

.p-footer__bg-image {
  position: absolute;
  bottom: -56.25rem;
  left: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-footer__bg-image {
    width: 37.5rem;
    height: 37.5rem;
    bottom: -33.125rem;
    left: 13rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 600px) {
  .p-footer__bg-image {
    bottom: -33.125rem;
    left: 0rem;
  }
}

.p-footer__container {
  position: relative;
  z-index: 1;
  max-width: 90rem;
  margin: 0 auto;
}

.p-footer__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 5rem;
  gap: 1rem;
}
@media screen and (max-width: 1024px) {
  .p-footer__contents {
    padding: 5rem 1.875rem;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 3.75rem 1.875rem 0.5rem;
    gap: 2.5rem;
  }
}
@media screen and (max-width: 600px) {
  .p-footer__contents {
    padding: 3.75rem 1.25rem;
  }
}

.p-footer__section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
  width: 22.5rem;
}
@media screen and (max-width: 767px) {
  .p-footer__section {
    width: 100%;
    gap: 2rem;
  }
}

.p-footer__logo-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767px) {
  .p-footer__logo-wrapper {
    gap: 1rem;
  }
}

.p-footer__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  width: 15rem;
  height: 5rem;
}

.p-footer__description {
  margin-top: 1rem;
  font-size: 1rem;
  color: #FDFDFD;
  font-family: "Zen Kaku Gothic New", serif;
}
@media screen and (max-width: 767px) {
  .p-footer__description {
    font-size: 1rem;
    letter-spacing: 0.16px;
  }
}

.p-footer__contact-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-footer__contact-info {
    gap: 0.5rem;
  }
}

.p-footer__contact-heading {
  font-family: "Zen Kaku Gothic New", serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: #FDFDFD;
  line-height: 1.6;
  letter-spacing: 0.2px;
}
@media screen and (max-width: 767px) {
  .p-footer__contact-heading {
    font-size: 1.125rem;
    letter-spacing: 0.18px;
  }
}

.p-footer__contact-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.25rem;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-footer__contact-list {
    gap: 0.5rem;
  }
}

.p-footer__contact-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-footer__contact-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: #FDFDFD;
}
.p-footer__contact-link:hover {
  opacity: 0.7;
}

.p-footer__contact-icon {
  display: block;
  width: 1rem;
  height: 1rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.p-footer__contact-item-phone .p-footer__contact-icon {
  background-image: url(../images/footer-phone-icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.p-footer__contact-item-email .p-footer__contact-icon {
  background-image: url(../images/footer-mail-icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.p-footer__contact-item-address .p-footer__contact-icon {
  background-image: url(../images/footer-address-icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.p-footer__contact-text {
  font-family: "Zen Kaku Gothic New", serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.14px;
}
@media screen and (max-width: 767px) {
  .p-footer__contact-text {
    font-size: 0.875rem;
  }
}

.p-footer__map {
  margin-top: 0.25rem;
}
@media screen and (max-width: 767px) {
  .p-footer__map {
    margin-top: 0.25rem;
  }
}
.p-footer__map iframe {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-footer__map iframe {
    width: 22.5rem;
    height: 11.9375rem;
  }
}

.p-footer__map-image {
  width: 100%;
  height: auto;
  display: block;
}

.p-footer__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.875rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-footer__sns {
    gap: 1.875rem;
  }
}

.p-footer__sns-item {
  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;
  width: 2.5rem;
  height: 2.5rem;
  color: #FDFDFD;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.p-footer__sns-item:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .p-footer__sns-item {
    width: 2.5rem;
    height: 2.5rem;
  }
}

.p-footer__sns-icon {
  width: 100%;
  height: 100%;
}

.p-footer__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.875rem;
  width: 44.5rem;
}
@media screen and (max-width: 1024px) {
  .p-footer__content {
    width: 40.625rem;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__content {
    width: 100%;
    gap: 2rem;
  }
}

.p-footer__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-footer__head {
    gap: 1rem;
  }
}

.p-footer__sub-heading {
  font-family: "Zen Kaku Gothic New", serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: #FDFDFD;
  line-height: 1.6;
  letter-spacing: 0.01em;
  position: relative;
  padding-bottom: 1rem;
  border-bottom: 1px solid #FDFDFD;
}
@media screen and (max-width: 767px) {
  .p-footer__sub-heading {
    font-size: 1.125rem;
    padding-bottom: 1rem;
  }
}

.p-footer__nav-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3rem;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
    padding-inline: 1rem;
  }
}
@media screen and (max-width: 600px) {
  .p-footer__nav-wrapper {
    padding-inline: 1rem;
  }
}

.p-footer__nav-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-column {
    gap: 1rem;
  }
}

.p-footer__nav-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 2.125rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media screen and (max-width: 600px) {
  .p-footer__nav-item {
    gap: 0.625rem;
  }
}

.p-footer__nav-title {
  font-family: "Zen Kaku Gothic New", serif;
  font-size: 1rem;
  font-weight: 400;
  color: #FDFDFD;
  line-height: 1.6;
  letter-spacing: 0.01em;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-title {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 15.625rem;
  }
}
@media screen and (max-width: 600px) {
  .p-footer__nav-title {
    width: 9.75rem;
  }
}
.p-footer__nav-title:hover {
  opacity: 0.7;
}

.p-footer__nav-sublist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.25rem;
  list-style: none;
  padding-left: 0;
}

.p-footer__nav-sublink {
  font-family: "Zen Kaku Gothic New", serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: #FDFDFD;
  line-height: 1.6;
  letter-spacing: 0.14px;
  text-decoration: none;
}
.p-footer__nav-sublink:hover {
  opacity: 0.7;
}

.p-footer__area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-footer__area {
    gap: 2rem;
  }
}

.p-footer__area-heading {
  font-family: "Zen Kaku Gothic New", serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: #FDFDFD;
  line-height: 1.6;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .p-footer__area-heading {
    font-size: 1.125rem;
  }
}

.p-footer__area-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem 3rem;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-footer__area-list {
    gap: 0.25rem 1.5rem;
    padding-inline: 1rem;
  }
}

.p-footer__area-item {
  font-family: "Zen Kaku Gothic New", serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: #FDFDFD;
  line-height: 1.6;
  letter-spacing: 0.01em;
}

.p-footer__privacy {
  margin-top: 6.375rem;
  border-top: 1px solid #FDFDFD;
  padding-top: 1rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-footer__privacy {
    margin-top: 0rem;
    padding-inline: 1rem;
  }
}

.p-footer__privacy-link {
  font-family: "Zen Kaku Gothic New", serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: #FDFDFD;
  line-height: 1.6;
  letter-spacing: 0.01em;
  text-decoration: none;
}
.p-footer__privacy-link:hover {
  opacity: 0.7;
}

.p-footer__copyright {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 2.3125rem;
  background-color: #524E49;
  border-top: 1px solid #FDFDFD;
}

.p-footer__copyright-text {
  font-family: "Zen Kaku Gothic New", serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: #FDFDFD;
  line-height: 1.44;
  letter-spacing: 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-footer__copyright-text {
    padding-block: 0.5rem;
  }
}

.p-header {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: fixed;
  padding-block: 0.625rem;
  background: transparent;
  z-index: 20;
}
@media screen and (max-width: 767px) {
  .p-header {
    padding-block: 0.625rem;
    z-index: 8;
  }
}

.p-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-inline: 2.5rem;
  margin: 0 auto;
  width: 90rem;
  height: 3.75rem;
  padding-block: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-header__inner {
    width: 100%;
    padding-inline: 1.25rem;
  }
}

.p-header__logo {
  width: 8.1875rem;
  height: 4.75rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  aspect-ratio: 131/44;
  -webkit-transition: opacity 0.1s ease, visibility 0.1s ease;
  transition: opacity 0.1s ease, visibility 0.1s ease;
  display: block;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .p-header__logo {
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .p-header__logo {
    width: 6.25rem;
    height: 5rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    aspect-ratio: 100/33;
    position: relative;
    z-index: 1;
  }
}
.p-header__logo.is-hidden {
  opacity: 0;
  visibility: hidden;
}
@media screen and (max-width: 767px) {
  .p-header__logo.is-hidden {
    opacity: 1;
    visibility: visible;
  }
}

.p-header__logo-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.p-header__logo-img--white {
  opacity: 0;
}

.p-header__logo-img--black {
  opacity: 1;
}

.p-header.is-sub-page .p-header__logo-img--white {
  opacity: 1;
}

.p-header.is-sub-page .p-header__logo-img--black {
  opacity: 0;
}

.p-header.is-sub-page.is-scrolled .p-header__logo-img--white {
  opacity: 0;
}

.p-header.is-sub-page.is-scrolled .p-header__logo-img--black {
  opacity: 1;
}

.p-header.is-sub-page.is-scrolled .p-header__btn--white .p-header__drawer-lines::before,
.p-header.is-sub-page.is-scrolled .p-header__btn--white .p-header__drawer-lines::after {
  background-color: #282B2B;
}

.p-header.is-sub-page.is-scrolled .p-header__btn--white .p-header__btn-text {
  color: #524E49;
}

.p-header__btn {
  position: relative;
  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;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  height: 3.75rem;
  z-index: 1000;
}
@media screen and (max-width: 767px) {
  .p-header__btn {
    position: fixed;
    top: 1.1rem;
    right: 1.25rem;
    z-index: 1100;
  }
}

.p-header__btn--white .p-header__drawer-lines::before,
.p-header__btn--white .p-header__drawer-lines::after {
  background-color: #FDFDFD;
}
.p-header__btn--white .p-header__btn-text {
  color: #FDFDFD;
}
.p-header__btn--white.is-active .p-header__drawer-lines::before,
.p-header__btn--white.is-active .p-header__drawer-lines::after {
  background-color: #282B2B;
}
.p-header__btn--white.is-active .p-header__btn-text {
  color: #282B2B;
}

.p-header__drawer-lines-wrapper {
  position: relative;
  width: 1.375rem;
  height: 1.3125rem;
}
@media screen and (max-width: 767px) {
  .p-header__drawer-lines-wrapper {
    width: 1.25rem;
  }
}

.p-header__drawer-lines {
  position: relative;
  width: 100%;
  height: 100%;
}
.p-header__drawer-lines::before {
  content: "";
  position: absolute;
  top: 0.4375rem;
  left: 0;
  width: 100%;
  height: 0.0625rem;
  background-color: #282B2B;
  -webkit-transition: top 0.3s ease, background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: top 0.3s ease, background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, top 0.3s ease, background-color 0.3s ease;
  transition: transform 0.3s ease, top 0.3s ease, background-color 0.3s ease, -webkit-transform 0.3s ease;
}
.p-header__drawer-lines::after {
  content: "";
  position: absolute;
  top: 0.8125rem;
  left: 0;
  width: 100%;
  height: 0.0625rem;
  background-color: #282B2B;
  -webkit-transition: top 0.3s ease, background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: top 0.3s ease, background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, top 0.3s ease, background-color 0.3s ease;
  transition: transform 0.3s ease, top 0.3s ease, background-color 0.3s ease, -webkit-transform 0.3s ease;
}

.p-header__btn-text {
  color: #524E49;
  text-align: center;
  font-family: "Zen Kaku Gothic New", serif;
  font-size: 0.875rem;
  font-weight: 900;
  line-height: 1.6;
  letter-spacing: 1.4px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-header__btn-text {
    line-height: 1.6;
    letter-spacing: 1.4px;
  }
}

.p-header__btn.is-active .p-header__drawer-lines::before {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  background-color: #524E49;
}
.p-header__btn.is-active .p-header__drawer-lines::after {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  background-color: #524E49;
}

.p-single-renovation__mv {
  position: relative;
  height: 42.5rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-single-renovation__mv {
    height: auto;
  }
}

.p-single-renovation__mv-bg {
  position: absolute;
  inset: 0;
}
.p-single-renovation__mv-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media screen and (max-width: 767px) {
  .p-single-renovation__mv-bg {
    position: static;
  }
  .p-single-renovation__mv-bg img {
    height: 30rem;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.p-single-renovation__mv-overlay {
  position: absolute;
  inset: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: 5rem 5rem;
  background-image: url(../../images/single-renovation-mv.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .p-single-renovation__mv-overlay {
    position: static;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 0;
    background: none;
  }
}

.p-single-renovation__mv-content {
  color: #FDFDFD;
  max-width: 33.75rem;
}
@media screen and (max-width: 767px) {
  .p-single-renovation__mv-content {
    color: #282B2B;
    padding: 1.5rem 1.25rem 0;
    max-width: 100%;
  }
}

.p-single-renovation__mv-label {
  font-family: "Zen Kaku Gothic New", serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-single-renovation__mv-label {
    font-size: 0.6875rem;
    color: #868374;
  }
}

.p-single-renovation__mv-title {
  font-family: "Zen Old Mincho", serif;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-single-renovation__mv-title {
    font-size: 1.375rem;
    margin-top: 0.5rem;
  }
}

.p-single-renovation__mv-summary {
  background: rgba(253, 253, 253, 0.88);
  padding: 1.75rem 1.5rem;
  width: 13.75rem;
  -ms-flex-item-align: center;
      align-self: center;
}
@media screen and (max-width: 767px) {
  .p-single-renovation__mv-summary {
    width: 100%;
    background: #F5F3ED;
    padding: 1.25rem;
    -ms-flex-item-align: auto;
        align-self: auto;
  }
}

.p-single-renovation__mv-summary-comment {
  font-family: "Zen Old Mincho", serif;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.6;
  color: #524E49;
}
@media screen and (max-width: 767px) {
  .p-single-renovation__mv-summary-comment {
    font-size: 0.875rem;
  }
}

.p-single-renovation__mv-summary-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .p-single-renovation__mv-summary-meta {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    margin-top: 0.75rem;
  }
}

.p-single-renovation__mv-summary-building {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}
.p-single-renovation__mv-summary-building span {
  font-family: "Zen Kaku Gothic New", serif;
  font-size: 0.8125rem;
  color: #524E49;
}

.p-single-renovation__mv-summary-area {
  font-family: "Zen Kaku Gothic New", serif;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  color: #868374;
}

.p-single-renovation__intro {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .p-single-renovation__intro {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}

.p-single-renovation__intro-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-single-renovation__intro-layout {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5rem;
  }
}

.p-single-renovation__intro-body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.p-single-renovation__intro-title {
  font-family: "Zen Old Mincho", serif;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.6;
  color: #524E49;
}
@media screen and (max-width: 767px) {
  .p-single-renovation__intro-title {
    font-size: 1.125rem;
  }
}

.p-single-renovation__intro-text {
  margin-top: 1.5rem;
  font-size: 0.9375rem;
  line-height: 2;
  color: #282B2B;
}
.p-single-renovation__intro-text p {
  margin-top: 1rem;
}
.p-single-renovation__intro-text p:first-child {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .p-single-renovation__intro-text {
    font-size: 0.875rem;
    margin-top: 1rem;
  }
}

.p-single-renovation__intro-family {
  width: 8rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-single-renovation__intro-family img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-single-renovation__intro-family {
    width: 6.25rem;
    -ms-flex-item-align: end;
        align-self: flex-end;
  }
}

.p-single-renovation__points {
  padding-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-single-renovation__points {
    padding-bottom: 1.25rem;
  }
}

.p-single-renovation__point {
  padding-top: 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-single-renovation__point {
    padding-top: 3.75rem;
  }
}

.p-single-renovation__point-num {
  font-family: "Montserrat", serif;
  font-size: 6.25rem;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px #868374;
  line-height: 1;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-single-renovation__point-num {
    font-size: 3.5rem;
  }
}

.p-single-renovation__point-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3.75rem;
  margin-top: -1rem;
}
@media screen and (max-width: 767px) {
  .p-single-renovation__point-layout {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5rem;
    margin-top: 1rem;
  }
}

.p-single-renovation__point--reverse .p-single-renovation__point-layout {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .p-single-renovation__point--reverse .p-single-renovation__point-layout {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-single-renovation__point-body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.p-single-renovation__point-title {
  font-family: "Zen Old Mincho", serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.6;
  color: #524E49;
}
@media screen and (max-width: 767px) {
  .p-single-renovation__point-title {
    font-size: 1.125rem;
  }
}

.p-single-renovation__point-text {
  font-size: 0.9375rem;
  line-height: 2;
  margin-top: 1.5rem;
  color: #282B2B;
}
@media screen and (max-width: 767px) {
  .p-single-renovation__point-text {
    font-size: 0.875rem;
    margin-top: 1rem;
  }
}

.p-single-renovation__point-img {
  width: 33.75rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-single-renovation__point-img img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-single-renovation__point-img {
    width: 100%;
  }
}

.p-single-renovation__scenes {
  padding-top: 7.5rem;
  padding-bottom: 7.5rem;
  background: #F5F3ED;
}
@media screen and (max-width: 767px) {
  .p-single-renovation__scenes {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }
}

.p-single-renovation__scene {
  margin-top: 3.75rem;
}
.p-single-renovation__scene:first-child {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .p-single-renovation__scene {
    margin-top: 2.5rem;
  }
  .p-single-renovation__scene:first-child {
    margin-top: 0;
  }
}

.p-single-renovation__scene-label {
  font-family: "Montserrat", serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #868374;
}
@media screen and (max-width: 767px) {
  .p-single-renovation__scene-label {
    font-size: 1rem;
  }
}

.p-single-renovation__scene-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 1.5rem;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-single-renovation__scene-layout {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.5rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-top: 1.25rem;
  }
}

.p-single-renovation__scene-before {
  position: relative;
  width: 21.25rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-top: 1.25rem;
}
.p-single-renovation__scene-before img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-single-renovation__scene-before {
    width: 80%;
  }
}

.p-single-renovation__scene-after {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-top: 1.25rem;
}
.p-single-renovation__scene-after img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-single-renovation__scene-after {
    width: 100%;
  }
}

.p-single-renovation__scene-tag {
  display: inline-block;
  font-family: "Montserrat", serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.75rem;
  position: absolute;
  top: 0;
  left: 0;
}

.p-single-renovation__scene-tag--before {
  background-color: #868374;
  color: #FDFDFD;
}

.p-single-renovation__scene-tag--after {
  background-color: #F8B500;
  color: #FDFDFD;
}

.p-single-renovation__scene-cap {
  font-size: 0.8125rem;
  line-height: 1.6;
  margin-top: 0.75rem;
  color: #524E49;
}
@media screen and (max-width: 767px) {
  .p-single-renovation__scene-cap {
    font-size: 0.75rem;
    margin-top: 0.5rem;
  }
}

.p-single-renovation__walkthrough {
  padding-top: 6.25rem;
  padding-bottom: 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-single-renovation__walkthrough {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }
}

.p-single-renovation__walkthrough-heading {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-single-renovation__walkthrough-heading {
    text-align: left;
    padding-inline: 1.25rem;
  }
}

.p-single-renovation__walkthrough-en {
  font-family: "Montserrat", serif;
  font-size: 4.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #282B2B;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-single-renovation__walkthrough-en {
    font-size: 2.25rem;
  }
}

.p-single-renovation__walkthrough-ja {
  font-size: 0.875rem;
  color: #524E49;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .p-single-renovation__walkthrough-ja {
    font-size: 0.8125rem;
    margin-top: 0.625rem;
  }
}

.p-single-renovation__walkthrough-video {
  margin-top: 3rem;
  aspect-ratio: 16/9;
}
.p-single-renovation__walkthrough-video iframe {
  width: 100%;
  height: 100%;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-single-renovation__walkthrough-video {
    margin-top: 1.5rem;
  }
}

.p-error {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #F5F3ED;
  display: grid;
  grid-template-columns: 2 1fr;
}
@media screen and (max-width: 767px) {
  .p-error {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-error__title {
  color: #FDFDFD;
  font-family: "Montserrat Subrayada";
  font-size: 8rem;
  font-style: normal;
  font-weight: 400;
  line-height: 0.7;
  letter-spacing: -11.52px;
  padding-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-error__title {
    font-size: 4rem;
    letter-spacing: -5.76px;
  }
}

.p-error__sub-title {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 1.28px;
  padding-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-error__sub-title {
    font-size: 1.25rem;
    letter-spacing: 0.8px;
  }
}

.p-error__description {
  padding-top: 2.5rem;
  letter-spacing: 0.72px;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-error__description {
    letter-spacing: 0.64px;
  }
}

.p-error__button {
  padding-top: 2.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 34px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  text-align: end;
  gap: 8px;
  width: 100%;
}

.p-test {
  font-family: "Montserrat Subrayada";
  color: purple;
  background-color: yellow;
  font-size: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-test {
    font-size: 1.5625rem;
  }
}

.p-loading {
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 1;
  -webkit-transition: opacity 1.2s ease;
  transition: opacity 1.2s ease;
}
.p-loading.is-fadeout {
  opacity: 0;
}
.p-loading.is-done {
  display: none;
  pointer-events: none;
}

.p-loading__bg {
  position: absolute;
  inset: 0;
  background-color: #2a2420;
}
.p-loading__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-loading__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.2);
}

.p-loading__text-container {
  position: absolute;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3rem;
  top: clamp(18.75rem, 23.9375rem - (100vw - 90rem) * 0.17, 23.9375rem);
  left: 5rem;
}
@media screen and (max-width: 767px) {
  .p-loading__text-container {
    top: 5rem;
    left: 1rem;
    right: 0;
    height: 31.25rem;
    gap: 1.5rem;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding-bottom: 1.5rem;
  }
}

.p-loading__text-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 1rem;
  opacity: 0;
  -webkit-transform: translateY(1rem);
          transform: translateY(1rem);
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease, -webkit-transform 0.6s ease;
}
.p-loading__text-group.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.p-loading__text-en {
  font-family: "Montserrat Subrayada";
  font-size: clamp(5.25rem, 5.8333vw, 7rem);
  font-weight: 400;
  line-height: 0.7;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: #FDFDFD;
}
@media screen and (max-width: 767px) {
  .p-loading__text-en {
    font-size: 2.5rem;
  }
}

.p-loading__text-ja {
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(1.5rem, 1.6667vw, 2rem);
  font-weight: 900;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #FDFDFD;
}
@media screen and (max-width: 767px) {
  .p-loading__text-ja {
    font-size: 0.875rem;
  }
}

.p-top-fv {
  position: relative;
  width: 100%;
  height: 56rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #F5F3ED;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-top-fv {
    height: auto;
    padding-top: 5rem;
  }
}

.p-top-fv__slider {
  position: absolute;
  top: 5rem;
  right: 0;
  bottom: 11rem;
  width: 77.78%;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-top-fv__slider {
    position: absolute;
    top: 5rem;
    right: 0;
    left: auto;
    bottom: auto;
    width: calc(100% - 3.5rem);
    height: 31.25rem;
  }
}

.p-top-fv__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  -webkit-transition: opacity 1.5s ease-in-out;
  transition: opacity 1.5s ease-in-out;
  overflow: hidden;
  pointer-events: none;
}
.p-top-fv__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.p-top-fv__slide.is-active img {
  -webkit-animation: fv-kenburns 6s ease-out forwards;
          animation: fv-kenburns 6s ease-out forwards;
}
.p-top-fv__slide.is-leaving {
  opacity: 0;
}
.p-top-fv__slide.is-leaving img {
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
}

.p-top-fv__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: scale(1);
          transform: scale(1);
  will-change: transform, opacity;
}

.p-top-fv__slide-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(82, 78, 73, 0.2);
  pointer-events: none;
}

@-webkit-keyframes fv-kenburns {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.08);
            transform: scale(1.08);
  }
}

@keyframes fv-kenburns {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.08);
            transform: scale(1.08);
  }
}
.p-top-fv__content {
  position: relative;
  z-index: 2;
  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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-top: clamp(18.75rem, 23.9375rem - (100vw - 90rem) * 0.17, 23.9375rem);
  padding-bottom: 7rem;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-top-fv__content {
    padding-top: 0;
    padding-bottom: 0.5rem;
    gap: 1rem;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    pointer-events: auto;
  }
}

.p-top-fv__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: 0 5rem;
}
@media screen and (max-width: 767px) {
  .p-top-fv__main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 1.5rem 0 1.5rem 1rem;
    gap: 2rem;
    height: 31.25rem;
  }
}

.p-top-fv__text-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3rem;
}
@media screen and (max-width: 767px) {
  .p-top-fv__text-container {
    gap: 1.5rem;
    -ms-flex-item-align: stretch;
        align-self: stretch;
  }
}

.p-top-fv__text-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 1rem;
}

.p-top-fv__text-en {
  font-family: "Montserrat Subrayada";
  font-size: clamp(5.25rem, 5.8333vw, 7rem);
  font-weight: 400;
  line-height: 0.7;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(22.22%, #282B2B), color-stop(22.22%, #FDFDFD));
  background-image: linear-gradient(to right, #282B2B 22.22%, #FDFDFD 22.22%);
  background-size: 100vw 100%;
  background-position-x: -5rem;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 767px) {
  .p-top-fv__text-en {
    font-size: 2.5rem;
    background-image: -webkit-gradient(linear, left top, right top, color-stop(3.5rem, #282B2B), color-stop(3.5rem, #FDFDFD));
    background-image: linear-gradient(to right, #282B2B 3.5rem, #FDFDFD 3.5rem);
    background-size: 100vw 100%;
    background-position-x: -1rem;
  }
}

.p-top-fv__text-ja {
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(1.5rem, 1.6667vw, 2rem);
  font-weight: 900;
  line-height: 1.6;
  letter-spacing: 0.04em;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(22.22%, #282B2B), color-stop(22.22%, #FDFDFD));
  background-image: linear-gradient(to right, #282B2B 22.22%, #FDFDFD 22.22%);
  background-attachment: fixed;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 767px) {
  .p-top-fv__text-ja {
    font-size: 0.875rem;
    font-weight: 900;
    background-image: none;
    background-attachment: scroll;
    -webkit-text-fill-color: #FDFDFD;
  }
}

.p-top-fv__product-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 5rem 0.5rem 1.5rem;
  border-radius: 0;
  margin-right: -5rem;
  background-color: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  pointer-events: auto;
}
@media screen and (min-width: 768px) {
  .p-top-fv__product-info:hover {
    background-color: rgba(0, 0, 0, 0.25);
  }
}
@media screen and (max-width: 767px) {
  .p-top-fv__product-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    gap: 0.375rem;
    font-size: 0.75rem;
    padding: 0.375rem 1rem 0.375rem 0.75rem;
    margin-right: 0;
    background-color: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
  }
}
@media screen and (max-width: 374px) {
  .p-top-fv__product-info {
    -webkit-transform: scale(calc(100vw / 375px));
            transform: scale(calc(100vw / 375px));
    -webkit-transform-origin: top right;
            transform-origin: top right;
  }
}

.p-top-fv__product-number {
  position: relative;
  width: 3.75rem;
  height: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-top-fv__product-number {
    width: 2rem;
    height: 2rem;
  }
}

.p-top-fv__progress-ring {
  width: 3.75rem;
  height: 3.75rem;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
@media screen and (max-width: 767px) {
  .p-top-fv__progress-ring {
    width: 2rem;
    height: 2rem;
  }
}

.p-top-fv__progress-ring-bg {
  fill: none;
  stroke: #FDFDFD;
  stroke-width: 1;
  opacity: 0.4;
}

.p-top-fv__progress-ring-fill {
  fill: none;
  stroke: #FDFDFD;
  stroke-width: 1;
  stroke-dasharray: 175.93;
  stroke-dashoffset: 175.93;
  -webkit-transition: stroke-dashoffset 0.1s linear;
  transition: stroke-dashoffset 0.1s linear;
}

.p-top-fv__product-number-text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-family: "Montserrat Alternates", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #FDFDFD;
  font-variant-numeric: tabular-nums;
}
@media screen and (max-width: 767px) {
  .p-top-fv__product-number-text {
    font-family: "Montserrat", sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
  }
}

.p-top-fv__product-text-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-fv__product-text-wrap {
    width: 15rem !important;
    -ms-flex-negative: 1;
        flex-shrink: 1;
  }
}

.p-top-fv__product-text {
  font-family: "Zen Kaku Gothic New", serif;
  /* font-size: myrem(19); */
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: #FDFDFD;
  text-shadow: 0 3px 0 rgba(0, 0, 0, 0.2);
  position: relative;
  padding-bottom: 0.375rem;
}
@media screen and (max-width: 767px) {
  .p-top-fv__product-text {
    font-size: 0.875rem;
    font-weight: 400;
    padding-bottom: 0.25rem;
    text-shadow: 0 2px 0 rgba(0, 0, 0, 0.2);
  }
}
.p-top-fv__product-text::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1.4px;
  background-color: #FDFDFD;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  opacity: 0.8;
}
.p-top-fv__product-text.is-line-active::after {
  -webkit-animation: fv-line-slide 1s ease-out forwards;
          animation: fv-line-slide 1s ease-out forwards;
}

@-webkit-keyframes fv-line-slide {
  0% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}

@keyframes fv-line-slide {
  0% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}
.p-top-fv__product-arrow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 1rem;
  height: 0.875rem;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: width 0.3s ease, margin-right 0.3s ease;
  transition: width 0.3s ease, margin-right 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-top-fv__product-arrow {
    width: 0.625rem;
    height: 0.625rem;
  }
}
.p-top-fv__product-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 0;
  border-top: 1px solid #FDFDFD;
}
.p-top-fv__product-arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 0.45rem;
  height: 0.45rem;
  border-right: 1px solid #FDFDFD;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}

@media screen and (min-width: 768px) {
  .p-top-fv__product-info:hover .p-top-fv__product-arrow {
    width: 1.75rem;
    margin-right: -0.75rem;
  }
}
.p-top-fv__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 5rem;
  gap: 1rem;
  pointer-events: auto;
}
@media screen and (max-width: 1280px) {
  .p-top-fv__bottom {
    padding: 0 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-fv__bottom {
    -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;
    padding: 0 1.25rem;
    gap: 1rem;
  }
}

.p-top-fv__catchcopy {
  font-family: "Zen Old Mincho", serif;
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #282B2B;
  white-space: nowrap;
}
@media screen and (max-width: 1280px) {
  .p-top-fv__catchcopy {
    font-size: 1.375rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-fv__catchcopy {
    font-size: 1.25rem;
    white-space: normal;
    text-align: left;
    -ms-flex-item-align: stretch;
        align-self: stretch;
  }
}

.p-top-fv__button-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-top-fv__button-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem;
    padding: 0 1.25rem;
  }
}

.p-top-fv__button-container .c-btn {
  width: 12.5rem;
  height: auto;
  padding: 0.625rem 2rem;
  -webkit-box-shadow: 0 4px 4px 0 rgba(40, 43, 43, 0.25);
          box-shadow: 0 4px 4px 0 rgba(40, 43, 43, 0.25);
}
@media screen and (max-width: 767px) {
  .p-top-fv__button-container .c-btn {
    width: 15rem;
    padding: 0.625rem 2rem;
  }
}

.p-top-fv__button-container .c-btn__text {
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.01em;
  padding-left: 1.875rem;
}
.p-top-fv__button-container .c-btn__text::before {
  width: 1.25rem;
  height: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-top-fv__button-container .c-btn__text {
    font-size: 1rem;
    padding-left: 1.875rem;
  }
  .p-top-fv__button-container .c-btn__text::before {
    width: 1.25rem;
    height: 1.25rem;
  }
}

.p-top-about {
  position: relative;
  padding: 7.5rem 0;
  overflow: hidden;
}
.p-top-about::before {
  content: "ABOUT";
  position: absolute;
  left: 0;
  top: 7.5rem;
  z-index: 0;
  font-size: 10rem;
  font-family: "Montserrat Subrayada";
  font-weight: 400;
  color: #FDFDFD;
  line-height: 0.7;
  letter-spacing: -0.09em;
  white-space: nowrap;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-top-about::before {
    top: 3.75rem;
    font-size: 4rem;
  }
}
.p-top-about .c-section-title::before {
  content: none;
}
@media screen and (max-width: 767px) {
  .p-top-about .c-section-title {
    height: 3.75rem;
    padding: 0.25rem 1.25rem;
  }
}
.p-top-about .c-section-title__heading {
  gap: 0.625rem;
  font-family: "Zen Kaku Gothic New", serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-top-about .c-section-title__heading {
    font-size: 1.125rem;
  }
}
.p-top-about .c-section-title__icon {
  width: 1rem;
  height: 1rem;
}
@media screen and (max-width: 767px) {
  .p-top-about {
    padding: 3.75rem 0;
  }
}

.p-top-bg-tree {
  position: relative;
  height: 0;
  z-index: 0;
  pointer-events: none;
  overflow: visible;
}
.p-top-bg-tree img {
  position: absolute;
  left: -40.375rem;
  top: 50%;
  -webkit-transform: translateY(-45%);
          transform: translateY(-45%);
  width: 68.75rem;
  height: 68.75rem;
  max-width: none;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-top-bg-tree img {
    left: -15.1875rem;
    top: 0;
    -webkit-transform: translateY(-115%);
            transform: translateY(-115%);
    width: 37.5rem;
    height: 37.5rem;
  }
}

.p-top-about__content {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5rem;
  width: 100%;
  padding-left: max(2.5rem, calc(50vw - 35rem));
  padding-right: 0;
}
@media screen and (max-width: 767px) {
  .p-top-about__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
    padding: 0;
  }
}

.p-top-about__text-content {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 5rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: auto;
}
@media screen and (max-width: 767px) {
  .p-top-about__text-content {
    width: 100%;
    gap: 2rem;
  }
}

.p-top-about__text-group {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-about__text-group {
    gap: 1.5rem;
    padding: 0 1.25rem;
  }
}

.p-top-about__heading {
  font-family: "Zen Old Mincho", serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #282B2B;
}
@media screen and (max-width: 767px) {
  .p-top-about__heading {
    font-size: 1.25rem;
  }
}

.p-top-about__description {
  font-family: "Zen Old Mincho", serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #282B2B;
}
@media screen and (max-width: 767px) {
  .p-top-about__description {
    font-size: 1rem;
  }
}

.p-top-about__button-wrap {
  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: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .p-top-about__button-wrap {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

.p-top-about__img-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
@media screen and (max-width: 767px) {
  .p-top-about__img-content {
    width: 100%;
    gap: 0.5rem;
  }
}

.p-top-about__img-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media screen and (max-width: 767px) {
  .p-top-about__img-row {
    gap: 0.5rem;
  }
}

.p-top-about__img-item {
  position: relative;
  overflow: hidden;
}
.p-top-about__img-item img {
  display: block;
  width: 100%;
  height: 160%;
  -o-object-fit: cover;
     object-fit: cover;
  will-change: transform;
}
.p-top-about__img-item--full {
  width: 100%;
  height: 8.25rem;
}
@media screen and (max-width: 767px) {
  .p-top-about__img-item--full {
    height: 6.25rem;
  }
}
.p-top-about__img-item--left {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 61%;
          flex: 0 0 61%;
  height: 12.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-about__img-item--left {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 14.3125rem;
            flex: 0 0 14.3125rem;
    height: 10rem;
  }
}
.p-top-about__img-item--fill {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 12.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-about__img-item--fill {
    height: 10rem;
  }
}
.p-top-about__img-item--wide {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 82%;
          flex: 0 0 82%;
  height: 12.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-about__img-item--wide {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 18.75rem;
            flex: 0 0 18.75rem;
    height: 10rem;
  }
}
.p-top-about__img-item--narrow {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 12.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-about__img-item--narrow {
    height: 10rem;
  }
}

.p-top-works {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5rem;
  padding-bottom: 7.5rem;
  overflow: hidden;
}
.p-top-works::before {
  content: "WORKS";
  position: absolute;
  right: 0;
  top: 3.5rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 0;
  font-size: 10rem;
  font-family: "Montserrat Subrayada";
  font-weight: 400;
  color: #FDFDFD;
  line-height: 0.7;
  letter-spacing: -0.09em;
  white-space: nowrap;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-top-works::before {
    font-size: 4rem;
    letter-spacing: -0.09em;
    right: auto;
    left: 0;
    top: 0;
    -webkit-transform: none;
            transform: none;
  }
}
.p-top-works .c-section-title::before {
  content: none;
}
@media screen and (max-width: 767px) {
  .p-top-works {
    gap: 1.5rem;
    padding-bottom: 3.75rem;
  }
}

.p-top-works .c-section-title--right {
  height: 7rem;
  text-align: right;
  padding-right: 10rem;
}
.p-top-works .c-section-title--right .c-section-title__heading {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 0.625rem;
  font-family: "Zen Kaku Gothic New", serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.6;
}
.p-top-works .c-section-title--right .c-section-title__icon {
  width: 1rem;
  height: 1rem;
}
.p-top-works .c-section-title--right::before {
  content: none;
}
@media screen and (max-width: 767px) {
  .p-top-works .c-section-title--right {
    height: 3.75rem;
    padding: 0.25rem 1.25rem;
    padding-right: 1.25rem;
    text-align: left;
    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-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .p-top-works .c-section-title--right .c-section-title__heading {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    font-size: 1.125rem;
  }
}

.p-top-works__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6.25rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-top-works__content {
    gap: 3.75rem;
  }
}

.p-top-works__section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3rem;
}
@media screen and (max-width: 767px) {
  .p-top-works__section {
    gap: 1.5rem;
  }
}

.p-top-works__hero {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  min-height: 18.8125rem;
  margin-right: 4.5rem;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-top-works__hero {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-right: 0;
    margin-right: 0;
    min-height: auto;
  }
}

.p-top-works__hero--reverse {
  margin-right: 0;
  margin-left: 4.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-works__hero--reverse {
    margin-left: 0;
  }
}

.p-top-works__hero-bg-wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: -0.5rem;
  bottom: 0;
  z-index: 0;
  overflow: hidden;
}
.p-top-works__hero--reverse .p-top-works__hero-bg-wrap {
  left: -0.5rem;
  right: 0;
}
@media screen and (max-width: 767px) {
  .p-top-works__hero-bg-wrap {
    right: 0;
    left: 0;
  }
  .p-top-works__hero--reverse .p-top-works__hero-bg-wrap {
    left: 0;
  }
}

.p-top-works__hero-bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.p-top-works__hero:hover .p-top-works__hero-bg {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.p-top-works__hero-logo {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0.625rem;
}
.p-top-works__hero-logo img {
  width: 53.75rem;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-top-works__hero-logo {
    position: absolute;
    z-index: 2;
    right: 1.25rem;
    top: 3.125rem;
    -webkit-transform: none;
            transform: none;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    padding: 0;
  }
  .p-top-works__hero-logo img {
    width: 6.875rem;
    height: auto;
  }
}

.p-top-works__hero-panel {
  position: relative;
  z-index: 1;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
  width: 33.75rem;
  padding: 3.75rem 5rem 2.5rem;
  background-color: rgba(82, 78, 73, 0.8);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: auto;
}
.p-top-works__hero--reverse .p-top-works__hero-panel {
  margin-left: 0;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .p-top-works__hero-panel {
    width: 100%;
    height: 17.6875rem;
    padding: 1.25rem;
    margin-left: 0;
    background-color: rgba(82, 78, 73, 0.6);
  }
  .p-top-works__hero--reverse .p-top-works__hero-panel {
    margin-left: 0;
    margin-right: 0;
  }
}

.p-top-works__hero-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
.p-top-works__hero:hover .p-top-works__hero-text {
  opacity: 0.5;
}

.p-top-works__hero-heading {
  font-family: "Zen Kaku Gothic New", serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.6;
  color: #FDFDFD;
}
@media screen and (max-width: 767px) {
  .p-top-works__hero-heading {
    font-size: 1.125rem;
  }
}

.p-top-works__hero-description {
  font-family: "Zen Old Mincho", serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #FDFDFD;
}
@media screen and (max-width: 767px) {
  .p-top-works__hero-description {
    font-size: 1rem;
  }
}

.p-top-works__hero-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.p-top-works__hero-button .c-btn-view-more__text {
  color: #F5F3ED;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
.p-top-works__hero-button .c-btn-view-more__text::before {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.p-top-works__hero:hover .p-top-works__hero-button .c-btn-view-more::before {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}
.p-top-works__hero:hover .p-top-works__hero-button .c-btn-view-more::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.p-top-works__hero:hover .p-top-works__hero-button .c-btn-view-more__text {
  opacity: 0.5;
}
.p-top-works__hero:hover .p-top-works__hero-button .c-btn-view-more__text::before {
  right: -3.125rem;
  width: 6.25rem;
}

.p-top-works__slider-wrap {
  position: relative;
  max-width: 70rem;
  margin: 0 auto;
}
@media screen and (max-width: 1280px) {
  .p-top-works__slider-wrap {
    max-width: calc(100% - 12.5rem);
  }
}
@media screen and (max-width: 767px) {
  .p-top-works__slider-wrap {
    max-width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 2rem;
  }
}

.p-top-works__swiper {
  overflow: hidden;
  width: 100%;
}
.p-top-works__swiper .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-top-works__swiper {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    overflow: visible;
  }
  .p-top-works__swiper .swiper-slide {
    width: 16.25rem;
  }
}

.p-top-works__pagination {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 2;
  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;
  width: 3rem;
  height: 3rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.p-top-works__pagination svg {
  width: 3rem;
  height: 3rem;
}
.p-top-works__pagination svg circle {
  fill: transparent;
  stroke: #F8B500;
  -webkit-transition: fill 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), stroke 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: fill 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), stroke 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.p-top-works__pagination svg path {
  stroke: #F8B500;
  fill: none;
  -webkit-transition: stroke 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: stroke 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media screen and (min-width: 768px) {
  .p-top-works__pagination:hover svg circle {
    fill: #F8B500;
    stroke: #F8B500;
  }
  .p-top-works__pagination:hover svg path {
    stroke: #FDFDFD;
  }
}
@media screen and (max-width: 767px) {
  .p-top-works__pagination {
    position: static;
    -webkit-transform: none;
            transform: none;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.p-top-works__pagination--prev {
  right: calc(100% + 2.5rem);
}
@media screen and (max-width: 767px) {
  .p-top-works__pagination--prev {
    right: auto;
  }
}

.p-top-works__pagination--next {
  left: calc(100% + 2.5rem);
}
@media screen and (max-width: 767px) {
  .p-top-works__pagination--next {
    left: auto;
  }
}

.p-top-works__card {
  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;
  gap: 0.6875rem;
  width: 20rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-top-works__card {
    width: 100%;
    gap: 0.6875rem;
    scroll-snap-align: center;
  }
}

.p-top-works__card-link {
  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;
  gap: 0.6875rem;
  width: 100%;
  color: inherit;
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-top-works__card-link:hover {
    opacity: 0.7;
  }
}

.p-top-works__card-title {
  font-family: "Zen Old Mincho", serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #282B2B;
  -ms-flex-item-align: start;
      align-self: flex-start;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-top-works__card-title {
    font-size: 1rem;
  }
}

.p-top-works__card-img-wrap {
  position: relative;
  width: 100%;
  height: 25rem;
}
@media screen and (max-width: 767px) {
  .p-top-works__card-img-wrap {
    height: 25rem;
  }
}

.p-top-works__card-img-inner {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.p-top-works__card-img-inner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.p-top-works__card-link:hover .p-top-works__card-img-inner img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.p-top-works__card-family {
  position: absolute;
  right: 0;
  bottom: -7.1875rem;
  z-index: 2;
  width: 8rem;
  height: 9rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-top-works__section--reverse .p-top-works__card-family {
  width: 9rem;
  height: 10rem;
  bottom: -6.25rem;
}
@media screen and (max-width: 767px) {
  .p-top-works__card-family {
    width: 8rem;
    height: 9rem;
    bottom: -7.1875rem;
  }
  .p-top-works__section--reverse .p-top-works__card-family {
    width: 9rem;
    height: 10rem;
    bottom: -6.25rem;
  }
}

.p-top-works__card-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.p-top-works__card-comment {
  font-family: "Zen Kaku Gothic New", serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: #868374;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-bottom: 0.25rem;
  border-bottom: 0.7px solid currentColor;
}

.p-top-works__card-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-top-works__card-info-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 0.1875rem;
}
.p-top-works__card-info-row img {
  height: 1.4375rem;
  width: auto;
}
.p-top-works__card-info-row span {
  font-family: "Zen Kaku Gothic New", serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.6;
  color: #282B2B;
}

.p-top-works__card-location {
  font-family: "Zen Kaku Gothic New", serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.6;
  color: #282B2B;
}

.p-top-copy {
  padding-bottom: 7.5rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-top-copy {
    padding-bottom: 3.75rem;
  }
}

.p-top-copy__track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-animation: marquee-scroll 30s linear infinite;
          animation: marquee-scroll 30s linear infinite;
}
.p-top-copy__track img {
  display: block;
  width: 100vw;
  height: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  min-height: 3rem;
}
@media screen and (max-width: 767px) {
  .p-top-copy__track img {
    width: 200vw;
  }
}

@-webkit-keyframes marquee-scroll {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes marquee-scroll {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.p-top-banner {
  padding: 0 10rem 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-banner {
    padding: 0 1.25rem 3.75rem;
  }
}

.p-top-banner__link {
  display: block;
  overflow: hidden;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.p-top-banner__link:hover {
  opacity: 0.7;
}

.p-top-banner__link img {
  width: 100%;
  height: auto;
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.p-top-banner__link:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.p-top-news {
  padding: 0 10rem 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-news {
    padding: 0 1.25rem 5rem;
  }
}

.p-top-news__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 5rem;
}
@media screen and (max-width: 767px) {
  .p-top-news__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5rem;
  }
}

.p-top-news__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
}

.p-top-news__title-en {
  font-family: "Montserrat Subrayada";
  font-size: 4rem;
  font-weight: 400;
  line-height: 0.7;
  letter-spacing: -0.09em;
  color: #868374;
}
@media screen and (max-width: 767px) {
  .p-top-news__title-en {
    font-size: 2.5rem;
  }
}

.p-top-news__title-ja {
  font-family: "Zen Kaku Gothic New", serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: #282B2B;
}
@media screen and (max-width: 767px) {
  .p-top-news__title-ja {
    font-size: 1rem;
  }
}

.p-top-news__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 1rem;
  min-width: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767px) {
  .p-top-news__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5rem;
  }
}

.p-top-news__instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
@media screen and (max-width: 767px) {
  .p-top-news__instagram-grid {
    grid-template-columns: 1fr;
    width: 70%;
    margin: 0 auto;
    gap: 0.5rem;
  }
}

.p-top-news__instagram-post {
  display: block;
  overflow: hidden;
  aspect-ratio: 1/1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.p-top-news__instagram-post:hover {
  opacity: 0.7;
}
.p-top-news__instagram-post img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.p-top-news__instagram-post:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.p-top-news__instagram-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
@media screen and (max-width: 767px) {
  .p-top-news__instagram-link {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    width: 100%;
    height: auto;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.p-top-news__follow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
@media screen and (min-width: 768px) {
  .p-top-news__follow:hover {
    opacity: 0.5;
  }
}

.p-top-news__follow-text {
  font-family: "Zen Kaku Gothic New", serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.6;
  color: #868374;
}

.p-top-cta {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 30rem;
  padding: 5rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-top-cta {
    min-height: auto;
    padding: 4rem 1.25rem;
  }
}

.p-top-cta__bg {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  height: 150%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
  will-change: transform;
}

.p-top-cta__inner {
  position: relative;
  z-index: 1;
  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;
  gap: 5rem;
  padding: 5rem 0;
}
@media screen and (max-width: 767px) {
  .p-top-cta__inner {
    gap: 4rem;
    padding: 0;
    width: 100%;
  }
}

.p-top-cta__heading-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  overflow: hidden;
  padding: 0.25rem 0;
}
@media screen and (max-width: 767px) {
  .p-top-cta__heading-wrap {
    overflow: visible;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.p-top-cta__heading {
  font-family: "Montserrat Subrayada";
  font-size: 7.5rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.09em;
  color: #F5F3ED;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-top-cta__heading {
    font-size: 3.5rem;
    text-align: center;
  }
}

.p-top-cta__button-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  gap: 1.125rem;
}
@media screen and (max-width: 767px) {
  .p-top-cta__button-wrap {
    -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;
    -ms-flex-item-align: auto;
        align-self: auto;
    gap: 2rem;
  }
}

.p-top-cta__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
  padding: 0.625rem 2rem;
  font-family: "Zen Kaku Gothic New", serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: #282B2B;
  text-decoration: none;
  -webkit-box-shadow: 0 4px 4px 0 rgba(51, 51, 51, 0.25);
          box-shadow: 0 4px 4px 0 rgba(51, 51, 51, 0.25);
  -webkit-transition: background-color 0.3s ease, color 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.p-top-cta__btn img {
  width: 1.25rem;
  height: 1.25rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: -webkit-filter 0.3s ease;
  transition: -webkit-filter 0.3s ease;
  transition: filter 0.3s ease;
  transition: filter 0.3s ease, -webkit-filter 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-top-cta__btn:hover {
    background-color: #868374;
    color: #FDFDFD;
    -webkit-box-shadow: 0 2px 2px 0 rgba(40, 43, 43, 0.25);
            box-shadow: 0 2px 2px 0 rgba(40, 43, 43, 0.25);
  }
  .p-top-cta__btn:hover img {
    -webkit-filter: brightness(0) invert(1);
            filter: brightness(0) invert(1);
  }
}
@media screen and (max-width: 767px) {
  .p-top-cta__btn {
    padding: 0.625rem 1.5rem;
  }
}

.p-top-cta__btn--primary {
  background-color: #F8B500;
}

.p-top-cta__btn--secondary {
  background-color: #F5F3ED;
}

@media screen and (max-width: 767px) {
  .u-desktop {
    display: none;
  }
}

.u-mobile {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-mobile {
    display: block;
  }
}/*# sourceMappingURL=styles.css.map */