@charset "UTF-8";

#loading {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #000;
  transition: opacity .4s 1s;
}
body.loaded #loading {
  opacity: 0;
}

/*  MV
==================== */
#mv {
  background: var(--black);
  position: relative;
}
#mv .imgBox {
  width: 75.641%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  clip-path: polygon(15vw 0%, 100% 0, 100% calc(100% - 15vw), calc(100% - 15vw) 100%, 0 100%, 0 15vw);
}
#mv .main-bg {
  overflow: visible;
}
#mv .bg1 {
  width: 70%;
  height: auto;
  aspect-ratio: 1/1;
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
  position: absolute;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(247deg, var(--black) 0%, var(--l-black) 50%);
}
#mv .bg2 {
  position: absolute;
  bottom: -50vw;
  z-index: 2;
  margin-top: 0;
}
@media (orientation: portrait){
  #mv {
    height: max(calc(160vw + 7rem),100svh);
  }
  #mv .imgBox {
    transform: translate(-50%,calc(-50% - 8vw));
  }
  #mv .key {
    font-size: 7.8vw;
    text-align: center;
  }
  #mv .key span:nth-of-type(1) {
    font-size: 160%;
    margin-bottom: 51vw;
  }
  #mv .key span._large {
    font-size: 307%;
    margin-bottom: .15em;
  }
}
@media (orientation: landscape) {
  #mv {
    height: max(calc(45vw + 7rem),100svh);
    padding-bottom: 3vw;
  }
  #mv .imgBox {
    width: 40%;
    transform: translate(-50%,calc(-50% - 2.5vw));
    clip-path: polygon(7vw 0%, 100% 0, 100% calc(100% - 7vw), calc(100% - 7vw) 100%, 0 100%, 0 7vw);
  }
  #mv .key {
    font-size: 3.5vw;
  }
  #mv .key span:nth-of-type(1) {
    margin-bottom: 12.5vw;
    margin-top: 2.25vw;
  }
  #mv .key span._large {
    font-size: 307%;
    margin-bottom: .05em;
  }
  #mv .key span._large br {
    display: none;
  }

  #mv .bg1 {
    width: 30%;
  }
  #mv .bg2 {
    bottom: -41vw;
  }
}


#mv .scroll-down {
  display: block;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
}
#mv .scroll-down span {
  font-family: var(--font1);
  font-size: .857rem;
  display: inline-block;
  padding: 1em;
}
#mv .scroll-down::after {
  content: '';
  position: relative;
  display: block;
  width: 1px;
  height: 3.35rem;
  vertical-align: middle;
  margin: 0 auto;
  background-color: currentcolor;
  animation: scroll-border 2s -1s cubic-bezier(1, 0, 0, 1) infinite;
  will-change: animation;
}
#mv .scroll-down::before {
  content: '';
  position: relative;
  display: block;
  width: 0;
  height: 0;
  vertical-align: middle;
  margin: 0 auto;
  border-right: 1px solid transparent;
  border-bottom: 1px solid transparent;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%) rotate(45deg);
  animation: scroll-arrow 2s .45s cubic-bezier(1, 0, 0, 1) infinite;
}

@keyframes scroll-border {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  30% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  70% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
@keyframes scroll-arrow {
  0%,20% {
    width: 0;
    height: 0;
    border-color: translate;
  }
  100% {
    width: .4em;
    height: .4em;
    border-color: currentcolor;
  }
}



/*  ABOUT
==================== */
@media (min-width: 992px) {
  #cover {
    width: 50%;
  }
}


#about {
  width: 100%;
  clip-path: polygon(0 0, 100% 40vw, 100% 100%, 0 calc(100% - 40vw));
  margin-bottom: -42vw;
  position: relative;
}
#about .imgBox {
  color: var(--black);
}
#about .imgBox picture {
  position: fixed;
  top: 0;
  left: 0;
}
#about .imgBox .sticky-img {
  position: sticky;
  top: 0;
  left: 0;
}
#about .txtBox {
  background: var(--black);
  position: relative;
}

@media (max-width: 991px) {
  #about .imgBox {
    height: 250vh;
    padding: 20vh 0 0;
  }
  #about .imgBox .key {
    font-size: max(3rem,9vw);
    text-align: center;
    padding: 30vh 0 0;
  }
  #about .imgBox .key span {
    transform: none;
  }
  #about .txtBox {
    font-size: 108%;
    margin-top: calc((50vh + 40vw) *-1);
    padding: 60vw 7.5vw 60vw;
    clip-path: polygon(0 0, 100% 40vw, 100% 100%, 0 100%);
  }
  #about .txtBox .h1 {
    font-size: 3.65em;
  }
}
@media (min-width: 992px) {
  #about {
    display: flex;
    margin-bottom: -72vw;
  }
  #about .imgBox {
    width: 50%;
    flex-basis: 50%;
    padding: 20vh 0 0;
  }
  #about .imgBox .sticky-img {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #about .imgBox .key {
    padding: 20vw 7.5vw 40vw;
    white-space: nowrap;
  }
  #about .txtBox {
    width: 50%;
    flex-basis: 50%;
    padding: 50vw 7.5vw 60vw;
  }
}


/*  BRAND
==================== */
#main-content {
  clip-path: polygon(0 1px, 100% calc(40vw + 1px), 100% 100%, 0 100%);
}

.content-block__2 {
  position: relative;
}

#brand_cover_bg {
  height: 100svh;
  margin-bottom: -100svh;
  padding: 0;
}
#brand {
  padding: 1px 0 0;
  position: relative;
  z-index: 1;
  clip-path: polygon(0 0, 100% 40vw, 100% 100%, 0 calc(100% - 40vw));
}
#brand .main-bg::before {
  top: 240vw;
  bottom: 0;
  clip-path: polygon(0 0, 100% 40vw, 100% 100%, 0 calc(100% - 40vw));
}
#brand .main-bg .bg + .bg {
  margin-top: -40vw;
}
#brand .main-bg .bg:nth-of-type(5) {
  position: absolute;
  bottom: 0;
}
#brand .hero {
  width: 100%;
  height: 90vw;
  margin-top: 110vw;
}
#brand .hero .en_ttl {
  font-size: 14.5vw;
  font-weight: 800;
  position: absolute;
  bottom: 50%;
  margin-bottom: min(80px, 12vw);
}
#brand .hero .en_ttl::after {
  content: '';
  display: block;
  width: 1px;
  height: 15rem;
  background: var(--border1);
  margin: 0 auto;
}
#brand .container {
  padding-top: 25vw;
  padding-bottom: 40vw;
  margin-bottom: -100vh;
  position: relative;
}

@media (orientation: landscape){
  #brand .main-bg::before {
    top: 100vw;
  }
  #brand .hero {
    height: 45vw;
    margin-top: 65vw;
  }
  #brand .hero .en_ttl {
    font-size: 6vw;
  }
  #brand .container {
    padding-top: 2.5vw;
  }
}


.blur-box {
  z-index: 2;
}
.blur-box .btn {
  margin-bottom: .75em;
}
.blur-box .copy {
  margin-bottom: 1.25em;
}


.blur-box .section__header {
  position: relative;
}
.blur-box .section__header._large .ttl {
	font-size: 1.714rem;
	letter-spacing: -0rem;
}

@media (max-width: 991px) {
  .blur-box-block .blur-box {
    margin-right: 7.5vw;
    margin-left: 7.5vw;
  }
}
@media (max-width: 575px) {
  .blur-box-block .blur-box {
    margin-right: 0;
    margin-left: 0;
  }
  .blur-box .section__header._large {
    align-items: baseline;
  }
  .blur-box .section__header._large .ttl[data-subttl]::after {
    position: absolute;
    top: 100%;
    left: 0;
  }
}

@media (min-width: 992px) {
  .blur-box-block .imgBox {
    flex: 0 0 69%;
    width: 69%;
  }
  .blur-box-block .blur-box {
    width: calc(40% + 5.5vw);
  }
  .blur-box-block._reverse .imgBox {
    margin-left: 0;
    margin-right: auto;
  }
  .blur-box-block._reverse .blur-box {
    right: 0;
    left: auto;
    margin: 0 -5.5vw 0 0;
  }
  .blur-box .section__header._large .ttl[data-subttl]::after {
    margin-top: .75em;
  }
}





/*  Infinite text
==================== */
#infinite-text {
  width: 100%;
  height: 250vh;
  background: var(--black);
  position: relative;
  z-index: -2;
  margin-top: -80vw;
}
.infinite-text-inner {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: sticky;
  top: 0;
}
.logo-wrapper {
  width: min(80vw, 62vh);
  aspect-ratio: 500 / 581;
  margin: 0 auto;
  position: absolute;
  transform: translateX(6%);
}

.logo-svg {
  width: 100%;
  height: 100%;
}




/*  RECRUIT
==================== */
.content-block__3 {
  background: var(--black);
  position: relative;
  z-index: 3;
  margin-bottom: -1px;
}
.content-block__3::before {
content: '';
  display: block;
  width: 100%;
  background: var(--black);
  position: absolute;
  top: 0;
  left: 0;
  bottom: -1px;
  z-index: -1;
}

#recruit .imgBox {
  position: relative;
}
#recruit .imgBox .headline {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
#recruit .blur-box {
  margin-top: -10rem;
}
@media (max-width: 991px) {
  #recruit .blur-box {
    margin-right: 7.5vw;
    margin-left: 7.5vw;
  }
}
@media (max-width: 767px) {
  #recruit .blur-box {
    margin-right: 0;
    margin-left: 0;
  }
}
@media (min-width: 576px) {
  #recruit .blur-box {
    margin-top: -3rem;
  }
}
@media (min-width: 768px) {
  #recruit .blur-box {
    width: 60vw;
    margin-top: -13rem;
    margin-right: -7.5vw;
    margin-left: auto;
  }
}
@media (min-width: 992px) {
  #recruit .blur-box {
    width: 50vw;
    margin-top: -15rem;
    margin-right: -5.5vw;
  }
}









