/* ==========================================================================
   基本スタイル（admin/shop共通）
   ========================================================================== */

/* 全要素にフォントファミリーを適用 */
* {
    font-family: var(--font-family);
}

/* h1タイトル */
h1 {
    color: var(--primary-color);
    font-family: var(--font-family);
    font-size: var(--font-size-xxl);
    font-weight: var(--font-weight-bold);
}

/* レイアウト・コンテナ */
.container {
    max-width: var(--container-max-width);
    margin-top: 30px;
    margin-bottom: 30px;
}

/* ページネーション */
.page-item {
    height: 40px;
    margin-left: var(--border-radius-small);
    text-align: center;
    width: 40px;
}

.page-item .page-link {
    border: var(--border-color) 1px solid;
    border-radius: var(--border-radius-small);
    color: #818181;
    display: block;
    height: 100%;
    line-height: 40px;
    padding: 0;
    width: 100%;
}

.page-item.active .page-link {
    background: var(--primary-color);
}

/* リンク */
.detail-link {
    color: var(--link-color);
    font-weight: var(--font-weight-bold);
    text-decoration: underline;
    cursor: pointer;
}

/* ==========================================================================
   ユーティリティクラス
   ========================================================================== */
/* 最大幅 */
.max-w-1200 {
    max-width: 1200px;
}

.max-w-15em {
    max-width: 15em;
}

/* インライン幅 */
.w-5em {
    width: 5em;
}

/* テキスト色 */
.text-black {
    color: var(--text-black);
}
