/*!
global > color
------------------------------
*/
:root {
  --bg-base: #0f0f0f;
  --bg-black: #090909;
  --bg-white: #ffffff;
  --border-base: rgba(255, 255, 255, 0.125);
  --border-white: #ffffff;
  --border-black: #000000;
  --border-selected: #7a3ada;
  --font-base: #090909;
  --font-black: #000000;
  --font-white: #fff;
  --font-gray: #fff9;
  --font-color-number: #bcbcc4;
}

/*!
global > font
------------------------------
*/
:root {
  --font-family-base: "Schibsted Grotesk", sans-serif;
  --font-family-label: "Orbitron", sans-serif;
  --font-family-accent: "Playfair Display", serif;
  --font-family-counter: "Libre Baskerville", serif;
}

/*!
global > content-width
------------------------------
*/
:root {
  --width-content-s: 760px;
  --width-content: 1080px;
}

/*!
global > z-index
------------------------------
*/
:root {
  --z-index-page-overlay: 9999;
  --z-index-header: 100;
  --z-index-modal: 1000;
}

/*!
foundation > reset
------------------------------
*/
html {
  color: #000;
  background: #fff;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

fieldset,
img {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

q:before,
q:after {
  content: "";
}

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input,
textarea,
select,
button {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-size: 100%;
  border-radius: 0;
  border: none;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background-color: inherit;
}

input,
textarea,
select {
  font-size: 16px;
}

textarea {
  resize: vertical;
  display: block;
}

button {
  padding: 0;
  cursor: pointer;
}

button:focus {
  outline: none;
}

legend {
  color: #000;
}

tbody {
  -webkit-text-size-adjust: 100%;
}

main {
  display: block;
}

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

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

svg {
  display: block;
}

dialog {
  max-width: 100%;
  max-height: 100%;
  padding: 0;
  color: inherit;
  border: none;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
}

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

/*!
foundation > base
------------------------------
*/
body {
  letter-spacing: 0.05em;
  font-size: 16px;
  background-color: var(--bg-base);
  color: var(--font-white);
  font-family: var(--font-family-base);
}
@media screen and (min-width: 768px) {
  body {
    font-size: 18px;
  }
}

:focus {
  outline: none;
}

:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

/*!
component > bg-wrapper
------------------------------
*/
.c-bg {
  position: fixed;
  inset: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  will-change: transform;
  backface-visibility: hidden;
}
.c-bg img {
  position: relative;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@supports (height: 1lvh) {
  .c-bg {
    height: 100lvh;
  }
}

.c-body-overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  background-color: rgb(0, 0, 0);
  opacity: 0.5;
  pointer-events: none;
  backface-visibility: hidden;
}
.c-body-overlay--about {
  opacity: 0.8;
}
@supports (height: 1lvh) {
  .c-body-overlay {
    height: 100lvh;
  }
}

.c-page-overlay {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  background-color: #fff;
  background: var(--bg-base);
  z-index: var(--z-index-page-overlay);
  pointer-events: none;
  pointer-events: auto;
  overscroll-behavior: contain;
  touch-action: none;
}

/*!
component > section label
------------------------------
*/
.c-section-label {
  font-size: 14px;
  padding-inline: 4px;
  border-radius: 4px;
  background-color: var(--bg-white);
  font-weight: bold;
  display: inline-block;
  width: auto;
  color: var(--font-base);
}
@media screen and (min-width: 768px) {
  .c-section-label {
    font-size: 16px;
  }
}

/*!
component > kv
------------------------------
*/
.c-kv {
  min-height: 560px;
  height: 100vh;
  backface-visibility: hidden;
}
@supports (height: 1lvh) {
  .c-kv {
    height: 100lvh;
  }
}

.c-kv-inner {
  position: relative;
  width: 90%;
  margin-inline: auto;
  height: 100%;
  display: grid;
  place-items: center start;
}

.c-kv-title-wrapper {
  opacity: 0;
  contain: paint;
}

.c-kv-title {
  font-size: 32px;
  font-weight: 500;
  line-height: 1;
}
@media screen and (min-width: 375px) {
  .c-kv-title {
    font-size: 38px;
  }
}
@media screen and (min-width: 500px) {
  .c-kv-title {
    font-size: 48px;
  }
}
@media screen and (min-width: 768px) {
  .c-kv-title {
    font-size: 64px;
  }
}
@media screen and (min-width: 1080px) {
  .c-kv-title {
    font-size: 88px;
  }
}
.c-kv-title--top span {
  display: inline-block;
}
.c-kv-title--first {
  font-style: italic;
  font-family: var(--font-family-accent);
}

.c-kv-describe {
  contain: paint;
  margin-top: 4px;
  font-family: var(--font-family-accent);
  font-style: italic;
  letter-spacing: 0.12em;
  font-size: 18px;
}
@media screen and (min-width: 375px) {
  .c-kv-describe {
    font-size: 22px;
  }
}
@media screen and (min-width: 500px) {
  .c-kv-describe {
    font-size: 32px;
  }
}
@media screen and (min-width: 768px) {
  .c-kv-describe {
    font-size: 48px;
  }
}
@media screen and (min-width: 1080px) {
  .c-kv-describe {
    font-size: 72px;
  }
}

.c-kv-describe-split {
  display: block;
}
@media screen and (min-width: 1080px) {
  .c-kv-describe-split {
    display: inline-block;
  }
}

.c-kv-split {
  display: inline-block;
}

.c-kv-scroll-indicator {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 4px;
  right: 20px;
  bottom: 120px;
}
@media screen and (min-width: 768px) {
  .c-kv-scroll-indicator {
    bottom: 32px;
    right: 50%;
    transform: translateX(50%);
  }
}

.c-kv-scroll-text {
  font-weight: bold;
}

.c-kv-scroll-viewport {
  position: relative;
  display: block;
  overflow: hidden;
}

.c-kv-scroll-arrow {
  display: block;
  pointer-events: none;
}

/*!
component > description
------------------------------
*/
.c-description {
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .c-description {
    font-size: 18px;
  }
}

.c-description-date {
  margin-top: 16px;
}

.c-description-city-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.c-description-city-list li {
  display: grid;
  grid-template-columns: max-content auto;
  align-items: baseline;
}

.c-description-city-jp::before {
  content: "/";
  margin-inline: 4px;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .c-description-city-jp::before {
    margin-inline: 8px;
  }
}

.c-description-text {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 14px;
}
.c-description-text span {
  display: block;
}
@media screen and (min-width: 768px) {
  .c-description-text {
    font-size: 18px;
  }
}

/*!
component > description
------------------------------
*/
.c-gallery {
  margin-top: 64px;
  width: 90%;
  margin-inline: auto;
}

.c-gallery-list {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 120px;
}

.c-gallery-item {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  opacity: 0.7;
  will-change: transform;
}
.c-gallery-item--vertical {
  aspect-ratio: 3/4;
}
.c-gallery-item--horizontal {
  aspect-ratio: 4/3;
}
@media screen and (min-width: 768px) {
  .c-gallery-item {
    width: 400px;
  }
}
@media screen and (min-width: 1080px) {
  .c-gallery-item {
    width: 35%;
  }
}
@media screen and (min-width: 768px) {
  .c-gallery-item:nth-child(odd) {
    align-self: flex-start;
  }
}
.c-gallery-item:first-child {
  height: auto;
}
@media screen and (min-width: 768px) {
  .c-gallery-item:first-child {
    align-self: flex-end;
  }
}
@media screen and (min-width: 768px) {
  .c-gallery-item:nth-child(even) {
    align-self: flex-end;
  }
}
.c-gallery-item button {
  display: block;
  width: 100%;
}
.c-gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-gallery-item-label {
  position: absolute;
  display: block;
  background: var(--bg-white);
  color: var(--font-base);
  font-family: var(--font-family-label);
  padding: 4px 8px;
  border-radius: 8px;
  left: 50%;
  font-weight: 500;
  line-height: 1.4;
  will-change: transform;
}
.c-gallery-item-label--date {
  letter-spacing: 0.08em;
  top: 16px;
}
.c-gallery-item-label--name {
  bottom: 16px;
}

/*!
component >  info
------------------------------
*/
.c-lightbox {
  border: none;
  padding: 0;
  margin: 0;
  position: fixed;
  inset: 0;
  width: 100vw;
  height: calc(100% + 2px);
  max-height: none;
  max-width: none;
  background-color: var(--bg-black);
  color: var(--font-white);
  z-index: var(--z-index-modal);
  overflow-y: auto;
  -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0% 100%);
          clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0% 100%);
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: none;
}
@media screen and (min-width: 768px) {
  .c-lightbox {
    height: 100vh;
  }
}

.c-lightbox::backdrop {
  display: none;
}

.c-lightbox-bg {
  position: absolute;
  inset: 0;
  background: transparent;
  pointer-events: auto;
}

.c-lightbox-inner {
  width: 90%;
  max-width: var(--width-content);
  height: auto;
  min-height: calc(100% + 1px);
  margin-inline: auto;
  display: grid;
  grid-template-rows: 1fr auto;
  place-items: center;
  gap: 16px;
  align-items: stretch;
  justify-items: stretch;
}
@media screen and (min-width: 768px) {
  .c-lightbox-inner {
    grid-template-rows: none;
    grid-template-columns: minmax(460px, 1fr) minmax(260px, 500px);
    align-content: stretch;
  }
}

.c-lightbox-img-section {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 16px;
  padding: 32px;
  min-height: 0;
}
@media screen and (min-width: 768px) {
  .c-lightbox-img-section {
    max-height: 100vh;
  }
}

.c-lightbox-img {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(200px, 50vh, 70vh);
  height: 100%;
  overflow: hidden;
  -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0% 100%);
          clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0% 100%);
}
.c-lightbox-img img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin-inline: auto;
}

.c-lightbox-item {
  position: relative;
  text-transform: uppercase;
  font-family: var(--font-family-label);
  text-align: center;
}

.c-lightbox-text {
  position: relative;
  top: 25px;
  display: inline-flex;
  font-size: 14px;
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .c-lightbox-text {
    font-size: 16px;
  }
}

.c-lightbox-close-btn {
  position: relative;
  text-align: center;
  cursor: pointer;
}

.c-lightbox-caption {
  place-self: center;
  min-height: 0;
  padding: 16px;
  font-size: 14px;
  -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0% 100%);
          clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0% 100%);
}
@media screen and (min-width: 768px) {
  .c-lightbox-caption {
    font-size: 16px;
  }
}

.c-lightbox-item-revealer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
}
.c-lightbox-item-revealer::after {
  content: "";
  position: absolute;
  top: 25px;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-black);
}
.c-lightbox-item-revealer--caption::after {
  top: 100px;
}

/*!
component > hamburger menu
------------------------------
*/
.c-hamburger-menu {
  background-color: var(--bg-base);
  position: fixed;
  inset: 0;
  width: 100%;
  height: calc(100% + 2px);
  color: var(--font-white);
  overflow: auto;
  z-index: var(--z-index-modal);
  -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0% 100%);
          clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0% 100%);
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: none;
  isolation: isolate;
}
@media screen and (min-width: 768px) {
  .c-hamburger-menu {
    display: none;
  }
}
.c-hamburger-menu::backdrop {
  display: none;
}

.c-hamburger-bg {
  position: fixed;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.2);
  pointer-events: none;
}

.c-hamburger-menu-header {
  position: fixed;
  top: 0;
  inset-inline: 0;
  width: 100%;
  z-index: var(--z-index-header);
  backface-visibility: initial;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
}

.c-hamburger-menu-header-inner {
  height: 120px;
  width: 90%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.c-hamburger-button {
  font-size: 14px;
  width: 100px;
  font-weight: bold;
  text-align: right;
  position: relative;
  padding-block: 2px;
  transition: color 0.3s ease;
}
@media screen and (min-width: 500px) {
  .c-hamburger-button {
    font-size: 16px;
    width: 120px;
  }
}
@media screen and (min-width: 768px) {
  .c-hamburger-button {
    padding-block: 4px;
  }
}
.c-hamburger-button::after {
  content: "";
  position: absolute;
  right: 0;
  inset-block-end: -2px;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.35);
  pointer-events: none;
  inset-inline-end: 0;
}
@media screen and (min-width: 768px) {
  .c-hamburger-button::after {
    inset-block-end: -4px;
  }
}
.c-hamburger-button::before {
  content: "";
  position: absolute;
  inset-block-end: -2px;
  height: 2px;
  width: 100%;
  background: rgb(255, 255, 255);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  pointer-events: none;
  transform-origin: right;
  inset-inline-end: 0;
}
@media screen and (min-width: 768px) {
  .c-hamburger-button::before {
    inset-block-end: -4px;
  }
}
@media (any-hover: hover) {
  .c-hamburger-button:hover::before {
    transform: scaleX(1);
  }
}
@media (hover: none) {
  .c-hamburger-button.is-active::before {
    transform: scaleX(1);
    transition-duration: 180ms;
  }
}

.c-hamburger-country-list {
  position: absolute;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
  top: calc(50% - 2px);
  right: 5%;
}
.c-hamburger-country-list::after {
  content: "";
  display: block;
  height: 85vh;
}

.c-hamburger-country-item {
  overflow: hidden;
  text-align: right;
}

.c-hamburger-country-item a {
  display: block;
  gap: 4px;
  opacity: 0.4;
  padding-left: 6px;
}
@media (any-hover: hover) {
  .c-hamburger-country-item a:hover {
    opacity: 1;
  }
}

.c-hamburger-country-item span {
  display: block;
}
.c-hamburger-country-item span:first-child {
  font-family: var(--font-family-accent);
  font-style: italic;
  font-size: 40px;
}
@media screen and (min-width: 500px) {
  .c-hamburger-country-item span:first-child {
    font-size: 56px;
  }
}
.c-hamburger-country-item span:last-child {
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .c-hamburger-country-item span:last-child {
    font-size: 20px;
  }
}

.c-hamburger-bottom-list {
  width: 100%;
  position: fixed;
  bottom: 0;
  display: flex;
  align-items: center;
  padding: 16px;
  gap: 32px;
}

.c-hamburger-bottom-item a {
  font-size: 16px;
  font-weight: bold;
}

/*!
layout > container
------------------------------
*/
.l-container, .l-container-s {
  width: 90%;
  margin-inline: auto;
}

.l-container-s {
  max-width: var(--width-content);
}

/*!
layout > section
------------------------------
*/
.l-section {
  padding: 120px 0;
}

/*!
layout > header
------------------------------
*/
.header {
  position: fixed;
  top: 0;
  inset-inline: 0;
  width: 100%;
  z-index: var(--z-index-header);
  transform: translateZ(0);
  backface-visibility: hidden;
}

.header-inner {
  height: 120px;
  width: 90%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.header-nav {
  text-align: center;
  position: relative;
}

.header-logo {
  position: relative;
}
.header-logo a {
  display: inline-block;
  width: 140px;
  height: auto;
}
.header-logo a:focus:not(:focus-visible) {
  outline: none;
}
@media screen and (min-width: 375px) {
  .header-logo a {
    width: 159px;
  }
}
@media screen and (min-width: 768px) {
  .header-logo a {
    width: 200px;
  }
}
.header-logo img {
  width: 100%;
}

.header-list {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.header-item {
  font-size: 14px;
  width: 100px;
  font-weight: bold;
}
@media screen and (min-width: 500px) {
  .header-item {
    font-size: 16px;
    width: 120px;
  }
}
@media screen and (min-width: 768px) {
  .header-item {
    font-size: 18px;
  }
}

.header-button {
  width: 100%;
  position: relative;
  display: inline-block;
  padding-block: 2px;
  transition: color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .header-button {
    padding-block: 4px;
  }
}
.header-button::after {
  content: "";
  position: absolute;
  right: 0;
  inset-block-end: -2px;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.35);
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .header-button::after {
    inset-block-end: -4px;
  }
}
.header-button::before {
  content: "";
  position: absolute;
  inset-block-end: -2px;
  width: 100%;
  height: 2px;
  background: rgb(255, 255, 255);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .header-button::before {
    inset-block-end: -4px;
  }
}
@media (any-hover: hover) {
  .header-button:hover::before {
    transform: scaleX(1);
  }
}
@media (hover: none) {
  .header-button.is-active::before {
    transform: scaleX(1);
    transition-duration: 180ms;
  }
}

.header-item--country,
.header-item--about,
.header-item--contact {
  display: none;
}
@media screen and (min-width: 768px) {
  .header-item--country,
  .header-item--about,
  .header-item--contact {
    display: inline-block;
  }
}

.header-item--menu {
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .header-item--menu {
    display: none;
  }
}

.header-submenu {
  display: none;
}
.header-submenu.is-active {
  position: absolute;
  display: grid;
  grid-template-rows: repeat(9, auto);
  grid-auto-flow: column;
  gap: 6px 24px;
  text-align: left;
  padding: 16px 8px;
}
@media screen and (min-width: 768px) {
  .header-submenu.is-active {
    grid-template-rows: repeat(6, auto);
  }
}

.header-submenu-item {
  cursor: pointer;
  display: inline-flex;
  color: var(--font-gray);
  font-size: 12px;
  align-items: center;
  gap: 6px;
}
@media screen and (min-width: 768px) {
  .header-submenu-item {
    font-size: 14px;
  }
}
.header-submenu-item::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #d9d9d9;
  transition: transform 0.3s;
}
@media screen and (min-width: 768px) {
  .header-submenu-item::before {
    width: 9px;
    height: 9px;
  }
}
@media (any-hover: hover) {
  .header-submenu-item:hover {
    color: var(--font-white);
  }
  .header-submenu-item:hover::before {
    transform: rotate(315deg);
  }
}

.header-item:first-child .header-button {
  text-align: left;
}
.header-item:first-child .header-button::after {
  inset-inline-start: 0;
}
.header-item:first-child .header-button::before {
  inset-inline-start: 0;
  transform-origin: left;
}

.header-item:not(:first-child) .header-button {
  text-align: right;
}
.header-item:not(:first-child) .header-button::after {
  inset-inline-end: 0;
}
.header-item:not(:first-child) .header-button::before {
  inset-inline-end: 0;
  transform-origin: right;
}

/*!
layout > footer
------------------------------
*/
.footer {
  position: relative;
  padding-top: 120px;
  padding-bottom: 16px;
}

.footer-logo {
  border-bottom: 1px solid var(--border-white);
  padding-block: 16px;
}
.footer-logo a {
  display: inline-block;
  width: 248px;
}
@media screen and (min-width: 768px) {
  .footer-logo a {
    width: 610px;
  }
}
.footer-logo img {
  width: 100%;
}

.footer-inner {
  width: 90%;
  margin-inline: auto;
}

.footer-nav {
  padding: 16px;
}

.footer-list {
  letter-spacing: 0;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .footer-list {
    display: grid;
    align-items: start;
    grid-template-columns: minmax(220px, 320px) 1fr;
    grid-template-rows: auto auto;
    grid-template-areas: "contact country" "about   country";
    -moz-column-gap: 48px;
         column-gap: 48px;
    row-gap: 16px;
  }
}

.footer-item--contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .footer-item--contact {
    grid-area: contact;
  }
}

.footer-item--about {
  grid-area: about;
}

.footer-email {
  text-decoration: underline;
}

.footer-item--country {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 500px;
}
@media screen and (min-width: 768px) {
  .footer-item--country {
    grid-area: country;
  }
}
@media screen and (min-width: 1080px) {
  .footer-item--country {
    max-width: 660px;
  }
}

.footer-submenu {
  display: grid;
  grid-template-rows: repeat(9, auto);
  gap: 8px;
  grid-auto-flow: column;
}
@media screen and (min-width: 500px) {
  .footer-submenu {
    grid-template-rows: repeat(6, auto);
  }
}
@media screen and (min-width: 768px) {
  .footer-submenu {
    gap: 4px;
  }
}
@media screen and (min-width: 1080px) {
  .footer-submenu {
    grid-template-rows: repeat(4, auto);
  }
}

.footer-submenu-item {
  display: inline-flex;
  color: var(--font-gray);
  font-size: 14px;
  align-items: center;
  gap: 4px;
}
@media screen and (min-width: 768px) {
  .footer-submenu-item {
    font-size: 16px;
  }
}
.footer-submenu-item::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #d9d9d9;
  transition: transform 0.3s;
}
@media screen and (min-width: 768px) {
  .footer-submenu-item::before {
    width: 9px;
    height: 9px;
  }
}
@media (any-hover: hover) {
  .footer-submenu-item:hover {
    color: var(--font-white);
  }
  .footer-submenu-item:hover::before {
    transform: rotate(315deg);
  }
}

.footer-copy {
  margin-top: 64px;
  padding-left: 16px;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .footer-copy {
    font-size: 18px;
  }
}

/*!
pages > top > gallery
------------------------------
*/
.top-gallery-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media screen and (min-width: 500px) {
  .top-gallery-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1080px) {
  .top-gallery-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.top-gallery-item {
  will-change: clip-path;
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
          clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
  border: 1px solid var(--border-base);
  height: 300px;
  width: 100%;
  padding: 1em;
  overflow: hidden;
}

.top-gallery-item a {
  height: 100%;
}
@media (any-hover: hover) {
  .top-gallery-item a:hover img {
    transform: scale(1.05);
  }
}

.top-gallery-item-thumbnail {
  height: 70%;
  overflow: hidden;
}
.top-gallery-item-thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.2s;
}

.top-gallery-item-label {
  margin-top: 16px;
  font-family: var(--font-family-label);
}
.top-gallery-item-label span {
  display: block;
}
@media screen and (min-width: 1080px) {
  .top-gallery-item-label span {
    display: inline-block;
  }
}
.top-gallery-item-label span:first-child {
  font-size: 18px;
}
@media screen and (min-width: 768px) {
  .top-gallery-item-label span:first-child {
    font-size: 20px;
  }
}
.top-gallery-item-label span:last-child {
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .top-gallery-item-label span:last-child {
    font-size: 18px;
  }
}
.top-gallery-item-label span:last-child::before {
  content: "-";
  display: inline-block;
  margin-inline: 4px;
}
@media screen and (min-width: 500px) {
  .top-gallery-item-label span:last-child::before {
    margin-inline: 8px;
  }
}

/*!
pages > top > loading
------------------------------
*/
.top-loading {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  z-index: var(--z-index-page-overlay);
  background-color: var(--bg-base);
  font-family: var(--font-family-counter);
  font-style: italic;
  pointer-events: auto;
  overscroll-behavior: contain;
  touch-action: none;
  transform: translateZ(0);
}
@supports (height: 1dvh) {
  .top-loading {
    height: 100dvh;
  }
}

.top-loading-counter {
  font-size: 20vw;
  padding: 0.2em 0.4em;
  color: var(--font-color-number);
  will-change: contents;
}

/*!
pages > about > about
------------------------------
*/
.about {
  position: relative;
  padding-top: 160px;
}

.about-me {
  display: grid;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .about-me {
    align-items: start;
    grid-template-columns: minmax(300px, 1fr) 1fr;
    gap: 40px;
  }
}
@media screen and (min-width: 1080px) {
  .about-me {
    gap: 60px;
  }
}

.about-me-img {
  align-self: start;
}

.about-me-img button {
  aspect-ratio: 1;
  display: block;
  width: 100%;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .about-me-img button {
    aspect-ratio: 3/4;
    height: auto;
  }
}
.about-me-img button img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.about-me-description {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-me-name {
  font-size: 32px;
}
@media screen and (min-width: 768px) {
  .about-me-name {
    font-size: 40px;
  }
}
.about-me-name span:first-child {
  font-family: var(--font-family-accent);
  font-style: italic;
}
.about-me-name span:last-child {
  font-weight: 500;
  letter-spacing: 0;
}

.about-me-text {
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .about-me-text {
    font-size: 16px;
  }
}
@media screen and (min-width: 1080px) {
  .about-me-text {
    font-size: 20px;
  }
}
.about-me-text span {
  display: block;
}
.about-me-text span:last-child {
  margin-top: 16px;
}

.about-site {
  margin-top: 24px;
}

.about-site-text {
  font-size: 16px;
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .about-site-text {
    font-size: 18px;
  }
}
@media screen and (min-width: 768px) {
  .about-site-text {
    font-size: 20px;
  }
}/*# sourceMappingURL=style.css.map */