/* お店ナビページ用スタイル */


/* ページタイトル */
.page-title {
    background-color: #ffffff;
    border-bottom: 2px solid #0099cc;
    display: flex;
    align-items: center;

}

.page-title::before {
    content: '';
    display: block;
    width: 12px;
    height: 30px;
    background-color: #0099cc;
    flex-shrink: 0;
    margin-left: 0;
    margin-right: 8px;
}

.page-title h2 {
    font-size: 16px;
    color: #0099cc;
    font-weight: bold;
    margin: 0;
    padding: 0;
}
.notice-section {
    background-color: #ffffff;

    border-bottom: 1px solid #d0d0d0;
    padding: 12px 15px;
    margin-bottom: 20px;
}

.notice-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.notice-section li {
    font-size: 12px;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.6;
}

.notice-section li:last-child {
    margin-bottom: 0;
}

.notice-icon {
    color: #0099cc;
    font-weight: bold;
    margin-right: 4px;
}

.notice-section a {
    color: #0099cc;
    text-decoration: none;
}

.notice-section a:hover {
    text-decoration: underline;
}
.subtitle {
    font-size: 12px;
    color: #999;
    margin: 0;
}

/* カテゴリータイトル */
.category-title {
    font-size: 15px;
    color: #333;
    font-weight: bold;
    margin: 25px 0 15px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
}

/* お店セクション */
.shop-section {
    margin-bottom: 30px;
}

/* お店グリッド - 3列 */
.shops-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

/* お店カード */
.shop-card {
    background-color: #ffffff;
    border: 1px solid #e6e6e6;
    padding: 12px;
    position: relative;
}

.shop-header {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.shop-image {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    object-fit: cover;
    border-radius: 50%;
    background-color: #f0f0f0;
}

.shop-title-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.badge-link-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.shop-badge {
    display: inline-block;
    background-color: #0099cc;
    color: white;
    font-size: 11px;
    padding: 3px 6px;
    margin-bottom: 0;
    font-weight: bold;
    border-radius: 2px;
    width: fit-content;
}

.shop-badge.badge-massage {
    background-color: #00aa55;
}

.shop-badge.badge-escort {
    background-color: #ff66cc;
}

.shop-card h4 {
    font-size: 12px;
    margin: 0;
    color: #333;
    font-weight: bold;
    line-height: 1.4;
}

.shop-links {
    display: flex;
    gap: 6px;
    margin-top: 0;
    align-items: center;
}

.shop-links a {
    color: #0099cc;
    text-decoration: none;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}

.shop-links a:hover {
    opacity: 0.7;
}

/* リンク用アイコン（ホーム / X） */
.link-icon {
    width: 16px;
    height: 16px;
    display: block;
    object-fit: contain;
}

.shop-links a {
    padding: 0;
}

.shop-card a {
    color: #0099cc;
    text-decoration: none;
}

.shop-card a:hover {
    text-decoration: underline;
}

.shop-details {
    background-color: #f9f9f9;
    padding: 8px;
    border-radius: 2px;
}

.shop-address {
    font-size: 11px;
    color: #666;
    margin: 0 0 5px 0;
    line-height: 1.4;
}

.shop-phone {
    font-size: 11px;
    color: #666;
    margin: 0 0 5px 0;
}

.shop-hours {
    font-size: 11px;
    color: #666;
    margin: 0;
}

/* 情報セクション */
.info-section {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 15px;
    margin-bottom: 30px;
}

.info-left {
    background-color: white;
    border: 1px solid #ddd;
    overflow: hidden;
}

.info-left h3 {
    background-color: #ffff00;
    color: #000;
    padding: 10px 15px;
    margin: 0;
    font-size: 13px;
    font-weight: bold;
}

.info-left ul {
    list-style: none;
    padding: 15px;
    margin: 0;
}

.info-left li {
    margin-bottom: 8px;
    font-size: 12px;
}

.info-left li:last-child {
    margin-bottom: 0;
}

.info-left a {
    color: #0099cc;
    text-decoration: none;
}

.info-left a:hover {
    text-decoration: underline;
}

.info-right {
    background-color: white;
    border: 1px solid #ddd;
    padding: 15px;
}

.info-right h3 {
    color: #0099cc;
    font-size: 13px;
    margin-bottom: 12px;
    text-align: center;
    font-weight: bold;
}

.info-right ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-right li {
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 8px;
    color: #666;
}

.info-right li:last-child {
    margin-bottom: 0;
}

.info-right a {
    color: #0099cc;
    text-decoration: none;
}

.info-right a:hover {
    text-decoration: underline;
}


/* レスポンシブ */
@media (max-width: 1024px) {
    .shops-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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



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

    .banner-section {
        flex-direction: column;
    }

    .banner {
        min-width: 100%;
    }

    .shop-card {
        padding: 10px;
    }

    .shop-card h4 {
        font-size: 12px;
    }

    .shop-address,
    .shop-phone,
    .shop-hours {
        font-size: 10px;
    }
}
