/* Breakpoint
======================================= */
.preloader {
  overflow: hidden;
  opacity: 1;
}

.preloader__background {
  position: fixed;
  inset: 0;
  height: 100vh;
  background-color: var(--color-base);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.preloader__text {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
  width: 100%;
  font-size: 2.8rem;
  font-family: var(--font-serif-en);
  line-height: 1.1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-white);
  text-align: center;
  z-index: 3000;
}
@media screen and (max-width: 768px) {
  .preloader__text {
    font-size: 2.4rem;
  }
}

.preloader__text span {
  opacity: 0;
  visibility: hidden;
  display: block;
}

.mainvisual {
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background-color: var(--color-white);
  display: grid;
  place-items: center;
  position: relative;
}

.mainvisual__wrapper {
  width: fit-content;
  margin: 0 auto;
  position: relative;
  z-index: 200;
}

.mainvisual__caption {
  font-size: clamp(16px, 13.087px + 0.777vw, 28px);
  font-family: var(--font-sans-en);
  font-weight: 400;
  letter-spacing: 0.2em;
  text-align: center;
  overflow: hidden;
}

.mainvisual__caption span {
  display: block;
}

.mainvisual__title {
  font-size: clamp(46px, 27.2px + 5.875vw, 140px);
  font-family: var(--font-serif-en);
  font-weight: 300;
  color: var(--color-base);
  text-transform: uppercase;
  margin: clamp(21px, 13px + 1.404vw, 40px) auto clamp(16px, 8px + 1.404vw, 31px);
  text-align: center;
}

.mainvisual__wordWrap {
  display: block;
  overflow: hidden;
  line-height: 1.05;
}

.mainvisual__word {
  display: block;
}

.mainvisual__scroll {
  position: absolute;
  left: 5vw;
  bottom: 40px;
}
@media screen and (max-width: 768px) {
  .mainvisual__scroll {
    left: 20px;
    bottom: 24px;
  }
}

.mainvisual__scrollText {
  font-size: 1.6rem;
  font-family: var(--font-sans-en);
  font-weight: 300;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .mainvisual__scrollText {
    font-size: 1.3rem;
  }
}

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

.mainvisual__background {
  width: 40%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .mainvisual__background {
    width: 70%;
  }
}
.mainvisual__rotate {
  position: absolute;
  left: 0;
  top: 0%;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.mainvisual__rotate img {
  max-height: 82vh;
  animation: circle 30s infinite linear;
}

.mainvisual__rotate:nth-of-type(2) img {
  animation-duration: 16.35s;
  width: 95%;
}

.mainvisual__rotate:nth-of-type(3) img {
  animation-duration: 21.81s;
  width: 90%;
}

.mv__rotate:nth-of-type(4) img {
  animation-duration: 27.27s;
  width: 85%;
}

@keyframes circle {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.works {
  padding: 120px 0;
  width: 100%;
  background-color: var(--color-white);
}
@media screen and (max-width: 768px) {
  .works {
    padding: 80px 0;
  }
}

@media screen and (max-width: 768px) {
  .works__title {
    margin-bottom: 55px;
  }
}

.works-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 30px;
  row-gap: 60px;
}
@media screen and (max-width: 768px) {
  .works-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 480px) {
  .works-list {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 48px;
  }
}

.works-list__item {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.6s, transform 0.8s;
  transition-timing-function: ease;
}

.works-list__item.is-show {
  opacity: 1;
  transform: translateY(0);
}

@media screen and (min-width: 769px) {
  .works-list__item:nth-of-type(1) {
    transition-delay: 0s;
  }
  .works-list__item:nth-of-type(2) {
    transition-delay: 0.2s;
  }
  .works-list__item:nth-of-type(3) {
    transition-delay: 0.4s;
  }
  .works-list__item:nth-of-type(4) {
    transition-delay: 0.6s;
  }
  .works-list__item:nth-of-type(5) {
    transition-delay: 0.8s;
  }
  .works-list__item:nth-of-type(6) {
    transition-delay: 1s;
  }
  .works-list__item:nth-of-type(7) {
    transition-delay: 1.2s;
  }
  .works-list__item:nth-of-type(8) {
    transition-delay: 1.4s;
  }
  .works-list__item:nth-of-type(9) {
    transition-delay: 1.6s;
  }
}
.works-list__link {
  display: block;
}

.works-list__image {
  margin-bottom: 14px;
  overflow: hidden;
}

.works-list__image img {
  transition: transform 0.3s ease-out;
}

.works-list__link:hover .works-list__image img {
  transform: scale(1.1);
}

.works-list__title {
  font-size: 1.6rem;
  font-family: var(--font-sans-en);
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--color-base);
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .works-list__title {
    font-size: 1.5rem;
  }
}

.works-list__type {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--color-gray);
}

.skills {
  padding: 120px 0 150px;
  width: 100%;
  background-color: var(--color-base);
  color: var(--color-white);
  position: relative;
}
@media screen and (max-width: 768px) {
  .skills {
    padding: 80px 0 80px;
  }
}

.skills__title {
  color: var(--color-white);
}
@media screen and (max-width: 768px) {
  .skills__title {
    margin-bottom: 55px;
  }
}

.skills__textInner {
  width: 100%;
  max-width: 565px;
  margin-bottom: 111px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .skills__textInner {
    max-width: 600px;
    margin-bottom: 55px;
  }
}

.skills__text {
  font-size: 1.5rem;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .skills__text {
    font-size: 1.3rem;
  }
}

.skills__content {
  width: max(75%, 600px);
  margin-left: auto;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .skills__content {
    width: 98%;
    margin-left: 0;
  }
}

.skills__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  grid-auto-rows: 50px;
}
@media screen and (max-width: 1024px) {
  .skills__list {
    grid-auto-rows: 45px;
  }
}
@media screen and (max-width: 768px) {
  .skills__list {
    grid-auto-rows: 45px;
  }
}
@media screen and (max-width: 600px) {
  .skills__list {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 40px;
  }
}

.skills__item {
  font-size: 2rem;
  font-family: var(--font-sans-en);
  font-weight: 300;
  letter-spacing: 0.05em;
  display: grid;
  place-items: center;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .skills__item {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 480px) {
  .skills__item {
    font-size: 1.6rem;
  }
}
.skills__item::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid var(--color-white);
  transform: skew(-30deg);
  transition: box-shadow 0.2s 0.3s;
}
.skills__item.show::before {
  box-shadow: 5px 5px var(--color-white);
}

.about {
  padding: 120px 0 150px;
  width: 100%;
  background-color: var(--color-white);
}
@media screen and (max-width: 768px) {
  .about {
    padding: 80px 0 80px;
  }
}

@media screen and (max-width: 768px) {
  .about__title {
    margin-bottom: 50px;
  }
}

.about__wrapper {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  align-items: center;
  column-gap: 5%;
}
@media screen and (max-width: 768px) {
  .about__wrapper {
    flex-direction: column-reverse;
    align-items: normal;
    row-gap: 67px;
  }
}

.about__content {
  width: 65%;
}
@media screen and (max-width: 768px) {
  .about__content {
    width: 100%;
  }
}

.about__visual {
  width: 40%;
}
@media screen and (max-width: 768px) {
  .about__visual {
    width: 100%;
    margin-left: -30px;
  }
}

.about__image {
  max-width: 378px;
  position: relative;
  z-index: 0;
  overflow: hidden;
  box-shadow: 11px 11px 50px rgba(51, 51, 51, 0.13);
}
@media screen and (max-width: 768px) {
  .about__image {
    margin-left: 0;
    width: 85%;
  }
}

.about__textInner {
  width: 95%;
  max-width: 604px;
}

.about__name {
  display: flex;
  align-items: flex-end;
  margin: 20px 0px 24px 0px;
}

.about__nameJa {
  font-size: 2.8rem;
  font-family: var(--font-serif-jp);
  font-weight: 600;
  line-height: 1;
  text-align: left;
  width: auto;
  max-width: calc(100% - 12px);
  margin: 0px 12px 0px 0px;
}
@media screen and (max-width: 840px) {
  .about__nameJa {
    font-size: 1.8rem;
  }
}

.about__separator {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.3;
  margin: 0px 12px 0px 0px;
  text-align: left;
  width: auto;
  max-width: calc(100% - 12px);
  justify-content: flex-start;
}
@media screen and (max-width: 768px) {
  .about__separator {
    font-size: 1.4rem;
    line-height: 1;
  }
}

.about__nameEn {
  font-size: 1.6rem;
  font-family: var(--font-sans-en);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.04em;
  text-align: left;
  width: auto;
  max-width: calc(100% - 12px);
  justify-content: flex-start;
}
@media screen and (max-width: 768px) {
  .about__nameEn {
    font-size: 1.3rem;
    line-height: 1;
  }
}

.about__text {
  font-size: 1.5rem;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .about__text {
    font-size: 1.3rem;
  }
}

.about__button {
  width: fit-content;
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .about__button {
    margin-left: auto;
    margin-right: 20px;
  }
}/*# sourceMappingURL=front-page.css.map */