@charset "utf-8";
/* =========================================
   拠点ネットワーク ソート＆リスト
========================================= */
.network-section { padding: 40px 20px 80px; background: #fff; }
.network-section .inner { max-width: 1200px; margin: 0 auto; }

/* ソートコントロールUI */
.network-controls {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    background: #f4f8fc;
    padding: 25px;
    border-radius: 8px;
}
.control-box { display: flex; align-items: center; gap: 10px; }
.control-box label { font-weight: bold; color: #232584; font-size: 15px; }
.control-box select {
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 15px;
    outline: none;
    min-width: 200px;
    cursor: pointer;
}

/* 店舗リストのグリッドレイアウト */
.network-list {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
gap: 20px;
list-style: none; /* ←黒丸を消す設定 */
padding: 0; /* ←ブラウザ特有の左の余白をなくす */
margin: 0;
}
.list-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    transition: transform 0.3s;
}
.list-item:hover { transform: translateY(-5px); box-shadow: 0 8px 20px rgba(0,0,0,0.08); }

/* タグデザイン */
.card-tags { display: flex; gap: 10px; margin-bottom: 15px; }
.card-tags span { padding: 4px 10px; border-radius: 4px; font-size: 12px; font-weight: bold; }
.tag-area { background: #eee; color: #555; }
.tag-cat { color: #fff; }
/* カテゴリごとの色分け */
.tag-food { background: #f59e0b; }
.tag-health { background: #26a2cb; }
.tag-beauty { background: #E1306C; }
.tag-3r { background: #8476b5; }
.tag-real { background: #007937; }
.tag-hr { background: #3eb0e9; }
.tag-group { background: #232584; }

/* テキストデザイン */
.shop-name { font-size: 18px; font-weight: bold; color: #333; margin-bottom: 10px; line-height: 1.4; border-bottom: 1px dashed #ccc; padding-bottom: 10px; }
.shop-address { font-size: 14px; color: #555; line-height: 1.6; }

@media (max-width: 767px) {
    .network-controls { flex-direction: column; gap: 15px; padding: 20px; }
    .control-box { flex-direction: column; align-items: flex-start; }
    .control-box select { width: 100%; }
}
/* =========================================
   拠点ネットワーク ソート＆リスト（リンク対応版）
========================================= */
.network-section { padding: 40px 20px 80px; background: #fff; }
.network-section .inner { max-width: 1200px; margin: 0 auto; }

/* ソートコントロールUI */
.network-controls {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    background: #f4f8fc;
    padding: 25px;
    border-radius: 8px;
}
.control-box { display: flex; align-items: center; gap: 10px; }
.control-box label { font-weight: bold; color: #232584; font-size: 15px; }
.control-box select {
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 15px;
    outline: none;
    min-width: 200px;
    cursor: pointer;
}

/* 店舗リストのグリッドレイアウト */
.network-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

/* リストアイテム本体（余白を消してリンクタグに任せる） */
.list-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    transition: transform 0.3s;
}
.list-item:hover { transform: translateY(-5px); box-shadow: 0 8px 20px rgba(0,0,0,0.08); }

/* 追加：カード全体をリンク化するための設定 */
.card-link {
    display: block;
    padding: 25px 20px;
    text-decoration: none !important;
    color: inherit !important;
    height: 100%;
    box-sizing: border-box;
}

/* タグデザイン */
.card-tags { display: flex; gap: 10px; margin-bottom: 15px; }
.card-tags span { padding: 4px 10px; border-radius: 4px; font-size: 12px; font-weight: bold; }
.tag-area { background: #eee; color: #555; }
.tag-cat { color: #fff; }
/* カテゴリごとの色分け */
.tag-food { background: #f59e0b; }
.tag-health { background: #26a2cb; }
.tag-beauty { background: #E1306C; }
.tag-3r { background: #8476b5; }
.tag-real { background: #007937; }
.tag-hr { background: #3eb0e9; }
.tag-group { background: #232584; }

/* テキストデザイン */
.shop-name { font-size: 18px; font-weight: bold; color: #333; margin-bottom: 10px; line-height: 1.4; border-bottom: 1px dashed #ccc; padding-bottom: 10px; }
.shop-address { font-size: 14px; color: #555; line-height: 1.6; }

@media (max-width: 767px) {
    .network-controls { flex-direction: column; gap: 15px; padding: 20px; }
    .control-box { flex-direction: column; align-items: flex-start; }
    .control-box select { width: 100%; }
}
/* =========================================
   件数表示エリア（中央揃えに変更）
========================================= */
.result-count-area {
text-align: center;
margin-bottom: 30px;
font-size: 15px;
font-weight: bold;
color: #555;
}
.result-count-area span {
font-size: 26px;
color: #232584;
padding: 0 5px;
}