*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #111;
  background-color: #fff;
  font-family: "Inter", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

input,
textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

::selection {
  background-color: #111;
  color: #fff;
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4rem;
  mix-blend-mode: difference;
}
.l-header.is-menu-open {
  mix-blend-mode: normal;
}
@media screen and (max-width: 768px) {
  .l-header {
    padding: 0 2rem;
    height: 60px;
  }
}
.l-header__logo {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .l-header__logo {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .l-header__nav {
    display: none;
  }
}
.l-header__nav-list {
  display: flex;
  gap: 3.2rem;
}
.l-header__nav-link {
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  position: relative;
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.l-header__nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #fff;
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
@media (hover: hover) {
  .l-header__nav-link:hover {
    opacity: 0.7;
  }
  .l-header__nav-link:hover::after {
    width: 100%;
  }
}
.l-header__hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 30px;
  padding: 4px 0;
  z-index: 110;
}
@media screen and (max-width: 768px) {
  .l-header__hamburger {
    display: flex;
  }
}
.l-header__hamburger-line {
  width: 100%;
  height: 1px;
  background-color: #fff;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.l-header__sp-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  z-index: 105;
}
.l-header__sp-menu.is-active {
  opacity: 1;
  visibility: visible;
}
.l-header__sp-nav-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.2rem;
}
.l-header__sp-nav-link {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  display: inline-block;
}

.l-section {
  position: relative;
  padding: 12rem 4rem;
}
@media screen and (max-width: 768px) {
  .l-section {
    padding: 8rem 2rem;
  }
}
.l-section--dark {
  background-color: #111;
  color: #fff;
}
.l-section--light {
  background-color: #fff;
  color: #111;
}
.l-section--full {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.l-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.l-footer {
  background-color: #111;
  color: #fff;
  padding: 3.2rem 4rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .l-footer {
    padding: 2.4rem 2rem;
  }
}
.l-footer__copy {
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  opacity: 0.5;
}

.c-heading {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 6.4rem;
  position: relative;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .c-heading {
    margin-bottom: 4.8rem;
    font-size: 1.1rem;
  }
}
.c-heading::after {
  content: "";
  position: absolute;
  bottom: -1.2rem;
  left: 0;
  width: 2.4rem;
  height: 1px;
  background-color: currentColor;
}
.c-heading--center {
  display: block;
  text-align: center;
}
.c-heading--center::after {
  left: 50%;
  transform: translateX(-50%);
}

.c-button {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1.6rem 3.2rem;
  border: 1px solid currentColor;
  position: relative;
  overflow: hidden;
  transition: color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media screen and (max-width: 768px) {
  .c-button {
    font-size: 1.2rem;
    padding: 1.4rem 2.4rem;
  }
}
.c-button__arrow {
  width: 2rem;
  height: 1px;
  background-color: currentColor;
  position: relative;
  transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.c-button__arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 1px solid currentColor;
  border-top: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}
@media (hover: hover) {
  .c-button:hover {
    background-color: #111;
    color: #fff;
  }
  .c-button:hover .c-button__arrow {
    width: 2.8rem;
  }
}
.c-button--white {
  border-color: #fff;
  color: #fff;
}
@media (hover: hover) {
  .c-button--white:hover {
    background-color: #fff;
    color: #111;
  }
}

.c-text-reveal {
  overflow: hidden;
  display: inline-block;
}
.c-text-reveal__inner {
  display: inline-block;
  transform: translateY(100%);
  will-change: transform;
}
.c-text-reveal.is-revealed .c-text-reveal__inner {
  transform: translateY(0);
}

.c-fade-up {
  opacity: 0;
  transform: translateY(40px);
  will-change: opacity, transform;
}
.c-fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.c-line-draw {
  width: 0;
  will-change: width;
}
.c-line-draw.is-drawn {
  width: 100%;
}

.p-loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.p-loading__counter {
  font-size: clamp(4.8rem, 10vw, 12rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
}

.p-mv {
  position: relative;
  width: 100%;
  height: 100vh;
  background-color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.p-mv__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
}
.p-mv__bg-line {
  position: absolute;
  background-color: #fff;
}
.p-mv__bg-line--h {
  width: 100%;
  height: 1px;
}
.p-mv__bg-line--v {
  width: 1px;
  height: 100%;
}
.p-mv__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}
.p-mv__title {
  font-size: clamp(4.8rem, 10vw, 14rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-bottom: 2.4rem;
}
.p-mv__title-line {
  display: block;
  overflow: hidden;
}
.p-mv__title-text {
  display: block;
  transform: translateY(110%);
  will-change: transform;
}
.p-mv__subtitle {
  font-size: clamp(1.2rem, 1.5vw, 1.6rem);
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0;
  will-change: opacity;
}
.p-mv__scroll {
  position: absolute;
  bottom: 4rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  z-index: 2;
  opacity: 0;
  will-change: opacity;
}
@media screen and (max-width: 768px) {
  .p-mv__scroll {
    bottom: 2.4rem;
  }
}
.p-mv__scroll-text {
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  writing-mode: vertical-rl;
}
.p-mv__scroll-line {
  width: 1px;
  height: 6rem;
  background-color: rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}
.p-mv__scroll-line::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% {
    top: -100%;
  }
  50% {
    top: 0;
  }
  100% {
    top: 100%;
  }
}
.p-about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .p-about__grid {
    gap: 4.8rem;
  }
}
@media screen and (max-width: 768px) {
  .p-about__grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}
.p-about__image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-about__image {
    aspect-ratio: 3/4;
    width: 72%;
    justify-self: center;
  }
}
.p-about__image-inner {
  width: 100%;
  height: 100%;
  background-color: #f5f5f5;
  position: relative;
}
.p-about__image-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-about__image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #111;
  transform-origin: top;
  will-change: transform;
}
.p-about__image.is-playing .p-about__video {
  opacity: 1;
}
.p-about__video {
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.p-about__text-name {
  font-size: clamp(2.8rem, 4vw, 4.8rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 2.4rem;
}
.p-about__text-role {
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 3.2rem;
}
.p-about__text-desc {
  font-size: 1.5rem;
  line-height: 2;
  color: #888;
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .p-about__text-desc {
    font-size: 1.4rem;
  }
}
.p-about__skills {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}
.p-about__skill-tag {
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.8rem 1.6rem;
  border: 1px solid #ddd;
  transition: background-color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media (hover: hover) {
  .p-about__skill-tag:hover {
    background-color: #111;
    color: #fff;
  }
}

.p-work__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  .p-work__list {
    grid-template-columns: 1fr;
    gap: 4.8rem;
  }
}
.p-work__item {
  position: relative;
  overflow: hidden;
}
.p-work__link {
  display: block;
  position: relative;
}
@media (hover: hover) {
  .p-work__link:hover .p-work__thumbnail-img {
    transform: scale(1.05);
  }
  .p-work__link:hover .p-work__item-number {
    opacity: 1;
  }
}
.p-work__thumbnail {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background-color: rgb(37.4, 37.4, 37.4);
  margin-bottom: 2rem;
}
.p-work__thumbnail-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.p-work__thumbnail-img--blur {
  filter: blur(10px);
  -webkit-filter: blur(10px);
}

.p-work__auth-memo {
  position: absolute;
  bottom: 1.2rem;
  left: 1.2rem;
  padding: 0.4rem 1rem;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  border-radius: 4px;
  z-index: 2;
  pointer-events: none;
}
.p-work__thumbnail-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #111;
  will-change: transform;
}
.p-work__info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.6rem;
}
.p-work__item-title {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .p-work__item-title {
    font-size: 1.8rem;
  }
}
.p-work__item-category {
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #888;
  margin-top: 0.8rem;
}
.p-work__item-number {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #888;
  opacity: 0.5;
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.p-contact {
  text-align: center;
}
.p-contact__title {
  font-size: clamp(4rem, 8vw, 10rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-bottom: 2.4rem;
}
.p-contact__desc {
  font-size: 1.5rem;
  line-height: 2;
  color: #888;
  max-width: 56rem;
  margin: 0 auto 4.8rem;
}
@media screen and (max-width: 768px) {
  .p-contact__desc {
    font-size: 1.4rem;
  }
}
.p-contact__form {
  max-width: 64rem;
  margin: 0 auto;
  text-align: left;
}
.p-contact__form-group {
  margin-bottom: 2.4rem;
}
.p-contact__input, .p-contact__textarea {
  width: 100%;
  font-size: 1.5rem;
  line-height: 1.8;
  padding: 1.6rem 0;
  border-bottom: 1px solid #ddd;
  background: transparent;
  color: #111;
  transition: border-color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.p-contact__input::placeholder, .p-contact__textarea::placeholder {
  color: #bbb;
  font-weight: 400;
  letter-spacing: 0.08em;
}
.p-contact__input:focus, .p-contact__textarea:focus {
  border-color: #111;
}
.p-contact__textarea {
  resize: vertical;
  min-height: 14rem;
  border: none;
  border-bottom: 1px solid #ddd;
}
.p-contact__submit {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1.6rem 3.2rem;
  border: 1px solid #111;
  background: transparent;
  color: #111;
  cursor: pointer;
  margin-top: 1.6rem;
  transition: background-color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media screen and (max-width: 768px) {
  .p-contact__submit {
    font-size: 1.2rem;
    padding: 1.4rem 2.4rem;
  }
}
@media (hover: hover) {
  .p-contact__submit:hover {
    background-color: #111;
    color: #fff;
  }
  .p-contact__submit:hover .p-contact__submit-arrow {
    width: 2.8rem;
  }
}
.p-contact__submit-text {
  display: inline-block;
}
.p-contact__submit-arrow {
  width: 2rem;
  height: 1px;
  background-color: currentColor;
  position: relative;
  transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.p-contact__submit-arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 1px solid currentColor;
  border-top: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.p-contact .wpcf7 {
  max-width: 64rem;
  margin: 0 auto;
  text-align: left;
}
.p-contact .wpcf7-form-control-wrap {
  display: block;
}
.p-contact .wpcf7-form-control-wrap input[type=text],
.p-contact .wpcf7-form-control-wrap input[type=email] {
  width: 100%;
  font-size: 1.5rem;
  line-height: 1.8;
  padding: 1.6rem 0;
  border: none;
  border-bottom: 1px solid #ddd;
  background: transparent;
  color: #111;
  outline: none;
  transition: border-color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.p-contact .wpcf7-form-control-wrap input[type=text]::placeholder,
.p-contact .wpcf7-form-control-wrap input[type=email]::placeholder {
  color: #bbb;
  font-weight: 400;
  letter-spacing: 0.08em;
}
.p-contact .wpcf7-form-control-wrap input[type=text]:focus,
.p-contact .wpcf7-form-control-wrap input[type=email]:focus {
  border-color: #111;
}
.p-contact .wpcf7-form-control-wrap textarea {
  width: 100%;
  font-size: 1.5rem;
  line-height: 1.8;
  padding: 1.6rem 0;
  border: none;
  border-bottom: 1px solid #ddd;
  background: transparent;
  color: #111;
  outline: none;
  resize: vertical;
  min-height: 14rem;
  transition: border-color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.p-contact .wpcf7-form-control-wrap textarea::placeholder {
  color: #bbb;
  font-weight: 400;
  letter-spacing: 0.08em;
}
.p-contact .wpcf7-form-control-wrap textarea:focus {
  border-color: #111;
}
.p-contact .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1.6rem 3.2rem;
  border: 1px solid #111;
  background: transparent;
  color: #111;
  cursor: pointer;
  margin-top: 1.6rem;
  transition: background-color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media screen and (max-width: 768px) {
  .p-contact .wpcf7-submit {
    font-size: 1.2rem;
    padding: 1.4rem 2.4rem;
  }
}
@media (hover: hover) {
  .p-contact .wpcf7-submit:hover {
    background-color: #111;
    color: #fff;
  }
}
.p-contact .wpcf7-spinner {
  display: none;
}
.p-contact .wpcf7-response-output {
  font-size: 1.4rem;
  margin-top: 2rem;
  padding: 1.2rem 1.6rem;
  border-radius: 4px;
}
.p-contact .wpcf7-form.sent .wpcf7-response-output {
  border-color: #46b450;
  color: #46b450;
}
.p-contact .wpcf7-form.invalid .wpcf7-response-output,
.p-contact .wpcf7-form.failed .wpcf7-response-output {
  border-color: #dc3232;
  color: #dc3232;
}
.p-contact .wpcf7-not-valid-tip {
  font-size: 1.2rem;
  color: #dc3232;
  margin-top: 0.4rem;
}
.p-contact__social {
  display: flex;
  justify-content: center;
  gap: 3.2rem;
  margin-top: 6.4rem;
}
.p-contact__social-link {
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #888;
  position: relative;
  transition: color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media (hover: hover) {
  .p-contact__social-link:hover {
    color: #111;
  }
}

.u-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media screen and (min-width: 769px) {
  .u-sp-only {
    display: none !important;
  }
}

@media screen and (max-width: 768px) {
  .u-pc-only {
    display: none !important;
  }
}

.u-text-center {
  text-align: center;
}
