:root {
  --bg: #eef2f7;
  --surface: #fff;
  --line: #d6dbe4;
  --text: #16202b;
  --muted: #5f6978;
  --brand: #d61e34;
  --brand-dark: #ae1527;
}
* { box-sizing: border-box; }
body { margin: 0; font-family: system-ui, sans-serif; color: var(--text); }
a { color: inherit; text-decoration: none; }
.container { max-width: 1120px; margin: 0 auto; padding: 0 16px; }

.panel { border: 1px solid var(--line); background: var(--surface); padding: 12px; }
.card { border: 1px solid var(--line); background: var(--surface); padding: 12px; margin-bottom: 8px; }

.ptop { background: var(--bg); }
.ptop-sticky-head {
  position: sticky;
  top: 0;
  z-index: 45;
  box-shadow: 0 2px 10px rgba(0,0,0,.08);
}

.ptop-head { background: #f7f9fc; border-bottom: 1px solid var(--line); }
.head-inner {
  min-height: 80px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-areas: "brand ticker tools";
  align-items: end;
  align-content: end;
  gap: 12px;
}
.head-primary {
  grid-area: primary;
  display: contents;
}
.brand {
  grid-area: brand;
  min-width: 0;
  display: flex;
  align-items: center;
}
.head-tools {
  grid-area: tools;
  display: flex;
  align-items: center;
  gap: 8px;
}
.head-backnumber-ticker {
  grid-area: ticker;
  min-width: 0;
  display: block;
  overflow: hidden;
  border: 1px solid #d9dee7;
  background: #fff;
  border-radius: 4px;
  text-decoration: none;
}
.head-backnumber-ticker__viewport {
  display: block;
  overflow: hidden;
}
.head-backnumber-ticker__track {
  display: flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  padding: 5px 8px;
  animation: head-backnumber-scroll 280s linear infinite;
}
.head-backnumber-ticker__track img {
  height: 68px;
  width: auto;
  display: block;
  flex-shrink: 0;
  border: 1px solid #e5e9f0;
  border-radius: 2px;
  object-fit: cover;
}
.head-backnumber-ticker:hover .head-backnumber-ticker__track {
  animation-play-state: paused;
}
@keyframes head-backnumber-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .head-backnumber-ticker__track {
    animation: none;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    max-width: 100%;
  }
  .head-backnumber-ticker__track::-webkit-scrollbar {
    display: none;
  }
}
@media (min-width: 641px) {
  .ptop-head .head-inner {
    min-height: 88px;
    align-items: center;
    align-content: center;
  }
  .ptop-head .brand .site-logo-img {
    height: 78px;
    max-width: min(100%, 600px);
  }
  .ptop-head .head-backnumber-ticker {
    align-self: center;
  }
}
.search-toggle {
  width: 44px;
  height: 40px;
  border: 1px solid var(--line);
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.search-icon {
  width: 14px;
  height: 14px;
  border: 2px solid #1f2937;
  border-radius: 50%;
  position: relative;
  display: inline-block;
}
.search-icon::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 2px;
  background: #1f2937;
  right: -5px;
  bottom: -2px;
  transform: rotate(45deg);
}
.site-logo-link { display: inline-block; line-height: 0; }
.site-logo-img { height: 64px; width: auto; max-width: min(100%, 520px); display: block; object-fit: contain; }
.site-logo-img--admin { height: 52px; max-width: 400px; margin: 0 auto; }
.site-logo-img--auth { height: 68px; max-width: 480px; margin: 0 auto 10px; }
.site-logo-img--staff { height: 56px; max-width: 440px; margin-bottom: 8px; }
.brand-link .site-logo-img--admin { opacity: 1; }
.sub { font-size: 12px; color: var(--muted); margin-top: 6px; }

.hamburger {
  width: 44px;
  height: 40px;
  border: 1px solid var(--line);
  background: #fff;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 0 11px;
  cursor: pointer;
}
.hamburger span { height: 2px; background: #1f2937; display: block; }

.ptop-tabs-wrap { background: var(--brand); }
.ptop-tabs-shell {
  display: flex;
  align-items: stretch;
}
.ptop-tabs {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.ptop-tabs-shell.is-scrollable .ptop-tabs {
  justify-content: flex-start;
}
.ptop-tabs::-webkit-scrollbar {
  display: none;
}
.ptop-tabs-arrow {
  flex-shrink: 0;
  width: 34px;
  border: 0;
  background: rgba(0,0,0,.22);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  display: none;
}
.ptop-tabs-arrow--prev { border-right: 1px solid rgba(255,255,255,.28); }
.ptop-tabs-arrow--next { border-left: 1px solid rgba(255,255,255,.28); }
.ptop-tabs-shell.is-scrollable .ptop-tabs-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.ptop-tabs-arrow:disabled {
  opacity: .35;
  cursor: default;
}
.ptop-tabs a {
  flex-shrink: 0;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-weight: 700;
  padding: 12px 14px;
  white-space: nowrap;
}
.ptop-tabs a.is-active { background: #fff; color: var(--brand-dark); }

.ptop-search {
  padding: 12px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
.ptop-search-wrap {
  position: fixed;
  right: 0;
  top: 0;
  width: min(340px, 88vw);
  height: 100vh;
  background: #fff;
  border-left: 1px solid var(--line);
  transform: translateX(100%);
  transition: transform .25s ease;
  z-index: 55;
  overflow: auto;
}
body.search-open .ptop-search-wrap {
  transform: translateX(0);
}
.ptop-search label span { display: block; font-size: 12px; color: var(--muted); margin-bottom: 4px; }
.ptop-search input {
  width: 100%;
  min-height: 40px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 9px;
}
.search-btn {
  align-self: end;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid var(--brand);
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}
.search-panel-actions {
  display: grid;
  gap: 8px;
}
.search-clear {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
  font-weight: 700;
}

.ptop-main { padding-top: 12px; padding-bottom: 20px; }
.hero--empty {
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f4f6f8;
  border: 1px dashed #d6dbe4;
  border-radius: 8px;
  margin-bottom: 24px;
}
.hero-empty-message {
  margin: 0;
  color: #6b7280;
  font-size: 0.95rem;
}
.hero {
  border: 1px solid #ad1426;
  background: #111;
  position: relative;
  overflow: hidden;
}
.hero-track { display: flex; transition: transform .45s ease; }
.hero-slide { min-width: 100%; position: relative; }
.hero-link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.hero-slide img {
  width: 100%;
  aspect-ratio: 3 / 1;
  height: auto;
  object-fit: cover;
  display: block;
}
.caption {
  position: absolute;
  inset: auto 0 0 0;
  color: #fff;
  background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.72));
  padding: 16px;
  display: grid;
  gap: 4px;
}
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,.7);
  background: rgba(0,0,0,.45);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}
.arrow.prev { left: 8px; }
.arrow.next { right: 8px; }
.dots {
  position: absolute;
  inset: auto 0 8px 0;
  display: flex;
  justify-content: center;
  gap: 6px;
}
.dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.8);
  background: rgba(255,255,255,.3);
  cursor: pointer;
  padding: 0;
}
.dots button.is-active { background: #fff; }

.section-head {
  margin-top: 12px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 10px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.section-head h2 { margin: 0; font-size: 18px; border-left: 4px solid var(--brand); padding-left: 8px; }
.section-head a { font-size: 13px; color: var(--muted); }

.schedule-list {
  margin-top: 10px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 10px;
  display: grid;
  gap: 8px;
}
.schedule-card {
  border: 1px solid var(--line);
  background: #fff;
  display: grid;
  grid-template-columns: 140px 1fr 60px;
  gap: 10px;
  align-items: center;
  padding: 8px;
}
.schedule-card img {
  width: 140px;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  display: block;
}
.date { display: inline-block; margin-bottom: 4px; border: 1px solid #f4b5be; background: #fff0f3; color: #9f1239; font-size: 11px; padding: 2px 6px; }
.title { display: inline-block; font-weight: 700; margin-bottom: 4px; }
.meta { font-size: 12px; color: var(--muted); }
.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 2px 0 8px;
}
.tag {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  border: 1px solid #d9dee7;
  border-radius: 999px;
  background: #f7f9fc;
  color: #334155;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}
.tag-pr {
  border-color: #f3c3ca;
  background: #fff1f3;
  color: #b42318;
}
.detail {
  border: 1px solid var(--line);
  background: #fff;
  text-align: center;
  padding: 8px;
  font-size: 13px;
}
.pickup-grid {
  margin-top: 10px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 14px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.pickup-card {
  border: 1px solid var(--line);
  background: #fff;
  display: grid;
  grid-template-rows: auto auto;
}
.pickup-card-link {
  color: inherit;
  text-decoration: none;
}
.pickup-card-link:hover {
  border-color: #b8c2d1;
  box-shadow: 0 8px 20px rgba(22, 32, 43, 0.08);
}
.pickup-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  display: block;
}
.pickup-card-body {
  padding: 10px;
  display: grid;
  gap: 8px;
}
.pickup-card .title {
  margin-bottom: 0;
  font-size: 15px;
}
.pickup-card .meta {
  line-height: 1.6;
}
.pickup-card .detail {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.store-banner-grid {
  margin-top: 10px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 12px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.store-banner-card {
  display: block;
  border: 1px solid var(--line);
  background: #fff;
  overflow: hidden;
}
.store-banner-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  object-position: center;
  display: block;
}
.store-banner-card:hover {
  border-color: #b8c2d1;
  box-shadow: 0 8px 20px rgba(22, 32, 43, 0.08);
}
.video-grid {
  margin-top: 10px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 12px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.video-card {
  display: block;
  border: 1px solid var(--line);
  background: #fff;
  color: inherit;
  text-decoration: none;
  overflow: hidden;
}
.video-card:hover {
  border-color: #b8c2d1;
  box-shadow: 0 8px 20px rgba(22, 32, 43, 0.08);
}
.video-thumb {
  position: relative;
}
.video-thumb img {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  display: block;
}
.video-thumb::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 42px;
  height: 42px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.22);
}
.video-thumb::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-35%, -50%);
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid #fff;
  z-index: 1;
}
.video-body {
  padding: 10px;
  display: grid;
  gap: 6px;
}
.video-title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}
.video-channel {
  font-size: 12px;
  color: var(--muted);
}
.discover-search {
  margin-top: 10px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 12px;
  display: grid;
  gap: 12px;
}
.discover-search-row {
  display: grid;
  grid-template-columns: 160px 24px 160px 1fr auto;
  gap: 8px;
}
.discover-search-row input {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  padding: 0 12px;
}
.range-separator {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  color: var(--muted);
  font-weight: 700;
}
.discover-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.discover-label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
}
.discover-chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #f7f9fc;
  font-size: 12px;
  font-weight: 700;
  color: #334155;
}
.discover-nav {
  margin-top: 10px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 12px;
  display: grid;
  gap: 10px;
}
.area-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}
.area-link,
.type-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
}
.area-link.is-active,
.type-link.is-active {
  border-color: var(--brand);
  background: #fff1f3;
  color: var(--brand-dark);
}
.type-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}
.filter-panel {
  margin-top: 10px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 12px;
  display: grid;
  gap: 12px;
}
.filter-head {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: center;
}
.filter-head h3 {
  margin: 0;
  font-size: 16px;
}
.filter-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.filter-link {
  font-size: 12px;
  color: var(--muted);
}
.filter-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.filter-field {
  display: grid;
  gap: 6px;
}
.filter-field label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
}
.filter-field input,
.filter-field select {
  min-height: 40px;
  border: 1px solid var(--line);
  padding: 0 10px;
  background: #fff;
}
.filter-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--brand);
  background: var(--brand);
  color: #fff;
  font-weight: 700;
}
.video-list {
  margin-top: 10px;
  display: grid;
  gap: 10px;
}
.video-list-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 14px;
  border: 1px solid var(--line);
  background: #fff;
  color: inherit;
  text-decoration: none;
  padding: 12px;
}
.video-list-card:hover {
  border-color: #b8c2d1;
  box-shadow: 0 8px 20px rgba(22, 32, 43, 0.08);
}
.video-list-card .video-thumb img {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  display: block;
}
.video-list-body {
  display: grid;
  align-content: start;
  gap: 8px;
}
.video-date {
  font-size: 12px;
  color: var(--muted);
}
.video-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.ptop-foot {
  margin-top: 12px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 12px;
  color: var(--muted);
  font-size: 13px;
}
.page-main { padding-top: 12px; padding-bottom: 20px; }
.result-bar {
  border: 1px solid var(--line);
  background: #fff;
  margin-top: 8px;
  padding: 8px 12px;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
}
.result-bar-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.current-filter {
  border: 1px solid var(--line);
  background: #fff;
  margin-top: 8px;
  padding: 10px 12px;
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 13px;
}
.status-note {
  display: inline-block;
  margin-left: 8px;
  color: var(--brand-dark);
  font-weight: 700;
}
.waiting-copy {
  color: var(--brand-dark);
  font-weight: 700;
}
.empty-state {
  border: 1px solid var(--line);
  background: #fff;
  padding: 20px 16px;
  margin-top: 10px;
}
.empty-state strong {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
}
.empty-state p {
  margin: 0;
  color: var(--muted);
}
.detail-hero {
  border: 1px solid var(--line);
  background: #111;
  position: relative;
  overflow: hidden;
}
.detail-hero img {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  display: block;
}
.detail-hero--store img {
  object-fit: contain;
  background: #111;
}
.detail-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px;
  color: #fff;
  background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.74));
}
.detail-overlay h1 { margin: 0 0 6px; font-size: 28px; }
.detail-overlay p { margin: 0; font-size: 14px; }
.detail-body {
  border: 1px solid var(--line);
  background: #fff;
  padding: 14px;
  margin-top: 10px;
}
.detail-body h2 { margin: 0 0 10px; font-size: 20px; border-left: 4px solid var(--brand); padding-left: 8px; }
.detail-body p { margin: 0 0 12px; line-height: 1.7; color: #2b3644; }
.report-body { line-height: 1.7; color: #2b3644; }
.report-body h2 { margin: 0 0 10px; font-size: 20px; border-left: 4px solid var(--brand); padding-left: 8px; }
.report-body h3 { margin: 0 0 8px; font-size: 16px; font-weight: 700; }
.report-body .payout-ranking { display: grid; gap: 16px; margin: 12px 0 16px; }
.report-body .payout-ranking-machine-name { border-left: 4px solid var(--brand); padding-left: 8px; }
.report-body .payout-ranking-table { width: 100%; border-collapse: collapse; font-size: 14px; background: #fff; }
.report-body .payout-ranking-table th,
.report-body .payout-ranking-table td { border: 1px solid var(--line); padding: 8px 10px; text-align: left; }
.report-body .payout-ranking-table thead th { background: #f7f9fc; font-weight: 700; }
.report-body .payout-ranking-table tbody td:last-child { text-align: right; font-variant-numeric: tabular-nums; }
.detail-links { display: flex; flex-wrap: wrap; gap: 8px; }
.detail-links a { border: 1px solid var(--line); background: #fff0f3; padding: 8px 10px; font-size: 13px; }
.media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 12px;
}
.media-grid img {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  border: 1px solid var(--line);
  display: block;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.42);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
  z-index: 50;
}
.drawer {
  position: fixed;
  right: 0;
  top: 0;
  width: min(340px, 88vw);
  height: 100vh;
  background: #fff;
  border-left: 1px solid var(--line);
  transform: translateX(100%);
  transition: transform .25s ease;
  z-index: 60;
  display: grid;
  grid-template-rows: auto 1fr;
}
.drawer-head {
  border-bottom: 1px solid var(--line);
  padding: 8px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.drawer-head button {
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
}
.drawer-nav {
  padding: 2px 12px 10px;
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: stretch;
  overflow: auto;
  align-content: flex-start;
  border-top: 1px solid var(--line);
}
.drawer-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 10px 2px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
}
.drawer-nav a::after {
  content: "›";
  color: var(--muted);
  font-weight: 700;
}
body.menu-open .drawer-backdrop { opacity: 1; pointer-events: auto; }
body.menu-open .drawer { transform: translateX(0); }
body.search-open .drawer-backdrop { opacity: 1; pointer-events: auto; }

@media (max-width: 640px) {
  .container { padding: 0 10px; }
  .head-inner {
    min-height: auto;
    padding: 20px 0 10px;
    grid-template-columns: 1fr;
    grid-template-areas:
      "primary"
      "ticker";
    gap: 10px;
    align-items: stretch;
    align-content: start;
  }
  .head-primary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-width: 0;
  }
  .brand,
  .head-tools {
    grid-area: auto;
  }
  .head-backnumber-ticker__track img {
    height: 56px;
  }
  .site-logo-img { height: 52px; max-width: min(100%, 420px); }
  .site-logo-img--admin { height: 44px; max-width: 320px; }
  .site-logo-img--auth { height: 56px; max-width: 380px; }
  .site-logo-img--staff { height: 48px; max-width: 360px; }
  .ptop-tabs {
    justify-content: flex-start;
  }
  .ptop-tabs a { padding: 12px 14px; }
  .ptop-tabs-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    font-size: 20px;
  }
  .ptop-main,
  .page-main {
    padding-top: 30px;
  }
  .ptop-main > .hero + .section-head {
    margin-top: 16px;
  }
  .section-head { flex-direction: column; align-items: flex-start; gap: 6px; }
  .result-bar { flex-direction: column; align-items: flex-start; }
  .schedule-card { grid-template-columns: 1fr; }
  .schedule-card img { width: 100%; }
  .pickup-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 12px; }
  .pickup-card .title { font-size: 14px; }
  .store-banner-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .video-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .discover-search-row { grid-template-columns: 1fr; }
  .area-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .type-tabs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .filter-head { flex-direction: column; align-items: flex-start; }
  .filter-grid { grid-template-columns: 1fr; }
  .video-list-card { grid-template-columns: 1fr; }
  .detail { justify-self: start; }
  .detail-overlay h1 { font-size: 22px; }
  .media-grid { grid-template-columns: 1fr; }
}
