/* Breakpoint
======================================= */
:root {
  --white: #ffffff;
}

html {
  font-size: 62.5%;
}

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

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #111111;
}

picture > img {
  width: 100%;
}

.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: #111111;
  font-family: "Cormorant Garamond", serif;
  font-family: "aw-conqueror-didot", serif;
  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;
  padding: 2.35rem 0;
  font-size: 18px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
  background-color: #111111;
  position: relative;
}
@media screen and (max-width: 768px) {
  .common__button {
    width: 200px;
    padding: 1.7rem 0;
    font-size: 16px;
  }
}

.page {
  position: relative;
  width: 100%;
  font-family: neue-haas-grotesk-display, sans-serif;
  padding-top: 259px;
  background-color: #ffffff;
  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: "aw-conqueror-didot", serif;
  font-weight: 400;
  color: #111111;
  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: "Noto Sans JP", sans-serif;
  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: #111111;
  position: relative;
  z-index: 2;
}

.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-family: neue-haas-grotesk-display, sans-serif;
  font-size: clamp(40px, 13.512px + 7.064vw, 110px);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #ffffff;
  font-family: "Cormorant Garamond", serif;
  position: relative;
}
.contact__text::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #ffffff;
  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 */