@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:wght@200;300;400&family=Noto+Serif+JP:wght@200;300;400;500;600&display=swap');
/* reset */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, img, ins, kbd, q, s, samp, small, strike, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
* {
  box-sizing: border-box;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
html {
  font-size: 62.5%;
}
:root {
  --base-color: #ffffff;
  --font-size-xxxs: clamp(0.9rem, 0.733vw, 1.1rem);
  --font-size-xxs: clamp(1.1rem, 0.8vw, 1.2rem);
  --font-size-xs: clamp(1.2rem, 0.8vw, 1.4rem);
  --font-size-sm: clamp(1.3rem, 0.933vw, 1.6rem);
  --font-size-base: clamp(1.4rem, 1.067vw, 1.8rem);
  --font-size-lg: clamp(2.0rem, 1.467vw, 2.4rem);
  --font-size-xl: clamp(3.0rem, 2.533vw, 3.8rem);
  --font-size-xxl: clamp(3.6rem, 3.067vw, 4.6rem);
  --font-family-serif: "Cormorant Garamond", "Noto Serif JP", serif;
  --easeOutSine: cubic-bezier(0.39, 0.575, 0.565, 1);
  --easeOutQuad: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --easeInOutSine: cubic-bezier(0.445, 0.05, 0.55, 0.95);
  --easeInOutQuint: cubic-bezier(0.85, 0, 0.15, 1);
  --mt-xl: clamp(80px, 10vw, 10vw);
  --mt-l: clamp(40px, 5.333vw, 5.333vw);
  --mt-m: clamp(30px, 4vw, 4vw);
  --mt-s: clamp(20px, 2vw, 30px);
  --mt-xs: clamp(10px, 1.333vw, 20px);
  --mb-xl: clamp(80px, 10vw, 10vw);
  --mb-l: clamp(40px, 6vw, 6vw);
  --mb-m: clamp(30px, 4vw, 4vw);
  --mb-s: clamp(20px, 2vw, 30px);
  --mb-xs: clamp(10px, 1.333vw, 30px);
  --swup-black-darker: #ccc;
  --overlay-direction: -1;
}
body {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  background: #000;
  color: var(--base-color);
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-size: var(--font-size-base);
  font-weight: 300;
  -webkit-text-size-adjust: 100%;
  line-height: 1.8;
  overflow-x: hidden;
}
body.no-scroll {
  overflow: hidden;
}
#wrapper {
  position: relative;
  width: 100%;
  letter-spacing: 0.1em;
}
.loading-screen {
  position: fixed;
  top: -1.2vw;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #fff;
  z-index: 2147483647;
  opacity: 1;
  transition: opacity 1s ease-out;
}
.loading-screen.fade-out {
  opacity: 0;
}
.loading-text {
  font-size: var(--font-size-xs);
  margin-bottom: 20px;
}
.progress-bar {
  width: 30%;
  max-width: 200px;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
  position: relative;
  border-radius: 1px;
  overflow: hidden;
}
.progress {
  width: 0;
  height: 100%;
  background: #242424;
  transition: width 0.1s ease-in-out;
}
/*-------------------------------------

=parts,module

-------------------------------------*/
img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}
video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.parallax img {
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
  image-rendering: auto;
}
/* =link
-------------------------------------*/
.link-translate-y {
  display: inline-block;
  overflow: hidden;
}
.link-translate-y-inner {
  position: relative;
  transition: transform .5s;
}
.link-translate-y-inner::after {
  content: attr(data-text);
  position: absolute;
  top: 2em;
  left: 0;
}
@media (hover: hover) and (pointer: fine) {
  a:hover .link-translate-y-inner {
    transition: transform 0.3s;
    transform: translateY(-2em);
  }
}
/* defaults */
a {
  position: relative;
  -webkit-transition: all .3s;
  transition: all .3s;
}
a:link, a:visited {
  color: #ffffff;
  text-decoration: underline;
}
a:hover, a:active {
  color: #ffffff;
}
/* Animation
-------------------------------------*/
.animate {
  visibility: hidden;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.fadein-animation {
  visibility: visible;
  animation: fadeIn 1.2s var(--easeOutSine) 0s 1 normal;
}
/* =textAnimation
-------------------------------------*/
.text-animation-line {
  display: inline-block;
  opacity: 0;
}
/*textAnimationFadeIn*/
/*line*/
.text-animation-fadeIn {
  visibility: hidden;
}
.text-animation-fadeIn span {
  animation: textAnimationFadeIn 2s cubic-bezier(.43, .05, .27, 1.25) forwards;
  visibility: visible;
}
@keyframes textAnimationFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*textAnimationShowBottom*/
/*line*/
.text-animation-show-bottom {
  visibility: hidden;
  overflow: hidden;
}
.text-animation-show-bottom span {
  animation: textAnimationShowBottom 1.2s cubic-bezier(.5, .14, .02, .94) forwards;
  visibility: visible;
}
@keyframes textAnimationShowBottom {
  0% {
    opacity: 0;
    transform: translateY(60%);
    clip-path: inset(100% 0 0 0);
  }
  20% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    clip-path: inset(0);
  }
}
/* =マージン
-------------------------------------------------------*/
.mt-l {
  margin-top: var(--mt-l) !important;
}
.mt-m {
  margin-top: var(--mt-m) !important;
}
.mt-s {
  margin-top: var(--mt-s) !important;
}
.mt-xs {
  margin-top: var(--mt-xs) !important;
}
.mt-0 {
  margin-top: 0 !important;
}
.mb-l {
  margin-bottom: var(--mb-l) !important;
}
.mb-m {
  margin-bottom: var(--mb-m) !important;
}
.mb-s {
  margin-bottom: var(--mb-s) !important;
}
.mb-xs {
  margin-bottom: var(--mb-xs) !important;
}
.mb-0 {
  margin-bottom: 0 !important;
}
/* =custom-cursor
-------------------------------------*/
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 100px;
  height: 100px;
  pointer-events: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: var(--font-size-xxs);
  letter-spacing: 0.2em;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.3s ease, opacity 0.8s ease;
  opacity: 1;
  z-index: 9999;
}
@media (hover: none) and (pointer: coarse) {
  .custom-cursor {
    display: none;
  }
}
/* =overlay
-------------------------------------*/
.overlay-animation {
	visibility: hidden;
}
.to-top-overlay,
.to-bottom-overlay {
	position: relative;
	overflow: hidden;
	visibility: visible;
}
.to-top-overlay::before,
.to-bottom-overlay::before {
  background: #000;
  width: 100%;
  content: '';
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 100;
  transform: translateY(0%);
}
.to-top-overlay.animate::before {
  animation: to-top-overlay 1s var(--easeInOutQuint) forwards;
}
.to-bottom-overlay.animate::before {
  animation: to-bottom-overlay 1s var(--easeInOutQuint) forwards;
}
@keyframes to-bottom-overlay {
  100% {
    transform: translateY(100%);
  }
}
@keyframes to-top-overlay {
  100% {
    transform: translateY(-100%);
  }
}

/*-------------------------------------

=common parts

-------------------------------------*/
.section-body .en-headline {
  font-family: "Libre Baskerville", serif;
  font-weight: 400;
  font-size: var(--font-size-xl);
  margin-bottom: var(--mb-xs);
  line-height: 1.4;
}
.section-body .ja-headline {
  font-family: 'Noto Serif', 'Noto Serif JP', serif;
  font-size: 400px;
  font-size: var(--font-size-base);
  margin-bottom: var(--mb-xs);
  line-height: 1.6;
}
.section-body .en-txt, .section-body .ja-txt {
  font-size: var(--font-size-xxxs);
  font-weight: 200;
}
.section-footer-link .ja-headline {
  font-family: 'Noto Serif', 'Noto Serif JP', serif;
  font-size: var(--font-size-base);
  color: rgba(255, 255, 255, 0.5);
}
/*-------------------------------------

 =header
 
-------------------------------------*/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 3vw;
  z-index: 9999;
}
header .header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .logo {
  font-size: var(--font-size-xxs);
  color: #fff;
  animation: textAnimationFadeIn 2s cubic-bezier(.43, .05, .27, 1.25) forwards;
}
header .logo a {
  text-decoration: none;
}
header .nav-items {
  display: flex;
  gap: 2em;
  font-size: var(--font-size-xxs);
  font-weight: 200;
  animation: textAnimationFadeIn 2s cubic-bezier(.43, .05, .27, 1.25) forwards;
}
header .nav-items a {
  display: inline-block;
  text-decoration: none;
}
header .nav-items a:link, header .nav-items a:visited {
  color: var(--base-color);
}
header .nav-items a:hover, header .nav-items a:active {
  color: var(--base-color);
}
@media screen and (max-width: 1024px) {
  header .nav-wrap {
    display: none;
  }
}
@media screen and (max-width: 599px) {
  header {
    /*padding: 1em;*/
  }
}
/* =hamburger-menu
-------------------------------------------------------*/
.hamburger-menu {
  display: none;
}
@media screen and (max-width: 1024px) {
  .hamburger-menu {
    display: block;
  }
  .hamburger {
    display: block;
    width: 40px;
    height: 40px;
    position: fixed;
    top: 2em;
    right: 2em;
    z-index: 999997;
    padding-top: 12px;
    padding-left: 10px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
  }
  .hamburger {
    opacity: 0;
    transition: opacity 0.4s ease 1.8s;
  }
  .hamburger.show {
    opacity: 1;
  }
  .hamburger__icon {
    position: relative;
    margin-top: 7px;
    margin-bottom: 7px;
  }
  .hamburger__icon, .hamburger__icon:before, .hamburger__icon:after {
    display: block;
    width: 20px;
    height: 1px;
    background-color: #ccc;
    -moz-transition-property: background-color, -moz-transform;
    -o-transition-property: background-color, -o-transform;
    -webkit-transition-property: background-color, -webkit-transform;
    transition-property: background-color, transform;
    -moz-transition-duration: 0.4s;
    -o-transition-duration: 0.4s;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
  }
  .hamburger__icon:before, .hamburger__icon:after {
    position: absolute;
    content: "";
  }
  .hamburger__icon:before {
    top: -7px;
    width: 24px;
  }
  .hamburger__icon:after {
    top: 7px;
    width: 22px;
  }
  .hamburger.active .hamburger__icon {
    background-color: transparent;
  }
  .hamburger.active .hamburger__icon:before {
    -moz-transform: translateY(7px) rotate(45deg);
    -ms-transform: translateY(7px) rotate(45deg);
    -webkit-transform: translateY(7px) rotate(45deg);
    transform: translateY(7px) rotate(45deg);
    background-color: #fff;
  }
  .hamburger.active .hamburger__icon:after {
    -moz-transform: translateY(-7px) rotate(-45deg);
    -ms-transform: translateY(-7px) rotate(-45deg);
    -webkit-transform: translateY(-7px) rotate(-45deg);
    transform: translateY(-7px) rotate(-45deg);
    width: 24px;
    background-color: #fff;
  }
  .fat-nav {
    top: 0;
    left: 0;
    z-index: 999998;
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 1);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }
  .fat-nav.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .fat-nav__wrapper {
    width: 100%;
    height: 100% !important;
    table-layout: fixed;
    transform: translateY(0) !important;
  }
  .fat-nav-inner {
    padding: 3vw;
  }
  .fat-nav .fat-nav__wrapper a {
    position: relative;
    color: #fff;
    text-decoration: none;
  }
  .fat-nav .fat-nav__wrapper a:hover, .fat-nav .fat-nav__wrapper a:active {
    filter: alpha(opacity=60);
    -moz-opacity: 0.60;
    opacity: 0.60;
    -webkit-transition: all .3s;
    transition: all .3s;
  }
  .fat-nav ul.fat-nav-items {
    margin-top: 10vw;
  }
  .fat-nav ul.fat-nav-items li {
    display: block;
    font-size: 2.4rem;
    margin: 30px 0;
    /*color: #999;*/
  }
  .fat-nav ul.fat-nav-items:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
  }
  .fat-nav ul.fat-nav-items li a {
    display: block;
    line-height: 1.4;
    color: #fff;
  }
  .no-scroll {
    overflow: hidden;
  }
}
@media screen and (max-width: 599px) {
  .hamburger {
    top: 5px;
    right: 10px;
  }
}
/*-------------------------------------

 =footer
 
-------------------------------------*/
footer {
  padding: 3vw;
	text-align: right;
	font-size: var(--font-size-xxs);
}