/**
 * カテゴリーページ用スタイル
 */

.tatiage-category {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 16px;
}

/* カテゴリーヘッダー */
.category-header {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e2e8f0;
}

.category-header__inner {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.category-header__icon {
    color: #1f2937;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.category-header__icon .material-symbols-outlined,
.category-header__icon .category-icon-symbol {
    font-size: 27px !important;
    line-height: 1;
    width: 27px;
    height: 27px;
    display: inline-block;
    margin-right: 0;
}

.category-header__title {
    font-size: 29px;
    font-weight: 700;
    color: #000;
    margin: 0;
    line-height: 1.2;
}

.category-header__description {
    font-size: 13px;
    color: #1f2937;
    line-height: 1.6;
    max-width: 1089px;
}

/* カテゴリーコンテンツ */
.category-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 1024px) {
    .category-content {
        grid-template-columns: 320px 1fr;
        gap: 48px;
    }
}

/* サイドバー */
.category-sidebar {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
}

.category-sidebar__title {
    font-size: 26px;
    font-weight: 700;
    color: #000;
    margin: 0 0 20px;
}

.category-sidebar__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.category-sidebar__item {
    margin-bottom: 0;
}

.category-sidebar__link {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    text-decoration: none;
    color: #1f2937;
    border-bottom: 1px solid #e2e8f0;
    transition: background-color 0.2s;
}

.category-sidebar__item:last-child .category-sidebar__link {
    border-bottom: none;
}

.category-sidebar__link:hover {
    background-color: #f9fafb;
}

.category-sidebar__icon {
    flex-shrink: 0;
    margin-right: 12px;
    color: #1f2937;
    display: flex;
    align-items: center;
}

.category-sidebar__icon .material-symbols-outlined,
.category-sidebar__icon .category-icon-symbol {
    font-size: 20px !important;
    line-height: 1;
    width: 20px;
    height: 20px;
    display: inline-block;
    margin-right: 0;
}

.category-sidebar__name {
    flex: 1;
    font-size: 19px;
    font-weight: 700;
    color: #000;
}

.category-sidebar__chevron {
    flex-shrink: 0;
    font-size: 18px;
    color: #cbd5e1;
    margin-left: auto;
}

/* メインコンテンツ */
.category-main {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.category-section {
    margin-bottom: 0;
    padding-bottom: 48px;
    border-bottom: 1px solid #e2e8f0;
}

.category-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.category-section__header {
    margin-bottom: 24px;
}

.category-section__title {
    font-size: 26px;
    font-weight: 700;
    color: #000;
    margin: 0;
}

.category-section__more-wrapper {
    margin-top: 24px;
    text-align: center;
}

.category-section__more {
    display: inline-flex;
    align-items: center;
    gap: 0;
    padding: 10px 20px;
    background: #ffffff;
    color: #0f9d58;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 24px;
    border: 2px solid #81c784;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(15, 157, 88, 0.1);
}

.category-section__more::before {
    content: '→';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(15, 157, 88, 0.1);
    border-radius: 50%;
    margin-right: 8px;
    font-size: 14px;
    transition: all 0.2s ease;
}

.category-section__more:hover {
    background: #0f9d58;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(15, 157, 88, 0.3);
    transform: translateY(-1px);
}

.category-section__more:hover::before {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(2px);
}

