* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  color: #1f2937;
  background: #f7f8fb;
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #e5e7eb;
  backdrop-filter: blur(10px);
}

.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 26px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo-wrap {
  display: flex;
  align-items: center;
}

.site-logo {
  width: 170px;
  height: auto;
  display: block;
}

.nav {
  display: flex;
  gap: 28px;
  font-size: 15px;
  font-weight: 800;
  color: #374151;
}

.nav a:hover {
  color: #ff3333;
}

.header-cta {
  background: #ff3333;
  color: #fff;
  padding: 13px 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(255, 51, 51, 0.28);
}

.hero {
  background:
    radial-gradient(circle at top right, rgba(255, 51, 51, 0.16), transparent 34%),
    linear-gradient(135deg, #111827 0%, #050505 52%, #1f2937 100%);
  color: #fff;
  overflow: hidden;
}

.hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 76px 22px 54px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.label {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.15;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}

.hero h1 span {
  color: #ff4b4b;
}

.hero p {
  font-size: 18px;
  color: #e5e7eb;
  max-width: 620px;
  margin-bottom: 28px;
}

.search-box {
  background: #fff;
  border-radius: 20px;
  padding: 12px;
  display: flex;
  gap: 10px;
  max-width: 650px;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.28);
}

.search-box input,
.search-box select {
  border: none;
  background: #f3f4f6;
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 15px;
  outline: none;
  width: 100%;
}

.search-box button {
  border: none;
  background: #ff3333;
  color: #fff;
  border-radius: 14px;
  padding: 0 26px;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
  white-space: nowrap;
}

.hero-card {
  background: #fff;
  color: #111827;
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  transform: rotate(1deg);
}

.hero-card-top {
  height: 150px;
  background: linear-gradient(135deg, #ff3333, #ff8a8a);
  border-radius: 22px;
  padding: 22px;
  color: #fff;
  display: flex;
  align-items: flex-end;
  font-weight: 900;
  font-size: 28px;
  line-height: 1.25;
  margin-bottom: 18px;
}

.mini-list {
  display: grid;
  gap: 12px;
}

.mini-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 13px 15px;
  font-weight: 800;
  font-size: 14px;
}

.mini-item span {
  color: #ff3333;
  font-size: 12px;
}

.category-section {
  background: #f7f8fb;
  padding: 58px 20px 64px;
}

.category-inner {
  max-width: 860px;
  margin: 0 auto;
}

.category-title {
  margin-bottom: 26px;
}

.category-title h2 {
  font-size: 34px;
  line-height: 1.2;
  color: #0f172a;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.category-title p {
  margin-top: 6px;
  color: #475569;
  font-size: 16px;
  font-weight: 800;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.category-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 16px;
  min-height: 128px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #0f172a;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
  transition: 0.2s ease;
}

.category-card:hover {
  transform: translateY(-4px);
  border-color: #ff3333;
  box-shadow: 0 16px 34px rgba(255, 51, 51, 0.1);
}

.category-icon {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: #fff1f1;
  color: #ff3333;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 14px;
}

.category-card h3 {
  font-size: 17px;
  line-height: 1.3;
  font-weight: 900;
  margin-bottom: 6px;
}

.category-card p {
  color: #475569;
  font-size: 12px;
  font-weight: 700;
}

.category-ad-banner {
  margin-top: 30px;
  background: linear-gradient(90deg, #0f172a 0%, #050505 52%, #a9141a 100%);
  color: #fff;
  border-radius: 20px;
  padding: 24px 22px;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.category-ad-banner h3 {
  font-size: 22px;
  line-height: 1.3;
  font-weight: 900;
  margin-bottom: 4px;
}

.category-ad-banner p {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.category-ad-banner a {
  background: #ff3333;
  color: #fff;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(255, 51, 51, 0.22);
}

@media (max-width: 900px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-ad-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .category-section {
    padding: 42px 16px;
  }

  .category-inner {
    max-width: 100%;
  }

  .category-grid {
    grid-template-columns: 1fr;
  }

  .category-title h2 {
    font-size: 28px;
  }
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 58px 22px;
}

.section-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.section-title h2 {
  font-size: 32px;
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.section-title p {
  color: #6b7280;
  font-weight: 600;
}

.content-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 24px;
  align-items: start;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.shop-card {
  background: #fff;
  border-radius: 24px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.shop-image {
  height: 150px;
  background: #eef0f4;
  overflow: hidden;
}

.shop-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.shop-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: #9ca3af;
  font-weight: 900;
  letter-spacing: 0.08em;
}
.shop-body {
  padding: 18px;
}

.badge {
  display: inline-block;
  background: #fff1f1;
  color: #ff3333;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 8px;
}

.shop-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.shop-card p {
  color: #6b7280;
  font-size: 14px;
  margin-bottom: 14px;
}

.shop-meta {
  border-top: 1px solid #f3f4f6;
  padding-top: 12px;
  font-size: 13px;
  color: #4b5563;
  font-weight: 700;
}

.sidebar {
  display: grid;
  gap: 18px;
}

.side-ad,
.side-box {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.side-ad {
  background: #050505;
  color: #fff;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.side-ad .ad-label {
  color: #9ca3af;
  font-size: 12px;
  font-weight: 800;
}

.side-ad h3 {
  font-size: 24px;
  line-height: 1.3;
  margin: 18px 0 8px;
}

.side-ad p {
  color: #e5e7eb;
  font-size: 14px;
}

.side-ad a {
  margin-top: 18px;
  display: inline-block;
  background: #ff3333;
  color: #fff;
  padding: 11px 14px;
  border-radius: 14px;
  font-weight: 900;
  text-align: center;
}

.side-box h3 {
  margin-bottom: 12px;
}

.side-box ul {
  list-style: none;
  display: grid;
  gap: 9px;
  font-size: 14px;
  font-weight: 700;
  color: #4b5563;
}

.form-section {
  background: #fff;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.form-box {
  max-width: 850px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 20px;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 14px;
  padding: 13px 14px;
  font-size: 15px;
  font-family: inherit;
}

.form-grid textarea {
  grid-column: 1 / -1;
  min-height: 120px;
}

.submit-btn {
  margin-top: 16px;
  width: 100%;
  border: none;
  background: #ff3333;
  color: #fff;
  padding: 15px;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
}

.footer {
  background: #050505;
  color: #fff;
  padding: 38px 22px;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  color: #d1d5db;
  font-size: 14px;
}

.footer strong {
  color: #fff;
  font-size: 22px;
}

.mobile-fixed-ad {
  display: none;
}

@media (max-width: 900px) {
  .nav,
  .header-cta {
    display: none;
  }

  .hero-inner,
  .content-layout {
    grid-template-columns: 1fr;
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .shop-grid {
    grid-template-columns: 1fr;
  }

  .search-box {
    flex-direction: column;
  }

  .search-box button {
    padding: 14px;
  }

  .category-ad-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .mobile-fixed-ad {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: #ff3333;
    color: #fff;
    padding: 12px 16px;
    text-align: center;
    font-weight: 900;
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.2);
  }
}

@media (max-width: 560px) {
  .header-inner {
    padding: 12px 16px;
  }

  .site-logo {
    width: 140px;
  }

  .hero-inner {
    padding: 52px 16px 36px;
  }

  .category-section,
  .section {
    padding: 42px 16px;
  }

  .category-grid {
    grid-template-columns: 1fr;
  }

  .category-title h2,
  .section-title h2 {
    font-size: 26px;
  }

  .section-title {
    display: block;
  }
}
.admin-page {
  min-height: 100vh;
  background: #f7f8fb;
  padding: 50px 20px;
}

.admin-container {
  max-width: 980px;
  margin: 0 auto;
}

.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.admin-header h1 {
  font-size: 34px;
  font-weight: 900;
  color: #0f172a;
}

.admin-header p {
  color: #475569;
  font-weight: 700;
}

.admin-back-btn {
  background: #111827;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 900;
}

.shop-admin-form {
  display: grid;
  gap: 22px;
}

.admin-section {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.admin-section h2 {
  font-size: 22px;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 20px;
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.admin-field {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.admin-field label {
  font-size: 14px;
  font-weight: 900;
  color: #334155;
}

.admin-field input,
.admin-field select,
.admin-field textarea {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 14px;
  padding: 14px 15px;
  font-size: 15px;
  font-family: inherit;
  background: #fff;
}

.admin-field textarea {
  min-height: 150px;
  resize: vertical;
}

.admin-checks {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.admin-checks label {
  font-weight: 900;
  color: #334155;
}

.admin-checks input {
  margin-right: 8px;
}

.admin-submit-btn {
  border: none;
  background: #ff3333;
  color: #fff;
  padding: 18px;
  border-radius: 18px;
  font-size: 17px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(255, 51, 51, 0.25);
}

@media (max-width: 700px) {
  .admin-header {
    display: block;
  }

  .admin-back-btn {
    display: inline-block;
    margin-top: 16px;
  }

  .admin-grid {
    grid-template-columns: 1fr;
  }

  .admin-section {
    padding: 22px;
  }
}
.shop-actions {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.shop-call-btn,
.shop-detail-btn {
  flex: 1;
  text-align: center;
  padding: 10px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.shop-call-btn {
  background: #ff3333;
  color: #fff;
}

.shop-detail-btn {
  background: #f3f4f6;
  color: #111827;
}

.admin-page {
  min-height: 100vh;
  background: #f7f8fb;
  padding: 50px 20px;
}

.admin-container {
  max-width: 980px;
  margin: 0 auto;
}

.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.admin-header h1 {
  font-size: 34px;
  font-weight: 900;
  color: #0f172a;
}

.admin-header p {
  color: #475569;
  font-weight: 700;
}

.admin-back-btn {
  background: #111827;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 900;
}

.shop-admin-form {
  display: grid;
  gap: 22px;
}

.admin-section {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.admin-section h2 {
  font-size: 22px;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 20px;
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.admin-field {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.admin-field label {
  font-size: 14px;
  font-weight: 900;
  color: #334155;
}

.admin-field input,
.admin-field select,
.admin-field textarea {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 14px;
  padding: 14px 15px;
  font-size: 15px;
  font-family: inherit;
  background: #fff;
}

.admin-field textarea {
  min-height: 150px;
  resize: vertical;
}

.admin-checks {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.admin-checks label {
  font-weight: 900;
  color: #334155;
}

.admin-checks input {
  margin-right: 8px;
}

.admin-submit-btn {
  border: none;
  background: #ff3333;
  color: #fff;
  padding: 18px;
  border-radius: 18px;
  font-size: 17px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(255, 51, 51, 0.25);
}

@media (max-width: 700px) {
  .admin-header {
    display: block;
  }

  .admin-back-btn {
    display: inline-block;
    margin-top: 16px;
  }

  .admin-grid {
    grid-template-columns: 1fr;
  }

  .admin-section {
    padding: 22px;
  }

  .shop-actions {
    flex-direction: column;
  }
}
.shop-card {
  display: block;
}

.shop-detail-page {
  background: #f7f8fb;
  padding: 44px 20px 70px;
}

.shop-detail-container {
  max-width: 960px;
  margin: 0 auto;
}

.shop-detail-hero {
  height: 320px;
  background: #eef0f4;
  border-radius: 28px 28px 0 0;
  overflow: hidden;
}

.shop-detail-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-detail-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: #9ca3af;
  font-weight: 900;
  letter-spacing: 0.12em;
  font-size: 24px;
}

.shop-detail-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0 0 28px 28px;
  padding: 34px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

.shop-detail-card h1 {
  font-size: 34px;
  line-height: 1.3;
  color: #0f172a;
  margin: 10px 0 4px;
}

.shop-detail-kana {
  color: #64748b;
  font-weight: 700;
  margin-bottom: 18px;
}

.shop-detail-catch {
  font-size: 18px;
  font-weight: 800;
  color: #334155;
  margin-bottom: 20px;
}

.shop-detail-buttons {
  display: flex;
  gap: 12px;
  margin: 24px 0 32px;
}

.shop-detail-call,
.shop-detail-main-btn {
  display: inline-block;
  text-align: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 900;
}

.shop-detail-call {
  background: #ff3333;
  color: #fff;
}

.shop-detail-main-btn {
  background: #111827;
  color: #fff;
}

.shop-detail-section {
  border-top: 1px solid #e5e7eb;
  padding-top: 26px;
  margin-top: 26px;
}

.shop-detail-section h2 {
  font-size: 22px;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 14px;
}

.shop-detail-section p {
  color: #334155;
  font-weight: 600;
}

.shop-detail-list {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 0;
}

.shop-detail-list dt,
.shop-detail-list dd {
  padding: 14px 0;
  border-bottom: 1px solid #f1f5f9;
}

.shop-detail-list dt {
  font-weight: 900;
  color: #0f172a;
}

.shop-detail-list dd {
  color: #334155;
  font-weight: 600;
}

@media (max-width: 700px) {
  .shop-detail-hero {
    height: 220px;
  }

  .shop-detail-card {
    padding: 24px;
  }

  .shop-detail-card h1 {
    font-size: 26px;
  }

  .shop-detail-buttons {
    flex-direction: column;
  }

  .shop-detail-list {
    grid-template-columns: 1fr;
  }

  .shop-detail-list dt {
    border-bottom: none;
    padding-bottom: 4px;
  }

  .shop-detail-list dd {
    padding-top: 0;
  }
}
.empty-box {
  grid-column: 1 / -1;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 34px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.empty-box h3 {
  font-size: 22px;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 8px;
}

.empty-box p {
  color: #475569;
  font-weight: 700;
  margin-bottom: 18px;
}

.empty-box a {
  display: inline-block;
  background: #ff3333;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 900;
}
.contact-page {
  background: #f7f8fb;
  padding: 70px 20px;
}

.contact-container {
  max-width: 900px;
  margin: 0 auto;
}

.contact-top {
  margin-bottom: 40px;
}

.contact-label {
  display: inline-block;
  background: #ffe5e5;
  color: #ff3333;
  font-size: 13px;
  font-weight: 800;
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.contact-top h1 {
  font-size: 48px;
  line-height: 1.2;
  color: #0f172a;
  margin-bottom: 14px;
}

.contact-top p {
  font-size: 18px;
  color: #475569;
  font-weight: 600;
}

.contact-form {
  background: #fff;
  border-radius: 28px;
  padding: 40px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.contact-field {
  display: flex;
  flex-direction: column;
}

.contact-field.full {
  grid-column: 1 / -1;
}

.contact-field label {
  font-size: 15px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  border: 1px solid #dbe1ea;
  border-radius: 16px;
  padding: 16px;
  font-size: 15px;
  font-weight: 600;
  background: #f8fafc;
}

.contact-field textarea {
  min-height: 180px;
  resize: vertical;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  outline: none;
  border-color: #ff3333;
  background: #fff;
}

.contact-submit {
  margin-top: 30px;
  width: 100%;
  border: none;
  background: linear-gradient(135deg, #ff3333, #d90000);
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  padding: 18px;
  border-radius: 18px;
  cursor: pointer;
  transition: 0.2s;
}

.contact-submit:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

@media (max-width: 768px) {

  .contact-top h1 {
    font-size: 36px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 26px;
  }

}