/* Breakpoint
======================================= */
.footer {
  width: 100%;
  background-color: #111111;
  position: relative;
  z-index: 2;
}

.footer__container {
  padding-bottom: 40px;
  padding-inline: 5vw;
}

.footer__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid #727272;
}

.footer__copyright {
  font-size: 14px;
  font-family: neue-haas-grotesk-display, sans-serif;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--white);
}
@media screen and (max-width: 768px) {
  .footer__copyright {
    font-size: 1.2rem;
  }
}

.footer__back-to-top {
  font-size: 14px;
  font-family: neue-haas-grotesk-display, sans-serif;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: #ffffff;
}
@media screen and (max-width: 768px) {
  .footer__back-to-top {
    font-size: 1.2rem;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: transparent;
  z-index: 999;
  mix-blend-mode: difference;
  color: #ffffff;
}
@media screen and (max-width: 768px) {
  .header {
    position: fixed;
  }
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-inline: 5vw;
  padding-block: 40px;
}
@media screen and (max-width: 768px) {
  .header__inner {
    width: 100%;
    padding: 20px 24px;
    margin: 0 auto;
  }
}

.header__logo {
  font-size: 1.6rem;
  font-family: neue-haas-grotesk-display, sans-serif;
  font-weight: 300;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .header__logo {
    font-size: 1.3rem;
  }
}

.header__nav {
  display: flex;
  align-items: center;
  column-gap: 30px;
}
@media screen and (max-width: 768px) {
  .header__nav {
    display: none;
  }
}

.header__link {
  font-size: 1.6rem;
  font-family: neue-haas-grotesk-display, sans-serif;
  font-weight: 300;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
  padding: 5px 0;
}
.header__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 1px;
  background-color: #ffffff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.19, 0.61, 0.36, 1);
}
.header__link:hover::after {
  transform: scaleX(1);
}

.hamburger {
  display: none;
}
@media screen and (max-width: 768px) {
  .hamburger {
    display: block;
  }
}

.hamburger-btn {
  border-radius: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.hamburger-btn__text > span {
  display: block;
  font-size: 1.6rem;
  font-family: neue-haas-grotesk-display, sans-serif;
  font-weight: 300;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 1;
  transition: opacity 0.7s ease;
}
@media screen and (max-width: 768px) {
  .hamburger-btn__text > span {
    font-size: 1.3rem;
  }
}

.hamburger-btn__text > span.hidden {
  opacity: 0;
  pointer-events: none;
}

.gnav {
  display: none;
}
@media screen and (max-width: 768px) {
  .gnav {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #191919;
    z-index: 800;
    clip-path: inset(100% 0% 0% 0%);
  }
}

.gnav__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 60px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .gnav__wrapper {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 12.8vw;
    padding-right: 12.8vw;
    padding-top: 12.2666666667vw;
  }
}

.gnav__mask {
  overflow: hidden;
}

.gnav__link {
  display: block;
  padding: 0.2em 0;
  font-size: clamp(42px, 30.35px + 3.107vw, 90px);
  text-transform: uppercase;
  color: #ffffff;
  line-height: 92%;
  font-weight: 400;
  font-family: aw-conqueror-didot, serif;
  will-change: transform;
}

.sns {
  position: absolute;
  bottom: 40px;
  right: 5vw;
  will-change: opacity;
}
@media screen and (max-width: 768px) {
  .sns {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 12.8vw;
  }
}

.sns__list {
  display: flex;
  align-items: center;
  column-gap: 24px;
}
@media screen and (max-width: 768px) {
  .sns__list {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 3.4666666667vw;
  }
}

.sns__link {
  display: flex;
  align-items: center;
}

.sns__icon {
  display: block;
  width: 22px;
  height: 22px;
  margin-right: 8px;
  object-fit: contain;
}

.sns__linkText {
  font-size: 13px;
  font-family: Inter, sans-serif;
  font-weight: 400;
  line-height: 1;
  color: #ffffff;
}

:root {
  --before-opacity: 0;
  --bg-color: #FDFDFD;
  --black: #1D1D1D;
}

body {
  position: relative;
}

p {
  letter-spacing: 0.02em;
}

.preloader {
  overflow: hidden;
  opacity: 1;
}

.preloader__background {
  position: fixed;
  inset: 0;
  height: 100vh;
  background-color: black;
  color: white;
  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: 28px;
  font-family: "aw-conqueror-didot", serif;
  line-height: 1.1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: white;
  text-align: center;
  z-index: 3000;
}
@media screen and (max-width: 768px) {
  .preloader__text {
    font-size: 24px;
  }
}

.preloader__text span {
  display: block;
}

.mainvisual {
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background-color: #ffffff;
  display: grid;
  place-items: center;
  position: relative;
  z-index: -1;
}

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

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

.mainvisual__caption span {
  display: block;
}

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

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

.mainvisual__title span span {
  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: neue-haas-grotesk-display, sans-serif;
  font-weight: 300;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .mainvisual__scrollText {
    font-size: 1.3rem;
  }
}

.mainvisual__background {
  width: 40%;
  position: fixed;
  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%;
  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: #ffffff;
}
@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;
  position: relative;
  z-index: 2;
}
@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:first-of-type {
    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__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__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-weight: 500;
  letter-spacing: 0.05em;
  color: #111111;
  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: #CFCFCF;
}

.skills {
  padding: 120px 0 150px;
  width: 100%;
  background-color: #111111;
  color: #ffffff;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .skills {
    padding: 80px 0 80px;
  }
}

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

.skills__textInner {
  width: 100%;
  max-width: 392px;
  margin-bottom: 111px;
}
@media screen and (max-width: 768px) {
  .skills__textInner {
    margin-bottom: 55px;
  }
}

.skills__text {
  font-size: 15px;
  letter-spacing: 0.05em;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .skills__text {
    font-size: 13px;
  }
}

.skills__content {
  width: max(75%, 600px);
  margin-left: auto;
}
@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: "Cormorant Garamond", serif;
  font-weight: 500;
  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 #ffffff;
  transform: skew(-30deg);
  transition: box-shadow 0.2s 0.3s;
}
.skills__item.show::before {
  box-shadow: 5px 5px #fff;
}

.about {
  padding: 120px 0 150px;
  width: 100%;
  background-color: #ffffff;
}
@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%;
  position: relative;
  z-index: 2;
}
@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);
}
.about__image:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  bottom: -30px;
  right: -30px;
  z-index: -1;
  filter: blur(25px);
  opacity: 0.6;
}
@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.6rem;
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 600;
  line-height: 1;
  text-align: left;
  margin: 0px 12px 0px 0px;
  width: auto;
  max-width: calc(100% - 12px);
}
@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: neue-haas-grotesk-display, sans-serif;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.05em;
  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 */