@import url("https://fonts.googleapis.com/css2?family=Anonymous+Pro:ital,wght@0,400;0,700;1,400;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0");
body {
  background-color: #E0EBEB;
  font-family: "FramesPartOne", sans-serif;
  min-height: 100vh;
}
@media (min-width: 860px) {
  body {
    display: grid;
    grid-template-columns: 0.3fr 1fr;
    grid-template-rows: 1fr auto;
    min-height: 100vh;
  }
}

.bold {
  font-weight: 700;
}

main .top-right {
  text-align: end;
}
@media (max-width: 860px) {
  main .top-right {
    display: none;
  }
}
main .top-right a {
  color: #1A1A1A;
  -webkit-text-decoration: dotted;
          text-decoration: dotted;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  text-underline-offset: 4px;
  font-size: clamp(
      14px,
      calc(11.7142857143px + 0.2976190476vw),
      16px
    );
  font-weight: 500;
  margin: 0 10px;
}
main section {
  display: none;
  margin-top: 5%;
  min-height: 82svh;
}
main section.active {
  display: block;
}
main .latest h1 {
  font-weight: 500;
  text-align: center;
  font-size: clamp(
      18px,
      calc(2px + 2.0833333333vw),
      32px
    );
}
main .work-page {
  padding: 0 15px 40px;
  max-width: 1180px;
}
main .work-page__notice {
  font-size: clamp(12px, 1.6vw, 14px);
  font-weight: 500;
}
main .work-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(18px, 4vw, 48px);
  align-items: start;
}
main .work-slider {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
main .work-slider .slider {
  width: min(560px, 72vw);
  margin: 0;
}
main .work-slide__placeholder {
  font-size: clamp(12px, 1.6vw, 14px);
  opacity: 0.7;
}
main .work-slider__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}
main .work-slider__btn {
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  line-height: 0;
}
main .work-slider__btn img {
  display: block;
  height: 24px;
  width: auto;
}
main .work-details {
  display: grid;
  gap: 12px;
  align-content: start;
}
main .work-details__thumb {
  width: min(180px, 80%);
  padding: 8px;
  background: rgba(255, 255, 255, 0.35);
  box-shadow: 0 16px 36px rgba(26, 26, 26, 0.12);
}
main .work-details__thumb img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
main .work-details__title {
  font-size: clamp(
      20px,
      calc(1.7142857143px + 2.380952381vw),
      36px
    );
  font-weight: 100;
}
main .work-details__meta {
  display: grid;
  gap: 6px;
  font-size: clamp(
      16px,
      calc(13.7142857143px + 0.2976190476vw),
      18px
    );
  font-weight: 500;
}
main .work-details__line {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px;
}
main .work-details__label {
  font-weight: 500;
  margin-left: 10px;
}
main .work-details__description {
  display: grid;
  gap: 8px;
}
main .work-details__desc {
  --scrollbox-max-height: clamp(140px, 35svh, 240px);
}
main .work-details__desc .scrollbox__content {
  font-size: clamp(
      14px,
      calc(11.7142857143px + 0.2976190476vw),
      16px
    );
  font-weight: 500;
  line-height: 1.6;
}
main .slider {
  width: min(520px, 70vw);
  margin: clamp(18px, 4vh, 42px) auto 0;
  -webkit-tap-highlight-color: transparent;
}
main .slider__viewport {
  overflow: hidden;
  aspect-ratio: 1/1;
  cursor: -webkit-grab;
  cursor: grab;
  touch-action: pan-y;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}
main .slider.is-dragging .slider__viewport {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
main .slider__track {
  display: flex;
  height: 100%;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}
main .slider.is-dragging .slider__track {
  transition: none;
}
main .slider__slide {
  flex: 0 0 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
main .slider__slide img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  pointer-events: none;
}
main .slider__bullets {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
}
main .slider__bullet {
  width: 6px;
  height: 6px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid #1A1A1A;
  background: transparent;
  opacity: 0.55;
  cursor: pointer;
}
main .slider__bullet.is-active {
  background: #1A1A1A;
  opacity: 1;
}
main .slider__bullet:focus-visible {
  outline: 2px solid #1A1A1A;
  outline-offset: 4px;
  opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
  main .slider__track {
    transition: none;
  }
}
main .scrollbox {
  --scrollbox-dot-size: 8px;
  --scrollbox-track-color: rgba(26, 26, 26, 0.35);
  --scrollbox-dot-color: #1A1A1A;
  --scrollbox-max-height: 40svh;
  --scrollbox-dot-y: 0px;
  position: relative;
}
main .scrollbox__content {
  max-height: var(--scrollbox-max-height);
  overflow: auto;
  padding-right: 22px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
main .scrollbox__content::-webkit-scrollbar {
  width: 0;
  height: 0;
}
main .scrollbox__bar {
  position: absolute;
  inset: 2px 4px 2px auto;
  width: 14px;
  display: flex;
  justify-content: center;
  pointer-events: none;
}
main .scrollbox__bar::before {
  content: "";
  width: 1px;
  background: var(--scrollbox-track-color);
  opacity: 0.8;
}
main .scrollbox__dot {
  position: absolute;
  top: 0;
  left: 50%;
  width: var(--scrollbox-dot-size);
  height: var(--scrollbox-dot-size);
  border-radius: 999px;
  background: var(--scrollbox-dot-color);
  transform: translate3d(-50%, var(--scrollbox-dot-y), 0);
  will-change: transform;
}
main .scrollbox[data-scrollable=false] .scrollbox__bar {
  opacity: 0;
}
main .whois .whois__layout {
  width: min(1000px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.5fr 1fr;
  gap: clamp(18px, 4vw, 42px);
  align-items: stretch;
}
main .whois .whois__media {
  display: flex;
  justify-content: end;
  align-items: stretch;
}
main .whois .whois__media img {
  height: 100%;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
main .whois .whois__content {
  min-width: 0;
}
main .whois .whois__content h2 {
  font-size: clamp(
      20px,
      calc(15.4285714286px + 0.5952380952vw),
      24px
    );
  font-weight: 700;
  margin-bottom: 10px;
}
main .whois .scrollbox {
  --scrollbox-max-height: clamp(260px, 60svh, 560px);
}
main .whois .scrollbox__content {
  font-size: clamp(
      16px,
      calc(13.7142857143px + 0.2976190476vw),
      18px
    );
  font-weight: 500;
  line-height: 1.6;
}
main .whois .scrollbox__content p {
  white-space: pre-line;
}
@media (max-width: 860px) {
  main .whois .whois__layout {
    grid-template-columns: 1fr;
  }
  main .whois .whois__media {
    width: min(240px, 75%);
    margin: 0 auto;
  }
}

.separator {
  --separator-color: #1A1A1A;
  --separator-thickness: 2px;
  --separator-margin: 18px;
  width: 100%;
  height: var(--separator-thickness);
  background: var(--separator-color);
  opacity: 0.9;
  margin: var(--separator-margin) 0;
}

.contact {
  width: 100%;
  padding-right: clamp(18px, 4vw, 60px);
  text-align: left;
  display: none;
  justify-items: start;
  align-items: start;
}
.contact h2 {
  grid-area: title;
  font-size: clamp(
      18px,
      calc(11.1428571429px + 0.8928571429vw),
      24px
    );
  font-weight: 700;
}
.contact .separator {
  grid-area: sep;
  --separator-margin: 8px;
}
.contact .contact__meta {
  grid-area: meta;
  display: grid;
  gap: 10px;
  align-content: start;
  margin-top: 15px;
}
.contact .contact__legal {
  grid-area: legal;
  align-self: start;
}
.contact .small {
  font-size: clamp(
      12px,
      calc(9.7142857143px + 0.2976190476vw),
      14px
    );
  font-weight: 700;
}
.contact .align {
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.contact a {
  color: #1A1A1A;
  text-decoration: none;
  display: inline-block;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(26, 26, 26, 0.7);
}
.contact .contact__legal p {
  max-width: 44ch;
  font-size: clamp(
      12px,
      calc(9.7142857143px + 0.2976190476vw),
      14px
    );
  font-weight: 500;
  line-height: 1.6;
}
@media (max-width: 860px) {
  .contact {
    padding-right: 0;
    grid-template-columns: 1fr;
    grid-template-areas: "title" "sep" "meta" "legal";
  }
  .contact a {
    min-width: 0;
  }
}

.contact.active {
  display: block;
  padding: 0 15px;
}

.exhibitions-page {
  width: 100%;
  padding: 0 15px;
  text-align: left;
}
.exhibitions-page h2 {
  font-size: clamp(
      18px,
      calc(11.1428571429px + 0.8928571429vw),
      24px
    );
  font-weight: 700;
}
.exhibitions-page .separator {
  --separator-margin: 8px;
}
.exhibitions-page .exhibitions-page__group {
  margin-top: 26px;
}
.exhibitions-page .exhibitions-page__title {
  font-size: clamp(
      16px,
      calc(9.1428571429px + 0.8928571429vw),
      22px
    );
  font-weight: 700;
}
.exhibitions-page .exhibitions-page__items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
}
.exhibitions-page .exhibitions-page__meta {
  font-size: clamp(
      12px,
      calc(9.7142857143px + 0.2976190476vw),
      14px
    );
  font-weight: 700;
}
.exhibitions-page .exhibitions-page__name {
  margin-top: 4px;
  font-size: clamp(
      16px,
      calc(9.1428571429px + 0.8928571429vw),
      22px
    );
  font-weight: 500;
}
.exhibitions-page .exhibitions-page__exposed {
  margin-top: 4px;
  max-width: 44ch;
  font-size: clamp(
      12px,
      calc(9.7142857143px + 0.2976190476vw),
      14px
    );
  font-weight: 500;
  line-height: 1.6;
}
.exhibitions-page .exhibitions-page__empty {
  font-size: clamp(
      12px,
      calc(9.7142857143px + 0.2976190476vw),
      14px
    );
  font-weight: 500;
}
@media (min-width: 860px) {
  .exhibitions-page {
    padding-right: clamp(18px, 4vw, 60px);
    padding-left: 0;
  }
}

footer {
  grid-column: 1/3;
  text-align: center;
}

@media (max-width: 860px) {
  body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }
  main {
    flex: 1;
    margin-top: 35px;
    margin-bottom: 40px;
  }
  footer {
    margin-top: auto;
  }
  main section {
    margin-top: 0px;
    min-height: 70svh;
  }
  main .work-layout {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  main .work-slider .slider {
    width: min(520px, 90vw);
  }
  main .work-details {
    width: 100%;
    max-width: 320px;
    justify-items: center;
    text-align: left;
  }
  main .work-details__thumb {
    display: none;
  }
}
@media (min-width: 860px) {
  header {
    grid-column: 1;
    grid-row: 1;
  }
  main {
    grid-column: 2;
    grid-row: 1;
  }
  footer {
    grid-column: 1/-1;
    grid-row: 2;
    align-self: end;
  }
}
@font-face {
  font-family: "FramesPartOne";
  font-style: normal;
  font-weight: 100;
  src: url("../font/FramesPartOne-Light.woff2") format("woff2");
}
@font-face {
  font-family: "FramesPartOne";
  font-style: normal;
  font-weight: 400;
  src: url("../font/FramesPartOne-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "FramesPartOne";
  font-style: normal;
  font-weight: 500;
  src: url("../font/FramesPartOne-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "FramesPartOne";
  font-style: normal;
  font-weight: 700;
  src: url("../font/FramesPartOne-Bold.woff2") format("woff2");
}
.material-symbols-outlined {
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

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

input:focus {
  outline: none;
}

[hidden] {
  display: none !important;
}

header {
  margin-left: 4%;
}
header .logo {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 10%;
  width: 310px;
}
header .logo img {
  width: 80%;
}
header .logo a {
  text-decoration: none;
  font-weight: 700;
  color: #1A1A1A;
  font-size: clamp(
      16px,
      calc(13.7142857143px + 0.2976190476vw),
      18px
    );
  text-align: center;
}
header .logo a h1 {
  font-family: "FramesPartOne", sans-serif;
}
header nav.is-works-open > ul > li:not(.nav__works) > a {
  color: #696D6D;
}
header nav ul li {
  list-style: none;
  margin: 10px 0;
}
header nav ul li a {
  text-decoration: none;
  color: #1A1A1A;
  font-weight: 500;
  font-size: clamp(
      16px,
      calc(13.7142857143px + 0.2976190476vw),
      18px
    );
}
header nav ul li .active {
  font-weight: 700;
}
header nav ul .nav__works {
  margin: 14px 0;
}
header nav ul .nav__works .nav__works-toggle {
  font-weight: 500;
}
header nav ul .nav__works .nav__works-list {
  display: none;
  margin-top: 10px;
  margin-left: 6px;
}
header nav ul .nav__works .nav__works-list li {
  margin: 8px 0;
}
header nav ul .nav__works .nav__works-list a {
  font-weight: 500;
  font-size: clamp(
      16px,
      calc(13.7142857143px + 0.2976190476vw),
      18px
    );
  opacity: 1;
}
header nav.is-works-open .nav__works .nav__works-toggle {
  font-weight: 900;
}
header nav.is-works-open .nav__works .nav__works-list {
  display: block;
}

.mobile-nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 10px;
  cursor: pointer;
  line-height: 0;
}

.mobile-nav-toggle__icon {
  position: relative;
  display: block;
  width: 26px;
  height: 2px;
  border-radius: 999px;
  background: #1A1A1A;
  transition: background 180ms ease;
}

.mobile-nav-toggle__icon::before,
.mobile-nav-toggle__icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 26px;
  height: 2px;
  border-radius: 999px;
  background: #1A1A1A;
  transition: transform 180ms ease, top 180ms ease, background 180ms ease;
}

.mobile-nav-toggle__icon::before {
  top: -8px;
}

.mobile-nav-toggle__icon::after {
  top: 8px;
}

@media (max-width: 860px) {
  header {
    margin-left: 0;
    padding: 0 0 14px;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #E0EBEB;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  header .logo {
    margin-bottom: 0;
    width: 100%;
    gap: 0;
  }
  header .logo img {
    width: 80%;
    max-width: 360px;
    margin-top: 0;
    margin-bottom: 6px;
  }
  header .logo a {
    text-align: center;
    width: 100%;
  }
  header .logo a h1 {
    font-size: clamp(20px, 8vw, 80px);
    line-height: 1;
    white-space: nowrap;
  }
  header nav {
    display: none;
  }
  .mobile-nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 10002;
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 0;
    width: 46px;
    height: 46px;
  }
  .mobile-contact {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 10002;
  }
  .mobile-contact__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    padding: 0;
    width: 46px;
    height: 46px;
    cursor: pointer;
    line-height: 0;
  }
  .mobile-contact__toggle img {
    display: block;
    width: 38px;
    height: 38px;
  }
  body.is-contact-panel-open .mobile-contact__toggle {
    display: none;
  }
  .mobile-contact__panel {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 10003;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 14px 12px;
    background: #1a1a1a;
    opacity: 0.8;
    border-radius: 0 0 0 20px;
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.45);
  }
  .mobile-contact__link,
.mobile-contact__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    color: #fff;
    font-family: "Anonymous Pro", monospace;
    font-size: 28px;
    line-height: 1;
    text-decoration: none;
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
  }
  .mobile-contact__link .material-symbols-outlined,
.mobile-contact__close .material-symbols-outlined {
    font-size: 28px;
    line-height: 1;
  }
  .mobile-nav-toggle__icon {
    width: 34px;
    height: 3px;
  }
  .mobile-nav-toggle__icon::before,
.mobile-nav-toggle__icon::after {
    width: 34px;
    height: 3px;
  }
  .mobile-nav-toggle__icon::before {
    top: -10px;
  }
  .mobile-nav-toggle__icon::after {
    top: 10px;
  }
  body.is-mobile-menu-open {
    overflow: hidden;
  }
  body.is-mobile-menu-open .mobile-nav-toggle,
body.is-mobile-menu-open .mobile-contact {
    display: none;
  }
  body.is-mobile-menu-open header nav {
    position: fixed;
    inset: 0;
    z-index: 10001;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    background: rgba(0, 0, 0, 0.12);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
  }
  body.is-mobile-menu-open header nav > ul {
    width: min(340px, 78vw);
    max-height: calc(100svh - 24px);
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding: 22px 20px;
    border-radius: 0px 0px 20px 0;
    background: #1a1a1a;
    opacity: 0.8;
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.45);
  }
  body.is-mobile-menu-open header nav > ul::-webkit-scrollbar {
    width: 0;
    height: 0;
  }
  body.is-mobile-menu-open header nav > ul > li {
    margin: 18px 0;
  }
  body.is-mobile-menu-open header nav a {
    color: #fff;
    font-family: "Anonymous Pro", monospace;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 0.01em;
  }
  body.is-mobile-menu-open header nav a.active {
    font-weight: 700;
  }
  body.is-mobile-menu-open header nav a::after {
    content: "";
    display: block;
    width: 56px;
    height: 2px;
    margin-top: 10px;
    background: rgba(255, 255, 255, 0.7);
  }
  body.is-mobile-menu-open header nav .nav__works {
    margin: 18px 0;
  }
  body.is-mobile-menu-open header nav .nav__works-list {
    margin-top: 18px;
    margin-left: 0;
  }
  body.is-mobile-menu-open header nav .nav__works-list li {
    margin: 14px 0;
  }
  body.is-mobile-menu-open header nav .nav__works-list a {
    font-size: 20px;
  }
  body.is-mobile-menu-open header nav.is-works-open > ul > li:not(.nav__works) {
    display: none;
  }
  body.is-mobile-menu-open header nav.is-works-open .nav__works {
    margin: 0;
  }
  body.is-mobile-menu-open header nav.is-works-open .nav__works-toggle {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-weight: 700;
  }
  body.is-mobile-menu-open header nav.is-works-open .nav__works-toggle::before {
    content: "";
    width: 18px;
    height: 18px;
    border-left: 4px solid #fff;
    border-bottom: 4px solid #fff;
    transform: rotate(45deg);
  }
  body.is-mobile-menu-open header nav.is-works-open .nav__works-toggle::after {
    display: none;
  }
}
.menu {
  display: flex;
}

.section {
  margin: 0;
}