/*===========================
  @use
===========================*/
/*===========================
  @use
===========================*/
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

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

a, button, summary {
  cursor: pointer;
}
a:focus, button:focus, summary:focus {
  outline: none;
}
a:focus:not(:focus-visible), button:focus:not(:focus-visible), summary:focus:not(:focus-visible) {
  outline: none;
}
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid #ddd;
}

summary {
  display: block;
  list-style: none;
}
summary::-webkit-details-marker {
  display: none;
}

ol, ul, menu {
  list-style: none;
}

img {
  display: block;
  max-inline-size: 100%;
  max-block-size: 100%;
  height: auto;
}

table {
  border-collapse: collapse;
}

input, textarea {
  -webkit-user-select: auto;
}
input:focus, textarea:focus {
  outline: 1px solid;
}
input:focus:not(:focus-visible), textarea:focus:not(:focus-visible) {
  outline: 1px solid red;
  background: transparent;
}
input:focus-visible, textarea:focus-visible {
  outline: 1px solid #d3d3d3;
  background: #f3f3f3;
}

meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert;
}

:where(pre) {
  all: revert;
}

::-webkit-input-placeholder {
  color: unset;
}

::-moz-placeholder {
  color: unset;
}

::placeholder {
  color: unset;
}

::marker {
  content: initial;
}

:where([hidden]) {
  display: none;
}

:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

:where([draggable=true]) {
  -webkit-user-drag: element;
}

:where(dialog:modal) {
  all: revert;
}

body {
  font-family: "Arimo", "Noto Sans JP", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  width: 100%;
  height: 100%;
  color: #F4F3F1;
  background: #1D1C1C;
  -webkit-text-size-adjust: 100%;
  /*font-feature-settings: 'palt';*/
  box-sizing: border-box;
  overflow-x: hidden;
}

*::-moz-selection {
  background: #97cbe2;
}

*::selection {
  background: #97cbe2;
}
*::-moz-selection {
  background: #97cbe2;
}

.l-header {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
}

.l-header__logo {
  width: clamp(3.125rem, 8.3333333333vw, 6.25rem);
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 10;
}

.l-header__menu {
  position: fixed;
  top: 2rem;
  right: 2rem;
  z-index: 10;
}

.l-header__nav {
  font-size: clamp(1rem, 1.953125vw, 1.25rem);
  text-transform: uppercase;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .l-header__nav {
    display: none;
  }
  .is-open .l-header__nav {
    display: block;
    position: absolute;
    right: 0;
    top: 120%;
  }
}

.l-header__list {
  display: -webkit-box;
  display: flex;
  gap: 1rem;
}

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

.l-footer {
  background-color: #000;
  padding: 5rem 0;
}

.l-footer__menu {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-flow: column;
  -webkit-box-align: center;
          align-items: center;
  padding: 0 clamp(1.125rem, 3.3333333333vw, 2.5rem);
  margin: 0 auto 4.5rem;
}
@media screen and (max-width: 576px) {
  .l-footer__menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-flow: column;
  }
}

.l-footer__nav {
  display: -webkit-box;
  display: flex;
  gap: 4rem;
  margin-top: 2.5rem;
  font-size: 1.25rem;
  text-transform: uppercase;
}

.l-footer__sns {
  -webkit-box-pack: center;
          justify-content: center;
}

.l-content {
  width: min(calc(100% - (32px * 2)),1200px);
  margin: auto;
}
@media screen and (max-width: 768px) {
  .l-content {
    width: min(calc(100% - (16px * 2)),1200px);
  }
}

.l-min-content {
  width: min(calc(100% - (32px * 2)),1000px);
  margin: auto;
}
@media screen and (max-width: 768px) {
  .l-min-content {
    width: min(calc(100% - (16px * 2)),1000px);
  }
}

.c-btn {
  display: inline-block;
  width: 100%;
  max-width: 350px;
  margin: 0 10px 20px;
  text-align: center;
}

.c-text:not(:last-child) {
  margin-bottom: 1em;
}

.c-sns-link {
  width: 100%;
  display: -webkit-box;
  display: flex;
  padding: 0 clamp(1.125rem, 3.3333333333vw, 2.5rem);
  gap: 1.5rem;
  margin: auto;
}

.c-sns-link__link {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  gap: 0.25rem 0.5rem;
  font-size: clamp(0.75rem, 1.1666666667vw, 0.875rem);
}
.c-sns-link__link:focus {
  text-decoration: underline;
  opacity: 0.8;
}
@media (hover) {
  .c-sns-link__link:hover {
    text-decoration: underline;
    opacity: 0.8;
  }
}
@media screen and (max-width: 576px) {
  .c-sns-link__link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-flow: column;
    -webkit-box-align: start;
            align-items: flex-start;
  }
}

.c-section-title {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-align: baseline;
          align-items: baseline;
  gap: 1rem;
  line-height: 1;
}

.c-section-title__en {
  font-size: clamp(2rem, 6.0546875vw, 3.875rem);
  text-transform: uppercase;
  font-weight: bold;
}

.p-page-wrap {
  overflow-x: hidden;
}

.p-mv {
  min-height: 100vh;
  position: relative;
}
.p-mv::before {
  content: "";
  display: block;
  width: max(30vw, 30vh);
  height: max(30vw, 30vh);
  background-color: #606060;
  border-radius: 50%;
  -webkit-filter: blur(10vw);
          filter: blur(10vw);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -2;
}

.p-mv__images {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.p-mv__img {
  position: absolute;
  width: max(35vw, 40vh);
}
.p-mv__img img {
  width: 105%;
  height: 105%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-mv__img.is-prev {
  left: min(8%, 17.3611111111vw);
  top: min(10vw, 10vh);
  -webkit-transform: translate(-50%, -50%) rotate(2deg);
          transform: translate(-50%, -50%) rotate(2deg);
}
.p-mv__img.is-main {
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(2deg);
          transform: translate(-50%, -50%) rotate(2deg);
  box-shadow: 0 0 100px rgba(0, 0, 0, 0.8);
}
.p-mv__img.is-next {
  right: min(8%, 17.3611111111vw);
  bottom: min(10vw, 10vh);
  -webkit-transform: translate(50%, 50%) rotate(2deg);
          transform: translate(50%, 50%) rotate(2deg);
}

.p-mv__img-wrap {
  position: relative;
}
.p-mv__img-wrap::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.is-main .p-mv__img-wrap::after {
  width: 100%;
  height: 100%;
  background: -webkit-radial-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.3));
  background: radial-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.3));
}
.is-prev .p-mv__img-wrap::after, .is-next .p-mv__img-wrap::after {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

.p-mv__textarea {
  position: absolute;
  left: clamp(1.125rem, 3.3333333333vw, 2.5rem);
  bottom: 5.5rem;
}

.p-mv__title {
  font-size: clamp(5rem, 12.5vw, 11.25rem);
  font-weight: bold;
  line-height: 1;
  mix-blend-mode: difference;
}

.p-mv__sub-title {
  font-size: clamp(1.25rem, 4.1666666667vw, 3.75rem);
  font-weight: bold;
}

.p-mv__sns {
  -webkit-box-pack: center;
          justify-content: center;
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  mix-blend-mode: difference;
}

.p-partners {
  padding-block: clamp(5rem, 8.3333333333vw, 7.5rem);
}

.p-partners__content {
  max-width: 50rem;
  margin: 3.5rem auto 0;
}

.p-partners__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 768px) {
  .p-partners__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.p-partners__logo, .p-partners__logo--last-raw {
  padding: 2rem;
  display: grid;
  place-content: center;
  opacity: 0.6;
  min-height: 7.5rem;
  border-right: 1px solid rgba(244, 243, 241, 0.6);
  border-bottom: 1px solid rgba(244, 243, 241, 0.6);
}
.p-partners__logo:nth-child(4n), .p-partners__logo--last-raw:nth-child(4n) {
  border-right: none;
}
@media screen and (max-width: 768px) {
  .p-partners__logo:nth-child(even), .p-partners__logo--last-raw:nth-child(even) {
    border-right: 0;
  }
}

.p-partners__logo--last-raw {
  border-bottom: none;
}

.p-contact {
  display: grid;
  grid-template-columns: 3fr 2fr;
  grid-template-areas: "title mail" "title line";
  border-block: 1px solid;
}
@media screen and (max-width: 768px) {
  .p-contact {
    grid-template-columns: 1fr;
    grid-template-areas: "title" "mail" "line";
    border-block: none;
  }
}

.p-contact__headline {
  grid-area: title;
  border-right: 1px solid;
  padding: clamp(1rem, 3.8333333333vw, 2.875rem) clamp(1rem, 5.3333333333vw, 4rem);
  display: grid;
  place-items: center;
}
@media screen and (max-width: 768px) {
  .p-contact__headline {
    border-right: none;
    border-bottom: 1px solid;
  }
}

.p-contact__textarea {
  width: 100%;
}

.p-contact__mail {
  grid-area: mail;
  padding: clamp(1rem, 3.8333333333vw, 2.875rem) clamp(1rem, 5.3333333333vw, 4rem);
  font-size: clamp(1.5rem, 3.90625vw, 2.5rem);
  text-transform: uppercase;
  font-weight: bold;
  border-bottom: 1px solid;
  background-color: #1D1C1C;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-transition: background-color 0.2s cubic-bezier(0, 0, 0.2, 1);
  transition: background-color 0.2s cubic-bezier(0, 0, 0.2, 1);
}
.p-contact__mail img {
  -webkit-transition: -webkit-transform 0.2s cubic-bezier(0, 0, 0.2, 1);
  transition: -webkit-transform 0.2s cubic-bezier(0, 0, 0.2, 1);
  transition: transform 0.2s cubic-bezier(0, 0, 0.2, 1);
  transition: transform 0.2s cubic-bezier(0, 0, 0.2, 1), -webkit-transform 0.2s cubic-bezier(0, 0, 0.2, 1);
}
.p-contact__mail:focus {
  background-color: #000;
}
.p-contact__mail:focus img {
  -webkit-transform: translate(5px, -5px);
          transform: translate(5px, -5px);
}
@media (hover) {
  .p-contact__mail:hover {
    background-color: #000;
  }
  .p-contact__mail:hover img {
    -webkit-transform: translate(5px, -5px);
            transform: translate(5px, -5px);
  }
}

.p-contact__line {
  grid-area: line;
  padding: clamp(1rem, 3.8333333333vw, 2.875rem) clamp(1rem, 5.3333333333vw, 4rem);
  font-size: clamp(1.5rem, 3.90625vw, 2.5rem);
  text-transform: uppercase;
  font-weight: bold;
  background-color: #1D1C1C;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-transition: background-color 0.2s cubic-bezier(0, 0, 0.2, 1);
  transition: background-color 0.2s cubic-bezier(0, 0, 0.2, 1);
}
.p-contact__line img {
  -webkit-transition: -webkit-transform 0.2s cubic-bezier(0, 0, 0.2, 1);
  transition: -webkit-transform 0.2s cubic-bezier(0, 0, 0.2, 1);
  transition: transform 0.2s cubic-bezier(0, 0, 0.2, 1);
  transition: transform 0.2s cubic-bezier(0, 0, 0.2, 1), -webkit-transform 0.2s cubic-bezier(0, 0, 0.2, 1);
}
.p-contact__line:focus {
  background-color: #000;
}
.p-contact__line:focus img {
  -webkit-transform: translate(5px, -5px);
          transform: translate(5px, -5px);
}
@media (hover) {
  .p-contact__line:hover {
    background-color: #000;
  }
  .p-contact__line:hover img {
    -webkit-transform: translate(5px, -5px);
            transform: translate(5px, -5px);
  }
}

.p-contact__arrow {
  width: clamp(1rem, 3.125vw, 2rem);
}

@media screen and (max-width: 1200px) {
  .u-xlUp {
    display: none;
  }
}

@media screen and (max-width: 1024px) {
  .u-lgUp {
    display: none;
  }
}

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

@media screen and (max-width: 576px) {
  .u-smUp {
    display: none;
  }
}

.u-xlUnder {
  display: none;
}
@media screen and (max-width: 1200px) {
  .u-xlUnder {
    display: block;
  }
}

.u-lgUnder {
  display: none;
}
@media screen and (max-width: 1024px) {
  .u-lgUnder {
    display: block;
  }
}

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

.u-smUnder {
  display: none;
}
@media screen and (max-width: 576px) {
  .u-smUnder {
    display: block;
  }
}

.u-indent {
  display: inline-block;
  text-indent: inherit;
}
.u-indent::after {
  content: ".";
  display: inline-block;
  width: 0;
  color: transparent;
  pointer-events: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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