/* 基本設定 */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Noto Sans JP', sans-serif;
    background-color: #9fc7d8; /* ご指定の背景色 */
    color: #333;
    display: flex;
    justify-content: center;
    align-items: flex-start; /* コンテンツを少し上に配置 */
    min-height: 100vh;
    padding-top: 5vh; /* 上の余白 */
    box-sizing: border-box;
}

/* 全体を囲むコンテナ */
.container {
    width: 100%;
    max-width: 600px;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
}

/* ヘッダー */
.site-header {
    background-color: #6a8a93; /* ご指定のボタン色 */
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.site-header h1 {
    margin: 0;
    font-size: 1.2em;
    font-weight: normal;
    letter-spacing: 2px;
}

.site-header p {
    margin: 5px 0 0;
    font-size: 1.5em;
    font-weight: 700;
}

/* リンクボタンのリスト */
.link-list {
    display: flex;
    flex-direction: column;
    gap: 15px; /* ボタン間の余白 */
}

/* リンクボタンのスタイル */
.link-button {
    display: block;
    background-color: #6a8a93; /* ご指定のボタン色 */
    color: white;
    text-decoration: none;
    padding: 18px 20px;
    border-radius: 8px;
    font-size: 1em;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease-in-out;
}

/* ボタンにカーソルを合わせた時の効果 */
.link-button:hover {
    background-color: #5a7880; /* 少し濃い色に変更 */
    transform: translateY(-3px); /* 少し上に動く */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* スマートフォン向けの調整 */
@media (max-width: 480px) {
    body {
        padding-top: 3vh;
    }
    .container {
        padding: 15px;
    }
    .link-button {
        padding: 16px;
        font-size: 0.95em;
    }
}