@charset "UTF-8";
html {
  --color-black-100: #000000;
  --color-white-100: #ffffff;
  --color-blue-100: #0B42DB;
  --color-gray-100: #D5D5D5;
  --color-gray-200: #F4F4F4;
  --color-gray-300: #888888;
  --select-fill-color: var(--color-blue-100);
  --select-text-color: var(--color-white-100);
}

html {
  --ease-01: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-02: cubic-bezier(0.22, 1, 0.36, 1);
  --duration-01: 0.4s;
  --duration-02: 0.8s;
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

* {
  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: 15rem;
}

html {
  min-height: 100%;
  font-feature-settings: "palt" 1;
  font-size: calc(100 / var(--base-vw) * 1 * 1vw);
  --max-width: 1920px;
  --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: max(11px, 14rem);
  font-family: helvetica-neue-lt-pro, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
@media (min-width: 1600px) {
  body {
    font-size: 14px;
  }
}

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;
}

sup {
  top: 0;
}

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;
  max-width: 100vw;
}

[hidden] {
  display: none !important;
}

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

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

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

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

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

@media (min-width: 993px) {
  [sp-tb-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: max(11px, 26rem);
  font-family: helvetica-neue-lt-pro, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
@media (min-width: 1600px) {
  .editor h2 {
    font-size: 26px;
  }
}
.editor h2 {
  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: max(11px, 22rem);
  font-family: helvetica-neue-lt-pro, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
@media (min-width: 1600px) {
  .editor h3 {
    font-size: 22px;
  }
}
.editor h3 {
  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: max(11px, 15rem);
  font-family: helvetica-neue-lt-pro, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
@media (min-width: 1600px) {
  .editor p {
    font-size: 15px;
  }
}
.editor p {
  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: max(11px, 15rem);
  font-family: helvetica-neue-lt-pro, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
@media (min-width: 1600px) {
  .editor ul, .editor ol {
    font-size: 15px;
  }
}
.editor ul, .editor ol {
  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) and (min-width: 993px) {
  .editor a:hover:hover {
    opacity: 0.5;
  }
}

footer.base-footer {
  position: relative;
  padding-bottom: 15rem;
  overflow: hidden;
}
@media (max-width: 750px) {
  footer.base-footer {
    padding-bottom: 20rem;
  }
}
footer.base-footer .base-footer__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: var(--margin-1);
  padding-right: var(--margin-1);
}
footer.base-footer .base-footer__copyright {
  font-size: max(11px, 18rem);
  font-family: helvetica-neue-lt-pro, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
@media (min-width: 1600px) {
  footer.base-footer .base-footer__copyright {
    font-size: 18px;
  }
}
@media (max-width: 750px) {
  footer.base-footer .base-footer__copyright {
    font-size: max(11px, 14rem);
    font-family: helvetica-neue-lt-pro, sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
  }
}
@media (max-width: 750px) and (min-width: 1600px) {
  footer.base-footer .base-footer__copyright {
    font-size: 14px;
  }
}
footer.base-footer .base-footer__list {
  display: flex;
  gap: 20rem;
}
@media (max-width: 750px) {
  footer.base-footer .base-footer__list {
    position: absolute;
    top: 32rem;
    right: 0;
    bottom: auto;
    left: 0;
    margin: auto;
    justify-content: center;
    gap: 20rem;
  }
}
footer.base-footer .base-footer__item {
  font-size: max(11px, 18rem);
  font-family: helvetica-neue-lt-pro, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
@media (min-width: 1600px) {
  footer.base-footer .base-footer__item {
    font-size: 18px;
  }
}
@media (max-width: 750px) {
  footer.base-footer .base-footer__item {
    font-size: max(11px, 14rem);
    font-family: helvetica-neue-lt-pro, sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
  }
}
@media (max-width: 750px) and (min-width: 1600px) {
  footer.base-footer .base-footer__item {
    font-size: 14px;
  }
}
footer.base-footer .base-footer__time {
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  letter-spacing: inherit;
}
footer.base-footer .base-footer__sns {
  display: flex;
  gap: 15rem;
}
footer.base-footer .base-footer__sns__link {
  font-size: max(11px, 18rem);
  font-family: helvetica-neue-lt-pro, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
@media (min-width: 1600px) {
  footer.base-footer .base-footer__sns__link {
    font-size: 18px;
  }
}
footer.base-footer .base-footer__sns__link {
  position: relative;
}
footer.base-footer .base-footer__logos {
  margin-top: 40rem;
  position: relative;
}
@media (max-width: 750px) {
  footer.base-footer .base-footer__logos {
    margin-top: 72rem;
  }
}
footer.base-footer .base-footer__logo {
  width: 100%;
  overflow: hidden;
}
footer.base-footer .base-footer__logo:not(:first-of-type) {
  margin-top: 25rem;
}
@media (max-width: 750px) {
  footer.base-footer .base-footer__logo:not(:first-of-type) {
    margin-top: 13rem;
  }
}
footer.base-footer .base-footer__logo:nth-child(1) {
  height: 24rem;
}
@media (max-width: 750px) {
  footer.base-footer .base-footer__logo:nth-child(1) {
    height: 10rem;
  }
}
footer.base-footer .base-footer__logo:nth-child(2) {
  height: 59rem;
}
@media (max-width: 750px) {
  footer.base-footer .base-footer__logo:nth-child(2) {
    height: 22rem;
  }
}
footer.base-footer .base-footer__logo:nth-child(3) {
  height: 117rem;
}
@media (max-width: 750px) {
  footer.base-footer .base-footer__logo:nth-child(3) {
    height: 44rem;
  }
}
footer.base-footer .base-footer__logo:nth-child(4) {
  position: relative;
  height: auto;
}
footer.base-footer .base-footer__logo svg {
  width: 100%;
  height: auto;
}
@media (max-width: 750px) {
  footer.base-footer .base-footer__logo svg {
    width: 545rem;
  }
}
footer.base-footer .base-footer__sns__link {
  transition: color var(--duration-01) var(--ease-01);
}
@media (hover: hover) and (min-width: 993px) {
  footer.base-footer .base-footer__sns__link:hover {
    color: var(--color-blue-100);
  }
}

header.base-header {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: auto;
  left: 0;
  padding-top: 15rem;
  padding-left: var(--margin-1);
  padding-right: var(--margin-1);
  display: flex;
  justify-content: space-between;
  z-index: 9999;
}
@media (max-width: 750px) {
  header.base-header {
    padding-top: 11rem;
  }
}
header.base-header .base-header__logo {
  width: 175rem;
  height: 61rem;
}
@media (max-width: 750px) {
  header.base-header .base-header__logo {
    width: 120rem;
    height: 42rem;
  }
}
header.base-header .base-header__button {
  display: flex;
  align-items: center;
  font-size: max(11px, 34rem);
  font-family: helvetica-neue-lt-pro, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
@media (min-width: 1600px) {
  header.base-header .base-header__button {
    font-size: 34px;
  }
}
header.base-header .base-header__button {
  letter-spacing: -0.02em;
  padding-left: 0;
  padding-right: 36rem;
  position: fixed;
  top: 15rem;
  right: var(--margin-1);
  z-index: 9999;
}
@media (max-width: 750px) {
  header.base-header .base-header__button {
    font-size: max(11px, 24rem);
    font-family: helvetica-neue-lt-pro, sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    padding-left: 0;
    padding-right: 28rem;
  }
}
@media (max-width: 750px) and (min-width: 1600px) {
  header.base-header .base-header__button {
    font-size: 24px;
  }
}
header.base-header .base-header__button::after {
  display: none;
}
header.base-header .base-header__button__text {
  display: flex;
  align-items: center;
}
header.base-header .base-header__button__circle {
  display: block;
  width: 30rem;
  height: 30rem;
  border-radius: 50%;
  position: absolute;
  top: -3rem;
  right: 0;
  bottom: 0;
  left: auto;
  margin: auto;
}
@media (max-width: 750px) {
  header.base-header .base-header__button__circle {
    width: 20rem;
    height: 20rem;
    top: -2rem;
    right: 0;
    bottom: 0;
    left: auto;
  }
}
header.base-header .base-header__button__circle::before {
  content: "";
  display: block;
  width: 12rem;
  height: 2rem;
  background: var(--color-white-100);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
header.base-header .base-header__logo {
  transform: translateY(-100rem);
}
@media (max-width: 992px) {
  header.base-header .base-header__logo {
    transform: translateY(-120rem);
  }
}
@media (max-width: 750px) {
  header.base-header .base-header__logo {
    transform: translateY(-60rem);
  }
}
header.base-header .base-header__button {
  transition: padding var(--duration-01) var(--ease-01);
  transform: translateY(-100rem);
}
@media (max-width: 992px) {
  header.base-header .base-header__button {
    transform: translateY(-120rem);
  }
}
@media (max-width: 750px) {
  header.base-header .base-header__button {
    transform: translateY(-60rem);
  }
}
header.base-header .base-header__button__circle {
  transition: width var(--duration-01) var(--ease-01), height var(--duration-01) var(--ease-01);
}
header.base-header .base-header__button__circle::before {
  transition: transform var(--duration-01) var(--ease-01);
  transform: scale(0);
}
@media (hover: hover) and (min-width: 993px) {
  header.base-header .base-header__button:hover {
    padding-left: 0;
    padding-right: 46rem;
  }
  header.base-header .base-header__button:hover .base-header__button__circle {
    width: 40rem;
    height: 40rem;
  }
}
header.base-header[data-open] .base-header__button {
  padding-left: 0;
  padding-right: 46rem;
}
header.base-header[data-open] .base-header__button__circle {
  width: 40rem;
  height: 40rem;
}
header.base-header[data-open] .base-header__button__circle::before {
  transform: scale(1);
}

.base-menu {
  width: 300rem;
  height: 400rem;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9998;
}
@media (min-width: 1600px) {
  .base-menu {
    width: 300px;
    height: 400px;
  }
}
@media (max-width: 750px) {
  .base-menu {
    width: 100%;
    height: 100vh;
  }
}
.base-menu .base-menu__canvas {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}
@media (max-width: 750px) {
  .base-menu .base-menu__canvas {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
  }
}
.base-menu .base-menu__list {
  width: 112rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20rem;
  margin-left: auto;
  margin-right: 0;
  position: absolute;
  top: 75rem;
  right: 20rem;
  bottom: auto;
  left: auto;
}
@media (min-width: 1600px) {
  .base-menu .base-menu__list {
    gap: 20px;
    top: 75px;
    right: 20px;
    bottom: auto;
    left: auto;
  }
}
@media (max-width: 750px) {
  .base-menu .base-menu__list {
    gap: 34rem;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    justify-content: center;
  }
}
.base-menu .base-menu__link {
  font-size: max(11px, 17rem);
  font-family: helvetica-neue-lt-pro, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
@media (min-width: 1600px) {
  .base-menu .base-menu__link {
    font-size: 17px;
  }
}
.base-menu .base-menu__link {
  color: var(--color-white-100);
}
@media (max-width: 750px) {
  .base-menu .base-menu__link {
    font-size: max(11px, 30rem);
    font-family: helvetica-neue-lt-pro, sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
  }
}
@media (max-width: 750px) and (min-width: 1600px) {
  .base-menu .base-menu__link {
    font-size: 30px;
  }
}
.base-menu .base-menu__overlay {
  display: none;
}
@media (max-width: 750px) {
  .base-menu .base-menu__overlay {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: var(--color-white-100);
    z-index: -2;
  }
}
.base-menu .base-menu__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42rem;
  height: 42rem;
  border-radius: 50%;
  background: var(--color-blue-100);
  position: absolute;
  top: 24rem;
  right: 9rem;
  z-index: 1;
}
@media (max-width: 750px) {
  .base-menu .base-menu__close {
    width: 55rem;
    height: 55rem;
    top: 12rem;
    right: 8rem;
  }
}
.base-menu .base-menu__close::before {
  content: "";
  display: block;
  width: 12rem;
  height: 2rem;
  background: var(--color-white-100);
}
@media (max-width: 750px) {
  .base-menu .base-menu__close::before {
    width: 14rem;
    height: 2rem;
  }
}
.base-menu {
  pointer-events: none;
}
.base-menu .base-menu__list {
  opacity: 0;
  transition: opacity var(--ease-01) var(--duration-01);
}
.base-menu .base-menu__overlay {
  opacity: 0;
  transition: opacity var(--duration-01) var(--ease-01);
}
.base-menu .base-menu__close {
  transform: scale(0);
}
.base-menu .base-menu__link {
  letter-spacing: 0;
  transition: letter-spacing var(--duration-02) var(--ease-01);
}
.base-menu .base-menu__link:hover {
  letter-spacing: 0.1em;
}
.base-menu[data-open] {
  pointer-events: auto;
}
.base-menu[data-open] .base-menu__list {
  opacity: 1;
  transition-delay: 0.3s;
}
.base-menu[data-open] .base-menu__overlay {
  opacity: 1;
}

.container[page="404"] .error {
  position: relative;
}

.container[page=index] {
  position: relative;
}
.container[page=index] section {
  padding-top: 25rem;
  padding-left: var(--margin-1);
  padding-right: var(--margin-1);
  position: relative;
}
@media (max-width: 750px) {
  .container[page=index] section {
    padding-top: 20rem;
  }
}
.container[page=index] section::before {
  content: "";
  width: calc(100% - var(--margin-1) * 2);
  height: 1rem;
  background: var(--color-black-100);
  position: absolute;
  top: 0;
  right: 0;
  bottom: auto;
  left: 0;
  margin: auto;
}
.container[page=index] section .section__title {
  display: inline-block;
  font-size: max(11px, 18rem);
  font-family: helvetica-neue-lt-pro, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
@media (min-width: 1600px) {
  .container[page=index] section .section__title {
    font-size: 18px;
  }
}
.container[page=index] section .section__title {
  line-height: 1;
  letter-spacing: 0.02em;
}
@media (max-width: 750px) {
  .container[page=index] section .section__title {
    line-height: 0.8;
  }
}
.container[page=index] section .section__title span {
  display: inline-block;
  padding-top: 7rem;
  padding-bottom: 7rem;
  padding-left: 7rem;
  padding-right: 7rem;
  border-radius: 6rem;
  color: var(--color-white-100);
  background: var(--color-blue-100);
}
.container[page=index] section.first {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: var(--margin-1);
  padding-right: var(--margin-1);
  position: relative;
  padding-top: 0;
  overflow: hidden;
}
.container[page=index] section.first:before {
  display: none;
}
.container[page=index] section.first .first__list {
  display: flex;
  gap: 14rem;
  position: absolute;
  top: 28rem;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
  z-index: 1;
}
@media (max-width: 750px) {
  .container[page=index] section.first .first__list {
    top: auto;
    right: 0;
    bottom: 20rem;
    left: 0;
    margin: auto;
    gap: 20rem;
  }
}
.container[page=index] section.first .first__item {
  font-size: max(11px, 18rem);
  font-family: helvetica-neue-lt-pro, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
@media (min-width: 1600px) {
  .container[page=index] section.first .first__item {
    font-size: 18px;
  }
}
@media (max-width: 750px) {
  .container[page=index] section.first .first__item {
    font-size: max(11px, 14rem);
    font-family: helvetica-neue-lt-pro, sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
  }
}
@media (max-width: 750px) and (min-width: 1600px) {
  .container[page=index] section.first .first__item {
    font-size: 14px;
  }
}
.container[page=index] section.first .first__title {
  width: 100%;
  font-size: max(11px, 50rem);
  font-family: helvetica-neue-lt-pro, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
@media (min-width: 1600px) {
  .container[page=index] section.first .first__title {
    font-size: 50px;
  }
}
.container[page=index] section.first .first__title {
  line-height: 1.2;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  overflow: hidden;
}
@media (max-width: 992px) {
  .container[page=index] section.first .first__title {
    flex-direction: column;
    align-items: center;
    gap: 12rem;
    margin-top: 480rem;
  }
}
@media (max-width: 750px) {
  .container[page=index] section.first .first__title {
    font-size: max(11px, 37rem);
    font-family: helvetica-neue-lt-pro, sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    margin-top: 285rem;
    gap: 4rem;
  }
}
@media (max-width: 750px) and (min-width: 1600px) {
  .container[page=index] section.first .first__title {
    font-size: 37px;
  }
}
.container[page=index] section.first .first__title span {
  display: flex;
  align-items: center;
  overflow: hidden;
}
@media (max-width: 992px) {
  .container[page=index] section.first .first__title span {
    height: 1.1em;
  }
}
.container[page=index] section.first .first__title--brackets {
  margin-left: 0;
  margin-right: 13rem;
  overflow: hidden;
}
@media (max-width: 750px) {
  .container[page=index] section.first .first__title--brackets {
    width: 10rem;
    height: 37rem;
    margin-left: 0;
    margin-right: 10rem;
  }
}
.container[page=index] section.first .first__title--brackets:last-of-type {
  transform: rotate(180deg);
  margin-left: 13rem;
  margin-right: 0;
}
@media (max-width: 750px) {
  .container[page=index] section.first .first__title--brackets:last-of-type {
    margin-left: 10rem;
    margin-right: 0;
  }
}
.container[page=index] section.first .first__kv {
  width: 810rem;
  height: 663rem;
  aspect-ratio: 810/663;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  overflow: hidden;
  border-radius: 7rem;
}
@media (max-width: 992px) {
  .container[page=index] section.first .first__kv {
    width: 500rem;
    height: auto;
    top: -100rem;
  }
}
@media (max-width: 750px) {
  .container[page=index] section.first .first__kv {
    width: 337rem;
    height: auto;
    top: -110rem;
  }
}
.container[page=index] section.first .first__kv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.container[page=index] section.first .first__kv__mosaic {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  pointer-events: none;
}
.container[page=index] section.first .first__kv__mosaic[data-level="1"] {
  z-index: 4;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 1fr);
}
@media (max-width: 750px) {
  .container[page=index] section.first .first__kv__mosaic[data-level="1"] {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }
}
.container[page=index] section.first .first__kv__mosaic[data-level="2"] {
  z-index: 3;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: repeat(6, 1fr);
}
@media (max-width: 750px) {
  .container[page=index] section.first .first__kv__mosaic[data-level="2"] {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(4, 1fr);
  }
}
.container[page=index] section.first .first__kv__mosaic[data-level="3"] {
  z-index: 2;
  grid-template-columns: repeat(16, 1fr);
  grid-template-rows: repeat(12, 1fr);
}
@media (max-width: 750px) {
  .container[page=index] section.first .first__kv__mosaic[data-level="3"] {
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(8, 1fr);
  }
}
.container[page=index] section.first .first__kv__mosaic[data-level="4"] {
  z-index: 1;
  grid-template-columns: repeat(32, 1fr);
  grid-template-rows: repeat(24, 1fr);
}
@media (max-width: 750px) {
  .container[page=index] section.first .first__kv__mosaic[data-level="4"] {
    grid-template-columns: repeat(20, 1fr);
    grid-template-rows: repeat(15, 1fr);
  }
}
.container[page=index] section.first .first__kv__cell {
  will-change: opacity;
}
.container[page=index] section.first .first__list {
  transform: translateY(-100rem);
}
@media (max-width: 750px) {
  .container[page=index] section.first .first__list {
    transform: translateY(100rem);
  }
}
.container[page=index] section.first .first__kv {
  opacity: 0;
}
.container[page=index] section.philosophy {
  padding-bottom: 152rem;
  overflow: hidden;
  position: relative;
}
@media (max-width: 992px) {
  .container[page=index] section.philosophy {
    padding-bottom: 80rem;
  }
}
@media (max-width: 750px) {
  .container[page=index] section.philosophy {
    height: 100vh;
    padding-bottom: 0;
  }
}
.container[page=index] section.philosophy .philosophy__metaball {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}
.container[page=index] section.philosophy .philosophy__metaball__canvas {
  width: 100%;
  height: 100%;
  display: block;
}
.container[page=index] section.philosophy .philosophy__title {
  position: relative;
  z-index: 1;
}
.container[page=index] section.philosophy .philosophy__text {
  position: relative;
  z-index: 1;
  margin-top: 152rem;
  font-size: max(11px, 90rem);
  font-family: helvetica-neue-lt-pro, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
@media (min-width: 1600px) {
  .container[page=index] section.philosophy .philosophy__text {
    font-size: 90px;
  }
}
.container[page=index] section.philosophy .philosophy__text {
  letter-spacing: -0.02em;
  margin-left: auto;
  margin-right: auto;
  line-height: 0.8;
  display: flex;
  flex-direction: column;
  gap: 22rem;
  font-size: 90rem;
}
@media (max-width: 992px) {
  .container[page=index] section.philosophy .philosophy__text {
    font-size: max(11px, 64rem);
    font-family: helvetica-neue-lt-pro, sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
  }
}
@media (max-width: 992px) and (min-width: 1600px) {
  .container[page=index] section.philosophy .philosophy__text {
    font-size: 64px;
  }
}
@media (max-width: 750px) {
  .container[page=index] section.philosophy .philosophy__text {
    height: fit-content;
    font-size: max(11px, 44rem);
    font-family: helvetica-neue-lt-pro, sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    letter-spacing: -0.03em;
    gap: 12rem;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
  }
}
@media (max-width: 750px) and (min-width: 1600px) {
  .container[page=index] section.philosophy .philosophy__text {
    font-size: 44px;
  }
}
.container[page=index] section.philosophy .philosophy__text__line {
  display: inline-block;
  overflow: hidden;
  line-height: 0.8;
}
@media (max-width: 750px) {
  .container[page=index] section.philosophy .philosophy__text__line {
    text-align: center;
  }
}
.container[page=index] section.philosophy .philosophy__text__line--01 {
  margin-left: 114rem;
  margin-right: 0;
}
@media (max-width: 992px) {
  .container[page=index] section.philosophy .philosophy__text__line--01 {
    margin-left: 60rem;
    margin-right: 60rem;
  }
}
@media (max-width: 750px) {
  .container[page=index] section.philosophy .philosophy__text__line--01 {
    margin-left: 0;
    margin-right: 0;
  }
}
.container[page=index] section.philosophy .philosophy__text__line--01 .philosophy__text__words:nth-of-type(3) {
  margin-left: 76rem;
  margin-right: 0;
}
@media (min-width: 1601px) {
  .container[page=index] section.philosophy .philosophy__text__line--01 .philosophy__text__words:nth-of-type(3) {
    margin-left: 76px;
    margin-right: 0;
  }
}
@media (max-width: 992px) {
  .container[page=index] section.philosophy .philosophy__text__line--01 .philosophy__text__words:nth-of-type(3) {
    margin-left: 20rem;
    margin-right: 0;
  }
}
@media (max-width: 750px) {
  .container[page=index] section.philosophy .philosophy__text__line--01 .philosophy__text__words:nth-of-type(3) {
    margin-left: 0;
    margin-right: 0;
  }
}
.container[page=index] section.philosophy .philosophy__text__line--02 {
  margin-left: 360rem;
  margin-right: 0;
}
@media (max-width: 992px) {
  .container[page=index] section.philosophy .philosophy__text__line--02 {
    margin-left: 230rem;
    margin-right: 0;
  }
}
@media (max-width: 750px) {
  .container[page=index] section.philosophy .philosophy__text__line--02 {
    margin-left: 0;
    margin-right: 0;
  }
}
.container[page=index] section.philosophy .philosophy__text__line--03 {
  margin-left: 162rem;
  margin-right: 0;
}
@media (max-width: 992px) {
  .container[page=index] section.philosophy .philosophy__text__line--03 {
    margin-left: 64rem;
    margin-right: 0;
  }
}
@media (max-width: 750px) {
  .container[page=index] section.philosophy .philosophy__text__line--03 {
    margin-left: 0;
    margin-right: 0;
  }
}
.container[page=index] section.philosophy .philosophy__text__line--03 .philosophy__text__words:nth-of-type(1) {
  margin-left: 0;
  margin-right: 105rem;
}
@media (min-width: 1601px) {
  .container[page=index] section.philosophy .philosophy__text__line--03 .philosophy__text__words:nth-of-type(1) {
    margin-left: 0;
    margin-right: 105px;
  }
}
@media (max-width: 992px) {
  .container[page=index] section.philosophy .philosophy__text__line--03 .philosophy__text__words:nth-of-type(1) {
    margin-left: 0;
    margin-right: 80rem;
  }
}
.container[page=index] section.philosophy .philosophy__text__line--04 {
  display: block;
  margin-left: 800rem;
  margin-right: 0;
}
@media (max-width: 992px) {
  .container[page=index] section.philosophy .philosophy__text__line--04 {
    margin-left: 515rem;
    margin-right: 0;
  }
}
@media (max-width: 750px) {
  .container[page=index] section.philosophy .philosophy__text__line--04 {
    margin-left: 0;
    margin-right: 0;
  }
}
.container[page=index] section.philosophy .philosophy__text__line--05 {
  margin-left: 232rem;
  margin-right: 0;
}
@media (max-width: 992px) {
  .container[page=index] section.philosophy .philosophy__text__line--05 {
    margin-left: 120rem;
    margin-right: 0;
  }
}
@media (max-width: 750px) {
  .container[page=index] section.philosophy .philosophy__text__line--05 {
    margin-left: 0;
    margin-right: 0;
  }
}
.container[page=index] section.philosophy .philosophy__text__line--05 .philosophy__text__words:nth-of-type(1) {
  margin-left: 0;
  margin-right: 100rem;
}
@media (min-width: 1601px) {
  .container[page=index] section.philosophy .philosophy__text__line--05 .philosophy__text__words:nth-of-type(1) {
    margin-left: 0;
    margin-right: 100px;
  }
}
@media (max-width: 992px) {
  .container[page=index] section.philosophy .philosophy__text__line--05 .philosophy__text__words:nth-of-type(1) {
    margin-left: 0;
    margin-right: 70rem;
  }
}
.container[page=index] section.philosophy .philosophy__text__words {
  display: inline-block;
}
.container[page=index] section.philosophy .philosophy__text__words > * {
  display: inline-block;
}
.container[page=index] section.philosophy .philosophy__text__name {
  display: inline-block;
  overflow: hidden;
  height: 0.8em;
  line-height: 0.8;
  vertical-align: bottom;
}
.container[page=index] section.philosophy .philosophy__text__name-track {
  display: flex;
  flex-direction: column;
}
.container[page=index] section.philosophy .philosophy__text__name-track span {
  display: block;
  height: 0.8em;
  line-height: 0.8;
}
.container[page=index] section.philosophy .philosophy__text--sub {
  width: 460rem;
  font-size: max(11px, 22rem);
  font-family: helvetica-neue-lt-pro, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
@media (min-width: 1600px) {
  .container[page=index] section.philosophy .philosophy__text--sub {
    font-size: 22px;
  }
}
.container[page=index] section.philosophy .philosophy__text--sub {
  margin-top: 48rem;
  margin-left: auto;
  margin-right: 120rem;
  line-height: 1.3;
}
@media (max-width: 992px) {
  .container[page=index] section.philosophy .philosophy__text--sub {
    width: 360rem;
    margin-top: 60rem;
    margin-left: auto;
    margin-right: 80rem;
    font-size: max(11px, 16rem);
    font-family: helvetica-neue-lt-pro, sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
  }
}
@media (max-width: 992px) and (min-width: 1600px) {
  .container[page=index] section.philosophy .philosophy__text--sub {
    font-size: 16px;
  }
}
@media (max-width: 750px) {
  .container[page=index] section.philosophy .philosophy__text--sub {
    width: calc(100% - var(--margin-1) * 2);
    font-size: max(11px, 18rem);
    font-family: helvetica-neue-lt-pro, sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    position: absolute;
    top: auto;
    right: 0;
    bottom: 70rem;
    left: 0;
    margin: auto;
  }
}
@media (max-width: 750px) and (min-width: 1600px) {
  .container[page=index] section.philosophy .philosophy__text--sub {
    font-size: 18px;
  }
}
.container[page=index] section.philosophy .philosophy__marker {
  position: absolute;
}
.container[page=index] section.philosophy .philosophy__marker--01 {
  width: 135rem;
  height: 135rem;
  top: 70rem;
  right: auto;
  bottom: auto;
  left: 240rem;
}
@media (max-width: 992px) {
  .container[page=index] section.philosophy .philosophy__marker--01 {
    width: 100rem;
    height: 100rem;
    top: 50rem;
    right: auto;
    bottom: auto;
    left: 140rem;
  }
}
@media (max-width: 750px) {
  .container[page=index] section.philosophy .philosophy__marker--01 {
    width: 55rem;
    height: 55rem;
    top: -80rem;
    right: auto;
    bottom: auto;
    left: 115rem;
  }
}
.container[page=index] section.philosophy .philosophy__marker--02 {
  width: 105rem;
  height: 105rem;
  top: 165rem;
  right: auto;
  bottom: auto;
  left: 345rem;
}
@media (max-width: 992px) {
  .container[page=index] section.philosophy .philosophy__marker--02 {
    width: 80rem;
    height: 80rem;
    top: 130rem;
    right: auto;
    bottom: auto;
    left: 210rem;
  }
}
@media (max-width: 750px) {
  .container[page=index] section.philosophy .philosophy__marker--02 {
    width: 60rem;
    height: 60rem;
    top: -45rem;
    right: auto;
    bottom: auto;
    left: 70rem;
  }
}
.container[page=index] section.philosophy .philosophy__marker--03 {
  width: 110rem;
  height: 110rem;
  top: 76rem;
  right: 270rem;
  bottom: auto;
  left: auto;
}
@media (max-width: 992px) {
  .container[page=index] section.philosophy .philosophy__marker--03 {
    width: 80rem;
    height: 80rem;
    top: auto;
    right: auto;
    bottom: 200rem;
    left: 715rem;
  }
}
@media (max-width: 750px) {
  .container[page=index] section.philosophy .philosophy__marker--03 {
    width: 65rem;
    height: 65rem;
    top: auto;
    right: auto;
    bottom: 178rem;
    left: 87rem;
  }
}
.container[page=index] section.philosophy .philosophy__marker--04 {
  width: 135rem;
  height: 135rem;
  top: auto;
  right: 690rem;
  bottom: -40rem;
  left: auto;
}
@media (max-width: 992px) {
  .container[page=index] section.philosophy .philosophy__marker--04 {
    width: 80rem;
    height: 80rem;
    top: auto;
    right: 500rem;
    bottom: -20rem;
    left: auto;
  }
}
@media (max-width: 750px) {
  .container[page=index] section.philosophy .philosophy__marker--04 {
    width: 65rem;
    height: 65rem;
    top: auto;
    right: 50rem;
    bottom: 35rem;
    left: auto;
  }
}
.container[page=index] section.philosophy .philosophy__marker--05 {
  width: 105rem;
  height: 105rem;
  top: auto;
  right: 625rem;
  bottom: 85rem;
  left: auto;
}
@media (max-width: 992px) {
  .container[page=index] section.philosophy .philosophy__marker--05 {
    width: 65rem;
    height: 65rem;
    top: auto;
    right: 465rem;
    bottom: 60rem;
    left: auto;
  }
}
@media (max-width: 750px) {
  .container[page=index] section.philosophy .philosophy__marker--05 {
    width: 45rem;
    height: 45rem;
    top: auto;
    right: 10rem;
    bottom: -5rem;
    left: auto;
  }
}
.container[page=index] section.artists .artists__title--sub {
  font-size: max(11px, 140rem);
  font-family: helvetica-neue-lt-pro, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
@media (min-width: 1600px) {
  .container[page=index] section.artists .artists__title--sub {
    font-size: 140px;
  }
}
.container[page=index] section.artists .artists__title--sub {
  line-height: 0.9;
  letter-spacing: 0.02em;
  margin-top: 40rem;
}
@media (max-width: 992px) {
  .container[page=index] section.artists .artists__title--sub {
    font-size: max(11px, 60rem);
    font-family: helvetica-neue-lt-pro, sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    margin-top: 60rem;
  }
}
@media (max-width: 992px) and (min-width: 1600px) {
  .container[page=index] section.artists .artists__title--sub {
    font-size: 60px;
  }
}
@media (max-width: 750px) {
  .container[page=index] section.artists .artists__title--sub {
    font-size: max(11px, 44rem);
    font-family: helvetica-neue-lt-pro, sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    margin-top: 24rem;
    letter-spacing: -0.01em;
  }
}
@media (max-width: 750px) and (min-width: 1600px) {
  .container[page=index] section.artists .artists__title--sub {
    font-size: 44px;
  }
}
.container[page=index] section.artists .artists__title--sub span {
  display: block;
  position: relative;
  line-height: 0.9;
  overflow: hidden;
}
.container[page=index] section.artists .artists__title--sub > span:last-of-type {
  margin-left: 524rem;
  margin-right: 0;
}
@media (max-width: 992px) {
  .container[page=index] section.artists .artists__title--sub > span:last-of-type {
    display: inline-block;
    margin-left: 228rem;
    margin-right: 0;
  }
}
@media (max-width: 750px) {
  .container[page=index] section.artists .artists__title--sub > span:last-of-type {
    margin-top: 7rem;
    margin-left: 170rem;
    margin-right: 0;
  }
}
.container[page=index] section.artists .artists__title--sub sup {
  font-size: max(11px, 18rem);
  font-family: helvetica-neue-lt-pro, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
@media (min-width: 1600px) {
  .container[page=index] section.artists .artists__title--sub sup {
    font-size: 18px;
  }
}
.container[page=index] section.artists .artists__title--sub sup {
  vertical-align: top;
  position: relative;
  top: 10rem;
  line-height: 0.9;
}
@media (max-width: 992px) {
  .container[page=index] section.artists .artists__title--sub sup {
    font-size: max(11px, 14rem);
    font-family: helvetica-neue-lt-pro, sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
  }
}
@media (max-width: 992px) and (min-width: 1600px) {
  .container[page=index] section.artists .artists__title--sub sup {
    font-size: 14px;
  }
}
@media (max-width: 750px) {
  .container[page=index] section.artists .artists__title--sub sup {
    font-size: max(11px, 12rem);
    font-family: helvetica-neue-lt-pro, sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    top: 2rem;
  }
}
@media (max-width: 750px) and (min-width: 1600px) {
  .container[page=index] section.artists .artists__title--sub sup {
    font-size: 12px;
  }
}
.container[page=index] section.artists .artists__container {
  display: flex;
  gap: 15rem;
  margin-top: 40rem;
  position: relative;
}
@media (max-width: 992px) {
  .container[page=index] section.artists .artists__container {
    flex-direction: column;
    gap: 40rem;
  }
}
@media (max-width: 750px) {
  .container[page=index] section.artists .artists__container {
    margin-top: 64rem;
  }
}
.container[page=index] section.artists .artists__display {
  height: fit-content;
  position: sticky;
  top: 15rem;
  max-width: 816rem;
}
@media (max-width: 992px) {
  .container[page=index] section.artists .artists__display {
    display: none;
  }
}
.container[page=index] section.artists .artists__display__inner {
  position: relative;
}
.container[page=index] section.artists .artists__display__item {
  position: relative;
}
.container[page=index] section.artists .artists__display__item:first-of-type {
  z-index: 1;
}
.container[page=index] section.artists .artists__display__item:not(:first-of-type) {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.container[page=index] section.artists .artists__display__info {
  display: flex;
  align-items: center;
  gap: 15rem;
  margin-top: 49rem;
}
@media (max-width: 750px) {
  .container[page=index] section.artists .artists__display__info {
    margin-top: 30rem;
  }
}
.container[page=index] section.artists .artists__display__thumbnail {
  width: 100%;
  height: 514rem;
  flex-shrink: 0;
  border-radius: 7rem;
  overflow: hidden;
  position: relative;
}
.container[page=index] section.artists .artists__display__thumbnail-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
  border-radius: 7rem;
}
.container[page=index] section.artists .artists__display__thumbnail-inner img {
  width: 100%;
  height: 514rem;
  min-width: 816rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.container[page=index] section.artists .artists__display__copyright {
  position: absolute;
  top: auto;
  right: 10rem;
  bottom: 10rem;
  left: auto;
  font-size: max(11px, 10rem);
  font-family: helvetica-neue-lt-pro, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
@media (min-width: 1600px) {
  .container[page=index] section.artists .artists__display__copyright {
    font-size: 10px;
  }
}
.container[page=index] section.artists .artists__display__copyright {
  color: var(--color-white-100);
  line-height: 1;
}
.container[page=index] section.artists .artists__display__profile {
  width: 70rem;
  height: 70rem;
  border-radius: 50%;
  overflow: hidden;
  min-width: 70rem;
}
.container[page=index] section.artists .artists__display__description {
  font-size: max(11px, 16rem);
  font-family: helvetica-neue-lt-pro, noto-sans-cjk-jp, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
@media (min-width: 1600px) {
  .container[page=index] section.artists .artists__display__description {
    font-size: 16px;
  }
}
.container[page=index] section.artists .artists__display__description {
  line-height: 1.8;
}
.container[page=index] section.artists .artists__list {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.container[page=index] section.artists .artists__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30rem;
  padding-bottom: 30rem;
  border-top: 1px solid var(--color-black-100);
  position: relative;
}
@media (max-width: 992px) {
  .container[page=index] section.artists .artists__item {
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
  }
}
.container[page=index] section.artists .artists__item:first-child {
  padding-top: 0;
  border-top: 0;
}
.container[page=index] section.artists .artists__item:last-of-type {
  padding-bottom: 0;
}
@media (max-width: 992px) {
  .container[page=index] section.artists .artists__item:not(:first-of-type) {
    padding-top: 40rem;
    margin-top: 40rem;
  }
}
.container[page=index] section.artists .artists__item__thumbnail {
  display: none;
}
@media (max-width: 992px) {
  .container[page=index] section.artists .artists__item__thumbnail {
    display: block;
    width: 100%;
    aspect-ratio: 16/10;
    border-radius: 7rem;
    overflow: hidden;
  }
}
@media (max-width: 750px) {
  .container[page=index] section.artists .artists__item__thumbnail {
    display: block;
    position: relative;
    width: 372rem;
    height: 234rem;
    aspect-ratio: auto;
  }
}
.container[page=index] section.artists .artists__item__thumbnail-copyright {
  display: none;
}
@media (max-width: 750px) {
  .container[page=index] section.artists .artists__item__thumbnail-copyright {
    display: block;
    position: absolute;
    top: auto;
    right: 10rem;
    bottom: 10rem;
    left: auto;
    font-size: max(11px, 10rem);
    font-family: helvetica-neue-lt-pro, sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    color: var(--color-white-100);
    line-height: 1;
    z-index: 1;
  }
}
@media (max-width: 750px) and (min-width: 1600px) {
  .container[page=index] section.artists .artists__item__thumbnail-copyright {
    font-size: 10px;
  }
}
.container[page=index] section.artists .artists__item__text {
  display: flex;
  flex-direction: column;
}
@media (max-width: 992px) {
  .container[page=index] section.artists .artists__item__text {
    margin-top: 20rem;
  }
}
.container[page=index] section.artists .artists__item__name {
  font-size: max(11px, 40rem);
  font-family: helvetica-neue-lt-pro, noto-sans-cjk-jp, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
@media (min-width: 1600px) {
  .container[page=index] section.artists .artists__item__name {
    font-size: 40px;
  }
}
.container[page=index] section.artists .artists__item__name {
  line-height: 1;
}
@media (max-width: 992px) {
  .container[page=index] section.artists .artists__item__name {
    font-size: max(11px, 28rem);
    font-family: helvetica-neue-lt-pro, noto-sans-cjk-jp, sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
  }
}
@media (max-width: 992px) and (min-width: 1600px) {
  .container[page=index] section.artists .artists__item__name {
    font-size: 28px;
  }
}
@media (max-width: 750px) {
  .container[page=index] section.artists .artists__item__name {
    font-size: max(11px, 30rem);
    font-family: helvetica-neue-lt-pro, noto-sans-cjk-jp, sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
  }
}
@media (max-width: 750px) and (min-width: 1600px) {
  .container[page=index] section.artists .artists__item__name {
    font-size: 30px;
  }
}
.container[page=index] section.artists .artists__item__name-slot {
  display: block;
  overflow: hidden;
  height: 1.2em;
  line-height: 1.2;
}
.container[page=index] section.artists .artists__item__name-track {
  display: flex;
  flex-direction: column;
}
.container[page=index] section.artists .artists__item__name-track span {
  display: block;
  height: 1.2em;
  line-height: 1.2;
}
.container[page=index] section.artists .artists__item__name--jp {
  font-size: max(11px, 16rem);
  font-family: helvetica-neue-lt-pro, noto-sans-cjk-jp, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
@media (min-width: 1600px) {
  .container[page=index] section.artists .artists__item__name--jp {
    font-size: 16px;
  }
}
.container[page=index] section.artists .artists__item__name--jp {
  margin-top: 10rem;
}
@media (max-width: 992px) {
  .container[page=index] section.artists .artists__item__name--jp {
    font-size: max(11px, 14rem);
    font-family: helvetica-neue-lt-pro, noto-sans-cjk-jp, sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    letter-spacing: 0.06em;
    margin-top: 5rem;
  }
}
@media (max-width: 992px) and (min-width: 1600px) {
  .container[page=index] section.artists .artists__item__name--jp {
    font-size: 14px;
  }
}
@media (max-width: 750px) {
  .container[page=index] section.artists .artists__item__name--jp {
    font-size: max(11px, 12rem);
    font-family: helvetica-neue-lt-pro, noto-sans-cjk-jp, sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
  }
}
@media (max-width: 750px) and (min-width: 1600px) {
  .container[page=index] section.artists .artists__item__name--jp {
    font-size: 12px;
  }
}
.container[page=index] section.artists .artists__item__dot {
  display: block;
  width: 20rem;
  height: 20rem;
  border-radius: 50%;
  background: var(--color-blue-100);
}
@media (max-width: 992px) {
  .container[page=index] section.artists .artists__item__dot {
    display: none;
  }
}
.container[page=index] section.artists .artists__item__info {
  display: none;
}
@media (max-width: 992px) {
  .container[page=index] section.artists .artists__item__info {
    display: flex;
    align-items: center;
    gap: 15rem;
    margin-top: 40rem;
  }
}
.container[page=index] section.artists .artists__item__profile {
  width: 50rem;
  height: 50rem;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.container[page=index] section.artists .artists__item__description {
  font-size: max(11px, 14rem);
  font-family: helvetica-neue-lt-pro, noto-sans-cjk-jp, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
@media (min-width: 1600px) {
  .container[page=index] section.artists .artists__item__description {
    font-size: 14px;
  }
}
.container[page=index] section.artists .artists__item__description {
  line-height: 1.7;
}
@media (max-width: 750px) {
  .container[page=index] section.artists .artists__item__description {
    line-height: 1.35;
  }
}
.container[page=index] section.artists .artists__display__info,
.container[page=index] section.artists .artists__display__copyright {
  transition: opacity var(--duration-01) var(--ease-01);
  opacity: 0;
}
.container[page=index] section.artists .artists__item__dot {
  transition: transform var(--duration-01) var(--ease-01);
}
.container[page=index] section.artists .artists__item__text {
  transition: color var(--duration-01) var(--ease-01);
}
.container[page=index] section.artists .artists__item[data-active] .artists__item__dot {
  transform: scale(2);
}
.container[page=index] section.artists .artists__item[data-active] .artists__item__text {
  color: var(--color-blue-100);
}
@media (max-width: 992px) {
  .container[page=index] section.artists .artists__item[data-active] .artists__item__text {
    color: var(--color-black-100);
  }
}
.container[page=index] section.artists .artists__display__item[data-active] .artists__display__info,
.container[page=index] section.artists .artists__display__item[data-active] .artists__display__copyright {
  opacity: 1;
}
.container[page=index] section.member {
  margin-top: 152rem;
}
@media (max-width: 750px) {
  .container[page=index] section.member {
    margin-top: 90rem;
  }
}
.container[page=index] section.member .member__container {
  position: relative;
  margin-top: -18rem;
  padding-top: 160rem;
  padding-bottom: 162rem;
}
@media (max-width: 992px) {
  .container[page=index] section.member .member__container {
    padding-top: 60rem;
    padding-bottom: 120rem;
    overflow: hidden;
  }
}
@media (max-width: 750px) {
  .container[page=index] section.member .member__container {
    margin-top: 16rem;
    padding-top: 121rem;
    padding-bottom: 120rem;
  }
}
.container[page=index] section.member .member__dots {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: auto;
  left: 0;
  z-index: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, var(--color-black-100) 1.5rem, transparent 1.5rem);
}
@media (max-width: 992px) {
  .container[page=index] section.member .member__dots {
    width: auto;
  }
}
.container[page=index] section.member .member__list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, auto);
  justify-content: space-between;
  gap: 124rem 0;
  max-width: 1258rem;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 992px) {
  .container[page=index] section.member .member__list {
    grid-template-columns: repeat(3, auto);
    max-width: initial;
  }
}
@media (max-width: 750px) {
  .container[page=index] section.member .member__list {
    width: 100%;
    gap: 51rem 15rem;
    grid-template-columns: repeat(2, auto);
  }
}
.container[page=index] section.member .member__item {
  min-width: 210rem;
  width: fit-content;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 750px) {
  .container[page=index] section.member .member__item {
    width: 170rem;
    min-width: initial;
  }
}
.container[page=index] section.member .member__item:nth-child(odd) .member__role {
  margin-left: auto;
  margin-right: 0;
}
.container[page=index] section.member .member__image {
  width: 111rem;
  height: 136rem;
  position: relative;
  border-radius: 8rem;
}
@media (max-width: 750px) {
  .container[page=index] section.member .member__image {
    height: 132rem;
  }
}
.container[page=index] section.member .member__info__btn {
  width: 20rem;
  height: 20rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: auto;
  right: -7rem;
  bottom: -7rem;
  left: auto;
  background: var(--color-blue-100);
  border-radius: 50%;
}
@media (max-width: 750px) {
  .container[page=index] section.member .member__info__btn {
    top: auto;
    right: -12rem;
    bottom: -12rem;
    left: auto;
  }
}
.container[page=index] section.member .member__info__btn span {
  font-size: max(11px, 16rem);
  font-family: helvetica-neue-lt-pro, sans-serif;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
}
@media (min-width: 1600px) {
  .container[page=index] section.member .member__info__btn span {
    font-size: 16px;
  }
}
.container[page=index] section.member .member__info__btn span {
  color: var(--color-white-100);
  line-height: 1;
}
.container[page=index] section.member .member__content {
  margin-top: 30rem;
  width: 100%;
}
@media (max-width: 750px) {
  .container[page=index] section.member .member__content {
    margin-top: 27rem;
  }
}
.container[page=index] section.member .member__name {
  width: fit-content;
  height: auto;
  min-height: 1em;
  font-size: max(11px, 13rem);
  font-family: helvetica-neue-lt-pro, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
@media (min-width: 1600px) {
  .container[page=index] section.member .member__name {
    font-size: 13px;
  }
}
.container[page=index] section.member .member__name {
  line-height: 0.8;
  padding: 6rem 7rem;
  color: var(--color-blue-100);
  background: var(--color-gray-100);
  border-radius: 6rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 750px) {
  .container[page=index] section.member .member__name {
    font-size: max(11px, 12rem);
    font-family: helvetica-neue-lt-pro, sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
  }
}
@media (max-width: 750px) and (min-width: 1600px) {
  .container[page=index] section.member .member__name {
    font-size: 12px;
  }
}
.container[page=index] section.member .member__role {
  width: fit-content;
  height: auto;
  min-height: 1em;
  font-size: max(11px, 11rem);
  font-family: helvetica-neue-lt-pro, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
@media (min-width: 1600px) {
  .container[page=index] section.member .member__role {
    font-size: 11px;
  }
}
.container[page=index] section.member .member__role {
  line-height: 1;
  padding: 6rem 7rem;
  display: block;
  color: var(--color-blue-100);
  background: var(--color-gray-100);
  border-radius: 6rem;
  margin-left: 0;
  margin-right: auto;
}
@media (max-width: 750px) {
  .container[page=index] section.member .member__role {
    font-size: max(11px, 12rem);
    font-family: helvetica-neue-lt-pro, sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    margin-left: auto;
    margin-right: 0;
  }
}
@media (max-width: 750px) and (min-width: 1600px) {
  .container[page=index] section.member .member__role {
    font-size: 12px;
  }
}
.container[page=index] section.works {
  margin-top: 76rem;
}
@media (max-width: 992px) {
  .container[page=index] section.works {
    margin-top: 80rem;
  }
}
@media (max-width: 750px) {
  .container[page=index] section.works {
    margin-top: 90rem;
  }
}
.container[page=index] section.works .works__title--sub {
  font-size: max(11px, 140rem);
  font-family: helvetica-neue-lt-pro, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
@media (min-width: 1600px) {
  .container[page=index] section.works .works__title--sub {
    font-size: 140px;
  }
}
.container[page=index] section.works .works__title--sub {
  line-height: 0.9;
  margin-top: 40rem;
  max-width: 1420px;
}
@media (max-width: 992px) {
  .container[page=index] section.works .works__title--sub {
    font-size: max(11px, 80rem);
    font-family: helvetica-neue-lt-pro, sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
  }
}
@media (max-width: 992px) and (min-width: 1600px) {
  .container[page=index] section.works .works__title--sub {
    font-size: 80px;
  }
}
@media (max-width: 750px) {
  .container[page=index] section.works .works__title--sub {
    font-size: max(11px, 44rem);
    font-family: helvetica-neue-lt-pro, sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    margin-top: 22rem;
  }
}
@media (max-width: 750px) and (min-width: 1600px) {
  .container[page=index] section.works .works__title--sub {
    font-size: 44px;
  }
}
.container[page=index] section.works .works__title--sub span {
  display: block;
  position: relative;
  line-height: 0.9;
  overflow: hidden;
}
.container[page=index] section.works .works__title--sub > span:last-of-type {
  text-align: right;
}
.container[page=index] section.works .works__title--sub sup {
  font-size: max(11px, 18rem);
  font-family: helvetica-neue-lt-pro, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
@media (min-width: 1600px) {
  .container[page=index] section.works .works__title--sub sup {
    font-size: 18px;
  }
}
.container[page=index] section.works .works__title--sub sup {
  vertical-align: top;
  position: relative;
  top: 10rem;
  line-height: 0.9;
}
@media (max-width: 992px) {
  .container[page=index] section.works .works__title--sub sup {
    font-size: max(11px, 14rem);
    font-family: helvetica-neue-lt-pro, sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
  }
}
@media (max-width: 992px) and (min-width: 1600px) {
  .container[page=index] section.works .works__title--sub sup {
    font-size: 14px;
  }
}
@media (max-width: 750px) {
  .container[page=index] section.works .works__title--sub sup {
    font-size: max(11px, 12rem);
    font-family: helvetica-neue-lt-pro, sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    top: 2rem;
  }
}
@media (max-width: 750px) and (min-width: 1600px) {
  .container[page=index] section.works .works__title--sub sup {
    font-size: 12px;
  }
}
.container[page=index] section.works .works__list {
  margin-top: 40rem;
}
@media (max-width: 750px) {
  .container[page=index] section.works .works__list {
    margin-top: 90rem;
  }
}
.container[page=index] section.works .works__item {
  border-bottom: 1px solid color-mix(in srgb, var(--color-black-100) 30%, transparent 70%);
  padding-top: 25rem;
  padding-bottom: 25rem;
}
@media (max-width: 992px) {
  .container[page=index] section.works .works__item {
    padding-top: 20rem;
    padding-bottom: 43rem;
    position: relative;
    padding-left: 62rem;
    padding-right: 0;
  }
}
@media (max-width: 750px) {
  .container[page=index] section.works .works__item {
    padding-top: 16rem;
  }
}
.container[page=index] section.works .works__item:first-of-type {
  padding-top: 0;
}
@media (max-width: 992px) {
  .container[page=index] section.works .works__item:first-of-type {
    padding-top: 20rem;
  }
}
@media (max-width: 750px) {
  .container[page=index] section.works .works__item:first-of-type {
    border-top: 1px solid color-mix(in srgb, var(--color-black-100) 30%, transparent 70%);
  }
}
.container[page=index] section.works .works__item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
@media (max-width: 992px) {
  .container[page=index] section.works .works__item:last-child {
    padding-bottom: 43rem;
  }
}
.container[page=index] section.works .works__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 992px) {
  .container[page=index] section.works .works__header {
    flex-direction: column;
    gap: 10rem;
  }
}
@media (max-width: 750px) {
  .container[page=index] section.works .works__header {
    gap: 15rem;
  }
}
.container[page=index] section.works .works__header__left {
  display: flex;
  align-items: flex-start;
}
@media (max-width: 992px) {
  .container[page=index] section.works .works__header__left {
    flex-direction: column;
  }
}
.container[page=index] section.works .works__number {
  min-width: 115rem;
  font-size: max(11px, 50rem);
  font-family: helvetica-neue-lt-pro, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
@media (min-width: 1600px) {
  .container[page=index] section.works .works__number {
    font-size: 50px;
  }
}
.container[page=index] section.works .works__number {
  line-height: 1.35;
}
@media (max-width: 992px) {
  .container[page=index] section.works .works__number {
    font-size: max(11px, 24rem);
    font-family: helvetica-neue-lt-pro, sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    position: absolute;
    top: 20rem;
    right: auto;
    bottom: auto;
    left: 0;
  }
}
@media (max-width: 992px) and (min-width: 1600px) {
  .container[page=index] section.works .works__number {
    font-size: 24px;
  }
}
@media (max-width: 750px) {
  .container[page=index] section.works .works__number {
    font-size: max(11px, 30rem);
    font-family: helvetica-neue-lt-pro, sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
  }
}
@media (max-width: 750px) and (min-width: 1600px) {
  .container[page=index] section.works .works__number {
    font-size: 30px;
  }
}
.container[page=index] section.works .works__info {
  display: flex;
  flex-direction: column;
  gap: 15rem;
}
.container[page=index] section.works .works__name {
  font-size: max(11px, 50rem);
  font-family: helvetica-neue-lt-pro, noto-sans-cjk-jp, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
@media (min-width: 1600px) {
  .container[page=index] section.works .works__name {
    font-size: 50px;
  }
}
.container[page=index] section.works .works__name {
  line-height: 1.35;
}
@media (max-width: 992px) {
  .container[page=index] section.works .works__name {
    font-size: max(11px, 24rem);
    font-family: helvetica-neue-lt-pro, noto-sans-cjk-jp, sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
  }
}
@media (max-width: 992px) and (min-width: 1600px) {
  .container[page=index] section.works .works__name {
    font-size: 24px;
  }
}
@media (max-width: 750px) {
  .container[page=index] section.works .works__name {
    font-size: max(11px, 30rem);
    font-family: helvetica-neue-lt-pro, noto-sans-cjk-jp, sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
  }
}
@media (max-width: 750px) and (min-width: 1600px) {
  .container[page=index] section.works .works__name {
    font-size: 30px;
  }
}
.container[page=index] section.works .works__category {
  font-size: max(11px, 13rem);
  font-family: helvetica-neue-lt-pro, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
@media (min-width: 1600px) {
  .container[page=index] section.works .works__category {
    font-size: 13px;
  }
}
.container[page=index] section.works .works__category {
  line-height: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 5rem;
}
@media (max-width: 750px) {
  .container[page=index] section.works .works__category {
    font-size: max(11px, 12rem);
    font-family: helvetica-neue-lt-pro, sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
  }
}
@media (max-width: 750px) and (min-width: 1600px) {
  .container[page=index] section.works .works__category {
    font-size: 12px;
  }
}
@media (max-width: 992px) {
  .container[page=index] section.works .works__info .works__category {
    display: none;
  }
}
.container[page=index] section.works .works__item > .works__category {
  display: none;
}
@media (max-width: 992px) {
  .container[page=index] section.works .works__item > .works__category {
    display: flex;
    position: static;
    margin-top: 15rem;
  }
}
@media (max-width: 750px) {
  .container[page=index] section.works .works__item > .works__category {
    margin-top: 15rem;
  }
}
.container[page=index] section.works .works__header__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10rem;
}
@media (max-width: 992px) {
  .container[page=index] section.works .works__header__right {
    align-items: flex-start;
  }
}
.container[page=index] section.works .works__copyright {
  font-size: max(11px, 10rem);
  font-family: helvetica-neue-lt-pro, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
@media (min-width: 1600px) {
  .container[page=index] section.works .works__copyright {
    font-size: 10px;
  }
}
.container[page=index] section.works .works__copyright {
  line-height: 1;
}
.container[page=index] section.works .works__client {
  font-size: max(11px, 14rem);
  font-family: helvetica-neue-lt-pro, noto-sans-cjk-jp, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
@media (min-width: 1600px) {
  .container[page=index] section.works .works__client {
    font-size: 14px;
  }
}
.container[page=index] section.works .works__client {
  line-height: 0.8;
  letter-spacing: -0.02em;
  padding: 7rem;
  color: var(--color-blue-100);
  background: var(--color-gray-100);
  border-radius: 7rem;
}
@media (max-width: 992px) {
  .container[page=index] section.works .works__client {
    font-size: max(11px, 12rem);
    font-family: helvetica-neue-lt-pro, noto-sans-cjk-jp, sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
  }
}
@media (max-width: 992px) and (min-width: 1600px) {
  .container[page=index] section.works .works__client {
    font-size: 12px;
  }
}
.container[page=index] section.works .works__slider {
  display: grid;
  overflow: hidden;
}
.container[page=index] section.works .works__slider__inner {
  overflow: hidden;
}
.container[page=index] section.works .works__slider__track {
  display: flex;
  gap: 4rem;
  width: fit-content;
  margin-top: 24rem;
}
@media (max-width: 992px) {
  .container[page=index] section.works .works__slider__track {
    margin-top: 15rem;
  }
}
@media (max-width: 750px) {
  .container[page=index] section.works .works__slider__track {
    margin-top: 50rem;
  }
}
.container[page=index] section.works .works__slider__item {
  height: 134rem;
  width: auto;
  border-radius: 7rem;
  overflow: hidden;
  flex-shrink: 0;
}
@media (max-width: 992px) {
  .container[page=index] section.works .works__slider__item {
    height: 85rem;
  }
}
@media (max-width: 750px) {
  .container[page=index] section.works .works__slider__item {
    height: 80rem;
  }
}
.container[page=index] section.works .works__slider__item img {
  height: 100%;
  width: auto;
}
.container[page=index] section.works .works__item {
  transition: color var(--duration-01) var(--ease-01);
}
.container[page=index] section.works .works__client {
  transition: background var(--duration-01) var(--ease-01), color var(--duration-01) var(--ease-01);
}
.container[page=index] section.works .works__slider {
  transition: grid-template-rows 0.3s var(--ease-01);
  grid-template-rows: 0fr;
}
@media (max-width: 992px) {
  .container[page=index] section.works .works__slider {
    grid-template-rows: 1fr;
  }
}
.container[page=index] section.works .works__slider__inner {
  min-height: 0;
}
.container[page=index] section.works .works__item[data-hovered] .works__slider {
  transition-duration: 0.6s;
}
@media (hover: hover) and (min-width: 993px) {
  .container[page=index] section.works .works__item:hover {
    color: var(--color-blue-100);
  }
  .container[page=index] section.works .works__item:hover .works__client {
    color: var(--color-white-100);
    background: var(--color-blue-100);
  }
  .container[page=index] section.works .works__item:hover .works__slider {
    grid-template-rows: 1fr;
  }
}
.container[page=index] section.recruit {
  margin-top: 152rem;
  overflow: hidden;
}
@media (max-width: 992px) {
  .container[page=index] section.recruit {
    margin-top: 80rem;
  }
}
@media (max-width: 750px) {
  .container[page=index] section.recruit {
    margin-top: 68rem;
  }
}
.container[page=index] section.recruit .recruit__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 40rem;
}
@media (max-width: 750px) {
  .container[page=index] section.recruit .recruit__header {
    margin-top: 20rem;
    display: block;
  }
}
.container[page=index] section.recruit .recruit__header__title {
  font-size: max(11px, 50rem);
  font-family: helvetica-neue-lt-pro, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
@media (min-width: 1600px) {
  .container[page=index] section.recruit .recruit__header__title {
    font-size: 50px;
  }
}
.container[page=index] section.recruit .recruit__header__title {
  line-height: 0.9;
  letter-spacing: -0.02em;
}
@media (max-width: 750px) {
  .container[page=index] section.recruit .recruit__header__title {
    font-size: max(11px, 44rem);
    font-family: helvetica-neue-lt-pro, sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
  }
}
@media (max-width: 750px) and (min-width: 1600px) {
  .container[page=index] section.recruit .recruit__header__title {
    font-size: 44px;
  }
}
.container[page=index] section.recruit .recruit__header__title span {
  display: block;
  position: relative;
  line-height: 0.9;
  overflow: hidden;
}
.container[page=index] section.recruit .recruit__header__title sup {
  font-size: max(11px, 18rem);
  font-family: helvetica-neue-lt-pro, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
@media (min-width: 1600px) {
  .container[page=index] section.recruit .recruit__header__title sup {
    font-size: 18px;
  }
}
.container[page=index] section.recruit .recruit__header__title sup {
  vertical-align: top;
  position: relative;
  margin-left: 2rem;
  margin-right: 0;
  line-height: 0.9;
}
@media (max-width: 750px) {
  .container[page=index] section.recruit .recruit__header__title sup {
    font-size: max(11px, 12rem);
    font-family: helvetica-neue-lt-pro, sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
  }
}
@media (max-width: 750px) and (min-width: 1600px) {
  .container[page=index] section.recruit .recruit__header__title sup {
    font-size: 12px;
  }
}
.container[page=index] section.recruit .recruit__header__text {
  width: 458rem;
  font-size: max(11px, 22rem);
  font-family: helvetica-neue-lt-pro, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
@media (min-width: 1600px) {
  .container[page=index] section.recruit .recruit__header__text {
    font-size: 22px;
  }
}
.container[page=index] section.recruit .recruit__header__text {
  line-height: 1.35;
  margin-top: 86rem;
  margin-left: auto;
  margin-right: 0;
}
@media (max-width: 750px) {
  .container[page=index] section.recruit .recruit__header__text {
    font-size: max(11px, 18rem);
    font-family: helvetica-neue-lt-pro, sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    width: 100%;
    margin-top: 28rem;
  }
}
@media (max-width: 750px) and (min-width: 1600px) {
  .container[page=index] section.recruit .recruit__header__text {
    font-size: 18px;
  }
}
.container[page=index] section.recruit .recruit__list {
  margin-top: 76rem;
}
@media (max-width: 750px) {
  .container[page=index] section.recruit .recruit__list {
    margin-top: 46rem;
  }
}
.container[page=index] section.recruit .recruit__item {
  border-top: 1px solid color-mix(in srgb, var(--color-black-100) 20%, transparent 80%);
  position: relative;
}
.container[page=index] section.recruit .recruit__item:nth-of-type(8n+2) .recruit__item__title, .container[page=index] section.recruit .recruit__item:nth-of-type(8n+3) .recruit__item__title, .container[page=index] section.recruit .recruit__item:nth-of-type(8n+5) .recruit__item__title, .container[page=index] section.recruit .recruit__item:nth-of-type(8n+6) .recruit__item__title, .container[page=index] section.recruit .recruit__item:nth-of-type(8n) .recruit__item__title {
  order: 1;
}
@media (max-width: 750px) {
  .container[page=index] section.recruit .recruit__item:nth-of-type(8n+2) .recruit__item__title, .container[page=index] section.recruit .recruit__item:nth-of-type(8n+3) .recruit__item__title, .container[page=index] section.recruit .recruit__item:nth-of-type(8n+5) .recruit__item__title, .container[page=index] section.recruit .recruit__item:nth-of-type(8n+6) .recruit__item__title, .container[page=index] section.recruit .recruit__item:nth-of-type(8n) .recruit__item__title {
    order: 0;
  }
}
.container[page=index] section.recruit .recruit__item:nth-of-type(8n+2) .recruit__item__desc, .container[page=index] section.recruit .recruit__item:nth-of-type(8n+3) .recruit__item__desc, .container[page=index] section.recruit .recruit__item:nth-of-type(8n+5) .recruit__item__desc, .container[page=index] section.recruit .recruit__item:nth-of-type(8n+6) .recruit__item__desc, .container[page=index] section.recruit .recruit__item:nth-of-type(8n) .recruit__item__desc {
  order: 0;
}
@media (max-width: 750px) {
  .container[page=index] section.recruit .recruit__item:nth-of-type(8n+2) .recruit__item__desc, .container[page=index] section.recruit .recruit__item:nth-of-type(8n+3) .recruit__item__desc, .container[page=index] section.recruit .recruit__item:nth-of-type(8n+5) .recruit__item__desc, .container[page=index] section.recruit .recruit__item:nth-of-type(8n+6) .recruit__item__desc, .container[page=index] section.recruit .recruit__item:nth-of-type(8n) .recruit__item__desc {
    order: 1;
  }
}
.container[page=index] section.recruit .recruit__item:nth-of-type(8n+1) .recruit__item__header {
  margin-left: 120rem;
  margin-right: 0;
  gap: 95rem;
}
@media (max-width: 750px) {
  .container[page=index] section.recruit .recruit__item:nth-of-type(8n+1) .recruit__item__header {
    margin-left: 0;
    margin-right: 0;
    gap: 50rem;
  }
}
.container[page=index] section.recruit .recruit__item:nth-of-type(8n+2) .recruit__item__header {
  margin-left: 120rem;
  margin-right: 0;
  gap: 146rem;
}
@media (max-width: 992px) {
  .container[page=index] section.recruit .recruit__item:nth-of-type(8n+2) .recruit__item__header {
    margin-left: 80rem;
    margin-right: 0;
    gap: 100rem;
  }
}
@media (max-width: 750px) {
  .container[page=index] section.recruit .recruit__item:nth-of-type(8n+2) .recruit__item__header {
    margin-left: 0;
    margin-right: 0;
    gap: 50rem;
  }
}
.container[page=index] section.recruit .recruit__item:nth-of-type(8n+3) .recruit__item__header {
  margin-left: 0;
  margin-right: 0;
  gap: 133rem;
}
@media (max-width: 992px) {
  .container[page=index] section.recruit .recruit__item:nth-of-type(8n+3) .recruit__item__header {
    gap: 100rem;
  }
}
@media (max-width: 750px) {
  .container[page=index] section.recruit .recruit__item:nth-of-type(8n+3) .recruit__item__header {
    margin-left: 0;
    margin-right: 0;
    gap: 50rem;
  }
}
.container[page=index] section.recruit .recruit__item:nth-of-type(8n+4) .recruit__item__header {
  margin-left: 0;
  margin-right: 0;
  gap: 62rem;
}
@media (max-width: 750px) {
  .container[page=index] section.recruit .recruit__item:nth-of-type(8n+4) .recruit__item__header {
    margin-left: 0;
    margin-right: 0;
    gap: 50rem;
  }
}
.container[page=index] section.recruit .recruit__item:nth-of-type(8n+5) .recruit__item__header {
  margin-left: 239rem;
  margin-right: 0;
  gap: 248rem;
}
@media (max-width: 992px) {
  .container[page=index] section.recruit .recruit__item:nth-of-type(8n+5) .recruit__item__header {
    margin-left: 160rem;
    margin-right: 0;
    gap: 180rem;
  }
}
@media (max-width: 750px) {
  .container[page=index] section.recruit .recruit__item:nth-of-type(8n+5) .recruit__item__header {
    margin-left: 0;
    margin-right: 0;
    gap: 50rem;
  }
}
.container[page=index] section.recruit .recruit__item:nth-of-type(8n+6) .recruit__item__header {
  margin-left: 0;
  margin-right: 0;
  gap: 253rem;
}
@media (max-width: 750px) {
  .container[page=index] section.recruit .recruit__item:nth-of-type(8n+6) .recruit__item__header {
    margin-left: 0;
    margin-right: 0;
    gap: 50rem;
  }
}
.container[page=index] section.recruit .recruit__item:nth-of-type(8n+7) .recruit__item__header {
  margin-left: 230rem;
  margin-right: 0;
  gap: 417rem;
}
@media (max-width: 992px) {
  .container[page=index] section.recruit .recruit__item:nth-of-type(8n+7) .recruit__item__header {
    margin-left: 140rem;
    margin-right: 0;
    gap: 200rem;
  }
}
@media (max-width: 750px) {
  .container[page=index] section.recruit .recruit__item:nth-of-type(8n+7) .recruit__item__header {
    margin-left: 0;
    margin-right: 0;
    gap: 50rem;
  }
}
.container[page=index] section.recruit .recruit__item:nth-of-type(8n) .recruit__item__header {
  margin-left: 120rem;
  margin-right: 0;
  gap: 135rem;
}
@media (max-width: 750px) {
  .container[page=index] section.recruit .recruit__item:nth-of-type(8n) .recruit__item__header {
    margin-left: 0;
    margin-right: 0;
    gap: 50rem;
  }
}
.container[page=index] section.recruit .recruit__item:last-child {
  padding-bottom: 0;
}
.container[page=index] section.recruit .recruit__item__header {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  cursor: pointer;
  position: relative;
  padding-top: 25rem;
  padding-bottom: 25rem;
  padding-left: 0;
  padding-right: 50rem;
}
@media (max-width: 992px) {
  .container[page=index] section.recruit .recruit__item__header {
    padding-top: 20rem;
    padding-bottom: 20rem;
    padding-left: 0;
    padding-right: 32rem;
  }
}
@media (max-width: 750px) {
  .container[page=index] section.recruit .recruit__item__header {
    grid-template-columns: 1fr;
  }
}
.container[page=index] section.recruit .recruit__item__title {
  font-size: max(11px, 90rem);
  font-family: helvetica-neue-lt-pro, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
@media (min-width: 1600px) {
  .container[page=index] section.recruit .recruit__item__title {
    font-size: 90px;
  }
}
.container[page=index] section.recruit .recruit__item__title {
  line-height: 1;
  letter-spacing: -0.03em;
}
@media (max-width: 992px) {
  .container[page=index] section.recruit .recruit__item__title {
    font-size: max(11px, 56rem);
    font-family: helvetica-neue-lt-pro, sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
  }
}
@media (max-width: 992px) and (min-width: 1600px) {
  .container[page=index] section.recruit .recruit__item__title {
    font-size: 56px;
  }
}
@media (max-width: 750px) {
  .container[page=index] section.recruit .recruit__item__title {
    font-size: max(11px, 30rem);
    font-family: helvetica-neue-lt-pro, sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
  }
}
@media (max-width: 750px) and (min-width: 1600px) {
  .container[page=index] section.recruit .recruit__item__title {
    font-size: 30px;
  }
}
.container[page=index] section.recruit .recruit__item__title-slot {
  display: block;
  overflow: hidden;
  height: 1em;
  line-height: 1;
}
.container[page=index] section.recruit .recruit__item__title-track {
  display: flex;
  flex-direction: column;
}
.container[page=index] section.recruit .recruit__item__title-track span {
  display: block;
  height: 1em;
  line-height: 1;
}
.container[page=index] section.recruit .recruit__item__desc {
  font-size: max(11px, 13rem);
  font-family: helvetica-neue-lt-pro, noto-sans-cjk-jp, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
@media (min-width: 1600px) {
  .container[page=index] section.recruit .recruit__item__desc {
    font-size: 13px;
  }
}
.container[page=index] section.recruit .recruit__item__desc {
  line-height: 1.35;
  max-width: 220rem;
}
@media (max-width: 992px) {
  .container[page=index] section.recruit .recruit__item__desc {
    font-size: max(11px, 11rem);
    font-family: helvetica-neue-lt-pro, noto-sans-cjk-jp, sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
  }
}
@media (max-width: 992px) and (min-width: 1600px) {
  .container[page=index] section.recruit .recruit__item__desc {
    font-size: 11px;
  }
}
@media (max-width: 750px) {
  .container[page=index] section.recruit .recruit__item__desc {
    font-size: max(11px, 13rem);
    font-family: helvetica-neue-lt-pro, noto-sans-cjk-jp, sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    max-width: 200rem;
    margin-left: auto;
    margin-right: 0;
  }
}
@media (max-width: 750px) and (min-width: 1600px) {
  .container[page=index] section.recruit .recruit__item__desc {
    font-size: 13px;
  }
}
.container[page=index] section.recruit .recruit__item__toggle {
  width: 34rem;
  height: 34rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  margin: auto;
}
@media (max-width: 750px) {
  .container[page=index] section.recruit .recruit__item__toggle {
    width: 20rem;
    height: 20rem;
    top: 23rem;
    right: 0;
    bottom: auto;
    left: auto;
    margin: 0;
  }
}
.container[page=index] section.recruit .recruit__item__dot {
  width: 20rem;
  height: 20rem;
  display: block;
  position: relative;
}
.container[page=index] section.recruit .recruit__item__dot::before {
  content: "";
  width: 12rem;
  height: 2rem;
  background: var(--color-white-100);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  z-index: 1;
}
.container[page=index] section.recruit .recruit__item__dot::after {
  content: "";
  width: 20rem;
  height: 20rem;
  background: var(--color-blue-100);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  border-radius: 50%;
}
.container[page=index] section.recruit .recruit__body {
  overflow: hidden;
  height: 0;
}
.container[page=index] section.recruit .recruit__body__list {
  padding-top: 76rem;
  padding-bottom: 76rem;
  margin-left: auto;
  margin-right: 0;
  max-width: 1054rem;
}
@media (max-width: 992px) {
  .container[page=index] section.recruit .recruit__body__list {
    max-width: 820rem;
    padding-top: 40rem;
    padding-bottom: 40rem;
  }
}
@media (max-width: 750px) {
  .container[page=index] section.recruit .recruit__body__list {
    padding-top: 40rem;
    padding-bottom: 20rem;
  }
}
.container[page=index] section.recruit .recruit__body__item {
  display: grid;
  grid-template-columns: 342rem 1fr;
  gap: 40rem;
  padding-top: 20rem;
  padding-bottom: 20rem;
}
@media (max-width: 992px) {
  .container[page=index] section.recruit .recruit__body__item {
    grid-template-columns: 200rem 1fr;
  }
}
@media (max-width: 750px) {
  .container[page=index] section.recruit .recruit__body__item {
    grid-template-columns: 1fr;
    gap: 20rem;
    padding-top: 0;
    padding-bottom: 0;
  }
}
.container[page=index] section.recruit .recruit__body__item:first-child {
  padding-top: 0;
}
@media (max-width: 750px) {
  .container[page=index] section.recruit .recruit__body__item:not(:first-of-type) {
    margin-top: 40rem;
  }
}
.container[page=index] section.recruit .recruit__body__title {
  font-size: max(11px, 16rem);
  font-family: helvetica-neue-lt-pro, noto-sans-cjk-jp, sans-serif;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
}
@media (min-width: 1600px) {
  .container[page=index] section.recruit .recruit__body__title {
    font-size: 16px;
  }
}
.container[page=index] section.recruit .recruit__body__title {
  line-height: 1.6;
}
@media (max-width: 750px) {
  .container[page=index] section.recruit .recruit__body__title {
    font-size: max(11px, 14rem);
    font-family: helvetica-neue-lt-pro, noto-sans-cjk-jp, sans-serif;
    font-weight: 600;
    -webkit-font-smoothing: antialiased;
  }
}
@media (max-width: 750px) and (min-width: 1600px) {
  .container[page=index] section.recruit .recruit__body__title {
    font-size: 14px;
  }
}
.container[page=index] section.recruit .recruit__body__desc {
  font-size: max(11px, 16rem);
  font-family: helvetica-neue-lt-pro, noto-sans-cjk-jp, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
@media (min-width: 1600px) {
  .container[page=index] section.recruit .recruit__body__desc {
    font-size: 16px;
  }
}
.container[page=index] section.recruit .recruit__body__desc {
  line-height: 1.7;
}
@media (max-width: 750px) {
  .container[page=index] section.recruit .recruit__body__desc {
    font-size: max(11px, 14rem);
    font-family: helvetica-neue-lt-pro, noto-sans-cjk-jp, sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
  }
}
@media (max-width: 750px) and (min-width: 1600px) {
  .container[page=index] section.recruit .recruit__body__desc {
    font-size: 14px;
  }
}
.container[page=index] section.recruit .recruit__item__title, .container[page=index] section.recruit .recruit__item__desc {
  transition: color var(--duration-01) var(--ease-01);
}
.container[page=index] section.recruit .recruit__item__dot::before {
  transition: transform var(--duration-01) var(--ease-01);
  transform: scaleX(0);
}
.container[page=index] section.recruit .recruit__item__dot::after {
  transition: transform var(--duration-01) var(--ease-01);
}
@media (hover: hover) and (min-width: 993px) {
  .container[page=index] section.recruit .recruit__item__header:hover .recruit__item__title, .container[page=index] section.recruit .recruit__item__header:hover .recruit__item__desc {
    color: var(--color-blue-100);
  }
}
@media (hover: hover) and (min-width: 993px) {
  .container[page=index] section.recruit .recruit__item:hover .recruit__item__dot::after {
    transform: scale(2);
  }
}
.container[page=index] section.recruit .recruit__item[data-open] .recruit__item__dot::before {
  transform: scaleX(1);
}
.container[page=index] section.recruit .recruit__item[data-open] .recruit__item__dot::after {
  transform: scale(2);
}
@media (max-width: 750px) {
  .container[page=index] section.recruit .recruit__item[data-open] .recruit__item__dot::after {
    transform: scale(1.75);
  }
}
.container[page=index] section.contact {
  margin-top: 152rem;
  padding-bottom: 152rem;
}
@media (max-width: 992px) {
  .container[page=index] section.contact {
    margin-top: 80rem;
    padding-bottom: 80rem;
  }
}
@media (max-width: 750px) {
  .container[page=index] section.contact {
    margin-top: 90rem;
    padding-bottom: 90rem;
  }
}
.container[page=index] section.contact .contact__container {
  display: flex;
  justify-content: space-between;
  margin-top: 40rem;
}
@media (max-width: 992px) {
  .container[page=index] section.contact .contact__container {
    flex-direction: column;
  }
}
@media (max-width: 750px) {
  .container[page=index] section.contact .contact__container {
    margin-top: 20rem;
  }
}
.container[page=index] section.contact .contact__title--sub {
  font-size: max(11px, 65rem);
  font-family: helvetica-neue-lt-pro, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
@media (min-width: 1600px) {
  .container[page=index] section.contact .contact__title--sub {
    font-size: 65px;
  }
}
.container[page=index] section.contact .contact__title--sub {
  line-height: 1.2;
  letter-spacing: -0.02em;
}
@media (max-width: 750px) {
  .container[page=index] section.contact .contact__title--sub {
    font-size: max(11px, 44rem);
    font-family: helvetica-neue-lt-pro, sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
  }
}
@media (max-width: 750px) and (min-width: 1600px) {
  .container[page=index] section.contact .contact__title--sub {
    font-size: 44px;
  }
}
.container[page=index] section.contact .contact__title--sub *:not(:first-of-type) {
  margin-top: -15rem;
}
.container[page=index] section.contact .contact__address {
  margin-top: 52rem;
}
@media (max-width: 750px) {
  .container[page=index] section.contact .contact__address {
    margin-top: 42rem;
  }
}
.container[page=index] section.contact .contact__map {
  font-size: max(11px, 18rem);
  font-family: helvetica-neue-lt-pro, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
@media (min-width: 1600px) {
  .container[page=index] section.contact .contact__map {
    font-size: 18px;
  }
}
.container[page=index] section.contact .contact__map {
  line-height: 1.35;
}
@media (max-width: 750px) {
  .container[page=index] section.contact .contact__map {
    font-size: 16rem;
  }
}
.container[page=index] section.contact .contact__map__link {
  font-size: max(11px, 13rem);
  font-family: helvetica-neue-lt-pro, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
@media (min-width: 1600px) {
  .container[page=index] section.contact .contact__map__link {
    font-size: 13px;
  }
}
.container[page=index] section.contact .contact__map__link {
  display: inline-block;
  line-height: 1;
  margin-top: 25rem;
  padding: 7rem;
  border-radius: 7rem;
  color: var(--color-blue-100);
  background: var(--color-gray-100);
}
@media (max-width: 750px) {
  .container[page=index] section.contact .contact__map__link {
    margin-top: 10rem;
  }
}
.container[page=index] section.contact .contact__member {
  margin-top: 52rem;
}
@media (max-width: 750px) {
  .container[page=index] section.contact .contact__member {
    margin-top: 40rem;
  }
}
.container[page=index] section.contact .contact__member__name {
  font-size: max(11px, 18rem);
  font-family: helvetica-neue-lt-pro, noto-sans-cjk-jp, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
@media (min-width: 1600px) {
  .container[page=index] section.contact .contact__member__name {
    font-size: 18px;
  }
}
.container[page=index] section.contact .contact__member__name {
  line-height: 1.35;
}
@media (max-width: 750px) {
  .container[page=index] section.contact .contact__member__name {
    font-size: 16rem;
  }
}
.container[page=index] section.contact .contact__form {
  flex: 1;
  max-width: 697rem;
}
@media (max-width: 992px) {
  .container[page=index] section.contact .contact__form {
    padding-top: 50rem;
    width: 100%;
  }
}
@media (max-width: 750px) {
  .container[page=index] section.contact .contact__form {
    padding-top: 55rem;
  }
}
.container[page=index] section.contact .contact__input {
  display: flex;
  flex-direction: column;
  gap: 15rem;
}
.container[page=index] section.contact .contact__input__item {
  display: block;
  width: 100%;
  position: relative;
  border: none;
  padding: 0;
  margin: 0;
}
.container[page=index] section.contact .contact__input__item[require-input]::after {
  content: "*必須";
  font-size: max(11px, 12rem);
  font-family: helvetica-neue-lt-pro, noto-sans-cjk-jp, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
@media (min-width: 1600px) {
  .container[page=index] section.contact .contact__input__item[require-input]::after {
    font-size: 12px;
  }
}
.container[page=index] section.contact .contact__input__item[require-input]::after {
  color: var(--color-blue-100);
  position: absolute;
  top: 20rem;
  right: 15rem;
}
.container[page=index] section.contact .contact__input__item[error-input] .contact__text,
.container[page=index] section.contact .contact__input__item[error-input] .contact__textarea {
  background: #fff0f0;
}
.container[page=index] section.contact .contact__select {
  display: flex;
  flex-direction: column;
  gap: 8rem;
}
.container[page=index] section.contact .contact__select__item {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10rem;
}
.container[page=index] section.contact .contact__select__item label {
  cursor: pointer;
}
.container[page=index] section.contact .contact__select__item input[type=radio] {
  appearance: none;
  width: 19rem;
  height: 19rem;
  border: 2rem solid var(--color-blue-100);
  border-radius: 50%;
  cursor: pointer;
  position: relative;
}
.container[page=index] section.contact .contact__select__item input[type=radio]:checked::after {
  content: "";
  width: 18rem;
  height: 18rem;
  background: var(--color-blue-100);
  border-radius: 50%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.container[page=index] section.contact .contact__text,
.container[page=index] section.contact .contact__textarea {
  width: 100%;
  font-size: max(11px, 16rem);
  font-family: helvetica-neue-lt-pro, noto-sans-cjk-jp, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
@media (min-width: 1600px) {
  .container[page=index] section.contact .contact__text,
  .container[page=index] section.contact .contact__textarea {
    font-size: 16px;
  }
}
.container[page=index] section.contact .contact__text,
.container[page=index] section.contact .contact__textarea {
  padding: 20rem 53rem 20rem 15rem;
  border: none;
  background: var(--color-gray-200);
  outline: none;
  border-radius: 6rem;
}
@media (max-width: 750px) {
  .container[page=index] section.contact .contact__text,
  .container[page=index] section.contact .contact__textarea {
    font-size: max(11px, 14rem);
    font-family: helvetica-neue-lt-pro, noto-sans-cjk-jp, sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
  }
}
@media (max-width: 750px) and (min-width: 1600px) {
  .container[page=index] section.contact .contact__text,
  .container[page=index] section.contact .contact__textarea {
    font-size: 14px;
  }
}
.container[page=index] section.contact .contact__text::placeholder,
.container[page=index] section.contact .contact__textarea::placeholder {
  color: var(--color-gray-300);
}
.container[page=index] section.contact .contact__text:-webkit-autofill,
.container[page=index] section.contact .contact__textarea:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px var(--color-gray-200) inset;
}
.container[page=index] section.contact .contact__textarea {
  min-height: 190rem;
  resize: none;
}
.container[page=index] section.contact .contact__thanks,
.container[page=index] section.contact .contact__error {
  display: none;
  font-size: max(11px, 20rem);
  font-family: helvetica-neue-lt-pro, noto-sans-cjk-jp, sans-serif;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
}
@media (min-width: 1600px) {
  .container[page=index] section.contact .contact__thanks,
  .container[page=index] section.contact .contact__error {
    font-size: 20px;
  }
}
.container[page=index] section.contact .contact__thanks,
.container[page=index] section.contact .contact__error {
  line-height: 1.6;
  margin-bottom: 30rem;
  padding-bottom: 20rem;
  border-bottom: 1rem solid color-mix(in srgb, var(--color-black-100) 30%, transparent 70%);
  letter-spacing: 0.05em;
}
@media (max-width: 750px) {
  .container[page=index] section.contact .contact__thanks,
  .container[page=index] section.contact .contact__error {
    font-size: max(11px, 18rem);
    font-family: helvetica-neue-lt-pro, noto-sans-cjk-jp, sans-serif;
    font-weight: 600;
    -webkit-font-smoothing: antialiased;
  }
}
@media (max-width: 750px) and (min-width: 1600px) {
  .container[page=index] section.contact .contact__thanks,
  .container[page=index] section.contact .contact__error {
    font-size: 18px;
  }
}
.container[page=index] section.contact .contact__button-wrap,
.container[page=index] section.contact .contact__confirm__button-wrap {
  display: flex;
  gap: 10rem;
  border: none;
  padding: 0;
  margin: 0;
}
.container[page=index] section.contact .contact__confirm__button-wrap {
  margin-top: 30rem;
}
.container[page=index] section.contact .contact__button {
  width: 100%;
  font-size: max(11px, 16rem);
  font-family: helvetica-neue-lt-pro, noto-sans-cjk-jp, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
@media (min-width: 1600px) {
  .container[page=index] section.contact .contact__button {
    font-size: 16px;
  }
}
.container[page=index] section.contact .contact__button {
  padding: 20rem 0;
  background: var(--color-black-100);
  color: var(--color-white-100);
  border: none;
  cursor: pointer;
  border-radius: 6rem;
  text-align: center;
}
@media (max-width: 750px) {
  .container[page=index] section.contact .contact__button {
    font-size: max(11px, 18rem);
    font-family: helvetica-neue-lt-pro, noto-sans-cjk-jp, sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
  }
}
@media (max-width: 750px) and (min-width: 1600px) {
  .container[page=index] section.contact .contact__button {
    font-size: 18px;
  }
}
.container[page=index] section.contact .contact__button--back {
  background: var(--color-white-100);
  color: var(--color-black-100);
  border: 1rem solid var(--color-black-100);
}
.container[page=index] section.contact .contact__button--done {
  display: none;
}
.container[page=index] section.contact .contact__confirm {
  display: none;
}
.container[page=index] section.contact .contact__confirm__title {
  font-size: max(11px, 20rem);
  font-family: helvetica-neue-lt-pro, noto-sans-cjk-jp, sans-serif;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
}
@media (min-width: 1600px) {
  .container[page=index] section.contact .contact__confirm__title {
    font-size: 20px;
  }
}
.container[page=index] section.contact .contact__confirm__title {
  letter-spacing: 0.05em;
  padding-bottom: 20rem;
  border-bottom: 1rem solid color-mix(in srgb, var(--color-black-100) 30%, transparent 70%);
}
@media (max-width: 750px) {
  .container[page=index] section.contact .contact__confirm__title {
    font-size: max(11px, 18rem);
    font-family: helvetica-neue-lt-pro, noto-sans-cjk-jp, sans-serif;
    font-weight: 600;
    -webkit-font-smoothing: antialiased;
  }
}
@media (max-width: 750px) and (min-width: 1600px) {
  .container[page=index] section.contact .contact__confirm__title {
    font-size: 18px;
  }
}
.container[page=index] section.contact .contact__confirm__list {
  display: flex;
  flex-direction: column;
  gap: 30rem;
  margin-top: 45rem;
}
@media (max-width: 750px) {
  .container[page=index] section.contact .contact__confirm__list {
    margin-top: 30rem;
  }
}
.container[page=index] section.contact .contact__confirm__item {
  font-size: max(11px, 16rem);
  font-family: helvetica-neue-lt-pro, noto-sans-cjk-jp, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
@media (min-width: 1600px) {
  .container[page=index] section.contact .contact__confirm__item {
    font-size: 16px;
  }
}
.container[page=index] section.contact .contact__confirm__item {
  line-height: 1.35;
  color: var(--color-gray-300);
}
.container[page=index] section.contact .contact__confirm__item:first-child {
  color: var(--color-black-100);
}
.container[page=index] section.contact .contact__confirm__item:empty {
  display: none;
}
.container[page=index] section.contact .contact__confirm__item[data-confirm=your-message] {
  white-space: pre-wrap;
}
.container[page=index] section.contact .contact__form[status=confirm] .contact__input {
  display: none;
}
.container[page=index] section.contact .contact__form[status=confirm] .contact__confirm {
  display: block;
}
.container[page=index] section.contact .contact__form[status=thanks] .contact__thanks {
  display: block;
}
.container[page=index] section.contact .contact__form[status=thanks] .contact__confirm {
  display: none;
}
.container[page=index] section.contact .contact__form[status=thanks] .contact__input__item::after {
  display: none;
}
.container[page=index] section.contact .contact__form[status=error] .contact__error {
  display: block;
}
.container[page=index] section.contact .contact__form[status=error] .contact__confirm {
  display: none;
}
.container[page=index] section.contact .contact__map__link {
  transition: background var(--duration-01) var(--ease-01), color var(--duration-01) var(--ease-01);
}
.container[page=index] section.contact .contact__button {
  transition: background var(--duration-01) var(--ease-01), color var(--duration-01) var(--ease-01);
}
@media (hover: hover) and (min-width: 993px) {
  .container[page=index] section.contact .contact__map__link:hover {
    color: var(--color-white-100);
    background: var(--color-blue-100);
  }
}
@media (hover: hover) and (min-width: 993px) {
  .container[page=index] section.contact .contact__button:hover {
    color: var(--color-white-100);
    background: var(--color-blue-100);
  }
}