@charset "UTF-8";
/* Agend リニューアル v3 — WordPress theme overlay (from mockup/mock-v3.css) */

:root {
  --v3-accent: #E4FF00;
  --v3-bg: #D9D9D9;
  --v3-line: #dcdcdc;
  --gh-h: 52px;
}

/* 本番 style.css の body { max-width:1280px } を v3 では解除。
   ヘッダーは画面全幅、本文・トップは .wrapper / .single.wrapper で中央寄せ */
body.agend-v3,
body.mock-v3 {
  max-width: none;
  width: 100%;
  margin: 0;
}

body.agend-v3 .site-header,
body.mock-v3 .site-header {
  width: 100%;
  box-sizing: border-box;
}

/* WP が body に付ける .single が prod .single { display:flex } に一致するのを打ち消す */
body.agend-v3.single,
body.mock-v3.single {
  display: block;
}

/* v3: 本番サイドバーはドロワーに置換（レイアウト幅もゼロ化） */
body.agend-v3 .new_post_archive,
body.mock-v3 .new_post_archive {
  display: none !important;
  width: 0 !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden;
  flex: 0 0 0 !important;
}

/* v3: 記事ページ — 本番 .single flex 2カラムを解除し .wrapper で中央寄せ */
body.agend-v3 .single.wrapper,
body.mock-v3 .single.wrapper {
  display: block;
  box-sizing: border-box;
}

body.agend-v3 .single_page,
body.mock-v3 .single_page {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  float: none;
}

/* prod .wrapper = 78% / max 1000px / margin auto をそのまま使う（トップ .v3-top と同幅） */
@media (min-width: 701px) {
  body.agend-v3 .single.wrapper,
  body.mock-v3 .single.wrapper {
    width: 78%;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding-right: 0;
  }
}

@media (max-width: 700px) {
  body.agend-v3 .single.wrapper,
  body.mock-v3 .single.wrapper {
    width: 100%;
  }
}

/* EWWW lazyload: WP が付与する width/height 属性で高さ 630px 固定されるのを打ち消す */
body.agend-v3 .v3-top img,
body.agend-v3 .pickup img,
body.agend-v3 .drawer img,
body.agend-v3 .spbar img,
body.agend-v3 .next img,
body.mock-v3 .v3-top img,
body.mock-v3 .pickup img,
body.mock-v3 .drawer img,
body.mock-v3 .spbar img,
body.mock-v3 .next img {
  max-width: 100%;
  height: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--v3-bg);
  border-bottom: 1px solid var(--v3-line);
  transition: transform 0.25s ease;
}
.site-header.site-header--hidden {
  transform: translateY(-100%);
}
.site-header__inner {
  max-width: 1280px;
  margin: 0 auto;
}
/* prod.css .header_top / .header_des の余白を打ち消しつつ 1行レイアウト */
.site-header .header_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0;
  padding: 6px 16px 0;
}
.site-header .header_logo {
  line-height: 0;
  flex-shrink: 0;
  margin: 0;
}

/* ============ v3 テーマナビ（白ヘッダー内・ロゴと同行） ============ */
.site-header .gh {
  position: static;
  background: transparent;
  border-bottom: none;
  transition: none;
  flex: 1;
  min-width: 0;
}
.gh.gh--hidden {
  transform: none;
}
.site-header .gh__inner {
  max-width: none;
  margin: 0;
  min-height: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  box-sizing: border-box;
}
.gh__logo {
  display: none;
}
.gh__nav {
  display: flex;
  gap: 2px;
  flex: 1;
  justify-content: flex-end;
  flex-wrap: nowrap;
}
.gh__nav a {
  font-size: 1.35rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  white-space: nowrap;
  text-decoration: none;
  color: #000;
}
.gh__nav a:hover {
  background: var(--v3-accent);
}
.gh__nav a.is-active {
  background: var(--v3-accent);
  color: #000;
}
.gh__theme-btn {
  display: none;
  border: 1px solid #000;
  background: none;
  cursor: pointer;
  border-radius: 4px;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  padding: 8px 14px;
  margin-left: auto;
  flex-shrink: 0;
  color: #000;
}
.gh__theme-btn:hover {
  background: var(--v3-accent);
}
/* 2段目: キャッチコピー（本番文言のまま・細い帯） */
.gh-catch {
  padding: 2px 16px 6px;
  border-top: 1px solid var(--v3-line);
}
.site-header .gh-catch span.header_des,
.site-header span.header_des {
  margin: 0;
  margin-left: 0;
  padding-bottom: 0;
  font-size: 1rem;
  display: block;
  line-height: 1.35;
}

/* ============ メガメニュー ============ */
.mega {
  position: fixed;
  top: var(--gh-h);
  left: 0;
  right: 0;
  z-index: 99;
  background: #111;
  color: #fff;
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  transition: 0.2s ease;
  max-height: calc(100vh - var(--gh-h));
  overflow-y: auto;
}
.mega.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.mega__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 32px 24px 40px;
  position: relative;
}
.mega__lead {
  font-size: 2.2rem;
  font-weight: 900;
  margin: 0 0 24px;
  background: var(--v3-accent);
  color: #000;
  display: inline-block;
  padding: 4px 14px;
}
.mega__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 28px;
  row-gap: 40px;
}
.mega__theme {
  border-top: 2px solid var(--v3-accent);
  padding-top: 12px;
}
.mega__theme.is-current {
  border-top-color: var(--v3-accent);
}
.mega__theme.is-current .mega__phrase {
  background: var(--v3-accent);
  color: #000;
  display: inline-block;
  padding: 4px 12px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.mega__theme a {
  color: #fff;
  text-decoration: none;
}
.mega__theme a:hover .mega__phrase {
  text-decoration: underline;
}
.mega__phrase {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 7px;
}
.mega__theme img {
  width: 100%;
  aspect-ratio: 1200/630;
  object-fit: cover;
  border-radius: 3px;
}
.mega__rep {
  font-size: 1.15rem;
  color: #bbb;
  margin-top: 8px;
  line-height: 1.5;
}
.mega__close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  color: #888;
  font-size: 2rem;
  cursor: pointer;
}

/* ============ SPシート ============ */
.sheet {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: #111;
  color: #fff;
  padding: 24px 20px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.25s ease;
}
.sheet.is-open {
  transform: translateX(0);
}
.sheet__close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.6rem;
  cursor: pointer;
}
.sheet__lead {
  font-size: 1.9rem;
  font-weight: 900;
  background: var(--v3-accent);
  color: #000;
  display: inline-block;
  padding: 3px 12px;
  margin: 8px 0 20px;
}
.sheet__themes {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sheet__themes li {
  border-bottom: 1px solid #333;
}
.sheet__themes a {
  display: block;
  padding: 16px 4px;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
  text-decoration: none;
}
.sheet__themes a::after {
  content: "→";
  float: right;
  color: var(--v3-accent);
}
.sheet__sub {
  margin-top: 28px;
  font-size: 1.3rem;
  color: #999;
}
.sheet__sub a {
  display: block;
  padding: 10px 4px;
  color: #999;
  text-decoration: none;
}

/* ============ トップ v3 セクション ============ */
.v3-top {
  width: 78%;
  max-width: 1000px;
  margin: 0 auto;
}
.v3-list-head {
  width: 78%;
  max-width: 1000px;
  margin: 48px auto 0;
}
.v3-list-head .sec__title {
  margin: 0;
}
/* 本番 .wrapper の SP 幅（@media 700px で width:100%）に合わせる */
@media (max-width: 700px) {
  .v3-top {
    width: 100%;
    padding: 0 16px;
    box-sizing: border-box;
  }
  .v3-list-head {
    width: 100%;
    padding: 0 16px;
    box-sizing: border-box;
    margin-top: 40px;
  }
}
.sec {
  margin: 48px 0;
}
.sec__head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.sec__title {
  font-size: 2rem;
  font-weight: 900;
  margin: 0;
}
.sec__title--phrase {
  background: #000;
  color: #fff;
  padding: 4px 14px;
  font-size: 1.9rem;
}
.sec__title--theme {
  background: var(--v3-accent);
  color: #000;
  display: inline-block;
  font-weight: 900;
  line-height: 1.5;
  padding: 6px 14px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.sec__title--theme a {
  color: inherit;
  text-decoration: none;
}
.sec__title--theme a:hover {
  opacity: 0.85;
}
.sec__more {
  font-size: 1.25rem;
  font-weight: 700;
  margin-left: auto;
  text-decoration: none;
  color: #000;
}
.sec__more:hover {
  background: var(--v3-accent);
}

.chip {
  display: inline-block;
  font-size: 1.15rem;
  font-weight: 700;
  background: #000;
  color: #fff;
  padding: 2px 10px;
  border-radius: 2px;
}
.chip--accent {
  background: var(--v3-accent);
  color: #000;
}
.chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.chips--scroll {
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 6px;
  -webkit-overflow-scrolling: touch;
}
.chips--scroll .chip {
  flex-shrink: 0;
}
.chips a.chip {
  font-size: 1.3rem;
  padding: 6px 14px;
  text-decoration: none;
}
.chips a.chip:hover {
  background: var(--v3-accent);
  color: #000;
}
@media (min-width: 1024px) {
  #theme-chips.chips--scroll {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px 12px;
    overflow-x: visible;
    padding-bottom: 0;
  }
  #theme-chips.chips--scroll .chip {
    flex-shrink: unset;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    line-height: 1.35;
  }
  #theme-chips.chips--scroll a.chip {
    display: block;
    font-size: 1.4rem;
    padding: 10px 8px;
  }
}
/* flex column の親で stretch して帯状になるのを防ぐ */
.card__body .chip,
.next__hero-body .chip {
  align-self: flex-start;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (min-width: 1024px) {
  /* トップ最新6件: PC は 2列×3行 */
  #latest.cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
.card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #000;
}
.card:hover img {
  opacity: 0.85;
}
.card img {
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 1200/630;
  object-fit: cover;
  transition: opacity 0.15s;
}
.card__body {
  padding: 12px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.card__title {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.55;
  margin: 0;
}

.shelf {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 31%;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 8px;
}
@media (min-width: 1024px) {
  .shelf {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-flow: row;
    grid-auto-columns: unset;
    overflow-x: visible;
    gap: 24px;
    padding-bottom: 0;
  }
}

.pickup {
  background: #000;
  color: #fff;
  padding: 28px 24px 32px;
  border-radius: 4px;
}
.pickup .sec__title {
  color: var(--v3-accent);
}
.pickup__note {
  font-size: 1.15rem;
  color: #999;
}
.pickup ol {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: pk;
}
.pickup li {
  counter-increment: pk;
  border-bottom: 1px solid #333;
}
.pickup li a {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 4px;
  color: #fff;
  text-decoration: none;
}
.pickup li a:hover {
  background: #1c1c1c;
}
.pickup li a::before {
  content: counter(pk);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--v3-accent);
  min-width: 32px;
  text-align: center;
}
.pickup img {
  width: 110px;
  max-width: 100%;
  height: auto;
  aspect-ratio: 1200/630;
  object-fit: cover;
  border-radius: 2px;
  flex-shrink: 0;
}
.pickup__t {
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.5;
}

/* ============ テーマアーカイブ見出し（/theme/xxx のみ） ============ */
body.agend-v3 .category_title--theme {
  background: var(--v3-accent);
  color: #000;
  display: inline-block;
  font-weight: 900;
  line-height: 1.5;
  padding: 6px 14px;
  padding-bottom: 6px;
  margin: 0 0 3rem;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* ファーストビュー: 最新1本の大ヒーロー */
.hero {
  margin-top: 28px;
  margin-bottom: 40px;
}
.hero__link {
  position: relative;
  display: block;
  background: #000;
  border-radius: 6px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
}
.hero__media img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 1200/630;
  object-fit: cover;
  transition: opacity 0.15s;
}
.hero__link:hover .hero__media img {
  opacity: 0.85;
}
.hero__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 80px 28px 26px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.55) 55%, rgba(0, 0, 0, 0) 100%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.hero__label {
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  background: #fff;
  color: #000;
  padding: 2px 10px;
}
.hero__title {
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1.45;
  margin: 0;
  color: #fff;
}

/* ============ 記事末尾「次に読む」 ============ */
.next {
  width: 95%;
  margin: 4rem auto 0;
  border-top: 2px solid #000;
  padding-top: 28px;
}
.next__label {
  font-size: 1.3rem;
  font-weight: 900;
  background: var(--v3-accent);
  display: inline-block;
  padding: 2px 12px;
  margin-bottom: 14px;
}
.next__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 20px 0 32px;
}
.next__grid .card {
  border: 1px solid var(--v3-line);
}
.next__themes {
  margin-top: 24px;
}
.next__themes-label {
  font-size: 1.2rem;
  font-weight: 700;
  color: #666;
  margin-bottom: 8px;
}

/* prod.css の .single_page a（underline / #3366CC / inline-block）が
   .next 内の v3 要素に漏れるのを打ち消す */
body.agend-v3 .single_page .next a,
body.mock-v3 .single_page .next a {
  text-decoration: none;
}
body.agend-v3 .single_page .next a.card,
body.mock-v3 .single_page .next a.card {
  display: flex;
  color: #000;
}
body.agend-v3 .single_page .next a.card,
body.mock-v3 .single_page .next a.card {
  display: flex;
  color: #000;
}
body.agend-v3 .single_page .next .card__title,
body.mock-v3 .single_page .next .card__title {
  color: #000;
}
body.agend-v3 .single_page .next .chips a.chip,
body.mock-v3 .single_page .next .chips a.chip {
  display: inline-block;
  color: #fff;
}
body.agend-v3 .single_page .next .chips a.chip:hover,
body.mock-v3 .single_page .next .chips a.chip:hover {
  color: #000;
}

/* ============ RECOMMEND ドロワー ============ */
.drawer {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translate(100%, -50%);
  z-index: 150;
  width: 300px;
  background: #111;
  color: #fff;
  border-radius: 8px 0 0 8px;
  box-shadow: -4px 4px 24px rgba(0, 0, 0, 0.35);
  /* 引っ込みはゆっくり（閉じるときは .drawer の transition が効く） */
  transition: transform 0.52s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 18px;
}
.drawer.is-open {
  transform: translate(0, -50%);
  /* 出すときも閉じるときと同程度にヌルっと */
  transition: transform 0.52s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.drawer__tab {
  position: absolute;
  left: -34px;
  top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  background: var(--v3-accent);
  color: #000;
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  padding: 14px 8px;
  border: none;
  border-radius: 6px 0 0 6px;
  cursor: pointer;
  box-shadow: -3px 3px 12px rgba(0, 0, 0, 0.25);
}
.drawer__label {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--v3-accent);
  letter-spacing: 0.15em;
  margin-bottom: 10px;
}
.drawer__card {
  text-decoration: none;
  color: #fff;
  display: block;
  overflow: hidden;
}
.drawer__title {
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 10px;
}
.drawer__card img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  aspect-ratio: 1200/630;
  object-fit: cover;
}
.drawer__card:hover img {
  opacity: 0.85;
}
.drawer__rule {
  border: none;
  height: 4px;
  background: var(--v3-accent);
  margin: 14px 0 12px;
}
.drawer__themes {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.drawer__themes a {
  font-size: 1.2rem;
  font-weight: 700;
  padding: 12px 12px;
  background: #222;
  border-radius: 0;
  color: #fff;
  text-decoration: none;
  border-top: 1px solid var(--v3-accent);
}
.drawer__themes a:first-child {
  border-top: none;
  border-radius: 4px 4px 0 0;
}
.drawer__themes a:last-child {
  border-radius: 0 0 4px 4px;
}
.drawer__themes a:hover {
  background: var(--v3-accent);
  color: #000;
}
.drawer__close {
  position: absolute;
  top: 6px;
  right: 8px;
  background: none;
  border: none;
  color: #777;
  font-size: 1.6rem;
  cursor: pointer;
}

/* ============ SP下部バー ============ */
.spbar {
  display: none;
  position: fixed;
  left: 8px;
  right: 8px;
  bottom: 8px;
  z-index: 150;
  background: #111;
  color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
  transform: translateY(calc(100% + 16px));
  transition: transform 0.52s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 200px;
}
.spbar.is-open {
  transform: translateY(0);
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.spbar__link {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  padding: 16px 44px 18px 16px;
  text-decoration: none;
  color: #fff;
}
.spbar__content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.spbar__thumb {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 1200/630;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}
.spbar__label {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--v3-accent);
  display: block;
  letter-spacing: 0.08em;
}
.spbar__t {
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.spbar__close {
  position: absolute;
  top: 4px;
  right: 6px;
  background: none;
  border: none;
  color: #888;
  font-size: 1.8rem;
  cursor: pointer;
  padding: 4px;
}

.demo-note {
  position: fixed;
  left: 12px;
  bottom: 12px;
  z-index: 200;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  font-size: 1.05rem;
  padding: 6px 12px;
  border-radius: 20px;
  pointer-events: none;
}

@media (max-width: 1023px) {
  .site-header .header_top {
    padding: 8px 12px 0;
    margin: 0;
  }
  .gh__nav,
  .mega {
    display: none;
  }
  .gh__theme-btn {
    display: inline-flex;
    background: #000;
    color: #fff;
    border-color: #000;
  }
  .gh__theme-btn:hover {
    background: var(--v3-accent);
    color: #000;
    border-color: #000;
  }
  .hero__label,
  .hero__body .chip,
  .cards .chip,
  .shelf .chip {
    display: none !important;
  }
  .card__title {
    font-size: 1.55rem;
    font-weight: 800;
    line-height: 1.5;
  }
  .gh-catch span.header_des {
    font-size: 0.9rem;
  }
  body.agend-v3 .category_title--theme {
    margin: 0 2.3% 2rem;
  }
  .drawer {
    display: none;
  }
  .spbar {
    display: block;
  }
  .cards {
    grid-template-columns: 1fr;
  }
  .shelf {
    grid-auto-columns: 72%;
  }
  /* ヒーロー: SP は縦積み（画像フル幅 + 黒帯の本文） */
  .hero {
    margin-top: 16px;
    margin-bottom: 32px;
  }
  .hero__body {
    position: static;
    background: #000;
    padding: 14px 16px 20px;
    gap: 8px;
  }
  .hero__title {
    font-size: 1.8rem;
    line-height: 1.5;
  }
  /* SP 編集部おすすめ: 順位+タイトル横並び、サムネは下段フル幅 */
  .pickup {
    padding: 24px 16px 28px;
  }
  .pickup .sec__title {
    font-size: 2rem;
  }
  .pickup li a {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    align-items: start;
    gap: 10px 12px;
    padding: 16px 4px 20px;
  }
  .pickup li a::before {
    grid-column: 1;
    grid-row: 1;
    font-size: 2rem;
    min-width: auto;
    text-align: left;
    line-height: 1.35;
    align-self: start;
  }
  .pickup__t {
    grid-column: 2;
    grid-row: 1;
    font-size: 1.4rem;
    line-height: 1.55;
    font-weight: 800;
  }
  .pickup img {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: none;
    aspect-ratio: 1200 / 630;
    object-fit: cover;
    border-radius: 2px;
  }
  .next__grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 16px 0 28px;
  }
  .mega__grid {
    grid-template-columns: 1fr;
  }
  /* タップ領域 44px 確保 */
  .chips a.chip {
    padding: 10px 16px;
  }
}
