/* 全体のスタイル */
body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    color: #333;
    margin: 0;
    padding: 0;
}

/* コンテナのスタイル */
.container {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* ヘッダーのスタイル */
header {
    text-align: center;
    margin-bottom: 20px;
}

header h1 {
    margin: 0;
    font-size: 2em;
    color: #4a4a4a;
}

header p {
    font-size: 1.2em;
    color: #777;
}

/* セクションのスタイル */
section {
    margin-bottom: 20px;
}

section h2 {
    font-size: 1.5em;
    border-bottom: 2px solid #4a90e2;
    padding-bottom: 5px;
    color: #4a4a4a;
}

.links h3 {
    font-size: 1.3em;
    color: #4a4a4a;
    margin-top: 20px;
}

/* カードのスタイル */
.card {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
    margin: 10px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.card a {
    text-decoration: none;
    color: #4a90e2;
    font-size: 1.2em;
    display: flex;
    align-items: center;
}

/* アイコンのスタイル */
.icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

/* フッターのスタイル */
footer {
    text-align: center;
    font-size: 0.8em;
    color: #777;
    margin-top: 20px;
}

/* レスポンシブ対応 */
@media (max-width: 600px) {
    header h1 {
        font-size: 1.5em;
    }

    header p, section h2 {
        font-size: 1.2em;
    }

    .card a {
        font-size: 1em;
    }
}
