/* =========================================
   Base Styles
   ========================================= */

html {
  min-height: 100%;
}

body {
  overflow-x: hidden;
  margin: auto;
  padding: 16px;
  max-width: 800px;
  line-height: 1.3;
  font-size: 13px;
  font-weight: 300;
  font-family: "neue-haas-unica", "Noto-Sans-JP", sans-serif;
  font-style: normal;
  text-align: center;
  color: white;
  overflow: visible; /* スクロール可能 */
  transition: color 0.001s ease;
}

/* =========================================
   Header (縦ヘッダー)
   ========================================= */

.header {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 15px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  background-image: linear-gradient(to bottom, white, #2ea2c5);
  color: blue;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0.2px;
  z-index: 10;
}

/* =========================================
   Typography & Links
   ========================================= */

h1, h2, h3, h4 {
  font-weight: 300;
  color: #ffffff;
}

h1 {
  padding-bottom: 10px;
  margin-bottom: 20px;
}

p, abbr {
  color: white;
  letter-spacing: -0.2px;
  font-weight: 300;
}

p {
  font-size: 15px;
  line-height: 1.3;
}

a {
  color: inherit;
  text-decoration: underline;
  opacity: 0.9;
  font-weight: bolder;
  font-style: oblique;
}

a:link, a:visited {
  font-weight: 500;
  font-style: normal;
}

a:hover, a:active {
  text-decoration: none;
  color: black;
  opacity: 1;
}

a.jacket {
  color: transparent;
  background-color: transparent;
  text-decoration: none;
}

a.jacket:hover {
  filter: contrast(3) saturate(1000%) grayscale(100%);
  mix-blend-mode: screen;
}

/* =========================================
   Components
   ========================================= */

.container {
  max-width: 900px;
  text-align: left;
}

.jacket-wrapper {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  text-align: center;
}

.jacket-wrapper img {
  max-width: 90vw;
  height: auto;
}

.card-container {
  display: flex;
  max-width: 750px;
  height: 200px;
}

.border-line {
  border-bottom: solid 0.5px white;
}

ol {
  padding-left: 0;
  list-style-position: inside;
  text-align: left;
}

ol li, ol ul {
  margin: 5px 0;
  padding-left: 1.2em;
  text-indent: -1.2em;
}

.back {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 3;
}

footer {
  position: fixed;
  bottom: 0;
  font-size: 0.8em;
  line-height: 1;
}

/* =========================================
   Schedules
   ========================================= */

.schedule {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.event {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.date { flex-basis: 68px; }
.title { flex-basis: 65%; }
.name { flex-basis: 30%; text-align: right; }

/* =========================================
   Media Queries
   ========================================= */

@media screen and (max-width: 600px) {
  body {
    font-size: 12px;
    padding-left: 35px;
    padding-right: 35px;
    box-sizing: border-box;
  }

  p {
    font-size: 11px;
    line-height: 1rem;
  }

  h1 {
    font-size: 2em;
  }

  .header {
    width: 3px;
  }

  .event {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 8px;
  }

  .date, .title, .name {
    flex-basis: auto;
    text-align: left;
  }

  .name {
    font-size: 0.9em;
    color: #ffffffaa;
  }
}

@media screen and (max-width: 600px) {
  img {
    width: 97%;
    height: 97%;
  }
}
