@charset "UTF-8";
html {
  --color-black-100: #151618;
  --color-white-100: #ffffff;
  --color-gray-100: #B4B4B4;
  --color-gray-200: #A1A2A3;
  --color-gray-300: #7A7A7A;
  --color-gray-400: #C8C8C8;
  --color-green-100: #004A4D;
  --select-fill-color: var(--color-black-100);
  --select-text-color: var(--color-white-100);
}

html {
  --ease-01: ease;
  --duration-01: 0.4s;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
* {
  box-sizing: border-box;
}

::before,
::after {
  box-sizing: inherit;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
}

main {
  display: block;
}

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border: 0;
  border-top: 1px solid;
  margin: 0;
  clear: both;
  color: inherit;
}

pre {
  font-family: monospace;
  font-size: inherit;
}

address {
  font-style: inherit;
}

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

abbr[title] {
  border-bottom: none;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace;
  font-size: inherit;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
  vertical-align: bottom;
}

embed,
object,
iframe {
  border: 0;
  vertical-align: bottom;
}

button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  outline: 0;
  border-radius: 0;
  text-align: inherit;
}

[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
  appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
  appearance: radio;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

button[disabled],
[type=button][disabled],
[type=reset][disabled],
[type=submit][disabled] {
  cursor: default;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

option {
  padding: 0;
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
}

legend {
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=checkbox],
[type=radio] {
  padding: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

template {
  display: none;
}

[hidden] {
  display: none !important;
}

:root {
  --margin-1: 30rem;
  --margin-2: 60rem;
  --margin-3: 90rem;
}
@media (max-width: 750px) {
  :root {
    --margin-1: 20rem;
    --margin-2: 40rem;
    --margin-3: 60rem;
  }
}

html {
  min-height: 100%;
  font-feature-settings: "palt" 1;
  font-size: calc(100 / var(--base-vw) * 1 * 1vw);
  --max-width: 1920px;
}
@media (min-width: 993px) {
  html {
    --base-vw: 1440;
  }
}
@media (max-width: 992px) {
  html {
    --base-vw: 992;
  }
}
@media (max-width: 750px) {
  html {
    --base-vw: 400;
  }
}

html, body {
  max-width: 100vw;
}
html ::selection, body ::selection {
  background: var(--select-fill-color);
  color: var(--select-text-color);
}
html ::-moz-selection, body ::-moz-selection {
  background: var(--select-fill-color);
  color: var(--select-text-color);
}

body {
  color: var(--color-black-100);
  background: var(--color-white-100);
  font-size: 14rem;
  font-family: "Roboto Flex", sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

span, div {
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  letter-spacing: inherit;
}

img {
  object-fit: cover;
  pointer-events: none;
  touch-callout: none;
  user-select: none;
  user-drag: none;
  border-radius: inherit;
  width: inherit;
  height: inherit;
}

svg {
  width: inherit;
  height: inherit;
}

small {
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  letter-spacing: inherit;
}

video {
  max-width: 100vw;
  object-fit: cover;
}

picture {
  display: block;
  width: inherit;
  height: inherit;
}
picture source, picture img {
  width: 100%;
  height: 100%;
}

a {
  cursor: pointer;
  line-height: 1;
}
a > * {
  pointer-events: none;
}

button {
  position: relative;
  width: fit-content;
}
button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: calc(100% + 22px);
  width: calc(100% + 22px);
}

section {
  width: 100%;
}

.container {
  min-height: 100vh;
  position: relative;
}

[hidden] {
  display: none !important;
}

body[no-scroll] {
  overflow: hidden;
  overscroll-behavior: none;
}

@media (max-width: 992px) {
  [pc-only] {
    display: none !important;
  }
}

@media (min-width: 993px) {
  [pc-sm-only] {
    display: none !important;
  }
}

@media (max-width: 1580px) {
  [lg-over-only] {
    display: none !important;
  }
}

@media (min-width: 993px) {
  [sp-only] {
    display: none !important;
  }
}

.gs-dev-tools {
  z-index: 9999;
}
.gs-dev-tools svg {
  pointer-events: auto;
}

html[low-battery] [low-battery-hide] {
  display: none !important;
}

html:not([low-battery]) [low-battery-show] {
  display: none !important;
}

html body .setting-row {
  line-height: normal;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

.editor h2 {
  font-size: 26rem;
  font-family: "Roboto Flex", sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: 1.8;
  letter-spacing: 0.1em;
  margin-top: 60rem;
}
@media (max-width: 750px) {
  .editor h2 {
    font-size: 18rem;
    margin-top: 36rem;
  }
}
.editor h3 {
  font-size: 22rem;
  font-family: "Roboto Flex", sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: 1.8;
  letter-spacing: 0.1em;
  margin-top: 40rem;
}
@media (max-width: 750px) {
  .editor h3 {
    font-size: 16rem;
    margin-top: 28rem;
  }
}
.editor p {
  font-size: 15rem;
  font-family: "Roboto Flex", sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: 2;
  letter-spacing: 0.1em;
  margin-top: 26rem;
}
@media (max-width: 750px) {
  .editor p {
    font-size: 13rem;
    margin-top: 20rem;
  }
}
.editor img {
  width: 100%;
  height: auto;
  margin-top: 65rem;
}
@media (max-width: 750px) {
  .editor img {
    margin-top: 56rem;
  }
}
.editor ul, .editor ol {
  font-size: 15rem;
  font-family: "Roboto Flex", sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: 2;
  letter-spacing: 0.1em;
  margin-top: 65rem;
}
@media (max-width: 750px) {
  .editor ul, .editor ol {
    font-size: 13rem;
    margin-top: 36rem;
  }
}
.editor ul > li::before {
  content: "・";
}
.editor ol > li {
  counter-increment: number;
}
.editor ol > li::before {
  content: counter(number) ".";
  margin-right: 10rem;
}
.editor a {
  position: relative;
}
.editor a::before {
  content: "";
  width: calc(100% - 16rem);
  height: 1rem;
  position: absolute;
  top: auto;
  right: 0;
  bottom: -1.5rem;
  left: 0;
  background: var(--color-black-100);
}
.editor a {
  transition: opacity var(--ease-origin-1) var(--duration-origin-1);
}
@media (hover: hover) {
  .editor a:hover {
    opacity: 0.5;
  }
}

html {
  --color-black-100: #151618;
  --color-white-100: #ffffff;
  --color-gray-100: #B4B4B4;
  --color-gray-200: #A1A2A3;
  --color-gray-300: #7A7A7A;
  --color-gray-400: #C8C8C8;
  --color-green-100: #004A4D;
  --select-fill-color: var(--color-black-100);
  --select-text-color: var(--color-white-100);
}

html {
  --ease-01: ease;
  --duration-01: 0.4s;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
footer.base-footer {
  position: relative;
  background: var(--color-black-100);
  display: grid;
  grid-template-columns: 248rem 1fr;
  grid-template-rows: auto 1fr;
  padding-top: 100rem;
  padding-bottom: 100rem;
  padding-left: 40rem;
  padding-right: 40rem;
}
@media (max-width: 750px) {
  footer.base-footer {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    padding-top: 84rem;
    padding-bottom: 48rem;
    padding-left: 20rem;
    padding-right: 20rem;
  }
}
footer.base-footer .base-footer__back {
  width: 60rem;
  height: 60rem;
  border: 1rem solid var(--color-white-100);
  border-radius: 50%;
  position: absolute;
  top: 40rem;
  right: 40rem;
  bottom: auto;
  left: auto;
  color: var(--color-white-100);
  font-size: 10rem;
  font-family: "Roboto Flex", sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
@media (max-width: 750px) {
  footer.base-footer .base-footer__back {
    top: auto;
    right: 24rem;
    bottom: 52rem;
    left: auto;
  }
}
footer.base-footer .base-footer__contact {
  grid-column: 2/3;
  font-size: 94rem;
  font-family: "Roboto Flex", sans-serif;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.04em;
  color: var(--color-white-100);
  display: flex;
  margin-top: auto;
  margin-left: auto;
  margin-right: 0;
  position: relative;
  top: 10rem;
}
@media (max-width: 992px) {
  footer.base-footer .base-footer__contact {
    font-size: 56rem;
    top: 0;
  }
}
@media (max-width: 750px) {
  footer.base-footer .base-footer__contact {
    grid-column: 1/2;
    grid-row: 2/3;
    font-size: 36rem;
    margin-top: 65rem;
    margin-left: 0;
    margin-right: 0;
    letter-spacing: 0.07em;
    gap: 0;
  }
}
footer.base-footer .base-footer__contact__arrow {
  width: 90rem;
  height: auto;
  position: relative;
  top: -1rem;
  right: 2rem;
}
@media (max-width: 992px) {
  footer.base-footer .base-footer__contact__arrow {
    width: 80rem;
    height: auto;
    top: 0;
    right: 5rem;
  }
}
@media (max-width: 750px) {
  footer.base-footer .base-footer__contact__arrow {
    width: 45rem;
  }
}
footer.base-footer .base-footer__contact__arrow img:first-of-type {
  width: 25rem;
  height: auto;
  position: absolute;
  top: 16rem;
  right: 6rem;
  bottom: 0;
  left: 0;
  margin: auto;
}
@media (max-width: 992px) {
  footer.base-footer .base-footer__contact__arrow img:first-of-type {
    width: 20rem;
    height: auto;
    top: -4rem;
    right: 4rem;
    bottom: 0;
    left: 0;
  }
}
@media (max-width: 750px) {
  footer.base-footer .base-footer__contact__arrow img:first-of-type {
    width: 11rem;
    height: auto;
    top: -4rem;
    right: 4rem;
    bottom: 0;
    left: 0;
  }
}
footer.base-footer .base-footer__contact__arrow img:last-of-type {
  width: 100%;
  height: auto;
}
footer.base-footer .base-footer__menu {
  grid-row: 1/2;
}
@media (max-width: 750px) {
  footer.base-footer .base-footer__menu {
    display: flex;
    flex-direction: column;
  }
}
footer.base-footer .base-footer__logo {
  width: 100%;
  height: auto;
}
@media (max-width: 750px) {
  footer.base-footer .base-footer__logo {
    width: 240rem;
  }
}
footer.base-footer .base-footer__nav {
  margin-top: 40rem;
}
@media (max-width: 750px) {
  footer.base-footer .base-footer__list {
    display: flex;
    flex-direction: column;
  }
}
footer.base-footer .base-footer__item:not(:first-of-type) {
  margin-top: 30rem;
}
@media (max-width: 750px) {
  footer.base-footer .base-footer__item:not(:first-of-type) {
    margin-top: 25rem;
  }
}
footer.base-footer .base-footer__item__link {
  display: inline-block;
  color: var(--color-white-100);
  font-size: 32rem;
  font-family: "Roboto Flex", sans-serif;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.1em;
}
@media (max-width: 750px) {
  footer.base-footer .base-footer__item__link {
    font-size: 35rem;
  }
}
footer.base-footer .base-footer__sns {
  display: flex;
  gap: 16rem;
  margin-top: 40rem;
}
@media (max-width: 750px) {
  footer.base-footer .base-footer__sns {
    margin-top: 24rem;
    gap: 18rem;
  }
}
footer.base-footer .base-footer__sns__item {
  width: 50rem;
  height: 50rem;
  border: 1rem solid var(--color-white-100);
  border-radius: 50%;
  position: relative;
}
@media (max-width: 750px) {
  footer.base-footer .base-footer__sns__item {
    width: 60rem;
    height: 60rem;
  }
}
footer.base-footer .base-footer__sns__item:first-of-type svg {
  width: 26rem;
  height: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
footer.base-footer .base-footer__sns__item:last-of-type svg {
  width: 20rem;
  height: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
footer.base-footer .base-footer__bottom {
  grid-column: 1/3;
  grid-row: 2/3;
  margin-top: 78rem;
  padding-top: 20rem;
  position: relative;
  display: flex;
}
@media (max-width: 750px) {
  footer.base-footer .base-footer__bottom {
    grid-column: 1/2;
    grid-row: 3/4;
    margin-top: 15rem;
    padding-top: 57rem;
    padding-left: 0;
    padding-right: 0;
    display: flex;
    flex-direction: column;
  }
}
footer.base-footer .base-footer__bottom::before {
  content: "";
  width: 100%;
  height: 1rem;
  background: var(--color-white-100);
  position: absolute;
  top: 0;
  right: 0;
  bottom: auto;
  left: 0;
  opacity: 0.5;
}
footer.base-footer .base-footer__presented {
  font-size: 12rem;
  font-family: "Roboto Flex", sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.05em;
  color: var(--color-gray-200);
  display: flex;
  align-items: center;
}
@media (max-width: 750px) {
  footer.base-footer .base-footer__presented {
    font-size: 14rem;
    letter-spacing: 0.09em;
  }
}
footer.base-footer .base-footer__presented a {
  display: inline-flex;
}
@media (max-width: 750px) {
  footer.base-footer .base-footer__presented a {
    align-items: center;
  }
}
footer.base-footer .base-footer__presented img {
  width: 92rem;
  height: auto;
  aspect-ratio: 92/20;
}
@media (max-width: 750px) {
  footer.base-footer .base-footer__presented img {
    width: 78rem;
  }
}
footer.base-footer .base-footer__presented svg {
  width: 16rem;
  height: auto;
  margin-left: 6rem;
  margin-right: 0;
  position: relative;
  top: -1rem;
  opacity: 0.6;
}
@media (max-width: 750px) {
  footer.base-footer .base-footer__presented svg {
    width: 20rem;
    height: auto;
    top: 0;
  }
}
footer.base-footer .base-footer__policy {
  font-size: 12rem;
  font-family: "Roboto Flex", sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.05em;
  color: var(--color-gray-200);
  display: flex;
  align-items: center;
  margin-left: 26rem;
  margin-right: 0;
  letter-spacing: 0.05em;
}
@media (max-width: 750px) {
  footer.base-footer .base-footer__policy {
    width: fit-content;
    font-size: 14rem;
    margin-left: 0;
    margin-right: 0;
    margin-top: 16rem;
  }
}
footer.base-footer .base-footer__policy svg {
  width: 16rem;
  height: auto;
  margin-left: 4rem;
  margin-right: auto;
  opacity: 0.6;
}
@media (max-width: 750px) {
  footer.base-footer .base-footer__policy svg {
    width: 20rem;
    height: auto;
    margin-left: 6rem;
    margin-right: auto;
  }
}
footer.base-footer .base-footer__copyright {
  font-size: 12rem;
  font-family: "Roboto Flex", sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  color: var(--color-gray-200);
  margin-left: auto;
  margin-right: 0;
  display: flex;
  align-items: center;
}
@media (max-width: 750px) {
  footer.base-footer .base-footer__copyright {
    margin-top: 16rem;
    margin-left: 0;
    margin-right: 0;
  }
}
footer.base-footer .base-footer__back {
  transition: background 0.3s ease, color 0.3s ease;
}
footer.base-footer .base-footer__sns__item {
  transition: background 0.3s ease;
}
footer.base-footer .base-footer__sns__item svg path {
  transition: fill 0.3s ease;
}

html {
  --color-black-100: #151618;
  --color-white-100: #ffffff;
  --color-gray-100: #B4B4B4;
  --color-gray-200: #A1A2A3;
  --color-gray-300: #7A7A7A;
  --color-gray-400: #C8C8C8;
  --color-green-100: #004A4D;
  --select-fill-color: var(--color-black-100);
  --select-text-color: var(--color-white-100);
}

html {
  --ease-01: ease;
  --duration-01: 0.4s;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
header.base-header {
  width: 100%;
  height: 92rem;
  position: fixed;
  top: 0;
  right: 0;
  bottom: auto;
  left: 0;
  padding-left: var(--margin-1);
  padding-right: var(--margin-1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9998;
}
@media (max-width: 750px) {
  header.base-header {
    width: 100%;
    height: 68rem;
  }
}
header.base-header .base-header__button {
  width: 60rem;
  height: 18rem;
  overflow: hidden;
}
header.base-header .base-header__button span {
  width: 100%;
  height: 1.5rem;
  position: absolute;
  margin: auto;
  background: var(--color-white-100);
}
header.base-header .base-header__button span:nth-of-type(1) {
  top: 0;
  right: 0;
  bottom: auto;
  left: 0;
}
header.base-header .base-header__button span:nth-of-type(2) {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
header.base-header .base-header__button span:nth-of-type(3) {
  top: auto;
  right: 0;
  bottom: 0;
  left: 0;
}
header.base-header .base-header__logo {
  width: 141rem;
  height: auto;
  margin-top: 1rem;
}
@media (max-width: 750px) {
  header.base-header .base-header__logo {
    width: 123rem;
  }
}
header.base-header .base-header__logo svg path {
  transition: fill 0.3s ease;
}
header.base-header[open] .base-header__button span {
  background: var(--color-black-100);
}
header.base-header[open] .base-header__button span:nth-of-type(1) {
  animation: lineOpen01 0.6s ease forwards;
}
@keyframes lineOpen01 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(8rem) rotate(0);
  }
  100% {
    transform: translateY(8rem) rotate(15deg);
  }
}
header.base-header[open] .base-header__button span:nth-of-type(2) {
  animation: lineOpen02 0.6s ease forwards;
}
@keyframes lineOpen02 {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
header.base-header[open] .base-header__button span:nth-of-type(3) {
  animation: lineOpen03 0.6s ease forwards;
}
@keyframes lineOpen03 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-8rem) rotate(0);
  }
  100% {
    transform: translateY(-8rem) rotate(-15deg);
  }
}
@media (max-width: 750px) {
  header.base-header[open] .base-header__logo svg path {
    fill: var(--color-black-100);
  }
}
header.base-header[close] .base-header__button span:nth-of-type(1) {
  animation: lineClose01 0.6s ease forwards;
}
@keyframes lineClose01 {
  0% {
    transform: translateY(8rem) rotate(15deg);
  }
  50% {
    transform: translateY(8rem) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
header.base-header[close] .base-header__button span:nth-of-type(2) {
  animation: lineClose02 0.6s ease forwards;
}
@keyframes lineClose02 {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
header.base-header[close] .base-header__button span:nth-of-type(3) {
  animation: lineClose03 0.6s ease forwards;
}
@keyframes lineClose03 {
  0% {
    transform: translateY(-8rem) rotate(-15deg);
  }
  50% {
    transform: translateY(-8rem) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}

html {
  --color-black-100: #151618;
  --color-white-100: #ffffff;
  --color-gray-100: #B4B4B4;
  --color-gray-200: #A1A2A3;
  --color-gray-300: #7A7A7A;
  --color-gray-400: #C8C8C8;
  --color-green-100: #004A4D;
  --select-fill-color: var(--color-black-100);
  --select-text-color: var(--color-white-100);
}

html {
  --ease-01: ease;
  --duration-01: 0.4s;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.base-loading {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  overflow: hidden;
}
.base-loading .base-loading__logo {
  width: 242rem;
  height: 238rem;
  aspect-ratio: 242/238;
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.base-loading .base-loading__logo canvas {
  width: 100%;
  height: 100%;
}
.base-loading .base-loading__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  z-index: 1;
}
.base-loading .base-loading__bg--green {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background-color: var(--color-green-100);
  z-index: 0;
}
.base-loading {
  pointer-events: none;
}

html {
  --color-black-100: #151618;
  --color-white-100: #ffffff;
  --color-gray-100: #B4B4B4;
  --color-gray-200: #A1A2A3;
  --color-gray-300: #7A7A7A;
  --color-gray-400: #C8C8C8;
  --color-green-100: #004A4D;
  --select-fill-color: var(--color-black-100);
  --select-text-color: var(--color-white-100);
}

html {
  --ease-01: ease;
  --duration-01: 0.4s;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.base-menu {
  position: fixed;
  z-index: 9998;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
@media (max-width: 750px) {
  .base-menu {
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
}
.base-menu .base-menu__inner {
  width: 480rem;
  height: calc(100% - 60rem);
  padding-left: 32rem;
  padding-right: 32rem;
  position: absolute;
  top: 30rem;
  right: auto;
  bottom: 30rem;
  left: 24rem;
  z-index: 1;
}
@media (max-width: 750px) {
  .base-menu .base-menu__inner {
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
}
.base-menu .base-menu__nav {
  margin-top: 185rem;
}
@media (max-width: 750px) {
  .base-menu .base-menu__nav {
    margin-top: 100rem;
  }
}
.base-menu .base-menu__item:not(:first-of-type) {
  margin-top: 40rem;
}
@media (max-width: 750px) {
  .base-menu .base-menu__item:not(:first-of-type) {
    margin-top: 32rem;
  }
}
.base-menu .base-menu__item__link {
  display: inline-block;
  font-size: 32rem;
  font-family: "Roboto Flex", sans-serif;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
}
@media (max-width: 750px) {
  .base-menu .base-menu__item__link {
    font-size: 48rem;
  }
}
.base-menu .base-menu__bottom {
  position: absolute;
  top: auto;
  right: auto;
  bottom: 42rem;
  left: 30rem;
}
.base-menu .base-menu__contact {
  font-size: 48rem;
  font-family: "Roboto Flex", sans-serif;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.04em;
  display: flex;
}
@media (max-width: 992px) {
  .base-menu .base-menu__contact {
    font-size: 40rem;
  }
}
.base-menu .base-menu__contact__arrow {
  width: 26rem;
  height: auto;
  position: relative;
}
.base-menu .base-menu__contact__arrow svg {
  width: 26rem;
  height: auto;
}
.base-menu .base-menu__contact__arrow svg polyline, .base-menu .base-menu__contact__arrow svg line {
  stroke: var(--color-gray-200);
}
.base-menu .base-menu__contact__title {
  font-size: 12rem;
  font-family: "Roboto Flex", sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  color: var(--color-gray-200);
}
.base-menu .base-menu__sns {
  display: flex;
  gap: 16rem;
  margin-top: 50rem;
}
.base-menu .base-menu__sns__item {
  width: 40rem;
  height: 40rem;
  border: 1rem solid var(--color-black-100);
  border-radius: 50%;
  position: relative;
}
@media (max-width: 750px) {
  .base-menu .base-menu__sns__item {
    width: 60rem;
    height: 60rem;
  }
}
.base-menu .base-menu__sns__item:first-of-type svg {
  width: 24rem;
  height: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.base-menu .base-menu__sns__item:first-of-type svg path {
  fill: var(--color-black-100);
}
.base-menu .base-menu__sns__item:last-of-type svg {
  width: 16rem;
  height: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.base-menu .base-menu__sns__item:last-of-type svg g > g > path {
  fill: var(--color-black-100);
}
.base-menu .base-menu__presented {
  font-size: 12rem;
  font-family: "Roboto Flex", sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  color: var(--color-gray-200);
  display: flex;
  align-items: center;
  margin-top: 16rem;
}
.base-menu .base-menu__presented img {
  width: 73rem;
  height: auto;
  aspect-ratio: 92/20;
  fill: var(--color-black-100);
  filter: invert(1);
  position: relative;
  top: -1rem;
}
.base-menu .base-menu__presented img path {
  fill: var(--color-black-100);
}
.base-menu .base-menu__presented svg {
  width: 16rem;
  height: auto;
}
.base-menu .base-menu__presented svg path {
  fill: var(--color-gray-200);
}
.base-menu .base-menu__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.base-menu .base-menu__bg--white {
  background: var(--color-white-100);
  z-index: -1;
}
.base-menu .base-menu__bg--gray {
  background: var(--color-gray-100);
  z-index: -2;
}
.base-menu .base-menu__bg--green {
  background: var(--color-green-100);
  z-index: -3;
}
.base-menu .base-menu__overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  z-index: -1;
}
.base-menu {
  pointer-events: none;
}
.base-menu .base-menu__bg {
  transform: scale(1, 0);
}
.base-menu .base-menu__contents {
  opacity: 0;
}
.base-menu .base-menu__bottom {
  opacity: 0;
}
.base-menu .base-menu__contact__arrow {
  transform: rotate(-45deg);
}
.base-menu .base-menu__sns__item {
  transition: background 0.3s ease;
}
.base-menu .base-menu__sns__item svg path {
  transition: fill 0.3s ease;
}
.base-menu[open] {
  pointer-events: auto;
}

html {
  --color-black-100: #151618;
  --color-white-100: #ffffff;
  --color-gray-100: #B4B4B4;
  --color-gray-200: #A1A2A3;
  --color-gray-300: #7A7A7A;
  --color-gray-400: #C8C8C8;
  --color-green-100: #004A4D;
  --select-fill-color: var(--color-black-100);
  --select-text-color: var(--color-white-100);
}

html {
  --ease-01: ease;
  --duration-01: 0.4s;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.base-mouse {
  width: 10rem;
  height: 10rem;
  background: var(--color-green-100);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.base-mouse__polygon {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.base-mouse__polygon[mouse-polygon-01] {
  width: 100rem;
  height: auto;
  aspect-ratio: 346/329;
}
.base-mouse__polygon[mouse-polygon-02] {
  width: 60rem;
  height: auto;
  aspect-ratio: 255/520;
}
.base-mouse__polygon .base-mouse__polygon__contents {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.base-mouse__polygon {
  transition: opacity 0.4s ease;
  opacity: 0;
}
.base-mouse__polygon svg path {
  transition: stroke 0.3s ease;
}
.base-mouse__polygon[show] {
  opacity: 1;
}
.base-mouse__polygon[mouse-polygon-01] .base-mouse__polygon__contents {
  animation: rotate 10s linear infinite;
}
.base-mouse__polygon[mouse-polygon-02] .base-mouse__polygon__contents {
  animation: rotate 20s linear infinite reverse;
}
.base-mouse__polygon[green] svg path {
  stroke: var(--color-green-100);
}

html {
  --color-black-100: #151618;
  --color-white-100: #ffffff;
  --color-gray-100: #B4B4B4;
  --color-gray-200: #A1A2A3;
  --color-gray-300: #7A7A7A;
  --color-gray-400: #C8C8C8;
  --color-green-100: #004A4D;
  --select-fill-color: var(--color-black-100);
  --select-text-color: var(--color-white-100);
}

html {
  --ease-01: ease;
  --duration-01: 0.4s;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.base-profile {
  width: 320rem;
  height: calc(100% - 60rem);
  position: fixed;
  top: 30rem;
  right: 30rem;
  bottom: 30rem;
  left: auto;
  z-index: 9999;
  color: var(--color-white-100);
  overflow: hidden;
}
@media (max-width: 750px) {
  .base-profile {
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
}
.base-profile .base-profile__button {
  width: 60rem;
  height: 18rem;
  position: absolute;
  top: 15rem;
  right: 15rem;
  bottom: auto;
  left: auto;
  overflow: hidden;
}
.base-profile .base-profile__button span {
  width: 100%;
  height: 1.5rem;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background: var(--color-white-100);
}
.base-profile .base-profile__button span:nth-of-type(1) {
  transform: rotate(15deg);
}
.base-profile .base-profile__button span:nth-of-type(2) {
  transform: rotate(-15deg);
}
.base-profile .base-profile__inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.base-profile .base-profile__inner::-webkit-scrollbar {
  display: none;
}
.base-profile .base-profile__contents {
  padding-top: 40rem;
  padding-bottom: 40rem;
  padding-left: 40rem;
  padding-right: 40rem;
}
.base-profile .base-profile__title {
  font-size: 14rem;
  font-family: "Roboto Flex", sans-serif;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  display: flex;
  align-items: center;
}
.base-profile .base-profile__title svg {
  width: 10rem;
  height: auto;
  margin-left: 0;
  margin-right: 8rem;
  position: relative;
  top: -1rem;
}
.base-profile .base-profile__name--ja {
  font-size: 32rem;
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  margin-top: 32rem;
  letter-spacing: 0.1em;
}
.base-profile .base-profile__name--en {
  font-size: 14rem;
  font-family: "Roboto Flex", sans-serif;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  margin-top: 8rem;
  letter-spacing: 0.05em;
}
.base-profile .base-profile__name--en::after {
  content: "";
  display: block;
  width: 100%;
  height: 1rem;
  background: var(--color-white-100);
  margin-top: 8rem;
}
.base-profile .base-profile__category {
  font-size: 14rem;
  font-family: "Roboto Flex", sans-serif;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  margin-top: 16rem;
  letter-spacing: 0.05em;
}
.base-profile .base-profile__desc {
  font-size: 14rem;
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  margin-top: 32rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
.base-profile .base-profile__sns {
  display: flex;
  gap: 10rem;
  margin-top: 32rem;
}
.base-profile .base-profile__sns__item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30rem;
  height: 30rem;
  border: 1rem solid var(--color-white-100);
  border-radius: 50%;
}
.base-profile .base-profile__sns__item svg {
  width: 14rem;
  height: auto;
}
.base-profile .base-profile__sns__item:nth-of-type(2) svg {
  width: 14rem;
  height: auto;
}
.base-profile .base-profile__sns__item:nth-of-type(3) svg {
  width: 12rem;
  height: auto;
}
.base-profile .base-profile__bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.base-profile .base-profile__bg--black {
  background: var(--color-black-100);
  z-index: -1;
}
.base-profile .base-profile__bg--gray {
  background: var(--color-gray-100);
  z-index: -2;
}
.base-profile .base-profile__bg--green {
  background: var(--color-green-100);
  z-index: -3;
}
.base-profile {
  pointer-events: none;
}
.base-profile .base-profile__bg {
  transform: scale(1, 0);
}
.base-profile .base-profile__button {
  opacity: 0;
}
.base-profile .base-profile__contents {
  opacity: 0;
}
.base-profile[open] {
  pointer-events: auto;
}

html {
  --color-black-100: #151618;
  --color-white-100: #ffffff;
  --color-gray-100: #B4B4B4;
  --color-gray-200: #A1A2A3;
  --color-gray-300: #7A7A7A;
  --color-gray-400: #C8C8C8;
  --color-green-100: #004A4D;
  --select-fill-color: var(--color-black-100);
  --select-text-color: var(--color-white-100);
}

html {
  --ease-01: ease;
  --duration-01: 0.4s;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.base-transition {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  overflow: hidden;
}
.base-transition .base-transition__logo {
  width: 242rem;
  height: 238rem;
  z-index: 2;
}
.base-transition .base-transition__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  z-index: 1;
}
.base-transition .base-transition__bg--green {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background-color: var(--color-green-100);
  z-index: 0;
}
.base-transition .base-transition__bg, .base-transition .base-transition__bg--green {
  -webkit-mask-image: linear-gradient(to right, black 0%, black 100%);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: left center;
  -webkit-mask-size: 0% 100%;
  mask-image: linear-gradient(to right, black 0%, black 100%);
  mask-repeat: no-repeat;
  mask-position: left center;
  mask-size: 0% 100%;
}
.base-transition {
  pointer-events: none;
}

html {
  --color-black-100: #151618;
  --color-white-100: #ffffff;
  --color-gray-100: #B4B4B4;
  --color-gray-200: #A1A2A3;
  --color-gray-300: #7A7A7A;
  --color-gray-400: #C8C8C8;
  --color-green-100: #004A4D;
  --select-fill-color: var(--color-black-100);
  --select-text-color: var(--color-white-100);
}

html {
  --ease-01: ease;
  --duration-01: 0.4s;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.container[page="404"] .error {
  width: 100%;
  height: 100vh;
  position: relative;
  color: var(--color-white-100);
  background: var(--color-black-100);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-left: 40rem;
  padding-right: 40rem;
}
@media (max-width: 750px) {
  .container[page="404"] .error {
    padding-left: 20rem;
    padding-right: 20rem;
  }
}
.container[page="404"] .error .error__contents {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.container[page="404"] .error .error__title {
  font-size: 96rem;
  font-family: "Roboto Flex", sans-serif;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.03em;
}
@media (max-width: 750px) {
  .container[page="404"] .error .error__title {
    font-size: 48rem;
  }
}
.container[page="404"] .error .error__text {
  font-size: 16rem;
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  letter-spacing: 0.04em;
  margin-top: 8rem;
}
@media (max-width: 750px) {
  .container[page="404"] .error .error__text {
    font-size: 12rem;
  }
}
.container[page="404"] .error .error__link {
  font-size: 24rem;
  font-family: "Roboto Flex", sans-serif;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  margin-top: 8rem;
}
@media (max-width: 750px) {
  .container[page="404"] .error .error__link {
    font-size: 18rem;
  }
}
.container[page="404"] .error .error__link__arrow {
  width: 45rem;
  height: 38rem;
}
@media (max-width: 750px) {
  .container[page="404"] .error .error__link__arrow {
    width: 30rem;
    height: 25rem;
  }
}
.container[page="404"] .error .error__polygon {
  position: absolute;
}
.container[page="404"] .error .error__polygon--01 {
  width: 217rem;
  height: auto;
  top: -96rem;
  right: 427rem;
  bottom: auto;
  left: auto;
}
@media (max-width: 750px) {
  .container[page="404"] .error .error__polygon--01 {
    width: 124rem;
    top: 123rem;
    right: 345rem;
    bottom: auto;
    left: auto;
    z-index: 1;
  }
}
@media (max-width: 750px) {
  .container[page="404"] .error .error__polygon--01 img {
    transform: rotate(22deg);
  }
}
.container[page="404"] .error .error__polygon--02 {
  width: 129rem;
  height: auto;
  top: 15rem;
  right: 155rem;
  bottom: auto;
  left: auto;
}
@media (max-width: 750px) {
  .container[page="404"] .error .error__polygon--02 {
    width: 103rem;
    top: -15rem;
    right: 174rem;
    bottom: auto;
    left: auto;
  }
}
.container[page="404"] .error .error__polygon--02 img {
  transform: rotate(-58deg);
}
.container[page="404"] .error .error__polygon--03 {
  width: 137rem;
  height: auto;
  top: 3rem;
  right: 63rem;
  bottom: auto;
  left: auto;
}
@media (max-width: 750px) {
  .container[page="404"] .error .error__polygon--03 {
    width: 146rem;
    top: -68rem;
    right: -40rem;
    bottom: auto;
    left: auto;
  }
}
.container[page="404"] .error .error__polygon--04 {
  width: 252rem;
  height: auto;
  top: 214rem;
  right: 295rem;
  bottom: auto;
  left: auto;
}
@media (max-width: 992px) {
  .container[page="404"] .error .error__polygon--04 {
    width: 200rem;
    top: 250rem;
    right: 300rem;
    bottom: auto;
    left: auto;
  }
}
@media (max-width: 750px) {
  .container[page="404"] .error .error__polygon--04 {
    width: 300rem;
    top: -58rem;
    right: 235rem;
    bottom: auto;
    left: auto;
  }
}
.container[page="404"] .error .error__polygon--05 {
  width: 194rem;
  height: auto;
  top: 195rem;
  right: 2rem;
  bottom: auto;
  left: auto;
}
@media (max-width: 992px) {
  .container[page="404"] .error .error__polygon--05 {
    width: 160rem;
    top: 220rem;
    right: -20rem;
    bottom: auto;
    left: auto;
  }
}
@media (max-width: 750px) {
  .container[page="404"] .error .error__polygon--05 {
    width: 157rem;
    top: 185rem;
    right: -69rem;
    bottom: auto;
    left: auto;
  }
}
.container[page="404"] .error .error__polygon--05 img {
  transform: rotate(50deg);
}
.container[page="404"] .error .error__polygon--06 {
  width: 291rem;
  height: auto;
  top: 490rem;
  right: 304rem;
  bottom: auto;
  left: auto;
  z-index: 1;
}
@media (max-width: 992px) {
  .container[page="404"] .error .error__polygon--06 {
    width: 250rem;
    top: 634rem;
    right: 180rem;
    bottom: auto;
    left: auto;
  }
}
@media (max-width: 750px) {
  .container[page="404"] .error .error__polygon--06 {
    width: 335rem;
    top: auto;
    right: 236rem;
    bottom: 0;
    left: auto;
  }
}
.container[page="404"] .error .error__polygon--06 img {
  transform: rotate(-11deg);
}
.container[page="404"] .error .error__polygon--07 {
  width: 225rem;
  height: auto;
  top: 534rem;
  right: 170rem;
  bottom: auto;
  left: auto;
}
@media (max-width: 992px) {
  .container[page="404"] .error .error__polygon--07 {
    width: 180rem;
    top: 550rem;
    right: 100rem;
    bottom: auto;
    left: auto;
  }
}
@media (max-width: 750px) {
  .container[page="404"] .error .error__polygon--07 {
    width: 205rem;
    top: auto;
    right: 100rem;
    bottom: -20rem;
    left: auto;
  }
}
.container[page="404"] .error .error__polygon--08 {
  width: 206rem;
  height: auto;
  top: 630rem;
  right: 459rem;
  bottom: auto;
  left: auto;
  z-index: 2;
}
@media (max-width: 992px) {
  .container[page="404"] .error .error__polygon--08 {
    width: 180rem;
    top: 720rem;
    right: 320rem;
    bottom: auto;
    left: auto;
  }
}
@media (max-width: 750px) {
  .container[page="404"] .error .error__polygon--08 {
    top: auto;
    right: 330rem;
    bottom: -100rem;
    left: auto;
  }
}
.container[page="404"] .error .error__polygon--09 {
  width: 189rem;
  height: auto;
  top: 680rem;
  right: -7rem;
  bottom: auto;
  left: auto;
  z-index: 1;
}
@media (max-width: 750px) {
  .container[page="404"] .error .error__polygon--09 {
    width: 220rem;
    top: auto;
    right: -70rem;
    bottom: 0;
    left: auto;
  }
}
.container[page="404"] .error .error__polygon--09 img {
  transform: rotate(54deg);
}
.container[page="404"] .error .error__polygon--10 {
  width: 224rem;
  height: auto;
  top: 737rem;
  right: 127rem;
  bottom: auto;
  left: auto;
}
@media (max-width: 992px) {
  .container[page="404"] .error .error__polygon--10 {
    width: 180rem;
    top: 940rem;
    right: 100rem;
    bottom: auto;
    left: auto;
  }
}
@media (max-width: 750px) {
  .container[page="404"] .error .error__polygon--10 {
    width: 220rem;
    top: auto;
    right: -100rem;
    bottom: -200rem;
    left: auto;
  }
}
.container[page="404"] .error .error__polygon--10 img {
  transform: rotate(-59deg);
}

html {
  --color-black-100: #151618;
  --color-white-100: #ffffff;
  --color-gray-100: #B4B4B4;
  --color-gray-200: #A1A2A3;
  --color-gray-300: #7A7A7A;
  --color-gray-400: #C8C8C8;
  --color-green-100: #004A4D;
  --select-fill-color: var(--color-black-100);
  --select-text-color: var(--color-white-100);
}

html {
  --ease-01: ease;
  --duration-01: 0.4s;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.container[page=index] {
  position: relative;
  z-index: 0;
}
.container[page=index] section .section__title {
  font-size: 18rem;
  font-family: "Roboto Flex", sans-serif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  color: var(--color-white-100);
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  white-space: pre;
}
.container[page=index] section .section__title svg {
  width: 10rem;
  height: 10rem;
  margin-left: 0;
  margin-right: 10rem;
  position: relative;
  top: -1rem;
}
.container[page=index] .bg {
  background: var(--color-gray-100);
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.container[page=index] .bg .bg__noise {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  opacity: 0.2;
  mix-blend-mode: multiply;
  background-image: url(/wp/wp-content/themes/theme/assets/images/bg_noise.gif);
  z-index: -1;
}
@media (max-width: 750px) {
  .container[page=index] .bg .bg__noise {
    opacity: 0.1;
  }
}
.container[page=index] .bg .bg__polygon {
  position: absolute;
  z-index: -1;
}
.container[page=index] .bg .bg__polygon__01 {
  width: 200rem;
  height: auto;
  top: 94rem;
  right: 408rem;
  bottom: auto;
  left: auto;
}
@media (max-width: 750px) {
  .container[page=index] .bg .bg__polygon__01 {
    width: 124rem;
    top: 123rem;
    right: 345rem;
    bottom: auto;
    left: auto;
    z-index: 1;
  }
}
@media (max-width: 750px) {
  .container[page=index] .bg .bg__polygon__01 img {
    transform: rotate(22deg);
  }
}
.container[page=index] .bg .bg__polygon__02 {
  width: 129rem;
  height: auto;
  top: 224rem;
  right: 167rem;
  bottom: auto;
  left: auto;
}
@media (max-width: 750px) {
  .container[page=index] .bg .bg__polygon__02 {
    width: 103rem;
    top: -15rem;
    right: 174rem;
    bottom: auto;
    left: auto;
  }
}
.container[page=index] .bg .bg__polygon__02 img {
  transform: rotate(-58deg);
}
.container[page=index] .bg .bg__polygon__03 {
  width: 156rem;
  height: auto;
  top: 170rem;
  right: 60rem;
  bottom: auto;
  left: auto;
}
@media (max-width: 750px) {
  .container[page=index] .bg .bg__polygon__03 {
    width: 146rem;
    top: -68rem;
    right: -40rem;
    bottom: auto;
    left: auto;
  }
}
.container[page=index] .bg .bg__polygon__04 {
  width: 252rem;
  height: auto;
  top: 450rem;
  right: 281rem;
  bottom: auto;
  left: auto;
}
@media (max-width: 992px) {
  .container[page=index] .bg .bg__polygon__04 {
    width: 200rem;
    top: 290rem;
    right: 160rem;
    bottom: auto;
    left: auto;
  }
}
@media (max-width: 750px) {
  .container[page=index] .bg .bg__polygon__04 {
    width: 300rem;
    top: -58rem;
    right: 235rem;
    bottom: auto;
    left: auto;
  }
}
.container[page=index] .bg .bg__polygon__05 {
  width: 194rem;
  height: auto;
  top: 478rem;
  right: 14rem;
  bottom: auto;
  left: auto;
}
@media (max-width: 750px) {
  .container[page=index] .bg .bg__polygon__05 {
    width: 157rem;
    top: 185rem;
    right: -69rem;
    bottom: auto;
    left: auto;
  }
}
.container[page=index] .bg .bg__polygon__05 img {
  transform: rotate(50deg);
}
.container[page=index] .bg .bg__polygon__06 {
  width: 291rem;
  height: auto;
  top: 1270rem;
  right: 122rem;
  bottom: auto;
  left: auto;
  z-index: -1;
}
@media (max-width: 992px) {
  .container[page=index] .bg .bg__polygon__06 {
    width: 250rem;
    top: 1070rem;
    right: 80rem;
    bottom: auto;
    left: auto;
  }
}
@media (max-width: 750px) {
  .container[page=index] .bg .bg__polygon__06 {
    width: 335rem;
    top: 520rem;
    right: 236rem;
    bottom: auto;
    left: auto;
  }
}
.container[page=index] .bg .bg__polygon__06 img {
  transform: rotate(-11deg);
}
.container[page=index] .bg .bg__polygon__07 {
  width: 225rem;
  height: auto;
  top: 858rem;
  right: 138rem;
  bottom: auto;
  left: auto;
}
@media (max-width: 992px) {
  .container[page=index] .bg .bg__polygon__07 {
    width: 180rem;
    top: 818rem;
    right: 118rem;
    bottom: auto;
    left: auto;
  }
}
@media (max-width: 750px) {
  .container[page=index] .bg .bg__polygon__07 {
    width: 180rem;
    top: 738rem;
    right: 73rem;
    bottom: auto;
    left: auto;
  }
}
.container[page=index] .bg .bg__polygon__08 {
  width: 206rem;
  height: auto;
  top: 1017rem;
  right: 358rem;
  bottom: auto;
  left: auto;
  z-index: -1;
}
.container[page=index] .bg .bg__polygon__08 img {
  transform: rotate(77deg);
}
@media (max-width: 750px) {
  .container[page=index] .bg .bg__polygon__08 img {
    transform: rotate(0);
  }
}
@media (max-width: 992px) {
  .container[page=index] .bg .bg__polygon__08 {
    width: 180rem;
    top: 800rem;
    right: 380rem;
    bottom: auto;
    left: auto;
  }
}
@media (max-width: 750px) {
  .container[page=index] .bg .bg__polygon__08 {
    top: 750rem;
    right: 350rem;
    bottom: auto;
    left: auto;
  }
}
.container[page=index] .bg .bg__polygon__09 {
  width: 189rem;
  height: auto;
  top: 1200rem;
  right: 135rem;
  bottom: auto;
  left: auto;
  z-index: 1;
}
@media (max-width: 992px) {
  .container[page=index] .bg .bg__polygon__09 {
    width: 160rem;
    top: 1020rem;
    right: 20rem;
    bottom: auto;
    left: auto;
  }
}
@media (max-width: 750px) {
  .container[page=index] .bg .bg__polygon__09 {
    width: 220rem;
    top: 524rem;
    right: -120rem;
    bottom: auto;
    left: auto;
  }
}
.container[page=index] .bg .bg__polygon__09 img {
  transform: rotate(54deg);
}
.container[page=index] .bg .bg__polygon__10 {
  width: 224rem;
  height: auto;
  top: 820rem;
  right: 420rem;
  bottom: auto;
  left: auto;
}
@media (max-width: 992px) {
  .container[page=index] .bg .bg__polygon__10 {
    width: 180rem;
    top: 588rem;
    right: 466rem;
    bottom: auto;
    left: auto;
  }
}
@media (max-width: 750px) {
  .container[page=index] .bg .bg__polygon__10 {
    width: 200rem;
    top: 875rem;
    right: 57rem;
    bottom: auto;
    left: auto;
  }
}
.container[page=index] .bg .bg__polygon__10 img {
  transform: rotate(-4deg);
}
@media (max-width: 750px) {
  .container[page=index] .bg .bg__polygon__10 img {
    transform: rotate(-59deg);
  }
}
.container[page=index] .first .first__container {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  z-index: 0;
  overflow: hidden;
}
.container[page=index] .first .first__container__inner {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  overflow: hidden;
}
.container[page=index] .first .first__link {
  font-size: 96rem;
  font-family: "Roboto Flex", sans-serif;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  width: fit-content;
  height: fit-content;
  color: var(--color-white-100);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  overflow: hidden;
  z-index: 5;
  mix-blend-mode: difference;
}
@media (max-width: 992px) {
  .container[page=index] .first .first__link {
    text-align: center;
  }
}
@media (max-width: 750px) {
  .container[page=index] .first .first__link {
    letter-spacing: 0.05em;
  }
}
.container[page=index] .first .first__link > * {
  pointer-events: none;
}
.container[page=index] .first .first__stroke {
  font-size: 96rem;
  font-family: "Roboto Flex", sans-serif;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  width: fit-content;
  height: fit-content;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  overflow: hidden;
  z-index: 5;
  mix-blend-mode: difference;
}
@media (max-width: 750px) {
  .container[page=index] .first .first__stroke {
    text-align: center;
    letter-spacing: 0.05em;
  }
}
.container[page=index] .first .first__container__overlay {
  width: 177.77777778vh;
  height: 56.25vw;
  min-width: 100%;
  min-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--color-black-100);
  opacity: 0.7;
  z-index: 4;
}
.container[page=index] .first .first__logo {
  width: 174rem;
  height: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: -400rem;
  left: -500rem;
  margin: auto;
  z-index: 3;
  aspect-ratio: 180/40;
}
@media (max-width: 750px) {
  .container[page=index] .first .first__logo {
    width: 105rem;
    height: auto;
    top: 0;
    right: 0;
    bottom: -245rem;
    left: -240rem;
  }
}
.container[page=index] .first .first__text {
  width: 172rem;
  height: auto;
  aspect-ratio: 190/56;
  position: absolute;
  top: -275rem;
  right: -570rem;
  bottom: 0;
  left: 0;
  margin: auto;
  z-index: 3;
}
@media (max-width: 750px) {
  .container[page=index] .first .first__text {
    width: 130rem;
    height: auto;
    top: -215rem;
    right: -230rem;
    bottom: 0;
    left: 0;
  }
}
.container[page=index] .first .first__kv__line {
  width: 634rem;
  height: fit-content;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  top: calc(50% - 10rem);
  left: calc(50% - 10rem);
  z-index: 2;
}
@media (max-width: 750px) {
  .container[page=index] .first .first__kv__line {
    width: 350rem;
    top: calc(50% - 6rem);
    left: calc(50% - 6rem);
  }
}
.container[page=index] .first .first__kv__line img {
  width: 100%;
  height: auto;
}
.container[page=index] .first .first__kv {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.container[page=index] .first .first__kv > img {
  width: 634rem;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 750px) {
  .container[page=index] .first .first__kv > img {
    width: 350rem;
  }
}
.container[page=index] .first .first__kv__cover {
  width: 634rem;
  height: 620rem;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  z-index: 2;
}
@media (max-width: 750px) {
  .container[page=index] .first .first__kv__cover {
    width: 350rem;
    height: 348rem;
  }
}
.container[page=index] .first .first__kv__canvas {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  z-index: 1;
}
.container[page=index] .first .first__kv__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  z-index: 0;
}
.container[page=index] .first .first__reel__overlay {
  width: 177.77777778vh;
  height: 56.25vw;
  min-width: 100%;
  min-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--color-black-100);
  opacity: 0.7;
  z-index: 1;
}
.container[page=index] .first .first__reel {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  z-index: 4;
  pointer-events: none;
  mask-image: url(/wp/wp-content/themes/theme/assets/images/first_reel_mask.png);
  mask-position: center;
  mask-repeat: no-repeat;
  position: relative;
}
.container[page=index] .first .first__reel iframe {
  width: 177.77777778vh;
  height: 56.25vw;
  min-width: 100%;
  min-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: none;
  pointer-events: none;
}
.container[page=index] .first .first__reel__inner {
  width: 100%;
  height: 100%;
}
.container[page=index] .first .first__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  z-index: -1;
}
.container[page=index] .first .first__area {
  width: 100%;
  height: 400vh;
}
.container[page=index] .first .first__reel {
  mask-size: 634rem;
}
@media (max-width: 750px) {
  .container[page=index] .first .first__reel {
    mask-size: 350rem;
  }
}
.container[page=index] .first .first__reel__inner {
  -webkit-mask-image: linear-gradient(to bottom, black 0%, black 100%);
  mask-image: linear-gradient(to bottom, black 0%, black 100%);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: bottom center;
  mask-position: bottom center;
  -webkit-mask-size: 100% 0%;
  mask-size: 100% 0%;
}
.container[page=index] .first .first__reel__overlay {
  opacity: 0;
}
.container[page=index] .first .first__kv {
  -webkit-mask-image: linear-gradient(to bottom, black 0%, black 100%);
  mask-image: linear-gradient(to bottom, black 0%, black 100%);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: top center;
  mask-position: top center;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}
.container[page=index] .first .first__link {
  transition: opacity 0.3s ease, color 0.4s ease;
  opacity: 0;
  pointer-events: none;
}
.container[page=index] .first .first__link[show] {
  opacity: 1;
  pointer-events: auto;
}
@media (min-width: 993px) {
  .container[page=index] .first .first__link:hover:hover {
    color: var(--color-gray-100);
  }
}
@media (max-width: 992px) {
  .container[page=index] .first .first__link:hover[hover-el] {
    color: var(--color-gray-100);
  }
}
.container[page=index] section.who {
  padding-top: 200rem;
  padding-left: 40rem;
  padding-right: 0;
  overflow: hidden;
  position: relative;
}
@media (max-width: 750px) {
  .container[page=index] section.who {
    padding-top: 300rem;
    padding-left: var(--margin-1);
    padding-right: var(--margin-1);
  }
}
.container[page=index] section.who .who__text {
  font-size: 40rem;
  font-family: "Roboto Flex", sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: var(--color-white-100);
  width: 610rem;
  height: auto;
  margin-top: 80rem;
  position: relative;
  z-index: 4;
}
@media (max-width: 992px) {
  .container[page=index] section.who .who__text {
    font-size: 28rem;
    width: 450rem;
  }
}
@media (max-width: 750px) {
  .container[page=index] section.who .who__text {
    width: 100%;
    margin-top: 80rem;
    line-height: 1.3;
    font-size: 26rem;
  }
}
.container[page=index] section.who .who__text:not(:first-of-type) {
  margin-top: 16rem;
}
@media (max-width: 750px) {
  .container[page=index] section.who .who__text:not(:first-of-type) {
    margin-top: 8rem;
  }
}
.container[page=index] section.who .who__text--sub {
  font-size: 14rem;
  font-family: "Roboto Flex", sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: var(--color-white-100);
  width: 420rem;
  height: auto;
  margin-top: 50rem;
  z-index: 3;
  position: relative;
}
@media (max-width: 750px) {
  .container[page=index] section.who .who__text--sub {
    width: 100%;
    margin-top: 20rem;
  }
}
.container[page=index] section.member {
  position: relative;
  margin-top: 262rem;
  padding-top: 473rem;
  padding-bottom: 280rem;
  margin-bottom: 270rem;
  z-index: 1;
}
@media (max-width: 992px) {
  .container[page=index] section.member {
    padding-top: 295rem;
  }
}
@media (max-width: 750px) {
  .container[page=index] section.member {
    padding-top: 0;
    margin-top: 290rem;
    margin-bottom: 0;
    padding-bottom: 88rem;
  }
}
.container[page=index] section.member .member__mouse {
  width: 514rem;
  height: 289rem;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.container[page=index] section.member .member__mouse .member__mouse__image {
  width: 100%;
  height: 100%;
  position: relative;
  transform: rotate(5deg);
}
.container[page=index] section.member .member__mouse .member__mouse__image:not(:first-of-type) {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.container[page=index] section.member .member__mouse .member__mouse__image img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.container[page=index] section.member .member__sticky {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: auto;
  left: 0;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: -1;
  transform: translateY(-50%);
}
@media (max-width: 750px) {
  .container[page=index] section.member .member__sticky {
    height: auto;
    position: relative;
    overflow: visible;
    transform: translateY(0);
  }
}
.container[page=index] section.member .member__sticky__text {
  font-size: 76rem;
  font-family: "Roboto Flex", sans-serif;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  line-height: 1;
  letter-spacing: 0.03em;
  text-align: center;
  white-space: nowrap;
  position: relative;
}
@media (max-width: 992px) {
  .container[page=index] section.member .member__sticky__text {
    font-size: 60rem;
    font-family: "Roboto Flex", sans-serif;
    font-weight: 600;
    -webkit-font-smoothing: antialiased;
  }
}
@media (max-width: 750px) {
  .container[page=index] section.member .member__sticky__text {
    font-size: 48rem;
    line-height: 1.2;
  }
}
.container[page=index] section.member .member__sticky__text span {
  display: inline-block;
}
.container[page=index] section.member .member__sticky__text span:last-of-type {
  -webkit-text-stroke: 0.5rem var(--color-black-100);
  text-stroke: 0.5rem var(--color-black-100);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  color: transparent;
}
.container[page=index] section.member .member__title {
  padding-left: 40rem;
  padding-right: 0;
}
@media (max-width: 750px) {
  .container[page=index] section.member .member__title {
    margin-top: 160rem;
    padding-left: var(--margin-1);
    padding-right: 0;
  }
}
.container[page=index] section.member .member__text {
  font-size: 14rem;
  font-family: "Roboto Flex", sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: 1.4;
  letter-spacing: 0.08em;
  color: var(--color-white-100);
  padding-left: 40rem;
  padding-right: 0;
  margin-top: 80rem;
}
@media (max-width: 750px) {
  .container[page=index] section.member .member__text {
    margin-top: 60rem;
    padding-left: var(--margin-1);
    padding-right: 0;
  }
}
.container[page=index] section.member .member__text:last-of-type {
  margin-top: 6rem;
}
.container[page=index] section.member .member__list {
  margin-top: 40rem;
  padding-left: 40rem;
  padding-right: 40rem;
}
@media (max-width: 750px) {
  .container[page=index] section.member .member__list {
    padding-left: var(--margin-1);
    padding-right: var(--margin-1);
  }
}
.container[page=index] section.member .member__item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40rem;
  padding-bottom: 40rem;
  color: var(--color-white-100);
  position: relative;
}
@media (max-width: 750px) {
  .container[page=index] section.member .member__item {
    padding-top: 33rem;
    padding-bottom: 22rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 8rem;
  }
}
.container[page=index] section.member .member__item::before {
  content: "";
  width: 100%;
  height: 1rem;
  background: var(--color-white-100);
  position: absolute;
  top: 0;
  right: 0;
  bottom: auto;
  left: 0;
}
.container[page=index] section.member .member__item:last-of-type::after {
  content: "";
  width: 100%;
  height: 1rem;
  background: var(--color-white-100);
  position: absolute;
  top: auto;
  right: 0;
  bottom: 0;
  left: 0;
}
.container[page=index] section.member .member__item__name {
  display: flex;
  align-items: flex-end;
  gap: 10rem;
}
.container[page=index] section.member .member__item__name--ja {
  font-size: 20rem;
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.1em;
}
.container[page=index] section.member .member__item__name--en {
  font-size: 12rem;
  font-family: "Roboto Flex", sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.1em;
}
.container[page=index] section.member .member__skills {
  font-size: 12rem;
  font-family: "Roboto Flex", sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.1em;
}
.container[page=index] section.member .member__sticky {
  transition: color 0.6s ease;
}
.container[page=index] section.member .member__sticky__text span {
  transition: opacity 0.6s ease;
}
.container[page=index] section.member .member__mouse {
  transition: opacity 0.2s ease-out;
  opacity: 0;
}
.container[page=index] section.member .member__mouse[show] {
  opacity: 1;
}
.container[page=index] section.member .member__sticky[gray] {
  color: var(--color-gray-300);
}
.container[page=index] section.member .member__sticky[gray] .member__sticky__text span:last-of-type {
  opacity: 0;
}

html {
  --color-black-100: #151618;
  --color-white-100: #ffffff;
  --color-gray-100: #B4B4B4;
  --color-gray-200: #A1A2A3;
  --color-gray-300: #7A7A7A;
  --color-gray-400: #C8C8C8;
  --color-green-100: #004A4D;
  --select-fill-color: var(--color-black-100);
  --select-text-color: var(--color-white-100);
}

html {
  --ease-01: ease;
  --duration-01: 0.4s;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.container[page=works-detail] {
  position: relative;
  color: var(--color-white-100);
  background: var(--color-gray-100);
}
.container[page=works-detail] .noise {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  opacity: 0.2;
  mix-blend-mode: multiply;
  background-image: url(/wp/wp-content/themes/theme/assets/images/bg_noise.gif);
  z-index: 1;
}
.container[page=works-detail] .works {
  position: relative;
  z-index: 2;
}
.container[page=works-detail] .works .works__inner {
  padding-left: 40rem;
  padding-right: 40rem;
  position: relative;
}
@media (max-width: 750px) {
  .container[page=works-detail] .works .works__inner {
    padding-left: 20rem;
    padding-right: 20rem;
  }
}
.container[page=works-detail] .works .works__inner--black {
  background: var(--color-black-100);
}
.container[page=works-detail] .works .works__title {
  font-size: 56rem;
  font-family: "Noto Sans", sans-serif;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  line-height: 1.2;
  letter-spacing: 0.05em;
  padding-top: 180rem;
}
@media (max-width: 992px) {
  .container[page=works-detail] .works .works__title {
    padding-top: 120rem;
  }
}
@media (max-width: 750px) {
  .container[page=works-detail] .works .works__title {
    font-size: 40rem;
    padding-top: 100rem;
  }
}
.container[page=works-detail] .works .works__category {
  font-size: 16rem;
  font-family: "Roboto Flex", sans-serif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  margin-top: 8rem;
}
.container[page=works-detail] .works .works__list {
  margin-top: 40rem;
  padding-bottom: 32rem;
}
@media (max-width: 750px) {
  .container[page=works-detail] .works .works__list {
    padding-bottom: 24rem;
  }
}
.container[page=works-detail] .works .works__item {
  display: flex;
}
.container[page=works-detail] .works .works__item:not(:first-child) {
  margin-top: 4rem;
}
.container[page=works-detail] .works .works__item__term {
  width: 85rem;
  min-width: 85rem;
  font-size: 12rem;
  font-family: "Roboto Flex", sans-serif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: 1.8;
}
.container[page=works-detail] .works .works__item__desc {
  font-size: 14rem;
  font-family: "Roboto Flex", sans-serif;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
.container[page=works-detail] .works .works__item__desc a {
  display: flex;
  align-items: center;
  font-size: 14rem;
  font-family: "Roboto Flex", sans-serif;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
.container[page=works-detail] .works .works__item__desc a svg {
  width: 16rem;
  height: 16rem;
  margin-left: 5rem;
  margin-right: auto;
  position: relative;
}
.container[page=works-detail] .works .works__thumbnail {
  width: 100%;
  height: 500rem;
}
@media (max-width: 992px) {
  .container[page=works-detail] .works .works__thumbnail {
    width: 100%;
    height: 400rem;
  }
}
@media (max-width: 750px) {
  .container[page=works-detail] .works .works__thumbnail {
    width: 100%;
    height: 250rem;
  }
}
.container[page=works-detail] .works .works__copyright {
  font-size: 12rem;
  font-family: "Roboto Flex", sans-serif;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  line-height: 1.4;
  padding-top: 8rem;
  color: var(--color-gray-300);
}
.container[page=works-detail] .works .works__description {
  display: flex;
  padding-top: 96rem;
}
@media (max-width: 992px) {
  .container[page=works-detail] .works .works__description {
    padding-top: 100rem;
  }
}
@media (max-width: 750px) {
  .container[page=works-detail] .works .works__description {
    flex-direction: column;
    padding-top: 80rem;
    gap: 28rem;
  }
}
.container[page=works-detail] .works .works__description__title {
  font-size: 12rem;
  font-family: "Roboto Flex", sans-serif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: 1.8;
  min-width: 136rem;
}
.container[page=works-detail] .works .works__description__content {
  font-size: 14rem;
  font-family: "Roboto Flex", sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
.container[page=works-detail] .works .works__description__content a {
  font-size: inherit;
  text-decoration: underline;
  color: var(--color-green-100);
}
.container[page=works-detail] .works .works__credit {
  display: flex;
  padding-top: 96rem;
  padding-bottom: 120rem;
}
@media (max-width: 992px) {
  .container[page=works-detail] .works .works__credit {
    padding-top: 100rem;
  }
}
@media (max-width: 750px) {
  .container[page=works-detail] .works .works__credit {
    padding-top: 80rem;
    padding-bottom: 80rem;
    flex-direction: column;
    gap: 28rem;
  }
}
.container[page=works-detail] .works .works__credit__title {
  font-size: 12rem;
  font-family: "Roboto Flex", sans-serif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: 2.2;
  display: flex;
  min-width: 136rem;
}
.container[page=works-detail] .works .works__credit__item {
  display: flex;
}
@media (max-width: 750px) {
  .container[page=works-detail] .works .works__credit__item {
    flex-direction: column;
    gap: 8rem;
  }
}
.container[page=works-detail] .works .works__credit__item:not(:first-of-type) {
  margin-top: 24rem;
}
@media (max-width: 750px) {
  .container[page=works-detail] .works .works__credit__item:not(:first-of-type) {
    margin-top: 16rem;
  }
}
.container[page=works-detail] .works .works__credit__role {
  display: block;
  width: 205rem;
  font-size: 16rem;
  font-family: "Roboto Flex", sans-serif;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  line-height: 1.4;
  padding-left: 0;
  padding-right: 30rem;
  color: var(--color-gray-300);
}
@media (max-width: 750px) {
  .container[page=works-detail] .works .works__credit__role {
    padding-left: 0;
    padding-right: 0;
  }
}
.container[page=works-detail] .works .works__credit__member {
  max-width: 500rem;
  font-size: 16rem;
  font-family: "Roboto Flex", sans-serif;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
.container[page=works-detail] .works .works__credit__profile {
  width: 80rem;
  height: 24rem;
  font-size: 14rem;
  font-family: "Roboto Flex", sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: 1;
  background: var(--color-black-100);
  padding-top: 4rem;
  padding-bottom: 4rem;
  padding-left: 12rem;
  padding-right: 24rem;
  margin-left: 8rem;
  margin-right: auto;
  position: relative;
  letter-spacing: 0.05em;
  display: flex;
  justify-content: center;
  align-items: center;
  display: inline-flex;
}
.container[page=works-detail] .works .works__credit__profile::before {
  content: "";
  width: 10rem;
  height: 1rem;
  background: var(--color-white-100);
  position: absolute;
  top: 0;
  right: 10rem;
  bottom: 0;
  left: auto;
  margin: auto;
}
.container[page=works-detail] .works .works__credit__profile::after {
  content: "";
  width: 10rem;
  height: 1rem;
  background: var(--color-white-100);
  position: absolute;
  top: 0;
  right: 10rem;
  bottom: 0;
  left: auto;
  margin: auto;
  transform: rotate(90deg);
}
.container[page=works-detail] .works .works__credit__name {
  max-width: 500rem;
  font-size: 16rem;
  font-family: "Roboto Flex", sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: 1.4;
}
.container[page=works-detail] .works .works__video {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  position: relative;
  z-index: 1;
}
.container[page=works-detail] .works .works__video iframe {
  width: 100%;
  height: 100%;
}
.container[page=works-detail] .works .works__video__thumbnail {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  cursor: pointer;
}
.container[page=works-detail] .works .works__video__thumbnail::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}
.container[page=works-detail] .works .works__video__thumbnail svg {
  width: 160rem;
  height: 160rem;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  z-index: 3;
}
@media (max-width: 750px) {
  .container[page=works-detail] .works .works__video__thumbnail svg {
    width: 80rem;
    height: 80rem;
  }
}
.container[page=works-detail] .works .works__images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8rem;
  margin-top: 8rem;
  padding-bottom: 120rem;
}
@media (max-width: 992px) {
  .container[page=works-detail] .works .works__images {
    padding-bottom: 100rem;
  }
}
@media (max-width: 750px) {
  .container[page=works-detail] .works .works__images {
    padding-bottom: 80rem;
    grid-template-columns: 1fr;
  }
}
.container[page=works-detail] .works .works__images__item {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
  position: relative;
}
.container[page=works-detail] .works .works__images__item img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.container[page=works-detail] .works .works__links {
  position: relative;
  z-index: 0;
  padding-top: 135rem;
  padding-bottom: 135rem;
  padding-left: 176rem;
  padding-right: 176rem;
  color: var(--color-black-100);
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .container[page=works-detail] .works .works__links {
    padding-left: 40rem;
    padding-right: 40rem;
  }
}
@media (max-width: 750px) {
  .container[page=works-detail] .works .works__links {
    padding-top: 60rem;
    padding-bottom: 60rem;
    padding-left: 20rem;
    padding-right: 20rem;
  }
}
.container[page=works-detail] .works .works__links a {
  font-size: 48rem;
  font-family: "Roboto Flex", sans-serif;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  display: flex;
  align-items: center;
}
@media (max-width: 750px) {
  .container[page=works-detail] .works .works__links a {
    font-size: 20rem;
    font-family: "Roboto Flex", sans-serif;
    font-weight: 600;
    -webkit-font-smoothing: antialiased;
  }
}
.container[page=works-detail] .works .works__links a:first-of-type svg {
  transform: rotate(-180deg);
  margin-left: auto;
  margin-right: 18rem;
}
@media (max-width: 750px) {
  .container[page=works-detail] .works .works__links a:first-of-type svg {
    width: 12rem;
    height: auto;
    margin-left: auto;
    margin-right: 6rem;
  }
}
.container[page=works-detail] .works .works__links a svg {
  width: 28rem;
  height: auto;
  margin-left: 18rem;
  margin-right: auto;
}
@media (max-width: 750px) {
  .container[page=works-detail] .works .works__links a svg {
    width: 14rem;
    height: auto;
    margin-left: 6rem;
    margin-right: auto;
  }
}
.container[page=works-detail] .works .works__links a svg path {
  stroke: var(--color-black-100);
}
.container[page=works-detail] .works .works__links__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  z-index: -1;
}
.container[page=works-detail] .works .works__description__content a {
  transition: color 0.3s ease;
}
.container[page=works-detail] .works .works__credit__profile {
  transition: background 0.3s ease;
}
.container[page=works-detail] .works .works__credit__profile::after {
  transition: transform 0.3s ease;
}
.container[page=works-detail] .works .works__video__thumbnail svg {
  transition: transform 0.3s ease;
}
@media (min-width: 993px) {
  .container[page=works-detail] .works .works__description__content a:hover:hover {
    color: var(--color-gray-300);
  }
}
@media (max-width: 992px) {
  .container[page=works-detail] .works .works__description__content a:hover[hover-el] {
    color: var(--color-gray-300);
  }
}
@media (min-width: 993px) {
  .container[page=works-detail] .works .works__credit__profile:hover:hover {
    background: var(--color-green-100);
  }
}
@media (max-width: 992px) {
  .container[page=works-detail] .works .works__credit__profile:hover[hover-el] {
    background: var(--color-green-100);
  }
}
.container[page=works-detail] .works .works__credit__profile[active]::after {
  transform: rotate(0);
}
.container[page=works-detail] .works .works__video__thumbnail:hover svg {
  transform: scale(0.9);
}

html {
  --color-black-100: #151618;
  --color-white-100: #ffffff;
  --color-gray-100: #B4B4B4;
  --color-gray-200: #A1A2A3;
  --color-gray-300: #7A7A7A;
  --color-gray-400: #C8C8C8;
  --color-green-100: #004A4D;
  --select-fill-color: var(--color-black-100);
  --select-text-color: var(--color-white-100);
}

html {
  --ease-01: ease;
  --duration-01: 0.4s;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.container[page=works] {
  position: relative;
  min-height: initial;
  background: var(--color-gray-100);
}
.container[page=works] .works .works__header {
  padding-top: 200rem;
  padding-left: 40rem;
  padding-right: 40rem;
  background: var(--color-black-100);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
  z-index: 2;
}
@media (max-width: 750px) {
  .container[page=works] .works .works__header {
    padding-top: 140rem;
    padding-left: 20rem;
    padding-right: 20rem;
  }
}
.container[page=works] .works .works__title {
  font-size: 150rem;
  font-family: "Roboto Flex", sans-serif;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.03em;
  color: var(--color-white-100);
  line-height: 1.1;
  padding-bottom: 16rem;
}
@media (max-width: 992px) {
  .container[page=works] .works .works__title {
    font-size: 100rem;
  }
}
@media (max-width: 750px) {
  .container[page=works] .works .works__title {
    font-size: 72rem;
    line-height: 1.1;
  }
}
.container[page=works] .works .works__filter {
  width: 258rem;
  height: 50rem;
  color: var(--color-white-100);
  border: 1rem solid var(--color-white-100);
  font-size: 14rem;
  font-family: "Roboto Flex", sans-serif;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.05em;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-bottom: 43rem;
  position: relative;
}
@media (max-width: 750px) {
  .container[page=works] .works .works__filter {
    position: fixed;
    top: auto;
    right: 20rem;
    bottom: 16rem;
    left: 20rem;
    font-size: 14rem;
    margin: auto;
    border: 2rem solid var(--color-black-100);
  }
}
.container[page=works] .works .works__filter__select {
  width: 100%;
  height: 100%;
}
@media (max-width: 750px) {
  .container[page=works] .works .works__filter__select {
    color: var(--color-black-100);
    background: var(--color-white-100);
  }
}
.container[page=works] .works .works__filter__select-text {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.container[page=works] .works .works__filter__arrow {
  width: 12rem;
  height: fit-content;
  position: absolute;
  top: -2rem;
  right: 16rem;
  bottom: 0;
  left: auto;
  margin: auto;
}
@media (max-width: 750px) {
  .container[page=works] .works .works__filter__arrow {
    top: -3rem;
    right: 16rem;
    bottom: 0;
    left: auto;
  }
  .container[page=works] .works .works__filter__arrow path {
    fill: var(--color-black-100);
  }
}
.container[page=works] .works .works__filter__options {
  width: 100%;
  height: auto;
  color: var(--color-black-100);
  background: var(--color-white-100);
  position: absolute;
  top: 58rem;
  left: 0;
  padding-top: 32rem;
  padding-bottom: 32rem;
  padding-left: 40rem;
  padding-right: 40rem;
  z-index: 1;
}
@media (max-width: 750px) {
  .container[page=works] .works .works__filter__options {
    top: auto;
    bottom: 58rem;
    color: var(--color-white-100);
    background: var(--color-black-100);
    padding-top: 40rem;
    padding-bottom: 40rem;
  }
}
.container[page=works] .works .works__filter__option {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  line-height: 1.4;
  overflow: hidden;
  white-space: nowrap;
}
.container[page=works] .works .works__filter__option:not(:first-of-type) {
  margin-top: 20rem;
}
@media (max-width: 750px) {
  .container[page=works] .works .works__filter__option:not(:first-of-type) {
    margin-top: 32rem;
  }
}
.container[page=works] .works .works__contents {
  position: relative;
  padding-top: 66rem;
  padding-bottom: 160rem;
  padding-left: 40rem;
  padding-right: 40rem;
}
@media (max-width: 750px) {
  .container[page=works] .works .works__contents {
    padding-top: 60rem;
    padding-bottom: 100rem;
    padding-left: 20rem;
    padding-right: 20rem;
  }
}
.container[page=works] .works .works__noise {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  opacity: 0.2;
  mix-blend-mode: multiply;
  background-image: url(/wp/wp-content/themes/theme/assets/images/bg_noise.gif);
}
.container[page=works] .works .works__list {
  display: flex;
  flex-wrap: wrap;
  gap: 40rem 32rem;
}
@media (max-width: 992px) {
  .container[page=works] .works .works__list {
    gap: 32rem;
  }
}
@media (max-width: 750px) {
  .container[page=works] .works .works__list {
    gap: 24rem;
  }
}
.container[page=works] .works .works__item {
  position: relative;
}
.container[page=works] .works .works__item::marker {
  display: none;
}
.container[page=works] .works .works__item:nth-of-type(8n + 1) {
  width: calc(50% - 16rem);
}
@media (max-width: 750px) {
  .container[page=works] .works .works__item:nth-of-type(8n + 1) {
    width: 100%;
  }
}
.container[page=works] .works .works__item:nth-of-type(8n + 1) .works__link {
  display: flex;
  flex-direction: row-reverse;
}
@media (max-width: 750px) {
  .container[page=works] .works .works__item:nth-of-type(8n + 1) .works__link {
    flex-direction: column-reverse;
  }
}
.container[page=works] .works .works__item:nth-of-type(8n + 1) .works__item__desc {
  width: 50%;
}
@media (max-width: 750px) {
  .container[page=works] .works .works__item:nth-of-type(8n + 1) .works__item__desc {
    width: 100%;
  }
}
.container[page=works] .works .works__item:nth-of-type(8n + 1) .works__item__image {
  width: 50%;
}
@media (max-width: 750px) {
  .container[page=works] .works .works__item:nth-of-type(8n + 1) .works__item__image {
    width: 100%;
  }
}
.container[page=works] .works .works__item:nth-of-type(8n + 2) {
  width: calc(50% - 16rem);
}
@media (max-width: 750px) {
  .container[page=works] .works .works__item:nth-of-type(8n + 2) {
    width: 100%;
  }
}
.container[page=works] .works .works__item:nth-of-type(8n + 2) .works__link {
  display: flex;
  flex-direction: row-reverse;
}
@media (max-width: 750px) {
  .container[page=works] .works .works__item:nth-of-type(8n + 2) .works__link {
    flex-direction: column-reverse;
  }
}
.container[page=works] .works .works__item:nth-of-type(8n + 2) .works__item__desc {
  width: 50%;
}
@media (max-width: 750px) {
  .container[page=works] .works .works__item:nth-of-type(8n + 2) .works__item__desc {
    width: 100%;
  }
}
.container[page=works] .works .works__item:nth-of-type(8n + 2) .works__item__image {
  width: 50%;
}
@media (max-width: 750px) {
  .container[page=works] .works .works__item:nth-of-type(8n + 2) .works__item__image {
    width: 100%;
  }
}
.container[page=works] .works .works__item:nth-of-type(8n + 3) {
  width: calc(75% - 16rem);
}
@media (max-width: 750px) {
  .container[page=works] .works .works__item:nth-of-type(8n + 3) {
    width: 100%;
  }
}
.container[page=works] .works .works__item:nth-of-type(8n + 3) .works__link {
  display: grid;
  grid-template-columns: 332rem 1fr;
}
@media (max-width: 750px) {
  .container[page=works] .works .works__item:nth-of-type(8n + 3) .works__link {
    display: flex;
    flex-direction: column-reverse;
  }
}
.container[page=works] .works .works__item:nth-of-type(8n + 4) {
  width: calc(25% - 16rem);
}
@media (max-width: 750px) {
  .container[page=works] .works .works__item:nth-of-type(8n + 4) {
    width: 100%;
  }
}
.container[page=works] .works .works__item:nth-of-type(8n + 4) .works__link {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 50% 50%;
}
@media (max-width: 750px) {
  .container[page=works] .works .works__item:nth-of-type(8n + 4) .works__link {
    display: flex;
    flex-direction: column-reverse;
  }
}
.container[page=works] .works .works__item:nth-of-type(8n + 4) .works__link .works__item__desc {
  grid-row: 2/3;
}
.container[page=works] .works .works__item:nth-of-type(8n + 5) {
  width: calc(50% - 16rem);
}
@media (max-width: 750px) {
  .container[page=works] .works .works__item:nth-of-type(8n + 5) {
    width: 100%;
  }
}
.container[page=works] .works .works__item:nth-of-type(8n + 5) .works__link {
  display: grid;
  grid-template-columns: 50% 50%;
}
@media (max-width: 750px) {
  .container[page=works] .works .works__item:nth-of-type(8n + 5) .works__link {
    display: flex;
    flex-direction: column-reverse;
  }
}
.container[page=works] .works .works__item:nth-of-type(8n + 6) {
  width: calc(50% - 16rem);
}
@media (max-width: 750px) {
  .container[page=works] .works .works__item:nth-of-type(8n + 6) {
    width: 100%;
  }
}
.container[page=works] .works .works__item:nth-of-type(8n + 6) .works__link {
  display: grid;
  grid-template-columns: 50% 50%;
}
@media (max-width: 750px) {
  .container[page=works] .works .works__item:nth-of-type(8n + 6) .works__link {
    display: flex;
    flex-direction: column-reverse;
  }
}
.container[page=works] .works .works__item:nth-of-type(8n + 7) {
  width: calc(25% - 16rem);
}
@media (max-width: 750px) {
  .container[page=works] .works .works__item:nth-of-type(8n + 7) {
    width: 100%;
  }
}
.container[page=works] .works .works__item:nth-of-type(8n + 7) .works__link {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 50% 50%;
}
@media (max-width: 750px) {
  .container[page=works] .works .works__item:nth-of-type(8n + 7) .works__link {
    display: flex;
    flex-direction: column-reverse;
  }
}
.container[page=works] .works .works__item:nth-of-type(8n + 7) .works__item__desc {
  grid-row: 2/3;
}
.container[page=works] .works .works__item:nth-of-type(8n + 8) {
  width: calc(75% - 16rem);
}
@media (max-width: 750px) {
  .container[page=works] .works .works__item:nth-of-type(8n + 8) {
    width: 100%;
  }
}
.container[page=works] .works .works__item:nth-of-type(8n + 8) .works__link {
  display: grid;
  grid-template-columns: 332rem 1fr;
}
@media (max-width: 750px) {
  .container[page=works] .works .works__item:nth-of-type(8n + 8) .works__link {
    display: flex;
    flex-direction: column-reverse;
  }
}
.container[page=works] .works .works__link {
  width: 100%;
  height: 100%;
  display: block;
}
.container[page=works] .works .works__item__desc {
  position: relative;
  z-index: 0;
  padding-top: 16rem;
  padding-bottom: 16rem;
  padding-left: 16rem;
  padding-right: 16rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  word-break: break-all;
}
@media (max-width: 750px) {
  .container[page=works] .works .works__item__desc {
    overflow: visible;
  }
}
.container[page=works] .works .works__item__title {
  font-size: 16rem;
  font-family: "Noto Sans", sans-serif;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  color: var(--color-white-100);
  letter-spacing: 0.05em;
  line-height: 1.4;
  position: relative;
  z-index: 3;
  text-align: left;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}
@media (max-width: 992px) {
  .container[page=works] .works .works__item__title {
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
  }
}
@media (max-width: 750px) {
  .container[page=works] .works .works__item__title {
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
  }
}
.container[page=works] .works .works__item__category {
  font-size: 12rem;
  font-family: "Roboto Flex", sans-serif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  margin-top: 8rem;
  color: var(--color-white-100);
  position: relative;
  text-align: left;
  z-index: 3;
}
.container[page=works] .works .works__item__cover {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.container[page=works] .works .works__item__cover--black {
  background: var(--color-black-100);
  z-index: 1;
}
.container[page=works] .works .works__item__cover--green {
  background: var(--color-green-100);
  z-index: 0;
}
.container[page=works] .works .works__item__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  z-index: -2;
}
.container[page=works] .works .works__item__image {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
}
.container[page=works] .works .works__item__image img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.container[page=works] .works .works__item__image-cover {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background: var(--color-green-100);
  z-index: 1;
}
.container[page=works] .works .works__more {
  display: inline-block;
  width: 253rem;
  height: 50rem;
  background: var(--color-black-100);
  color: var(--color-white-100);
  font-size: 16rem;
  font-family: "Roboto Flex", sans-serif;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 80rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}
@media (max-width: 750px) {
  .container[page=works] .works .works__more {
    margin-top: 60rem;
  }
}
.container[page=works] .works .works__filter {
  transition: opacity 0.2s ease;
}
.container[page=works] .works .works__filter__arrow {
  transition: transform 0.3s ease;
}
@media (max-width: 750px) {
  .container[page=works] .works .works__filter__arrow {
    transform: rotate(180deg);
  }
}
.container[page=works] .works .works__filter__options {
  opacity: 0;
  pointer-events: none;
}
.container[page=works] .works .works__filter__option {
  transition: color 0.2s ease;
  cursor: pointer;
}
.container[page=works] .works .works__item__cover--black {
  transition: opacity 0.3s ease;
  opacity: 0;
}
.container[page=works] .works .works__item__cover--green {
  transition: opacity 0.3s ease;
  opacity: 0;
}
.container[page=works] .works .works__item__image img {
  transition: transform 0.6s ease;
}
.container[page=works] .works .works__item__image-cover {
  transition: opacity 0.3s ease;
  opacity: 0;
}
.container[page=works] .works .works__item__bg {
  transform: scale(1.005);
}
.container[page=works] .works .works__filter[hide] {
  opacity: 0;
  pointer-events: none;
}
.container[page=works] .works .works__filter[open] .works__filter__arrow {
  transform: rotate(180deg);
}
@media (max-width: 750px) {
  .container[page=works] .works .works__filter[open] .works__filter__arrow {
    transform: rotate(0deg);
  }
}
.container[page=works] .works .works__filter[open] .works__filter__options {
  opacity: 1;
  pointer-events: auto;
}
@media (min-width: 993px) {
  .container[page=works] .works .works__filter__option:hover:hover {
    color: var(--color-gray-400);
  }
}
@media (max-width: 992px) {
  .container[page=works] .works .works__filter__option:hover[hover-el] {
    color: var(--color-gray-400);
  }
}
.container[page=works] .works .works__filter__options[loaded] {
  transition: opacity 0.2s ease;
}
.container[page=works] .works .works__filter__option[current] {
  color: var(--color-gray-400);
  pointer-events: none;
  cursor: auto;
}
.container[page=works] .works .works__filter__option[current]::after {
  content: "";
  width: 100%;
  height: 2rem;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background: var(--color-gray-400);
}
@media (min-width: 993px) {
  .container[page=works] .works .works__link:hover:hover .works__item__cover--black {
    opacity: 1;
  }
  .container[page=works] .works .works__link:hover:hover .works__item__cover--green {
    opacity: 1;
  }
  .container[page=works] .works .works__link:hover:hover .works__item__image img {
    transform: scale(1.1);
  }
  .container[page=works] .works .works__link:hover:hover .works__item__image-cover {
    opacity: 0.5;
  }
}
@media (max-width: 992px) {
  .container[page=works] .works .works__link:hover[hover-el] .works__item__cover--black {
    opacity: 1;
  }
  .container[page=works] .works .works__link:hover[hover-el] .works__item__cover--green {
    opacity: 1;
  }
  .container[page=works] .works .works__link:hover[hover-el] .works__item__image img {
    transform: scale(1.1);
  }
  .container[page=works] .works .works__link:hover[hover-el] .works__item__image-cover {
    opacity: 0.5;
  }
}