@charset "utf-8";

/*
Theme Name:	ZULA
Description: ZULA
Version: 1.0.0
*/

/* ==================================
	Common
	================================== */

html {
  color: #000;
  font-family: YakuHanJP, YuGothic, "Yu Gothic Medium", "Yu Gothic", "Noto Sans JP", Meiryo, sans-serif;
  line-height: 1.8;
  letter-spacing: 0.02em;
  font-feature-settings: "palt";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-size-adjust: 100%;
  word-spacing: 1px;
}

html {
  font-size: calc(10 / 1500 * 100vw);
}

@media (max-width: 780px) {
  html {
    font-size: calc(10 / 400 * 100vw);
  }
}

body {
  width: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
  background: #fff;
}

@media screen and (min-width: 1500px) {
}
@media screen and (min-width: 800px) and (max-width: 1000px) {
}

/* ==================================
utility
================================== */
.pc {
  display: block;
}

.sp {
  display: none;
}

.hidden-sp {
  @media (max-width: 780px) {
    display: none !important;
  }
}

.hidden-pc {
  display: none !important;

  @media (max-width: 780px) {
    display: block !important;
  }
}

.flex {
  display: flex;
}

.en {
  font-family: Montserrat, sans-serif;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  border: 0;
  white-space: nowrap;
  clip: rect(0, 0, 0, 0);
}

@media (max-width: 780px) {
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }
}

/* ==================================
	common
	================================== */
.bg-grey {
  background: #f6f6f6;
}

.common-title {
  margin-bottom: 2.4rem;
  font-size: 3.4rem;
  font-weight: 600;
  line-height: 1;
}

.common-ruby {
  font-size: 2rem;
  font-weight: 500;
}
@media (max-width: 780px) {
  .common-title {
    margin-bottom: 1.6rem;
    font-size: 2.8rem;
  }

  .common-ruby {
    font-size: 1.6rem;
	line-height: 1;
  }
}

/* ==================================
	arrow
	================================== */
.common-arrow-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50rem;
  cursor: pointer;
}

.common-arrow-icon.common-arrow-bg-white {
  background: #fff;
}

.common-arrow-icon.common-arrow-bg-black {
  background: #000;
}

.common-arrow {
  display: block;
  width: 1.885rem;
  height: 1.697rem;
}

.common-arrow-icon.common-arrow-bg-black .common-arrow {
  fill: #fff;
}

/* ==================================
	slick
	================================== */
.slider-controls {
  gap: 0.8rem;
}

.slick-arrow {
  transition: 0.3s ease-out;
}

.slick-arrow.slick-disabled {
  opacity: 0.2;
}

.slider-prev.slick-arrow .common-arrow-icon {
  transform: rotate(180deg);
}
@media (max-width: 780px) {
}

/* ==================================
	btn
	================================== */
.common-btn {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 30rem;
  height: 6.4rem;
  overflow: hidden;
  border-radius: 50rem;
  color: #fff;
  transition: all 0.5s ease;
}

.common-btn-text {
  position: relative;
  margin-left: 3.2rem;
  font-size: 1.4rem;
  font-weight: 700;
}

.common-btn-icon {
  position: relative;
  margin-right: 0.8rem;
}

.common-btn::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  transition: all 0.5s ease;
  transition-property: transform;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
}

.common-btn-black.common-btn {
  background-color: #000;
}

.common-btn-black.common-btn::before {
  background-color: #806d00;
}

.common-btn-black .common-arrow {
  transition: all 0.5s ease;
  fill: #000;
}
@media (min-width: 781px) {
  .common-btn-black:hover .common-arrow {
    fill: #806d00;
  }

  .common-btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
  }
}
@media only screen and (max-width: 780px) {
  .common-btn {
    width: 28rem;
	margin: auto;
  }

  .common-btn-text {
    font-size: 1.2rem;
  }
}

/* ==================================
header
================================== */
.header-wrap {
  position: fixed;
  top: 0;
  z-index: 99;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 18rem;
  padding: 0 5%;
  background-color: transparent;
  transition: 0.3s ease-out;
  pointer-events: none;
  /*mix-blend-mode: exclusion;*/
}

.header-logo {
  position: relative;
  width: 3.839rem;
  height: 4.4rem;
  pointer-events: all;
}

.header-link {
  display: block;
  transition: 0.3s;
}

.header-r {
  align-items: center;
}
.on .header-link {
  content: url("assets/images/common/logo-wh.svg");
}

@media only screen and (max-width: 780px) {
  .header-wrap {
    height: 8rem;
    padding: 0 5%;
	mix-blend-mode: exclusion;
  }

  .header-logo {
    width: 3.1rem;
    height: 3.6rem;
  }
  .header-link {
    content: url("assets/images/common/logo-wh.svg");
  }
}

/* ==================================
hamburger
================================== */
.btn-menu {
  position: relative;
  width: 3.2rem;
  height: 2.6rem;
  margin-left: 7.2rem;
  transition:
    opacity 0.2s ease 0s,
    transform 0.6s cubic-bezier(0.11, 0.6, 0.58, 1);
  cursor: pointer;
  pointer-events: all;
}

.btn-menu::after {
  content: "";
  width: 8rem;
  height: 8rem;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-2.4rem, -2.7rem);
  background-color: #fff;
  border-radius: 4rem;
}

.nav-btn {
  position: relative;
  z-index: 1;
  display: inline-block;
  width: 100%;
  height: 100%;
  opacity: 1;
}

.nav-btn::before,
.nav-btn::after {
  position: absolute;
  width: 50%;
  height: 2px;
  background-color: #000;
  transition:
    width 0.2s ease 0.1s,
    background-color 0.3s linear 0s,
    opacity 0s ease 0.2s;
  content: "";
}

.nav-btn::before {
  top: 0;
  right: 0;
}

.nav-btn::after {
  bottom: 0;
}

.nav-btn span {
  position: absolute;
  top: 50%;
  width: 100%;
  height: 2px;
  background-color: #000;
  opacity: 1;
  transition: 0.3s;
  transform: translateY(-50%);
}

.on .nav-btn::before,
.on .nav-btn::after {
  top: 50%;
  width: 100%;
  transition:
    top 0.2s ease 0s,
    background-color 0.3s linear 0s,
    transform 0.2s ease 0.3s;
  transform: translateY(-50%) rotate(45deg);
}

.on .nav-btn::after {
  bottom: auto;
  transform: translateY(-50%) rotate(-45deg);
}

.on .nav-btn span {
  opacity: 0;
  transition:
    width 0.2s ease 0.1s,
    background-color 0.3s linear 0s,
    opacity 0s ease 0.2s;
}

@media only screen and (max-width: 780px) {
  .btn-menu {
    width: 2.8rem;
	height: 2rem;
  }
  .btn-menu::after {
    content: none;
  }
  .nav-btn span {
    background-color: #fff;
  }
  .nav-btn::before,
  .nav-btn::after {
      background-color: #fff;
  }
}

/* ==================================
close
================================== */

.nav-close {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 12;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  cursor: pointer;
}

.on .nav-close {
  opacity: 1;
  transition: 0.3s;
}

/* ==================================
g-nav
================================== */
.g-nav {
  justify-content: flex-end;
  align-items: center;
}

.on .g-nav {
  opacity: 0;
}

.nav-list {
  background: #fff;
  padding: 0 4.8rem;
  height: 8rem;
  border-radius: 4.4rem;
}

.nav-item {
  margin: auto -0.04em auto 4.8rem;
  color: #000;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 8rem;
}

.nav-item:first-of-type {
  margin-left: 0;
}

.nav-item a {
  position: relative;
  cursor: pointer;
  pointer-events: all;
}

.nav-btn-list {
  margin-left: 8rem;
}
@media only screen and (max-width: 780px) {
  .g-nav {
    display: none;
  }
}

/* ==================================
contact-btn
================================== */
.contact-btn {
  z-index: 2;
  display: block;
  width: 4.8rem;
  height: 4.8rem;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: none;
  pointer-events: all;
}

.contact-btn-container {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 50%;
}

.contact-btn-container::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  border: 1px solid #a0a0a0;
  border-radius: 50%;
  content: "";
}

.contact-btn-container svg.circle {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  fill: none;
  stroke: currentcolor;
  stroke-dasharray: 200, 200;
  stroke-dashoffset: 200;
  stroke-width: 2;
}

.contact-btn-container .icon-contact {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 2.2rem;
  height: 1.6rem;
  fill: #fff;
  transform: translate(-50%, -50%);
}

@media only screen and (max-width: 780px) {
  .contact-btn {
    display: none;
  }
}

/* ==================================
	menu
	================================== */

/* base */
.menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 97;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
}

.on .menu {
  overflow-y: scroll;
  opacity: 1;
  visibility: visible;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.on .menu::-webkit-scrollbar {
  display: none;
}

.menu-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.menu-wrap {
  position: relative;
}

/* custom */
.menu {
  background: #000;
  color: #fff;
  transition: 0.6s ease-out;
}

.menu-wrap {
  width: 100vw;
  height: 100%;
  margin: 0 auto;
}

.menu-inner {
  height: 100%;
}

.menu-top {
  height: 100%;
}

.menu-l {
  justify-content: center;
  align-items: center;
  width: 57.6%;
}

.menu-r {
  align-items: center;
}

.menu-title {
  font-size: 3.4rem;
  font-weight: 600;
  letter-spacing: 0.024em;
}

.menu-list {
  margin-right: 7.2rem;
}

.menu-item {
  margin-bottom: 4rem;
  font-size: 1.8rem;
  line-height: 1;
}

.menu-item:last-child {
  margin-bottom: 0;
}

.menu-link {
  align-items: baseline;
}

.menu-en {
  font-size: 1.8rem;
  font-weight: 600;
}

.menu-jp {
  margin-left: 1rem;
  color: #c4c4c4;
  font-size: 1.4rem;
  font-weight: 500;
}

.menu-child {
  margin-top: 2.4rem;
  color: #c4c4c4;
  font-size: 1.5rem;
  font-weight: 500;
}

.menu-child li {
  margin-bottom: 2.4rem;
}

.menu-child li:last-child {
  margin-bottom: 0;
}

.menu-bottom {
  position: absolute;
  bottom: 6.4rem;
  left: 50%;
  justify-content: space-between;
  transform: translateX(-50%);
}

.menu-copyright {
  color: #c4c4c4;
  font-size: 1.4rem;
  font-weight: 500;
}

.menu-contact-privacy {
  align-items: center;
  color: #c4c4c4;
  font-size: 1.4rem;
  font-weight: 500;
}

.menu-contact-privacy span {
  display: block;
  width: 1px;
  height: 1.4rem;
  margin: 0 1rem;
  background: #c4c4c4;
}

@media (max-width: 780px) {
  .menu-wrap {
    height: auto;
    padding-top: 11.4rem;
    padding-bottom: 6rem;
  }

  .menu-top {
    width: 90%;
    height: auto;
    margin: 0 auto;
  }

  .menu-l {
    display: none;
    width: auto;
  }

  .menu-r {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .menu-r-inner {
    flex-direction: column;
    width: 100%;
  }

  .menu-list {
    margin-right: 0;
  }

  .menu-item {
    position: relative;
    margin-bottom: 0;
    font-size: 1.6rem;
  }

  .menu-list:last-child .menu-item:last-child::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #c4c4c4;
    content: "";
  }

  .menu-item::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #c4c4c4;
    content: "";
  }

  .menu-en {
    display: none;
  }

  .menu-jp {
    margin-left: 0.6rem;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 500;
  }

  .menu-link {
    padding: 2.4rem 0;
  }

  .menu-child {
    margin-top: 0;
    margin-bottom: 2rem;
    margin-left: 0.6rem;
    font-size: 1.4rem;
    line-height: 2.769230769230769;
  }

  .menu-child li {
    margin-bottom: 0;
  }

  .menu-bottom {
    position: relative;
    bottom: auto;
    left: auto;
    flex-direction: column-reverse;
    margin-left: 0.6rem;
    transform: initial;
  }

  .menu-contact-privacy {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 4rem;
    margin-bottom: 5.6rem;
    line-height: 1;
  }

  .menu-contact-privacy a:first-child {
    margin-bottom: 3.2rem;
  }

  .menu-contact-privacy span {
    display: none;
  }
}

/* ==================================
	footer
	================================== */
.footer-wrap {
  padding: 12rem 0;
  background: #000;
  color: #fff;
}

.footer-inner {
  justify-content: space-between;
}

.footer-l {
  flex-direction: column;
  justify-content: space-between;
}

.footer-logo {
  width: 19.7rem;
}

.footer-copyright {
  color: #c4c4c4;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.footer-list {
  margin-right: 8rem;
}

.footer-item {
  margin-bottom: 4.8rem;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
}

.footer-item:last-child {
  margin-bottom: 0;
}

.footer-child {
  margin-top: 2.4rem;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2;
}

.footer-company-parent {
  margin-bottom: 2.4rem;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
}

.footer-company-child {
  display: block;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2;
}
@media (max-width: 780px) {
  .footer-wrap {
    padding: 6.4rem 0;
  }

  .footer-inner {
    flex-direction: column;
  }

  .footer-l {
    margin-bottom: 6.4rem;
  }

  .footer-logo {
    width: 18.8rem;
  }

  .footer-r {
    flex-direction: column;
  }

  .footer-list {
    margin-right: 0;
  }

  .footer-item {
    position: relative;
    margin-bottom: 0;
	font-weight: 500;
  }

  .footer-item::before {
    position: absolute;
    top: 0;
    width: 100%;
    height: 1px;
    background: #c4c4c4;
    content: "";
  }

  .footer-link {
    display: block;
    margin-left: 0.6rem;
    padding: 2rem 0;
  }

  .footer-child {
    margin-top: 0;
    margin-bottom: 2rem;
    margin-left: 0.6rem;
    font-size: 1.4rem;
    line-height: 2.769230769230769;
  }

  .footer-company {
    margin-top: 4rem;
    margin-left: 0.6rem;
  }

  .footer-company-parent {
    margin-bottom: 1.6rem;
    font-size: 1.4rem;
  }

  .footer-company-child {
    font-size: 1.3rem;
    line-height: 2.769230769230769;
  }

  .footer-copyright {
    margin-top: 5.6rem;
    margin-left: 0.6rem;
  }

  .footer-sp-item {
    font-size: 1.4rem;
	font-weight: 500;
  }

  .footer-item.footer-sp-item:last-child::before {
    content: none;
  }

  .footer-sp-item {
    padding-top: 3.2rem;
  }

  .footer-sp-item:nth-child(4) {
    padding-top: 4rem;
  }

  .footer-sp-item:nth-child(4) .footer-link,
  .footer-sp-item .footer-link {
    padding: 0;
  }
}

/* ==================================
	アコーディオン
	================================== */
@media (max-width: 780px) {
  /* タイトル部分（親） */
  .parent {
    position: relative;
    cursor: pointer;
  }

  /* + アイコン */
  .parent::before,
  .parent::after {
    position: absolute;
    top: 50%;
    right: 0.8rem;
    width: 1.6rem;
    height: 1px;
    background-color: #c4c4c4;
    transition: 0.3s ease-out;
    content: "";
    transform: translateY(-50%);
  }

  .parent::after {
    transform: translateY(-50%) rotate(90deg);
  }

  /* × アイコン（close時） */
  .parent.close::before {
    transform: translateY(-50%) rotate(45deg);
  }

  .parent.close::after {
    transform: translateY(-50%) rotate(-45deg);
  }

  /* コンテンツ部分（子） */
  .child {
    display: none;
  }
}

/* ==================================
	common
	================================== */
main {
  width: 100%;
  padding: 20rem 0 0;
}

.inner {
  width: 90%;
  margin: 0 auto;
}

.middle-inner {
  width: 56%;
  margin: 0 auto;
}
@media only screen and (max-width: 780px) {
  main {
    padding-top: 13.6rem;
  }

  .inner {
    width: 90%;
  }
	
  .middle-inner {
    width: 90%;
  }
}

/* ==================================
	Works
	================================== */

.common-works-r {
  width: 73.7%;
  margin-left: auto;
}

.common-works-list {
  margin-bottom: 5.6rem;
}

.common-works-item {
  margin-right: 4rem;
}

.common-works-item:last-child {
  margin-right: 0;
}

.common-works-thumbnail {
  margin-bottom: 2rem;
  aspect-ratio: 420/264;
}

.common-works-thumbnail img {
  height: 100%;
  object-fit: cover;
}

.common-works-title {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.8000000847710504;
  letter-spacing: 0.022em;
}

.common-works-categories {
  padding: 1.6rem 0 0;
  margin: 1.6rem auto 0;
  border-top: 1px solid #f6f6f6;
}

.common-works-tag-list {
  font-size: 1.2rem;
}

.common-works-tag-item {
  padding: 0.2rem 0;
}

.common-works-tag-title {
  font-weight: inherit;
  text-align: center;
  background: #f6f6f6;
  padding: 0.4rem 0;
  width: 9.2rem;
}

.common-works-tag-name {
  width: calc(100% - 9.2rem);
  padding: 0.4rem 1.2rem;
}

.common-works-tag {
  margin-right: 1rem;
  padding: 0.6rem 1.4rem;
  border-radius: 50rem;
  background: #000;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0;
}

.common-works-tag:last-child {
  margin-right: 0;
}


.common-works-bottom {
  justify-content: space-between;
  align-items: center;
  width: 92.8%;
}
@media only screen and (max-width: 780px) {
  .common-works-r {
    width: 100%;
  }

  .common-works-l {
    margin-bottom: 6.4rem;
  }

  .common-works-list {
    margin-bottom: 6.4rem;
  }
	
  .common-works-list .slick-slider .slick-track {
      width: 100%!important;
  }

  .common-works-item {
	width: 100%!important;
    margin-right: 0;
    margin-bottom: 6.4rem;
  }

  .common-works-item:last-child {
    margin-bottom: 0;
  }

  .common-works-thumbnail {
    margin-bottom: 2.4rem;
  }

  .common-works-categories {
    margin-bottom: 2.4rem;
  }
	
  .common-works-categories:last-child {
      margin-bottom: 0;
  }

  .common-works-title {
    font-size: 1.6rem;
  }

  .common-works-bottom {
    justify-content: center;
    width: 100%;
  }

  .common-works-bottom .slider-controls {
    display: none;
  }
}

/* ==================================
 infinite-btn
  ================================== */
.infinite-loading {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 30rem;
  height: 6.4rem;
  margin: 12rem auto 0;
  overflow: hidden;
  border-radius: 50rem;
  background-color: #000;
  color: #fff;
  transition: all 0.5s ease;
  cursor: pointer;
}

.infinite-loadingText {
  position: relative;
  margin-left: 3.2rem;
  font-size: 1.4rem;
  font-weight: 700;
}

.infinite-loading .common-btn-icon {
  transform: rotate(90deg);
}

.infinite-loading.loading {
  opacity: 0.6;
  pointer-events: none;
}

.infinite-loading.done {
  display: none;
}

/* ==================================
  loader
  ================================== */
#loader {
  position: fixed;
  z-index: 0;
  z-index: 999;
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  min-height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: #fff;
  opacity: 0;
  transition: opacity 0.5s linear;
  pointer-events: none;
}

#loader.on {
  opacity: 1;
}

/* ==================================
	animation
	================================== */

.mvUp,
.mvUpDly,
.mvUpDlyChild {
  z-index: 2;
  opacity: 0;
  transition: 0.5s ease-out;
  transition-property: opacity, transform;
  transform: translateY(20px);
}

.mvUp.active,
.mvUpDly.active,
.mvUpDlyChild.active {
  opacity: 1;
  transform: translateY(0);
}

.D03s {
  transition-delay: 0.3s;
  animation-delay: 0.3s;
}

.D06s {
  transition-delay: 0.6s;
  animation-delay: 0.6s;
}

.D09s {
  transition-delay: 0.9s;
  animation-delay: 0.9s;
}

.D12s {
  transition-delay: 1.2s;
  animation-delay: 1s;
}

.D15s {
  transition-delay: 1.5s;
  animation-delay: 1.5s;
}

.D18s {
  transition-delay: 2s;
  animation-delay: 2s;
}

@media (min-width: 781px) {
  .header-logo:hover,
  .menu-link:hover,
  .nav-item:hover,
  .contact-btn:hover,
  .nav-btn:hover,
  .menu-child li:hover,
  .menu-contact-privacy a:hover,
  .slick-arrow:hover,
  .information-item:hover,
  .footer-link:hover,
  .footer-child li:hover,
  .footer-logo:hover,
  .footer-company-child:hover,
  .common-works-item a:hover,
  .single-bottom-item a:hover,
  .works-item a:hover {
    opacity: 0.5;
  }

  .header-logo,
  .menu-link,
  .nav-item,
  .contact-btn,
  .nav-btn,
  .menu-child li,
  .menu-contact-privacy a,
  .slick-arrow,
  .information-item,
  .footer-link,
  .footer-child li,
  .footer-logo,
  .footer-company-child,
  .common-works-item a,
  .single-bottom-item a,
  .works-item a {
    transition: opacity ease-out 0.2s;
  }

  .common-works-thumbnail,
  .works-thumbnail {
    overflow: hidden;
  }

  .common-works-item img,
  .single-bottom-item img,
  .works-thumbnail img {
    transition: transform ease-out 0.2s;
  }

  .common-works-item:hover img,
  .single-bottom-item:hover img,
  .works-item:hover img {
    transform: scale(1.03);
  }
}

.text-split {
  overflow: hidden;
}

.text-split .char {
  display: inline-block;
  white-space: pre;
  opacity: 0;
  transition:
    transform 0.8s cubic-bezier(0.7, 0.2, 0.1, 1),
    opacity 0.2s cubic-bezier(0.7, 0.2, 0.1, 1);
  transform: translateY(100%);
}

.text-split.animate .char {
  opacity: 1;
  transform: translateY(0);
}

.menu-r {
  opacity: 0;
  transition: 0.2s ease-out;
}

body.on .menu-r {
  opacity: 1;
  transition: 0.8s ease-out;
  transition-delay: 0.5s;
}
