/* ==========================================
   ページタイトル
========================================== */

.page-title{

    margin:30px 0 40px;

}

.page-title h2{

    font-size:2rem;

    margin-bottom:10px;

}

.page-title p{

    color:#666;

}

/* ==========================================
   パンくず
========================================== */

.breadcrumb{

    margin:25px 0;

    font-size:.9rem;

    color:#666;

}

.breadcrumb a{

    color:#1565c0;

    text-decoration:none;

}

/* ==========================================
   検索
========================================== */

.search-area{

    margin-bottom:30px;

}

.search-area input{

    width:100%;

    height:52px;

    border:1px solid #ddd;

    border-radius:10px;

    padding:0 18px;

    font-size:1rem;

}

.search-area input:focus{

    border-color:#1565c0;

    outline:none;

}

/* ==========================================
   カテゴリー
========================================== */

.category-area{

    display:flex;

    flex-wrap:wrap;

    gap:12px;

    margin-bottom:40px;

}

.category-button{

    background:#fff;

    border:1px solid #ddd;

    border-radius:30px;

    padding:10px 20px;

    cursor:pointer;

    transition:.2s;

}

.category-button:hover{

    background:#1565c0;

    color:#fff;

}

.category-button.active{

    background:#1565c0;

    color:#fff;

    border-color:#1565c0;

}

/* ==========================================
   セクション
========================================== */

.section-title{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:25px;

}

.section-title h2{

    font-size:1.6rem;

}

/* ==========================================
   レスポンシブ
========================================== */

@media(max-width:768px){

    .page-title h2{

        font-size:1.6rem;

    }

    .category-area{

        gap:8px;

    }

    .category-button{

        padding:8px 14px;

        font-size:.9rem;

    }

}