﻿/* ===== CSS VARIABLES ===== */
  :root {
    --primary: #1a6fd4;
    --primary-dark: #1457aa;
    --primary-light: #e8f1fb;
    --accent: #f07b21;
    --accent-light: #fff5ec;
    --bg: #f4f6fa;
    --white: #ffffff;
    --text-main: #1a1f2e;
    --text-sub: #5a6070;
    --text-muted: #9aa0ae;
    --border: #dde2ea;
    --card-shadow: 0 2px 12px rgba(0,0,0,0.07);
    --card-shadow-hover: 0 8px 32px rgba(26,111,212,0.13);
    --radius: 2px;
    --radius-sm: 2px;
    /* TODO: 後で管理画面のデザイン設定から角丸を変更可能にする */
    /* 想定設定: 角丸なし(0px) / 角丸小(2px) / 角丸標準(8px) / 角丸大(16px) */
    /* 業種によって最適値が異なる（バイク・車は小さめ、不動産・求人は標準など） */
    --max-w: 1360px;
    --header-h: 64px;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }

  body {
    font-family: 'Noto Sans JP', sans-serif;
    background: var(--bg);
    color: var(--text-main);
    line-height: 1.6;
    font-size: 14px;
  }

  a { text-decoration: none; color: inherit; }
  img { display: block; max-width: 100%; }

  .container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 20px;
  }

  /* ===== HEADER ===== */
  header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    height: var(--header-h);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 6px rgba(0,0,0,0.06);
  }

  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 28px;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
  }

  .logo-mark {
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, #1a6fd4 60%, #f07b21 100%);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .logo-mark svg { width: 20px; height: 20px; fill: white; }

  .logo-text {
    font-family: 'Lexend', sans-serif;
    font-weight: 800;
    font-size: 22px;
    color: var(--primary);
    letter-spacing: -0.5px;
  }

  .logo-text span { color: var(--accent); }

  .header-search {
    flex: 1;
    max-width: 440px;
    position: relative;
  }

  .header-search input {
    width: 100%;
    height: 38px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0 44px 0 16px;
    font-size: 13px;
    font-family: inherit;
    background: var(--bg);
    color: var(--text-main);
    outline: none;
    transition: border-color 0.2s;
  }

  .header-search input:focus { border-color: var(--primary); background: white; }

  .header-search button {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary);
    border: none;
    border-radius: var(--radius-sm);
    width: 30px;
    height: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header-search button svg { width: 14px; height: 14px; stroke: white; fill: none; }

  .header-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
  }

  .header-icon-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    color: var(--text-sub);
    font-size: 10px;
    font-weight: 500;
    transition: background 0.15s, color 0.15s;
    border: none;
    background: none;
  }

  .header-icon-btn:hover { background: var(--primary-light); color: var(--primary); }

  .header-icon-btn svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.8; }

  .btn-login {
    height: 36px;
    padding: 0 18px;
    border: 1.5px solid var(--primary);
    border-radius: var(--radius-sm);
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    background: none;
    transition: all 0.15s;
    white-space: nowrap;
  }

  .btn-login:hover { background: var(--primary-light); }

  .btn-register {
    height: 36px;
    padding: 0 18px;
    border: none;
    border-radius: var(--radius-sm);
    background: var(--primary);
    color: white;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s;
    white-space: nowrap;
  }

  .btn-register:hover { background: var(--primary-dark); }

  /* ===== HERO ===== */
  .hero {
    position: relative;
    height: 480px;
    overflow: hidden;
    background: #1a2540;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    transition: opacity 0.5s;
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      120deg,
      rgba(10,25,60,0.82) 0%,
      rgba(26,111,212,0.55) 50%,
      rgba(10,25,60,0.45) 100%
    );
  }

  .hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 64px 20px 80px;
  }

  .hero-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: var(--radius-sm);
    padding: 4px 14px;
    color: white;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 18px;
    backdrop-filter: blur(4px);
  }

  .hero-label::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4ade80;
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
  }

  .hero-title {
    font-family: 'Lexend', sans-serif;
    font-size: 46px;
    font-weight: 800;
    color: white;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 10px;
  }

  .hero-title em {
    font-style: normal;
    color: #fbbf24;
  }

  .hero-subtitle {
    color: rgba(255,255,255,0.82);
    font-size: 15px;
    margin-bottom: 36px;
    font-weight: 400;
  }

  /* ===== SEARCH FORM (HERO) ===== */
  .search-card {
    background: white;
    border-radius: var(--radius);
    padding: 20px 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    width: 100%;
    max-width: 820px;
  }

  .search-tabs {
    display: flex;
    gap: 2px;
    margin-bottom: 16px;
    background: var(--bg);
    border-radius: var(--radius-sm);
    padding: 3px;
  }

  .search-tab {
    flex: 1;
    padding: 7px 12px;
    border: none;
    background: none;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-sub);
    cursor: pointer;
    transition: all 0.15s;
    font-family: inherit;
    white-space: nowrap;
  }

  .search-tab.active {
    background: var(--primary);
    color: white;
    box-shadow: 0 2px 8px rgba(26,111,212,0.25);
  }

  .search-tab:hover:not(.active) { background: var(--border); color: var(--text-main); }

  .search-fields {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1.2fr auto;
    gap: 10px;
    align-items: end;
  }

  .search-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .search-field label {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-sub);
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .search-field input,
  .search-field select {
    height: 44px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0 12px;
    font-size: 14px;
    font-family: inherit;
    color: var(--text-main);
    background: var(--bg);
    outline: none;
    transition: border-color 0.15s, background 0.15s;
    appearance: none;
    -webkit-appearance: none;
  }

  .search-field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%235a6070' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
  }

  .search-field input:focus,
  .search-field select:focus {
    border-color: var(--primary);
    background: white;
  }

  .search-field input::placeholder { color: var(--text-muted); }

  .btn-search {
    height: 44px;
    padding: 0 28px;
    background: var(--accent);
    border: none;
    border-radius: var(--radius-sm);
    color: white;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    white-space: nowrap;
    transition: background 0.15s, transform 0.1s;
    box-shadow: 0 4px 16px rgba(240,123,33,0.35);
  }

  .btn-search:hover { background: #d4691a; transform: translateY(-1px); }
  .btn-search:active { transform: translateY(0); }
  .btn-search svg { width: 17px; height: 17px; stroke: white; fill: none; }

  .search-quick {
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
  }

  .search-quick-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    white-space: nowrap;
    margin-right: 4px;
  }

  #hero-popular-kw {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .quick-tag {
    display: inline-block;
    padding: 3px 11px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius-sm);
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s;
    border: 1px solid rgba(26,111,212,0.15);
  }

  .quick-tag:hover { background: #d0e4f7; }

  /* ===== STATS BAR ===== */
  .stats-bar {
    background: white;
    border-bottom: 1px solid var(--border);
  }

  .stats-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
  }

  .stat-item {
    display: flex;
    align-items: baseline;
    gap: 4px;
  }

  .stat-num {
    font-family: 'Lexend', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
  }

  .stat-unit {
    font-size: 12px;
    color: var(--text-sub);
  }

  .stat-label {
    font-size: 12px;
    color: var(--text-sub);
    margin-left: 2px;
  }

  .stat-divider {
    width: 1px;
    height: 28px;
    background: var(--border);
  }

  .stats-update {
    margin-left: auto;
    font-size: 11px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .update-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
    animation: pulse 2s infinite;
  }

  /* ===== SECTION COMMON ===== */
  section { padding: 48px 0; }

  .section-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 24px;
  }

  .section-title {
    font-family: 'Lexend', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .section-title::before {
    content: '';
    display: block;
    width: 4px;
    height: 22px;
    background: var(--primary);
    border-radius: 2px;
  }

  .section-more {
    font-size: 13px;
    color: var(--primary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 3px;
    cursor: pointer;
    transition: opacity 0.15s;
  }

  .section-more:hover { opacity: 0.75; }
  .section-more::after { content: '→'; }

  /* ===== CATEGORIES ===== */
  .categories-section {
    background: white;
    padding: 40px 0;
    border-bottom: 1px solid var(--border);
  }

  .cat-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 12px;
  }

  .cat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 8px;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.15s;
    border: 1.5px solid transparent;
  }

  .cat-item:hover {
    background: var(--primary-light);
    border-color: rgba(26,111,212,0.2);
    transform: translateY(-2px);
  }

  .cat-icon {
    width: 120px;
    height: 120px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
  }

  .cat-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-main);
    text-align: center;
    line-height: 1.3;
  }

  .cat-count {
    font-size: 10px;
    color: var(--text-muted);
  }

  /* ===== CARD GRID ===== */
  /* TODO: 後で管理画面のデザイン設定から角丸なし・角丸小・角丸標準・角丸大を切替可能にする */
  .card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: stretch;
  }

  /* 2カラムレイアウト内（vendors/show 左カラム等）用 */
  .compact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    align-items: stretch;
  }

  /* ===== 下層ページ用カード一覧グリッド ===== */
  /* ショップ詳細・車両詳細・検索一覧など、下層ページのカード表示崩れ対策 */
  .compact-grid2,
  .related-grid {
    display: flex;
    gap: 20px;
    align-items: stretch;
  }

  /* ショップ詳細専用カードグリッド（detail-grid左カラム内2列） */
  .compact-grid3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    align-items: stretch;
  }

  /* ===== 下層ページ用カード一覧 ===== */
  /* 検索一覧・ショップ詳細・車両詳細のカード表示崩れ対策 */
  .search-card-grid,
  .shop-card-grid,
  .related-card-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: stretch;
    justify-content: flex-start;
  }

  .search-card-grid > .bike-card,
  .shop-card-grid > .bike-card,
  .related-card-grid > .bike-card {
    width: calc((100% - 60px) / 4);
  }

  .bike-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    cursor: pointer;
    transition: all 0.2s;
    border: 1px solid var(--border);
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    max-width: none;
    justify-self: stretch;
    text-decoration: none;
    color: inherit;
  }

  .bike-card:hover {
    box-shadow: var(--card-shadow-hover);
    transform: translateY(-3px);
    border-color: rgba(26,111,212,0.2);
  }

  .card-thumb {
    position: relative;
    overflow: hidden;
    height: 180px;
  }

  .card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
  }

  .bike-card:hover .card-thumb img { transform: scale(1.04); }

  .card-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--primary);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: var(--radius-sm);
    letter-spacing: 0.3px;
  }

  .card-badge.new { background: #e53e3e; }
  .card-badge.sale { background: var(--accent); }
  .card-badge.premium { background: #6b46c1; }

  .card-fav {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 30px;
    height: 30px;
    background: rgba(255,255,255,0.92);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.15s;
    backdrop-filter: blur(4px);
  }

  .card-fav:hover { background: white; transform: scale(1.1); }
  .card-fav svg { width: 16px; height: 16px; stroke: #e53e3e; fill: none; stroke-width: 2; }
  .card-fav.active svg { fill: #e53e3e; }

  .card-body {
    padding: 14px;
  }

  .card-maker {
    font-size: 10px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 4px;
  }

  .card-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.35;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
  }

  .card-price {
    font-family: 'Lexend', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #e53e3e;
    margin-bottom: 10px;
    display: flex;
    align-items: baseline;
    gap: 3px;
  }

  .card-price .unit { font-size: 12px; font-weight: 500; color: var(--text-sub); }

  .card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
  }

  .meta-tag {
    font-size: 11px;
    color: var(--text-sub);
    background: var(--bg);
    padding: 3px 8px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 3px;
  }

  .card-footer {
    padding-top: 10px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .card-location {
    font-size: 11px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 3px;
  }

  .card-location svg { width: 12px; height: 12px; stroke: currentColor; fill: none; }

  .card-date {
    font-size: 10px;
    color: var(--text-muted);
  }

  /* ===== アイテムカード一覧 スマホ表示（2列化・所在地/更新日の縦並び） ===== */
  @media (max-width: 600px) {
    .search-card-grid,
    .shop-card-grid,
    .related-card-grid {
      gap: 15px;
    }

    .search-card-grid > .bike-card,
    .shop-card-grid > .bike-card,
    .related-card-grid > .bike-card {
      width: calc((100% - 15px) / 2);
      flex: 0 0 calc((100% - 15px) / 2);
      min-width: 0;
    }

    .search-card-grid .card-footer,
    .shop-card-grid .card-footer,
    .related-card-grid .card-footer {
      flex-direction: column;
      align-items: flex-start;
      gap: 4px;
    }
  }

  /* ===== FEATURED BANNER ===== */
  .featured-banner {
    background: linear-gradient(135deg, #0f2057 0%, #1a6fd4 60%, #1e90e8 100%);
    border-radius: var(--radius);
    padding: 36px 40px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 32px;
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
  }

  .featured-banner::before {
    content: '';
    position: absolute;
    top: -40px;
    right: 140px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
  }

  .featured-banner::after {
    content: '';
    position: absolute;
    bottom: -60px;
    right: 60px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
  }

  .featured-label {
    font-size: 11px;
    font-weight: 700;
    color: #fbbf24;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
  }

  .featured-title {
    font-family: 'Lexend', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
  }

  .featured-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.78);
    max-width: 420px;
  }

  .featured-btns {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
  }

  .btn-featured-primary {
    padding: 12px 28px;
    background: white;
    color: var(--primary);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    white-space: nowrap;
    transition: all 0.15s;
  }

  .btn-featured-primary:hover { background: #f0f7ff; transform: translateY(-1px); }

  .btn-featured-secondary {
    padding: 12px 24px;
    background: rgba(255,255,255,0.15);
    color: white;
    border: 1.5px solid rgba(255,255,255,0.35);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    white-space: nowrap;
    transition: all 0.15s;
  }

  .btn-featured-secondary:hover { background: rgba(255,255,255,0.25); }

  /* ===== AREA LINKS ===== */
  .area-section {
    background: white;
    padding: 40px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .area-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-top: 20px;
  }

  .area-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
  }

  .area-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
  }

  .area-card:hover img { transform: scale(1.06); }

  .area-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 12px;
  }

  .area-name {
    font-family: 'Lexend', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: white;
  }

  .area-count {
    font-size: 11px;
    color: rgba(255,255,255,0.8);
    margin-top: 2px;
  }

  /* ===== POPULAR MAKERS ===== */
  .makers-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 12px;
  }

  .maker-card {
    border-radius: var(--radius);
    padding: 18px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.15s;
  }

  .maker-card:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 16px rgba(26,111,212,0.1);
    transform: translateY(-2px);
  }

  .maker-logo {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 900;
    font-family: 'Lexend', sans-serif;
  }

  .maker-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-main);
  }

  .maker-count {
    font-size: 11px;
    color: var(--text-muted);
  }

  /* ===== GUIDE ===== */
  .guide-section { background: var(--primary-light); }

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

  .guide-card {
    background: white;
    border-radius: var(--radius);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border: 1px solid var(--border);
    transition: box-shadow 0.15s;
  }

  .guide-card:hover { box-shadow: var(--card-shadow-hover); }

  .guide-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
  }

  .guide-title {
    font-family: 'Lexend', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--text-main);
  }

  .guide-desc {
    font-size: 13px;
    color: var(--text-sub);
    line-height: 1.65;
  }

  .guide-link {
    margin-top: auto;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
  }

  /* ===== LISTING BUSSINESS ===== */
  .business-bar {
    background: #f0f7ff;
    border-top: 1px solid #d0e4f7;
    border-bottom: 1px solid #d0e4f7;
    padding: 28px 0;
  }

  .business-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }

  .business-text h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 4px;
  }

  .business-text p {
    font-size: 13px;
    color: var(--text-sub);
  }

  .btn-business {
    padding: 11px 24px;
    border: 1.5px solid var(--primary);
    border-radius: var(--radius-sm);
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    background: none;
    font-family: inherit;
    white-space: nowrap;
    transition: all 0.15s;
    flex-shrink: 0;
  }

  .btn-business:hover { background: var(--primary); color: white; }

  /* ===== FOOTER ===== */
  footer {
    background: #0f172a;
    color: rgba(255,255,255,0.7);
    padding-top: 56px;
  }

  .footer-top {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 20px 48px;
    display: grid;
    grid-template-columns: 240px 1fr 1fr 1fr;
    gap: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .footer-brand {}

  .footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
  }

  .footer-logo-text {
    font-family: 'Lexend', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: white;
  }

  .footer-brand p {
    font-size: 12px;
    line-height: 1.7;
    color: rgba(255,255,255,0.55);
    margin-bottom: 20px;
  }

  .footer-social {
    display: flex;
    gap: 10px;
  }

  .social-btn {
    width: 34px;
    height: 34px;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.15s;
    font-size: 14px;
  }

  .social-btn:hover { background: rgba(255,255,255,0.2); }

  .footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
  }

  .footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .footer-col li a {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    transition: color 0.15s;
  }

  .footer-col li a:hover { color: white; }

  .footer-bottom {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 20px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
  }

  .footer-copy {
    font-size: 12px;
    color: rgba(255,255,255,0.35);
  }

  .footer-links {
    display: flex;
    gap: 20px;
  }

  .footer-links a {
    font-size: 12px;
    color: rgba(255,255,255,0.45);
    transition: color 0.15s;
  }

  .footer-links a:hover { color: rgba(255,255,255,0.75); }

  /* ===== BG SECTIONS ===== */
  .bg-white { background: white; }
  .bg-grey { background: var(--bg); }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 1100px) {
    .card-grid { grid-template-columns: repeat(3, 1fr); }
    .cat-grid { grid-template-columns: repeat(4, 1fr); }
    .makers-grid { grid-template-columns: repeat(4, 1fr); }
    .area-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-top { grid-template-columns: 200px 1fr 1fr; }
    .footer-top .footer-col:last-child { display: none; }
  }

  @media (max-width: 860px) {
    .hero { height: 400px; }
    .hero-title { font-size: 32px; }
    .search-fields { grid-template-columns: 1fr 1fr; }
    .search-fields .btn-search { grid-column: span 2; width: 100%; justify-content: center; }
    .card-grid { grid-template-columns: repeat(2, 1fr); }
    .compact-grid { grid-template-columns: repeat(2, 1fr); }
    .guide-grid { grid-template-columns: 1fr; }
    .featured-banner { grid-template-columns: 1fr; }
    .featured-btns { flex-wrap: wrap; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-brand { grid-column: span 2; }
    .area-grid { grid-template-columns: repeat(2, 1fr); }
    .makers-grid { grid-template-columns: repeat(3, 1fr); }
  }

  @media (max-width: 600px) {
    :root { --header-h: 54px; }
    .header-search, .header-icon-btn:nth-child(2) { display: none; }
    .hero { height: 340px; }
    .hero-title { font-size: 24px; }
    .hero-subtitle { font-size: 13px; }
    .search-card { padding: 16px; }
    .search-tabs { overflow-x: auto; }
    .search-fields { grid-template-columns: 1fr; }
    .search-fields .btn-search { grid-column: span 1; }
    .search-field input, .search-field select { font-size: 16px; }
    .card-grid, .compact-grid { grid-template-columns: 1fr; gap: 12px; }
    .cat-grid { grid-template-columns: repeat(3, 1fr); }
    .cat-icon { width: 80px; height: 80px; font-size: 36px; }
    .makers-grid { grid-template-columns: repeat(3, 1fr); }
    .area-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-inner { gap: 16px; }
    .stat-divider { display: none; }
    .footer-top { grid-template-columns: 1fr; }
    .footer-brand { grid-column: 1; }
    .business-inner { flex-direction: column; align-items: flex-start; }
    section { padding: 32px 0; }
  }
}

/* ===== BREADCRUMB ===== */
.breadcrumb-nav { background:var(--white); border-bottom:1px solid var(--border); padding:10px 0; }
.breadcrumb-list { list-style:none; display:flex; align-items:center; flex-wrap:wrap; gap:4px; font-size:12px; color:var(--text-muted); }
.breadcrumb-list li { display:flex; align-items:center; gap:4px; }
.breadcrumb-list li+li::before { content:'›'; color:var(--text-muted); }
.breadcrumb-list a { color:var(--primary); }
.breadcrumb-list a:hover { text-decoration:underline; }

/* ===== FEATURED BANNER ===== */
.featured-banner { background:linear-gradient(135deg,#0f2057 0%,#1a6fd4 60%,#1e90e8 100%); border-radius:var(--radius); padding:36px 40px; display:grid; grid-template-columns:1fr auto; align-items:center; gap:32px; margin-bottom:32px; position:relative; overflow:hidden; }
.featured-label { font-size:11px; font-weight:700; color:#fbbf24; text-transform:uppercase; letter-spacing:1.5px; margin-bottom:8px; }
.featured-title { font-family:'Lexend',sans-serif; font-size:28px; font-weight:800; color:white; margin-bottom:8px; }
.featured-desc { font-size:14px; color:rgba(255,255,255,0.78); max-width:420px; }
.featured-btns { display:flex; gap:10px; flex-shrink:0; }
.btn-featured-primary { padding:12px 28px; background:white; color:var(--primary); border:none; border-radius:var(--radius-sm); font-size:14px; font-weight:700; cursor:pointer; font-family:inherit; white-space:nowrap; }
.btn-featured-secondary { padding:12px 24px; background:rgba(255,255,255,0.15); color:white; border:1.5px solid rgba(255,255,255,0.35); border-radius:var(--radius-sm); font-size:14px; font-weight:600; cursor:pointer; font-family:inherit; white-space:nowrap; }

/* ===== CARD ENHANCEMENTS ===== */
.card-specs { display:flex; flex-wrap:wrap; gap:5px; margin-bottom:8px; }
.card-spec { font-size:11px; color:var(--text-sub); background:var(--bg); padding:2px 7px; border-radius:4px; }
.card-footer { padding-top:8px; border-top:1px solid var(--border); display:flex; align-items:center; justify-content:space-between; }
.card-location { font-size:11px; color:var(--text-muted); }
.card-date { font-size:10px; color:var(--text-muted); }

/* ===== MAKERS GRID ===== */
.makers-grid { display:grid; grid-template-columns:repeat(8,1fr); gap:12px; }
.maker-card { border-radius:var(--radius); padding:18px 12px; display:flex; flex-direction:column; align-items:center; gap:8px; cursor:pointer; transition:all 0.15s; }
.maker-card:hover { border-color:var(--primary); box-shadow:0 4px 16px rgba(26,111,212,0.1); transform:translateY(-2px); }
.maker-logo { width:80px; height:80px; border-radius:var(--radius-sm); display:flex; align-items:center; justify-content:center; font-size:18px; font-weight:900; font-family:'Lexend',sans-serif; }
.maker-name { font-size:13px; font-weight:700; color:var(--text-main); }
.maker-count { font-size:11px; color:var(--text-muted); }

/* ===== GUIDE CARDS ===== */
.guide-section { background:var(--primary-light); }
.guide-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.guide-card { background:white; border-radius:var(--radius); padding:28px; display:flex; flex-direction:column; gap:12px; border:1px solid var(--border); transition:box-shadow 0.15s; }
.guide-card:hover { box-shadow:var(--card-shadow-hover); }
.guide-icon { width:48px; height:48px; background:var(--primary-light); border-radius:var(--radius-sm); display:flex; align-items:center; justify-content:center; font-size:22px; }
.guide-title { font-family:'Lexend',sans-serif; font-size:17px; font-weight:700; }
.guide-desc { font-size:13px; color:var(--text-sub); line-height:1.65; }
.guide-link { margin-top:auto; font-size:13px; font-weight:600; color:var(--primary); display:flex; align-items:center; gap:4px; }

/* ===== DETAIL PAGE ===== */
.detail-grid { display:grid; grid-template-columns:minmax(0,1fr) 400px; gap:28px; align-items:start; }
.detail-grid > .detail-right { position:sticky; top:80px; align-self:start; }
.detail-main-image { background:#f8f9fc; border:1px solid var(--border); border-radius:var(--radius); overflow:hidden; margin-bottom:10px; position:relative; }
.detail-main-image img { width:100%; height:500px; object-fit:cover; display:block; }
.detail-video-thumb-overlay { position:absolute; right:10px; bottom:10px; width:148px; aspect-ratio:3/2; border-radius:var(--radius-sm); border:2px solid rgba(255,255,255,0.7); overflow:hidden; box-shadow:0 2px 8px rgba(0,0,0,0.3); }
.thumb-gallery { display:grid; grid-template-columns:repeat(5,1fr); gap:6px; margin-top:8px; }
.thumb-gallery img { width:100%; aspect-ratio:3/2; object-fit:cover; border-radius:var(--radius-sm); border:2px solid transparent; cursor:pointer; transition:border-color 0.15s; }
.thumb-gallery img:hover { border-color:rgba(26,111,212,0.4); }
.thumb-gallery img.active { border-color:var(--primary); box-shadow:0 0 0 1px var(--primary); }
.spec-table { width:100%; border-collapse:collapse; table-layout:fixed; }
.spec-table th { padding:9px 12px; text-align:left; font-size:12px; font-weight:700; color:var(--text-sub); background:#f8f9fc; border:1px solid var(--border); width:12%; white-space:nowrap; }
.spec-table td { padding:9px 12px; font-size:13px; border:1px solid var(--border); word-break:break-all; width:38%; }
.vendor-info-grid { grid-template-columns:200px 1fr; }
.vendor-shop-link-btn { display:inline-block; }
@media(max-width:600px) {
  .spec-table, .spec-table tbody, .spec-table tr, .spec-table th, .spec-table td { display:block; width:100%; }
  .spec-table th { border-bottom:none; padding-bottom:4px; }
  .spec-table td { padding-top:4px; margin-bottom:8px; }

  /* 商品詳細メイン画像：スマホ時は高さを抑えてトリミング表示 */
  .detail-main-image img { height:30vh; max-height:300px; object-fit:cover; }

  /* ショップ名・ショップ説明エリア：スマホ時は1列表示 */
  .vendor-info-grid { grid-template-columns:1fr; }

  /* ベンダー情報セクション：SNSアイコン・ショップを見るボタンはスマホ時のみ中央揃え（ショップ名・説明文は左揃えを維持） */
  .vendor-info-grid .vendor-sns-list { justify-content:center; }
  .vendor-info-grid .vendor-shop-link-btn { display:table; margin:0 auto; }
}
.detail-contact-box { background:white; border-radius:10px; padding:20px; border:1px solid var(--border); }
.tag-list { display:flex; flex-wrap:wrap; gap:7px; }
.tag-chip { font-size:12px; padding:4px 12px; background:var(--primary-light); color:var(--primary); border-radius:var(--radius-sm); font-weight:600; border:1px solid rgba(26,111,212,0.2); }

@media(max-width:860px) {
  .detail-grid { grid-template-columns:1fr; }
  .featured-banner { grid-template-columns:1fr; }
  .makers-grid { grid-template-columns:repeat(3,1fr); }
  .guide-grid { grid-template-columns:1fr; }
}

/* ===== SMARTPHONE: HEADER / FOOTER ===== */

/* PC: header nav ボタン内 icon はデフォルト非表示（テキスト表示を維持） */
.header-nav .btn-login i,
.header-nav .btn-register i { display: none; }

@media (max-width: 600px) {
  /* 横スクロール防止（clip はスクロールを防ぎつつ sticky を壊さない） */
  body { overflow-x: clip; }
  header { width: 100%; }
  .header-inner { padding: 0 10px; gap: 6px; }

  /* ロゴ: テキスト非表示・サイズ縮小 */
  .logo-text { display: none; }
  .logo img { max-height: 34px !important; }
  .logo-mark { width: 32px; height: 32px; }
  .logo-mark svg { width: 16px; height: 16px; }

  /* header-icon-btn: テキストノード非表示・アイコンのみ */
  .header-icon-btn:nth-child(2) { display: flex; }
  .header-icon-btn { font-size: 0; flex-direction: row; padding: 5px 6px; gap: 0; }
  .header-icon-btn i { font-size: 16px; }

  /* ヘッダーナビ: btn をアイコン化 */
  .header-nav { gap: 10px; }
  .header-nav .btn-login,
  .header-nav .btn-register {
    height: 32px;
    width: 32px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .header-nav .btn-login .btn-text,
  .header-nav .btn-register .btn-text { display: none; }
  .header-nav .btn-login i,
  .header-nav .btn-register i { display: inline; font-size: 15px; }

  /* フッター: 横はみ出し防止・2カラム表示 */
  footer { overflow-x: hidden; }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 0 16px 32px;
  }
  .footer-brand { grid-column: span 2; text-align: left; }
  .footer-logo { justify-content: flex-start; }
  .footer-brand p { text-align: left; }

  /* フッターメニュー: 非表示になっていた3列目を復活 */
  .footer-top .footer-col:last-child { display: block; }

  /* フッター最下段: copyright を最下部・中央 */
  .footer-bottom {
    flex-direction: column-reverse;
    align-items: center;
    padding: 16px;
    gap: 10px;
  }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 12px; }
  .footer-copy { text-align: center; }
}

/* ===== SMARTPHONE: FRONT TOP PAGE BODY ===== */

/* iOS Safari のテキストサイズ自動拡大を抑止（全体）*/
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }

/* PC: カテゴリ・メーカーは最大8件（9件目はPCで非表示・スマホで再表示）
   コントローラーが9件送るため、PCではCSSで9件目を隠す
   ※カテゴリ一覧ページ(.cat-grid-all)は全件表示のため対象外 */
.cat-grid:not(.cat-grid-all) .cat-item:nth-child(n+9),
.makers-grid .maker-card:nth-child(n+9) { display: none; }

@media (max-width: 600px) {

  /* ── 1. ヒーローエリア ──
     コンテンツに合わせて伸縮（最低 70vh 確保）
     hero-content にも min-height を合わせ、justify-content:center で中央寄せを維持 */
  .hero { height: auto; min-height: 70vh; }
  .hero-content { min-height: 70vh; padding: 36px 16px 44px; }
  .hero-subtitle { margin-bottom: 20px; }

  /* ── 2. カテゴリ（スマホ：最大9件・3列） ── */
  /* ※カテゴリ一覧ページ(.cat-grid-all)は全件表示のため対象外 */
  /* PCで隠した9件目をスマホで再表示 */
  .cat-grid:not(.cat-grid-all) .cat-item:nth-child(9) { display: flex; }
  /* 10件目以降は強制非表示 */
  .cat-grid:not(.cat-grid-all) .cat-item:nth-child(n+10) { display: none !important; }
  /* カードの余白・アイコン調整 */
  .cat-item { padding: 2px 2px; gap: 3px; }
  .cat-icon { width: 60px; height: 60px; font-size: 28px; }
  /* インライン style="width:80px" を上書きしてコンテナに合わせる */
  .cat-icon img { width: 100% !important; height: 100% !important; }
  .cat-name { font-size: 13px; word-break: break-word; }

  /* ── 3. エリアから探す 横スクロール ──
     インライン style="overflow:hidden" を !important で上書きして横スクロール化 */
  #area-items-grid,
  #area-shops-grid {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 8px;
  }
  #area-items-grid::-webkit-scrollbar,
  #area-shops-grid::-webkit-scrollbar { display: none; }

  /* ── 4. メーカーから探す（スマホ：最大9件・3列） ── */
  /* PCで隠した9件目をスマホで再表示 */
  .makers-grid .maker-card:nth-child(9) { display: flex; }
  /* 10件目以降は強制非表示 */
  .makers-grid .maker-card:nth-child(n+10) { display: none !important; }
  /* テキストのみ（no-logo）: カテゴリと同様に余白を詰める */
  .maker-card.no-logo { padding: 2px 2px; gap: 3px; }
  .maker-card.no-logo .maker-count { font-size: 9px; }
  /* ロゴあり（has-logo）: 余白のみ調整（見た目を大きく変えない） */
  .maker-card.has-logo { padding: 12px 6px; }
  .maker-card.has-logo .maker-count { font-size: 10px; }

  /* ── 5. 商品カード横スクロール（おすすめ・新着のみ） ── */
  .home-items-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: visible;
    gap: 12px;
    padding-bottom: 12px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .home-items-grid::-webkit-scrollbar { display: none; }

  /* 1枚 72%（2枚目が約28%見える） */
  .home-items-grid .bike-card {
    flex: 0 0 72%;
    width: 72%;
    min-width: 0;
    height: auto;
    scroll-snap-align: start;
  }

  /* 最大8枚（9枚目以降非表示）: nth-of-type でフォーム要素を除外してカウント */
  .home-items-grid .bike-card:nth-of-type(n+9) { display: none; }

  .home-items-grid .card-thumb { height: 150px; }

  /* ── 3-1. 説明文 (Blade インラインで line-clamp 設定済み・font-size のみ明示) ── */
  .home-items-grid .card-specs { font-size: 11px; }

  /* iOS 文字拡大対策：カード内テキストに明示サイズ */
  .home-items-grid .card-body { font-size: 13px; }
  .home-items-grid .card-title { font-size: 17px; }
  .home-items-grid .card-price { font-size: 18px; }
}

/* ===== マイページ：レイアウト / スマホ用ハンバーガーメニュー ===== */
.mypage-layout { display:flex; gap:24px; align-items:flex-start; }
.mypage-sidebar { width:210px; flex-shrink:0; }
.mypage-menu-toggle { display:none; }

@media (max-width:600px) {
  .mypage-layout { display:block; }

  .mypage-menu-toggle {
    display:flex; align-items:center; gap:8px; width:100%;
    margin-bottom:16px; padding:12px 16px; background:white;
    border:1px solid var(--border); border-radius:var(--radius-sm);
    font-size:14px; font-weight:700; color:var(--text-main);
    cursor:pointer; font-family:inherit;
  }
  .mypage-menu-toggle i { font-size:16px; }

  .mypage-sidebar { display:none; width:100%; margin-bottom:16px; }
  .mypage-sidebar.is-open { display:block; }
}

/* ===== マイページ：フォーム2列グリッド（スマホは1列化） ===== */
.form-grid-2col { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.form-grid-zip  { display:grid; grid-template-columns:160px 1fr; gap:16px; }

/* ===== マイページ：ファイル選択＋メディアから選択ボタン行 ===== */
.mp-file-row { display:flex; align-items:center; gap:8px; flex-wrap:wrap; margin-bottom:4px; }

/* ===== マイページ：SNSリンク入力行（JSで動的追加） ===== */
.sns-row { display:flex; align-items:center; gap:8px; margin-bottom:8px; }

/* ===== マイページ：契約プラン一覧カード ===== */
.mp-plan-card { display:flex; gap:20px; align-items:flex-start; }

/* ===== マイページ：お気に入り一覧の操作ボタン列 ===== */
.mp-fav-actions { flex-shrink:0; display:flex; flex-direction:column; gap:8px; align-items:flex-end; }

/* ===== マイページ：一覧テーブル（横スクロール維持・サムネイル拡大） ===== */
.mp-list-table { min-width:760px; }
.mp-list-table .mp-thumb,
.mp-list-table .mp-thumb-empty { width:80px; height:80px; object-fit:cover; flex-shrink:0; }

/* ===== マイページ：掲載事業者申請 営業時間2段表示用の改行要素 ===== */
.mp-bh-break { display:none; }

@media (max-width:600px) {
  /* フォーム2列グリッド：1列化 */
  .form-grid-2col,
  .form-grid-zip {
    grid-template-columns: 1fr;
  }

  /* ファイル選択行：縦並び・入力欄を横幅100%に */
  .mp-file-row {
    flex-direction: column;
    align-items: stretch;
  }
  .mp-file-row input[type="file"] {
    width: 100%;
  }

  /* SNSリンク行：縦並び・URL欄を横幅100%に */
  .sns-row {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    margin-bottom: 16px;
    max-width: 100%;
    box-sizing: border-box;
  }
  .sns-row input[type="url"] {
    flex: none !important;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    height: 44px !important;
    padding: 0 12px !important;
  }

  /* 契約プランカード：縦並び */
  .mp-plan-card {
    flex-direction: column;
    align-items: stretch;
  }

  /* お気に入り一覧：操作ボタンを折り返して行全体に表示 */
  .mp-fav-row {
    flex-wrap: wrap;
  }
  .mp-fav-actions {
    flex-direction: row;
    flex-basis: 100%;
    justify-content: flex-end;
    margin-top: 4px;
  }

  /* アカウント管理：ログイン情報テーブルをラベル/値の縦積みに */
  .mp-info-table,
  .mp-info-table tbody,
  .mp-info-table tr,
  .mp-info-table th,
  .mp-info-table td {
    display: block;
    width: 100%;
  }
  .mp-info-table th {
    white-space: normal;
    border-bottom: none;
    padding-bottom: 4px;
  }
  .mp-info-table td {
    padding-top: 4px;
    word-break: break-all;
  }

  /* 掲載事業者申請：画像設定ブロック間に余白（ショップロゴ/メイン画像/ショップ画像/許認可証画像） */
  .mp-img-block {
    margin-bottom: 24px !important;
  }

  /* 掲載事業者申請：営業時間を開始/終了の2段表示に */
  .mp-bh-break {
    display: block;
    flex-basis: 100%;
    width: 100%;
    height: 0;
  }

  /* 掲載事業者申請：許認可番号の上部に余白を追加 */
  .mp-license-number {
    margin-top: 16px;
  }

  /* 掲載事業者申請：送信ボタンをスマホで中央配置（現在の内容幅を維持） */
  .vendor-apply-submit-btn {
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
}
