/* =================================
   フュギュアレビュー CSS
   モダンデザイン - 画像重視
================================= */

/* カスタムプロパティ（CSS変数） */
:root {
    /* モダンカラーパレット */
    --primary-color: #2563eb;          /* ブルー */
    --primary-light: #dbeafe;          /* 薄ブルー */
    --primary-dark: #1d4ed8;           /* 濃いブルー */
    
    --secondary-color: #7c3aed;        /* パープル */
    --secondary-light: #ede9fe;        /* 薄パープル */
    --secondary-dark: #5b21b6;         /* 濃いパープル */
    
    --accent-color: #f59e0b;           /* オレンジ */
    --accent-light: #fef3c7;          /* 薄オレンジ */
    --accent-dark: #d97706;            /* 濃いオレンジ */
    
    --success-color: #10b981;          /* グリーン */
    --danger-color: #ef4444;           /* レッド */
    
    --text-color: #1f2937;             /* ダークグレー */
    --text-light: #6b7280;             /* グレー */
    --text-muted: #9ca3af;             /* 薄いグレー */
    
    --white: #ffffff;
    --light-bg: #f9fafb;
    --lighter-bg: #f3f4f6;
    --border-color: #e5e7eb;
    --dark-border: #d1d5db;
    
    /* グラデーション */
    --gradient-primary: linear-gradient(135deg, #2563eb, #7c3aed);
    --gradient-secondary: linear-gradient(135deg, #7c3aed, #f59e0b);
    --gradient-warm: linear-gradient(135deg, #f59e0b, #ef4444);
    --gradient-cool: linear-gradient(135deg, #10b981, #2563eb);
    
    /* フォント */
    --font-main: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-base: 16px;
    
    /* シャドウ */
    --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* ボーダーラディウス */
    --radius-xs: 4px;
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 20px;
    --radius-full: 9999px;
}

/* リセット・基本設定 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--text-color);
    background: var(--white);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    margin: 0 auto;
}

img{
    vertical-align: bottom;
}

/* =================================
   ヘッダースタイル
================================= */

.header {
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    /* position: sticky; */
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.95);
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 20px;
    font-size: 14px;
    background: var(--light-bg);
    border-bottom: 1px solid var(--border-color);
}

.site-tagline {
    color: var(--text-light);
    font-weight: 500;
}

.header-center{
    margin: 0 0 0 auto;
}

.btn-review {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
}

.btn-review:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.main-header {
    display: flex;
    align-items: center;
    padding: 16px 20px;
}

/* ロゴ */
.logo a {
    text-decoration: none;
    color: var(--text-color);
}

.logo h1 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 2px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-sub {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* 検索フォーム */
.search-form {
    flex: 1;
    max-width: 600px;
}

.search-box {
    display: flex;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
}

.search-box:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.search-box input {
    flex: 1;
    padding: 14px 16px;
    border: none;
    font-size: 16px;
    outline: none;
    background: transparent;
}

.search-box input::placeholder {
    color: var(--text-muted);
}

.search-category {
    padding: 14px 16px;
    border: none;
    background: var(--light-bg);
    font-size: 14px;
    min-width: 140px;
    color: var(--text-color);
    border-left: 1px solid var(--border-color);
}

.search-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 14px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.search-btn:hover {
    background: var(--primary-dark);
}

/* ナビゲーション */
.main-nav {
    border-top: 1px solid var(--border-color);
    background: var(--light-bg);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 20px;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: var(--radius-md);
    margin: 4px;
}

.nav-link:hover {
    background: var(--white);
    color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

/* ドロップダウンメニュー */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    overflow: hidden;
    border: 1px solid var(--border-color);
    margin-top: 8px;
}

.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.dropdown-link:hover {
    background: var(--light-bg);
    color: var(--primary-color);
}

.category-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: var(--radius-sm);
    font-size: 12px;
}

/* モバイルメニューボタン - デフォルトで非表示 */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 20px;
    cursor: pointer;
    padding: 8px;
}

/* モバイルメニュー - デフォルトで非表示 */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100vh;
    background: var(--white);
    transition: right 0.3s ease;
    z-index: 2000;
    border-left: 1px solid var(--border-color);
    box-shadow: var(--shadow-xl);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-content {
    padding: 24px;
}

/* モバイル検索フォーム */
.mobile-search {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.mobile-search form {
    display: flex;
    gap: 10px;
}

.mobile-search input {
    flex: 1;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
}

.mobile-search button {
    padding: 10px 15px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
}

/* モバイルナビゲーションリスト */
.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-list li {
    margin-bottom: 10px;
}

.mobile-nav-list a {
    display: block;
    padding: 12px 0;
    color: var(--text-color);
    text-decoration: none;
    border-bottom: 1px solid var(--border-color);
    transition: color 0.3s ease;
}

.mobile-nav-list a:hover {
    color: var(--primary-color);
}

/* モバイルカテゴリセクション */
.mobile-categories {
    margin-top: 20px;
}

.mobile-category-title {
    display: block;
    font-weight: bold;
    padding: 12px 0;
    color: var(--text-color);
    border-bottom: 2px solid var(--primary-color);
    margin-bottom: 10px;
}

.mobile-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
    padding-left: 20px;
}

.mobile-category-list li {
    margin-bottom: 8px;
}

.mobile-category-list a {
    display: block;
    padding: 8px 0;
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border-color);
}

.mobile-category-list a:hover {
    color: var(--primary-color);
}

/* モバイルメニューオーバーレイ */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1999;
}

.mobile-menu-overlay.active {
    display: block;
}

/* =================================
   メインコンテンツ
================================= */
.main-column{
    padding: 0 20px;
}


.main-content {
    min-height: calc(100vh - 200px);
    /* padding: 32px 0; */
}

/* =================================
   フッタースタイル
================================= */

.footer {
    background: var(--text-color);
    color: var(--white);
    margin-top: 80px;
}

.footer-top {
    padding: 60px 20px 40px 20px;
}

.footer-sections {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
}

.footer-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-section-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--white);
}

.footer-description {
    line-height: 1.7;
    margin-bottom: 24px;
    opacity: 0.8;
    font-size: 16px;
}

.footer-stats {
    display: flex;
    gap: 24px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 12px;
    border-radius: var(--radius-md);
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--white);
    transform: translateX(4px);
}

/* SNSリンク */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--white);
    transition: all 0.3s ease;
    opacity: 0.8;
}

.social-link:hover {
    opacity: 1;
    transform: translateX(4px);
}

.social-link.twitter:hover { background: #1da1f2; }
.social-link.youtube:hover { background: #ff0000; }
.social-link.instagram:hover { background: #e4405f; }
.social-link.rss:hover { background: var(--accent-color); }

.footer-notice {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: var(--radius-lg);
    margin-top: 24px;
}

.footer-notice h5 {
    margin-bottom: 8px;
    font-weight: 600;
}

/* フッターボトム */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 24px 20px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.legal-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.legal-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    font-size: 14px;
    transition: opacity 0.3s ease;
}

.legal-links a:hover {
    opacity: 1;
}

.copyright {
    text-align: right;
    font-size: 14px;
    opacity: 0.8;
}

.powered-by {
    font-size: 12px;
    margin-top: 4px;
    opacity: 0.6;
}

/* トップに戻るボタン */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-full);
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: var(--shadow-lg);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* =================================
   画像重視のカードデザイン
================================= */

/* ヒーローセクション */
.hero {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 80px 0;
    margin-bottom: 48px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 24px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-description {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 40px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 24px;
    border-radius: var(--radius-xl);
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
    font-weight: 500;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
}

/* メインレイアウト */
.main-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
}

/* セクション */
.section {
    margin-bottom: 64px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.section-link:hover {
    color: var(--primary-dark);
    transform: translateX(4px);
}

/* 画像重視のグリッド */
.review-grid, .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

/* 画像重視のカードデザイン */
.review-card, .product-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid var(--border-color);
}

.review-card:hover, .product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

/* 画像を大きく目立たせる */
.review-image, .product-image {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: var(--light-bg);
}

.review-image img, .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.review-card:hover .review-image img,
.product-card:hover .product-image img {
    transform: scale(1.05);
}

.no-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--light-bg), var(--lighter-bg));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 32px;
}

/* バッジとオーバーレイ */
.rating-badge, .rating-overlay {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(0, 0, 0, 0.8);
    color: var(--white);
    padding: 8px 12px;
    border-radius: var(--radius-lg);
    font-size: 14px;
    font-weight: 600;
    backdrop-filter: blur(4px);
}

.rating-stars .fa-star.active {
    color: var(--accent-color);
}

.rating-stars .fa-star:not(.active) {
    color: rgba(255, 255, 255, 0.4);
}

.new-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--gradient-warm);
    color: var(--white);
    padding: 6px 12px;
    border-radius: var(--radius-lg);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.avg-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 4px;
}

.review-count {
    font-size: 12px;
    opacity: 0.8;
}

/* カードコンテンツ */
.review-content, .product-info {
    padding: 24px;
}

.category-tag {
    background: var(--primary-light);
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-title, .review-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-color);
    line-height: 1.4;
}

.manufacturer {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 8px;
    font-weight: 500;
}

.price {
    font-size: 16px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 8px;
}

.review-excerpt {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.review-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--text-muted);
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.reviewer {
    font-weight: 600;
    color: var(--text-color);
}

.review-link, .product-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* 空状態 */
.empty-state {
    text-align: center;
    padding: 80px 32px;
    color: var(--text-light);
    background: var(--light-bg);
    border-radius: var(--radius-2xl);
    border: 2px dashed var(--border-color);
}

.empty-state i {
    margin-bottom: 24px;
    color: var(--text-muted);
}

.empty-state h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--text-color);
    font-weight: 600;
}

.empty-state p {
    margin-bottom: 32px;
    font-size: 16px;
}

/* =================================
   ボタンスタイル
================================= */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* =================================
   レスポンシブデザイン
================================= */

@media (max-width: 1024px) {
    .main-layout {
        grid-template-columns: 1fr;
    }
    
    .footer-sections {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .main-header {
        flex-direction: column;
        padding: 16px 20px;
    }
    
    .search-form {
        width: 100%;
        max-width: none;
    }

    /* モバイルメニューボタンを表示 */
    .mobile-menu-btn {
        display: block !important;
    }
    
    /* メインナビゲーションを非表示 */
    .main-nav {
        display: none !important;
    }
    
    /* モバイルメニューを有効化 */
    .mobile-menu {
        display: block !important;
    }
    
    .nav-list {
        display: none;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .review-grid, .product-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .footer-sections {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .legal-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 24px;
    }
    
    .search-box {
        flex-direction: column;
    }
    
    .search-category {
        min-width: auto;
        border-left: none;
        border-top: 1px solid var(--border-color);
    }
    
    .top-bar {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        padding: 12px 20px;
    }
    
    .review-image, .product-image {
        height: 200px;
    }
    
    .review-content, .product-info {
        padding: 20px;
    }
}

/* =================================
   ユーティリティクラス
================================= */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.hidden { display: none; }
.block { display: block; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }

.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

.w-full { width: 100%; }
.h-full { height: 100%; }

.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }

.text-sm { font-size: 14px; }
.text-base { font-size: 16px; }
.text-lg { font-size: 18px; }
.text-xl { font-size: 20px; }
.text-2xl { font-size: 24px; }

.rounded { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-full { border-radius: var(--radius-full); }

.shadow { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }

.border { border: 1px solid var(--border-color); }
.border-t { border-top: 1px solid var(--border-color); }
.border-b { border-bottom: 1px solid var(--border-color); }

.bg-white { background-color: var(--white); }
.bg-light { background-color: var(--light-bg); }
.bg-primary { background-color: var(--primary-color); }

.text-primary { color: var(--primary-color); }
.text-secondary { color: var(--secondary-color); }
.text-muted { color: var(--text-muted); }
.text-light { color: var(--text-light); }

.opacity-50 { opacity: 0.5; }
.opacity-75 { opacity: 0.75; }

.transition { transition: all 0.3s ease; }

.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:shadow-lg:hover { box-shadow: var(--shadow-lg); }

/* アニメーション */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.animate-fadeIn {
    animation: fadeIn 0.5s ease-out;
}

.animate-slideIn {
    animation: slideIn 0.5s ease-out;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

/* ローディング */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid var(--border-color);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* スクロールバー */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: var(--radius-sm);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}