/* =========================================================
   JPress Renewal Mock
   Common Design System for:
   - jpress.okinawatimes.co.jp
   - sumai.okinawatimes.co.jp
   - fun.okinawatimes.co.jp
   ========================================================= */

:root {
  --font-base: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;

  --color-text: #222;
  --color-muted: #717171;
  --color-border: #e6e6e6;
  --color-bg: #f7f7f5;
  --color-white: #fff;

  --color-jpress: #1f3864;
  --color-sumai: #1f3864;
  --color-fun: #b85042;

  --color-jpress-soft: #e6eef8;
  --color-sumai-soft: #e6eef8;
  --color-fun-soft: #faece7;

  --container: 1200px;
  --wide: 1536px;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --shadow-card: 0 8px 24px rgba(0, 0, 0, .06);
  --shadow-hover: 0 14px 34px rgba(0, 0, 0, .10);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-base);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.site {
  min-height: 100vh;
  background: var(--color-bg);
}

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

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

/* Header
--------------------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-border);
}

.header__inner {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo {
  display: inline-flex;
  align-items: center;
  min-width: 220px;
}

.logo__img {
  height: 46px;
  width: auto;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex: 1;
}

.nav a {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  transition: opacity .2s;
}

.nav a:hover {
  opacity: .6;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-link img {
  width: 38px;
  height: 38px;
  display: block;
  object-fit: contain;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-border);
  background: #fff;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
}

.menu-button span,
.menu-button::before,
.menu-button::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background: #333;
  border-radius: 2px;
}

.menu-button {
  gap: 4px;
  flex-direction: column;
  position: relative;
  z-index: 60;
  transition: border-color .2s;
}

/* Hamburger → X */
.menu-button.is-open span {
  opacity: 0;
  transform: scaleX(0);
}

.menu-button.is-open::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-button.is-open::after {
  transform: translateY(-6px) rotate(-45deg);
}

.menu-button::before,
.menu-button::after {
  transition: transform .25s ease;
}

.menu-button span {
  transition: opacity .15s ease, transform .15s ease;
}

/* Mobile drawer
--------------------------------------------------------- */
.nav-drawer {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background: #fff;
  border-top: 1px solid var(--color-border);
  transform: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
  z-index: 55;
  display: flex;
  flex-direction: column;
  padding: 20px 28px 40px;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.nav-drawer.is-open {
  opacity: 1;
  visibility: visible;
}

.nav-overlay {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(20, 28, 44, .42);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
  z-index: 50;
}

.nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.nav-drawer__nav {
  display: flex;
  flex-direction: column;
}

.nav-drawer__nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 4px;
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
}

.nav-drawer__nav a::after {
  content: "→";
  color: var(--theme);
  font-size: 14px;
}

.nav-drawer__nav a:active {
  color: var(--theme);
}

.nav-drawer__social {
  display: flex;
  gap: 12px;
  margin-top: auto;
  padding-top: 28px;
}

.nav-drawer__social a {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  font-size: 13px;
  font-weight: 700;
  color: var(--theme);
}

body.nav-locked {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  overflow: hidden;
}

/* Theme colors
--------------------------------------------------------- */
.theme-jpress {
  --theme: var(--color-jpress);
  --theme-soft: var(--color-jpress-soft);
}

.theme-sumai {
  --theme: var(--color-sumai);
  --theme-soft: var(--color-sumai-soft);
}

.theme-fun {
  --theme: var(--color-fun);
  --theme-soft: var(--color-fun-soft);
}

.theme-color {
  color: var(--theme);
}

/* Hero
--------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background: #ddd;
}

.hero--visual {
  min-height: min(82vh, 720px);
  display: flex;
  align-items: flex-end;
}

.hero--message {
  background:
    radial-gradient(circle at 10% 10%, rgba(31,56,100,.13), transparent 32%),
    linear-gradient(135deg, #fff 0%, #f5f7fb 100%);
  padding: 96px 0;
  text-align: center;
}

.hero__image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(114,145,201,.03) 0%, rgba(114,145,201,.22) 45%, rgba(114,145,201,.42) 100%),
    var(--hero-image);
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  animation: heroZoom 12s cubic-bezier(.16, 1, .3, 1) forwards;
}

@keyframes heroZoom {
  to { transform: scale(1); }
}

.hero__content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 0 0 clamp(48px, 8vh, 96px);
  max-width: 920px;
}

.hero__content h1 {
  font-size: 66px;
  font-weight: 900;
  line-height: 1.22;
  margin: 22px 0 18px;
  letter-spacing: .01em;
  text-wrap: balance;
}

.hero__message h1 {
  font-size: 32px;
  line-height: 1.45;
  margin: 16px 0 14px;
  letter-spacing: .02em;
}

.hero__content p {
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
  color: rgba(255, 255, 255, .9);
  max-width: 640px;
}

.hero__message p {
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
}

.hero__message {
  max-width: 760px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--theme);
}

.eyebrow::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--theme);
}

.hero__content .eyebrow {
  color: #fff;
}

.hero__content .eyebrow::before {
  background: #fff;
}

.hero__scroll {
  position: absolute;
  right: clamp(20px, 4vw, 56px);
  bottom: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, .85);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .3em;
  writing-mode: vertical-rl;
}

.hero__scroll::after {
  content: '';
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,.8), rgba(255,255,255,0));
  animation: scrollLine 2s ease-in-out infinite;
  transform-origin: top;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); opacity: 0; }
  40% { opacity: 1; }
  100% { transform: scaleY(1); opacity: 0; }
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--theme-soft);
  color: var(--theme);
  font-size: 12px;
  font-weight: 700;
}

.badge--white {
  background: rgba(255,255,255,.92);
  color: var(--theme);
}

/* Sections
--------------------------------------------------------- */
.section {
  padding: 72px 0;
}

.section--white {
  background: #fff;
}

.section__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.section__title {
  margin: 0;
  font-size: 32px;
  line-height: 1.35;
  letter-spacing: .03em;
}

.section__lead {
  margin: 10px 0 0;
  color: var(--color-muted);
  font-size: 16px;
}

.more-link {
  color: var(--theme);
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
}

/* Cards
--------------------------------------------------------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform .25s ease, box-shadow .25s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.card__image {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #d8d8d8, #bdbdbd);
  position: relative;
  overflow: hidden;
}

.card__image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--card-image);
  background-size: cover;
  background-position: center;
  transition: transform .35s ease;
}

.card:hover .card__image::before {
  transform: scale(1.05);
}

.card__body {
  padding: 18px 18px 20px;
}

.card__title {
  min-height: 3.2em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 10px 0 10px;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 700;
}

.card__date {
  margin: 0;
  color: var(--color-muted);
  font-size: 12px;
}

/* Feature / CTA Cards
--------------------------------------------------------- */
.cta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.cta-card {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 112px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: border-color .2s, transform .2s, box-shadow .2s;
}

.cta-card:hover {
  border-color: var(--theme);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.cta-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--theme-soft);
  color: var(--theme);
  font-weight: 800;
  flex: 0 0 auto;
}

.cta-card__body h3 {
  margin: 0 0 4px;
  font-size: 22px;
  line-height: 1.4;
}

.cta-card__body p {
  margin: 0;
  color: var(--color-muted);
  font-size: 14px;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.media-card {
  display: grid;
  grid-template-columns: 42% 1fr;
  overflow: hidden;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.media-card__image {
  min-height: 220px;
  background: var(--card-image);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.media-card__body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.media-card__body h3 {
  margin: 8px 0 12px;
  font-size: 24px;
  line-height: 1.45;
}

.media-card__body p {
  margin: 0 0 18px;
  color: #000;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--theme);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  width: fit-content;
}

.button--ghost {
  background: #fff;
  color: var(--theme);
  border: 1px solid var(--theme);
}

/* Search box
--------------------------------------------------------- */
.search-panel {
  margin-top: -46px;
  position: relative;
  z-index: 10;
}

.search-panel__inner {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hover);
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 16px;
  align-items: end;
}

.field label {
  display: block;
  font-size: 12px;
  color: var(--color-muted);
  font-weight: 700;
  margin-bottom: 6px;
}

.field select,
.field input {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 0 12px;
  background: #fff;
  font-size: 16px;
}

/* Banner / Ads
--------------------------------------------------------- */
.archive-banner {
  border-radius: var(--radius-md);
  padding: 36px;
  background:
    linear-gradient(135deg, rgba(31,56,100,.92), rgba(31,56,100,.72)),
    linear-gradient(135deg, #c8ced8, #edf2f8);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background-size: cover;
  background-position: center;
}

.archive-banner h2 {
  margin: 0;
  font-size: 32px;
  line-height: 1.4;
}

.archive-banner p {
  margin: 6px 0 0;
  color: rgba(255,255,255,.76);
}

.ad-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.ad {
  min-height: 96px;
  border: 1px dashed #bbb;
  border-radius: var(--radius-sm);
  background: #eee;
  display: grid;
  place-items: center;
  color: #777;
  font-size: 12px;
}

/* Topics / Footer
--------------------------------------------------------- */
.topic-list {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.topic-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--color-border);
}

.topic-row:last-child {
  border-bottom: 0;
}

.topic-date {
  color: var(--color-muted);
  font-size: 14px;
}

.footer {
  background: #111;
  color: #aaa;
  padding: 48px 0 32px;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 64px;
  margin-bottom: 28px;
  padding-bottom: 26px;
  border-bottom: 1px solid #2a2a2a;
}

.footer__group {
  display: grid;
  gap: 8px;
  justify-items: center;
}

.footer__group h3 {
  margin: 0 0 2px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  color: #777;
}

.footer__group a {
  font-size: 13px;
  transition: color .2s;
}

.footer__group a:hover {
  color: #fff;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #2a2a2a;
}

.footer__nav a {
  font-size: 14px;
}

.footer__copy {
  text-align: center;
  font-size: 12px;
  color: #777;
}


/* Contact panels (index)
--------------------------------------------------------- */
.contact-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.contact-panel {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 40px 32px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.contact-panel__title {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 24px;
  color: var(--color-text);
}

.contact-panel__tel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 0 14px;
}

.contact-panel__tel img {
  height: 36px;
  width: auto;
  display: block;
}

.contact-panel__tel span {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--color-text);
  line-height: 1;
}

.contact-panel__hours {
  font-size: 14px;
  color: var(--color-text);
  margin: 0 0 28px;
  line-height: 1.9;
  flex: 1;
}

.contact-panel__body {
  font-size: 15px;
  color: var(--color-text);
  line-height: 1.9;
  margin: 0 0 28px;
  flex: 1;
}

.contact-panel__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 20px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
  transition: border-color .2s, color .2s;
}

.contact-panel__btn:hover {
  border-color: var(--theme);
  color: var(--theme);
}

/* Footer bottom bar
--------------------------------------------------------- */
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer__social {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.footer__social .icon-link {
  background: #2a2a2a;
  border-color: #444;
  color: #aaa;
}

/* Responsive
--------------------------------------------------------- */
@media (max-width: 1024px) {
  .nav,
  .header__actions {
    display: none;
  }

  .menu-button {
    display: flex;
  }

  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .search-panel__inner {
    grid-template-columns: 1fr 1fr;
  }

  .media-card {
    grid-template-columns: 1fr;
  }

  .media-card__image {
    min-height: 240px;
  }
}

@media (max-width: 768px) {
  .container,
  .wide-container {
    width: min(100% - 32px, var(--container));
  }

  .header__inner {
    height: 68px;
  }

  .nav-drawer,
  .nav-overlay {
    top: 68px;
  }

  .logo {
    min-width: auto;
  }

  .logo__img {
    height: 36px;
  }

  .hero--visual {
    min-height: 70vh;
  }

  .hero--message {
    padding: 72px 0;
  }

  .hero__content {
    padding-bottom: 40px;
  }

  .hero__content h1 {
    font-size: clamp(26px, 7vw, 38px);
  }

  .hero__message h1,
  .section__title,
  .archive-banner h2 {
    font-size: 28px;
  }

  .section {
    padding: 56px 0;
  }

  .section__header {
    display: block;
  }

  .section__lead {
    margin-bottom: 14px;
  }

  .card-grid,
  .cta-grid,
  .media-grid,
  .ad-grid,
  .contact-panels {
    grid-template-columns: 1fr;
  }

  .search-panel {
    margin-top: -28px;
  }

  .search-panel__inner {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .archive-banner {
    display: block;
    padding: 28px;
  }

  .archive-banner .button {
    margin-top: 20px;
  }

  .topic-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

/* ユーティリティ
--------------------------------------------------------- */
.footer__copy--left {
  text-align: left;
  margin: 0;
}

.footer__banner-img {
  display: block;
  max-height: 60px;
  width: auto;
}

.map-frame {
  min-height: 480px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 480px;
  border: 0;
}

.text-link {
  color: var(--theme);
  font-weight: 600;
}

.media-spec__logo {
  display: block;
  max-height: 60px;
  width: auto;
  margin-bottom: 16px;
}

.block__title {
  margin: 0;
  font-size: 32px;
  line-height: 1.35;
  letter-spacing: .03em;
}

.button--overlay {
  background: rgba(255,255,255,.15) !important;
  border: 1px solid rgba(255,255,255,.5);
  flex-shrink: 0;
}

.media-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* アーカイブバナー（画像のみ）
--------------------------------------------------------- */
.archive-banner-link {
  display: block;
  max-width: 800px;
  margin: 0 auto;
  border-radius: var(--radius-md);
  overflow: hidden;
  line-height: 0;
}

.archive-banner-link img {
  width: 100%;
  height: auto;
  display: block;
}

/* エディター画像アライメント */
.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.alignleft {
  float: left;
  margin: 0 1.5em 1em 0;
}
.alignright {
  float: right;
  margin: 0 0 1em 1.5em;
}
.alignnone {
  display: block;
}

/* Hero catchcopy (#3) */
.hero__content h1.hero__catchcopy {
  font-size: 50px;
  line-height: 1.5;
  margin: 22px 0 10px;
  text-wrap: initial;
}
h1.hero__catchcopy .ccopy-lg { font-size: 50px; }
h1.hero__catchcopy .ccopy-sm { font-size: 42px; }
.hero__en-caption {
  font-size: 16px;
  letter-spacing: 0.12em;
  margin-top: 10px;
  color: rgba(255,255,255,.8);
}

/* Archive feature (#8) */
.archive-feature {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
}
.archive-feature__image img {
  width: 100%;
  border-radius: 12px;
  display: block;
}
.archive-feature__label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: #1a2040;
  font-weight: 700;
  margin-bottom: 16px;
}
.archive-feature__label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: #1a2040;
  flex-shrink: 0;
}
.archive-feature__sub {
  font-size: 22px;
  font-weight: 700;
  color: #222;
  margin-bottom: 4px;
}
.archive-feature__title {
  font-size: 56px;
  font-weight: 900;
  line-height: 1.1;
  margin-top: 10px;
  margin-bottom: 20px;
  color: #111;
}
.archive-feature__desc {
  font-size: 15px;
  color: #8d8b86;
  line-height: 1.8;
  margin-bottom: 28px;
}
.archive-feature__btn {
  display: inline-block;
  padding: 12px 28px;
  background: #1a2040;
  color: #fff;
  border-radius: 100px;
  font-size: 14px;
  text-decoration: none;
}
.archive-feature__btn:hover { opacity: .85; }
@media (max-width: 768px) {
  .archive-feature { grid-template-columns: 1fr; gap: 24px; }
  .archive-feature__title { font-size: 40px; }
  .hero__content h1.hero__catchcopy { font-size: 32px; }
  h1.hero__catchcopy .ccopy-lg { font-size: 32px; }
  h1.hero__catchcopy .ccopy-sm { font-size: 26px; }
}

/* Hero Banner */
.hero-banner { background: #fff; padding: 20px 0; }
.hero-banner__inner { width: min(100% - 48px, 960px); margin: 0 auto; }
.hero-banner__inner h2 { margin-bottom: 12px; }
.hero-banner img { width: 100%; display: block; border-radius: 8px; }

.sp-only { display: none; }
@media (max-width: 768px) {
  .sp-only { display: inline; }
}

