*,
*:after,
*:before {
  background: none repeat scroll 0 0 transparent;
  border: medium none;
  border-spacing: 0;
  list-style: none outside none;
  margin: 0;
  padding: 0;
  text-decoration: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@font-face {
  font-family: "Aldine 721";
  src: url("../fonts/ald721n-web.eot?#iefix");
  src: url("../fonts/ald721n-web.eot?#iefix") format("eot"),
    url("../fonts/ald721n-web.woff2") format("woff2"),
    url("../fonts/ald721n-web.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Aldine 721 Italic";
  src: url("../fonts/ald721i-web.eot?#iefix");
  src: url("../fonts/ald721i-web.eot?#iefix") format("eot"),
    url("../fonts/ald721i-web.woff2") format("woff2"),
    url("../fonts/ald721i-web.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'iconfont';
  src: url('../fonts/iconfont.eot');
  src: url('../fonts/iconfont.eot?#iefix') format('embedded-opentype'),
    url('../fonts/iconfont.woff2') format('woff2'),
    url('../fonts/iconfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

html {
  font-family: "Aldine 721", Times, "Times New Roman", serif;
  font-size: 16px;
  line-height: 1.1;
  font-weight: normal;
  letter-spacing: 0;
  word-spacing: -0.05rem;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media screen and (min-width: 960px) {
  html {
    font-size: 18px;
  }
}

@media screen and (min-width: 1600px) {
  html {
    font-size: 20px;
  }
}

@media screen and (min-width: 2240px) {
  html {
    font-size: 22px;
  }
}

html,
body {
  height: 100%;
}

.black {
  color: black;
  background: white;
}

.archive {
  color: white;
  background: black;
}

.fullscreen .header,
.fullscreen .header-zoom,
.fullscreen .aside,
.fullscreen .caption {
  color: white;
  text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.3);
  -webkit-transition: all 250ms;
  -o-transition: all 250ms;
  transition: all 250ms;
}

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

a:hover,
a:hover p {
  color: rgb(160, 160, 160);
  text-shadow: none;
}

a:active,
a:active p {
  color: rgb(200, 200, 200);
}

a img:active {
  opacity: 0;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}

h1,
h2,
h3,
h4,
b,
strong {
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
}

i,
em,
.italic {
  font-family: "Aldine 721 Italic";
  letter-spacing: 0.025rem;
  font-style: normal;
}

img {
  display: block;
  max-width: 100%;
}

img[data-sizes="auto"] {
  display: block;
  width: 100%;
}

.lazyload,
.lazyloading {
  opacity: 0;
}

.lazyloaded {
  opacity: 1;
  -webkit-transition: opacity 250ms;
  -o-transition: opacity 250ms;
  transition: opacity 250ms;
}

input,
button {
  font-family: "Aldine 721", Times, "Times New Roman", serif;
  line-height: 1.1;
  letter-spacing: 0.01rem;
  font-size: 1rem;
  cursor: pointer;
}

noscript {
  font-size: 1.5rem;
  color: rgb(0, 204, 102);
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 1000;
  pointer-events: none;
}

/* Grid */

.grid {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}

.grid .image,
.grid .video {
  width: calc(50% - 0.25rem);
  margin: 0.125rem;
}

.grid .text {
  width: calc(100% - 0.25rem);
  margin: 0.125rem;
}

@media screen and (min-width: 320px) {
  .grid .image,
  .grid .video {
    width: calc(25% - 0.25rem);
  }
}

@media screen and (min-width: 960px) {
  .grid .image,
  .grid .video {
    width: calc(20% - 0.25rem);
  }
  .grid .text {
    margin: 0.125rem 20%;
  }
}

@media screen and (min-width: 1280px) {
  .grid .image,
  .grid .video {
    width: calc(16.666% - 0.25rem);
  }
  .grid .text {
    margin: 0.125rem 16.666%;
  }
}

@media screen and (min-width: 1600px) {
  .grid .image,
  .grid .video {
    width: calc(14.285% - 0.25rem);
  }
  .grid .text {
    margin: 0.125rem 14.285%;
  }
}

@media screen and (min-width: 1920px) {
  .grid .image,
  .grid .video {
    width: calc(12.5% - 0.25rem);
  }
  .grid .text {
    margin: 0.125rem 12.5%;
  }
}

@supports (display: grid) {
  .grid .image,
  .grid .video {
    width: auto;
    margin: 0;
  }
  .grid .text {
    width: auto;
    margin: 0;
  }
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 0.25rem;
  align-items: start;
  grid-auto-flow: dense;
}

@media screen and (min-width: 320px) {
  .grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media screen and (min-width: 960px) {
  .grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media screen and (min-width: 1280px) {
  .grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

@media screen and (min-width: 1600px) {
  .grid {
    grid-template-columns: repeat(7, 1fr);
  }
}

@media screen and (min-width: 1920px) {
  .grid {
    grid-template-columns: repeat(8, 1fr);
  }
}

/* Header, Navigation */

.header.grid {
  flex-direction: column;
  padding: 0.2rem 0.25rem;
  grid-column: 1/-1;
  grid-gap: 0;
  background: white;
  margin-bottom: 0.7rem;
}

.archive .header.grid {
  background: black;
}

.header-sitetitle {
  grid-column: 1/-1;
  background: white;
  z-index: 100;
}

.archive .header-sitetitle {
  background: black;
}

.menu-pages {
  padding-top: 1.1rem;
  grid-column: 1/-1;
}

.aside {
  position: fixed;
  top: 0;
  right: 0;
  padding: 0.2rem 0.5rem 0.2rem 0.25rem;
  z-index: 100;
  word-spacing: 0;
  white-space: nowrap;
}

.aside a {
  color: rgb(0, 204, 102);
}

.aside a:active {
  color: rgb(200, 200, 200);
}

.aside a::after {
  font-size: 1rem;
  color: rgb(0, 204, 102);
  font-family: "iconfont";
  content: "\E00C";
  display: inline-block;
}

.aside a:hover::after {
  color: rgb(0, 204, 102);
  animation: archivelink 500ms ease-out;
}

.aside a:active::after {
  color: rgb(200, 200, 200);
}

@keyframes archivelink {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(1turn);
  }
}

@media screen and (min-width: 640px) {
  .header.grid {
    grid-gap: 0.25rem;
  }
  @supports (display: grid) {
    .header-sitetitle {
      position: fixed;
      top: 0;
      left: 0;
      padding: 0.2rem 0.25rem;
      grid-column: 1/2;
    }
    .menu-pages {
      padding-top: 0;
      grid-column: 2/-1;
    }
  }
}

.header-zoom.grid {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 0.2rem 0.25rem;
  grid-gap: 0;
  z-index: 100;
}

.header-sitetitle-zoom {
  display: none;
}

.header-pagetitle-zoom {
  grid-column: 1/-2;
}

.header-backlink-zoom {
  position: fixed;
  top: 0;
  right: 0;
  padding: 0.2rem 0.25rem;
}

@media screen and (min-width: 640px) {
  .header-zoom.grid {
    grid-gap: 0.25rem;
  }
  @supports (display: grid) {
    .header-sitetitle-zoom {
      display: block;
      grid-column: 1/2;
    }
    .header-pagetitle-zoom {
      grid-column: 2/-1;
    }
  }
}

.counter-box {
  word-spacing: -0.1rem;
  white-space: nowrap;
}

/* Main, Index */

main {
  hyphens: auto;
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  -webkit-hyphens: auto;
}

.donthyphenate {
  hyphens: none;
  -ms-hyphens: none;
  -moz-hyphens: none;
  -webkit-hyphens: none;
}

.index-container {
  padding: 0 0.125rem 1.1rem 0.125rem;
}

@supports (display: grid) {
  .index-container {
    padding: 0 0.25rem 1.1rem 0.25rem;
  }
}

.index-pagetitle {
  display: block;
  padding: 0.2rem 0.125rem;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  background: white;
  z-index: 10;
}

@supports (display: grid) {
  .index-pagetitle {
    padding: 0.2rem 0;
  }
}

.archive .index-pagetitle {
  background: black;
}

@media screen and (min-width: 640px) {
  .index-pagetitle {
    display: grid;
    top: 0;
    grid-gap: 0.25rem;
  }
}

.index-pagetitle-first {
  display: none;
}

.index-pagetitle-second {
  grid-column: 1/-1;
}

@media screen and (min-width: 640px) {
  .index-pagetitle-second {
    grid-column: 2/-1;
  }
  .index-pagetitle-first {
    display: grid;
  }
}

.grid .image,
.grid .video {
  background: rgb(245, 245, 245);
}

.archive .grid .image,
.archive .grid .video {
  background: rgb(30, 30, 30);
}

.grid div.big {
  grid-column: span 2;
}

.grid div img {
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.grid .text {
  grid-column: 1/-1;
}

.grid .text {
  grid-column: 1/-1;
}

.index-pagetitle + .grid > .text:first-child {
  padding-top: 1.1rem;
}

.grid .text p {
  margin-bottom: 1.1rem;
}

@media screen and (min-width: 960px) {
  .grid .text {
    grid-column: 2/-2;
  }
}

/* Marquee */

.infobox {
  position: fixed;
  width: 100%;
  z-index: 100;
  bottom: 0;
  color: rgb(0, 204, 102);
  background: rgb(245, 245, 245);
}

.text-container {
  padding: 0.2rem 0.25rem 0.25rem 0.25rem;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.text-marquee {
  width: 500vw;
  overflow: hidden;
  animation: marquee 20s linear infinite;
  animation-delay: 500ms;
}

.text-marquee:hover {
  animation-play-state: paused;
}

.text-marquee span {
  float: left;
  width: 50%;
}

@media screen and (min-width: 260px) {
  .text-marquee {
    width: 400vw;
  }
}

@media screen and (min-width: 450px) {
  .text-marquee {
    width: 300vw;
  }
}

@media screen and (min-width: 640px) {
  .text-marquee {
    width: 200vw;
  }
}

@keyframes marquee {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Zoom */

.flickity-enabled {
  position: relative;
}

.flickity-enabled:focus {
  outline: none;
}

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.zoom-container {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.zoom-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  justify-content: center;
  align-items: center;
}

.zoom-slide {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  justify-content: center;
  align-items: center;
}

.zoom-linktitle a {
  font-size: 1.5rem;
  text-align: center;
  width: 100%;
  height: 100%;
  padding: 0.25rem;
  display: flex;
  flex-direction: column;
  position: relative;
  justify-content: center;
  align-items: center;
  background: white;
}

.zoom-linktitle a:hover {
  color: black;
}

.archive .zoom-linktitle a {
  background: black;
}

.archive .zoom-linktitle a:hover {
  color: white;
}

.zoom-slide,
.zoom-slide.small {
  margin: 0 auto;
  width: calc(100% - 0.5rem);
  height: 50%;
}

.zoom-slide.landscape,
.zoom-slide.small.landscape {
  width: calc(100% - 0.5rem);
  height: 40%;
}

@media screen and (min-width: 640px) {
  .zoom-slide,
  .zoom-slide.small {
    width: 50%;
    height: 66%;
  }
  .zoom-slide.landscape,
  .zoom-slide.small.landscape {
    width: 66%;
    height: 50%;
  }
}

.zoom-slide.medium,
.zoom-slide.big,
.zoom-slide.text {
  width: 100%;
  height: 100%;
}

.zoom-slide.image img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.zoom-slide.big {
  background: rgb(235, 235, 235);
}

.archive .zoom-slide.big {
  background: rgb(235, 235, 235);
}

.zoom-slide.big img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  mix-blend-mode: multiply;
}

.zoom-slide video {
  width: 100vw;
  height: 100vh;
  -o-object-fit: cover;
  object-fit: cover;
}

.zoom-slide.text {
  padding: 3.3rem 0.25rem;
  overflow-y: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: row;
  margin: 0 auto;
  height: auto;
}

@media screen and (min-width: 960px) {
  .zoom-slide.text {
    padding: 3.3rem calc(20% + 0.25rem);
  }
}

@media screen and (min-width: 1280px) {
  .zoom-slide.text {
    padding: 3.3rem calc(16.666% + 0.25rem);
  }
}

@media screen and (min-width: 1600px) {
  .zoom-slide.text {
    padding: 3.3rem calc(14.285% + 0.25rem);
  }
}

@media screen and (min-width: 1920px) {
  .zoom-slide.text {
    padding: 3.3rem calc(12.5% + 0.25rem);
  }
}

.zoom-slide.text p {
  margin-bottom: 1.1rem;
  width: 100%;
}

.zoom-slide.text p {
  font-size: 1.125rem;
}

@media screen and (min-width: 1920px) {
  .zoom-slide.text p {
    font-size: 1.25rem;
  }
}

.zoom-slide .columns {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.zoom-slide .column {
  width: 100%;
}

@media screen and (min-width: 450px) {
  .zoom-slide .column {
    width: 50%;
  }
}

.zoom-slide.interview p {
  font-size: 1.125rem;
  width: 100%;
  margin-right: 0;
}

.zoom-slide.interview p strong {
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  display: block;
  width: 100%;
  margin-left: 0;
}

@media screen and (min-width: 1920px) {
  .zoom-slide.interview p,
  .zoom-slide.interview p strong {
    font-size: 1.25rem;
  }
}

@media screen and (min-width: 640px) {
  .zoom-slide.interview p {
    margin-right: 6rem;
  }
  .zoom-slide.interview p strong {
    margin-left: 6rem;
  }
}

@media screen and (min-width: 1280px) {
  .zoom-slide.interview p {
    margin-right: 12rem;
  }
  .zoom-slide.interview p strong {
    margin-left: 12rem;
  }
}

@media screen and (min-width: 1600px) {
  .zoom-slide.interview p {
    margin-right: 18rem;
  }
  .zoom-slide.interview p strong {
    margin-left: 18rem;
  }
}

.caption {
  position: fixed;
  bottom: 0.25rem;
  left: 0.25rem;
  right: 0.25rem;
  z-index: 100;
  text-align: left;
}

/* Plyr */

:root {
  --plyr-color-main: white;
  --plyr-control-spacing: 0.333rem;
  --plyr-video-controls-background: none;
  --plyr-video-control-color: white;
  --plyr-video-control-color-hover: white;
  --plyr-video-control-background-hover: none;
  --plyr-progress-loading-size: 0;
  --plyr-video-progress-buffered-background: white;
  --plyr-range-thumb-background: white;
  --plyr-range-thumb-shadow: none;
  --plyr-range-thumb-active-shadow-width: 0;
  --plyr-range-track-height: 1px;
  --plyr-range-fill-background: white;
  --plyr-video-range-thumb-active-shadow-color: none;
  --plyr-tooltip-background: none;
  --plyr-tooltip-padding: none;
  --plyr-tooltip-arrow-size: 0;
  --plyr-tooltip-radius: 0;
  --plyr-tooltip-color: white;
  --plyr-tooltip-shadow: none;
  --plyr-font-size-time: 1rem;
  --plyr-line-height: 1;
}

.plyr {
  -webkit-font-smoothing: antialiased;
}

.plyr__poster {
  background-size: cover;
}

.plyr__controls {
  font-size: 1rem;
}

.plyr__progress__container {
  padding: 0 0.25rem;
}

.plyr__control.plyr__control--overlaid {
  font-size: 1.5rem;
  border: 1px solid white;
  border-radius: 0.333rem;
  padding: 0.333rem 0.9rem 0.333rem 1rem;
  opacity: 1;
}

.plyr__control.plyr__control--overlaid:hover {
  opacity: 0.75;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}

.plyr__control.plyr__control--overlaid:active {
  opacity: 0.5;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}

.plyr__tooltip {
  margin-bottom: 0.2rem;
}
