/* Daitoku Baseball — design tokens & layout */
:root {
  --color-dark: #14181b;
  --color-yellow: #ffd23f;
  --color-red: #ff3b3b;
  --color-blue: #2f9fe0;
  --color-green: #46b07f;
  --color-pale: #bfe3f5;
  --color-bg: #f4f6f7;
  --font-body: "Zen Kaku Gothic New", sans-serif;
  --font-display: "Oswald", sans-serif;
  --font-impact: "Anton", sans-serif;
  --font-round: "M PLUS Rounded 1c", sans-serif;
  --border-comic: 3px solid var(--color-dark);
  --shadow-comic: 3px 3px 0 var(--color-dark);
  --wrap: 1180px;
  --article: 880px;
  --halftone-dot: radial-gradient(var(--color-dark) 17%, transparent 19%);
  --halftone-size: 22px 22px;
  --halftone-opacity: 0.16;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-dark);
  background: var(--color-yellow);
  line-height: 1.7;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: var(--halftone-dot);
  background-size: var(--halftone-size);
  opacity: var(--halftone-opacity);
  pointer-events: none;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
.site-wrap { width: min(100% - 32px, var(--wrap)); margin-inline: auto; }
.page-inner { width: min(100% - 32px, var(--article)); margin-inline: auto; }

.accent-strip {
  height: 14px;
  background: var(--color-yellow);
  background-image: radial-gradient(var(--color-dark) 32%, transparent 34%);
  background-size: 12px 12px;
  background-position: 0 1px;
}

.site-header {
  position: relative;
  z-index: 200;
  background: #fff;
  border-bottom: 4px solid var(--color-dark);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 14px 0;
}
.site-header__menu-btn { display: none; }
.site-header__logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.site-header__logo-mark {
  width: 42px; height: 42px; border: var(--border-comic); border-radius: 8px;
  box-shadow: var(--shadow-comic); display: grid; place-items: center; background: #fff;
}
.site-header__logo-ja { display: block; font-weight: 900; font-size: 1rem; line-height: 1.15; }
.site-header__logo-en {
  display: block; font-family: var(--font-display); font-weight: 600;
  font-size: 0.62rem; letter-spacing: 0.2em; color: var(--color-blue);
}
.site-header__actions { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.site-header__nav { display: flex; gap: 20px; }
.site-header__nav-link {
  font-weight: 800; font-size: 0.9rem; text-decoration: none;
  position: relative; padding-bottom: 4px;
}
.site-header__nav-link.is-active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 3px; background: var(--color-red);
}
.site-header__ext {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.site-header__recruit,
.site-header__company {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 800; font-size: 0.9rem; text-decoration: none;
  border: 2.5px solid var(--color-dark);
  padding: 8px 16px; border-radius: 8px; box-shadow: var(--shadow-comic);
}
.site-header__recruit {
  background: var(--color-yellow);
  color: var(--color-dark);
}
.site-header__company {
  background: #256E2F;
  color: #fff;
}

.site-footer {
  background: var(--color-dark); color: #fff; padding: 36px 0; margin-top: 48px;
  text-align: center;
}
.site-footer__brand { font-weight: 800; margin: 0 0 8px; }
.site-footer__copy { margin: 0; opacity: 0.75; }

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  background: transparent;
  overflow: hidden;
  box-sizing: border-box;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}
.hero__slides {
  position: relative;
  order: 1;
  height: clamp(220px, 55vw, 300px);
  margin: 0;
  border: none;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
}
.hero__slide-media { display: none; }
.hero__slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 1.2s ease;
  overflow: hidden;
  z-index: 0;
}
.hero__slide.is-active {
  opacity: 1;
  z-index: 1;
}
.hero__slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  will-change: transform;
}
.hero__slide.is-active .hero__slide-bg {
  animation: hero-kenburns 8s ease-out forwards;
}
@keyframes hero-kenburns {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}
.hero__overlay {
  position: relative;
  order: 2;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 20px 20px 8px;
  background: none;
}
.hero__overlay-inner {
  width: 100%;
  margin-left: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.hero__badge {
  font-family: var(--font-display); font-weight: 700; letter-spacing: 0.1em;
  font-size: 11px;
  background: var(--color-yellow); color: var(--color-dark);
  border: 2px solid var(--color-dark); padding: 4px 11px; border-radius: 5px;
  box-shadow: 2px 2px 0 var(--color-dark); transform: rotate(-2deg);
}
.hero__title {
  font-weight: 900; font-size: 32px; color: var(--color-dark);
  line-height: 1.16; margin: 12px 0 0; text-shadow: none;
}
.hero__title-row {
  display: block;
  margin: 12px 0 0;
}
.hero__title-row .hero__title { margin: 0; }
.hero__title-col {
  display: block;
}
.hero__mascot { display: none; }
.hero__title-accent {
  display: inline-block; background: var(--color-green); color: #fff;
  padding: 1px 10px; border: 2.5px solid var(--color-dark); border-radius: 5px;
  box-shadow: 3px 3px 0 var(--color-dark); transform: rotate(-1deg); margin-top: 4px;
}
.hero__title-keep { white-space: nowrap; }
.hero__lead {
  display: none;
}
.hero__burst {
  position: absolute;
  top: clamp(12px, 3vw, 20px);
  right: 16px;
  left: auto;
  z-index: 4;
  transform: rotate(-9deg);
  font-family: var(--font-round); font-weight: 800; text-align: center;
  width: 64px; height: 64px; font-size: 10px; line-height: 1.05;
  background: var(--color-yellow);
  clip-path: polygon(50% 0,60% 18%,82% 12%,76% 34%,99% 40%,80% 55%,93% 76%,69% 73%,64% 96%,50% 79%,36% 96%,31% 73%,7% 76%,20% 55%,1% 40%,24% 34%,18% 12%,40% 18%);
  display: grid; place-items: center; border: 4px solid var(--color-dark);
}

.section-yellow {
  position: relative;
  background: transparent;
  padding: 40px 0;
}
.section-yellow + .section-yellow {
  padding-top: 0;
}
.section-yellow > .site-wrap { position: relative; }

.section-dark { background: var(--color-dark); color: #fff; padding: 56px 0; }
.section-heading { margin-bottom: 28px; }
.section-heading__eyebrow {
  font-family: var(--font-display); font-weight: 700; letter-spacing: 0.14em;
  font-size: 0.8rem; color: var(--color-blue);
}
.section-heading__title { font-weight: 900; font-size: clamp(1.5rem, 3vw, 2rem); margin: 6px 0 0; }
.section-heading__lead { margin: 8px 0 0; font-weight: 700; }

.section-badge-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.section-badge {
  position: relative;
  display: inline-block;
}
.section-badge--tilt { transform: rotate(-2deg); }
.section-badge__shadow {
  position: absolute;
  inset: 0;
  background: var(--color-dark);
  border-radius: 8px;
  transform: translate(5px, 5px);
}
.section-badge__label {
  position: relative;
  display: inline-block;
  background: #fff;
  border: 3px solid var(--color-dark);
  border-radius: 8px;
  padding: 8px 18px;
  font-family: var(--font-impact);
  font-size: 26px;
  line-height: 1;
  letter-spacing: 0.01em;
}
.section-badge--compact .section-badge__label {
  padding: 7px 16px;
  font-size: 24px;
}
.section-sublabel {
  margin: 0;
  font-family: var(--font-round);
  font-weight: 800;
  font-size: 13px;
  color: var(--color-dark);
  background: var(--color-pale);
  border: 2px solid var(--color-dark);
  padding: 6px 13px;
  border-radius: 6px;
}
.section-sublabel--tilt {
  transform: rotate(-2deg);
  align-self: flex-end;
  margin-bottom: 6px;
}

.comic-card {
  background: #fff; border: var(--border-comic); border-radius: 10px;
  box-shadow: var(--shadow-comic); overflow: hidden;
}

.scoreboard-card {
  position: relative;
}
.scoreboard-card__shadow {
  position: absolute;
  inset: 0;
  background: var(--color-dark);
  border-radius: 6px;
  transform: translate(9px, 9px);
}
.scoreboard-card__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  background: #fff;
  border: 4px solid var(--color-dark);
  border-radius: 6px;
  padding: 24px 20px;
}

.game-match { display: flex; flex-direction: column; min-height: 100%; min-width: 0; max-width: 100%; }
.game-match__tag {
  margin: 0 0 22px;
  display: inline-flex;
  align-self: flex-start;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: #fff;
  background: var(--color-dark);
  padding: 9px 18px;
  border-radius: 6px;
}
.game-match__panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 3px solid var(--color-dark);
  border-radius: 4px;
  padding: 20px 30px;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}
.game-match__panel--light {
  background: #fff;
  box-shadow: 6px 6px 0 var(--color-dark);
}
.game-match__panel--dark {
  background: var(--color-dark);
}
.game-match__date {
  margin: 0 0 14px;
  text-align: center;
}
.game-match__date span {
  display: inline-block;
  font-family: var(--font-round);
  font-weight: 800;
  font-size: 13px;
  color: var(--color-dark);
  border: 2px solid var(--color-dark);
  padding: 6px 14px;
  border-radius: 6px;
  max-width: 100%;
  box-sizing: border-box;
}
.game-match__date--dark span {
  color: #fff;
  border-color: #4a4f54;
}
.game-match__scoreboard {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.game-match__team { text-align: center; }
.game-match__team-label {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--color-dark);
  border: 2px solid var(--color-dark);
  padding: 3px 12px;
  border-radius: 5px;
}
.game-match__team-label--yellow { background: var(--color-yellow); }
.game-match__team-label--blue { background: var(--color-pale); }
.game-match__score {
  display: block;
  margin-top: 6px;
  font-family: var(--font-impact);
  font-size: clamp(3rem, 6vw, 4rem);
  line-height: 0.9;
  color: var(--color-dark);
}
.game-match__dash {
  font-family: var(--font-impact);
  font-size: 38px;
  color: var(--color-dark);
}
.game-match__versus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.game-match__team--left { text-align: left; }
.game-match__team--right { text-align: right; margin-left: auto; }
.game-match__vs {
  display: block;
  margin-top: 8px;
  font-family: var(--font-impact);
  font-size: 34px;
  line-height: 1;
  color: #fff;
}
.game-match__opponent {
  display: block;
  margin-top: 6px;
  font-weight: 900;
  font-size: clamp(1.4rem, 3vw, 1.875rem);
  line-height: 1.1;
  color: #fff;
}
.game-match__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 2px solid #3a3f44;
  flex-wrap: nowrap;
}
.game-match__footer--light {
  justify-content: center;
  border-top-color: var(--color-dark);
}
.game-match__venue {
  font-weight: 700;
  font-size: 14px;
  color: #cfd3d6;
  min-width: 0;
}
.game-match__venue-badge {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  font-weight: 700;
  font-size: 14px;
  color: var(--color-dark);
  background: #fff;
  border: 2px solid var(--color-dark);
  padding: 8px 16px;
  border-radius: 6px;
  box-sizing: border-box;
}
.game-match__playball {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.04em;
  color: var(--color-dark);
  background: var(--color-yellow);
  padding: 9px 22px;
  border-radius: 6px;
  box-sizing: border-box;
}
.game-match__note {
  margin: 10px 0 0;
  font-size: 0.75rem;
  line-height: 1.5;
  color: #a8adb2;
  text-align: right;
  white-space: nowrap;
}
.br-sp {
  display: none;
}

.members-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
}
.member-card {
  position: relative;
}
.member-card__shadow {
  position: absolute;
  inset: 0;
  background: var(--color-dark);
  border-radius: 6px;
  transform: translate(7px, 7px);
}
.member-card__inner {
  position: relative;
  background: #fff;
  border: 4px solid var(--color-dark);
  border-radius: 6px;
  overflow: hidden;
  height: 100%;
}
.member-card__photo-wrap {
  position: relative;
  border-bottom: 4px solid var(--color-dark);
  overflow: hidden;
}
.member-card__photo {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center 28%;
}
.member-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--color-dark);
  background: var(--color-blue);
  border: 2px solid var(--color-dark);
  padding: 4px 12px;
  border-radius: 5px;
  transform: rotate(-3deg);
}
.member-card__body { padding: 22px 24px; }
.member-card__identity {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}
.member-card__name {
  margin: 0;
  font-weight: 900;
  font-size: 22px;
}
.member-card__dept {
  margin: 0;
  font-family: var(--font-round);
  font-weight: 800;
  font-size: 12px;
  color: #5c656b;
}
.member-card__quote {
  display: inline-block;
  margin: 12px 0 0;
  font-family: var(--font-round);
  font-weight: 800;
  font-size: 14px;
  border: 2px solid var(--color-dark);
  padding: 5px 12px;
  border-radius: 5px;
  transform: rotate(-1deg);
}
.member-card__quote--yellow {
  color: var(--color-dark);
  background: var(--color-yellow);
}
.member-card__quote--green {
  color: #fff;
  background: var(--color-green);
}
.member-card__quote--pale {
  color: var(--color-dark);
  background: var(--color-pale);
}
.member-card__text {
  margin: 14px 0 0;
  font-weight: 500;
  font-size: 13px;
  line-height: 1.85;
  color: #3a3f44;
}

.team-band {
  position: relative;
  background: var(--color-dark);
  overflow: hidden;
  padding: 0;
  text-align: center;
}
.team-band__pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--color-yellow) 14%, transparent 16%);
  background-size: 26px 26px;
  opacity: 0.14;
  pointer-events: none;
}
.team-band__inner {
  position: relative;
  padding: 44px 0 30px;
}
.team-band__badge {
  display: inline-block;
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--color-dark);
  background: var(--color-yellow);
  padding: 7px 18px;
  border-radius: 6px;
  text-transform: uppercase;
  transform: rotate(-1.5deg);
  box-shadow: 3px 3px 0 var(--color-red);
}
.team-band__title {
  font-weight: 900;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.28;
  color: #fff;
  margin: 22px 0 0;
  letter-spacing: 0.01em;
}
.team-band__highlight {
  display: inline-block;
  background: var(--color-green);
  padding: 1px 14px;
  border: 3px solid #fff;
  border-radius: 6px;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.45);
  transform: rotate(-1deg);
}
.team-band__text {
  max-width: 640px;
  margin: 18px auto 0;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.8;
  color: #cfd3d6;
}
.team-band__photo {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center 24%;
  display: block;
}

/* NEWS 非表示時：team-band と feature-band の間に黄背景の余白 */
.team-band + .feature-band {
  margin-top: 40px;
}

.news-section__head {
  margin-bottom: 32px;
}
.news-section__head .section-badge-row { margin-bottom: 0; }
.section-badge--news .section-badge__label,
.section-badge__label--news {
  background: var(--color-red);
  color: #fff;
  padding: 7px 16px;
  font-size: 24px;
}
.news-section__foot {
  display: flex;
  justify-content: center;
  margin: 32px 0 0;
}
.news-section__more {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-round);
  font-weight: 800;
  font-size: 16px;
  color: var(--color-dark);
  background: #fff;
  border: 3px solid var(--color-dark);
  padding: 12px 28px;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 4px 4px 0 var(--color-dark);
}
.news-section__more:hover { opacity: 0.92; }
.news-section__empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 24px 20px;
  font-weight: 700;
  text-align: center;
  background: #fff;
  border: var(--border-comic);
  border-radius: 8px;
  box-shadow: var(--shadow-comic);
}
.news-section__empty a { color: var(--color-blue); font-weight: 800; }

.news-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.news-card { position: relative; height: 100%; }
.news-card__link {
  display: block;
  position: relative;
  text-decoration: none;
  color: inherit;
  height: 100%;
  cursor: pointer;
}
.news-card__shadow {
  position: absolute;
  inset: 0;
  background: var(--color-dark);
  border-radius: 6px;
  transform: translate(6px, 6px);
}
.news-card__inner {
  position: relative;
  z-index: 1;
  background: #fff;
  border: 3px solid var(--color-dark);
  border-radius: 6px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.news-card__media {
  position: relative;
  height: 150px;
  flex-shrink: 0;
  border-bottom: 3px solid var(--color-dark);
  overflow: hidden;
}
.news-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.news-card__placeholder {
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(45deg, #e6e9eb 0 14px, #dde1e3 14px 28px);
}
.news-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  border: 2px solid var(--color-dark);
  padding: 3px 11px;
  border-radius: 5px;
  transform: rotate(-3deg);
  z-index: 1;
}
.news-card__badge--game { background: #2f9fe0; color: #fff; }
.news-card__badge--practice { background: #46b07f; color: #fff; }
.news-card__badge--event { background: var(--color-yellow); color: var(--color-dark); }
.news-card__badge--default { background: #fff; color: var(--color-dark); }
.news-card__body { padding: 18px 20px; flex: 1; }
.news-card__date {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: #8a9197;
}
.news-card__title {
  font-weight: 900;
  font-size: 15px;
  line-height: 1.55;
  color: var(--color-dark);
  margin: 8px 0 0;
}

.category-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }
.category-chips__chip {
  text-decoration: none; font-weight: 800; font-size: 0.85rem;
  padding: 8px 16px; border: var(--border-comic); border-radius: 999px;
  background: #fff; box-shadow: var(--shadow-comic);
}
.category-chips__chip.is-active { background: var(--color-yellow); }

.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 32px; flex-wrap: wrap; }
.pagination a, .pagination span {
  padding: 8px 14px; border: var(--border-comic); border-radius: 6px;
  text-decoration: none; font-weight: 800; background: #fff; box-shadow: var(--shadow-comic);
}

.feature-band {
  position: relative;
  background: var(--color-dark);
  padding: 48px 0;
  overflow: hidden;
}
.feature-band__pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--color-yellow) 14%, transparent 16%);
  background-size: 26px 26px;
  opacity: 0.16;
  pointer-events: none;
}
.feature-band__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
.feature-band__badge {
  display: inline-block;
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--color-dark);
  background: var(--color-yellow);
  padding: 7px 16px;
  border-radius: 6px;
  text-transform: uppercase;
  transform: rotate(-2deg);
  box-shadow: 3px 3px 0 var(--color-red);
}
.feature-band__title {
  font-weight: 900;
  font-size: clamp(1.5rem, 3.2vw, 2.125rem);
  color: #fff;
  line-height: 1.45;
  margin: 24px 0 0;
  letter-spacing: 0.01em;
}
.feature-band__hl {
  display: inline-block;
  padding: 1px 9px;
  border-radius: 4px;
}
.feature-band__hl--red { background: var(--color-red); color: #fff; }
.feature-band__hl--green { background: var(--color-green); color: #fff; }
.feature-band__hl--blue { background: #2f9fe0; color: #fff; }
.feature-band__meta {
  margin: 20px 0 0;
  font-family: var(--font-round);
  font-weight: 800;
  font-size: 15px;
  color: var(--color-yellow);
}
.feature-band__btn,
.feature-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  font-family: var(--font-round);
  font-weight: 800;
  font-size: 17px;
  color: var(--color-dark);
  background: var(--color-yellow);
  padding: 18px 38px;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 6px 6px 0 var(--color-red);
}
.feature-band__btn:hover,
.feature-cta__btn:hover { opacity: 0.92; }

.feature-band__visual { position: relative; }
.feature-band__photo-wrap {
  position: relative;
  max-width: none;
  margin: 32px auto 0;
}
.feature-band__photo-shadow {
  position: absolute;
  inset: 0;
  background: var(--color-yellow);
  border-radius: 8px;
  transform: translate(10px, 10px) rotate(2deg);
}
.feature-band__photo-frame {
  position: relative;
  border: 5px solid #fff;
  border-radius: 8px;
  overflow: hidden;
  transform: rotate(-1.5deg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}
.feature-band__photo-frame img {
  display: block;
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center 38%;
}
.feature-band__burst {
  position: absolute;
  top: -22px;
  left: -22px;
  transform: rotate(-12deg);
  z-index: 2;
}
.feature-band__burst-outer {
  width: 104px;
  height: 104px;
  background: var(--color-red);
  clip-path: polygon(50% 0,60% 18%,82% 12%,76% 34%,99% 40%,80% 55%,93% 76%,69% 73%,64% 96%,50% 79%,36% 96%,31% 73%,7% 76%,20% 55%,1% 40%,24% 34%,18% 12%,40% 18%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-band__burst-mid {
  width: 90px;
  height: 90px;
  background: #fff;
  clip-path: polygon(50% 0,60% 18%,82% 12%,76% 34%,99% 40%,80% 55%,93% 76%,69% 73%,64% 96%,50% 79%,36% 96%,31% 73%,7% 76%,20% 55%,1% 40%,24% 34%,18% 12%,40% 18%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-band__burst-text {
  font-weight: 900;
  font-size: 24px;
  color: var(--color-red);
  transform: rotate(12deg);
}

.feature-cta__visual {
  min-height: 220px;
  background: var(--color-pale);
  border: var(--border-comic);
  border-radius: 12px;
  box-shadow: var(--shadow-comic);
}

.gallery-band {
  position: relative;
  background: transparent;
  padding: 40px 0;
}
.gallery-band__grid-wrap {
  padding: 0 16px;
  --gallery-cell-min: clamp(56px, 14vw, 88px);
  --gallery-gap: 10px;
}
.gallery-band__head {
  margin-bottom: 32px;
}
.section-badge--gallery { transform: rotate(-1.5deg); }
.section-badge__label--gallery {
  font-size: 22px;
  padding: 6px 16px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(var(--gallery-cell-min), 1fr));
  grid-auto-flow: dense;
  gap: var(--gallery-gap);
  width: 100%;
  align-items: start;
}
.gallery-tile {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  border: 3px solid var(--color-dark);
  border-radius: 6px;
  box-shadow: 5px 5px 0 var(--color-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-width: 0;
}
.gallery-tile picture {
  display: block;
  width: 100%;
  height: 100%;
}
.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-tile--photo {
  background: #e8ecef;
  cursor: pointer;
}
.gallery-tile--photo.is-broken {
  display: none;
}
.gallery-band.is-gallery-preparing .gallery-tile--photo:not(.is-loaded) img {
  opacity: 0;
}
.gallery-tile--photo.is-loaded img {
  opacity: 1;
  transition: opacity 0.2s ease;
}
.gallery-tile.is-gallery-clickable {
  cursor: pointer;
}
.gallery-tile.is-gallery-clickable:focus-visible {
  outline: 3px solid var(--color-blue);
  outline-offset: 3px;
}
.gallery-grid.is-gallery-error:empty::after {
  content: "写真を読み込めませんでした。";
  display: block;
  width: 100%;
  padding: 24px 16px;
  text-align: center;
  font-weight: 700;
  color: var(--color-dark);
}
.gallery-tile--shadow-yellow { box-shadow: 5px 5px 0 var(--color-yellow); }
.gallery-tile--blue { background: var(--color-blue); }
.gallery-tile--yellow { background: var(--color-yellow); }
.gallery-tile--green { background: var(--color-green); }
.gallery-tile--white { background: #fff; }
.gallery-tile--dark { background: var(--color-dark); }
.gallery-tile--red { background: var(--color-red); }

.gallery-tile--dots-light::before,
.gallery-tile--dots-dark::before,
.gallery-tile--dots-gray::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.gallery-tile--dots-light::before {
  background-image: radial-gradient(rgba(255, 255, 255, 0.25) 16%, transparent 18%);
  background-size: 16px 16px;
}
.gallery-tile--dots-dark::before {
  background-image: radial-gradient(rgba(20, 24, 27, 0.12) 16%, transparent 18%);
  background-size: 14px 14px;
}
.gallery-tile--dots-gray::before {
  background-image: radial-gradient(#e0e4e7 16%, transparent 18%);
  background-size: 14px 14px;
}

.gallery-tile--s1 { grid-column: span 1; grid-row: span 1; }
.gallery-tile--s2 { grid-column: span 2; grid-row: span 2; }
.gallery-tile--s3 { grid-column: span 3; grid-row: span 3; }
.gallery-tile--s4 { grid-column: span 4; grid-row: span 4; }

.gallery-tile__label {
  position: relative;
  z-index: 1;
}
.gallery-tile__label--impact { font-family: var(--font-impact); }
.gallery-tile__label--round {
  font-family: var(--font-round);
  font-weight: 800;
  font-size: 13px;
}
.gallery-tile__label--lg { font-size: clamp(18px, 3.5vw, 30px); }
.gallery-tile__label--xl { font-size: clamp(16px, 3vw, 28px); }
.gallery-tile__label--md { font-size: clamp(14px, 2.2vw, 22px); }
.gallery-tile__label--sm { color: #9aa1a6; font-size: clamp(11px, 1.6vw, 13px); }
.gallery-tile__label--white-soft { color: rgba(255, 255, 255, 0.85); }
.gallery-tile__label--white { color: rgba(255, 255, 255, 0.85); }
.gallery-tile__label--dark-soft { color: rgba(20, 24, 27, 0.55); }
.gallery-tile__label--yellow { color: var(--color-yellow); }
.gallery-tile--s2 .gallery-tile__label--dark-soft { color: rgba(20, 24, 27, 0.5); }
.gallery-tile--s1 .gallery-tile__label--md { font-size: clamp(14px, 2vw, 20px); }
.gallery-tile--s4 .gallery-tile__label--md { font-size: clamp(16px, 2.4vw, 24px); color: rgba(20, 24, 27, 0.5); }

body.is-gallery-lightbox-open { overflow: hidden; }
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  box-sizing: border-box;
}
.gallery-lightbox.is-open {
  display: flex !important;
  visibility: visible;
  opacity: 1;
}
.gallery-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 24, 27, 0.88);
}
.gallery-lightbox__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 1180px);
  height: min(92vh, 900px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-lightbox__figure {
  margin: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.gallery-lightbox__img {
  display: block;
  max-width: 100%;
  max-height: calc(92vh - 72px);
  width: auto;
  height: auto;
  object-fit: contain;
  border: 4px solid #fff;
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  background: #fff;
}
.gallery-lightbox__counter {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}
.gallery-lightbox__close,
.gallery-lightbox__nav {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  border: 3px solid var(--color-dark);
  background: var(--color-yellow);
  color: var(--color-dark);
  box-shadow: 4px 4px 0 var(--color-dark);
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1;
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.gallery-lightbox__close:hover,
.gallery-lightbox__nav:hover { transform: translate(-1px, -1px); }
.gallery-lightbox__close:active,
.gallery-lightbox__nav:active { transform: translate(1px, 1px); box-shadow: 2px 2px 0 var(--color-dark); }
.gallery-lightbox__close:focus-visible,
.gallery-lightbox__nav:focus-visible {
  outline: 3px solid var(--color-blue);
  outline-offset: 3px;
}
.gallery-lightbox__close {
  top: 0;
  right: 0;
  width: 52px;
  height: 52px;
  border-radius: 10px;
  font-size: 2rem;
}
.gallery-lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
  width: clamp(52px, 10vw, 64px);
  height: clamp(52px, 10vw, 64px);
  border-radius: 50%;
  font-size: clamp(2rem, 6vw, 2.6rem);
}
.gallery-lightbox__nav:hover { transform: translateY(-50%) translate(-1px, -1px); }
.gallery-lightbox__nav:active { transform: translateY(-50%) translate(1px, 1px); }
.gallery-lightbox__nav--prev { left: clamp(4px, 2vw, 16px); }
.gallery-lightbox__nav--next { right: clamp(4px, 2vw, 16px); }

.breadcrumb { font-size: 0.85rem; margin-bottom: 20px; }
.breadcrumb a { color: var(--color-blue); font-weight: 700; }

.page-news { padding: 0 0 56px; }

.u-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-closeup { background: var(--color-yellow); }
.page-closeup-shell { background: transparent; }
.closeup-main { background: transparent; }
.closeup-wrap { width: min(100% - 32px, 1100px); margin-inline: auto; }

.closeup-intro { padding: 30px 0 0; }
.closeup-intro__badge {
  display: inline-block;
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--color-dark);
  background: #fff;
  border: 2px solid var(--color-dark);
  padding: 7px 16px;
  border-radius: 6px;
  text-transform: uppercase;
  transform: rotate(-1.5deg);
  box-shadow: var(--shadow-comic);
}

.closeup-hero {
  position: relative;
  margin-top: 22px;
  height: 420px;
  background: var(--color-dark);
  overflow: hidden;
}
.closeup-hero__pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--color-yellow) 13%, transparent 15%);
  background-size: 26px 26px;
  opacity: 0.16;
  pointer-events: none;
}
.closeup-hero__panel {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
}
.closeup-hero__panel--left {
  left: 0;
  clip-path: polygon(0 0, 44% 0, 76% 100%, 0 100%);
}
.closeup-hero__panel--right {
  left: 50%;
  clip-path: polygon(56% 0, 100% 0, 100% 100%, 24% 100%);
}
.closeup-hero__panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.closeup-hero__panel--left img { object-position: 42% 38%; }
.closeup-hero__panel--right img { object-position: 55% 26%; }
.closeup-hero__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.closeup-hero__overlay--left {
  background: linear-gradient(90deg, rgba(20,24,27,.35) 0%, rgba(20,24,27,.05) 55%, rgba(20,24,27,.45) 100%);
}
.closeup-hero__overlay--right {
  background: linear-gradient(90deg, rgba(20,24,27,.45) 0%, rgba(20,24,27,.05) 45%, rgba(20,24,27,.35) 100%);
}
.closeup-hero__tag {
  position: absolute;
  bottom: 16px;
  margin: 0;
  font-family: var(--font-round);
  font-weight: 800;
  font-size: 14px;
  border: 3px solid var(--color-dark);
  padding: 8px 18px;
  border-radius: 8px;
  box-shadow: 4px 4px 0 var(--color-dark);
  z-index: 2;
}
.closeup-hero__tag--work {
  left: 16px;
  color: #fff;
  background: var(--color-blue);
  transform: rotate(-2deg);
}
.closeup-hero__tag--baseball {
  right: 16px;
  color: var(--color-dark);
  background: var(--color-yellow);
  transform: rotate(2deg);
}
.closeup-hero__divider {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background: var(--color-yellow);
  pointer-events: none;
  z-index: 1;
}
.closeup-hero__divider--left {
  left: 0;
  clip-path: polygon(44% 0, 46.5% 0, 78.5% 100%, 76% 100%);
}
.closeup-hero__divider--right {
  left: 50%;
  clip-path: polygon(53.5% 0, 56% 0, 24% 100%, 21.5% 100%);
}
.closeup-hero__center {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(92%, 460px);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 10px;
  z-index: 3;
}
.closeup-hero__eyebrow {
  display: inline-block;
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--color-dark);
  background: var(--color-yellow);
  padding: 7px 16px;
  border-radius: 6px;
  text-transform: uppercase;
  transform: rotate(-2deg);
  box-shadow: 3px 3px 0 var(--color-red);
}
.closeup-hero__title {
  font-weight: 900;
  font-size: clamp(1.15rem, 3.4vw, 1.875rem);
  line-height: 1.7;
  color: #fff;
  margin: 18px 0 0;
  letter-spacing: 0.01em;
  text-shadow: 0 3px 16px rgba(0,0,0,.7);
}
.closeup-hero__hl {
  display: inline-block;
  white-space: nowrap;
  padding: 0 9px;
  border-radius: 5px;
}
.closeup-hero__hl--red {
  background: var(--color-red);
  color: #fff;
  border: 3px solid #fff;
  box-shadow: 3px 3px 0 rgba(0,0,0,.5);
  transform: rotate(-1deg);
}
.closeup-hero__hl--green { background: var(--color-green); color: #fff; padding: 1px 10px; margin: 6px 0; }
.closeup-hero__hl--blue { background: var(--color-blue); color: #fff; padding: 1px 10px; }

.closeup-profile {
  position: relative;
  z-index: 5;
  margin-top: -28px;
  padding: 0;
}
.closeup-profile__card { position: relative; }
.closeup-profile__shadow {
  position: absolute;
  inset: 0;
  background: var(--color-dark);
  border-radius: 8px;
  transform: translate(8px, 8px);
}
.closeup-profile__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: center;
  background: #fff;
  border: 4px solid var(--color-dark);
  border-radius: 8px;
  padding: 22px 20px;
}
.closeup-profile__label {
  display: inline-block;
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: #fff;
  background: var(--color-dark);
  padding: 6px 16px;
  border-radius: 6px;
}
.closeup-profile__name {
  margin: 0;
  font-weight: 900;
  font-size: clamp(1.5rem, 4vw, 1.875rem);
  line-height: 1.1;
}
.closeup-profile__ruby {
  display: block;
  margin-top: 6px;
  font-family: var(--font-round);
  font-weight: 800;
  font-size: 15px;
  color: #5c656b;
}
.closeup-profile__meta {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
  border-top: 3px dashed #d8dde0;
  padding-top: 18px;
}
.closeup-profile__row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
}
.closeup-profile__tag {
  flex: none;
  width: 96px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: #fff;
  border: 2px solid var(--color-dark);
  padding: 4px 0;
  border-radius: 5px;
  text-align: center;
}
.closeup-profile__tag--blue { background: var(--color-blue); }
.closeup-profile__tag--green { background: var(--color-green); }
.closeup-profile__tag--yellow { background: var(--color-yellow); color: var(--color-dark); }
.closeup-profile__meta dd {
  margin: 0;
  font-weight: 700;
  font-size: 15px;
}

.closeup-introduction__card {
  position: relative;
  max-width: 900px;
  margin: 40px auto 48px;
}
.closeup-introduction__shadow {
  position: absolute;
  inset: 0;
  background: var(--color-dark);
  border-radius: 8px;
  transform: translate(8px, 8px);
}
.closeup-introduction__inner {
  position: relative;
  background: #fff;
  border: 4px solid var(--color-dark);
  border-radius: 8px;
  padding: 22px 20px;
}
.closeup-introduction__label {
  display: inline-block;
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: #fff;
  background: var(--color-dark);
  padding: 6px 16px;
  border-radius: 6px;
}
.closeup-introduction__body {
  margin: 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.95;
  color: var(--color-dark);
}

.closeup-section-head {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.closeup-section-head__badge { position: relative; display: inline-block; }
.closeup-section-head__shadow {
  position: absolute;
  inset: 0;
  background: var(--color-dark);
  border-radius: 8px;
  transform: translate(5px, 5px);
}
.closeup-section-head__label {
  position: relative;
  display: inline-block;
  border: 3px solid var(--color-dark);
  border-radius: 8px;
  padding: 9px 22px;
  font-family: var(--font-impact);
  font-size: 26px;
  line-height: 1;
}
.closeup-section-head__label--day { background: #fff; color: var(--color-dark); }
.closeup-section-head__label--interview { background: var(--color-red); color: #fff; }
.closeup-section-head__title {
  margin: 0;
  font-weight: 900;
  font-size: clamp(1.1rem, 2.8vw, 1.25rem);
  line-height: 1.4;
}
.closeup-section-head__sub {
  display: block;
  margin-top: 4px;
  font-family: var(--font-round);
  font-weight: 800;
  font-size: 13px;
  color: #5c656b;
}

.closeup-schedule { padding: 32px 0 0; }
.closeup-timeline {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.closeup-timeline__item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: stretch;
}
.closeup-timeline__time {
  border: 3px solid var(--color-dark);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 8px;
  box-shadow: 4px 4px 0 var(--color-dark);
}
.closeup-timeline__time span {
  font-family: var(--font-impact);
  font-size: 30px;
  line-height: 1;
}
.closeup-timeline__time small {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.1em;
  margin-top: 2px;
}
.closeup-timeline__time--green { background: var(--color-green); color: #fff; }
.closeup-timeline__time--blue { background: var(--color-blue); color: #fff; }
.closeup-timeline__time--yellow { background: var(--color-yellow); color: var(--color-dark); }
.closeup-timeline__time--night {
  background: var(--color-dark);
  color: var(--color-yellow);
  box-shadow: 4px 4px 0 var(--color-red);
}
.closeup-timeline__card { position: relative; }
.closeup-timeline__card-shadow {
  position: absolute;
  inset: 0;
  background: var(--color-dark);
  border-radius: 8px;
  transform: translate(5px, 5px);
}
.closeup-timeline__card-shadow--red { background: var(--color-red); }
.closeup-timeline__card-inner {
  position: relative;
  background: #fff;
  border: 3px solid var(--color-dark);
  border-radius: 8px;
  padding: 18px 16px;
}
.closeup-timeline__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: stretch;
}
.closeup-timeline__tag {
  display: inline-block;
  margin: 0;
  font-family: var(--font-round);
  font-weight: 800;
  font-size: 13px;
  color: var(--color-dark);
  background: var(--color-pale);
  border: 2px solid var(--color-dark);
  padding: 4px 12px;
  border-radius: 5px;
}
.closeup-timeline__tag--night {
  color: #fff;
  background: var(--color-red);
}
.closeup-timeline__heading {
  margin: 12px 0 0;
  font-weight: 900;
  font-size: 16px;
  line-height: 1.5;
}
.closeup-timeline__body {
  margin: 10px 0 0;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.85;
  color: #3a3f44;
}
.closeup-timeline__body-block { display: block; margin-top: 10px; }
.closeup-timeline__media {
  position: relative;
  margin: 0;
  min-height: 180px;
}
.closeup-timeline__media-shadow {
  position: absolute;
  inset: 0;
  background: var(--color-pale);
  border-radius: 8px;
  transform: translate(5px, 5px);
}
.closeup-timeline__media-shadow--left { transform: translate(-5px, 5px); }
.closeup-timeline__media-shadow--red { background: var(--color-red); }
.closeup-timeline__media img {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  border: 3px solid var(--color-dark);
  border-radius: 8px;
}

.closeup-interview { padding: 48px 0 0; }
.closeup-qa-list { display: flex; flex-direction: column; gap: 24px; margin-top: 26px; }
.closeup-qa { position: relative; }
.closeup-qa__shadow {
  position: absolute;
  inset: 0;
  background: var(--color-dark);
  border-radius: 8px;
  transform: translate(7px, 7px);
}
.closeup-qa__inner {
  position: relative;
  background: #fff;
  border: 4px solid var(--color-dark);
  border-radius: 8px;
  padding: 22px 18px;
}
.closeup-qa__q,
.closeup-qa__a {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.closeup-qa__a { margin-top: 18px; }
.closeup-qa__icon {
  flex: none;
  font-family: var(--font-impact);
  font-size: 20px;
  border: 2.5px solid var(--color-dark);
  border-radius: 6px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.closeup-qa__icon--q { color: #fff; background: var(--color-blue); }
.closeup-qa__icon--a { color: var(--color-dark); background: var(--color-yellow); }
.closeup-qa__question {
  flex: 1;
  min-width: 0;
  margin: 4px 0 0;
  font-weight: 900;
  font-size: clamp(1rem, 2.6vw, 1.3125rem);
  line-height: 1.4;
}
.closeup-qa__answer {
  flex: 1;
  min-width: 0;
  margin: 2px 0 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.9;
  color: #3a3f44;
}
.closeup-qa__lead {
  display: block;
  font-weight: 900;
  font-size: 18px;
  color: var(--color-dark);
  margin-bottom: 8px;
  line-height: 1.4;
}
.closeup-qa__answer-block { display: block; margin-top: 14px; }

.mark-yellow { background: #fff3b8; font-weight: 700; }

.closeup-message {
  position: relative;
  margin-top: 70px;
  background: var(--color-dark);
  overflow: hidden;
}
.closeup-message__pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--color-yellow) 14%, transparent 16%);
  background-size: 26px 26px;
  opacity: 0.16;
  pointer-events: none;
}
.closeup-message__inner {
  position: relative;
  padding: 48px 0 56px;
  text-align: center;
}
.closeup-message__badge {
  display: inline-block;
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--color-dark);
  background: var(--color-yellow);
  padding: 7px 16px;
  border-radius: 6px;
  text-transform: uppercase;
  transform: rotate(-2deg);
  box-shadow: 3px 3px 0 var(--color-red);
}
.closeup-message__title {
  font-weight: 900;
  font-size: clamp(1.4rem, 3.6vw, 2rem);
  line-height: 1.55;
  color: #fff;
  margin: 26px 0 0;
  letter-spacing: 0.01em;
}
.closeup-message__hl {
  display: inline-block;
  white-space: nowrap;
  padding: 1px 10px;
  border-radius: 5px;
}
.closeup-message__hl--green { background: var(--color-green); }
.closeup-message__hl--blue { background: var(--color-blue); }
.closeup-message__photo {
  position: relative;
  max-width: 680px;
  margin: 34px auto 0;
}
.closeup-message__photo-shadow {
  position: absolute;
  inset: 0;
  background: var(--color-yellow);
  border-radius: 10px;
  transform: translate(9px, 9px) rotate(1.5deg);
}
.closeup-message__photo img {
  position: relative;
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center 32%;
  border: 6px solid #fff;
  border-radius: 10px;
  transform: rotate(-1deg);
}
.closeup-message__body {
  max-width: 820px;
  margin: 36px auto 0;
  text-align: left;
}
.closeup-message__intro {
  font-weight: 500;
  font-size: 15px;
  line-height: 2;
  color: rgba(255,255,255,.72);
  margin: 0 0 22px;
}
.closeup-message__body p {
  font-weight: 500;
  font-size: 17px;
  line-height: 1.95;
  color: #fff;
  margin: 0 0 18px;
}
.closeup-message__mark {
  background: var(--color-yellow);
  color: var(--color-dark);
  font-weight: 700;
  padding: 1px 8px;
  border-radius: 4px;
}
.closeup-message__mark--blue {
  background: var(--color-blue);
  color: #fff;
}
.closeup-message__body .closeup-message__cta-box {
  font-weight: 900;
  font-size: 19px;
  line-height: 1.6;
  color: #000;
  background: var(--color-yellow);
  border: 3px solid #fff;
  border-radius: 10px;
  padding: 18px 24px;
  margin: 30px 0 0;
  text-align: center;
  box-shadow: 5px 5px 0 rgba(0,0,0,.35);
}
.closeup-message__actions {
  display: flex;
  justify-content: center;
  margin: 40px 0 0;
}
.closeup-message__home-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-round);
  font-weight: 800;
  font-size: 17px;
  color: var(--color-dark);
  background: var(--color-yellow);
  padding: 18px 40px;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 6px 6px 0 var(--color-red);
}
.closeup-message__home-btn:hover { opacity: 0.92; }

.entry-body { font-weight: 500; }
.entry-body img { border: var(--border-comic); border-radius: 8px; margin: 16px 0; }
.entry-meta { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-bottom: 24px; }
.entry-nav { display: flex; justify-content: space-between; gap: 16px; margin-top: 40px; flex-wrap: wrap; }
.entry-nav a { font-weight: 800; text-decoration: none; border-bottom: 2px solid var(--color-red); }

.btn-text { font-weight: 800; text-decoration: none; color: var(--color-blue); }
.btn-text:hover { text-decoration: underline; }

@media (min-width: 769px) {
  .accent-strip,
  .site-header,
  .site-footer {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    box-sizing: border-box;
  }

  .site-header {
    position: relative;
    z-index: 210;
  }

  .hero {
    display: block;
    position: relative;
    z-index: 1;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-top: 0;
    aspect-ratio: 1180 / 560;
    min-height: clamp(320px, 47.46vw, 560px);
    background: var(--color-dark);
    overflow: hidden;
    isolation: isolate;
  }
  .hero__slides {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    order: unset;
    height: auto;
    margin: 0;
    border: none;
    border-radius: 0;
    box-shadow: none;
    overflow: hidden;
  }
  .hero__slide-bg {
    transform-origin: 50% 58%;
  }
  .hero__slide.is-active .hero__slide-bg {
    animation: hero-kenburns-pc 8s ease-out forwards;
  }
  @keyframes hero-kenburns-pc {
    from { transform: scale(1); }
    to { transform: scale(1.10); }
  }
  .hero__overlay {
    position: absolute;
    inset: 0;
    order: unset;
    justify-content: flex-end;
    align-items: flex-end;
    padding: clamp(32px, 5.5vw, 64px) clamp(16px, 4vw, 56px);
    background: linear-gradient(305deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.35) 40%, transparent 68%);
  }
  .hero__overlay-inner {
    width: min(100%, var(--wrap));
    margin-left: auto;
    align-items: flex-end;
    text-align: right;
  }
  .hero__badge {
    letter-spacing: 0.12em;
    padding: 6px 14px;
    border-radius: 6px;
    box-shadow: var(--shadow-comic);
    margin: 0 0 14px;
    align-self: center;
  }
  .hero__title-col {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero__title-row {
    display: flex;
    align-items: flex-end;
    gap: clamp(16px, 2.5vw, 32px);
    margin-top: 20px;
  }
  .hero__title {
    font-size: clamp(2rem, 5vw, 3.6rem);
    color: #fff;
    line-height: 1.12;
    margin: 0;
    align-self: stretch;
    text-align: right;
    text-shadow: 0 3px 16px rgba(0,0,0,.65);
  }
  .hero__mascot {
    display: block;
    width: clamp(110px, 13vw, 190px);
    height: auto;
    flex-shrink: 0;
    object-fit: contain;
    mix-blend-mode: lighten;
    filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.45));
  }
  .hero__title-accent {
    padding: 2px 14px;
    border: var(--border-comic);
    border-radius: 6px;
    box-shadow: 5px 5px 0 var(--color-dark);
    margin-top: 8px;
  }
  .hero__lead {
    display: block;
    font-weight: 700;
    color: #fff;
    max-width: 480px;
    margin: 24px 0 0;
    text-shadow: 0 2px 10px rgba(0,0,0,.8);
  }
  .hero__burst {
    top: 28px;
    right: auto;
    left: 32px;
    width: 104px;
    height: 104px;
    font-size: 17px;
    line-height: 1.05;
  }

  .section-yellow { padding: 60px 0; }
  #core-members { padding-top: 40px; }
  #news { padding-top: calc(60px + 40px); }
  .section-badge-row {
    gap: 21px;
    margin-bottom: 48px;
  }
  .section-badge__shadow {
    border-radius: 12px;
    transform: translate(8px, 8px);
  }
  .section-badge__label {
    border-width: 4px;
    border-radius: 12px;
    padding: 15px 36px;
    font-size: 51px;
  }
  .section-badge--compact .section-badge__label {
    padding: 14px 33px;
    font-size: 45px;
  }
  .section-sublabel {
    font-size: 20px;
    border-width: 3px;
    padding: 9px 20px;
    border-radius: 9px;
  }
  .section-sublabel--tilt { margin-bottom: 9px; }

  .scoreboard-card__inner {
    grid-template-columns: 1fr 1.18fr;
    gap: 40px;
    padding: 36px 38px;
  }
  .members-grid { grid-template-columns: repeat(3, 1fr); }
  .news-section__head { margin-bottom: 48px; }
  .news-section__foot { margin-top: 48px; }
  .news-section__more {
    font-size: 17px;
    padding: 16px 36px;
    box-shadow: 5px 5px 0 var(--color-dark);
  }
  .section-badge--news .section-badge__label,
  .section-badge__label--news {
    padding: 14px 33px;
    font-size: 45px;
  }
  .news-grid { grid-template-columns: repeat(3, 1fr); }

  .news-page-hero {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding: 48px 0 44px;
    box-sizing: border-box;
  }
  .news-page-hero .section-badge__shadow {
    border-radius: 8px;
    transform: translate(6px, 6px);
  }
  .news-page-hero .section-badge__label--news {
    padding: 12px 30px;
    font-size: 48px;
    border-width: 3px;
    border-radius: 8px;
  }
  .news-page-hero .section-sublabel {
    font-size: 15px;
    padding: 8px 15px;
    margin-bottom: 8px;
  }
  .news-page-hero__lead {
    font-size: 15px;
    margin-top: 20px;
    max-width: none;
  }
  .page-news__body { padding: 24px 0 0; }
  .page-news .news-grid { gap: 26px; }
  .page-news .news-card__media { height: 160px; }
  .page-news .news-card__title { font-size: 16px; }
  .page-news .pagination { margin-top: 40px; padding-bottom: 56px; }

  .closeup-intro { padding-top: 30px; }
  .closeup-hero {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    height: 520px;
    box-sizing: border-box;
  }
  .closeup-hero__tag { bottom: 110px; font-size: 16px; }
  .closeup-hero__tag--work { left: 30px; }
  .closeup-hero__tag--baseball { right: 30px; }
  .closeup-hero__center { width: 42%; }
  .closeup-hero__title { font-size: 30px; margin-top: 22px; }
  .closeup-profile { margin-top: -40px; }
  .closeup-profile__inner {
    grid-template-columns: auto 1fr;
    gap: 32px;
    padding: 26px 32px;
  }
  .closeup-profile__ruby {
    display: inline;
    margin-left: 10px;
    margin-top: 0;
  }
  .closeup-profile__meta {
    border-top: none;
    border-left: 3px dashed #d8dde0;
    padding-top: 0;
    padding-left: 32px;
  }
  .closeup-introduction__inner { padding: 26px 32px; }
  .closeup-introduction__body { font-size: 17px; }
  .closeup-introduction__card { margin: 48px auto 56px; }
  .closeup-schedule { padding-top: 40px; }
  .closeup-section-head__label { font-size: 30px; }
  .closeup-section-head__sub { display: inline; margin-top: 0; margin-left: 8px; }
  .closeup-timeline__item { grid-template-columns: 130px 1fr; gap: 20px; }
  .closeup-timeline__time span { font-size: 34px; }
  .closeup-timeline__card-inner { padding: 18px 24px; }
  .closeup-timeline__content--media-right {
    grid-template-columns: 1fr 280px;
    gap: 22px;
  }
  .closeup-timeline__content--media-left {
    grid-template-columns: 280px 1fr;
    gap: 22px;
  }
  .closeup-interview { padding-top: 66px; }
  .closeup-qa__inner { padding: 26px 30px; }
  .closeup-message {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    box-sizing: border-box;
  }
  .closeup-message__inner { padding: 56px 0; }
  .closeup-message__photo img { height: 300px; }

  .feature-band {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    box-sizing: border-box;
    padding: 64px 0;
  }
  .team-band + .feature-band {
    margin-top: 60px;
  }
  .feature-band__inner {
    grid-template-columns: 1fr 0.92fr;
    gap: 48px;
  }
  .feature-band__photo-wrap {
    max-width: 520px;
    margin-left: auto;
    margin-top: 0;
  }
  .feature-band__photo-frame img { height: 380px; }

  .gallery-band {
    padding-top: calc(60px + 60px);
    padding-bottom: 60px;
  }
  .gallery-band__grid-wrap {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding: 0 clamp(16px, 4vw, 56px);
    box-sizing: border-box;
    --gallery-cell-min: clamp(72px, 7.5vw, 100px);
    --gallery-gap: clamp(10px, 1.2vw, 12px);
  }
  .gallery-band__head {
    margin-bottom: 48px;
  }
  .gallery-band__head .section-badge-row {
    margin-bottom: 0;
  }
  .section-badge__label--gallery {
    font-size: 42px;
    padding: 12px 30px;
  }
}

@media (max-width: 768px) {
  .hero {
    display: block;
    height: calc(100dvh - var(--site-header-height, 56px));
    min-height: 240px;
  }
  .hero__slides {
    position: absolute;
    inset: 0;
    height: 100%;
  }
  .hero__slide {
    transition: opacity 0.7s ease;
  }
  .hero__slide.is-active {
    transition: opacity 0.7s ease;
  }
  .hero__slide-bg {
    display: none;
  }
  .hero__slide-media {
    display: block;
    height: 100%;
    width: auto;
    max-width: none;
    will-change: transform;
  }
  .hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    padding: 0;
    pointer-events: none;
  }
  .hero__overlay-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    width: 100%;
    height: 100%;
    padding: 0 max(16px, env(safe-area-inset-left, 0px)) max(20px, env(safe-area-inset-bottom, 0px));
    box-sizing: border-box;
  }
  .hero__badge {
    position: absolute;
    top: clamp(12px, 3vw, 18px);
    left: max(16px, env(safe-area-inset-left, 0px));
    z-index: 5;
  }
  .hero__title-row {
    display: flex;
    align-items: flex-end;
    gap: clamp(8px, 2.5vw, 14px);
    max-width: 100%;
    margin: 0;
  }
  .hero__title-col {
    flex: 1;
    min-width: 0;
  }
  .hero__title {
    position: static;
    margin: 0;
    font-size: clamp(2.2rem, 8.2vw, 2.9rem);
    line-height: 1.12;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85), 0 0 20px rgba(0, 0, 0, 0.45);
  }
  .hero__mascot {
    display: block;
    width: clamp(112px, 36vw, 156px);
    height: auto;
    flex-shrink: 0;
    object-fit: contain;
    mix-blend-mode: lighten;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.45));
  }
  .hero__title-accent {
    padding: 1px 10px;
    border-width: 2.5px;
    border-radius: 5px;
    box-shadow: 3px 3px 0 var(--color-dark);
    margin-top: 4px;
  }
  .hero__lead {
    display: block;
    margin: 14px 0 0;
    max-width: 100%;
    font-size: clamp(0.78rem, 3.4vw, 0.92rem);
    font-weight: 700;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.94);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85), 0 0 16px rgba(0, 0, 0, 0.4);
  }
  .accent-strip { display: none; }
  .site-header {
    position: sticky;
    top: 0;
    border-bottom-width: 3px;
  }
  .site-header__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    gap: 10px;
  }
  .site-header__logo { gap: 8px; min-width: 0; }
  .site-header__logo-mark {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
  }
  .site-header__logo-mark img { width: 20px; height: 20px; }
  .site-header__logo-ja { font-size: 0.88rem; line-height: 1.1; }
  .site-header__logo-en { font-size: 0.52rem; letter-spacing: 0.14em; }
  .site-header__menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    margin: 0;
    padding: 0;
    border: 2.5px solid var(--color-dark);
    border-radius: 8px;
    background: #fff;
    box-shadow: 2px 2px 0 var(--color-dark);
    cursor: pointer;
  }
  .site-header__menu-icon {
    display: block;
    position: relative;
    width: 18px;
    height: 2.5px;
    background: var(--color-dark);
    border-radius: 2px;
    transition: background 0.2s ease;
  }
  .site-header__menu-icon::before,
  .site-header__menu-icon::after {
    content: "";
    position: absolute;
    left: 0;
    width: 18px;
    height: 2.5px;
    background: var(--color-dark);
    border-radius: 2px;
    transition: transform 0.2s ease, top 0.2s ease;
  }
  .site-header__menu-icon::before { top: -6px; }
  .site-header__menu-icon::after { top: 6px; }
  .site-header.is-menu-open .site-header__menu-icon { background: transparent; }
  .site-header.is-menu-open .site-header__menu-icon::before {
    top: 0;
    transform: rotate(45deg);
  }
  .site-header.is-menu-open .site-header__menu-icon::after {
    top: 0;
    transform: rotate(-45deg);
  }
  .site-header__actions {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 16px 16px;
    background: #fff;
    border-bottom: 3px solid var(--color-dark);
    box-shadow: 0 8px 0 rgba(20, 24, 27, 0.08);
  }
  .site-header.is-menu-open .site-header__actions {
    display: flex;
    z-index: 201;
  }
  .site-header__nav {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
  .site-header__nav-link {
    display: block;
    padding: 14px 4px;
    font-size: 0.95rem;
    border-bottom: 2px solid #eceff1;
  }
  .site-header__nav-link.is-active::after { display: none; }
  .site-header__nav-link.is-active {
    color: var(--color-red);
    border-bottom-color: var(--color-red);
  }
  .site-header__ext {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    width: 100%;
    margin-top: 12px;
  }
  .site-header__recruit,
  .site-header__company {
    justify-content: center;
    width: 100%;
    padding: 12px 16px;
    font-size: 0.95rem;
  }
  body.is-nav-open { overflow: hidden; }
  #game-info {
    overflow-x: clip;
  }
  #game-info .scoreboard-card {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    box-sizing: border-box;
    overflow-x: hidden;
  }
  #game-info .scoreboard-card__inner {
    border-radius: 0;
    border-left: none;
    border-right: none;
    gap: 40px;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }
  #game-info .scoreboard-card__shadow {
    display: none;
  }
  .game-match__panel {
    padding: 18px 16px;
  }
  .game-match__footer {
    flex-wrap: wrap;
    row-gap: 10px;
  }
  .game-match__venue-badge,
  .game-match__playball {
    flex-shrink: 1;
    max-width: 100%;
  }
  .game-match__playball {
    font-size: 13px;
    padding: 8px 12px;
  }
  .game-match__note {
    width: 100%;
    white-space: normal;
    text-align: left;
    font-size: 0.6875rem;
  }
  .br-sp {
    display: inline;
  }
  .game-match__scoreboard { gap: 16px; }
  .game-match__versus { flex-direction: column; align-items: stretch; }
  .game-match__team--right { text-align: left; margin-left: 0; }
  .game-match--next .game-match__team--right .game-match__team-label { display: none; }
  .game-match--next .game-match__team--left .game-match__team-label { display: none; }
  .team-band__photo {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
  }
  .team-band__title { font-size: clamp(1.5rem, 6vw, 2rem); }
  .feature-band__photo-frame img { height: 300px; }
  .feature-band__burst { top: -12px; left: -8px; }
  .feature-band__burst-outer { width: 88px; height: 88px; }
  .feature-band__burst-mid { width: 76px; height: 76px; }
  .feature-band__burst-text { font-size: 20px; }
  .closeup-hero { height: auto; min-height: 360px; }
  .closeup-hero__panel { position: relative; width: 100%; height: 200px; clip-path: none; }
  .closeup-hero__panel--right { left: 0; }
  .closeup-hero__divider { display: none; }
  .closeup-hero__center {
    position: relative;
    left: auto;
    transform: none;
    width: 100%;
    height: auto;
    padding: 24px 16px 28px;
    background: var(--color-dark);
  }
  .closeup-hero__tag { bottom: 12px; font-size: 13px; padding: 6px 14px; }
  .closeup-profile { margin-top: 0; }
  .closeup-timeline__item { grid-template-columns: 1fr; }
  .closeup-timeline__time { flex-direction: row; gap: 8px; justify-content: center; }
  .closeup-timeline__time span { font-size: 26px; }
  .closeup-message { margin-top: 48px; }
  .closeup-message__photo img { height: 220px; }
  .closeup-qa__inner { padding: 18px 14px; }
  .closeup-qa__q,
  .closeup-qa__a { gap: 8px; }
  .closeup-qa__a { margin-top: 14px; }
  .closeup-qa__icon {
    width: 28px;
    height: 28px;
    font-size: 16px;
    border-width: 2px;
    border-radius: 5px;
  }
  .closeup-qa__question {
    margin-top: 2px;
    font-size: 1rem;
    line-height: 1.45;
  }
  .closeup-qa__answer {
    margin-top: 0;
    font-size: 15px;
    line-height: 1.85;
  }
  .closeup-qa__lead { font-size: 16px; }
  .gallery-tile--c1r2,
  .gallery-tile--c2r2,
  .gallery-tile--c2r3,
  .gallery-tile--c3r2,
  .gallery-tile--c3r3,
  .gallery-tile--c4r2 {
    grid-column: span 1;
    grid-row: span 2;
  }
  .gallery-tile--c2r3,
  .gallery-tile--c3r3 { grid-row: span 3; }
  .gallery-tile--c3r2,
  .gallery-tile--c4r2 { grid-column: span 2; }
}
@media (prefers-reduced-motion: reduce) {
  .hero__slide, .hero__slide.is-active { transition: none; }
  .hero__slide-bg { animation: none !important; transform: none !important; }
  .hero__slide-media { transition: none !important; transform: none !important; }
}


.site-shell {
  max-width: var(--wrap);
  margin: 0 auto;
  background: transparent;
  overflow: visible;
  min-height: 100vh;
}
.site-footer { margin-top: 0; border-top: 4px solid var(--color-yellow); text-align: left; }
.site-footer__inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.site-footer__brand-row { display: flex; align-items: center; gap: 12px; }
.site-footer__logo {
  width: 36px; height: 36px; background: #fff; border-radius: 8px;
  display: grid; place-items: center;
}
.site-footer__copy { margin: 0; font-family: var(--font-display); letter-spacing: 0.1em; opacity: 0.65; }

.news-page-hero {
  position: relative;
  background: var(--color-yellow);
  border-bottom: 4px solid var(--color-dark);
  padding: 32px 0 28px;
  overflow: hidden;
}
.news-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--halftone-dot);
  background-size: var(--halftone-size);
  opacity: var(--halftone-opacity);
  pointer-events: none;
}
.news-page-hero__head { position: relative; }
.news-page-hero .section-badge-row { margin-bottom: 0; }
.news-page-hero__lead {
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 16px 0 0;
  max-width: 640px;
}

.page-news__body { padding: 20px 0 0; }
.page-news .category-chips { margin-bottom: 8px; }
.page-news .category-chips__chip {
  font-family: var(--font-round);
  font-weight: 800;
  font-size: 13px;
  border: 2.5px solid var(--color-dark);
  padding: 8px 18px;
  border-radius: 999px;
  background: #fff;
  box-shadow: none;
  text-decoration: none;
  color: var(--color-dark);
}
.page-news .category-chips__chip.is-active {
  background: var(--color-dark);
  color: #fff;
  box-shadow: 3px 3px 0 var(--color-yellow);
}
.page-news .category-chips__chip:hover { opacity: 0.92; }
.page-news .news-grid { padding-top: 16px; }
.page-news .pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
  padding-bottom: 8px;
  flex-wrap: wrap;
}
.page-news .pagination__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  padding: 9px 17px;
  border: 2.5px solid var(--color-dark);
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  color: var(--color-dark);
  background: #fff;
}
.page-news .pagination__link.is-current {
  background: var(--color-dark);
  color: #fff;
  box-shadow: 3px 3px 0 var(--color-yellow);
}
.page-news .pagination__link.is-disabled {
  color: #9aa0a5;
  border-color: #d6dbde;
  background: #fff;
}
.page-news .pagination__link:not(.is-disabled):not(.is-current):hover { opacity: 0.9; }

.breadcrumb {
  padding: 18px 0 0;
  width: min(100% - 32px, var(--article));
  margin-inline: auto;
  font-family: var(--font-round);
  font-weight: 700;
  font-size: 0.75rem;
  color: #8a9197;
}
.breadcrumb a { color: #8a9197; text-decoration: none; }

.entry-header { padding: 0 0 8px; margin-bottom: 30px; }
.entry-header__meta { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; flex-wrap: wrap; }
.entry-header__badge {
  font-family: var(--font-display); font-weight: 700; font-size: 0.8rem;
  color: var(--color-dark); background: var(--color-yellow);
  border: 2.5px solid var(--color-dark); padding: 5px 16px;
  border-radius: 6px; transform: rotate(-2deg); box-shadow: var(--shadow-comic);
}
.entry-header__badge--game,
.entry-header__badge--practice,
.entry-header__badge--event,
.entry-header__badge--default {
  background: var(--color-yellow);
  color: var(--color-dark);
}
.entry-header__date { font-family: var(--font-display); color: #8a9197; }
.entry-header__title { font-weight: 900; font-size: clamp(1.6rem, 4vw, 2.4rem); line-height: 1.4; margin: 0; }
.entry-hero { margin: 28px 0; overflow: hidden; padding: 0; }
.entry-hero img { width: 100%; height: auto; max-height: 420px; object-fit: cover; }
.entry-card {
  background: #fff;
  border-radius: 28px;
  padding: 32px 22px 36px;
  box-shadow: 0 12px 32px rgba(20, 24, 27, 0.1);
}
.entry-body { font-size: 1.25rem; line-height: 2.1; color: #2a2e31; }
.entry-body p { margin: 0 0 1.6rem; }
@media (max-width: 768px) {
  .entry-body { font-size: 1.05rem; }
}
.entry-tags { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin: 24px 0 0; }
.entry-tags__label { font-family: var(--font-round); font-weight: 800; font-size: 0.75rem; color: #8a9197; }
.entry-tags__tag {
  font-family: var(--font-round); font-weight: 800; font-size: 0.75rem;
  background: var(--color-bg); border: 2px solid var(--color-dark);
  padding: 5px 13px; border-radius: 999px;
}
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px; font-weight: 900;
  text-decoration: none; background: #fff; border: 3px solid var(--color-dark);
  padding: 13px 28px; border-radius: 10px; box-shadow: 5px 5px 0 var(--color-dark);
}
.entry-back { text-align: center; margin: 32px 0; }
.entry-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 36px; }
.entry-nav__item {
  display: block; text-decoration: none; background: var(--color-bg);
  border: 2.5px solid var(--color-dark); border-radius: 8px; padding: 16px 20px;
}
.entry-nav__item--next { text-align: right; }
.entry-nav__label { font-family: var(--font-display); font-weight: 700; font-size: 0.7rem; color: #8a9197; display: block; margin-bottom: 6px; }
.entry-nav__title { font-weight: 900; font-size: 0.9rem; line-height: 1.5; }

@media (min-width: 769px) {
  .entry-card {
    border-radius: 36px;
    padding: 48px 48px 52px;
  }
}

@media (max-width: 768px) {
  .site-footer__inner { flex-direction: column; align-items: flex-start; }
  .entry-nav { grid-template-columns: 1fr; }
  .news-page-hero .section-sublabel { margin-top: 12px; }
}
