@charset "utf-8";

/*=======================================
プラスチック看板カテゴリページ - スマホ版
=======================================*/

/* ベース設定 */
.header-container {
    max-width: 100%; 
    margin: 0 auto;
    color: #333;
    padding: 0 5px;
}

/* タイトルセクション */
.title-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding-bottom: 0px;
}

.title-block {
    order: 2;
    width: 100%;
}
.title-block h2 {
    font-size: 17px;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: left;
}
.title-block h2::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 25px;
    background-color: #ffc107;
    margin-right: 10px;
}
.title-block p {
    font-size: 12px;
    margin: 8px 0 0 18px;
    color: #333;
    text-align: left;
}

.header-image {
    order: 1;
    width: 100%;
    padding-left: 0;
    margin-bottom: 10px;
    text-align: center;
}
.header-image img {
    max-width: 120px;
    height: auto;
    vertical-align: middle;
}

/* カテゴリグリッド */
.category-grid {
    margin-top: 10px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 0;
}

.category-item {
    border: 1px solid #ccc;
    padding: 3px 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #f7f7f7;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    height: auto;
    min-height: 65px;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}

.category-item.popular {
    min-height: 75px;
    border: 2px solid #ccc;
    padding: 7px 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.category-link {
    text-decoration: none !important;
    color: #000;
    font-size: 11px;
    line-height: 1.6;
    font-weight: 400;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}

.popular .category-link {
    font-weight: 500;
    font-size: 12px;
    line-height: 1.6;
}

.category-item:hover .category-link {
    color: #000; 
}

.popular-icon {
    color: #ffc107;
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 2px;
}

/* 下部キャッチコピー */
.bottom-catch {
    margin-top: 20px;
    padding: 0 5px;
}
.bottom-catch h1 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    padding-bottom: 3px;
    line-height: 1.5;
}
.bottom-catch p {
    font-size: 12px;
    line-height: 1.6;
    margin: 10px 0 30px 0;
}
.bottom-catch .highlight-text {
    font-weight: 600;
    color: #000;
    font-size: 13px;
}