:root {
  --bg: #f6f3ee;
  --surface: #ffffff;
  --surface-alt: #fdf8f4;
  --text: #1f2937;
  --muted: #5b6472;
  --line: #e5e7eb;
  --primary: #9f1f25;
  --primary-deep: #7f1d1d;
  --primary-soft: #fce9e8;
  --accent: #b45309;
  --shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background:
    radial-gradient(circle at top, rgba(159, 31, 37, 0.08), transparent 36%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
  line-height: 1.7;
}

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

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

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.page-shell {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(229, 231, 235, 0.8);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.brand {
  display: inline-flex;
  flex-shrink: 0;
}

.brand__logo {
  width: 153px;
  height: auto;
}

.site-header__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.header-link,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease;
}

.header-link {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  box-shadow: 0 12px 28px rgba(127, 29, 29, 0.22);
}

.header-link--secondary {
  display: none;
}

.button {
  border: 1px solid transparent;
}

.button:hover,
.header-link:hover {
  transform: translateY(-1px);
}

.button--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  box-shadow: 0 14px 30px rgba(127, 29, 29, 0.2);
}

.button--secondary {
  background: #fff;
  border-color: #d1d5db;
  color: var(--text);
}

.page-main {
  padding-top: 18px;
}

.hero {
  padding: 88px 0 48px;
}

.hero__inner {
  padding: 48px;
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(159, 31, 37, 0.95), rgba(122, 24, 30, 0.88)),
    #7f1d1d;
  color: #fff;
  box-shadow: var(--shadow);
}

.eyebrow,
.section-heading__eyebrow {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.2;
}

.hero__lead {
  max-width: 720px;
  margin: 20px 0 0;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.88);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.content-section {
  padding: 48px 0;
}

.content-section--alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(252, 233, 232, 0.42) 100%);
}

.section-heading {
  margin-bottom: 28px;
}

.section-heading__eyebrow {
  color: var(--primary);
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.25;
}

.section-heading > p:not(.section-heading__eyebrow):not(.section-heading__pickup) {
  max-width: 760px;
  margin: 14px 0 0;
  color: var(--muted);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.card-grid--programs {
  grid-template-columns: minmax(280px, 760px);
  justify-content: center;
}

.info-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px;
  border: 1px solid rgba(209, 213, 219, 0.9);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.info-card--featured {
  border: 1px solid rgba(159, 31, 37, 0.24);
  background:
    linear-gradient(180deg, rgba(252, 233, 232, 0.8), rgba(255, 255, 255, 1)),
    var(--surface);
  box-shadow: 0 22px 44px rgba(127, 29, 29, 0.12);
}

.info-card__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -28px -28px 0;
  overflow: hidden;
  border-radius: calc(var(--radius) - 1px) calc(var(--radius) - 1px) 18px 18px;
  border-bottom: 1px solid rgba(209, 213, 219, 0.72);
}

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

.info-card__pickup {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--accent), #d97706);
  box-shadow: 0 12px 24px rgba(180, 83, 9, 0.22);
}

.info-card__media--program {
  aspect-ratio: 1024 / 407;
}

.info-card__media--program img {
  object-position: center;
}

.info-card__media--campaign img {
  object-position: center top;
}

.info-card__media--campaign {
  aspect-ratio: 16 / 9;
}

.info-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.card-kind {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.status-badge--always {
  color: var(--primary-deep);
  background: var(--primary-soft);
}

.status-badge--ended {
  color: #6b7280;
  background: #f3f4f6;
}

.info-card h3 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.4;
}

.info-card__text {
  margin: 0;
  color: var(--muted);
}

.info-card__meta {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--text);
}

.info-card__meta li + li {
  margin-top: 8px;
}

.info-card__actions {
  margin-top: auto;
  display: flex;
  justify-content: center;
}

.info-card__actions .button {
  min-width: 220px;
}

.site-footer {
  padding: 36px 0 48px;
  color: rgba(255, 255, 255, 0.92);
  background: #231815;
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.95rem;
  text-align: center;
}

.site-footer__inner p {
  margin: 0;
}

.site-footer__inner a {
  color: var(--primary);
  font-weight: 700;
}

@media (max-width: 767px) {
  .site-header__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-header__actions {
    width: 100%;
  }

  .header-link,
  .button {
    width: 100%;
  }

  .hero {
    padding-top: 56px;
  }

  .hero__inner {
    padding: 32px 22px;
    border-radius: 24px;
  }

  .content-section {
    padding: 36px 0;
  }

  .info-card {
    padding: 22px;
  }

  .info-card__media {
    margin: -22px -22px 0;
  }

  .info-card__pickup {
    top: 12px;
    left: 12px;
  }

  .info-card__actions .button {
    min-width: 0;
  }
}
