html,
body,
p,
ol,
ul,
li,
dl,
dt,
dd,
blockquote,
figure,
fieldset,
legend,
textarea,
pre,
iframe,
hr,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

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

ul {
  list-style: none;
}

button,
input,
select,
textarea {
  margin: 0;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

img,
video {
  display: block;
  height: auto;
  max-width: 100%;
}

iframe {
  border: 0;
}

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

td,
th {
  padding: 0;
}

td:not([align]),
th:not([align]) {
  text-align: left;
}

html {
  height: 100%;
  font-size: 16px;
  font-size: clamp(16px, 1.5vw, 20px);
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

html.is-large {
  font-size: clamp(20px, 1.5vw, 24px);
}

article,
aside,
figure,
footer,
header,
hgroup,
section {
  display: block;
}

body,
button,
input,
select,
textarea {
  font-family: Pretendard, BlinkMacSystemFont, -apple-system, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue",
    Helvetica, Arial, sans-serif;
}

code,
pre {
  font-family: Courier, "Courier New", monospace;
  -moz-osx-font-smoothing: auto;
  -webkit-font-smoothing: auto;
}

body {
  --textColor: black;
  --backgroundColor: white;
  --borderColor: black;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  min-height: 100%;
  overflow-x: hidden;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.0125em;
  line-height: 1.5;
  word-break: keep-all;
  color: var(--textColor);
  background-color: var(--backgroundColor);
  cursor: default;
}

body.is-inverted {
  --textColor: white;
  --backgroundColor: black;
  --borderColor: white;
}

body.is-inverted img,
body.is-inverted svg,
body.is-inverted iframe,
body.is-inverted .story {
  filter: invert(1);
}

body.is-search {
  --backgroundColor: yellow;
}

body.is-inverted.is-search {
  --textColor: yellow;
  --backgroundColor: red;
  --borderColor: yellow;
}

body.is-christmas {
  --textColor: limegreen;
  --backgroundColor: darkred;
  --borderColor: limegreen;
}

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

.ml-en,
.ml-num,
.ml-punct {
  font-family: "SF Mono Medium", system-ui;
}

.panel {
  position: sticky;
  z-index: 9999;
  top: 0;
  padding: 0 1rem;
  color: var(--textColor);
  background-color: var(--backgroundColor);
}

@media (min-width: 600px) {
  .panel {
    padding: 0 2rem;
  }
}

.panel a:hover {
  opacity: 0.5;
}

.panel .container {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--borderColor);
}

.preloader {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--backgroundColor);
}

.preloader .logo {
  font-size: 20vw;
}

.logo {
  --size: 1em;
  font-family: "SF Mono Medium", system-ui;
  font-size: calc(var(--size) * 1);
  letter-spacing: calc(var(--size) * 1);
  margin-right: calc(-1 * var(--size));
}

.logo span.is-active {
  font-family: "SF Mono Heavy", system-ui;
}

.header {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  padding: 0 1rem;
  text-align: center;
}

@media (min-width: 600px) {
  .header {
    padding: 0 2rem;
  }
}

.header .container {
  padding: .75rem 0;
  border-bottom: 1px solid var(--borderColor);
}

.header-title {
  font-size: 1rem;
}

.header-nav {
  display: flex;
  padding: 1rem 0;
  border-bottom: 1px solid var(--borderColor);
}

.header-nav a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1 1 0;
  text-align: center;
  transition: flex 1s;
}

.header-nav a:hover,
.header-nav a[aria-current="page"] {
  flex: 1 1 80%;
  font-weight: bold;
}

.toggle-search {
  position: absolute;
  top: 0.75rem;
  right: 0;
  cursor: pointer;
}

.search {
  display: block;
  padding: 0 1rem;
}

@media screen and (min-width: 600px) {
  .search {
    padding: 0 2rem;
  }
}

.search.is-hidden {
  display: none;
}

.search-input {
  all: unset;
  display: block;
  width: 100%;
  padding: 0.75rem 0;
  text-align: center;
  background-color: transparent;
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid var(--borderColor);
}

.main {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.footer {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  padding: 0 1rem;
  font-size: 0.75rem;
}

@media (min-width: 600px) {
  .footer {
    padding: 0 2rem;
  }
}

.footer .container {
  padding: 1rem 0;
}

.footer-copyright span:nth-child(2),
.footer-copyright:hover span:nth-child(1) {
  display: none;
}

.footer-copyright:hover span:nth-child(2) {
  display: block;
}

.container {
  position: relative;
  max-width: 1440px;
  width: auto;
  margin: 0 auto;
}

.section {
  padding: 3rem 1rem;
}

@media (min-width: 600px) {
  .section {
    padding: 3rem 2rem;
  }
}

.section-header {
  margin-bottom: 3rem;
}

.section-filter {
  margin-top: -3rem;
  margin-bottom: 3rem;
  padding: 0.5rem 0;
  background-color: var(--backgroundColor);
  border-bottom: 1px solid var(--borderColor);
}

.newsletter {
  display: none;
  padding: 1rem;
  color: var(--textColor);
  background-color: var(--backgroundColor);
}

.title {
  font-size: 1rem;
  font-weight: 600;
  padding-right: 1em;
}

.title.is-medium {
  font-size: 1.25rem;
  line-height: 1.375;
}

.title.is-large {
  font-size: 2rem;
  line-height: 1.375;
}

.content {
  --gap: 1em;
  position: relative;
  line-height: 1.625;
}

.content.is-small {
  font-size: 0.75rem;
}

.content:not(:last-child),
.content > *:not(:last-child) {
  margin-bottom: var(--gap, 1rem);
}

.content a:not([class]) {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-decoration-style: dotted;
  text-underline-offset: 0.25em;
}

.content a:not([class]):hover {
  text-decoration-style: solid;
}

.content h1:not([class]),
.content h2:not([class]),
.content h3:not([class]),
.content h4:not([class]),
.content h5:not([class]),
.content h6:not([class]) {
  font-weight: 700;
}

.content h1:not([class]):not(:first-child) {
  margin-top: 1.5rem;
}

.content h3 + * {
  margin-top: -1rem;
}

.content ul,
.content ol {
  margin-left: 2rem;
}

.content ul {
  list-style-type: disc;
}

.content blockquote {
  margin-left: 1px;
  padding-left: 1rem;
  border-left: 1px dotted currentColor;
}

.content figure {
  margin: 0 auto;
}

.content figure:not(.float-left):not(.float-right):not(:first-child) {
  margin-top: 1.5em;
}

.content figure:not(.float-left):not(.float-right):not(:last-child) {
  margin-bottom: 1.5em;
}

.content img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
}

.content figcaption {
  margin-top: 0.5em;
  font-size: 0.75em;
}

.content .float-left,
.content .float-right {
  width: calc(50% - 1rem);
  margin-left: 1rem;
}

.content .float-left {
  float: left;
}

.content .float-right {
  float: right;
}

.content .video {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
  border-radius: 1rem;
}

.content .video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.content hr {
  margin: 1.5rem 0 !important;
  height: 0;
  border: 0;
  border-top: 1px dotted var(--borderColor);
}

.content hr:first-child {
  margin-top: 0 !important;
}

.content hr:last-child {
  margin-bottom: 0 !important;
}

.content sup,
.content sub {
  position: relative;
  font-size: 0.75em;
}

.content sup {
  top: 0.25em;
}

.content sub {
  bottom: 0.25em;
}

.footnote-ref {
  display: inline-block;
  padding: 0 0.125em;
}

.footnotes {
  margin-top: 2rem;
  font-size: 0.75em;
}

.footnotes hr {
  display: none;
}

.footnote-backref {
  display: inline-block;
  position: relative;
  left: -0.25em;
  width: 1rem;
  height: 1rem;
  color: transparent;
}

.footnote-backref::after {
  content: "↑";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  color: var(--textColor);
  background-color: var(--backgroundColor);
}

.card {
  --gap: 1rem;
  margin-bottom: 3rem;
}

.card > *:not(:last-child) {
  margin-bottom: var(--gap, 1rem);
}

.card-image {
  position: relative;
}

.image {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
}

.image.is-circle {
  border-radius: 50%;
}

.image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

.image[data-crop] img {
  object-fit: cover;
}

.image[data-ratio="1/1"] {
  aspect-ratio: 1 / 1;
}

.image[data-ratio="16/9"] {
  aspect-ratio: 16 / 9;
}

.image[data-ratio="16/10"] {
  aspect-ratio: 16 / 10;
}

.image[data-ratio="10/8"] {
  aspect-ratio: 10 / 8;
}

.image[data-ratio="21/9"] {
  aspect-ratio: 21 / 9;
}

.image[data-ratio="7/5"] {
  aspect-ratio: 7 / 5;
}

.image[data-ratio="4/3"] {
  aspect-ratio: 4 / 3;
}

.image[data-ratio="5/3"] {
  aspect-ratio: 5 / 3;
}

.image[data-ratio="3/2"] {
  aspect-ratio: 3 / 2;
}

.image[data-ratio="3/1"] {
  aspect-ratio: 3 / 1;
}

.image[data-ratio] img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.image.is-16by10 {
  aspect-ratio: 16 / 10;
}

.image.is-16-10 {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 1rem;
}

.image.is-16-10 iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.image.is-none::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
}

.image-caption {
  margin-top: 0.25rem;
  font-size: 0.75rem;
}

/* Columns */

.columns {
  --gap: 1rem;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  margin: calc(var(--gap, 1rem) / 2 * -1);
}

.columns:last-child {
  margin-bottom: calc(var(--gap, 1rem) / 2 * -1);
}

.columns:not(:last-child) {
  margin-bottom: calc(var(--gap, 1rem) / 2);
}

.column {
  width: 100%;
  padding: calc(var(--gap, 1rem) / 2);
}

.column[class*="is-"] {
  flex: none;
}

.column.is-1-12 {
  width: calc(100% / 12 * 1);
}

.column.is-2-12 {
  width: calc(100% / 12 * 2);
}

.column.is-3-12 {
  width: calc(100% / 12 * 3);
}

.column.is-4-12 {
  width: calc(100% / 12 * 4);
}

.column.is-5-12 {
  width: calc(100% / 12 * 5);
}

.column.is-6-12 {
  width: calc(100% / 12 * 6);
}

.column.is-7-12 {
  width: calc(100% / 12 * 7);
}

.column.is-8-12 {
  width: calc(100% / 12 * 8);
}

.column.is-9-12 {
  width: calc(100% / 12 * 9);
}

.column.is-10-12 {
  width: calc(100% / 12 * 10);
}

.column.is-11-12 {
  width: calc(100% / 12 * 11);
}

.column.is-12-12 {
  width: calc(100% / 12 * 12);
}

@media screen and (min-width: 600px) {
  .columns {
    --gap: 1rem;
  }

  .column {
    flex: 1 1 0;
  }

  .column.is-1-12-600 {
    width: calc(100% / 12 * 1);
  }

  .column.is-2-12-600 {
    width: calc(100% / 12 * 2);
  }

  .column.is-3-12-600 {
    width: calc(100% / 12 * 3);
  }

  .column.is-4-12-600 {
    width: calc(100% / 12 * 4);
  }

  .column.is-5-12-600 {
    width: calc(100% / 12 * 5);
  }

  .column.is-6-12-600 {
    width: calc(100% / 12 * 6);
  }

  .column.is-7-12-600 {
    width: calc(100% / 12 * 7);
  }

  .column.is-8-12-600 {
    width: calc(100% / 12 * 8);
  }

  .column.is-9-12-600 {
    width: calc(100% / 12 * 9);
  }

  .column.is-10-12-600 {
    width: calc(100% / 12 * 10);
  }

  .column.is-11-12-600 {
    width: calc(100% / 12 * 11);
  }

  .column.is-12-12-600 {
    width: calc(100% / 12 * 12);
  }

  .column-sticky {
    position: sticky;
    top: var(--gap, 1rem);
    top: 3.9375rem;
  }
}

@media screen and (min-width: 900px) {
  .columns {
    --gap: 1rem;
  }

  .column.is-1-12-900 {
    width: calc(100% / 12 * 1);
  }

  .column.is-2-12-900 {
    width: calc(100% / 12 * 2);
  }

  .column.is-3-12-900 {
    width: calc(100% / 12 * 3);
  }

  .column.is-4-12-900 {
    width: calc(100% / 12 * 4);
  }

  .column.is-5-12-900 {
    width: calc(100% / 12 * 5);
  }

  .column.is-6-12-900 {
    width: calc(100% / 12 * 6);
  }

  .column.is-7-12-900 {
    width: calc(100% / 12 * 7);
  }

  .column.is-8-12-900 {
    width: calc(100% / 12 * 8);
  }

  .column.is-9-12-900 {
    width: calc(100% / 12 * 9);
  }

  .column.is-10-12-900 {
    width: calc(100% / 12 * 10);
  }

  .column.is-11-12-900 {
    width: calc(100% / 12 * 11);
  }

  .column.is-12-12-900 {
    width: calc(100% / 12 * 12);
  }
}

@media screen and (min-width: 1200px) {
  .columns {
    --gap: 1rem;
  }

  .column.is-1-12-1200 {
    width: calc(100% / 12 * 1);
  }

  .column.is-2-12-1200 {
    width: calc(100% / 12 * 2);
  }

  .column.is-3-12-1200 {
    width: calc(100% / 12 * 3);
  }

  .column.is-4-12-1200 {
    width: calc(100% / 12 * 4);
  }

  .column.is-5-12-1200 {
    width: calc(100% / 12 * 5);
  }

  .column.is-6-12-1200 {
    width: calc(100% / 12 * 6);
  }

  .column.is-7-12-1200 {
    width: calc(100% / 12 * 7);
  }

  .column.is-8-12-1200 {
    width: calc(100% / 12 * 8);
  }

  .column.is-9-12-1200 {
    width: calc(100% / 12 * 9);
  }

  .column.is-10-12-1200 {
    width: calc(100% / 12 * 10);
  }

  .column.is-11-12-1200 {
    width: calc(100% / 12 * 11);
  }

  .column.is-12-12-1200 {
    width: calc(100% / 12 * 12);
  }
}

@media screen and (min-width: 1500px) {
  .columns {
    --gap: 1rem;
  }

  .column.is-1-12-1500 {
    width: calc(100% / 12 * 1);
  }

  .column.is-2-12-1500 {
    width: calc(100% / 12 * 2);
  }

  .column.is-3-12-1500 {
    width: calc(100% / 12 * 3);
  }

  .column.is-4-12-1500 {
    width: calc(100% / 12 * 4);
  }

  .column.is-5-12-1500 {
    width: calc(100% / 12 * 5);
  }

  .column.is-6-12-1500 {
    width: calc(100% / 12 * 6);
  }

  .column.is-7-12-1500 {
    width: calc(100% / 12 * 7);
  }

  .column.is-8-12-1500 {
    width: calc(100% / 12 * 8);
  }

  .column.is-9-12-1500 {
    width: calc(100% / 12 * 9);
  }

  .column.is-10-12-1500 {
    width: calc(100% / 12 * 10);
  }

  .column.is-11-12-1500 {
    width: calc(100% / 12 * 11);
  }

  .column.is-12-12-1500 {
    width: calc(100% / 12 * 12);
  }
}

@media screen and (min-width: 1800px) {
  .columns {
    --gap: 1rem;
  }

  .column.is-1-12-1800 {
    width: calc(100% / 12 * 1);
  }

  .column.is-2-12-1800 {
    width: calc(100% / 12 * 2);
  }

  .column.is-3-12-1800 {
    width: calc(100% / 12 * 3);
  }

  .column.is-4-12-1800 {
    width: calc(100% / 12 * 4);
  }

  .column.is-5-12-1800 {
    width: calc(100% / 12 * 5);
  }

  .column.is-6-12-1800 {
    width: calc(100% / 12 * 6);
  }

  .column.is-7-12-1800 {
    width: calc(100% / 12 * 7);
  }

  .column.is-8-12-1800 {
    width: calc(100% / 12 * 8);
  }

  .column.is-9-12-1800 {
    width: calc(100% / 12 * 9);
  }

  .column.is-10-12-1800 {
    width: calc(100% / 12 * 10);
  }

  .column.is-11-12-1800 {
    width: calc(100% / 12 * 11);
  }

  .column.is-12-12-1800 {
    width: calc(100% / 12 * 12);
  }
}

.form {
  position: relative;
}

.fields {
  display: flex;
  gap: .5rem;
}

.fields .field {
  flex: 1 1 0;
}

.field {
  gap: 0.5rem;
}

.field:not(:last-child) {
  margin-bottom: 1rem;
}

.field-help {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: var(--textColor);
}

.label {
  display: block;
  font-size: .75rem;
  font-weight: 700;
}

.label:not(:last-child) {
  margin-bottom: 0.25rem;
}

.control {
  box-sizing: border-box;
  clear: both;
  font-size: 1rem;
  position: relative;
  text-align: inherit;
}

.help {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.75rem;
}

.input {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  align-items: center;
  border: 1px solid transparent;
  display: inline-flex;
  padding: .625rem;
  font-size: 1rem;
  justify-content: flex-start;
  position: relative;
  vertical-align: top;
  max-width: 100%;
  width: 100%;
  color: var(--textColor);
  background-color: var(--backgroundColor);
  border: 1px solid var(--borderColor);
  border-radius: 3em;
  outline: none;
}

.input[type="checkbox"] {
  appearance: none;
  display: inline-block;
  position: relative;
  top: .125em;
  width: 1rem;
  height: 1rem;
  margin-right: .25rem;
  cursor: pointer;
  position: relative;
}

.input[type="checkbox"]:checked {
  background-color: white;
}

.input[type="checkbox"]:checked::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  right: 4px;
  bottom: 4px;
  border-radius: 50%;
  background-color: black;
}

.input[type="checkbox"] ~ .label {
  display: inline;
}

.textarea {
  display: block;
  width: 100%;
  font-size: 1rem;
  line-height: 1.625;
  min-height: 6rem;
  padding: 0.75rem;
  color: var(--textColor);
  background-color: var(--backgroundColor);
  border: 1px solid var(--borderColor);
  border-radius: 1rem;
  outline: none;
  resize: none;
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
}

.buttons .button {
  flex: 1 1 0;
}

.button {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  align-items: center;
  border: 1px solid transparent;
  box-shadow: none;
  display: inline-flex;
  font-size: 1rem;
  font-weight: 700;
  justify-content: flex-start;
  line-height: 1.5;
  padding: 0.5rem 1rem;
  position: relative;
  vertical-align: top;
  color: var(--textColor);
  background-color: var(--backgroundColor);
  border: 1px solid var(--borderColor);
  border-radius: 3em;
  cursor: pointer;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
}

.button:hover {
  color: var(--backgroundColor);
  background-color: var(--textColor);
}

.apply.is-desktop {
  display: none;
}

.apply.is-mobile {
  position: sticky;
  display: flex;
  gap: .25rem;
  bottom: 0;
  margin: 0 -1rem;
  padding: 1rem;
  background-image: linear-gradient(
    to bottom,
    transparent 50%,
    var(--backgroundColor) 50%
  );
}

@media screen and (min-width: 900px) {
  .apply.is-desktop {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    margin-top: .5rem;
  }

  .apply.is-mobile {
    display: none;
  }
}

.button-apply {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: .625rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 3em;
  color: var(--textColor);
  background-color: var(--backgroundColor);
}

.button-apply:hover {
  color: var(--backgroundColor);
  background-color: var(--textColor);
}

.breadcrumb {
  font-size: 1rem;
  white-space: nowrap;
}

.breadcrumb ol {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.breadcrumb li {
  align-items: center;
  display: flex;
}

.breadcrumb a {
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 0 0.75em;
}

.breadcrumb li:first-child a {
  padding-left: 0;
}

.breadcrumb a.is-active {
  color: #363636;
  cursor: default;
  pointer-events: none;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .25rem;
  font-size: 1rem;
}

.tags.is-small .tag {
  font-size: .75rem;
}

.tag {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: .125em .625em;
  font-family: inherit;
  font-size: 1em;
  color: var(--textColor);
  background-color: var(--backgroundColor);
  border: 1px solid var(--borderColor);
  border-radius: 3em;
}

a.tag,
button.tag {
  cursor: pointer;
}

.tag.is-small {
  font-size: .75rem;
}

a.tag:hover,
button.tag:hover,
a.tag.is-active,
button.tag.is-active {
  color: var(--backgroundColor);
  background-color: var(--textColor);
  border: 1px solid var(--borderColor);
}

.block {
  position: relative;
}

.block:not(:last-child) {
  margin-bottom: 1.5rem;
}

.box {
  display: block;
  padding: 2rem 1rem;
  border: 1px solid var(--borderColor);
}

.pagination {
  position: relative;
}

.pagination ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.pagination a,
.pagination span {
  display: block;
  margin: -0.5rem;
  padding: 0.5rem;
}

.pagination span {
  font-weight: 500;
}

.pagination a:hover,
.pagination a[aria-current="page"] {
  font-weight: 700;
}

.gap {
  --gap: 1rem;
}

.gap > *:not(:last-child) {
  margin-bottom: var(--gap, 1rem);
}

.swiper {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
}

.swiper.is-circle {
  border-radius: 50%;
}

.swiper-slide {
  width: 100%;
}

.swiper-slide.is-3-12 {
  width: calc(100% / 12 * 3);
}

.swiper-slide.is-4-12 {
  width: calc(100% / 12 * 4);
}

.swiper-slide.is-6-12 {
  width: 50%;
}



.image {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.nav {
  position: sticky;
  z-index: 999;
  top: 0;
  padding: 0 1rem;
  color: var(--textColor);
  background-color: var(--backgroundColor);
}

@media (min-width: 600px) {
  .nav {
    padding: 0 2rem;
  }
}

.nav .container {
  padding: 0.5rem 0;
  border-bottom: 1px solid currentColor;
}

.select {
  position: relative;
  border: 1px solid var(--borderColor);
  border-radius: 3em;
  overflow: hidden;
}

.select.is-active {
  color: var(--backgroundColor);
  background-color: var(--textColor);
}

.select::after {
  content: "↓";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0.5rem;
  pointer-events: none;
  color: inherit;
}

.select select {
  appearance: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0.125rem 2rem 0.125rem 0.625rem;
  font: inherit;
  color: inherit;
  background-color: transparent;
  border: 0;
  outline: 0;
  cursor: pointer;
}

.iframe {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background-color: #00000010;
  border: 1px solid #00000020;
  border-radius: 1rem;
}

.iframe.is-10by16 {
  aspect-ratio: 10 / 16;
}

.iframe.is-16by10 {
  aspect-ratio: 16 / 10;
}

@media screen and (min-width: 900px) {
  .iframe.is-10by16-900 {
    aspect-ratio: 10 / 16;
  }

  .iframe.is-16by10-900 {
    aspect-ratio: 16 / 10;
  }
}

.iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.iframe-link {
  display: block;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: .25rem;
  font-size: .75rem;
}

.screensaver {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: var(--backgroundColor);
}

.screensaver.is-hidden {
  display: none;
}

.progress-bar {
  position: sticky;
  z-index: 9999;
  bottom: 0;
  margin-top: 1rem;
  padding-bottom: 1rem;
  background-image: linear-gradient(
    to bottom,
    transparent 50%,
    var(--backgroundColor) 50%
  );
}

.progress {
  position: relative;
  width: 100%;
  height: 2.5rem;
  overflow: hidden;
  background-color: var(--backgroundColor);
  border: 1px solid var(--borderColor);
  border-radius: 3em;
}

.progress p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  font-size: 0.875rem;
  text-align: center;
  color: white;
  mix-blend-mode: difference;
}

.progress div {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: var(--textColor);
  transition: width 1s;
}

.story {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding: 1rem;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 1rem;
}

.story::-webkit-scrollbar {
  display: none;
}

.story-main {
  flex: 1 1 auto;
}

.story-footer {
  flex: 0 0 auto;
  font-size: 0.875rem;
  text-align: right;
}

.textarea {
  aspect-ratio: 1 / 1;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.list {
  margin-top: -1rem;
}

.list-item:not(:last-child) {
  border-bottom: 1px solid var(--borderColor);
}

.list-item a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .5rem 0;
}

.list-item-image {
  flex: 0 0 1.5rem;
}

.list-item-title {
  flex: 1 1 auto;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.list-item-date {
  flex: 0 0 auto;
  text-align: right;
  font-variant-numeric: tabular-nums;
}