@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

img {
  width: 100%;
  height: auto;
}

figure {
  line-height: 0;
}

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

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Kirby Grid */
.grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-row-gap: var(--unit);
}

.grid > .column {
  grid-column: span var(--span);
}

@media screen and (min-width: 65rem) {
  .grid {
    --gutter: calc(var(--unit) * 2);
    grid-template-columns: repeat(12, 1fr);
    grid-gap: var(--gutter);
  }
}
.top-small {
  padding-top: calc(var(--unit) * 2);
}

.top-medium {
  padding-top: calc(var(--unit) * 4);
}

.top-large {
  padding-top: calc(var(--unit) * 10);
}

.p-grid-two {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: var(--unit);
  row-gap: calc(var(--unit) * 4);
}

@media screen and (max-width: 45rem) {
  .p-grid-two {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    row-gap: calc(var(--unit) * 2);
  }
  .top-large {
    padding-top: calc(var(--unit) * 5);
  }
}
/* Animations */
@font-face {
  font-family: "GeistMono";
  src: url("../fonts/GeistMono-Regular.ttf");
  src: url("../fonts/GeistMono-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
:root {
  --unit: 15px;
  --font: Helvetica, Arial, sans-serif;
  --font-mono: "GeistMono", monospace;
  --font-size: 22px;
  --c-main: #000000;
  --c-light: #ffffff;
}

/* === Base Styles ========================================================================= */
::selection,
::-moz-selection {
  background: #ffffff;
}

body {
  font-family: var(--font);
  font-size: var(--font-size);
  color: var(--c-main);
  letter-spacing: -0.03rem;
}
body section {
  opacity: 0;
  transition: opacity 1s ease-out;
}
body section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === UI ================================================================================ */
.btn {
  display: inline-block;
  color: var(--c-main);
  padding: var(--unit);
}

/* === Menue ================================================================================ */
.menu-button {
  position: fixed;
  top: var(--unit);
  right: calc(var(--unit) * 8);
  cursor: pointer;
  z-index: 50;
  font-family: var(--font-mono);
  font-size: calc(var(--unit) * 0.9);
  text-transform: uppercase;
  text-shadow: 0 0 1px #fff, 0 0 2px #fff, 0 0 4px #fff, 0 0 8px #fff, 0 0 8px #fff, 0 0 8px #fff, 0 0 16px #fff, 0 0 25px #fff, 0 0 16px #fff;
}

.menu {
  position: fixed;
  top: calc(var(--unit) * 4);
  right: calc(var(--unit) * 5);
  padding: var(--unit);
  z-index: 40;
  font-family: var(--font-mono);
  font-size: calc(var(--unit) * 0.9);
  text-transform: uppercase;
  text-shadow: 0 0 1px #fff, 0 0 2px #fff, 0 0 4px #fff, 0 0 8px #fff, 0 0 8px #fff, 0 0 8px #fff, 0 0 16px #fff, 0 0 25px #fff, 0 0 16px #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  transform-origin: top;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease-in-out;
}
.menu li {
  margin-top: 3px;
}
.menu.open {
  opacity: 1;
  pointer-events: auto;
}
.menu.open ul {
  animation-delay: 0.4s;
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.6));
}
.menu.open li {
  margin-top: 3px;
  opacity: 0;
  animation: fadeInUp 0.4s ease-out forwards;
}
.menu.open li:nth-child(1) {
  animation-delay: 0.4s;
}
.menu.open li:nth-child(2) {
  animation-delay: 0.5s;
}
.menu.open li:nth-child(3) {
  animation-delay: 0.6s;
}
.menu.open li:nth-child(4) {
  animation-delay: 0.7s;
}
.menu.open li:nth-child(5) {
  animation-delay: 0.8s;
}
.menu.open li:nth-child(6) {
  animation-delay: 0.9s;
}
.menu.open li:nth-child(7) {
  animation-delay: 1s;
}
.menu.open li:nth-child(8) {
  animation-delay: 1.1s;
}
.menu.open li:nth-child(9) {
  animation-delay: 1.2s;
}
.menu.open li a {
  transition: opacity 0.3s ease;
}
.menu.open li a:hover {
  text-decoration: underline;
}
.menu a p {
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
  text-align: center;
}
.menu a p:hover {
  opacity: 0.5;
}

.menu-button::after {
  content: "＋";
  margin-left: 8px;
  font-family: monospace;
  transition: transform 0.3s ease;
}

.menu-button.open::after {
  content: "－";
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.main {
  padding: calc(var(--unit) * 2);
  padding-bottom: 0;
}
.main .page-title {
  position: absolute;
  font-size: clamp(4rem, 11vw, 13rem);
  font-family: var(--font);
  font-weight: bold;
  letter-spacing: -0.02em;
  padding-top: calc(var(--unit) * 5);
}

.logo-font {
  font-family: var(--font-mono);
  font-size: calc(var(--unit) * 0.9);
  position: fixed;
  top: calc(var(--unit) * 2);
  z-index: 200;
  color: var(--c-main);
  text-transform: uppercase;
  line-height: 1.2;
  text-shadow: 0 0 1px #fff, 0 0 2px #fff, 0 0 4px #fff, 0 0 8px #fff, 0 0 8px #fff, 0 0 8px #fff, 0 0 16px #fff, 0 0 25px #fff, 0 0 16px #fff;
}

@media screen and (max-width: 45rem) {
  .main {
    padding: calc(var(--unit) * 1);
  }
  .menu-button {
    right: calc(var(--unit) * 1);
  }
  .menu {
    right: calc(var(--unit) * 1);
  }
  .menu li {
    margin-top: 6px;
    text-align: right;
  }
  .menu.open li {
    margin-top: 10px;
  }
}
/* === Blocks ================================================================================ */
.blocks .blocks .text-large p {
  font-size: calc(var(--font-size) * 2.2);
  font-family: var(--font-serif);
  letter-spacing: -0.02em;
}
.blocks p {
  font-size: calc(var(--font-size) * 1.8);
  padding-bottom: 1em;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: bold;
}
.blocks p:last-child {
  padding-bottom: 0;
}
.blocks h1 {
  font-size: clamp(4rem, 11vw, 13rem);
  font-family: var(--font);
  font-weight: bold;
  letter-spacing: -0.02em;
}
.blocks h2 {
  font-size: calc(var(--font-size) * 1.8);
  padding-bottom: 1em;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: bold;
}
.blocks .text-default {
  margin: 0 auto;
}
.blocks .image .image-effect {
  filter: grayscale(100%);
  transition: filter 0.4s ease;
}
.blocks .image .image-effect:hover {
  filter: grayscale(0%);
}
.blocks .image figcaption {
  line-height: 1.2;
  margin-top: 5px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  font-size: calc(var(--unit) * 0.9);
  margin-bottom: calc(var(--unit) * 2);
  transform: translateZ(0);
}
.blocks .img-small {
  max-width: 900px;
  margin: 0 auto;
}
.blocks .link {
  display: flex;
  justify-content: flex-end;
  padding: var(--unit) calc(var(--unit) * 6);
  margin-top: var(--unit);
}
.blocks .link .link-item a {
  display: flex;
  font-size: calc(var(--font-size) * 2.2);
  letter-spacing: -0.02em;
  transition: all 0.3s ease-in-out;
  opacity: 1;
}
.blocks .link .link-item a span {
  display: block;
  margin-left: var(--unit);
  transition: transform 0.3s ease;
}
.blocks .link .link-item a:hover {
  opacity: 0.4;
  transform: translateX(6px);
}

@media screen and (max-width: 45rem) {
  .blocks .blocks .text-large p {
    font-size: calc(var(--font-size) * 1.28);
    font-family: var(--font-serif);
    letter-spacing: -0.02em;
  }
  .blocks p {
    font-size: calc(var(--font-size) * 1.28);
  }
  .blocks h2 {
    font-size: calc(var(--font-size) * 1.28);
  }
  .blocks .link {
    padding: var(--unit);
  }
  .blocks .link .link-item a {
    font-size: calc(var(--font-size) * 1.28);
  }
  .blocks .link .link-item a span img {
    height: calc(var(--font-size) * 1.28);
  }
}
/* === Autoscroll images ================================================================================ */
.splide {
  margin: 0 calc(var(--unit) * -2);
}
.splide .splide__track {
  will-change: transform;
}
.splide .splide__list {
  display: flex;
  height: 85vh;
}
.splide .splide__slide {
  max-width: 250px;
  height: 100%;
  padding: 0;
  overflow: hidden;
  flex-shrink: 0;
}
.splide .splide__slide .slide-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}
.splide .splide__slide .slide-content p {
  font-size: calc(var(--unit) * 0.8);
  font-family: var(--font-mono);
  font-weight: normal;
  text-transform: uppercase;
}
.splide .splide__slide .slide-content img {
  width: 100%;
  max-height: 80%;
  height: auto;
  object-fit: contain;
  display: block;
  filter: grayscale(100%);
  transition: filter 0.4s ease;
}
.splide .splide__slide .slide-content img:hover {
  filter: grayscale(0%);
}

@media screen and (max-width: 45rem) {
  .splide .splide__list {
    display: flex;
    height: 83vh;
  }
}
/* === Folding table ================================================================================ */
.accordion {
  border-top: 1px solid #000000;
  margin: 0 calc(var(--unit) * -2);
  margin-top: -1px;
  transform: translateY(0);
}
.accordion .accordion-entry {
  border-bottom: 1px solid #000000;
}
.accordion .accordion-entry h2 {
  cursor: pointer;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: calc(var(--unit) * 2);
}
.accordion .accordion-entry h2::after {
  content: "＋";
  font-family: var(--font-mono);
  font-weight: normal;
  transition: transform 0.3s;
}
.accordion .accordion-entry h2.open::after {
  content: "－";
  font-family: var(--font-mono);
  font-weight: normal;
  transform: rotate(180deg);
}
.accordion .accordion-entry .accordion-content {
  max-height: 0;
  overflow: hidden;
  opacity: 1;
  transition: max-height 0.5s ease, opacity 0.3s ease;
  margin-bottom: -1px;
}
.accordion .table-wrapper {
  font-size: 0.95rem;
  font-family: var(--font-mono);
  text-transform: uppercase;
  font-size: calc(var(--unit) * 0.9);
  transform: translateZ(0);
}
.accordion .table-wrapper .table-row {
  padding: var(--unit) calc(var(--unit) * 2);
  border-bottom: 1px solid #000000;
  cursor: default;
  display: flex;
  justify-content: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.accordion .table-wrapper .table-row .table-content {
  display: grid;
  grid-template-columns: 40% 30% 20% 10%;
  max-width: 1500px;
  width: 100%;
  text-align: left;
  padding: 0;
  line-height: 1.2;
}
.accordion .table-wrapper .table-row .table-content .table-year {
  text-align: right;
}
@media (max-width: 45rem) {
  .accordion .table-wrapper .table-row .table-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .accordion .table-wrapper .table-row .table-content .table-year {
    text-align: left;
  }
}
.accordion .table-wrapper .table-row div {
  padding: 0 0.5rem;
}
.accordion .table-wrapper .table-row.visible {
  opacity: 1;
}

@media (max-width: 45rem) {
  .table-row:first-of-type .table-content > div:not(:first-child) {
    display: none;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* === Contact ================================================================================ */
.global-info {
  padding-top: calc(var(--unit) * 10);
  height: 15vh;
}
.global-info .contact-info {
  padding-top: calc(var(--unit) * 5);
}
.global-info .contact-info p {
  padding-bottom: 0;
}

/* === Footer ================================================================================ */
.site-footer {
  padding: 0 var(--unit);
  margin-bottom: 5px;
}
.site-footer .legal {
  display: flex;
  justify-content: space-between;
}
.site-footer .legal ul {
  display: flex;
}
.site-footer .legal ul a {
  margin-left: var(--unit);
}
.site-footer a {
  font-size: calc(var(--unit) * 0.9);
  font-family: var(--font-mono);
  font-weight: normal;
  text-transform: uppercase;
  transition: opacity 0.3s ease;
}
.site-footer a:hover {
  opacity: 0.5;
}

/*# sourceMappingURL=base.css.map */
