html {
  background: #050607 url(https://lemmon-photo.com/css/bg/hd/bg_042.jpg) no-repeat center center fixed;
  background-size: cover;
}

.site-page {
  --site-bg: #050607;
  --site-surface: #111317;
  --site-surface-raised: #17191d;
  --site-heading: #f2eee6;
  --site-text: #ddd9d1;
  --site-muted: #9b9891;
  --site-faint: #77746e;
  --site-border: #34363b;
  --site-link: #82afe2;
  margin: 0;
  background: rgba(5, 6, 7, 0.91);
  color: var(--site-text);
  font-family: "Noto Serif JP", serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.9;
}

.site-page *,
.site-page *::before,
.site-page *::after {
  box-sizing: border-box;
}

.site-page strong {
  position: static;
  top: auto;
  left: auto;
  padding: 0;
  background: transparent;
  color: inherit;
}

.site-page #wrap {
  width: min(960px, 100%);
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.74);
}

.site-main {
  padding: 3rem 3.75rem 6rem;
}

.page-kicker,
.principle-number {
  margin: 0 0 0.8rem;
  color: var(--site-faint);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
}

.site-page h1,
.site-page h2,
.site-page h3 {
  color: var(--site-heading);
  text-wrap: balance;
}

.site-page a {
  color: var(--site-link);
}

.home-hero {
  max-width: 760px;
  padding: 4rem 0 5.5rem;
}

.home-hero h1 {
  margin: 0;
  font-size: clamp(2.5rem, 6vw, 3.6rem);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.035em;
}

.home-lead {
  max-width: 34em;
  margin: 2rem 0 0;
  color: var(--site-text);
  font-size: 1.05rem;
  line-height: 2;
}

.site-primary-link,
.schedule-detail-link {
  display: inline-flex;
  min-height: 48px;
  margin-top: 2rem;
  padding: 0.7rem 1.2rem;
  border-radius: 6px;
  background: var(--site-heading);
  color: #111317 !important;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  align-items: center;
}

.site-primary-link:hover,
.schedule-detail-link:hover {
  background: #fff;
}

.home-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.5rem;
  padding: 3rem 0;
}

.home-principles article h2 {
  margin: 0 0 1rem;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.6;
}

.home-principles article p:last-child {
  margin: 0;
  color: var(--site-muted);
  font-size: 0.9rem;
  line-height: 1.9;
}

/* Schedule */
.schedule-heading {
  max-width: 760px;
  padding: 3rem 0 4.5rem;
}

.schedule-heading h1 {
  margin: 0 0 1.25rem;
  font-size: clamp(2.25rem, 5vw, 3rem);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.035em;
}

.schedule-heading > p:not(.page-kicker):not(.updatetime) {
  max-width: 38em;
  margin: 0;
  color: var(--site-text);
  font-size: 1rem;
}

.site-page .updatetime {
  margin: 1.5rem 0 0;
  color: var(--site-faint);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.78rem;
  text-align: left;
}

.schedule-list {
  display: grid;
  gap: 4rem;
}

.schedule-card {
  overflow: hidden;
  border-radius: 12px;
  background: var(--site-surface);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.24);
}

.schedule-image {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #0a0b0d;
}

.schedule-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: transform 400ms ease, opacity 300ms ease;
}

.schedule-image:hover img {
  opacity: 0.92;
  transform: scale(1.015);
}

.schedule-card-content {
  padding: 2.25rem 2.5rem 2.5rem;
}

.schedule-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  align-items: center;
}

.schedule-meta time {
  color: var(--site-heading);
  font-family: "Noto Serif JP", serif;
  font-size: 1.35rem;
  font-weight: 600;
}

.schedule-status {
  display: inline-block;
  padding: 0.16rem 0.6rem;
  border-radius: 999px;
  background: rgba(130, 175, 226, 0.11);
  color: var(--site-link);
  font-size: 0.72rem;
  font-weight: 500;
}

.schedule-status-muted {
  background: rgba(255, 255, 255, 0.055);
  color: var(--site-muted);
}

.schedule-card h2 {
  margin: 0;
  font-size: clamp(1.65rem, 3.8vw, 2rem);
  font-weight: 600;
  line-height: 1.55;
}

.schedule-card h2 a {
  color: var(--site-heading);
  text-decoration: none;
}

.schedule-performer {
  margin: 0.35rem 0 1.25rem;
  color: var(--site-muted);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.9rem;
}

.schedule-card-content > p:not(.schedule-performer) {
  max-width: 38em;
  color: var(--site-text);
}

.schedule-card-planning {
  box-shadow: none;
  background: rgba(17, 19, 23, 0.72);
}

.schedule-card-planning .schedule-card-content {
  padding-block: 2rem;
}

.schedule-update-note {
  margin: 1.75rem 0 0;
  color: var(--site-muted);
  font-size: 0.86rem;
}

.partner-note {
  margin-top: 5rem;
  padding: 1.25rem 1.4rem;
  border-radius: 8px;
  background: rgba(17, 19, 23, 0.58);
  color: var(--site-muted);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.82rem;
  line-height: 1.8;
}

.partner-note p {
  margin: 0;
}

/* Journal */
.site-page .latest-posts.journal-section {
  max-width: none;
  margin: 6rem 0 0;
  padding: 0;
  font-family: "Noto Serif JP", serif;
}

.journal-section > h2 {
  margin: 0;
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: 0.035em;
}

.section-intro {
  margin: 0.65rem 0 2rem;
  color: var(--site-muted);
  font-size: 0.88rem;
}

.site-page #posts-container {
  display: grid;
  gap: 0.6rem;
}

.site-page .post {
  display: flex;
  gap: 1rem;
  min-height: 92px;
  margin: 0;
  padding: 0.75rem;
  border-radius: 7px;
  background: transparent;
  align-items: center;
}

.site-page .post:hover {
  background: rgba(255, 255, 255, 0.035);
}

.site-page .thumbnail-link {
  flex: 0 0 76px;
}

.site-page .post-thumbnail {
  display: block;
  width: 76px !important;
  height: 76px !important;
  border-radius: 5px;
  object-fit: cover !important;
}

.site-page .post h3 {
  margin: 0 0 0.3rem;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.65;
}

.site-page .post h3 a {
  color: var(--site-text);
}

.site-page .date,
.site-page .loading,
.site-page .journal-error {
  color: var(--site-faint);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.75rem;
}

.site-page #footer {
  padding: 2.5rem 3rem;
  color: var(--site-faint);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.72rem;
  text-align: center;
}

@media (max-width: 800px) {
  .site-main {
    padding-inline: 2rem;
  }
}

@media (max-width: 700px) {
  .site-page {
    font-size: 17px;
  }

  .site-main {
    padding: 2rem 1.1rem 4.5rem;
  }

  .home-hero {
    padding: 2.5rem 0 4rem;
  }

  .home-hero h1 {
    font-size: clamp(2rem, 11vw, 2.75rem);
  }

  .home-lead {
    font-size: 1rem;
  }

  .home-principles {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .schedule-heading {
    padding: 2.5rem 0 3.5rem;
  }

  .schedule-heading h1 {
    font-size: 2rem;
  }

  .schedule-list {
    gap: 2.5rem;
  }

  .schedule-card-content {
    padding: 1.5rem 1.25rem 1.75rem;
  }

  .schedule-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.45rem;
  }

  .schedule-meta time {
    font-size: 1.25rem;
  }

  .schedule-card h2 {
    font-size: 1.55rem;
  }

  .site-page .latest-posts.journal-section {
    margin-top: 4.5rem;
  }
}
