:root {
  --yellow: #ffbf1f;
  --red: #e53935;
  --red-dark: #c92b28;
  --ink: #171717;
  --bg: #fff8e6;
  --line: rgba(23, 23, 23, 0.18);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  color: var(--ink);
}

.site-header {
  background: var(--yellow);
}

.site-header .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.logo-image {
  display: block;
  width: 52px;
  height: 52px;
  object-fit: contain;
  flex-shrink: 0;
}

.logo-text {
  display: inline-block;
  line-height: 1;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 12px 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 8px 22px rgba(23, 23, 23, 0.08);
  font-size: 14px;
  font-weight: 900;
}

.nav a {
  color: var(--ink);
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
}

.footer {
  background: var(--ink);
  color: #fff;
  padding: 58px 20px 28px;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 56px;
  align-items: start;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.footer-logo {
  display: block;
  width: 50px;
  height: 50px;
  object-fit: contain;
  flex-shrink: 0;
}

.footer-copy {
  max-width: 360px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.9;
  font-weight: 700;
}

.footer-navs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.footer-nav-title {
  margin: 0 0 14px;
  color: var(--yellow);
  font-size: 13px;
  line-height: 1.4;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.footer-links {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.76);
  text-decoration: none;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 700;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.58);
  text-decoration: none;
}

@media (max-width: 768px) {
  .site-header .header {
    padding: 20px 18px;
  }

  .nav {
    display: none;
  }

  .logo {
    font-size: 20px;
  }

  .logo-image {
    width: 42px;
    height: 42px;
  }

  .footer {
    padding: 46px 20px 24px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-brand {
    font-size: 20px;
  }

  .footer-logo {
    width: 42px;
    height: 42px;
  }

  .footer-navs {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer-bottom {
    display: block;
    margin-top: 36px;
  }

  .footer-bottom-links {
    margin-top: 14px;
  }
}

.single-main {
  background: #fff;
  padding: 64px 20px 80px;
}

.single-inner {
  max-width: 840px;
  margin: 0 auto;
}

.single-article {
  color: var(--ink);
}

.single-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
  color: #777;
  font-size: 13px;
  font-weight: 700;
}

.single-title {
  margin: 0;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.45;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.single-author {
  margin-top: 18px;
  color: #666;
  font-size: 14px;
  font-weight: 700;
}

.single-content {
  margin-top: 42px;
  font-size: 16px;
  line-height: 2;
}

.single-content p {
  margin: 0 0 1.8em;
}

.single-content h2 {
  margin: 2.4em 0 1em;
  padding-bottom: 0.45em;
  border-bottom: 2px solid var(--yellow);
  font-size: 26px;
  line-height: 1.5;
  font-weight: 900;
}

.single-content h3 {
  margin: 2em 0 1em;
  font-size: 21px;
  line-height: 1.5;
  font-weight: 900;
}

.single-content img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .single-main {
    padding: 42px 18px 64px;
  }

  .single-content {
    font-size: 15px;
  }

  .single-content h2 {
    font-size: 22px;
  }
}

html,
body {
  min-height: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.footer {
  margin-top: auto;
}

.single-main {
  background: #fff;
  padding: 64px 20px 80px;
}

.single-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) 300px;
  gap: 56px;
  max-width: 1120px;
  margin: 0 auto;
  align-items: start;
}

.single-content-area {
  min-width: 0;
}

.single-article {
  color: var(--ink);
}

.single-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
  color: #777;
  font-size: 13px;
  font-weight: 700;
}

.single-title {
  margin: 0;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.45;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.single-author {
  margin-top: 18px;
  color: #666;
  font-size: 14px;
  font-weight: 700;
}

.single-content {
  margin-top: 42px;
  font-size: 16px;
  line-height: 2;
}

.single-content p {
  margin: 0 0 1.8em;
}

.single-content h2 {
  margin: 2.4em 0 1em;
  padding-bottom: 0.45em;
  border-bottom: 2px solid var(--yellow);
  font-size: 26px;
  line-height: 1.5;
  font-weight: 900;
}

.single-content h3 {
  margin: 2em 0 1em;
  font-size: 21px;
  line-height: 1.5;
  font-weight: 900;
}

.single-content img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.single-sidebar {
  position: sticky;
  top: 24px;
}

.sidebar-widget {
  padding: 22px;
  border-radius: 12px;
  background: #fff8e6;
  border: 1px solid rgba(23, 23, 23, 0.08);
  font-size: 14px;
  line-height: 1.8;
}

.sidebar-widget + .sidebar-widget {
  margin-top: 18px;
}

.sidebar-widget-title {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 900;
}

.sidebar-widget p {
  margin: 0;
}

.sidebar-widget ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sidebar-widget a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
}

@media (max-width: 900px) {
  .single-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .single-sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .single-main {
    padding: 42px 18px 64px;
  }

  .single-content {
    font-size: 15px;
  }

  .single-content h2 {
    font-size: 22px;
  }
}

.profile-card {
  position: relative;
  overflow: hidden;
  padding: 30px 24px 26px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(23, 23, 23, 0.08);
  box-shadow: 0 12px 28px rgba(23, 23, 23, 0.07);
  text-align: center;
}

.profile-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 82px;
  background: var(--yellow);
  z-index: 0;
}

.profile-card > * {
  position: relative;
  z-index: 1;
}

.profile-card-image {
  width: 96px;
  height: 96px;
  margin: 0 auto 16px;
  overflow: hidden;
  border: 4px solid #fff;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(23, 23, 23, 0.12);
}

.profile-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-card-label {
  margin: 0 0 8px;
  color: var(--red);
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.profile-card-name {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 900;
}

.profile-card-catch {
  margin: 10px 0 0;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.7;
  font-weight: 900;
}

.profile-card-text {
  margin: 14px 0 0;
  color: #555;
  font-size: 13px;
  line-height: 1.9;
  font-weight: 700;
  text-align: left;
}

.profile-card-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.profile-card-tags span {
  display: inline-grid;
  place-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: #fff8e6;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
}

.profile-card-link {
  display: grid;
  place-items: center;
  min-height: 44px;
  margin-top: 20px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 8px 16px rgba(229, 57, 53, 0.18);
}

.shop-main {
  background: #fff;
  padding: 56px 20px 80px;
}

.shop-detail {
  max-width: 1120px;
  margin: 0 auto;
}

.shop-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 42px;
  align-items: center;
  margin-bottom: 52px;
}

.shop-breadcrumb-like {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
  color: #666;
  font-size: 13px;
  font-weight: 800;
}

.shop-breadcrumb-like span {
  display: inline-grid;
  place-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: #fff8e6;
}

.shop-title {
  margin: 0;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.3;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.shop-type-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.shop-type-tags span {
  display: inline-grid;
  place-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.shop-main-image {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  background: #eee;
  box-shadow: 0 12px 28px rgba(23, 23, 23, 0.1);
}

.shop-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 52px;
  align-items: start;
}

.shop-section + .shop-section {
  margin-top: 48px;
}

.shop-section-title {
  margin: 0 0 22px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--yellow);
  font-size: 26px;
  line-height: 1.5;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.shop-description {
  font-size: 16px;
  line-height: 2;
  color: #333;
}

.shop-description p {
  margin: 0 0 1.6em;
}

.shop-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.shop-info-card {
  padding: 20px;
  border-radius: 14px;
  background: #fff8e6;
  border: 1px solid rgba(23, 23, 23, 0.08);
}

.shop-info-card dt {
  margin: 0 0 8px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.shop-info-card dd {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  font-weight: 700;
}

.shop-feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.shop-feature-tags span {
  display: inline-grid;
  place-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: #fff8e6;
  border: 1px solid rgba(23, 23, 23, 0.08);
  font-size: 13px;
  font-weight: 900;
}

.shop-sidebar {
  position: sticky;
  top: 24px;
}

.shop-basic-card {
  padding: 24px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(23, 23, 23, 0.1);
  box-shadow: 0 12px 28px rgba(23, 23, 23, 0.06);
}

.shop-basic-title {
  margin: 0 0 18px;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 900;
}

.shop-basic-list {
  margin: 0;
}

.shop-basic-list div {
  padding: 14px 0;
  border-top: 1px solid rgba(23, 23, 23, 0.08);
}

.shop-basic-list dt {
  margin: 0 0 6px;
  color: #777;
  font-size: 12px;
  font-weight: 900;
}

.shop-basic-list dd {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 700;
}

.shop-basic-buttons {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.shop-basic-buttons a {
  display: grid;
  place-items: center;
  min-height: 44px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

@media (max-width: 900px) {
  .shop-hero,
  .shop-layout {
    grid-template-columns: 1fr;
  }

  .shop-sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .shop-main {
    padding: 42px 18px 64px;
  }

  .shop-hero {
    gap: 28px;
    margin-bottom: 42px;
  }

  .shop-info-grid {
    grid-template-columns: 1fr;
  }

  .shop-section-title {
    font-size: 22px;
  }
}

.shop-map {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  background: #eee;
  box-shadow: 0 10px 24px rgba(23, 23, 23, 0.08);
}

.shop-map iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.shop-basic-section {
  margin-top: 52px;
}

.shop-basic-layout {
  display: grid;
  grid-template-columns: minmax(0, 470px) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

.shop-basic-media {
  display: grid;
  gap: 28px;
}

.shop-basic-image {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #eee;
}

.shop-basic-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-basic-map {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #eee;
}

.shop-basic-map iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.shop-map-link {
  display: inline-block;
  margin-top: -14px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  text-decoration: underline;
}

.shop-basic-table dl {
  margin: 0;
}

.shop-basic-table dl > div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 28px;
  padding: 20px 0;
  border-top: 1px solid rgba(23, 23, 23, 0.1);
}

.shop-basic-table dl > div:last-child {
  border-bottom: 1px solid rgba(23, 23, 23, 0.1);
}

.shop-basic-table dt {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.7;
  font-weight: 900;
}

.shop-basic-table dd {
  margin: 0;
  color: #222;
  font-size: 15px;
  line-height: 1.9;
  font-weight: 700;
}

.shop-basic-table a {
  color: var(--ink);
  text-decoration: underline;
}

@media (max-width: 900px) {
  .shop-basic-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .shop-basic-table dl > div {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 16px 0;
  }
}

.shop-basic-map {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #eee;
}

.shop-basic-map iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.shop-basic-layout {
  display: grid;
  grid-template-columns: minmax(0, 470px) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

.shop-basic-media {
  display: grid;
  gap: 28px;
}

.shop-basic-image {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #eee;
}

.shop-basic-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-basic-map {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #eee;
}

.shop-basic-map iframe {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

.shop-basic-table dl {
  margin: 0;
}

.shop-basic-table dl > div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 28px;
  padding: 20px 0;
  border-top: 1px solid rgba(23, 23, 23, 0.1);
}

.shop-basic-table dl > div:last-child {
  border-bottom: 1px solid rgba(23, 23, 23, 0.1);
}

.shop-basic-table dt {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.7;
  font-weight: 900;
}

.shop-basic-table dd {
  margin: 0;
  color: #222;
  font-size: 15px;
  line-height: 1.9;
  font-weight: 700;
}

.shop-basic-table a {
  color: var(--ink);
  text-decoration: underline;
}

@media (max-width: 900px) {
  .shop-basic-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .shop-basic-table dl > div {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 16px 0;
  }
}

.shop-title-image {
  max-width: 520px;
  margin: 28px auto 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  background: #fff8e6;
  box-shadow: 0 12px 28px rgba(23, 23, 23, 0.08);
}

.shop-title-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.shop-hero {
  display: block;
  max-width: 860px;
  margin: 0 auto 52px;
  text-align: center;
}

.shop-hero-text {
  width: 100%;
}

.shop-breadcrumb-like,
.shop-type-tags {
  justify-content: center;
}

.shop-title-image {
  max-width: 560px;
  margin: 30px auto 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  background: #fff8e6;
  box-shadow: 0 12px 28px rgba(23, 23, 23, 0.08);
}

.shop-title-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}



@media (max-width: 768px) {
  .shop-basic-pair {
    grid-template-columns: 1fr;
  }
}

.shop-hero-labels {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 22px;
}

.shop-hero-label {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 14px;
  border-radius: 7px;
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.02em;
  border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 rgba(23, 23, 23, 0.16);
  transform: rotate(-1deg);
}

.shop-hero-label:nth-child(even) {
  transform: rotate(1.2deg);
}

.shop-hero-label-area {
  background: #fff8e6;
  color: var(--ink);
}

.shop-hero-label-type {
  background: #fff;
  color: var(--red);
  border-color: var(--red);
}

.shop-archive-main {
  background: #fff;
}

.shop-archive-hero {
  padding: 68px 20px 56px;
  background: var(--yellow);
  text-align: center;
}

.shop-archive-kicker {
  margin: 0 0 16px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.shop-archive-title {
  margin: 0;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.35;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.shop-archive-lead {
  margin: 22px 0 0;
  font-size: 15px;
  line-height: 2;
  font-weight: 800;
}

.shop-archive-search {
  max-width: 980px;
  margin: 36px auto 0;
}

.shop-archive-search-row {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(160px, 0.7fr) minmax(160px, 0.7fr) 112px;
  gap: 10px;
  padding: 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 12px 28px rgba(23, 23, 23, 0.1);
}

.shop-archive-search input,
.shop-archive-search select {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(23, 23, 23, 0.12);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.shop-archive-search button {
  height: 48px;
  border: 0;
  border-radius: 10px;
  background: var(--red);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
}

.shop-archive-content {
  max-width: 1120px;
  margin: 0 auto;
  padding: 58px 20px 80px;
}

.shop-archive-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 26px;
}

.shop-archive-head h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.4;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.shop-archive-head p {
  margin: 0;
  color: #666;
  font-size: 13px;
  font-weight: 800;
}

.shop-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.shop-card {
  display: block;
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(23, 23, 23, 0.08);
  box-shadow: 0 10px 24px rgba(23, 23, 23, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.shop-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(23, 23, 23, 0.1);
}

.shop-card-image {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #fff8e6;
}

.shop-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.shop-card-body {
  padding: 18px;
}

.shop-card-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.shop-card-label {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 7px;
  border: 2px solid var(--ink);
  box-shadow: 2px 2px 0 rgba(23, 23, 23, 0.12);
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
}

.shop-card-label-area {
  background: #fff8e6;
  color: var(--ink);
}

.shop-card-label-type {
  background: #fff;
  color: var(--red);
  border-color: var(--red);
}

.shop-card-title {
  margin: 0;
  font-size: 19px;
  line-height: 1.5;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.shop-card-address {
  margin: 10px 0 0;
  color: #555;
  font-size: 13px;
  line-height: 1.7;
  font-weight: 700;
}

.shop-card-info {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding-top: 14px;
  border-top: 1px solid rgba(23, 23, 23, 0.08);
}

.shop-card-info div {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 8px;
}

.shop-card-info dt {
  color: #777;
  font-size: 12px;
  font-weight: 900;
}

.shop-card-info dd {
  margin: 0;
  color: #333;
  font-size: 12px;
  line-height: 1.6;
  font-weight: 700;
}

.shop-card-more {
  display: grid;
  place-items: center;
  min-height: 40px;
  margin-top: 18px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.shop-archive-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 46px;
}

.shop-archive-pagination .page-numbers {
  display: grid;
  place-items: center;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  border-radius: 999px;
  background: #fff8e6;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.shop-archive-pagination .page-numbers.current {
  background: var(--red);
  color: #fff;
}

.shop-empty {
  padding: 48px 20px;
  border-radius: 16px;
  background: #fff8e6;
  text-align: center;
}

.shop-empty p {
  margin: 0;
  font-size: 15px;
  font-weight: 800;
}

.shop-empty a {
  display: inline-grid;
  place-items: center;
  min-height: 44px;
  margin-top: 18px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

@media (max-width: 980px) {
  .shop-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shop-archive-search-row {
    grid-template-columns: 1fr 1fr;
  }

  .shop-archive-search button {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .shop-archive-hero {
    padding: 50px 18px 42px;
  }

  .shop-archive-content {
    padding: 42px 18px 64px;
  }

  .shop-archive-search-row {
    grid-template-columns: 1fr;
  }

  .shop-archive-head {
    display: block;
  }

  .shop-archive-head p {
    margin-top: 8px;
  }

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

.shop-back-buttons {
  display: flex;
  justify-content: center;
  margin-top: 56px;
}

.shop-back-button {
  display: inline-grid;
  place-items: center;
  min-width: 190px;
  min-height: 48px;
  padding: 0 28px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(229, 57, 53, 0.18);
}

.shop-back-button:hover {
  opacity: 0.88;
}

.shop-card,
.shop-card:link,
.shop-card:visited,
.shop-card:hover,
.shop-card:active,
.shop-card * {
  text-decoration: none !important;
}

.shop-card-title,
.shop-card-address,
.shop-card-info dt,
.shop-card-info dd,
.shop-card-more {
  text-decoration: none !important;
}