:root{
  --red: #d6001c;
  --text: #0f172a;
  --muted: rgba(15, 23, 42, .70);
  --line: rgba(15, 23, 42, .12);
  --soft: rgba(15, 23, 42, .04);
  --shadow: 0 14px 40px rgba(15, 23, 42, .10);
  --radius: 18px;
  --container: 1120px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  background:#fff;
  color: var(--text);
  line-height: 1.7;
}

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

.center{ text-align:center; }
.mt16{ margin-top:16px; }
.mt24{ margin-top:24px; }
.hint{ margin: 12px 0 0; font-size: 12px; color: var(--muted); }

/* Header */
.topbar{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.topbar__inner{
  width: min(var(--container), calc(100% - 24px));
  margin: 0 auto;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
}
.logo img{
  height: 44px;
  width: auto;
  display:block;
}
.menu{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content:center;
}
.menu a{
  text-decoration:none;
  color: var(--text);
  font-weight: 1000;
  letter-spacing: .10em;
  font-size: 12px;
  padding: 10px 8px;
  border-bottom: 2px solid transparent;
}
.menu a:hover{ border-bottom-color: var(--red); }
.menu__cta{
  text-decoration:none;
  background: var(--red);
  color: #fff;
  font-weight: 1000;
  letter-spacing: .10em;
  font-size: 12px;
  padding: 10px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow);
}

/* Hero */
.hero{
  position: relative;
  overflow: hidden;
  padding: 56px 0 64px;
}
.hero__bg{
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.35), rgba(255,255,255,.00)),
    url("https://picsum.photos/2400/1400?random=777") center/cover no-repeat;
}
.hero__inner{
  position: relative;
}
.hero__badges{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}
.pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 1000;
  letter-spacing: .12em;
  font-size: 12px;
  color: #fff;
  background: var(--red);
}
.pill--outline{
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.35);
}
.hero__title{
  margin: 16px 0 0;
  font-size: clamp(34px, 4.8vw, 72px);
  line-height: 1.05;
  letter-spacing: .06em;
  color: #fff;
  text-shadow: 0 20px 60px rgba(0,0,0,.45);
}
.hero__subtitle{
  display:block;
  margin-top: 10px;
  font-size: clamp(12px, 1.4vw, 16px);
  letter-spacing: .18em;
  opacity: .92;
}

/* Poem block on the image */
.poem{
  margin-top: 16px;
  width: min(760px, 100%);
  padding: 16px 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(0,0,0,.28);
  backdrop-filter: blur(10px);
  box-shadow: 0 16px 60px rgba(0,0,0,.25);
}
.poem p{
  margin:0;
  color: rgba(255,255,255,.94);
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.9;
}

/* Match card */
.matchcard{
  margin-top: 22px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(255,255,255,.35);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px;
}
.matchcard__row{
  display:grid;
  grid-template-columns: 1fr auto 1fr;
  align-items:center;
  gap: 10px;
}
.vs{
  font-weight: 1000;
  letter-spacing: .18em;
  color: var(--red);
}
.club{
  display:flex;
  align-items:center;
  gap: 12px;
}
.club--away{ justify-content:flex-end; text-align:right; }
.club__mark{
  width: 48px; height: 48px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--soft);
  position: relative;
  overflow:hidden;
}
.club__mark--home::before{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(135deg, rgba(214,0,28,.22), rgba(214,0,28,.06));
}
.club__mark--away::before{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(135deg, rgba(15,23,42,.18), rgba(15,23,42,.06));
}
.club__name{ font-weight: 1000; letter-spacing: .06em; }
.club__meta{ font-size: 12px; color: var(--muted); font-weight: 900; letter-spacing: .12em; margin-top: 2px; }

.matchcard__info{
  margin-top: 12px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.label{
  font-size: 11px;
  color: var(--muted);
  font-weight: 1000;
  letter-spacing: .16em;
}
.value{
  font-weight: 1000;
  letter-spacing: .04em;
}
.matchcard__actions{
  margin-top: 14px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 16px;
  border-radius: 999px;
  text-decoration:none;
  font-weight: 1000;
  letter-spacing: .10em;
  border: 1px solid var(--line);
  background:#fff;
  color: var(--text);
}
.btn--primary{
  background: var(--red);
  color: #fff;
  border-color: rgba(214,0,28,.35);
}
.btn--ghost{ background:#fff; }
.btn:hover{ transform: translateY(-1px); }

/* Sections */
.section{ padding: 70px 0; }
.section--alt{
  background: linear-gradient(180deg, rgba(15,23,42,.02), rgba(15,23,42,.00));
  border-top: 1px solid var(--soft);
  border-bottom: 1px solid var(--soft);
}
.section__head{
  display:flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.section__title{
  margin:0;
  font-size: clamp(22px, 2.6vw, 34px);
  letter-spacing: .14em;
  font-weight: 1000;
}
.section__desc{
  margin:0;
  color: var(--muted);
  font-weight: 900;
  letter-spacing: .10em;
}

/* Message Banner (画像置き換え後) */
.message-banner {
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.message-banner__img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== Player strip: auto rotation (marquee) ===== */
.player-strip {
  overflow: hidden; 
}
.player-strip__track.is-marquee {
  overflow: visible;
  scroll-snap-type: none;
  -webkit-overflow-scrolling: auto;
  
  /* ▼ 追加：すべての写真が一直線に並ぶように幅を拡張 ▼ */
  width: max-content; 
  
  /* ▼ 変更：6sだと早すぎるため、60sなどゆっくりに変更 ▼ */
  animation: playerMarquee 90s linear infinite;
  will-change: transform;
}

@keyframes playerMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); } 
}

@media (prefers-reduced-motion: reduce) {
  .player-strip__track.is-marquee {
    animation: none;
    transform: none;
  }
}

/* Profile */
.profile{
  display:grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 18px;
  align-items: start;
}
.profile__media{
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid var(--line);
  background: var(--soft);
  box-shadow: var(--shadow);
}
.profile__img{ width:100%; display:block; height:auto; }
.profile__name{
  margin: 0;
  font-size: 28px;
  font-weight: 1000;
  letter-spacing: .06em;
}
.profile__en{
  display:block;
  margin-top: 6px;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: .18em;
  font-weight: 900;
}
.profile__lead{ margin: 12px 0 0; color: var(--muted); font-weight: 700; }

.meta{
  margin-top: 14px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.meta__item{
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px;
  background: #fff;
}
.meta__k{
  font-size: 11px;
  color: var(--muted);
  font-weight: 1000;
  letter-spacing: .16em;
}
.meta__v{
  margin-top: 6px;
  font-weight: 1000;
  letter-spacing: .04em;
}
.grid2{
  margin-top: 14px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.card{
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}
.card--pad{ padding: 16px; }
.card__title{
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: .16em;
  color: var(--red);
  margin-bottom: 10px;
}
.list{ margin:0; padding-left: 18px; color: var(--muted); font-weight: 700; }
.mini{
  margin-top: 14px;
  display:flex;
  flex-wrap: wrap;
  gap: 8px;
}
.mini__tag{
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 1000;
  letter-spacing: .12em;
  font-size: 12px;
  background: var(--red);
  color: #fff;
}
.mini__tag--ghost{
  background: #fff;
  color: var(--text);
  border: 1px solid var(--line);
}

/* GAME INFO */
.gameinfo{ display:grid; gap: 14px; }
.gi-row{
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}
.mt24{ margin-top:24px; }

/* GUEST 欄 */
.guests-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 16px;
}
.guest-item {
  text-align: center;
}
.guest-item img {
  width: 70px; /* 100% から縮小 */
  height: 70px; /* 高さを指定して正方形を維持 */
  margin: 0 auto 10px auto; /* 左右マージン auto で中央寄せ */
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
  background: var(--soft);
  border: 1px solid var(--line);
}
.guest-name {
  font-weight: 900;
  font-size: 14px;
  letter-spacing: .05em;
  color: var(--text);
}

/* GAME INFO：TEAM RED/WHITE をリスト表現に */
.teams{
  display: grid;
  grid-template-columns: 1fr 1fr; /* PC：2列 */
  gap: 18px;
}

/* 各チームの箱 */
.team{
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

/* 見出し */
.team__head{
  background: var(--red);
  color: #fff;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,.2);
}
.team__head--white{
  background: #fff;
  color: var(--text);
  border-bottom: 1px solid var(--line);
}
.team__title{
  font-weight: 1000;
  letter-spacing: .12em;
  font-size: 22px;
  text-align: center;
}

/* セクション見出し（STAFF / PLAYER） */
.team__section{
  padding: 10px 16px;
  font-weight: 1000;
  letter-spacing: .12em;
  font-size: 12px;
  text-align: center;
  border-bottom: 1px solid var(--line);
  background: rgba(15,23,42,.02);
}

/* リスト本体 */
.teamlist{
  list-style: none;
  margin: 0;
  padding: 0;
}

/* 1行（写真 + POS/ROLE + 名前） */
.teamlist__row{
  display: grid;
  grid-template-columns: 80px 60px 1fr; /* 写真を80pxに拡大 / POS / 名前 */
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
}

/* 写真：大きめに修正 */
.teamlist__img{
  width: 80px;
  height: 80px;
  object-fit: cover;
  display: block;
  background: var(--soft);
}

/* POS/ROLE */
.teamlist__role{
  font-weight: 1000;
  letter-spacing: .10em;
  font-size: 12px;
  color: var(--text);
}

/* 名前 */
.teamlist__name{
  font-weight: 900;
  letter-spacing: .02em;
  font-size: 13px;
  color: var(--text);
  line-height: 1.25;
}
.teamlist__no{
  font-weight: 1000;
  color: var(--red);
  margin-right: 6px;
  letter-spacing: .10em;
}

.teamlist:last-child .teamlist__row:last-child{
  border-bottom: none;
}

/* SP：縦1列 */
@media (max-width: 980px){
  .teams{
    grid-template-columns: 1fr;
  }
  .team__title{
    font-size: 20px;
  }
}

/* Ticket / goods / news */
.imgframe{
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow:hidden;
  background: var(--soft);
  box-shadow: var(--shadow);
}
.imgframe img{ width:100%; display:block; height:auto; }

.bullets{ margin: 14px 0 0; padding-left: 18px; color: var(--muted); font-weight: 700; }

.status{
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px;
  background: linear-gradient(180deg, rgba(214,0,28,.06), rgba(214,0,28,0));
}
.status__badge{
  display:inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-weight: 1000;
  letter-spacing: .12em;
  font-size: 12px;
}
.btns{ display:flex; gap: 10px; flex-wrap: wrap; }

.hr{
  height:1px;
  background: var(--line);
  margin: 16px 0;
}

.schedule{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap: 10px;
}
.schedule li{
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px 12px;
  background: #fff;
  color: var(--muted);
  font-weight: 700;
}
.schedule b{ color: var(--text); }

.goods{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.goods__item{
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow:hidden;
  background:#fff;
  box-shadow: var(--shadow);
}
.goods__item img{
  width:100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display:block;
  background: var(--soft);
}
.goods__body{ padding: 12px; }
.goods__name{ font-weight: 1000; letter-spacing: .06em; }
.goods__price{ margin-top: 6px; color: var(--red); font-weight: 1000; letter-spacing: .10em; }

.news{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap: 10px;
}
.news__item{
  display:grid;
  grid-template-columns: 130px 1fr;
  gap: 12px;
  padding: 14px 14px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:#fff;
  box-shadow: var(--shadow);
}
.news__date{
  font-weight: 1000;
  letter-spacing: .10em;
  color: var(--muted);
}
.news__link{
  text-decoration:none;
  color: var(--text);
  font-weight: 1000;
  letter-spacing: .04em;
}
.news__link:hover{ color: var(--red); text-decoration: underline; }

/* PARTNERS */
.logos{
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;                 
  align-items: center;
}

.logos img{
  width: 100%;
  height: 60px;              
  object-fit: contain;       
  display: block;

  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}

/* Footer */
.footer{
  padding: 34px 0;
  border-top: 1px solid var(--line);
  background: #fff;
}
.footer__inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.footer__brand{
  font-weight: 1000;
  letter-spacing: .16em;
  color: var(--red);
}
.footer__copy{ margin-top: 8px; color: var(--muted); font-size: 12px; letter-spacing: .08em; }
.footer__sns{ display:flex; gap: 10px; }
.sns{
  width: 44px; height: 44px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius: 999px;
  border: 1px solid var(--line);
  text-decoration:none;
  color: var(--text);
  font-weight: 1000;
  background: #fff;
}
.sns:hover{ border-color: rgba(214,0,28,.45); color: var(--red); }

/* Responsive */
@media (max-width: 980px){
  .menu{ display:none; }
  .matchcard__row{ grid-template-columns: 1fr; gap: 12px; }
  .club--away{ justify-content:flex-start; text-align:left; }
  .matchcard__info{ grid-template-columns: 1fr; }
  .profile{ grid-template-columns: 1fr; }
  .meta{ grid-template-columns: 1fr; }
  .grid2{ grid-template-columns: 1fr; }
  .gi-row{ grid-template-columns: 1fr; }
  .teams{ grid-template-columns: 1fr; }
  .roster{ grid-template-columns: repeat(3, 1fr); }
  .goods{ grid-template-columns: repeat(2, 1fr); }
  .logos{ grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 520px){
  .roster{ grid-template-columns: repeat(2, 1fr); }
  .goods{ grid-template-columns: 1fr; }
  .logos{ grid-template-columns: repeat(2, 1fr); }
  /* GUEST欄 SP用調整 */
  .guests-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

/* キービジュアル：ヘッダー直下は画像だけ */
.kv{
  width: 100%;
  background: #fff;
}

.kv__img{
  width: 100%;
  height: auto;
  display: block;
}

/* KV①：ヘッダー直下は画像のみ */
.kv1{
  width: 100%;
  background: #fff;
}
.kv1__img{
  width: 100%;
  height: auto;
  display: block;
}

/* KV②：背景ビジュアル + センタリングされたストーリーのみ */
.kv2{
  position: relative;
  overflow: hidden;
  min-height: 78vh;         
  display: grid;
  place-items: center;
  background: #000;         
}

.kv2__bg{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.65), rgba(0,0,0,.35), rgba(0,0,0,.55)),
    url("/files/user/gameday/25_26/26_nishimura-retirement/other/13_large.jpg") center/cover no-repeat;
  transform: scale(1.02);
}

.kv2__inner{
  position: relative;
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  text-align: center;
  z-index: 1;
}

/* 枠なし：文字だけにする */
.story{
  border: none;
  background: transparent;
  box-shadow: none;
  padding: 0;
  border-radius: 0;
}

/* 文字だけなので可読性は text-shadow で確保 */
.story p{
  margin: 0;
  color: rgba(255,255,255,.98);
  font-weight: 800;
  letter-spacing: .03em;
  line-height: 2.05;
  font-size: clamp(16px, 1.4vw, 22px);
  text-shadow: 0 12px 36px rgba(0,0,0,.65);
}

/* スマホ最適化 */
@media (max-width: 520px){
  .kv2{ min-height: 72vh; }
  .story{ padding: 16px 14px; }
  .story p{ line-height: 1.95; }
}

/* 西村選手 画像ストリップ（テキスト無し） */
.player-strip{
  background: #0b0b0f;          
  padding: 24px 0;
}

.player-strip__track{
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0 24px;
}

/* 横に大きめの写真が並ぶ */
.player-strip__item{
  flex: 0 0 min(520px, 78vw);   
  margin: 0;
  scroll-snap-align: start;
  border-radius: 0;            
  overflow: hidden;
  background: #111;
}

/* 画像は四角にフィット */
.player-strip__item img{
  width: 100%;
  height: 320px;               
  object-fit: cover;
  display: block;
}

/* PCでさらに写真を大きく見せたい場合 */
@media (min-width: 980px){
  .player-strip__item img{ height: 360px; }
}

/* スマホは少し高さを落として見切れを減らす */
@media (max-width: 520px){
  .player-strip__track{ padding: 0 14px; gap: 12px; }
  .player-strip__item img{ height: 260px; }
}

/* ===== 角丸を全廃（最後に追記して上書き） ===== */
:root{
  --radius: 0px; 
}

/* 角丸を使いがちな要素を強制的に0に */
*{
  border-radius: 0 !important;
}

/* レスポンシブ */
@media (max-width: 980px){
  .logos{ grid-template-columns: repeat(3, 1fr); gap: 14px; }
}
@media (max-width: 520px){
  .logos{ grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .logos img{ height: 52px; }
}

/* ===== Animations: fade-in / scroll reveal ===== */
.fade-in{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .9s ease, transform .9s ease;
  will-change: opacity, transform;
}
.fade-in.is-visible{
  opacity: 1;
  transform: translateY(0);
}

/* KV: prevent layout jump while loading */
.kv__picture{ display:block; }
.kv__img{ display:block; width:100%; height:auto; }

/* Reduce motion */
@media (prefers-reduced-motion: reduce){
  .fade-in{
    transition: none;
    transform: none;
    opacity: 1;
  }
}


/* ===== Typography: Original font for EN/Numbers (large UI texts) ===== */
.font-en,
.menu a,
.section__title,
.label,
.card__title,
.team__title,
.team__section,
.profile__en,
.mini__tag,
.footer__brand{
  font-family: "CHIBAJETS AF Condensed", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.02em;
}

@media (max-width: 768px){
  .menu a{ letter-spacing: 0.015em; }
}

/* ===== Global font-size tuning (overall slightly larger) ===== */
html{
  font-size: 17px; 
}
@media (max-width: 768px){
  html{
    font-size: 16.5px;
  }
}

.section__title{
  font-size: clamp(22px, 4.2vw, 32px);
}
.menu a{
  font-size: 15px;
}
@media (max-width: 768px){
  .menu a{
    font-size: 14px;
  }
}

.ticket a,
.btn,
.button{
  font-size: 16px;
}

.label,
.mini__tag{
  font-size: 13px;
}

/* ===== EN original font: size bump ===== */
.menu a{
  font-size: 16px;
}
@media (max-width: 768px){
  .menu a{
    font-size: 15px;
  }
}

.section__title{
  font-size: clamp(24px, 4.6vw, 36px);
  line-height: 1.05;
}

.card__title,
.team__title,
.team__section,
.profile__en{
  font-size: clamp(18px, 3.2vw, 24px);
  line-height: 1.1;
}

.label,
.mini__tag{
  font-size: 14px;
}

/* debug: force size up */
.menu a { font-size: 18px !important; }
.section__title { font-size: 40px !important; line-height: 1.05 !important; }
.card__title, .team__title, .profile__en { font-size: 26px !important; }

/* ===== Footer SNS icons ===== */
.footer__sns{
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
}
.footer__sns .sns{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.35);
  color: inherit;
  text-decoration: none;
  transition: transform .2s ease, opacity .2s ease, background-color .2s ease;
}
.footer__sns .sns:hover{
  transform: translateY(-1px);
  opacity: .9;
  background-color: rgba(255,255,255,.08);
}
.footer__sns .sns__icon{
  width: 20px;
  height: 20px;
  display: block;
}

/* visually hidden */
.sr-only{
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* プロフィール画像のサイズ調整（追記分） */
.profile__media {
  max-width: 100%; /* 横長画像が綺麗に収まるよう 320px から変更 */
  margin: 0 auto;
}

/* プロフィール：箇条書きの黒丸を消す */
.list--bare {
  list-style: none;
  padding-left: 0;
}
.list--bare li {
  margin-bottom: 6px; /* 行間を少し開けて読みやすく */
  line-height: 1.5;
}

/* プロフィール：英語見出し横の日本語（経歴・代表歴） */
.card__title-ja {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.05em;
  margin-left: 6px;
  vertical-align: 1px;
}

/* プロフィール：経歴・代表歴を縦積みにする */
.profile-history {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 14px;
}

/* =========================================
   追加・修正用スタイル
   ========================================= */

/* --- TOPICS --- */
.topics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 2列から3列に変更 */
  gap: 20px;
  margin-top: 16px;
}
.topic-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  /* 画像単体ではなく、アイテム全体で幅を絞って要素を揃える */
  width: 100%; /* 3列にフィットするよう 85% から変更 */
  margin: 0 auto;
}
.topic-img {
  width: 100%; /* 親（topic-item）の幅に合わせる */
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid var(--line);
  background: var(--soft);
}
.topic-content {
  padding: 0;
}
.topic-title {
  font-size: 15px;
  font-weight: 1000;
  color: var(--text);
  margin: 0 0 6px 0;
  letter-spacing: .05em;
  border-bottom: 2px solid var(--red);
  display: inline-block;
  padding-bottom: 4px;
}
.topic-price {
  font-size: 14px;
  font-weight: 1000;
  color: var(--red);
  margin-bottom: 6px;
  letter-spacing: .05em;
}
.topic-desc {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* TOPICS: タブレット（中画面）用に追加 */
@media (max-width: 980px) {
  .topics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 既存のスマホ用指定はそのまま活かします */
@media (max-width: 520px) {
  .topics-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .topic-item {
    width: 100%; /* スマホ時は幅いっぱいに広げる */
  }
}

@media (max-width: 520px) {
  .topics-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .topic-item {
    width: 100%; /* スマホ時は幅いっぱいに広げる */
  }
}

/* --- ACCESS --- */
/* Google MAP専用ボタンのホバー・サイズ調整 */
.access-btn-google {
  display: inline-block;
  transition: opacity 0.2s;
}
.access-btn-google:hover {
  opacity: 0.7;
}
.access-btn-google img {
  width: 100%;
  max-width: 220px;
  height: auto;
  display: block;
}

/* --- PARTNERS（ロゴサイズの強弱） --- */
.logos-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}

.logos-wrapper img {
  display: block;
  object-fit: contain;
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}

/* 大：1つ */
.logo-large img { height: 90px; width: auto; }

/* 中：3つ */
.logos-medium { display: flex; justify-content: center; flex-wrap: wrap; gap: 24px; }
.logos-medium img { height: 50px; width: auto; }

/* 小：7つ */
.logos-small { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; }
.logos-small img { height: 30px; width: auto; }

@media (max-width: 520px) {
  .logo-large img { height: 60px; }
  .logos-medium img { height: 35px; gap: 16px; }
  .logos-small img { height: 22px; gap: 12px; }
}

/* =========================================
   ご依頼内容の追加修正
   ========================================= */

/* 1. RULES & MANNERS の上のスペース調整
  （HTMLの閉じタグ修正により元々の余白は復活しますが、さらに少し余裕を持たせます） */
#rules {
  margin-top: 24px;
}

/* 2. ACCESS メイン画像のPCサイズ調整 (PC表示時のみ横幅を約2/3にし、中央寄せ) */
@media (min-width: 981px) {
  .access-map-main {
    width: 66.6%;
    margin: 0 auto;
  }
}

/* 3. Ticket Sales Schedule の枠内グラデーションの統一
  （赤いグラデーションを上書きし、他の要素と同じ薄いグレーの背景に変更） */
.status {
  background: var(--soft) !important;
}

/* =========================================
   今回の追加・修正用スタイル
   ========================================= */

/* --- COMING SOON ボックス --- */
.coming-soon-box {
  background: var(--soft);
  border: 1px dashed var(--line);
  padding: 32px 16px;
  text-align: center;
}
.coming-soon-text {
  font-size: 20px;
  font-weight: 1000;
  letter-spacing: .10em;
  color: var(--muted);
  margin-bottom: 8px;
}
.coming-soon-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* --- TOPICSのスマホ表示区切り --- */
@media (max-width: 520px) {
  .topics-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .topic-item {
    width: 100%;
    border-bottom: 1px dashed var(--line);
    padding-bottom: 24px;
  }
  .topic-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}

/* =========================================
   チケットスケジュール & ボタン強調
   ========================================= */

/* スケジュール表の構造 */
.ticket-schedule {
  margin: 16px 0 32px;
  border: 1px solid var(--line);
}

.ticket-schedule__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.ticket-schedule__item:last-child {
  border-bottom: none;
}

/* ランク（左側） */
.ticket-schedule__rank {
  font-weight: 1000;
  font-size: 15px;
  letter-spacing: 0.05em;
}

/* 日時（右側） */
.ticket-schedule__date {
  font-family: "CHIBAJETS AF Condensed", sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--text);
}

.ticket-schedule__date span {
  font-size: 14px;
  margin: 0 4px;
}

/* 一般販売の強調（背景を少し変えて枠を赤く） */
.ticket-schedule__item--highlight {
  background: rgba(214, 0, 28, 0.04);
  position: relative;
}
.ticket-schedule__item--highlight .ticket-schedule__rank {
  color: var(--red);
}
.ticket-schedule__item--highlight .ticket-schedule__date {
  color: var(--red);
  font-weight: bold;
}

/* ボタンエリアの強調 */
.ticket-cta {
  text-align: center;
  padding: 24px;
  background: var(--soft);
  border-top: 1px solid var(--line);
}

.ticket-cta__text {
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 16px;
  color: var(--muted);
}

/* ボタンをさらに大きく、目立たせる */
.btn--large {
  width: 100%;
  max-width: 400px;
  font-size: 18px !important;
  padding: 18px 24px !important;
  box-shadow: 0 8px 20px rgba(214, 0, 28, 0.25);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn--large:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(214, 0, 28, 0.35);
}

/* スマホ調整 */
@media (max-width: 520px) {
  .ticket-schedule__item {
    padding: 12px 14px;
  }
  .ticket-schedule__rank {
    font-size: 14px;
  }
  .ticket-schedule__date {
    font-size: 19px;
  }
}