
.cutive-regular {
  font-family: "Cutive", serif;
  font-weight: 400;
  font-style: normal;
}


/* styles.css */
body {
    margin: 5px;
    padding: 10px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.top-wrapper {
    width: 100%;
    margin-top: 120px;
    margin-bottom: 20px;
    padding-left: 10px;
}

.header-page {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 10px 10px;
    background-color: rgba(33, 154, 178, 0.9);
    height:100px;
    position: fixed;
    top:0;
    left:0;
    right:0;
    z-index: 10;
}

.header-logo {
    font-size: 26px;
    color: rgba(144, 236, 230, 0.8);
    letter-spacing: 1px;
    text-shadow: 3px 3px 3px #232222;
    white-space: nowrap;
}

.header-logo span {
    color:rgb(49, 168, 212, 0.8);
}

.header-list {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Header list item styling */
.header-list li {
    font-size: 16px;
    color: white;
    padding: 10px;
    flex: 0 0 12.5%; /* Each item takes 12.5% width */
    text-align: center; /* Center text */
    cursor: pointer; /* Change cursor to pointer */
    transition: color 0.3s, font-weight 0.3s; /* Smooth transition for color and font-weight */
}

.header-list li:hover {
    color: rgba(144, 236, 230, 0.8); /* Change text color on hover */
    font-weight: bold; /* Change text to bold on hover */
}

/* リンクのデフォルトスタイルをリセット */
.header-list a {
    color: inherit;
    text-decoration: none;
}

/* リンクをホバーしたときのスタイル */
.header-list a:hover {
    text-decoration: underline;
}

@media (max-width: 800px) {
    .header-page {
        flex-wrap: wrap;
    }

    .header-logo {
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }

    .header-list {
        width: 100%;
        justify-content: space-around;
    }

    .header-list li {
        margin: 5px 0;
        width: 100%;
        text-align: center;
    }
}

@media (min-width: 800px) {
    .header-logo {
        flex: 0 0 50%; /* ロゴの幅を50%に設定 */
    }

    .header-list {
        flex: 0 0 50%; /* リストの幅を50%に設定 */
        justify-content: space-between; /* 各リストアイテムが均等にスペースを占有するように調整 */
    }

    .header-list li {
        flex: 0 0 12.5%; /* 各リストアイテムの幅を12.5%に設定 */
    }
}


table {
    border-collapse: collapse;
    width: 100%;
}
th, td {
    text-align: left;
    padding: 15px;
    font-size: 14px;
}
th {
    background-color: #b0e2e9;
    font-weight: bold;
}
tr:nth-child(even) {
    background-color: #f9f9f9;
}

#map_canvas {
    width: 100%; 
    height: 90%;
}
