@charset "UTF-8";
@media (max-width: 30em) {
  .u-d-n--sp {
    display: none;
  }
}
@media (min-width: 30.0625em) and (max-width: 48em) {
  .u-d-n--tb {
    display: none;
  }
}
@media (min-width: 48.0625em) {
  .u-d-n--pc {
    display: none;
  }
}
@media (max-width: 48em) {
  .u-d-n--not-pc {
    display: none;
  }
}
@media (min-width: 30.0625em) {
  .u-d-n--not-sp {
    display: none;
  }
}
.u-d-b--sp {
  display: none;
}
@media (max-width: 30em) {
  .u-d-b--sp {
    display: block;
  }
}
.u-d-b--tb {
  display: none;
}
@media (min-width: 30.0625em) and (max-width: 48em) {
  .u-d-b--tb {
    display: block;
  }
}
.u-d-b--pc {
  display: none;
}
@media (min-width: 48.0625em) {
  .u-d-b--pc {
    display: block;
  }
}
.u-d-b--not-pc {
  display: none;
}
@media (max-width: 48em) {
  .u-d-b--not-pc {
    display: block;
  }
}
.u-d-b--not-sp {
  display: none;
}
@media (min-width: 30.0625em) {
  .u-d-b--not-sp {
    display: block;
  }
}

.c-fill-button {
  position: relative;
  background-color: var(--bgc, #000);
  border: 1px solid var(--bgc, #000);
  width: var(--w, 100%);
  max-width: var(--maw, 100%);
  height: var(--h, 56px);
  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;
  -webkit-transition-property: background-color, border-color;
  transition-property: background-color, border-color;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  font-size: var(--fz, 13px);
}
.c-fill-button a {
  text-decoration: none !important;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  color: var(--clr, #fff);
}
.c-fill-button a::after {
  content: "";
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
@media only screen and (min-width: 48.0625em) {
  .c-fill-button {
    max-width: var(--maw, 100%);
    font-size: var(--fz, 15px);
  }
  .c-fill-button:hover {
    background-color: var(--bgc-h, var(--clr, #fff));
  }
  .c-fill-button:hover a {
    color: var(--clr-h, var(--bgc, #000));
  }
}

.pg-fffffft {
  --base-bg-clr: #fff;
  --bdr-clr: #d1d1d1;
  --base-txt-clr: #000;
  background-color: var(--base-bg-clr);
  color: var(--base-txt-clr);
  --ff-en: "Helvetica Neue", "Arial", sans-serif;
  font-family: "Helvetica Neue", "Arial", "Hiragino Kaku Gothic ProN",
    "ヒラギノ角ゴ", sans-serif;
}
.pg-fffffft :where(h2, h3, a) {
  font-weight: bold;
  font-family: var(--ff-en);
}

.pg-intro {
  text-align: center;
  padding: 72.5px 0;
}
@media (min-width: 48.0625em) {
  .pg-intro {
    padding: 96px 0 112px;
  }
}
.pg-intro__header {
  margin-bottom: 48px;
}
@media (min-width: 48.0625em) {
  .pg-intro__header {
    margin-bottom: 56px;
  }
}
.pg-intro__title {
  font-size: 32px;

  line-height: 1;
}
@media (min-width: 48.0625em) {
  .pg-intro__title {
    font-size: 44px;
  }
}
.pg-intro__rich-text {
  font-size: 14px;
  line-height: 2;
}
@media (min-width: 48.0625em) {
  .pg-intro__rich-text {
    font-size: 16px;
  }
}
.pg-intro__inner {
  width: calc(100% - max(20px, 6.6666666667vw) * 2);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.pg-gallery__inner {
  width: calc(100% - max(48px, 6.6666666667vw) * 2);
  margin-left: auto;
  margin-right: auto;
}
.pg-gallery__content {
  margin-bottom: 56px;
}
@media (min-width: 48.0625em) {
  .pg-gallery__content {
    margin-bottom: 96px;
  }
}

@media (min-width: 48.0625em) {
  .pg-item-images {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.side-tracking-bar {
  font-family: var(--ff-en);
  position: fixed;
  top: 0;
  height: 100vh;
  right: 0;
  width: max(48px, 6.6666666667vw);
}
.side-tracking-bar__content {
  height: 100%;
  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;
}
.side-tracking-bar p,
.side-tracking-bar a {
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  font-size: max(12px, 1.3888888889vw);
  font-weight: bold;
  line-height: 1.1;
}
.side-tracking-bar a {
  position: relative;
}
.side-tracking-bar a::after {
  position: absolute;
  content: "";
  display: block;
  height: 100%;
  width: 1px;
  background: var(--base-txt-clr);
}
@media (min-width: 48.0625em) {
  .side-tracking-bar a:hover::after {
    display: none;
  }
}
.side-tracking-bar--reverse {
  left: 0;
}
.side-tracking-bar--reverse p {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.pg-product-area {
  padding: 72px 0;
  background-color: #f5f5f5;
}
.pg-product-area img {
  width: 100%;
}
.pg-product-area__inner {
  width: calc(100% - max(48px, 6.6666666667vw) * 2);
  max-width: 848px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 48.0625em) {
  .pg-product-area__content {
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
}
.pg-product-area__image {
  margin-bottom: 48px;
}
@media (min-width: 48.0625em) {
  .pg-product-area__image {
    width: calc((100% - 48px) / 2);
  }
}
@media (min-width: 48.0625em) {
  .pg-product-area__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 48px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.pg-credit {
  font-family: var(--ff-en);
}
.pg-credit__name {
  font-weight: bold;
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 12px;
}
@media (min-width: 48.0625em) {
  .pg-credit__name {
    font-size: 28px;
    margin-bottom: 16px;
  }
}
.pg-credit__header {
  margin-bottom: 32px;
}
@media (min-width: 48.0625em) {
  .pg-credit__header {
    margin-bottom: 40px;
  }
}
.pg-credit__text {
  font-size: 13px;
}
.pg-credit__text small {
  font-size: 10px;
}
.pg-credit .c-fill-button {
  font-weight: bold;
}
@media (max-width: 48em) {
  .pg-credit .c-fill-button > a:hover {
    color: #fff;
  }
}
@media (min-width: 48.0625em) {
  .pg-credit .c-fill-button {
    --maw: 200px;
    --fz: 14px;
  }
}

.pg-banner {
  padding: 56px 0;
  border-bottom: solid 1px var(--bdr-clr);
}
@media (min-width: 48.0625em) {
  .pg-banner {
    padding: 96px 0;
  }
}
.pg-banner__inner {
  width: calc(100% - max(20px, 6.6666666667vw) * 2);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.pg-about {
  padding: 57px 0 80px;
}
@media (min-width: 48.0625em) {
  .pg-about {
    padding: 100px 0 96px;
  }
}
.pg-about__inner {
  width: calc(100% - max(24px, 6.6666666667vw) * 2);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.pg-about__header {
  margin-bottom: 32px;
}
@media (min-width: 48.0625em) {
  .pg-about__header {
    margin-bottom: 48px;
  }
}
.pg-about__title {
  font-size: 20px;
  line-height: 1.76;
}
@media (min-width: 48.0625em) {
  .pg-about__title {
    font-size: 24px;
  }
}
.pg-about__detail {
  line-height: 2;
  font-size: 12px;
}
.pg-about__detail p {
  margin-bottom: 24px;
}
@media (min-width: 48.0625em) {
  .pg-about__detail {
    font-size: 13px;
  }
  .pg-about__detail p {
    margin-bottom: 32px;
  }
}
.pg-about__detail a {
  text-decoration: underline;
}
.pg-about__detail a:hover {
  text-decoration: none;
}

.js-fadein-zoomout {
  overflow: hidden;
}
.js-fadein-zoomout .pg-item-images {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  opacity: 0;
  visibility: hidden;
  -webkit-transition-property: opacity transform;
  transition-property: opacity transform;
  -webkit-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition-duration: 1.5s;
  transition-duration: 1.5s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}
.js-fadein-zoomout.is-animated .pg-item-images {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
  visibility: visible;
}

.side-tracking-bar {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: all 0.5s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.side-tracking-bar.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.5s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: all 0.5s cubic-bezier(0.55, 0.055, 0.675, 0.19);
} /*# sourceMappingURL=index.css.map */
