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

html {
  font-size: 62.5%;
}

body {
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

img,
picture,
video,
canvas,
svg {
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

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

ul,
ol {
  list-style: none;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

@font-face {
  font-family: "Kinto Sans";
  src: url("../fonts/KintoSans/KintoSans-Thin.woff2") format("woff2"), url("../fonts/KintoSans/KintoSans-Thin.woff") format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Kinto Sans";
  src: url("../fonts/KintoSans/KintoSans-Light.woff2") format("woff2"), url("../fonts/KintoSans/KintoSans-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Kinto Sans";
  src: url("../fonts/KintoSans/KintoSans-Regular.woff2") format("woff2"), url("../fonts/KintoSans/KintoSans-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Kinto Sans";
  src: url("../fonts/KintoSans/KintoSans-Medium.woff2") format("woff2"), url("../fonts/KintoSans/KintoSans-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Kinto Sans";
  src: url("../fonts/KintoSans/KintoSans-Bold.woff2") format("woff2"), url("../fonts/KintoSans/KintoSans-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Kinto Sans";
  src: url("../fonts/KintoSans/KintoSans-Black.woff2") format("woff2"), url("../fonts/KintoSans/KintoSans-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
:root {
  --p-color: #000;
  --s-color: #000;
  --section-gap-pc: 12rem;
  --section-gap-sp: 6rem;
  --padding-pc: 80px;
  --padding-sp: 2rem;
  --z-base: 0;
  --z-float: 10;
  --z-sticky: 100;
  --z-modal: 200;
  --z-toast: 300;
  --easing: cubic-bezier(.4, .4, 0, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Kinto Sans", sans-serif;
  font-size: 1.6rem;
  font-weight: normal;
  background-color: #fff;
  line-height: 180%;
  letter-spacing: 0;
  min-width: 1100px;
  position: relative;
  overflow-x: hidden;
}
@media (max-width: 959px) {
  body {
    min-width: auto;
  }
}

body.is-fixed {
  overflow: hidden;
}

a {
  transition: opacity 0.6s var(--easing);
}
@media (min-width: 959.11px) {
  a:hover {
    opacity: 0.7;
  }
}

img {
  height: auto;
}

h1 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 150%;
}
@media (max-width: 959px) {
  h1 {
    font-size: 2.8rem;
  }
}

h2 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 150%;
}
@media (max-width: 959px) {
  h2 {
    font-size: 2.4rem;
  }
}

h3 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 160%;
}
@media (max-width: 959px) {
  h3 {
    font-size: 2rem;
  }
}

h4 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 170%;
}
@media (max-width: 959px) {
  h4 {
    font-size: 1.8rem;
  }
}

h5 {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 170%;
}
@media (max-width: 959px) {
  h5 {
    font-size: 1.6rem;
  }
}

[data-anime] {
  opacity: 0;
  transition: opacity 0.8s var(--easing), transform 0.8s var(--easing);
  will-change: opacity, transform;
}

[data-anime=fadeUp] {
  transform: translateY(30px);
}

[data-anime=fadeIn] {
  transform: none;
}

[data-anime=blur] {
  filter: blur(10px);
  transition: opacity 0.8s var(--easing), filter 0.8s var(--easing);
}

[data-anime].is-active {
  opacity: 1;
  transform: none;
  filter: none;
}

.c-inner {
  width: 100%;
  padding-inline: var(--padding-pc);
  margin-inline: auto;
}
@media (max-width: 959px) {
  .c-inner {
    padding-inline: var(--padding-sp);
  }
}

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

.u-sp-only {
  display: none !important;
}
@media (max-width: 959px) {
  .u-sp-only {
    display: block !important;
  }
}

.u-tab-only {
  display: none !important;
}
@media (min-width: 959.11px) and (max-width: 1399px) {
  .u-tab-only {
    display: block !important;
  }
}

.u-tab-sp-only {
  display: none !important;
}
@media (max-width: 1399px) {
  .u-tab-sp-only {
    display: block !important;
  }
}

.u-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.u-pd-0 {
  padding: 0px !important;
}

.u-pt-0 {
  padding-top: 0px !important;
}

.u-pb-0 {
  padding-bottom: 0px !important;
}

.u-pl-0 {
  padding-left: 0px !important;
}

.u-pr-0 {
  padding-right: 0px !important;
}

.u-mg-0 {
  margin: 0px !important;
}

.u-mt-0 {
  margin-top: 0px !important;
}

.u-mb-0 {
  margin-bottom: 0px !important;
}

.u-ml-0 {
  margin-left: 0px !important;
}

.u-mr-0 {
  margin-right: 0px !important;
}

.u-pd-8 {
  padding: 8px !important;
}

.u-pt-8 {
  padding-top: 8px !important;
}

.u-pb-8 {
  padding-bottom: 8px !important;
}

.u-pl-8 {
  padding-left: 8px !important;
}

.u-pr-8 {
  padding-right: 8px !important;
}

.u-mg-8 {
  margin: 8px !important;
}

.u-mt-8 {
  margin-top: 8px !important;
}

.u-mb-8 {
  margin-bottom: 8px !important;
}

.u-ml-8 {
  margin-left: 8px !important;
}

.u-mr-8 {
  margin-right: 8px !important;
}

.u-pd-16 {
  padding: 16px !important;
}

.u-pt-16 {
  padding-top: 16px !important;
}

.u-pb-16 {
  padding-bottom: 16px !important;
}

.u-pl-16 {
  padding-left: 16px !important;
}

.u-pr-16 {
  padding-right: 16px !important;
}

.u-mg-16 {
  margin: 16px !important;
}

.u-mt-16 {
  margin-top: 16px !important;
}

.u-mb-16 {
  margin-bottom: 16px !important;
}

.u-ml-16 {
  margin-left: 16px !important;
}

.u-mr-16 {
  margin-right: 16px !important;
}

.u-pd-24 {
  padding: 24px !important;
}

.u-pt-24 {
  padding-top: 24px !important;
}

.u-pb-24 {
  padding-bottom: 24px !important;
}

.u-pl-24 {
  padding-left: 24px !important;
}

.u-pr-24 {
  padding-right: 24px !important;
}

.u-mg-24 {
  margin: 24px !important;
}

.u-mt-24 {
  margin-top: 24px !important;
}

.u-mb-24 {
  margin-bottom: 24px !important;
}

.u-ml-24 {
  margin-left: 24px !important;
}

.u-mr-24 {
  margin-right: 24px !important;
}

.u-pd-32 {
  padding: 32px !important;
}

.u-pt-32 {
  padding-top: 32px !important;
}

.u-pb-32 {
  padding-bottom: 32px !important;
}

.u-pl-32 {
  padding-left: 32px !important;
}

.u-pr-32 {
  padding-right: 32px !important;
}

.u-mg-32 {
  margin: 32px !important;
}

.u-mt-32 {
  margin-top: 32px !important;
}

.u-mb-32 {
  margin-bottom: 32px !important;
}

.u-ml-32 {
  margin-left: 32px !important;
}

.u-mr-32 {
  margin-right: 32px !important;
}

.u-pd-40 {
  padding: 40px !important;
}

.u-pt-40 {
  padding-top: 40px !important;
}

.u-pb-40 {
  padding-bottom: 40px !important;
}

.u-pl-40 {
  padding-left: 40px !important;
}

.u-pr-40 {
  padding-right: 40px !important;
}

.u-mg-40 {
  margin: 40px !important;
}

.u-mt-40 {
  margin-top: 40px !important;
}

.u-mb-40 {
  margin-bottom: 40px !important;
}

.u-ml-40 {
  margin-left: 40px !important;
}

.u-mr-40 {
  margin-right: 40px !important;
}

.u-pd-48 {
  padding: 48px !important;
}

.u-pt-48 {
  padding-top: 48px !important;
}

.u-pb-48 {
  padding-bottom: 48px !important;
}

.u-pl-48 {
  padding-left: 48px !important;
}

.u-pr-48 {
  padding-right: 48px !important;
}

.u-mg-48 {
  margin: 48px !important;
}

.u-mt-48 {
  margin-top: 48px !important;
}

.u-mb-48 {
  margin-bottom: 48px !important;
}

.u-ml-48 {
  margin-left: 48px !important;
}

.u-mr-48 {
  margin-right: 48px !important;
}

.u-pd-56 {
  padding: 56px !important;
}

.u-pt-56 {
  padding-top: 56px !important;
}

.u-pb-56 {
  padding-bottom: 56px !important;
}

.u-pl-56 {
  padding-left: 56px !important;
}

.u-pr-56 {
  padding-right: 56px !important;
}

.u-mg-56 {
  margin: 56px !important;
}

.u-mt-56 {
  margin-top: 56px !important;
}

.u-mb-56 {
  margin-bottom: 56px !important;
}

.u-ml-56 {
  margin-left: 56px !important;
}

.u-mr-56 {
  margin-right: 56px !important;
}

.u-pd-64 {
  padding: 64px !important;
}

.u-pt-64 {
  padding-top: 64px !important;
}

.u-pb-64 {
  padding-bottom: 64px !important;
}

.u-pl-64 {
  padding-left: 64px !important;
}

.u-pr-64 {
  padding-right: 64px !important;
}

.u-mg-64 {
  margin: 64px !important;
}

.u-mt-64 {
  margin-top: 64px !important;
}

.u-mb-64 {
  margin-bottom: 64px !important;
}

.u-ml-64 {
  margin-left: 64px !important;
}

.u-mr-64 {
  margin-right: 64px !important;
}

.u-pd-72 {
  padding: 72px !important;
}

.u-pt-72 {
  padding-top: 72px !important;
}

.u-pb-72 {
  padding-bottom: 72px !important;
}

.u-pl-72 {
  padding-left: 72px !important;
}

.u-pr-72 {
  padding-right: 72px !important;
}

.u-mg-72 {
  margin: 72px !important;
}

.u-mt-72 {
  margin-top: 72px !important;
}

.u-mb-72 {
  margin-bottom: 72px !important;
}

.u-ml-72 {
  margin-left: 72px !important;
}

.u-mr-72 {
  margin-right: 72px !important;
}

.u-pd-80 {
  padding: 80px !important;
}

.u-pt-80 {
  padding-top: 80px !important;
}

.u-pb-80 {
  padding-bottom: 80px !important;
}

.u-pl-80 {
  padding-left: 80px !important;
}

.u-pr-80 {
  padding-right: 80px !important;
}

.u-mg-80 {
  margin: 80px !important;
}

.u-mt-80 {
  margin-top: 80px !important;
}

.u-mb-80 {
  margin-bottom: 80px !important;
}

.u-ml-80 {
  margin-left: 80px !important;
}

.u-mr-80 {
  margin-right: 80px !important;
}

.u-pd-88 {
  padding: 88px !important;
}

.u-pt-88 {
  padding-top: 88px !important;
}

.u-pb-88 {
  padding-bottom: 88px !important;
}

.u-pl-88 {
  padding-left: 88px !important;
}

.u-pr-88 {
  padding-right: 88px !important;
}

.u-mg-88 {
  margin: 88px !important;
}

.u-mt-88 {
  margin-top: 88px !important;
}

.u-mb-88 {
  margin-bottom: 88px !important;
}

.u-ml-88 {
  margin-left: 88px !important;
}

.u-mr-88 {
  margin-right: 88px !important;
}

.u-pd-96 {
  padding: 96px !important;
}

.u-pt-96 {
  padding-top: 96px !important;
}

.u-pb-96 {
  padding-bottom: 96px !important;
}

.u-pl-96 {
  padding-left: 96px !important;
}

.u-pr-96 {
  padding-right: 96px !important;
}

.u-mg-96 {
  margin: 96px !important;
}

.u-mt-96 {
  margin-top: 96px !important;
}

.u-mb-96 {
  margin-bottom: 96px !important;
}

.u-ml-96 {
  margin-left: 96px !important;
}

.u-mr-96 {
  margin-right: 96px !important;
}

.u-pd-104 {
  padding: 104px !important;
}

.u-pt-104 {
  padding-top: 104px !important;
}

.u-pb-104 {
  padding-bottom: 104px !important;
}

.u-pl-104 {
  padding-left: 104px !important;
}

.u-pr-104 {
  padding-right: 104px !important;
}

.u-mg-104 {
  margin: 104px !important;
}

.u-mt-104 {
  margin-top: 104px !important;
}

.u-mb-104 {
  margin-bottom: 104px !important;
}

.u-ml-104 {
  margin-left: 104px !important;
}

.u-mr-104 {
  margin-right: 104px !important;
}

.u-pd-112 {
  padding: 112px !important;
}

.u-pt-112 {
  padding-top: 112px !important;
}

.u-pb-112 {
  padding-bottom: 112px !important;
}

.u-pl-112 {
  padding-left: 112px !important;
}

.u-pr-112 {
  padding-right: 112px !important;
}

.u-mg-112 {
  margin: 112px !important;
}

.u-mt-112 {
  margin-top: 112px !important;
}

.u-mb-112 {
  margin-bottom: 112px !important;
}

.u-ml-112 {
  margin-left: 112px !important;
}

.u-mr-112 {
  margin-right: 112px !important;
}

.u-pd-120 {
  padding: 120px !important;
}

.u-pt-120 {
  padding-top: 120px !important;
}

.u-pb-120 {
  padding-bottom: 120px !important;
}

.u-pl-120 {
  padding-left: 120px !important;
}

.u-pr-120 {
  padding-right: 120px !important;
}

.u-mg-120 {
  margin: 120px !important;
}

.u-mt-120 {
  margin-top: 120px !important;
}

.u-mb-120 {
  margin-bottom: 120px !important;
}

.u-ml-120 {
  margin-left: 120px !important;
}

.u-mr-120 {
  margin-right: 120px !important;
}

.u-pd-128 {
  padding: 128px !important;
}

.u-pt-128 {
  padding-top: 128px !important;
}

.u-pb-128 {
  padding-bottom: 128px !important;
}

.u-pl-128 {
  padding-left: 128px !important;
}

.u-pr-128 {
  padding-right: 128px !important;
}

.u-mg-128 {
  margin: 128px !important;
}

.u-mt-128 {
  margin-top: 128px !important;
}

.u-mb-128 {
  margin-bottom: 128px !important;
}

.u-ml-128 {
  margin-left: 128px !important;
}

.u-mr-128 {
  margin-right: 128px !important;
}

.u-pd-136 {
  padding: 136px !important;
}

.u-pt-136 {
  padding-top: 136px !important;
}

.u-pb-136 {
  padding-bottom: 136px !important;
}

.u-pl-136 {
  padding-left: 136px !important;
}

.u-pr-136 {
  padding-right: 136px !important;
}

.u-mg-136 {
  margin: 136px !important;
}

.u-mt-136 {
  margin-top: 136px !important;
}

.u-mb-136 {
  margin-bottom: 136px !important;
}

.u-ml-136 {
  margin-left: 136px !important;
}

.u-mr-136 {
  margin-right: 136px !important;
}

.u-pd-144 {
  padding: 144px !important;
}

.u-pt-144 {
  padding-top: 144px !important;
}

.u-pb-144 {
  padding-bottom: 144px !important;
}

.u-pl-144 {
  padding-left: 144px !important;
}

.u-pr-144 {
  padding-right: 144px !important;
}

.u-mg-144 {
  margin: 144px !important;
}

.u-mt-144 {
  margin-top: 144px !important;
}

.u-mb-144 {
  margin-bottom: 144px !important;
}

.u-ml-144 {
  margin-left: 144px !important;
}

.u-mr-144 {
  margin-right: 144px !important;
}

.u-pd-152 {
  padding: 152px !important;
}

.u-pt-152 {
  padding-top: 152px !important;
}

.u-pb-152 {
  padding-bottom: 152px !important;
}

.u-pl-152 {
  padding-left: 152px !important;
}

.u-pr-152 {
  padding-right: 152px !important;
}

.u-mg-152 {
  margin: 152px !important;
}

.u-mt-152 {
  margin-top: 152px !important;
}

.u-mb-152 {
  margin-bottom: 152px !important;
}

.u-ml-152 {
  margin-left: 152px !important;
}

.u-mr-152 {
  margin-right: 152px !important;
}

.u-pd-160 {
  padding: 160px !important;
}

.u-pt-160 {
  padding-top: 160px !important;
}

.u-pb-160 {
  padding-bottom: 160px !important;
}

.u-pl-160 {
  padding-left: 160px !important;
}

.u-pr-160 {
  padding-right: 160px !important;
}

.u-mg-160 {
  margin: 160px !important;
}

.u-mt-160 {
  margin-top: 160px !important;
}

.u-mb-160 {
  margin-bottom: 160px !important;
}

.u-ml-160 {
  margin-left: 160px !important;
}

.u-mr-160 {
  margin-right: 160px !important;
}

.u-pd-168 {
  padding: 168px !important;
}

.u-pt-168 {
  padding-top: 168px !important;
}

.u-pb-168 {
  padding-bottom: 168px !important;
}

.u-pl-168 {
  padding-left: 168px !important;
}

.u-pr-168 {
  padding-right: 168px !important;
}

.u-mg-168 {
  margin: 168px !important;
}

.u-mt-168 {
  margin-top: 168px !important;
}

.u-mb-168 {
  margin-bottom: 168px !important;
}

.u-ml-168 {
  margin-left: 168px !important;
}

.u-mr-168 {
  margin-right: 168px !important;
}

.u-pd-176 {
  padding: 176px !important;
}

.u-pt-176 {
  padding-top: 176px !important;
}

.u-pb-176 {
  padding-bottom: 176px !important;
}

.u-pl-176 {
  padding-left: 176px !important;
}

.u-pr-176 {
  padding-right: 176px !important;
}

.u-mg-176 {
  margin: 176px !important;
}

.u-mt-176 {
  margin-top: 176px !important;
}

.u-mb-176 {
  margin-bottom: 176px !important;
}

.u-ml-176 {
  margin-left: 176px !important;
}

.u-mr-176 {
  margin-right: 176px !important;
}

.u-pd-184 {
  padding: 184px !important;
}

.u-pt-184 {
  padding-top: 184px !important;
}

.u-pb-184 {
  padding-bottom: 184px !important;
}

.u-pl-184 {
  padding-left: 184px !important;
}

.u-pr-184 {
  padding-right: 184px !important;
}

.u-mg-184 {
  margin: 184px !important;
}

.u-mt-184 {
  margin-top: 184px !important;
}

.u-mb-184 {
  margin-bottom: 184px !important;
}

.u-ml-184 {
  margin-left: 184px !important;
}

.u-mr-184 {
  margin-right: 184px !important;
}

.u-pd-192 {
  padding: 192px !important;
}

.u-pt-192 {
  padding-top: 192px !important;
}

.u-pb-192 {
  padding-bottom: 192px !important;
}

.u-pl-192 {
  padding-left: 192px !important;
}

.u-pr-192 {
  padding-right: 192px !important;
}

.u-mg-192 {
  margin: 192px !important;
}

.u-mt-192 {
  margin-top: 192px !important;
}

.u-mb-192 {
  margin-bottom: 192px !important;
}

.u-ml-192 {
  margin-left: 192px !important;
}

.u-mr-192 {
  margin-right: 192px !important;
}

.u-pd-200 {
  padding: 200px !important;
}

.u-pt-200 {
  padding-top: 200px !important;
}

.u-pb-200 {
  padding-bottom: 200px !important;
}

.u-pl-200 {
  padding-left: 200px !important;
}

.u-pr-200 {
  padding-right: 200px !important;
}

.u-mg-200 {
  margin: 200px !important;
}

.u-mt-200 {
  margin-top: 200px !important;
}

.u-mb-200 {
  margin-bottom: 200px !important;
}

.u-ml-200 {
  margin-left: 200px !important;
}

.u-mr-200 {
  margin-right: 200px !important;
}

.l-header {
  width: 100%;
  margin-top: 60px;
  margin-bottom: 60px;
  z-index: var(--z-sticky);
  transition: background-color 0.6s var(--easing);
}
@media (max-width: 959px) {
  .l-header {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 20px;
  }
}

.l-header__inner {
  width: 100%;
  padding-inline: var(--padding-pc);
  margin-inline: auto;
}
@media (max-width: 959px) {
  .l-header__inner {
    padding-inline: var(--padding-sp);
  }
}
.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
@media (max-width: 959px) {
  .l-header__inner {
    height: 50px;
  }
}

.l-header__brand {
  display: flex;
  align-items: center;
  gap: 18px;
}
@media (max-width: 959px) {
  .l-header__brand {
    gap: 5px;
  }
}

.l-header__logo {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  flex-shrink: 0;
}
@media (max-width: 959px) {
  .l-header__logo {
    font-size: 3.6rem;
  }
}

.l-header__tagline {
  font-weight: 100;
  font-size: 2.2rem;
  line-height: 1;
  white-space: nowrap;
  color: #999;
}
@media (max-width: 959px) {
  .l-header__tagline {
    font-size: 1.3rem;
  }
}

.l-header__nav__list {
  display: flex;
  align-items: center;
  gap: 22px;
}

.l-header__nav__item a {
  font-size: 1.4rem;
  font-weight: 400;
}

.l-header__contact {
  display: flex;
  align-items: center;
  gap: 4px;
}

.l-header__contact__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.l-header__contact__icon img {
  width: 100%;
  height: 100%;
}

.l-header__sp-nav__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.l-header__sp-nav__item a {
  font-size: 1.8rem;
  font-weight: 400;
}

.l-header__hamburger {
  display: none;
}
@media (max-width: 959px) {
  .l-header__hamburger {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-shrink: 0;
    width: 24px;
    height: 44px;
    margin-left: auto;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: calc(var(--z-modal) + 1);
  }
}

.l-header__hamburger__line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #000;
  position: relative;
  transition: background-color 0.3s;
}

.l-header__hamburger__line::before,
.l-header__hamburger__line::after {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background-color: #000;
  position: absolute;
  left: 0;
  transition: transform 0.3s;
}

.l-header__hamburger__line::before {
  top: -8px;
}

.l-header__hamburger__line::after {
  bottom: -8px;
}

.l-header__hamburger.is-active .l-header__hamburger__line {
  background-color: transparent;
}

.l-header__hamburger.is-active .l-header__hamburger__line::before {
  top: 0;
  transform: rotate(45deg);
}

.l-header__hamburger.is-active .l-header__hamburger__line::after {
  bottom: 0;
  transform: rotate(-45deg);
}

.l-header__sp-nav {
  display: none;
}
@media (max-width: 959px) {
  .l-header__sp-nav {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.95);
    z-index: var(--z-modal);
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
  }
}

@media (max-width: 959px) {
  .l-header__sp-nav.is-active {
    opacity: 1;
    visibility: visible;
  }
}

@media (max-width: 959px) {
  .l-header:has(.l-header__hamburger.is-active) .l-header__inner {
    position: relative;
    z-index: calc(var(--z-modal) + 1);
  }
}

.l-footer {
  padding-bottom: 60px;
}
@media (max-width: 959px) {
  .l-footer {
    padding-bottom: 60px;
  }
}

.l-footer__inner {
  width: 100%;
  padding-inline: var(--padding-pc);
  margin-inline: auto;
}
@media (max-width: 959px) {
  .l-footer__inner {
    padding-inline: var(--padding-sp);
  }
}
.l-footer__inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  min-height: 63px;
}
@media (max-width: 959px) {
  .l-footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    min-height: auto;
  }
}

.l-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.l-footer__logo {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 1;
}

.l-footer__tagline {
  margin-top: 2px;
  font-size: 1.3rem;
  font-weight: 100;
  line-height: 1.3;
  color: #999;
}

.l-footer__copyright {
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.3;
}

.p-project {
  padding-bottom: 100px;
}
@media (max-width: 959px) {
  .p-project {
    padding-top: 40px;
    padding-bottom: 60px;
  }
}

.p-project__inner {
  width: 100%;
  padding-inline: var(--padding-pc);
  margin-inline: auto;
}
@media (max-width: 959px) {
  .p-project__inner {
    padding-inline: var(--padding-sp);
  }
}

.p-project__layout {
  position: fixed;
  top: 50%;
  right: calc(var(--padding-pc) / 2);
  z-index: var(--z-sticky);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14.5px;
  margin: 0;
  transform: translate(50%, -50%);
  pointer-events: auto;
}

.p-project__layout-label {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1;
  writing-mode: vertical-rl;
}

.p-project__layout-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px 0;
}

.p-project__layout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.34rem;
  height: 2.34rem;
  padding: 0;
  border: none;
  background: none;
  color: #bababa;
  cursor: pointer;
  font-size: 2.34rem;
  line-height: 1;
  transition: color 0.3s var(--easing);
}
.p-project__layout-btn.is-active {
  color: #202023;
}

.p-project.is-layout-list .p-project__list {
  grid-template-columns: 1fr;
  gap: 40px 0;
}
@media (min-width: 1900px) {
  .p-project.is-layout-list .p-project__list {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1200px) {
  .p-project.is-layout-list .p-project__list {
    grid-template-columns: 1fr;
  }
}
.p-project.is-layout-list .p-project__link {
  position: relative;
  display: block;
}
.p-project.is-layout-list .p-project__body {
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: 3;
  margin-top: 0;
  color: #fff;
}
.p-project.is-layout-list .p-project__ttl,
.p-project.is-layout-list .p-project__meta {
  color: #fff;
}
.p-project.is-layout-list .p-project__ttl {
  font-size: 1.9rem;
}

.p-project__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 50px 45px;
}
@media (min-width: 1900px) {
  .p-project__list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (max-width: 1200px) {
  .p-project__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 959px) {
  .p-project__list {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.p-project__thumb,
.p-project-detail__image {
  position: relative;
  overflow: hidden;
}

.p-project__thumb::before,
.p-project-detail__image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  visibility: hidden;
  pointer-events: none;
  opacity: 0.5;
  background-color: #f2f2f2;
  background-image: repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.5) 0 1px, transparent 1px 3px), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3CfeComponentTransfer%3E%3CfeFuncR type='linear' slope='2.2' intercept='-0.55'/%3E%3CfeFuncG type='linear' slope='2.2' intercept='-0.55'/%3E%3CfeFuncB type='linear' slope='2.2' intercept='-0.55'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 100% 3px, 240px 240px;
  transition: opacity 0.45s var(--easing), visibility 0s linear 0.45s;
}

.p-project__thumb::after,
.p-project-detail__image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  visibility: hidden;
  pointer-events: none;
  opacity: 0.9;
  background: linear-gradient(100deg, transparent 0%, rgba(255, 255, 255, 0.62) 48%, transparent 100%);
  transform: translateX(-120%);
  transition: opacity 0.45s var(--easing), visibility 0s linear 0.45s;
}

.is-js .p-project__thumb:not(.is-noise-done)::before,
.is-js .p-project-detail__image:not(.is-noise-done)::before {
  visibility: visible;
  animation: projectThumbNoiseFlicker 0.4s steps(1, end) infinite;
  transition-delay: 0s;
}

.is-js .p-project__thumb:not(.is-noise-done)::after,
.is-js .p-project-detail__image:not(.is-noise-done)::after {
  visibility: visible;
  animation: projectThumbNoiseSweep 1.5s var(--easing) infinite;
  transition-delay: 0s;
}

.is-js .p-project__thumb.is-cover-active:not(.is-cover-done)::before,
.is-js .p-project-detail__image.is-cover-active:not(.is-cover-done)::before {
  animation: projectThumbNoise 0.8s linear both, projectThumbNoiseFlicker 0.4s steps(1, end) infinite;
}

.is-js .p-project__thumb.is-cover-done::before,
.is-js .p-project__thumb.is-cover-done::after,
.is-js .p-project-detail__image.is-cover-done::before,
.is-js .p-project-detail__image.is-cover-done::after {
  opacity: 0;
}

.p-project__thumb.is-noise-done::before,
.p-project-detail__image.is-noise-done::before {
  animation: none;
  visibility: hidden;
}

.p-project__thumb.is-noise-done::after,
.p-project-detail__image.is-noise-done::after {
  animation: none;
  visibility: hidden;
}

.p-project__thumb img {
  width: 100%;
  height: auto;
  aspect-ratio: 500/320;
  object-fit: cover;
}

.is-js .p-project__thumb img,
.is-js .p-project-detail__image img {
  opacity: 0;
  transform: scale(1.015);
  transition: opacity 0.55s var(--easing), transform 0.7s var(--easing);
}

.is-js .p-project__thumb.is-image-visible img,
.is-js .p-project-detail__image.is-image-visible img,
.is-js .p-project__thumb.is-cover-done img,
.is-js .p-project-detail__image.is-cover-done img {
  opacity: 1;
  transform: scale(1);
}

.is-js .p-project-detail__image.is-cover-active img {
  opacity: 1;
  transform: scale(1);
}

@keyframes projectThumbNoise {
  0%, 99.9% {
    visibility: visible;
  }
  100% {
    visibility: hidden;
  }
}
@keyframes projectThumbNoiseFlicker {
  0% {
    background-position: 0 0, 0 0;
  }
  25% {
    background-position: 0 1px, -97px 43px;
  }
  50% {
    background-position: 0 -1px, 122px -61px;
  }
  75% {
    background-position: 0 2px, -45px -93px;
  }
  100% {
    background-position: 0 0, 64px 81px;
  }
}
@keyframes projectThumbNoiseSweep {
  0% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(120%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .is-js .p-project__thumb:not(.is-noise-done)::before,
  .is-js .p-project__thumb.is-cover-active:not(.is-cover-done)::before,
  .is-js .p-project__thumb:not(.is-noise-done)::after,
  .is-js .p-project-detail__image:not(.is-noise-done)::before,
  .is-js .p-project-detail__image.is-cover-active:not(.is-cover-done)::before,
  .is-js .p-project-detail__image:not(.is-noise-done)::after {
    animation: none;
    visibility: hidden;
  }
  .is-js .p-project__thumb.is-cover-active img {
    opacity: 1;
    transform: scale(1);
  }
  .is-js .p-project-detail__image.is-cover-active img {
    opacity: 1;
    transform: scale(1);
  }
}
.p-project__body {
  margin-top: 20px;
}

.p-project__ttl {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.2666666667;
  color: #000;
}

.p-project__meta {
  margin-top: 11px;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.25;
  color: #999;
}

.p-project-detail {
  padding-bottom: 100px;
}
@media (max-width: 959px) {
  .p-project-detail {
    padding-top: 40px;
    padding-bottom: 60px;
  }
}

.p-project-detail__inner {
  width: 100%;
  padding-inline: var(--padding-pc);
  margin-inline: auto;
}
@media (max-width: 959px) {
  .p-project-detail__inner {
    padding-inline: var(--padding-sp);
  }
}
.p-project-detail__inner {
  display: grid;
  grid-template-columns: 265px minmax(0, 1fr);
  gap: 68px;
}
@media (max-width: 1399px) {
  .p-project-detail__inner {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 40px;
  }
}
@media (max-width: 959px) {
  .p-project-detail__inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}

.p-project-detail__summary {
  position: sticky;
  top: 80px;
  align-self: start;
  padding-top: 84px;
  border-top: 1px solid #000;
}
@media (max-width: 959px) {
  .p-project-detail__summary {
    position: static;
    display: contents;
  }
}

.p-project-detail__label {
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1;
  color: #d0d0d0;
}
@media (max-width: 959px) {
  .p-project-detail__label {
    order: 1;
    padding-top: 40px;
    border-top: 1px solid #000;
  }
}

.p-project-detail__title {
  margin-top: 51px;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.6666666667;
  color: #000;
}
@media (max-width: 959px) {
  .p-project-detail__title {
    margin-top: 0;
    order: 2;
  }
}

.p-project-detail__meta {
  margin-top: 21px;
  font-size: 1.2rem;
  color: #999;
}
.p-project-detail__meta a {
  display: block;
  width: fit-content;
  line-height: 1;
  margin-top: 6px;
}
.p-project-detail__meta a:first-child {
  margin-top: 0;
}
.p-project-detail__meta a span {
  text-decoration: underline;
}
@media (max-width: 959px) {
  .p-project-detail__meta {
    margin-top: 0;
    order: 3;
  }
}

.p-project-detail__back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 54px;
  font-size: 1.2rem;
  line-height: 1;
  color: #000;
}
@media (max-width: 959px) {
  .p-project-detail__back {
    order: 5;
    margin-top: 20px;
  }
}

.p-project-detail__back::before {
  content: "";
  width: 6px;
  height: 10px;
  background-color: currentColor;
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
}

.p-project-detail__gallery {
  display: grid;
  gap: 40px;
}
@media (max-width: 959px) {
  .p-project-detail__gallery {
    order: 4;
    margin-top: 0;
    gap: 24px;
  }
}

.p-project-detail__image img {
  display: block;
  width: 100%;
  height: auto;
}

.p-about {
  padding-bottom: 100px;
}
@media (max-width: 959px) {
  .p-about {
    padding-top: 40px;
    padding-bottom: 60px;
  }
}

.p-about__inner {
  width: 100%;
  padding-inline: var(--padding-pc);
  margin-inline: auto;
}
@media (max-width: 959px) {
  .p-about__inner {
    padding-inline: var(--padding-sp);
  }
}
.p-about__inner {
  display: grid;
  grid-template-columns: 265px minmax(0, 1fr);
  gap: 68px;
}
@media (max-width: 1399px) {
  .p-about__inner {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 40px;
  }
}
@media (max-width: 959px) {
  .p-about__inner {
    display: block;
  }
}

.p-about__summary {
  position: sticky;
  top: 80px;
  align-self: start;
  padding-top: 84px;
  border-top: 1px solid #000;
}
@media (max-width: 959px) {
  .p-about__summary {
    display: none;
  }
}

.p-about__label {
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.1818181818;
  color: #d0d0d0;
}

.p-about__name {
  margin-top: 51px;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.1666666667;
  color: #000;
}
@media (max-width: 959px) {
  .p-about__name {
    margin-top: 32px;
  }
}

.p-about__copy {
  margin-top: 12px;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.4666666667;
  color: #999;
}

.p-about__back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 35px;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.25;
  color: #000;
}
@media (max-width: 959px) {
  .p-about__back {
    margin-top: 36px;
  }
}

.p-about__back::before {
  content: "";
  width: 6px;
  height: 10px;
  background-color: currentColor;
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
}

.p-about__content {
  display: grid;
  gap: 0;
}

.p-about__hero {
  container-type: inline-size;
  font-size: calc(100cqw / 14.27);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.8em 0.6em;
  background-color: #fff;
  text-align: center;
}

.p-about__logo {
  --about-logo-duration: 20s;
  position: relative;
  display: inline-block;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 2.3em;
  font-weight: 700;
  line-height: 1.1913043478;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.p-about__logo::before {
  content: attr(data-logo);
  display: block;
  visibility: hidden;
}

.p-about__logo-layer {
  position: absolute;
  inset: 0;
  display: block;
  background-position: center;
  background-size: auto 105%;
  opacity: 0;
  -webkit-background-clip: text;
  background-clip: text;
  animation: aboutLogoFade var(--about-logo-duration) linear infinite both, aboutLogoZoom var(--about-logo-duration) ease-out infinite both;
  animation-delay: var(--about-logo-delay), var(--about-logo-delay);
  -webkit-text-fill-color: transparent;
}

.p-about__logo-layer--01 {
  --about-logo-delay: -1s;
  background-image: url("../img/about/about-logo-mask-01.jpg");
}

.p-about__logo-layer--02 {
  --about-logo-delay: 3s;
  background-image: url("../img/about/about-logo-mask-02.jpg");
}

.p-about__logo-layer--03 {
  --about-logo-delay: 7s;
  background-image: url("../img/about/about-logo-mask-03.jpg");
}

.p-about__logo-layer--04 {
  --about-logo-delay: 11s;
  background-image: url("../img/about/about-logo-mask-04.jpg");
}

.p-about__logo-layer--05 {
  --about-logo-delay: 15s;
  background-image: url("../img/about/about-logo-mask-05.jpg");
}

.p-about__logo-layer--06 {
  --about-logo-delay: 19s;
  background-image: url("../img/about/about-logo-mask-06.jpg");
}

@keyframes aboutLogoFade {
  0% {
    opacity: 0;
  }
  5%, 20% {
    opacity: 1;
  }
  25%, 100% {
    opacity: 0;
  }
}
@keyframes aboutLogoZoom {
  0% {
    background-size: auto 105%;
  }
  25%, 100% {
    background-size: auto 118%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .p-about__logo-layer {
    animation: none;
  }
  .p-about__logo-layer--01 {
    background-size: auto 110%;
    opacity: 1;
  }
}
.p-about__tagline {
  margin-top: -0.0847em;
  font-size: 0.59em;
  font-weight: 100;
  line-height: 1.2033898305;
  color: #999;
}

.p-about__info {
  padding-top: 0;
}
@media (max-width: 959px) {
  .p-about__info {
    padding-top: 40px;
  }
}

.p-about__overview {
  padding-top: 0;
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.1666666667;
  color: #000;
}
@media (max-width: 959px) {
  .p-about__overview {
    display: none;
  }
}

.p-about__details {
  display: grid;
  gap: 30px;
}
@media (max-width: 959px) {
  .p-about__details {
    margin-top: 0;
  }
}

.p-about__detail {
  display: grid;
  gap: 7px;
}

.p-about__detail__label {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.25;
  color: #999;
}

.p-about__detail__text {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.8;
  color: #000;
}

.is-skeleton-active .p-project__ttl,
.is-skeleton-active .p-project__meta,
.is-skeleton-active .p-project-detail__label,
.is-skeleton-active .p-project-detail__title,
.is-skeleton-active .p-project-detail__meta,
.is-skeleton-active .p-project-detail__back {
  position: relative;
  color: transparent;
  overflow: hidden;
}
.is-skeleton-active .p-project__ttl::after,
.is-skeleton-active .p-project__meta::after,
.is-skeleton-active .p-project-detail__label::after,
.is-skeleton-active .p-project-detail__title::after,
.is-skeleton-active .p-project-detail__meta::after,
.is-skeleton-active .p-project-detail__back::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.72) 46%, transparent 92%), #e9e9e9;
  background-size: 220% 100%, 100% 100%;
  animation: skeletonShimmer 1.2s linear infinite;
}
.is-skeleton-active .p-project__ttl::after,
.is-skeleton-active .p-project__meta::after,
.is-skeleton-active .p-project-detail__label::after,
.is-skeleton-active .p-project-detail__title::after,
.is-skeleton-active .p-project-detail__meta::after,
.is-skeleton-active .p-project-detail__back::after {
  top: 50%;
  height: 0.78em;
  transform: translateY(-50%);
}
.is-skeleton-active .p-project__ttl::after {
  width: min(100%, 28rem);
}
.is-skeleton-active .p-project__meta::after {
  width: min(100%, 18rem);
}
.is-skeleton-active .p-project-detail__label::after {
  width: min(100%, 9rem);
}
.is-skeleton-active .p-project-detail__title::after {
  width: min(100%, 17rem);
}
.is-skeleton-active .p-project-detail__meta::after {
  width: min(100%, 20rem);
  height: 2.4em;
}
.is-skeleton-active .p-project-detail__back::after {
  width: min(100%, 13rem);
}

@keyframes skeletonShimmer {
  0% {
    background-position: 120% 0, 0 0;
  }
  100% {
    background-position: -120% 0, 0 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .is-skeleton-active .p-project__ttl::after,
  .is-skeleton-active .p-project__meta::after,
  .is-skeleton-active .p-project-detail__label::after,
  .is-skeleton-active .p-project-detail__title::after,
  .is-skeleton-active .p-project-detail__meta::after,
  .is-skeleton-active .p-project-detail__back::after {
    animation: none;
  }
}
