/* ------------------------------------------------
   2.1 アーカイブページ (Archive Page)
   ------------------------------------------------ */

/* パンくずリスト */
.mv-breadcrumb__section {
    padding-top: 0;
    padding-bottom: 0;
}

/* アーカイブヘッダーセクション */
.mv-archive__header-section {
    padding-top: 20px;
    padding-bottom: 20px;
    margin-bottom: 0;
}

.mv-archive__header-inner {
    text-align: center;
}

.mv-archive__heading-wrapper {
    margin-bottom: 20px;
}

.mv-archive__heading-sub {
    margin-bottom: 10px;
}

.mv-archive__heading {
    margin-bottom: 0;
}

.mv-archive__description {
    max-width: 700px;
    margin: 15px auto 0;
    color: #666;
}

/* カテゴリーフィルター */
.mv-archive__category {
    margin-top: 25px;
}

.mv-category__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.mv-category__item {
    list-style: none;
}

.mv-category__item-anchor {
    display: inline-block;
    padding: 8px 20px;
    background: transparent;
    border: 1px solid rgba(201, 169, 97, 0.25);
    border-radius: 20px;
    color: #666;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.mv-category__item-anchor:hover {
    background: rgba(201, 169, 97, 0.08);
    border-color: var(--theme-primary);
    color: var(--theme-primary);
}

.mv-category__item-anchor.is-active {
    background: var(--theme-primary);
    border-color: var(--theme-primary);
    color: #fff;
}

/* アーカイブコンテンツセクション */
.mv-archive__content-section {
    margin-top: 0!important;
    padding-bottom: 40px;
}

/* アーカイブボディ */
.mv-archive__body {
    max-width: 900px;
    margin: 0 auto 40px;
    width: 100%;
}

.mv-archive__body-inner {
    width: 100%;
}

/* ニュース一覧リスト */
.mv-news__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* ニュース一覧アイテム（アーカイブページ用） */
.mv-news__item {
    border-bottom: 1px solid rgba(201, 169, 97, 0.15);
    transition: all 0.3s ease;
    list-style: none;
}

.mv-news__item:first-child {
    border-top: 1px solid rgba(201, 169, 97, 0.15);
}

.mv-news__item:hover {
    background: rgba(201, 169, 97, 0.03);
}

.mv-news__item-item {
    display: block;
    padding: 20px 16px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.mv-news__item:hover .mv-news__item-item {
    padding-left: 24px;
}

.mv-news__meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.85rem;
}

.mv-news__meta time {
    color: #999;
    font-weight: 500;
}

.mv-separator {
    width: 1px;
    height: 12px;
    background: #ddd;
    display: inline-block;
}

.mv-news__category {
    padding: 2px 10px;
    background: rgba(201, 169, 97, 0.1);
    color: var(--theme-primary);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.mv-news__item:hover .mv-news__category {
    background: rgba(201, 169, 97, 0.15);
}

.mv-news__title-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.mv-news__title {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.6;
    color: #1a1a1a;
    transition: color 0.3s ease;
    margin: 0;
    flex: 1;
}

.mv-news__arrow {
    color: var(--theme-primary);
    font-size: 0.9rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.mv-news__item:hover .mv-news__title {
    color: var(--theme-primary);
}

.mv-news__item:hover .mv-news__arrow {
    opacity: 1;
}

/* 投稿なし */
.mv-archive__no-posts {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
    padding: 80px 20px;
    background: rgba(201, 169, 97, 0.03);
    border-radius: 12px;
}

.mv-archive__no-posts .mv-text {
    color: #999;
}

/* ページネーション */
.mv-archive__pagination {
    max-width: 900px;
    margin: 35px auto 0;
    width: 100%;
}

.mv-archive__pagination .pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.mv-archive__pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    background: #fff;
    border: 1px solid rgba(201, 169, 97, 0.25);
    border-radius: 6px;
    color: #666;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.mv-archive__pagination .page-numbers:hover {
    background: rgba(201, 169, 97, 0.08);
    border-color: var(--theme-primary);
    color: var(--theme-primary);
}

.mv-archive__pagination .page-numbers.current {
    background: var(--theme-primary);
    border-color: var(--theme-primary);
    color: #fff;
}

.mv-archive__pagination .page-numbers.prev,
.mv-archive__pagination .page-numbers.next {
    gap: 6px;
    padding: 0 14px;
}

