/* =====================================================
   フォトレイト完全再現版 CSS
   ===================================================== */

/* =====================================================
   1. 全体のリセットとベース設定
   ===================================================== */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    color: #333;
    background: #f8f8f8 !important;
    font-size: 14px;
    line-height: 1.6;
}

/* コンテナ設定 */
.l-container,
.c-container {
    max-width: 1200px !important;
    width: 100% !important;
    padding: 0 20px !important;
    margin: 0 auto !important;
}

/* サイドバー削除 */
.l-sidebar,
#sidebar,
aside.sidebar {
    display: none !important;
}

/* メインコンテンツ全幅 */
.l-main {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #f8f8f8 !important;
}

/* ブログ要素を非表示 */
.post-meta,
.entry-meta,
.c-postDate,
.c-postAuthor,
.c-postCategory,
.c-commentArea,
.c-relatedPosts,
.c-shareBtns,
.c-postNavi,
.c-authorBox,
#comments {
    display: none !important;
}

/* =====================================================
   2. ヘッダー（フォトレイト風）
   ===================================================== */
.l-header {
    background: #fff !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1) !important;
    border-bottom: 1px solid #e5e5e5 !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 1000 !important;
}

/* =====================================================
   3. ページヘッダー（タイトルエリア）
   ===================================================== */
.c-pageHeader {
    background: #fff !important;
    text-align: left !important;
    padding: 40px 0 30px !important;
    margin-bottom: 0 !important;
    border-bottom: 1px solid #e5e5e5 !important;
}

.c-pageHeader__title {
    font-size: 28px !important;
    font-weight: 700 !important;
    color: #333 !important;
    margin: 0 !important;
}

.c-pageHeader__description {
    display: none !important;
}

/* =====================================================
   4. 検索フィルター（フォトレイト風）
   ===================================================== */
.photographer-search-filter {
    background: #fff !important;
    padding: 30px !important;
    margin: 0 0 30px 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    border: none !important;
    border-bottom: 1px solid #e5e5e5 !important;
}

.photographer-search-filter form {
    display: flex !important;
    gap: 10px !important;
    align-items: center !important;
    flex-wrap: wrap !important;
}

.filter-item {
    flex: 1 1 200px !important;
    display: flex !important;
    flex-direction: column !important;
}

.filter-item label {
    font-size: 12px !important;
    font-weight: 600 !important;
    color: #666 !important;
    margin-bottom: 8px !important;
    text-transform: uppercase !important;
}

.filter-item select {
    padding: 10px 12px !important;
    border: 1px solid #d0d0d0 !important;
    border-radius: 3px !important;
    font-size: 14px !important;
    background: #fff !important;
    color: #333 !important;
    cursor: pointer !important;
    transition: border-color 0.2s !important;
}

.filter-item select:focus {
    outline: none !important;
    border-color: #4A90E2 !important;
}

.search-submit-btn {
    padding: 11px 30px !important;
    background: #4A90E2 !important;
    color: white !important;
    border: none !important;
    border-radius: 3px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: background 0.2s !important;
    font-size: 14px !important;
    margin-top: 24px !important;
    flex-shrink: 0 !important;
}

.search-submit-btn:hover {
    background: #357ABD !important;
}

/* =====================================================
   5. フォトグラファーグリッド（フォトレイト風）
   ===================================================== */
.photographer-archive-results {
    background: #f8f8f8 !important;
    padding: 30px 0 !important;
}

.photographer-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px !important;
    margin: 0 !important;
}

.photographer-card {
    background: #fff !important;
    border-radius: 4px !important;
    overflow: hidden !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12) !important;
    transition: box-shadow 0.2s, transform 0.2s !important;
    display: flex !important;
    flex-direction: column !important;
    border: 1px solid #e5e5e5 !important;
}

.photographer-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
    transform: translateY(-2px) !important;
}

.photographer-card .card-thumbnail {
    position: relative !important;
    padding-top: 100% !important;
    overflow: hidden !important;
    background: #f0f0f0 !important;
}

.photographer-card .card-thumbnail img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.photographer-card .card-content {
    padding: 20px !important;
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
}

.photographer-card .card-title {
    font-size: 16px !important;
    font-weight: 700 !important;
    margin-bottom: 10px !important;
    color: #333 !important;
    line-height: 1.4 !important;
}

.photographer-card .card-title a {
    color: #333 !important;
    text-decoration: none !important;
}

.photographer-card .card-title a:hover {
    color: #4A90E2 !important;
}

.photographer-card .card-meta {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 6px !important;
    margin-bottom: 12px !important;
}

.photographer-card .meta-item {
    font-size: 11px !important;
    color: #666 !important;
    background: #f5f5f5 !important;
    padding: 3px 8px !important;
    border-radius: 3px !important;
}

.photographer-price {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #333 !important;
    margin-bottom: 8px !important;
}

.photographer-price .price-label {
    font-size: 12px !important;
    font-weight: 400 !important;
    color: #999 !important;
}

.photographer-price .price-value {
    color: #4A90E2 !important;
}

.booking-status {
    display: inline-block !important;
    padding: 3px 10px !important;
    border-radius: 3px !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    margin-bottom: 10px !important;
}

.booking-status.available {
    background: #E8F5E9 !important;
    color: #2E7D32 !important;
}

.booking-status.unavailable {
    background: #FFEBEE !important;
    color: #C62828 !important;
}

.photographer-card .card-excerpt {
    font-size: 13px !important;
    line-height: 1.6 !important;
    color: #666 !important;
    margin-bottom: 15px !important;
    flex: 1 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}

.photographer-card .card-rating {
    margin-bottom: 12px !important;
    font-size: 12px !important;
}

.photographer-card .card-button {
    display: block !important;
    text-align: center !important;
    padding: 10px !important;
    background: #4A90E2 !important;
    color: white !important;
    text-decoration: none !important;
    border-radius: 3px !important;
    font-weight: 600 !important;
    transition: background 0.2s !important;
    font-size: 13px !important;
}

.photographer-card .card-button:hover {
    background: #357ABD !important;
}

/* =====================================================
   6. 検索結果なし
   ===================================================== */
.no-results {
    text-align: center !important;
    padding: 80px 20px !important;
    background: #fff !important;
    border-radius: 4px !important;
    margin: 0 !important;
    border: 1px solid #e5e5e5 !important;
}

.no-results p {
    font-size: 15px !important;
    color: #666 !important;
    margin-bottom: 10px !important;
}

/* =====================================================
   7. ページネーション（フォトレイト風）
   ===================================================== */
.pagination,
.nav-links {
    display: flex !important;
    justify-content: center !important;
    gap: 8px !important;
    margin: 40px 0 !important;
}

.pagination a,
.pagination span,
.nav-links a,
.nav-links span {
    padding: 8px 12px !important;
    border: 1px solid #d0d0d0 !important;
    border-radius: 3px !important;
    text-decoration: none !important;
    color: #333 !important;
    background: #fff !important;
    font-size: 14px !important;
    transition: all 0.2s !important;
}

.pagination a:hover,
.nav-links a:hover {
    background: #4A90E2 !important;
    color: white !important;
    border-color: #4A90E2 !important;
}

.pagination .current,
.nav-links .current {
    background: #4A90E2 !important;
    color: white !important;
    border-color: #4A90E2 !important;
}

/* =====================================================
   8. レスポンシブ対応
   ===================================================== */
@media (max-width: 1024px) {
    .photographer-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
}

@media (max-width: 768px) {
    .photographer-search-filter form {
        flex-direction: column !important;
    }
    
    .filter-item {
        width: 100% !important;
    }
    
    .search-submit-btn {
        width: 100% !important;
        margin-top: 10px !important;
    }
    
    .photographer-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    
    .c-pageHeader__title {
        font-size: 22px !important;
    }
}

/* =====================================================
   9. フッター
   ===================================================== */
.l-footer {
    background: #fff !important;
    border-top: 1px solid #e5e5e5 !important;
    margin-top: 60px !important;
    padding: 40px 0 !important;
}
/* =====================================================
   フォトグラファー詳細ページ
   ===================================================== */
.photographer-single {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

.photographer-single-header {
    background: #fff;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 4px;
    border: 1px solid #e5e5e5;
}

.photographer-single-header h1 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.photographer-featured-image {
    margin-bottom: 30px;
    border-radius: 4px;
    overflow: hidden;
}

.photographer-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.photographer-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.info-box {
    background: #fff;
    padding: 20px;
    border-radius: 4px;
    border: 1px solid #e5e5e5;
}

.info-box h4 {
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 600;
}

.info-box p {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.photographer-description,
.portfolio-gallery,
.photographer-social,
.photographer-booking {
    background: #fff;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 4px;
    border: 1px solid #e5e5e5;
}

.photographer-description h3,
.portfolio-gallery h3,
.photographer-social h3,
.photographer-booking h3 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.gallery-item {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
    border-radius: 4px;
}

.gallery-item a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

.gallery-item:hover img {
    transform: scale(1.05);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    color: white;
    font-size: 14px;
}

.social-link.instagram {
    background: #E1306C;
}

.social-link.website {
    background: #4A90E2;
}

.social-link:hover {
    opacity: 0.85;
}

@media (max-width: 768px) {
    .photographer-info-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
undefined
/* =====================================================
   カテゴリー別検索ボックス（2列完全版）
   ===================================================== */

.photographer-category-search {
    background: #fff;
    padding: 40px 30px;
    margin: 30px 0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.category-search-title {
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 700px;
    margin: 0 auto;
}

.category-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 35px 25px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    min-height: 180px;
    position: relative;
    overflow: hidden;
}

.category-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.category-box:hover::before {
    opacity: 1;
}

.category-box > * {
    position: relative;
    z-index: 1;
}

.category-box:hover {
    border-color: #4A90E2;
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(74,144,226,0.3);
}

.category-icon {
    font-size: 48px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
    display: block;
}

.category-box:hover .category-icon {
    transform: scale(1.2) rotate(5deg);
}

.category-name {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    transition: color 0.3s ease;
    line-height: 1.4;
}

.category-box:hover .category-name {
    color: white;
}

.category-count {
    font-size: 14px;
    color: #666;
    margin: 0;
    font-weight: 600;
    transition: color 0.3s ease;
}

.category-box:hover .category-count {
    color: rgba(255,255,255,0.95);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .category-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .photographer-category-search {
        padding: 30px 20px;
    }
    
    .category-box {
        min-height: 160px;
        padding: 30px 20px;
    }
    
    .category-search-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
}
