.head-left {
  display: flex; align-items: center; gap: 14px;
  min-width: 0;
  flex: 1 1 auto;
}
.back-top {
  font-family: var(--f-hl); font-weight: 600;
  text-transform: uppercase; letter-spacing: .14em;
  font-size: 13px;
  color: var(--ink); opacity: .7;
  display: inline-flex; align-items: center; gap: 6px;
  min-height: 44px;
  padding: 0 6px;
  transition: color .15s, opacity .15s;
}
.back-top:hover { opacity: 1; color: var(--orange); }
.back-top .arrow { font-size: 16px; line-height: 1; }
@media (max-width: 640px) {
  .back-top { font-size: 11px; letter-spacing: .1em; }
  .back-top .label-long { display: none; }
}

.team-hero {
  margin-top: 68px;
  position: relative;
  background: var(--paper);
}
.team-hero .photo {
  aspect-ratio: 3 / 2;
  background-size: cover; background-position: center;
  background-color: #0a0a18;
}
.team-hero .photo.is-empty {
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-faint);
  font-family: var(--f-mono); font-size: 13px;
  letter-spacing: .15em; text-transform: uppercase;
  background: repeating-linear-gradient(135deg, #e8eaf0 0 12px, #f2f3f7 12px 24px);
}
.team-hero .meta {
  padding: 32px 24px 40px;
  text-align: center;
}
.team-hero .meta .gen-tag {
  display: inline-block;
  padding: 4px 14px;
  font-family: var(--f-body); font-weight: 700;
  font-size: 12px;
  color: #fff;
  letter-spacing: .14em;
  border-radius: 3px;
  margin-bottom: 14px;
}
.team-hero .meta .gen-tag.gen-w { background: var(--orange); }
.team-hero .meta .gen-tag.gen-m { background: var(--blue); }
.team-hero .meta .country {
  display: block;
  font-family: var(--f-hl); font-weight: 700;
  font-size: clamp(36px, 7vw, 64px);
  letter-spacing: .04em;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  line-height: 1;
}
.team-hero .meta .ja {
  display: block;
  margin-top: 10px;
  font-family: var(--f-body); font-weight: 700;
  font-size: 18px;
  color: var(--ink);
}
.team-hero .meta .rank-row {
  margin-top: 16px;
  display: inline-flex; align-items: center; gap: 8px;
}
.team-hero .meta .rank {
  display: inline-block;
  padding: 6px 14px;
  font-family: var(--f-mono); font-size: 13px;
  color: var(--ink-mute);
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 4px;
}
.team-hero .meta .host-badge {
  display: inline-block;
  padding: 6px 14px;
  font-family: var(--f-hl); font-weight: 600;
  font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  border: 1px solid var(--orange);
  border-radius: 4px;
}

.team-body { padding: 72px 0; }
.text-wrap {
  max-width: 760px; margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 640px) {
  .team-body { padding: 56px 0; }
  .text-wrap { padding: 0 20px; }
}
.team-body .lead {
  font-family: var(--f-hl); font-weight: 700;
  font-size: clamp(22px, 3.4vw, 32px);
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 40px;
  letter-spacing: -.005em;
}
.team-body .lead span { display: block; }
.team-body .lead span + span { color: var(--ink-mute); margin-top: 4px; }
.team-body .body p {
  font-size: 15px;
  line-height: 1.95;
  color: var(--ink);
  margin-bottom: 1.2em;
}
.team-body .body p:last-child { margin-bottom: 0; }
.team-body .body p a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.team-body .body p a:hover { opacity: .8; }

.team-staff {
  margin-top: 56px;
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
}
.team-staff h2 {
  font-family: var(--f-hl); font-weight: 700;
  font-size: 18px; letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.team-staff p {
  font-size: 13px;
  color: var(--ink-mute);
}

.other-teams {
  border-top: 1px solid var(--line);
  padding: 72px 0;
  background: var(--paper);
}
.other-teams .sec-title {
  text-align: center;
  font-family: var(--f-hl); font-weight: 700;
  font-size: 14px; letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 40px;
}

.loading {
  padding: 200px 24px;
  text-align: center;
  font-family: var(--f-mono); font-size: 13px;
  color: var(--ink-faint);
  letter-spacing: .1em;
}
.not-found {
  padding: 160px 24px;
  text-align: center;
}
.not-found h2 {
  font-family: var(--f-hl); font-weight: 700;
  font-size: 28px;
  margin-bottom: 14px;
}
.not-found p {
  color: var(--ink-mute); font-size: 14px;
  margin-bottom: 24px;
}
.not-found a {
  display: inline-block;
  padding: 12px 28px;
  font-family: var(--f-hl); font-weight: 600;
  font-size: 13px; letter-spacing: .12em;
  text-transform: uppercase;
  border: 1.5px solid var(--ink);
  border-radius: 8px;
  transition: background .15s, color .15s;
}
.not-found a:hover { background: var(--ink); color: #fff; }

.team-hero .photo {
  aspect-ratio: auto;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 56px 24px;
  overflow: hidden;
  isolation: isolate;
}

.team-hero .photo::before,
.team-hero .photo::after {
  display: none;
}

.news-cover {
  position: relative;
  z-index: 1;
  max-width: 900px;
  text-align: center;
  color: var(--white);
}
.news-headline {
  font-family: var(--f-hl); font-weight: 700;
  font-size: clamp(24px, 4.2vw, 40px);
  line-height: 1.4;
  letter-spacing: .02em;
  margin: 0 auto 24px;
  max-width: 70%;
  color: var(--white);
  text-shadow:
    0 2px 4px rgba(0,0,0,.85),
    0 4px 14px rgba(0,0,0,.70),
    0 0 24px rgba(0,0,0,.45);
  text-align: center;
}
.news-headline span {
  display: inline-block;
  white-space: nowrap;
  margin: 0;
}
.news-headline span.wraps {
  display: inline;
  white-space: normal;
  margin: 0;
}
.news-tags {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;

  padding: 10px 60px;
  background: linear-gradient(90deg,
    rgba(0,0,0,0) 0,
    rgba(0,0,0,.55) 60px,
    rgba(0,0,0,.55) calc(100% - 60px),
    rgba(0,0,0,0) 100%);
}

.news-tags .news-date {
  font-family: var(--f-mono); font-weight: 500;
  font-size: 13px;
  color: rgba(255,255,255,.92);
  text-shadow: 0 2px 6px rgba(0,0,0,.4);
}
.news-tags .news-cat {
  font-family: var(--f-hl); font-weight: 600;
  font-size: 11px;
  text-transform: uppercase; letter-spacing: .15em;
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,.45);
  color: var(--white);
  background: rgba(255,255,255,.10);
  text-align: center;
}
.news-tags .news-cat.cat-update {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}
.news-tags .news-cat.cat-match {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}
.news-tags .news-cat.cat-result {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}
.news-tags .news-src {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--f-mono); font-weight: 500;
  font-size: 10px;
  letter-spacing: .08em;
  padding: 3px 8px;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--ink-mute);
  white-space: nowrap;
}
.news-tags .news-src::before {
  content: '';
  width: 6px; height: 6px;
  background: currentColor;
  border-radius: 50%;
  opacity: .55;
}
.news-tags .news-src.src-jva   { color: #5a4d1f; background: #fff7d8; border-color: #e8d77a; }
.news-tags .news-src.src-vnl   { color: #2a3aff; background: #eef0ff; border-color: #b8c0ff; }
.news-tags .news-src.src-osaka { color: #c33400; background: #fff0e8; border-color: #ffc1a3; }

.team-hero .meta { display: none; }

.news-expand-card {
  margin: 0;
  padding: 28px 4px;
  border-top: 1px solid var(--line);
  background: transparent;
  text-align: center;
}
.news-expand-card:first-of-type {

  border-top: 0;
  padding-top: 0;
}
.news-expand-card + .news-expand-card { margin-top: 0; }
.news-expand-card:last-of-type { border-bottom: 1px solid var(--line); }
.news-expand-title-main {
  font-family: var(--f-hl); font-weight: 700;
  font-style: italic;
  font-size: clamp(18px, 3vw, 24px);
  line-height: 1.4;
  letter-spacing: .01em;
  margin: 0 0 20px;

  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  text-transform: none;
}
.news-expand {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.news-expand-btn {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-hl); font-weight: 600;
  text-transform: uppercase; letter-spacing: .12em;
  font-size: 14px;
  padding: 14px 26px;
  border-radius: 8px;
  min-width: 200px;
}
.news-expand-btn-label::before { content: "詳細を見る"; }
.news-expand.is-open .news-expand-btn-label::before { content: "閉じる"; }

.news-expand-body {
  display: grid;
  grid-template-rows: 0fr;
  width: 100%;
  transition: grid-template-rows .4s cubic-bezier(.4,.0,.2,1);
}
.news-expand.is-open .news-expand-body {
  grid-template-rows: 1fr;
}
.news-expand-body-inner {
  min-height: 0;
  overflow: hidden;
  opacity: 0;
  text-align: left;
  padding-bottom: 24px;
  transition: opacity .3s ease .05s;
}
.news-expand.is-open .news-expand-body-inner { opacity: 1; }
.news-expand-body p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--ink);
  margin: 0 0 1em;
}
.news-expand-body p:last-child { margin-bottom: 0; }
.news-expand-body p strong {
  font-weight: 700;
  color: var(--orange);
  letter-spacing: .04em;
}
.news-expand-photo {
  margin: 0 0 18px;
  border-radius: 6px;
  overflow: hidden;
  background: var(--paper);
}
.news-expand-photo img {
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 640px) {
  .news-expand { margin: 22px 0; }
  .news-expand-summary { padding: 16px 48px 16px 18px; }
  .news-expand-body { padding: 20px 18px 22px; }
}

.news-cta {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.news-cta .btn {
  min-width: 280px;
  text-align: center;
  justify-content: center;
}

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-hl); font-weight: 600;
  text-transform: uppercase; letter-spacing: .12em;
  font-size: 14px;
  padding: 14px 24px;
  border: 1.5px solid var(--ink);
  background: var(--white);
  color: var(--ink);
  border-radius: 8px;
  text-decoration: none;
  transition: background .18s, border-color .18s, color .18s, transform .15s, box-shadow .18s;
}
.btn:hover {
  background: var(--ink); color: var(--white); border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(6,0,34,.18);
}
.btn.btn-primary {
  background: var(--grad);
  background-size: 200% 100%;
  background-position: 0% 50%;
  border: 0;
  color: var(--white);
  padding: 15px 26px;
  position: relative;
  transition: background-position .35s ease, transform .15s, box-shadow .18s;
}
.btn.btn-primary:hover {
  background-position: 100% 50%;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(255,72,0,.32);
}
.btn .arrow {
  display: inline-block; transition: transform .15s;
}
.btn:hover .arrow { transform: translateX(3px); }

.site-head .head-left .small:has(#ctx-title) {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}

@media (max-width: 640px) {
  .team-hero .photo { min-height: 280px; padding: 40px 20px; }
  .news-cta .btn { width: 100%; min-width: 0; }
}
