@charset "utf-8";

/*=======================================
プラスチック看板カテゴリページ - PC版
=======================================*/

/* ベース設定 */
.header-container {
    width: 680px;
    margin: 0 auto;
    color: #333;
    font-family: 'Yu Gothic', '游ゴシック', 'Yu Gothic UI', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
}

/* タイトルセクション */
.title-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 0px;
}
.title-block {
    flex-grow: 1;
}
.title-block h2 {
    font-size: 24px;
    font-weight: 900;
    margin: 0;
    display: flex;
    align-items: center;
}
.title-block h2::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 30px;
    background-color: #ffc107;
    margin-right: 10px;
}
.title-block p {
    font-size: 13px;
    margin: 8px 0 0 18px;
    color: #333;
}
.header-image {
    width: 149px;
    flex-shrink: 0;
    padding-left: 20px;
}
.header-image img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

/* カテゴリグリッド */
.category-grid {
    margin-top: 10px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 0 5px;
}

.category-item {
    border: 1px solid #ccc;
    padding: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #f7f7f7;
    transition: box-shadow 0.2s ease-in-out, border-color 0.2s ease-in-out, background-color 0.2s ease-in-out;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.category-item.popular {
    height: 80px;
    border: 2px solid #ccc;
    padding: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.category-item:not(.popular) {
    height: 60px;
}

.category-item:hover {
    cursor: pointer;
    border-color: #999;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
    background-color: #ececec;
}

.category-item:active {
    background-color: #dcdcdc;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border-color: #888;
}

.category-link {
    text-decoration: none !important;
    color: #000;
    font-size: 13px;
    line-height: 1.5;
    font-weight: 900;
}

.popular .category-link {
    font-size: 14px;
}

.category-item:hover .category-link {
    color: #000; 
}

.popular-icon {
    color: #ffc107;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 3px;
}

/* 下部キャッチコピー */
.bottom-catch {
    margin-top: 30px;
    padding: 0 10px;
}
.bottom-catch h1 {
    font-size: 20px;
    font-weight: 900;
    margin: 0;
    padding-bottom: 3px;
    line-height: 30px;
}
.bottom-catch p {
    font-size: 13px;
    line-height: 1.6;
    margin: 10px 0 30px 0;
}
.bottom-catch .highlight-text {
    font-weight: 900;
    color: #000;
    font-size: 14px;
}