.shop-page {
  font-family: "Noto Sans JP", sans-serif;
  color: #111;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

.shop-hero {
  background: linear-gradient(135deg, #b40000, #e60012);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.shop-area {
  font-weight: 700;
  letter-spacing: 0.08em;
}

.shop-hero h1 {
  font-size: 42px;
  margin: 12px 0;
}

.shop-copy {
  max-width: 720px;
  margin: 0 auto 28px;
  line-height: 1.8;
}

.shop-cta {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-red,
.btn-dark {
  padding: 15px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

.btn-red {
  background: #fff;
  color: #d60000;
}

.btn-dark {
  background: #111;
  color: #fff;
}

.shop-info,
.route-guide,
.map-section {
  padding: 60px 0;
}

.shop-info h2,
.route-guide h2,
.map-section h2 {
  font-size: 30px;
  margin-bottom: 28px;
  text-align: center;
}

.info-table {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.08);
  overflow: hidden;
}

.info-table dl {
  display: grid;
  grid-template-columns: 180px 1fr;
  margin: 0;
  border-bottom: 1px solid #eee;
}

.info-table dt {
  background: #f7f7f7;
  padding: 20px;
  font-weight: 700;
}

.info-table dd {
  padding: 20px;
  margin: 0;
  line-height: 1.8;
}

.route-list {
  display: grid;
  gap: 16px;
}

.route-item {
  display: flex;
  gap: 16px;
  background: #fff;
  padding: 22px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

.route-item span {
  background: #d60000;
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  flex-shrink: 0;
}

.route-item p {
  margin: 0;
  line-height: 1.8;
}

.map-box {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.08);
}

@media (max-width: 768px) {
  .shop-hero h1 {
    font-size: 30px;
  }

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

  .info-table dt {
    padding-bottom: 8px;
  }
}

.site-footer {
  background: #111;
  color: #fff;
  padding: 28px 20px;
  margin-top: 80px;
}

.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}

.footer-license {
  font-size: 13px;
  color: #ccc;
  margin-bottom: 10px;
  line-height: 1.8;
}

.footer-copy {
  font-size: 13px;
  color: #888;
  margin: 0;
}

@media (max-width: 768px) {
  .site-footer {
    padding: 24px 16px;
  }

  .footer-license,
  .footer-copy {
    font-size: 12px;
  }
}

.shop-list-section {
  padding: 80px 0;
  background: #f8f8f8;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.sub-title {
  color: #d60000;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.section-title h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 18px;
}

.section-title p {
  color: #666;
  line-height: 1.8;
}

.shop-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.25s;
  height: 100%;
}

.shop-card:hover {
  transform: translateY(-6px);
}

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

.shop-content {
  padding: 28px;
}

.shop-area {
  display: inline-block;
  background: #fff0f0;
  color: #d60000;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
}

.shop-content h3 {
  font-size: 28px;
  margin-bottom: 24px;
  font-weight: 700;
}

.shop-info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.shop-info-list li {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  line-height: 1.7;
  color: #333;
}

.shop-info-list i {
  color: #d60000;
  width: 20px;
  margin-top: 4px;
}

.shop-info-list a {
  color: #d60000;
  text-decoration: none;
  font-weight: 700;
}

.shop-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.shop-buttons .btn {
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 700;
}

@media (max-width: 768px) {

  .section-title h2 {
    font-size: 30px;
  }

  .shop-content h3 {
    font-size: 24px;
  }

  .shop-image img {
    height: 210px;
  }

}