/* 全体設定 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Yu Gothic", sans-serif;
    background-color: #f4f4f4;
    line-height: 1.6;
}

/* ヘッダー */
header {
    background-color: #0067c0;
    color: white;
    text-align: center;
    padding: 20px;
}

header h1 {
    margin-bottom: 10px;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
}

nav a:hover {
    text-decoration: underline;
}

/* メイン */
main {
    width: 90%;
    max-width: 1000px;
    margin: 30px auto;
}

/* セクション */
section {
    background: white;
    padding: 25px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    font-size: 150%;
}

section h2 {
    color: #004080;
    margin-bottom: 15px;
}

/* 画像 */
img {
    width: 100%;
    border-radius: 8px;
    margin-top: 10px;
}

.gallery {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.gallery img {
    width: calc(50% - 10px);
}

.kai {
    width: 20%;
}

/* フッター */
footer {
    background-color: #004080;
    color: white;
    text-align: center;
    padding: 15px;
}