/* ==========================================================================
   音ポータル (Oto Portal) メインCSS
   mf247風 白ベース・赤アクセント・情報密度高めのインディーズ音楽ポータル
   ========================================================================== */

/* ---------- リセット ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ---------- ベース ---------- */
body {
    font-family: 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'MS Pゴシック', 'MS PGothic', Osaka, sans-serif;
    font-size: 12px;
    line-height: 1.5;
    color: #333;
    background: #f0f0f0;
}

a {
    color: #333;
    text-decoration: none;
}

a:hover {
    color: #cc0000;
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
    border: 0;
}

ul, ol {
    list-style: none;
}

/* ---------- 全体ラッパー ---------- */
.site-wrapper {
    width: 960px;
    margin: 0 auto;
    background: #fff;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
}

/* ==========================================================================
   ヘッダー（白ベース・mf247風）
   ========================================================================== */
.site-header {
    background: #fff;
    border-bottom: 1px solid #ddd;
}

.header-inner {
    padding: 0;
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px 8px;
}

/* ロゴ */
.site-branding {
    flex: 1;
}

.site-title {
    line-height: 1;
    margin: 0;
}

.site-title a {
    color: #333;
    text-decoration: none;
}

.site-title a:hover {
    text-decoration: none;
    color: #cc0000;
}

.site-title__main {
    display: block;
    font-size: 32px;
    font-weight: bold;
    color: #cc0000;
    letter-spacing: 0.02em;
}

.site-description {
    font-size: 10px;
    color: #999;
    margin-top: 2px;
}

/* ヘッダー右（検索） */
.header-right {
    flex-shrink: 0;
    text-align: right;
}

.search-label {
    font-size: 10px;
    color: #666;
    margin-right: 4px;
}

.search-form {
    display: inline-flex;
    gap: 0;
}

.search-field {
    width: 160px;
    padding: 3px 6px;
    font-size: 11px;
    font-family: inherit;
    border: 1px solid #ccc;
    background: #fff;
    color: #333;
}

.search-field::placeholder {
    color: #aaa;
}

/* Aqua風検索ボタン */
.search-submit {
    padding: 3px 12px;
    font-size: 10px;
    font-family: inherit;
    background: linear-gradient(to bottom, #6cf 0%, #39f 45%, #28e 55%, #39f 100%);
    color: #fff;
    border: 1px solid #28a;
    border-radius: 3px;
    cursor: pointer;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.3);
    font-weight: bold;
}

.search-submit:hover {
    background: linear-gradient(to bottom, #7df 0%, #4af 45%, #39f 55%, #4af 100%);
}

/* ==========================================================================
   グローバルナビ（テキストリンク型・赤アクセント）
   ========================================================================== */
/* Aqua風メタリックナビバー */
.main-navigation {
    background: linear-gradient(to bottom,
        #f2f2f2 0%,
        #e0e0e0 45%,
        #c4c4c4 50%,
        #d0d0d0 55%,
        #dcdcdc 100%
    );
    border-top: 1px solid #bbb;
    border-bottom: 1px solid #999;
}

.nav-inner {
    padding: 0 6px;
}

.primary-menu {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.primary-menu li {
    position: relative;
}

.primary-menu li a {
    display: block;
    padding: 6px 14px;
    color: #333;
    font-size: 11px;
    font-weight: bold;
    text-decoration: none;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.6);
    border-right: 1px solid #bbb;
}

.primary-menu li:last-child a {
    border-right: none;
}

.primary-menu li a:hover {
    color: #111;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.3);
}

.primary-menu li.current-menu-item > a,
.primary-menu li.current_page_item > a {
    color: #111;
    background: rgba(255, 255, 255, 0.4);
}

/* サブメニュー */
.primary-menu .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 160px;
    z-index: 100;
    border: 1px solid #ccc;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.primary-menu li:hover > .sub-menu {
    display: block;
}

.primary-menu .sub-menu a {
    padding: 4px 10px;
    font-size: 11px;
    font-weight: normal;
    border-bottom: 1px dotted #ddd;
}

/* ==========================================================================
   お知らせバー
   ========================================================================== */
.info-bar {
    display: flex;
    align-items: center;
    padding: 4px 15px;
    background: linear-gradient(to bottom, #fafafa 0%, #f0f0f0 100%);
    border-bottom: 1px solid #ddd;
    font-size: 11px;
}

.info-bar-label {
    flex-shrink: 0;
    font-size: 10px;
    font-weight: bold;
    color: #999;
    margin-right: 10px;
    padding-right: 10px;
    border-right: 1px solid #ddd;
}

.info-bar-content a {
    color: #333;
}

.info-bar-content a:hover {
    color: #cc0000;
}

/* ==========================================================================
   コンテンツエリア
   ========================================================================== */
.site-content {
    padding: 0;
}

.content-inner {
    padding: 0;
}

/* 2カラムレイアウト */
.two-column {
    display: flex;
    gap: 0;
}

.site-main {
    flex: 1;
    min-width: 0;
    padding: 12px 15px;
}

/* パンくずリスト */
.breadcrumb {
    font-size: 10px;
    color: #999;
    margin-bottom: 10px;
}

.breadcrumb a {
    color: #666;
    font-size: 10px;
}

.breadcrumb a:hover {
    color: #cc0000;
}

/* ==========================================================================
   セクション共通
   ========================================================================== */
.section {
    margin-bottom: 15px;
}

/* Aqua/Mac風メタリックグラデーション見出し */
.section-title {
    font-size: 12px;
    font-weight: bold;
    color: #333;
    padding: 5px 10px;
    margin-bottom: 0;
    background: linear-gradient(to bottom,
        #f0f0f0 0%,
        #e4e4e4 45%,
        #c8c8c8 50%,
        #d4d4d4 55%,
        #e0e0e0 100%
    );
    border: 1px solid #aaa;
    border-bottom: 1px solid #999;
    border-radius: 4px 4px 0 0;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.7);
}

.section-lead {
    font-size: 11px;
    color: #666;
    padding: 5px 10px;
    border-bottom: 1px solid #eee;
    margin-bottom: 8px;
}

.section-more {
    text-align: right;
    margin-top: 2px;
    padding: 3px 0;
}

.section-more a {
    font-size: 10px;
    color: #cc0000;
}

/* ---------- バッジ ---------- */
.badge-new {
    display: inline-block;
    font-size: 9px;
    font-weight: bold;
    color: #fff;
    background: #cc0000;
    padding: 0 3px;
    line-height: 14px;
    vertical-align: middle;
    margin-left: 4px;
    font-family: 'Verdana', 'Arial', sans-serif;
}

.badge-hot {
    display: inline-block;
    font-size: 9px;
    font-weight: bold;
    color: #fff;
    background: #ff6600;
    padding: 0 3px;
    line-height: 14px;
    vertical-align: middle;
    margin-left: 4px;
    font-family: 'Verdana', 'Arial', sans-serif;
}

.badge-up {
    display: inline-block;
    font-size: 9px;
    font-weight: bold;
    color: #cc0000;
    vertical-align: middle;
    margin-left: 2px;
    font-family: 'Verdana', 'Arial', sans-serif;
}

/* ==========================================================================
   ピックアップ（New Arrival風）
   ========================================================================== */
.section-pickup {
    margin-bottom: 12px;
}

.pickup-banner {
    border: 1px solid #ddd;
    background: #fff;
    position: relative;
}

.pickup-banner__link {
    display: flex;
    align-items: stretch;
    color: #333;
    text-decoration: none;
}

.pickup-banner__link:hover {
    text-decoration: none;
}

.pickup-banner__image {
    width: 300px;
    flex-shrink: 0;
    overflow: hidden;
}

.pickup-banner__image img {
    width: 300px;
    height: 170px;
    object-fit: cover;
    display: block;
}

.pickup-banner__content {
    flex: 1;
    padding: 12px 16px;
    background: #fff;
}

.pickup-banner__label {
    display: inline-block;
    background: #cc0000;
    color: #fff;
    font-size: 9px;
    font-weight: bold;
    padding: 1px 8px;
    margin-bottom: 6px;
    letter-spacing: 0.1em;
}

.pickup-banner__title {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.3;
    color: #333;
    margin-bottom: 6px;
}

.pickup-banner__excerpt {
    font-size: 11px;
    color: #666;
    line-height: 1.5;
}

/* ==========================================================================
   今週のおすすめ（横並びサムネイル）
   ========================================================================== */
.weekly-grid {
    display: flex;
    gap: 0;
    border: 1px solid #ddd;
    border-top: none;
}

.weekly-card {
    flex: 1;
    border-right: 1px solid #eee;
    background: #fff;
}

.weekly-card:last-child {
    border-right: none;
}

.weekly-card a {
    display: block;
    text-decoration: none;
    color: #333;
    text-align: center;
}

.weekly-card a:hover {
    text-decoration: none;
    background: #fafafa;
}

.weekly-card__thumb {
    overflow: hidden;
}

.weekly-card__thumb img {
    width: 100%;
    max-height: 190px;
    object-fit: cover;
    display: block;
}

.weekly-card__name {
    font-size: 10px;
    font-weight: bold;
    padding: 4px 4px 1px;
    color: #333;
    line-height: 1.3;
}

.weekly-card__genre {
    display: block;
    font-size: 9px;
    color: #999;
    padding: 0 4px 4px;
}

/* ==========================================================================
   ランキング（番号付きテキストリスト）
   ========================================================================== */
.ranking-list {
    border: 1px solid #ddd;
    border-top: none;
}

.ranking-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 10px;
    border-bottom: 1px solid #eee;
    font-size: 11px;
    background: #fff;
}

.ranking-item:last-child {
    border-bottom: none;
}

.ranking-item:hover {
    background: #fafafa;
}

/* Aqua風ランキング数字 */
.ranking-item__number {
    display: inline-block;
    width: 22px;
    height: 22px;
    line-height: 22px;
    text-align: center;
    font-size: 11px;
    font-weight: bold;
    color: #fff;
    background: linear-gradient(to bottom, #bbb 0%, #888 45%, #777 55%, #999 100%);
    border: 1px solid #777;
    border-radius: 3px;
    flex-shrink: 0;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.3);
}

.rank-1 .ranking-item__number {
    background: linear-gradient(to bottom, #f66 0%, #c00 45%, #a00 55%, #c00 100%);
    border-color: #900;
}
.rank-2 .ranking-item__number {
    background: linear-gradient(to bottom, #fa6 0%, #c60 45%, #a50 55%, #c60 100%);
    border-color: #940;
}
.rank-3 .ranking-item__number {
    background: linear-gradient(to bottom, #fd6 0%, #ca0 45%, #a80 55%, #ca0 100%);
    border-color: #980;
}

.ranking-item__thumb {
    flex-shrink: 0;
}

.ranking-item__thumb img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border: 1px solid #ddd;
}

.ranking-item__info {
    flex: 1;
    min-width: 0;
}

.ranking-item__name {
    font-size: 11px;
    font-weight: bold;
}

.ranking-item__name a {
    color: #333;
    text-decoration: none;
}

.ranking-item__name a:hover {
    color: #cc0000;
    text-decoration: underline;
}

.ranking-item__song {
    font-size: 10px;
    color: #999;
    display: block;
}

/* ==========================================================================
   ニュースリスト
   ========================================================================== */
.news-list {
    border: 1px solid #ddd;
    border-top: none;
}

.news-item {
    display: flex;
    align-items: baseline;
    gap: 8px;
    padding: 4px 10px;
    border-bottom: 1px solid #eee;
    font-size: 11px;
    background: #fff;
}

.news-item:last-child {
    border-bottom: none;
}

.news-item:hover {
    background: #fafafa;
}

.news-item__date {
    flex-shrink: 0;
    color: #999;
    font-size: 10px;
}

.news-item__title {
    flex: 1;
    font-size: 11px;
    font-weight: normal;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.news-item__title a {
    text-decoration: none;
}

.news-item__title a:hover {
    text-decoration: underline;
    color: #cc0000;
}

.news-item__band {
    flex-shrink: 0;
    font-size: 10px;
}

.news-item__band a {
    color: #cc0000;
}

/* ==========================================================================
   インタビュー・特集グリッド
   ========================================================================== */
.interview-grid,
.feature-grid {
    display: flex;
    gap: 0;
    border: 1px solid #ddd;
    border-top: none;
}

.interview-card,
.feature-card {
    flex: 1;
    border-right: 1px solid #eee;
    background: #fff;
}

.interview-card:last-child,
.feature-card:last-child {
    border-right: none;
}

.interview-card a,
.feature-card a {
    display: block;
    color: #333;
    text-decoration: none;
}

.interview-card a:hover,
.feature-card a:hover {
    text-decoration: none;
    background: #fafafa;
}

.interview-card__thumb img,
.feature-card__thumb img {
    width: 100%;
    max-height: 240px;
    object-fit: cover;
    display: block;
}

.interview-card__body,
.feature-card__body {
    padding: 4px 6px;
}

.interview-card__label {
    display: inline-block;
    font-size: 9px;
    font-weight: bold;
    color: #fff;
    background: #cc0000;
    padding: 0 4px;
    margin-bottom: 2px;
}

.feature-card__label {
    display: inline-block;
    font-size: 9px;
    font-weight: bold;
    color: #fff;
    background: #666;
    padding: 0 4px;
    margin-bottom: 2px;
}

.interview-card__title,
.feature-card__title {
    font-size: 11px;
    font-weight: bold;
    line-height: 1.4;
    color: #333;
}

.interview-card__band {
    display: block;
    font-size: 10px;
    color: #999;
    margin-top: 2px;
}

.feature-card__excerpt {
    font-size: 10px;
    color: #666;
    margin-top: 2px;
    line-height: 1.4;
}

/* ==========================================================================
   バンド一覧導線
   ========================================================================== */
.section-band-link {
    text-align: center;
    padding: 12px;
    background: #fafafa;
    border: 1px solid #ddd;
}

.section-band-link .section-title {
    display: none;
}

/* ==========================================================================
   バナー広告風スペース（2006年の定番）
   ========================================================================== */

/* 共通バナースタイル */
.ad-banner {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #ccc;
    background: linear-gradient(to bottom, #fff 0%, #f5f5f5 100%);
    overflow: hidden;
    cursor: pointer;
}

.ad-banner:hover {
    border-color: #aaa;
    background: linear-gradient(to bottom, #fff 0%, #f0f0f0 100%);
}

.ad-banner__label {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 24px;
    align-self: stretch;
    font-size: 8px;
    font-weight: bold;
    color: #999;
    background: #eee;
    border-right: 1px solid #ddd;
    letter-spacing: 0.05em;
}

.ad-banner__text {
    flex: 1;
    font-size: 10px;
    color: #555;
    line-height: 1.3;
    padding: 4px 0;
}

.ad-banner__text strong {
    color: #cc0000;
}

/* バナー画像リンク */
.ad-banner-img {
    display: inline-block;
    line-height: 0;
}

.ad-banner-img img {
    border: 1px solid #ccc;
    vertical-align: bottom;
}

.ad-banner-img:hover img {
    border-color: #999;
    opacity: 0.9;
}

/* ヘッダーバナー（468x60 定番サイズ風） */
.header-banner {
    margin-bottom: 4px;
}

.ad-banner--header {
    width: 468px;
    height: 60px;
}

/* コンテンツ内バナー */
.ad-space--content {
    margin: 10px 0;
    text-align: center;
}

.ad-banner--content {
    width: 468px;
    height: 60px;
    margin: 0 auto;
}

/* サイドバーバナー（120x60 小バナー風） */
.sidebar-ad-space {
    margin-bottom: 12px;
}

.ad-banner--sidebar {
    height: 50px;
}

.btn {
    display: inline-block;
    padding: 5px 20px;
    font-size: 11px;
    font-weight: bold;
    font-family: inherit;
    text-decoration: none;
    cursor: pointer;
}

/* Aqua風ボタン */
.btn-primary {
    background: linear-gradient(to bottom, #6cf 0%, #39f 45%, #28e 55%, #39f 100%);
    color: #fff;
    border: 1px solid #28a;
    border-radius: 4px;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(to bottom, #7df 0%, #4af 45%, #39f 55%, #4af 100%);
    color: #fff;
    text-decoration: none;
}

/* ==========================================================================
   投稿カード（一覧用）
   ========================================================================== */
.post-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.post-card {
    display: flex;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    background: #fff;
}

.post-card__thumb {
    flex-shrink: 0;
    width: 100px;
}

.post-card__thumb img {
    width: 100px;
    height: 70px;
    object-fit: cover;
    border: 1px solid #ddd;
}

.post-card__body {
    flex: 1;
    min-width: 0;
}

.post-card__type {
    display: inline-block;
    font-size: 9px;
    font-weight: bold;
    padding: 0 4px;
    margin-bottom: 2px;
    color: #fff;
}

/* バッジ専用（spanのみに適用、WPのarticle.type-xxxには適用しない） */
span.type-interview { background: #cc0000; }
span.type-feature { background: #666; }
span.type-news { background: #336699; }
span.type-band { background: #339933; }
span.type-post { background: #666; }
span.type-page { background: #666; }

/* WPが自動付与するarticle.type-xxxの背景を打ち消し */
article.type-news,
article.type-band,
article.type-interview,
article.type-feature,
article.type-post,
article.type-page {
    background: #fff;
}

.post-card__title {
    font-size: 12px;
    font-weight: bold;
    line-height: 1.3;
    margin-bottom: 2px;
}

.post-card__title a {
    color: #333;
    text-decoration: none;
}

.post-card__title a:hover {
    color: #cc0000;
    text-decoration: underline;
}

.post-card__meta {
    font-size: 10px;
    color: #999;
}

.post-card__band {
    font-size: 10px;
    color: #cc0000;
}

.post-card__excerpt {
    font-size: 11px;
    color: #666;
    line-height: 1.4;
}

/* バンドグリッド */
.band-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    border: 1px solid #ddd;
    flex-direction: row;
}

.band-card {
    width: 33.333%;
    border-right: 1px solid #eee;
    border-bottom: 1px solid #eee;
    background: #fff;
}

.band-card:nth-child(3n) {
    border-right: none;
}

.band-card__link {
    display: block;
    color: #333;
    text-decoration: none;
    text-align: center;
}

.band-card__link:hover {
    text-decoration: none;
    background: #fafafa;
}

.band-card__thumb img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    display: block;
}

.band-card__body {
    padding: 4px 6px;
}

.band-card__name {
    font-size: 11px;
    font-weight: bold;
    margin-bottom: 2px;
}

.band-card__genre,
.band-card__area {
    display: inline-block;
    font-size: 9px;
    color: #999;
    margin-right: 4px;
}

/* ==========================================================================
   個別記事（白背景ベース）
   ========================================================================== */
.single-article {
    margin-bottom: 15px;
    background: #fff;
}

.entry-header {
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid #ddd;
}

.entry-type-label {
    display: inline-block;
    font-size: 9px;
    font-weight: bold;
    padding: 1px 6px;
    color: #fff;
    margin-bottom: 4px;
}

.entry-title {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.4;
    color: #333;
    margin-bottom: 4px;
}

.entry-meta {
    font-size: 10px;
    color: #999;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.entry-meta a {
    color: #cc0000;
}

.related-band a {
    color: #cc0000;
}

.entry-thumbnail {
    margin-bottom: 12px;
}

.entry-thumbnail img {
    width: 100%;
    border: 1px solid #ddd;
}

/* 記事本文 */
.entry-content {
    font-size: 12px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #333;
    background: #fff;
}

.entry-content h2 {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    padding: 5px 10px;
    margin: 20px 0 10px;
    background: linear-gradient(to bottom,
        #f0f0f0 0%, #e4e4e4 45%, #c8c8c8 50%, #d4d4d4 55%, #e0e0e0 100%
    );
    border: 1px solid #aaa;
    border-radius: 4px;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.7);
}

.entry-content h3 {
    font-size: 13px;
    font-weight: bold;
    margin: 16px 0 8px;
    padding: 4px 8px;
    background: linear-gradient(to bottom, #fafafa 0%, #eee 100%);
    border: 1px solid #ccc;
    border-radius: 3px;
    color: #333;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}

.entry-content p {
    margin-bottom: 12px;
}

.entry-content ul,
.entry-content ol {
    margin: 6px 0 12px 20px;
}

.entry-content ul {
    list-style: disc;
}

.entry-content ol {
    list-style: decimal;
}

.entry-content li {
    margin-bottom: 3px;
    font-size: 12px;
}

.entry-content blockquote {
    border-left: 3px solid #cc0000;
    padding: 8px 12px;
    margin: 10px 0;
    background: #fafafa;
    color: #555;
    font-size: 11px;
}

.entry-content img {
    border: 1px solid #ddd;
}

/* バンド詳細ボックス */
.band-detail-box {
    background: #fafafa;
    border: 1px solid #ddd;
    padding: 10px 12px;
    margin: 12px 0;
}

.band-links {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 6px;
}

.band-link {
    display: inline-block;
    padding: 2px 10px;
    font-size: 10px;
    font-weight: bold;
    text-decoration: none;
    border: 1px solid;
    color: #fff;
}

.band-link--official { background: #336699; border-color: #2a5577; }
.band-link--youtube { background: #cc0000; border-color: #aa0000; }
.band-link--spotify { background: #1db954; border-color: #1a9944; }

.band-link:hover {
    opacity: 0.85;
    color: #fff;
    text-decoration: none;
}

.recommend-song {
    font-size: 11px;
    color: #555;
}

/* 投稿ナビ */
.post-navigation {
    border-top: 1px solid #ddd;
    padding-top: 10px;
    margin-top: 10px;
}

.nav-links {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.nav-previous,
.nav-next {
    max-width: 48%;
    font-size: 11px;
}

.nav-next {
    text-align: right;
}

/* ページネーション */
.nav-links .page-numbers {
    display: inline-block;
    padding: 2px 8px;
    margin: 0 1px;
    border: 1px solid #ddd;
    font-size: 11px;
    text-decoration: none;
    background: #fff;
    color: #333;
}

.nav-links .page-numbers.current {
    background: linear-gradient(to bottom, #6cf 0%, #39f 45%, #28e 55%, #39f 100%);
    color: #fff;
    border-color: #28a;
    border-radius: 3px;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.3);
}

/* アーカイブ・ページタイトル（Aqua風） */
.archive-title,
.page-title {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    padding: 5px 12px;
    margin-bottom: 12px;
    background: linear-gradient(to bottom,
        #f0f0f0 0%,
        #e4e4e4 45%,
        #c8c8c8 50%,
        #d4d4d4 55%,
        #e0e0e0 100%
    );
    border: 1px solid #aaa;
    border-radius: 4px;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.7);
}

/* エントリータグ */
.entry-tags {
    font-size: 10px;
    color: #999;
    margin-top: 10px;
}

.entry-tags a {
    color: #cc0000;
}

/* ==========================================================================
   サイドバー
   ========================================================================== */
.site-sidebar {
    width: 220px;
    flex-shrink: 0;
    padding: 12px 10px;
    font-size: 11px;
    background: #fff;
    border-left: 1px solid #eee;
}

.sidebar-widget {
    margin-bottom: 15px;
}

/* Aqua風サイドバー見出し */
.widget-title {
    font-size: 11px;
    font-weight: bold;
    color: #333;
    padding: 4px 8px;
    margin-bottom: 0;
    background: linear-gradient(to bottom,
        #f0f0f0 0%,
        #e4e4e4 45%,
        #c8c8c8 50%,
        #d4d4d4 55%,
        #e0e0e0 100%
    );
    border: 1px solid #aaa;
    border-bottom: 1px solid #999;
    border-radius: 4px 4px 0 0;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.7);
}

/* 注目バンド */
.sidebar-band-list {
    border: 1px solid #eee;
    border-top: none;
    background: #fff;
}

.sidebar-band-item {
    border-bottom: 1px solid #eee;
}

.sidebar-band-item:last-child {
    border-bottom: none;
}

.sidebar-band-item a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 6px;
    text-decoration: none;
    color: #333;
}

.sidebar-band-item a:hover {
    background: #fafafa;
    color: #cc0000;
}

.sidebar-band-thumb img {
    width: 32px;
    height: 32px;
    object-fit: cover;
    border: 1px solid #ddd;
}

.sidebar-band-name {
    font-size: 11px;
    font-weight: bold;
    color: #333;
}

/* 新着ニュース */
.sidebar-recent-news .sidebar-news-list {
    border: 1px solid #eee;
    border-top: none;
    background: #fff;
}

.sidebar-news-item {
    display: flex;
    gap: 4px;
    align-items: baseline;
    font-size: 10px;
    padding: 3px 6px;
    border-bottom: 1px solid #eee;
}

.sidebar-news-item:last-child {
    border-bottom: none;
}

.sidebar-news-date {
    flex-shrink: 0;
    color: #999;
    font-size: 9px;
}

.sidebar-news-item a {
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-decoration: none;
    font-size: 10px;
}

.sidebar-news-item a:hover {
    color: #cc0000;
    text-decoration: underline;
}

/* ランキング */
.sidebar-ranking .sidebar-ranking-list {
    border: 1px solid #eee;
    border-top: none;
    background: #fff;
}

.sidebar-ranking-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 3px 6px;
    border-bottom: 1px solid #eee;
    font-size: 11px;
}

.sidebar-ranking-item:last-child {
    border-bottom: none;
}

.rank-number {
    display: inline-block;
    width: 18px;
    height: 18px;
    line-height: 18px;
    text-align: center;
    font-size: 10px;
    font-weight: bold;
    color: #fff;
    background: linear-gradient(to bottom, #bbb 0%, #888 45%, #777 55%, #999 100%);
    border: 1px solid #777;
    border-radius: 3px;
    flex-shrink: 0;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.3);
}

.sidebar-ranking-item.rank-1 .rank-number {
    background: linear-gradient(to bottom, #f66 0%, #c00 45%, #a00 55%, #c00 100%);
    border-color: #900;
}
.sidebar-ranking-item.rank-2 .rank-number {
    background: linear-gradient(to bottom, #fa6 0%, #c60 45%, #a50 55%, #c60 100%);
    border-color: #940;
}
.sidebar-ranking-item.rank-3 .rank-number {
    background: linear-gradient(to bottom, #fd6 0%, #ca0 45%, #a80 55%, #ca0 100%);
    border-color: #980;
}

.sidebar-ranking-item a {
    font-size: 11px;
    font-weight: bold;
    color: #333;
    text-decoration: none;
}

.sidebar-ranking-item a:hover {
    color: #cc0000;
    text-decoration: underline;
}

/* ==========================================================================
   サイドバー WordPress標準ウィジェット
   ========================================================================== */
.site-sidebar .widget {
    margin-bottom: 15px;
}

.site-sidebar .widget > h2,
.site-sidebar .widget > h3,
.site-sidebar .widgettitle {
    font-size: 11px;
    font-weight: bold;
    color: #333;
    padding: 4px 8px;
    margin-bottom: 0;
    background: linear-gradient(to bottom,
        #f0f0f0 0%, #e4e4e4 45%, #c8c8c8 50%, #d4d4d4 55%, #e0e0e0 100%
    );
    border: 1px solid #aaa;
    border-bottom: 1px solid #999;
    border-radius: 4px 4px 0 0;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.7);
}

.site-sidebar .widget ul {
    border: 1px solid #eee;
    background: #fff;
    margin: 0;
    padding: 0;
}

.site-sidebar .widget ul li {
    padding: 3px 8px;
    border-bottom: 1px solid #eee;
    font-size: 10px;
}

.site-sidebar .widget ul li:last-child {
    border-bottom: none;
}

.site-sidebar .widget ul li a {
    font-size: 10px;
    text-decoration: none;
}

.site-sidebar .widget ul li a:hover {
    color: #cc0000;
    text-decoration: underline;
}

.site-sidebar .widget_search .search-form {
    border: 1px solid #ddd;
    padding: 4px;
    background: #fff;
}

.site-sidebar .widget_search .search-field {
    width: 100%;
    background: #fff;
    color: #333;
    border: 1px solid #ccc;
    font-size: 11px;
    padding: 2px 4px;
}

.site-sidebar .wp-block-heading {
    font-size: 11px;
    font-weight: bold;
    color: #333;
    padding: 4px 8px;
    margin-bottom: 0;
    background: linear-gradient(to bottom,
        #f0f0f0 0%, #e4e4e4 45%, #c8c8c8 50%, #d4d4d4 55%, #e0e0e0 100%
    );
    border: 1px solid #aaa;
    border-bottom: 1px solid #999;
    border-radius: 4px 4px 0 0;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.7);
}

.site-sidebar .wp-block-latest-posts,
.site-sidebar .wp-block-latest-comments,
.site-sidebar .wp-block-archives-list,
.site-sidebar .wp-block-categories-list {
    border: 1px solid #eee;
    background: #fff;
    padding: 0 !important;
    margin: 0 0 15px;
}

.site-sidebar .wp-block-latest-posts li,
.site-sidebar .wp-block-latest-comments li,
.site-sidebar .wp-block-archives-list li,
.site-sidebar .wp-block-categories-list li {
    padding: 3px 8px !important;
    border-bottom: 1px solid #eee;
    font-size: 10px;
    margin: 0 !important;
}

.site-sidebar .wp-block-latest-posts li:last-child,
.site-sidebar .wp-block-latest-comments li:last-child,
.site-sidebar .wp-block-archives-list li:last-child,
.site-sidebar .wp-block-categories-list li:last-child {
    border-bottom: none;
}

/* ==========================================================================
   フッター
   ========================================================================== */
.site-footer {
    background: #333;
    color: #aaa;
    border-top: 2px solid #cc0000;
}

.footer-inner {
    padding: 12px 15px;
}

.footer-links {
    display: flex;
    gap: 0;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #555;
}

.footer-links-section {
    flex: 1;
    padding: 0 10px;
    border-right: 1px solid #555;
}

.footer-links-section:last-child {
    border-right: none;
}

.footer-links-section h4 {
    font-size: 11px;
    font-weight: bold;
    color: #cc0000;
    margin-bottom: 4px;
    padding-bottom: 2px;
    border-bottom: 1px solid #555;
}

.footer-links-section ul {
    font-size: 10px;
}

.footer-links-section li {
    margin-bottom: 2px;
}

.footer-links-section a {
    color: #bbb;
    text-decoration: none;
    font-size: 10px;
}

.footer-links-section a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
}

.copyright {
    font-size: 10px;
    color: #888;
    margin-bottom: 2px;
}

.footer-note {
    font-size: 10px;
    color: #999;
    line-height: 1.6;
    margin-top: 6px;
}

.footer-note a {
    color: #ccc;
    text-decoration: underline;
}

.footer-note a:hover {
    color: #fff;
}

/* ==========================================================================
   404・検索結果なし
   ========================================================================== */
.error-404,
.no-results {
    padding: 20px 0;
    text-align: center;
    background: #fff;
}

.error-404 .entry-title {
    font-size: 16px;
    color: #cc0000;
    background: none;
    border: none;
}

.error-404 .search-form {
    justify-content: center;
    margin: 12px 0;
}

.error-404-links {
    text-align: left;
    max-width: 250px;
    margin: 12px auto 0;
}

.error-404-links h3 {
    font-size: 12px;
    margin-bottom: 4px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 3px;
}

.error-404-links ul {
    list-style: disc;
    padding-left: 18px;
    font-size: 11px;
}

.error-404-links li {
    margin-bottom: 2px;
}

/* ==========================================================================
   レスポンシブ
   ========================================================================== */
@media screen and (max-width: 980px) {
    .site-wrapper {
        width: 100%;
        border: none;
    }

    .header-main {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .header-right {
        width: 100%;
    }

    .two-column {
        flex-direction: column;
    }

    .site-main {
        border-right: none;
    }

    .site-sidebar {
        width: 100%;
        border-left: none;
        border-top: 1px solid #eee;
    }

    .weekly-grid,
    .interview-grid,
    .feature-grid {
        flex-wrap: wrap;
    }

    .weekly-card,
    .interview-card,
    .feature-card {
        flex: 1 1 45%;
        min-width: 45%;
    }

    .band-card {
        width: 50%;
    }

    .band-card:nth-child(3n) {
        border-right: 1px solid #eee;
    }

    .band-card:nth-child(2n) {
        border-right: none;
    }

    .pickup-banner__link {
        flex-direction: column;
    }

    .pickup-banner__image {
        width: 100%;
    }

    .pickup-banner__image img {
        width: 100%;
        height: 160px;
    }

    .footer-links {
        flex-direction: column;
    }

    .footer-links-section {
        border-right: none;
        border-bottom: 1px solid #555;
        padding: 4px 0;
    }
}

@media screen and (max-width: 480px) {
    .weekly-card,
    .interview-card,
    .feature-card {
        flex: 1 1 100%;
        min-width: 100%;
        border-right: none;
    }

    .band-card {
        width: 100%;
        border-right: none;
    }

    .post-card {
        flex-direction: column;
    }

    .post-card__thumb {
        width: 100%;
    }

    .post-card__thumb img {
        width: 100%;
        height: 120px;
    }
}

/* ==========================================================================
   WordPress標準クラス対応
   ========================================================================== */
.alignleft {
    float: left;
    margin-right: 12px;
    margin-bottom: 6px;
}

.alignright {
    float: right;
    margin-left: 12px;
    margin-bottom: 6px;
}

.aligncenter {
    display: block;
    margin: 0 auto 12px;
}

.alignwide {
    margin-left: -15px;
    margin-right: -15px;
}

.alignfull {
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    max-width: 100vw;
    width: 100vw;
}

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    font-size: 10px;
    color: #999;
    text-align: center;
    padding: 2px 0;
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    word-wrap: normal;
}

.wp-block-table table {
    width: 100%;
    border-collapse: collapse;
    font-size: 11px;
}

.wp-block-table td,
.wp-block-table th {
    border: 1px solid #ddd;
    padding: 4px 8px;
}

.wp-block-table th {
    background: #f0f0f0;
    font-weight: bold;
}
