@charset "utf-8";

/* ベースレイアウト */
.main {
    width: 100%;
    max-width: 900px; /* 画像がないので少し幅を狭めて読みやすく */
    margin: 0 auto;
    padding: 40px 20px;
    box-sizing: border-box;
    font-family: "Helvetica Neue", Arial, sans-serif;
}

/* タイトル */
h1 {
    font-size: 24px;
    color: #333;
    border-bottom: 2px solid #333;
    padding-bottom: 10px;
    margin-bottom: 40px;
    text-align: center;
}

/* ボタン配置エリア（グリッド） */
.db-nav {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* 幅に応じて横並び・縦並び自動調整 */
    gap: 20px;
    margin-bottom: 40px;
}

/* 大きなボタン（カード）のデザイン */
.db-button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 160px; /* 高さを確保して押しやすく */
    background-color: #fff;
    border: 2px solid #ddd;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    padding: 20px;
}

/* ボタンのホバー効果 */
.db-button:hover {
    background-color: #f9f9f9;
    border-color: #333;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* ボタン内のメインテキスト */
.db-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
    display: block;
}

/* ボタン内のサブテキスト（補足） */
.db-desc {
    font-size: 14px;
    color: #666;
}

/* 色分け（アクセント） */
.horse-db { border-top: 4px solid #2ecc71; } /* 緑系 */
.jockey-db { border-top: 4px solid #3498db; } /* 青系 */


/* 旧リンク（小さく） */
.old-link-area {
    text-align: center;
    margin-top: 20px;
}

.old-link {
    font-size: 13px;
    color: #888;
    text-decoration: underline;
}

.old-link:hover {
    color: #555;
}