@charset "UTF-8";
@font-face {
  font-family: Times;
  src: url("../type/TimesTenLTStd-Roman.woff");
}
:root {
  --banner: 10rem;
  --main: 2.8rem;
  --small: 2.1rem;
}
@media (max-width: 720px) {
  :root {
    --banner: 14.5rem;
  }
}

html {
  font-size: 0.65vw;
}
@media (max-width: 720px) {
  html {
    font-size: 6px;
  }
}

body {
  font-family: "Times", serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: red;
  line-height: 1.1;
  margin: 0.75em;
  background: white;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-variant-numeric: oldstyle-nums;
  transition: transform 0.5s ease-in-out;
}
body.about-visible {
  transform: translateX(-25%);
}
@media (max-width: 720px) {
  body.about-visible {
    transform: translateX(-75%);
  }
}

figure {
  margin: 0;
}

audio {
  display: none;
}

header {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
@media (max-width: 720px) {
  header {
    padding-bottom: 2.2em;
  }
}
header .extras {
  color: red;
  font-size: var(--main);
}
header .extras .about-trigger:hover {
  color: red;
  cursor: pointer;
}

footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 10em;
  color: red;
  font-size: var(--main);
}
footer a {
  color: red;
  text-decoration: none;
  position: relative;
}
footer a:before {
  content: "";
  width: 18px;
  height: 18px;
  padding-right: 4px;
  background: url("../img/arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left top;
  display: inline-block;
}
@media (max-width: 720px) {
  footer a:before {
    width: 11px;
    height: 11px;
  }
}
footer a:hover {
  color: red;
}
footer a:hover:before {
  opacity: 0.35;
}

.banner {
  font-size: var(--banner);
  width: calc(100% - 1.5em);
  text-align: center;
  line-height: 0.9;
  font-weight: normal;
  letter-spacing: -0.15rem;
  padding-top: 6px;
  position: fixed;
  top: 0.35em;
  left: 0.35em;
  z-index: 10;
}
@media (max-width: 720px) {
  .banner {
    letter-spacing: -5px;
    grid-template-columns: 1fr;
    line-height: 0.9;
  }
}

.container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 1em;
  height: auto;
}
@media (max-width: 720px) {
  .container {
    display: flex;
    flex-direction: column;
  }
}

h1,
.about p,
.about-trigger {
  color: red;
  font-size: var(--main);
  margin: 0;
}

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 1em;
  padding-top: 6.6em;
  position: relative;
  transition: all 0.5s ease-in-out;
}
.about.visible {
  display: grid;
}
.about .about-trigger {
  font-size: var(--small);
}
.about .about-trigger:hover {
  color: #474747;
  cursor: pointer;
}
.about p {
  font-size: var(--main);
}
@media (max-width: 720px) {
  .about p {
    font-size: var(--small);
  }
}
.about p + p {
  margin-top: 1.1em;
}

.pad {
  padding-left: 8px;
}

.img {
  width: 100%;
  height: 100vh;
  position: relative;
  border-radius: 0.5em;
  overflow: hidden;
}
.img img {
  width: 110%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.img img:not(.current-img) {
  display: none;
}

ol {
  list-style: none;
  counter-reset: num;
  margin: 0;
  padding: 0;
  position: relative;
}
@media (max-width: 720px) {
  ol {
    margin: 0;
    padding: 0 0 2.2em 0;
  }
}
ol .heading {
  font-size: var(--main);
  display: block;
  font-variant: small-caps;
}
ol li {
  color: red;
  font-size: var(--main);
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  text-align: left;
}
ol li .title {
  grid-column: span 10;
}
ol li:before {
  content: counter(num, decimal-leading-zero) ". ";
  counter-increment: num;
  grid-column: span 1;
}
@media (max-width: 720px) {
  ol li {
    padding: 0;
  }
}
ol li:hover {
  color: red;
  cursor: pointer;
}

.audio_trigger {
  transition: color 0.5s ease-in-out;
}
.audio_trigger figure {
  display: none;
  transition: all 0.25s ease-in-out;
}
.audio_trigger:hover .title:before {
  content: "→";
  padding-right: 2px;
}
.audio_trigger.current .title:before {
  content: "→";
  padding-right: 2px;
}
.audio_trigger.current figure {
  display: block;
  width: 280px;
  position: absolute;
  left: -295px;
  top: 0;
}
.audio_trigger.current figure:hover {
  width: calc(50vw - 1em);
  left: -49.25vw;
  z-index: 100;
}
.audio_trigger.current figure img {
  max-width: 100%;
  display: block;
}
.audio_trigger:not(.current) {
  color: red;
}

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