@charset "utf-8";

/*
==============
raws.css
==============
*/

/* -----------------
■ contents
------------------- */
.contents {
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(100svh - 58px);
}


@media screen and (max-width: 767px)
{
  .contents {
    height: calc(100svh - calc(58 / var(--customW)));
  }

} /* media end */




/* -----------------
■ about
------------------- */
.about {
  display: flex;
  gap: 0 30px;
}

.about__text {
  color: #fa0500;
  font-size: 1.2rem;
  line-height: 1.5;
  letter-spacing: 0.06em;
  opacity: 0;
  transition: opacity 0.2s;
}

.about__text:nth-of-type(2) {
  transition-delay: 0.05s;
}

.about__text:nth-of-type(3) {
  transition-delay: 0.1s;
}

body.is-ready .about__text {
  opacity: 1;
}


@media screen and (max-width: 767px)
{
  .about {
    gap: 0 calc(25 / var(--customW));
  }

  .about__text {
    font-size: calc(12 / var(--customW));
  }

} /* media end */

