:root{
  --bg:#fbfbfb;
  --panel:#ffffff;
  --text:#111;
  --muted:#666;
  --line:#111;
  --blue:#3c67ff;
  --sat:#eef4ff;
  --sun:#fff0f2;
  --sat-text:#1d4ed8;
  --sun-text:#dc2626;
  --shadow:0 14px 30px rgba(0,0,0,.08);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:system-ui,-apple-system,BlinkMacSystemFont,"Hiragino Sans","Yu Gothic",sans-serif;
  background:
    radial-gradient(circle at top left, rgba(60,103,255,.06), transparent 28%),
    radial-gradient(circle at bottom right, rgba(138,88,255,.06), transparent 26%),
    var(--bg);
  color:var(--text);
}
img{display:block;max-width:100%}
a{color:inherit;text-decoration:none}
button,input{font:inherit}
button{touch-action:manipulation}

.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  height:68px;
  padding:0 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  background:rgba(251,251,251,.94);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(17,17,17,.15);
}
.brand{display:flex;flex-direction:column;gap:2px}
.brand__title{
  font-size:clamp(1.5rem,4vw,2.05rem);
  line-height:1;
  font-weight:900;
  letter-spacing:.02em;
}
.brand__tagline{
  font-size:.78rem;
  letter-spacing:.16em;
  color:#555;
}

.menu-button{
  width:54px;
  height:44px;
  border:0;
  background:transparent;
  display:grid;
  place-items:center;
  gap:4px;
  padding:0;
  cursor:pointer;
}
.menu-button span{
  width:32px;
  height:4px;
  border-radius:999px;
  background:#111;
  display:block;
}

.drawer-backdrop{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.18);
  opacity:0;
  pointer-events:none;
  transition:opacity .2s ease;
  z-index:60;
}
.drawer{
  position:fixed;
  top:68px;
  right:10px;
  width:min(260px, calc(100vw - 20px));
  background:var(--panel);
  border:2px solid #111;
  border-radius:18px;
  box-shadow:var(--shadow);
  padding:10px;
  transform:translateY(-8px);
  opacity:0;
  pointer-events:none;
  transition:opacity .2s ease, transform .2s ease;
  z-index:70;
}
.drawer a{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 12px;
  border-radius:12px;
  font-weight:800;
}
.drawer a:hover{background:#f4f4f4}
.drawer.is-open,
.drawer-backdrop.is-open{
  opacity:1;
  pointer-events:auto;
}
.drawer.is-open{transform:translateY(0)}

.page{
  width:min(1080px, calc(100% - 18px));
  margin:0 auto;
  padding:16px 0 56px;
}
.section{margin-top:24px}
.section-title{
  margin:0 0 14px;
  text-align:center;
  font-size:clamp(1.35rem,3vw,1.95rem);
  font-weight:900;
  letter-spacing:.04em;
}
.section-title--top{margin-bottom:14px}

.hero{
  display:grid;
  gap:12px;
  justify-items:center;
}
.hero__frame{
  width:min(100%, 760px);
  aspect-ratio:1.57 / 1;
  padding:0;
  border:3px solid #111;
  border-radius:2px;
  background:#fff;
  overflow:hidden;
  cursor:pointer;
  box-shadow:var(--shadow);
}
.hero__frame img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.answer-form{
  display:flex;
  align-items:center;
  gap:8px;
}
.answer-form input{
  width:min(58vw,260px);
  height:44px;
  border:3px solid #111;
  background:#fff;
  outline:none;
  text-align:center;
  border-radius:2px;
}
.answer-form button,
.button-outline,
.report-link{
  height:44px;
  padding:0 18px;
  border:3px solid #111;
  background:#111;
  color:#fff;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:2px;
}
.hero__note{
  margin:0;
  text-align:center;
  line-height:1.65;
  font-size:.92rem;
}
.hero__note span{
  text-decoration:underline;
  font-weight:700;
}

.report-area{
  display:none;
  flex-direction:column;
  align-items:center;
  gap:8px;
  margin-top:-2px;
}
.report-area.is-visible{display:flex}
.report-area__text{
  margin:0;
  text-align:center;
  font-size:.9rem;
  line-height:1.5;
  font-weight:700;
}

.ticket{padding-top:4px}
.ticket-nav{
  display:grid;
  grid-template-columns:46px 1fr 46px;
  align-items:stretch;
  gap:0;
  margin:0 0 10px;
  border:3px solid #111;
  background:#fff;
  box-shadow:var(--shadow);
}
.ticket-nav__arrow{
  border:0;
  background:#fff;
  font-size:1.5rem;
  font-weight:900;
  cursor:pointer;
  min-height:72px;
}
.ticket-nav__center{
  display:grid;
  place-items:center;
  padding:8px 10px;
  border-left:3px solid #111;
  border-right:3px solid #111;
  text-align:center;
}
.ticket-nav__date{
  font-size:1.15rem;
  font-weight:900;
  letter-spacing:.03em;
}

.week-strip{
  display:grid;
  grid-template-columns:repeat(7, minmax(0, 1fr));
  gap:0;
  margin:0 0 12px;
  border:3px solid #111;
  background:#fff;
  box-shadow:var(--shadow);
}
.day-box{
  min-height:72px;
  border:0;
  border-right:2px solid #111;
  background:#fff;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:3px;
  cursor:pointer;
  padding:12px 4px 6px;
  position:relative;
  user-select:none;
}
.day-box:last-child{border-right:0}
.day-box__monthday{
  font-size:1rem;
  font-weight:900;
  line-height:1;
}
.day-box__weekday{
  font-size:.78rem;
  font-weight:800;
  line-height:1;
  color:#444;
}
.day-box.is-sat{
  background:var(--sat);
  color:var(--sat-text);
}
.day-box.is-sun{
  background:var(--sun);
  color:var(--sun-text);
}
.day-box.is-active{
  background:#111;
  color:#fff;
}
.day-box.is-active .day-box__weekday{
  color:rgba(255,255,255,.9);
}
.day-box.is-today{
  border:3px solid var(--blue);
  box-shadow: inset 0 0 0 2px rgba(60,103,255,.2), 0 0 0 2px rgba(60,103,255,.12);
  z-index:1;
}
.day-box.is-today::before{
  content:"TODAY";
  position:absolute;
  top:4px;
  left:50%;
  transform:translateX(-50%);
  padding:2px 7px;
  border-radius:999px;
  background:var(--blue);
  color:#fff;
  font-size:.58rem;
  font-weight:900;
  letter-spacing:.08em;
  line-height:1;
  white-space:nowrap;
}
.day-box.is-today.is-active::before{
  background:#fff;
  color:#111;
}

.ticket-meta{
  display:grid;
  justify-items:center;
  gap:4px;
  margin-bottom:16px;
}
.ticket-meta__status{font-weight:700}
.ticket-meta__updated,
.ticket-meta__source{
  font-size:.9rem;
  color:var(--muted);
}

.ticket-list{
  display:grid;
  gap:14px;
}
.ticket-card{
  border:2px solid #111;
  background:rgba(255,255,255,.97);
  box-shadow:var(--shadow);
  padding:14px;
  border-radius:4px;
}
.ticket-card__inner{
  display:grid;
  grid-template-columns:100px minmax(0,1fr);
  gap:14px;
  align-items:start;
}
.ticket-card__visual{
  display:block;
}
.ticket-card__poster{
  width:100px;
  aspect-ratio:.74 / 1;
  object-fit:cover;
  border:1px solid rgba(17,17,17,.2);
  background:#ddd;
}
.ticket-card__body{min-width:0}
.ticket-card__title-link{
  display:inline-block;
}
.ticket-card__title{
  margin:0;
  font-size:1.05rem;
  line-height:1.25;
  font-weight:900;
}
.ticket-card__catch{
  margin:6px 0 10px;
  font-size:.92rem;
  font-weight:800;
  line-height:1.4;
}
.ticket-card__detail{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:2px solid #111;
  padding:7px 10px;
  margin-bottom:12px;
  background:#fff;
  font-size:.82rem;
  font-weight:800;
}

.slot-grid{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.slot-box{
  width:86px;
  min-height:72px;
  border:3px solid #111;
  background:#fff;
  display:grid;
  place-items:center;
  gap:2px;
  padding:8px 6px;
  cursor:pointer;
  text-align:center;
  transition:transform .15s ease, box-shadow .15s ease;
}
.slot-box:hover{
  transform:translateY(-2px);
  box-shadow:0 8px 16px rgba(0,0,0,.06);
}
.slot-box__mark{
  font-size:2rem;
  line-height:1;
  font-weight:900;
}
.slot-box__time{
  font-size:.8rem;
  line-height:1;
  font-weight:700;
}
.slot-box--more{
  background:#111;
  color:#fff;
}

.allgame .game-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:14px;
}
.game-card{
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(17,17,17,.14);
  background:#fff;
  box-shadow:var(--shadow);
  min-height:100%;
}
.game-card__thumb{
  width:100%;
  aspect-ratio:16 / 9;
  object-fit:cover;
  background:#e6e6e6;
}
.game-card__body{padding:14px}
.game-card__title{
  margin:0;
  font-size:1.05rem;
  font-weight:900;
  line-height:1.35;
}
.game-card__catch{
  margin:8px 0 14px;
  color:var(--muted);
  font-size:.92rem;
  line-height:1.5;
}
.game-card__meta{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  align-items:center;
}
.game-card__badge{
  font-size:.78rem;
  font-weight:800;
  padding:6px 9px;
  border-radius:999px;
  background:#111;
  color:#fff;
}
.game-card__badge--sub{
  background:#ececec;
  color:#111;
}
.game-card__more{
  margin-left:auto;
  font-size:.82rem;
  font-weight:800;
  color:var(--blue);
}

.about-panel{
  border:2px solid #111;
  background:#fff;
  box-shadow:var(--shadow);
  border-radius:18px;
  padding:18px;
  max-width:920px;
  margin:0 auto;
}
.about-panel__lead{
  margin:0 0 10px;
  font-weight:900;
  line-height:1.7;
}
.about-panel__text{
  margin:0;
  color:var(--muted);
  line-height:1.8;
}

.goods-panel{
  border-radius:28px;
  padding:18px;
  background:linear-gradient(135deg, rgba(138,88,255,.96), rgba(103,215,255,.92));
  box-shadow:var(--shadow);
}
.goods-panel__title{
  margin-bottom:12px;
  text-align:center;
  font-size:1.2rem;
  font-weight:900;
  color:#111;
}
.goods-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(240px, 1fr));
  gap:12px;
  justify-content:center;
}
.goods-card{
  border-radius:18px;
  overflow:hidden;
  background:rgba(255,255,255,.96);
  box-shadow:0 10px 22px rgba(0,0,0,.08);
}
.goods-card img{
  width:100%;
  aspect-ratio:.82 / 1;
  object-fit:cover;
  background:#e6e6e6;
}
.goods-card__text{
  padding:10px;
  min-height:104px;
  font-size:.82rem;
  line-height:1.45;
  font-weight:800;
  color:#111;
}
.goods-cta{
  display:grid;
  place-items:center;
  margin-top:14px;
}
.button-outline{
  min-width:150px;
  background:#fff;
  color:#111;
}

.more-panel{
  margin-top:10px;
  border:2px solid #111;
  background:#fff;
  border-radius:4px;
  padding:12px;
  box-shadow:var(--shadow);
}
.more-panel__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:10px;
}
.more-panel__title{
  font-size:.95rem;
  font-weight:900;
}
.more-panel__close{
  border:2px solid #111;
  background:#111;
  color:#fff;
  padding:8px 12px;
  border-radius:2px;
  font-weight:800;
  cursor:pointer;
}
.more-panel__list{
  display:grid;
  gap:10px;
}
.more-item{
  border:2px solid #111;
  background:#fff;
  padding:10px 12px;
  display:grid;
  grid-template-columns:1fr auto;
  gap:8px 12px;
  align-items:center;
  cursor:pointer;
}
.more-item__time{
  font-weight:900;
}
  
.more-item__status{
  font-weight:900;
}

/* ○△× 色 */
.more-item__status.is-sale{color:#16a34a;}   /* 緑 */
.more-item__status.is-few{color:#eab308;}    /* 黄 */
.more-item__status.is-sold{color:#dc2626;}   /* 赤 */
.more-item__status.is-closed{color:#6b7280;} /* グレー */

@media (max-width:720px){
  .site-header{padding:0 12px}
  .page{width:min(100%, calc(100% - 14px))}
  .ticket-nav{grid-template-columns:40px 1fr 40px}
  .ticket-nav__arrow{min-height:64px}
  .ticket-card__inner{
    grid-template-columns:90px minmax(0,1fr);
    gap:12px;
  }
  .ticket-card__poster{width:90px}
  .allgame .game-grid,
  .goods-grid{
    grid-template-columns:1fr;
  }
  .answer-form{
    width:100%;
    justify-content:center;
  }
  .answer-form input{
    width:min(64vw,260px);
  }
  .week-strip{
    grid-template-columns:repeat(7, minmax(0, 1fr));
    overflow:hidden;
  }
  .day-box{
    min-height:58px;
    padding:12px 2px 4px;
  }
  .day-box__monthday{font-size:.92rem}
  .day-box__weekday{font-size:.72rem}
  .day-box.is-today::before{
    top:3px;
    font-size:.52rem;
    padding:2px 5px;
  }
  
}

.ticket-cta {
  margin-top: 24px;   /* チケットとの間隔 */
  text-align: center; /* 真ん中に配置 */
}

/* スライダー */
.slider { position:relative; overflow:hidden; }
.slide { display:none; width:100%; border-radius:10px; }
.slide.active { display:block; }

/* NEWSボックス */
.news-box {
  border:2px solid #000;
  border-radius:10px;
  max-height:150px;
  overflow-y:auto;
  padding:10px;
}
.news-item {
  display:block;
  padding:8px;
  border-bottom:1px solid #ccc;
  text-decoration:none;
  color:#000;
}
.news-item:hover { background:#f0f0f0; }

.news-item {
  display: flex;
  gap: 12px;
  align-items: flex-start; /* ←中央じゃなくて上揃えにする */
}

.news-date {
  min-width: 95px;
  font-weight: bold;
  white-space: nowrap; /* ←これが一番大事（改行させない） */
}

.news-text {
  flex: 1;
  line-height: 1.4;
}

/* スライドアニメーション */
.slider {
  position: relative;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  opacity: 0;
  transform: translateX(20px); /* 少し右から */
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide.active {
  opacity: 1;
  transform: translateX(0);
  position: relative;
}

</style>
