/*
Theme Name: FISTBUMP Corporate
Theme URI: https://fistbump.co.jp
Author: FISTBUMP
Description: Corporate site theme for FISTBUMP Inc.
Version: 3.3
License: GNU General Public License v2 or later
*/

body {
    margin: 0;
    padding: 0;
    font-family: 'Noto Sans JP', sans-serif;
    color: #333;
    background-color: #f9fafb;
}

/* 記事本文内のスタイル調整 */
.entry-content h2 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #2563eb;
    padding-bottom: 0.5rem;
}

.entry-content h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    border-left: 4px solid #2563eb;
    padding-left: 0.75rem;
}

.entry-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    margin: 1.5rem 0;
}

.entry-content ul {
    list-style-type: disc;
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

/* =========================================
   ページネーション (Pagination) スタイル
   ========================================= */
/* スクリーンリーダー用のテキストを非表示 */
.pagination h2.screen-reader-text {
    display: none;
}

/* ナビゲーション全体のレイアウト */
.pagination .nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem; /* ボタン間の余白 */
}

/* 各ページ番号ボタンの共通スタイル */
.pagination .page-numbers {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 2.5rem;  /* 幅 */
    height: 2.5rem;     /* 高さ */
    padding: 0 0.75rem;
    background-color: #ffffff;
    border: 1px solid #e5e7eb; /* 薄いグレーの枠線 */
    border-radius: 0.5rem;     /* 角丸 */
    color: #374151;            /* 文字色 */
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    font-size: 0.95rem;
}

/* ホバー時のスタイル（現在地以外） */
.pagination .page-numbers:not(.current):not(.dots):hover {
    background-color: #eff6ff; /* 薄い青背景 */
    color: #2563eb;            /* 青文字 */
    border-color: #2563eb;     /* 青枠線 */
}

/* 現在のページ（アクティブ）のスタイル */
.pagination .page-numbers.current {
    background-color: #2563eb; /* メインカラーの青背景 */
    color: #ffffff;            /* 白文字 */
    border-color: #2563eb;
    pointer-events: none;      /* クリック不可にする */
}

/* 「...」リーダーのスタイル */
.pagination .page-numbers.dots {
    border: none;
    background: transparent;
    color: #9ca3af;
}

/* 前へ・次へ矢印の調整 */
.pagination .prev,
.pagination .next {
    font-family: "Font Awesome 5 Free"; /* FontAwesomeアイコン用 */
}