body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	background: linear-gradient(135deg, #90EE90 0%, #87CEFA 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* 100vhに変更 */
    margin: 0;
    padding-top: 20px; /* 上部の切れを防ぐために追加 */
}

.container {
    background: #fff;
    padding: 40px 30px; /* 上部に余裕を持たせる */
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
}

h1 {
    color: #333;
    margin-bottom: 20px;
}

.links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.link-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s, box-shadow 0.3s;
    width: 200px;
    overflow: hidden;
}

.link-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.link-content {
    padding: 20px;
}

h2 {
    margin: 0;
    font-size: 20px;
    color: #007BFF;
}

p {
    margin: 10px 0 0;
    color: #666;
    font-size: 14px;
}

/* スマートフォン向けのメディアクエリ */
@media only screen and (max-width: 600px) {
    .container {
        padding: 30px 20px; /* スマホ用のパディングを調整 */
    }
}
