html {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: #f4f4f1;
  color: #111111;
  font-family: "Yu Gothic UI", "Hiragino Sans", sans-serif;
  line-height: 1.72;
}

a {
  color: #111111;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

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

button {
  font: inherit;
}

.utility-strip {
  background: #0b0b0b;
  color: #f7f7f7;
  border-bottom: 1px solid #2f2f2f;
}

.brand-strip {
  background: #171717;
  color: #ffffff;
  border-bottom: 4px solid #b23a33;
}

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

.utility-strip .utility-inner,
.brand-strip .utility-inner,
.global-footer .utility-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 0;
}

.lang-tools {
  display: flex;
  gap: 8px;
}

.lang-tools button {
  min-width: 42px;
  padding: 4px 10px;
  border: 1px solid #d1d1d1;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.lang-tools button[aria-pressed="true"] {
  background: #f7f7f7;
  color: #111111;
}

.utility-links,
.footer-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 0;
  padding: 0;
}

.utility-links a,
.footer-links a {
  color: inherit;
}

.site-mark {
  margin: 0;
  font-size: 1.18rem;
  letter-spacing: 0.08em;
}

.page-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 56px;
}

.subpage-shell {
  width: min(960px, calc(100% - 32px));
}

.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  font-size: 0.95rem;
}

.hero-card,
.content-block,
.action-block {
  background: #ffffff;
  border: 1px solid #cfcfcb;
  box-shadow: 0 0 0 1px #eceae3 inset;
}

.hero-card {
  display: grid;
  grid-template-columns: minmax(280px, 41%) minmax(0, 1fr);
  gap: 0;
  margin-bottom: 22px;
}

.hero-visual {
  background: #0f0f0f;
  padding: 18px;
  border-right: 1px solid #2e2e2e;
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.hero-copy {
  padding: 22px 24px 26px;
}

.award-line {
  margin: 0 0 10px;
  color: #b23a33;
  font-size: 0.96rem;
  letter-spacing: 0.07em;
}

.hero-copy h1 {
  margin: 0 0 10px;
  font-size: clamp(2.15rem, 4vw, 3.5rem);
  line-height: 1.06;
}

.work-type,
.credit-line {
  margin: 0;
}

.work-type {
  font-size: 1rem;
}

.credit-line {
  margin-top: 10px;
  color: #555555;
}

.content-block,
.action-block {
  padding: 20px 22px 22px;
  margin-bottom: 22px;
}

.content-block h1,
.content-block h2,
.action-block h2 {
  margin: 0 0 14px;
  font-size: clamp(1.34rem, 2vw, 1.78rem);
  line-height: 1.25;
}

.content-block p,
.action-block p {
  margin: 0 0 14px;
}

.dense-block {
  background: #fbfaf7;
}

.record-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  margin: 0;
}

.record-grid div {
  border-top: 1px solid #d8d6cf;
  padding-top: 10px;
}

.record-grid dt {
  font-weight: 700;
}

.record-grid dd {
  margin: 4px 0 0;
}

.award-list,
.link-list {
  margin: 0;
  padding-left: 22px;
}

.award-list li,
.link-list li {
  margin-bottom: 8px;
}

.action-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 18px;
}

.vote-widget {
  display: flex;
  align-items: center;
  justify-content: center;
}

.vote-widget span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid #b23a33;
  color: #b23a33;
  background: #fff7f5;
  font-weight: 700;
}

.continuation-note {
  grid-column: 1 / -1;
  margin-bottom: 0;
  padding-top: 6px;
  border-top: 1px solid #dad7cf;
}

.faq-list {
  margin: 0;
}

.faq-list div {
  padding: 16px 0;
  border-top: 1px solid #d8d6cf;
}

.faq-list div:first-child {
  padding-top: 0;
  border-top: 0;
}

.faq-list dt {
  font-weight: 700;
  margin-bottom: 8px;
}

.faq-list dd {
  margin: 0;
}

.back-link {
  margin: 0;
  font-size: 0.94rem;
}

.global-footer {
  background: #111111;
  color: #f0f0f0;
  border-top: 4px solid #b23a33;
}

.footer-note {
  margin: 0;
  color: #d6d6d6;
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .hero-card {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    border-right: 0;
    border-bottom: 1px solid #2e2e2e;
  }

  .record-grid {
    grid-template-columns: 1fr;
  }

  .action-block {
    grid-template-columns: 1fr;
  }

  .vote-widget {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .utility-strip .utility-inner,
  .brand-strip .utility-inner,
  .global-footer .utility-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .utility-links,
  .footer-links {
    gap: 10px 14px;
  }

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