:root {
  --bg: #f3f4f6;
  --surface: #ffffff;
  --surface-soft: #f8fafc;
  --text: #1d2b45;
  --muted: #61708c;
  --line: #d9e6f5;
  --line-strong: #bfd4ee;
  --blue: #1683ff;
  --blue-dark: #0f63d7;
  --sky: #eef2ff;
  --sky-strong: #d6ebff;
  --mint: #e8faf3;
  --mint-dark: #10a36a;
  --yellow: #fff5d7;
  --pink: #fff0f6;
  --shadow-soft: 0 18px 44px rgba(15, 23, 42, 0.08);
  --shadow-card: 0 12px 28px rgba(15, 23, 42, 0.06);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --container: min(1200px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Noto Sans JP", system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input { font: inherit; }
button { cursor: pointer; }
.container { width: var(--container); margin: 0 auto; }
.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: 20;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(217, 230, 245, 0.9);
}
.header-inner {
  min-height: 80px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  height: 56px;
  width: auto;
  display: block;
}

.brand-mark {
  width: 48px; height: 48px; border-radius: 16px; display: grid; place-items: center;
  background: linear-gradient(135deg, #23c2ff 0%, #1683ff 100%);
  color: #fff; font-size: 1.3rem; font-weight: 800;
  box-shadow: 0 10px 24px rgba(22, 131, 255, 0.28);
}
.brand-text { display: grid; gap: 2px; }
.brand-sub { font-size: 0.75rem; color: var(--muted); }
.brand strong { font-size: 1.05rem; letter-spacing: 0.01em; }
.header-nav { display: flex; align-items: center; gap: 10px; }
.header-nav a {
  padding: 12px 14px; border-radius: 999px; color: var(--muted); font-weight: 600;
}
.header-nav a:hover { background: var(--surface-soft); color: var(--blue-dark); }

.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 0;
  border-radius: 999px; padding: 14px 22px; font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.button:hover { transform: translateY(-1px); }
.button-small { padding: 10px 16px; }
.button-primary {
  color: #fff;
  background-color: #ff7a00; /* オレンジ */
  box-shadow: 0 12px 28px rgba(99, 102, 241, 0.24);
}
.button-secondary {
  background: #fff; border: 1px solid var(--line); color: var(--text);
}

.hero-section {
  position: relative;
  padding: 34px 0 28px;
  background:
    radial-gradient(circle at 10% 12%, rgba(255, 207, 232, 0.42), transparent 22%),
    radial-gradient(circle at 88% 10%, rgba(176, 228, 255, 0.42), transparent 26%),
    radial-gradient(circle at 64% 32%, rgba(255, 230, 165, 0.24), transparent 20%),
    linear-gradient(180deg, #f8fafc 0%, #f3f4f6 58%, #f3f4f6 100%);
  overflow: hidden;
}
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.68) 0%, rgba(255,255,255,0.18) 28%, rgba(255,255,255,0) 100%);
  pointer-events: none;
}
.hero-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(243,244,246,0) 0%, #f3f4f6 85%);
  pointer-events: none;
}
.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  gap: 42px;
  align-items: center;
  padding: 18px 0 0;
}
.hero-copy {
  padding: 20px 0 26px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.82);
  color: var(--blue-dark);
  font-weight: 700;
  font-size: 0.92rem;
  box-shadow: 0 8px 24px rgba(31, 58, 97, 0.05);
}
.hero-copy h1 {
  margin: 18px 0 0;
  font-size: clamp(28px, 3.2vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.hero-copy h1 span {
  color: var(--blue);
}
.lead {
  margin: 22px 0 0;
  max-width: 620px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.9;
}
.hero-search {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 64px;
  padding: 0 20px;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(217, 230, 245, 0.95);
  border-radius: 999px;
  box-shadow: 0 18px 38px rgba(36, 62, 94, 0.08);
}
.hero-search svg { width: 21px; height: 21px; fill: #6f8db3; flex: 0 0 auto; }
.hero-search input {
  width: 100%; border: 0; outline: 0; background: transparent; color: var(--text); font-size: 1rem;
}
.hero-search input::placeholder { color: #97a7bf; }

.hero-important-band {
  position: relative;
  z-index: 1;
  margin-top: 30px;
}
.hero-important-inner {
  display: grid;
  grid-template-columns: minmax(180px, 240px) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  padding: 22px 26px;
  background: rgba(255,255,255,0.86);
  border-radius: 28px;
  box-shadow: 0 18px 44px rgba(15, 66, 134, 0.06);
  backdrop-filter: blur(10px);
}
.hero-important-label {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-important-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--blue-dark);
  background: linear-gradient(135deg, rgba(22,148,255,0.08), rgba(15,108,240,0.14));
}
.hero-important-label p {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}
.hero-important-body {
  display: grid;
  gap: 10px;
}
.hero-important-body p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.9;
  color: var(--muted);
}
.hero-important-body strong {
  color: var(--text);
}
.hero-visual-card {
  position: relative;
  padding: 12px 0;
}
.hero-visual-card::before {
  content: "";
  position: absolute;
  inset: auto 28px 42px auto;
  width: 168px;
  height: 168px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.72) 0%, rgba(255,255,255,0) 70%);
  pointer-events: none;
}
.hero-visual-card img {
  width: 100%;
  border-radius: 0;
  box-shadow: 0 28px 54px rgba(76, 84, 135, 0.10);
}

.catalog-section { padding: 12px 0 80px; }
.catalog-topbar {
  display: flex; align-items: end; justify-content: space-between; gap: 18px; margin-bottom: 18px;
}
.section-label {
  margin: 0 0 10px; color: var(--blue); font-size: 0.8rem; font-weight: 800; letter-spacing: 0.16em;
}
.catalog-topbar h2,
.contact-card h2,
.detail-page-content h1,
.detail-side-card h2 {
  margin: 0;
  font-size: clamp(18px, 3.2vw, 28px);
  line-height: 1.2;
}
.catalog-banner-count {
  min-width: 96px; padding: 16px 22px; border-radius: 20px; background: #fff; border: 1px solid var(--line);
  box-shadow: var(--shadow-card); text-align: center; font-weight: 800; font-size: 1.1rem;
}
.catalog-banner-count span { font-size: 1.5rem; color: var(--blue-dark); }
.catalog-tabs-wrap {
  padding: 8px; background: linear-gradient(180deg, #eef7ff 0%, #ffffff 100%);
  border: 1px solid var(--line); border-radius: 28px; box-shadow: var(--shadow-card);
}
.catalog-switcher {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px;
}
.catalog-tab {
  appearance: none; border: 0; background: transparent; min-height: 96px;
  border-radius: 22px; padding: 18px 20px; text-align: left;
  display: grid; gap: 6px; color: var(--muted); font-weight: 700;
}
.catalog-tab:hover { background: rgba(255,255,255,0.75); }
.catalog-tab.is-active {
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  color: #fff; box-shadow: 0 14px 30px rgba(17, 112, 233, 0.24);
}
.catalog-tab-label { font-size: 1.18rem; }
.catalog-tab-sub { font-size: 0.9rem; opacity: 0.92; }
.filter-row {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  margin: 22px 0 0; flex-wrap: wrap;
}
.chip-group { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  border: 1px solid var(--line); background: #fff; color: var(--text);
  padding: 11px 16px; border-radius: 999px; font-weight: 700;
}
.chip:hover { background: var(--surface-soft); }
.chip.is-active {
  background: var(--sky); border-color: #b8d7ff; color: var(--blue-dark);
}
.toggle-pill {
  display: inline-flex; align-items: center; gap: 10px; padding: 12px 18px; border-radius: 999px;
  background: #fff; border: 1px solid var(--line); font-weight: 700; color: var(--muted);
}
.toggle-pill input { accent-color: var(--blue); width: 18px; height: 18px; }
.list-heading {
  margin: 26px 0 0; display: flex; align-items: end; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  padding: 0 4px;
}
.list-heading-kicker {
  display: inline-block; margin-bottom: 6px; font-size: 0.8rem; letter-spacing: 0.14em; font-weight: 800; color: #7f92af;
}
.list-heading h3 { margin: 0; font-size: 2rem; }
.list-heading p { margin: 0; color: var(--muted); max-width: 460px; line-height: 1.8; }
.card-grid {
  margin-top: 22px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px;
}
.card {
  display: flex; flex-direction: column; background: rgba(255,255,255,0.98); border: 1px solid var(--line);
  border-radius: 28px; overflow: hidden; box-shadow: var(--shadow-card);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 18px 36px rgba(19, 73, 135, 0.12); }
.card-thumb {
  aspect-ratio: 16 / 9; background: linear-gradient(180deg, #f3f9ff 0%, #eef6ff 100%);
  border-bottom: 1px solid var(--line);
}
.card-thumb img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 20px; display: grid; gap: 14px; }
.card-meta { display: flex; flex-wrap: wrap; gap: 8px; }
.badge {
  display: inline-flex; align-items: center; min-height: 30px; padding: 0 12px; border-radius: 999px; font-size: 0.78rem; font-weight: 800;
}
.badge-type { background: var(--sky); color: var(--blue-dark); }
.badge-category { background: #eff4fb; color: #5e6c84; }
.badge-recommended { background: var(--yellow); color: #9b6a08; }
.card h3 { margin: 0; font-size: 1.35rem; line-height: 1.5; }
.card p { margin: 0; color: var(--muted); line-height: 1.8; }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-list span {
  background: var(--surface-soft); border: 1px solid #e3ecf9; color: #567095;
  padding: 8px 12px; border-radius: 999px; font-size: 0.82rem; font-weight: 700;
}
.card-footer {
  display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 4px; flex-wrap: wrap;
}
.price-note { color: #8493aa; font-weight: 700; }
.card-link {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 46px; padding: 0 18px; border-radius: 999px;
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  color: #fff; font-weight: 800; box-shadow: 0 12px 28px rgba(22, 131, 255, 0.2);
}
.card-link:hover { transform: translateY(-1px); }
.empty-state {
  margin-top: 28px; background: #fff; border: 1px dashed var(--line-strong); border-radius: 26px;
  padding: 34px; text-align: center; box-shadow: var(--shadow-card);
}
.empty-state h3 { margin: 0; font-size: 1.35rem; }
.empty-state p { margin: 10px 0 0; color: var(--muted); }
.pagination {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.pagination-pages {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.pagination-button,
.pagination-nav {
  min-width: 46px;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--text);
  font-weight: 800;
  box-shadow: var(--shadow-card);
}
.pagination-button:hover,
.pagination-nav:hover {
  background: var(--surface-soft);
}
.pagination-button.is-active {
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  border-color: transparent;
  color: #fff;
}
.pagination-nav:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none;
}

.contact-section { padding-bottom: 84px; }
.contact-card {
  border-radius: 34px; background: linear-gradient(135deg, #f0f8ff 0%, #ffffff 62%, #eef9f4 100%);
  border: 1px solid var(--line); box-shadow: var(--shadow-card); padding: 40px;
}
.contact-card p { color: var(--muted); line-height: 1.9; max-width: 760px; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }

.detail-page-body {
  background:
    radial-gradient(circle at top right, rgba(71, 181, 255, 0.14), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
}
.detail-page-main { padding: 40px 0 84px; }
.detail-page-layout {
  display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 24px; align-items: start;
}
.detail-page-card,
.detail-side-card {
  background: rgba(255,255,255,0.98); border: 1px solid var(--line); border-radius: 30px; box-shadow: var(--shadow-card);
}
.detail-page-card { overflow: hidden; }
.detail-page-hero {
  background: linear-gradient(180deg, #eef7ff 0%, #f8fbff 100%);
  border-bottom: 1px solid var(--line);
}
.detail-page-hero img { width: 100%; aspect-ratio: 16 / 8; object-fit: cover; }
.detail-page-content { padding: 30px; }
.detail-page-summary { margin: 16px 0 0; color: var(--muted); line-height: 1.9; }
.detail-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin-top: 24px;
}
.detail-box {
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  border: 1px solid var(--line); border-radius: 24px; padding: 24px;
}
.detail-box-wide { margin-top: 18px; }
.detail-box h2,
.detail-box h4 { margin: 0 0 14px; font-size: 1.18rem; }
.detail-box ul,
.detail-box ol { margin: 0; padding-left: 1.25rem; color: var(--muted); line-height: 1.95; }
.detail-box p { margin: 0; color: var(--muted); line-height: 1.9; }
.detail-side-card { padding: 28px; position: sticky; top: 108px; }
.detail-side-card p { color: var(--muted); line-height: 1.9; }
.detail-side-actions { display: grid; gap: 10px; margin-top: 18px; }

@media (max-width: 1100px) {
  .hero-layout,
  .detail-page-layout,
  .card-grid { grid-template-columns: 1fr; }
  .detail-side-card { position: static; }
}

@media (max-width: 860px) {
  .header-inner,
  .catalog-topbar,
  .list-heading,
  .filter-row { align-items: stretch; }
  .header-inner,
  .catalog-topbar,
  .list-heading { flex-direction: column; }
  .header-nav { width: 100%; flex-wrap: wrap; }
  .header-nav a { flex: 1 1 auto; text-align: center; }
  .catalog-switcher,
  .detail-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  :root { --container: min(100% - 24px, 1000px); }
  .hero-section { padding-top: 24px; }
  .hero-search { min-height: 58px; }
  .catalog-tab { min-height: 88px; }
  .contact-card,
  .detail-page-content,
  .detail-side-card { padding: 22px; }
}


.hero-important-band { border-radius: 32px; margin: 34px auto 0; width: var(--container); }
.hero-important-inner { padding: 24px 28px; }
.catalog-section { background: transparent; }
.card:nth-child(3n+1) .card-thumb { background: linear-gradient(180deg, #EEF4FF 0%, #F8FBFF 100%); }
.card:nth-child(3n+2) .card-thumb { background: linear-gradient(180deg, #ECFDF5 0%, #F8FFFB 100%); }
.card:nth-child(3n+3) .card-thumb { background: linear-gradient(180deg, #FFF7ED 0%, #FFFDF8 100%); }
.badge-type { background: #EEF2FF; color: #4338CA; }
.badge-category { background: #F3F4F6; color: #4B5563; }
.tag-list span { background: #F8FAFC; border: 1px solid #E5E7EB; color: #475569; }
.contact-card, .detail-page-card, .detail-side-card, .detail-box, .catalog-tabs-wrap { background: #fff; }
.header-nav .button-primary, .header-nav .button-primary:link, .header-nav .button-primary:visited, .header-nav .button-primary:hover, .header-nav .button-primary:active { color: #fff; }
.header-nav .button-primary:hover { background: linear-gradient(135deg, #e66a00 0%, #e66b00b0 100%); }


@media (max-width: 900px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .hero-copy {
    padding-bottom: 8px;
  }
  .hero-important-inner {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px 18px;
  }
}

@media (max-width: 640px) {
  .hero-section {
    padding-top: 22px;
  }
  .hero-copy h1 {
    line-height: 1.12;
  }
  .lead {
    font-size: 0.98rem;
    line-height: 1.8;
  }
  .hero-search {
    min-height: 58px;
    padding: 0 16px;
  }
}


.detail-gallery-section {
  margin-top: 22px;
  padding: 26px;
  border-radius: 26px;
  background: #fff;
  box-shadow: var(--shadow-card);
}
.detail-gallery-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}
.detail-gallery-head h2 {
  margin: 0;
  font-size: 1.45rem;
}
.detail-gallery-status {
  min-width: 74px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--blue-dark);
  font-weight: 800;
  text-align: center;
}
.detail-gallery-stage {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}
.detail-gallery-stage img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.94);
  color: var(--text);
  box-shadow: 0 12px 28px rgba(15,23,42,0.12);
  font-size: 2rem;
  line-height: 1;
  display: grid;
  place-items: center;
}
.gallery-arrow.prev { left: 16px; }
.gallery-arrow.next { right: 16px; }
.detail-gallery-caption {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.85;
}
.detail-gallery-thumbs {
  margin-top: 16px;
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 2px;
}
.gallery-thumb {
  flex: 0 0 140px;
  border-radius: 16px;
  padding: 0;
  border: 2px solid transparent;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(15,23,42,0.06);
}
.gallery-thumb img {
  width: 100%;
  height: 88px;
  object-fit: cover;
  display: block;
}
.gallery-thumb.is-active {
  border-color: var(--blue);
}
@media (max-width: 900px) {
  .detail-gallery-section { padding: 20px; }
}
@media (max-width: 640px) {
  .detail-gallery-head {
    align-items: start;
    flex-direction: column;
  }
  .gallery-thumb { flex-basis: 112px; }
  .gallery-thumb img { height: 72px; }
  .gallery-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.7rem;
  }
}
.detail-sample-link {
  margin: 14px 0 0;
  position: relative;
  z-index: 20;
}

.detail-sample-link a {
  display: inline-block;
  position: relative;
  z-index: 21;
  color: #1a73e8;
  text-decoration: underline;
  font-weight: 700;
  cursor: pointer;
  pointer-events: auto;
}

.tag-list {
  position: relative;
  z-index: 1;
}

[data-page-usage] {
  white-space: pre-line;
}

.detail-link-section {
  margin-top: 22px;
}
.detail-link-card {
  padding: 26px;
  border-radius: 26px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--line);
}
.detail-link-card h2 {
  margin: 0;
  font-size: 1.4rem;
}
.detail-link-note {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.8;
}
.detail-link-actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.detail-link-actions .button {
  min-width: 320px;
  padding: 14px 28px;
}
.consent-modal[hidden] {
  display: none;
}
.consent-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
}
.consent-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.56);
}
.consent-modal-dialog {
  position: relative;
  width: min(560px, calc(100% - 32px));
  margin: min(10vh, 72px) auto 0;
  padding: 28px;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 28px 64px rgba(15, 23, 42, 0.24);
}
.consent-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--text);
  font-size: 1.5rem;
}
.consent-modal-dialog h2 {
  margin: 0;
  font-size: 1.5rem;
}
.consent-modal-body {
  margin-top: 16px;
  display: grid;
  gap: 12px;
  color: var(--muted);
  line-height: 1.9;
}
.consent-modal-body p {
  margin: 0;
}
.consent-modal-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}
body.is-modal-open {
  overflow: hidden;
}
@media (max-width: 640px) {
  .detail-link-card,
  .detail-gallery-section,
  .consent-modal-dialog {
    padding: 20px;
  }
  .detail-link-actions .button,
  .consent-modal-actions .button {
    width: 100%;
  }
}


.hero-notice {
  display: block;
  width: 100%;
  min-height: auto;
  margin-top: 28px;
  padding: 20px 22px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 244, 229, 0.96) 0%, rgba(255, 251, 235, 0.98) 100%);
  border: 1px solid rgba(255, 184, 77, 0.42);
  box-shadow: 0 18px 38px rgba(214, 138, 27, 0.12);
  overflow: hidden;
}
.hero-notice-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 122, 0, 0.12);
  color: #c85d00;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.hero-notice p {
  margin: 0;
  color: #6d4c1f;
  font-size: 0.92rem;
  line-height: 1.75;
}
.hero-notice strong {
  color: #9a4c00;
}
.list-heading-main {
  display: flex;
  align-items: end;
  gap: 18px;
  flex-wrap: wrap;
}
.catalog-inline-search {
  margin-top: 0;
  width: min(460px, 100%);
  min-height: 56px;
  padding: 0 18px;
  box-shadow: 0 12px 28px rgba(36, 62, 94, 0.08);
}
.catalog-inline-search input {
  font-size: 0.96rem;
}
@media (max-width: 860px) {
  .list-heading-main {
    align-items: stretch;
  }
  .catalog-inline-search {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .hero-notice {
    padding: 16px 18px;
    border-radius: 20px;
    box-shadow: 0 12px 24px rgba(214, 138, 27, 0.10);
  }

  .hero-notice-badge {
    margin-bottom: 10px;
    font-size: 0.66rem;
  }

  .hero-notice p {
    font-size: 0.82rem;
    line-height: 1.65;
  }
}
