/* Breakpoint
======================================= */
:root {
  --before-opacity: 0;
  --color-base: #111111;
  --color-white: #ffffff;
  --color-gray-dark: #2d2d2d;
  --color-gray: #727272;
  --color-gray-light: #aaaaaa;
  --font-base: "Noto Sans JP", sans-serif;
  --font-sans-en: "neue-haas-grotesk-display", sans-serf;
  --font-serif-en: "aw-conqueror-didot", serif;
  --font-serif-jp: "Noto Serif JP", serif;
  --font-serif-display: "Cormorant Garamond", serif;
}

html {
  font-size: 62.5%;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

body {
  font-family: var(--font-base);
  color: var(--color-base);
  position: relative;
}

.wrapper.is-scrollLock {
  overflow: auto;
  scrollbar-gutter: stable;
}

p {
  letter-spacing: 0.05em;
}

picture > img {
  width: 100%;
}

main {
  position: relative;
  z-index: 20;
}

.inner {
  width: 1280px;
  max-width: 100%;
  padding: 0 40px;
  margin: 0 auto;
}
@media screen and (max-width: 1366px) {
  .inner {
    width: 100%;
    padding-inline: 5vw;
  }
}
@media screen and (max-width: 768px) {
  .inner {
    padding: 0 3rem;
  }
}

.sp__only {
  display: none;
}
@media screen and (max-width: 480px) {
  .sp__only {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .tab__only {
    display: none;
  }
}

@media screen and (max-width: 480px) {
  .pc__only {
    display: none;
  }
}

.js-common-transition {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 100vh;
  background: #0f0f0f;
  pointer-events: none;
  transform: scaleY(0);
  z-index: 9999;
}

.common__title {
  font-size: 6rem;
  color: var(--color-base);
  font-family: var(--font-serif-en);
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 80px;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .common__title {
    font-size: 4.8rem;
  }
}
@media screen and (max-width: 768px) {
  .common__title {
    font-size: 4.2rem;
  }
}

.common__title > span {
  display: inline-block;
}

.common-button {
  display: block;
  width: 260px;
  height: 60px;
  background-color: var(--color-base);
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  max-width: 100%;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .common-button {
    width: 200px;
    height: 48px;
  }
}

.common-button__text {
  width: auto;
  height: auto;
  font-size: 1.8rem;
  font-family: var(--font-sans-en);
  font-weight: 300;
  color: var(--color-white);
  letter-spacing: 0.04em;
  text-align: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .common-button__text {
    font-size: 1.6rem;
  }
}

.common-button__arrow {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  width: 40px;
  height: 1px;
  background: rgba(0, 0, 0, 0);
  position: absolute;
  right: -20px;
  z-index: 2;
}

.common-button__arrow01 {
  background: var(--color-white);
  width: 50%;
  height: 100%;
  max-width: 50%;
}

.common-button__arrow02 {
  background: var(--color-base);
  flex: none;
  height: 100%;
  width: 50%;
  max-width: 50%;
}

.common-button__hoverLayer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #2D2D2D;
  z-index: 0;
  transform: scale(0, 1);
  transform-origin: center left;
  transition: transform 0.3s ease;
}

.common-button:hover .common-button__hoverLayer {
  transform: scale(1, 1);
}

.page {
  width: 100%;
  padding-top: 259px;
  background-color: var(--color-white);
  position: relative;
}
@media screen and (max-width: 768px) {
  .page {
    padding-top: 151px;
  }
}

.page__inner {
  width: 1280px;
  max-width: 100%;
  padding: 0 40px;
  margin: 0 auto;
}
@media screen and (max-width: 1366px) {
  .page__inner {
    width: 100%;
    padding-inline: 5vw;
  }
}
@media screen and (max-width: 768px) {
  .page__inner {
    padding-inline: 3rem;
  }
}

.page__titleEn {
  font-size: clamp(46px, 35.598px + 3.25vw, 80px);
  font-family: var(--font-serif-en);
  font-weight: 400;
  color: var(--color-base);
  overflow: hidden;
  line-height: 1;
}

.page__titleEn > span {
  display: inline-block;
}

.page__titleJa {
  display: block;
  font-size: clamp(12px, 11.4px + 0.188vw, 15px);
  font-family: var(--font-base);
  margin-top: 9px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .page__titleJa {
    margin-top: 7px;
  }
}

.page__titleJa > span {
  display: block;
}

.page__line {
  width: 100%;
  height: 1px;
  background: #aaaaaa;
  margin-top: 70px;
}
@media screen and (max-width: 768px) {
  .page__line {
    margin-top: 62px;
  }
}

.contact {
  width: 100%;
  background-color: var(--color-base);
}

.contact__link {
  display: block;
  margin-inline: auto;
  padding: 135px 10.41667% 134px;
}
@media screen and (max-width: 768px) {
  .contact__link {
    padding: 72px 10.41667% 72px;
  }
}

.contact__link:hover .contact__text::after {
  transform: scaleX(1);
}

.contact__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact__text {
  font-size: clamp(40px, 13.512px + 7.064vw, 110px);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--color-white);
  font-family: var(--font-serif-display);
  position: relative;
}
.contact__text::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-white);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.19, 0.61, 0.36, 1);
}

.animation-fadeUp {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animation-fadeIn {
  opacity: 0;
  transition: opacity 0.8s ease;
}

.animation-fadeUp.is-show {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.animation-fadeIn.is-show {
  opacity: 1;
}/*# sourceMappingURL=style.css.map */