/**************************/
/* ヘッダー */
/**************************/

/*----------ヘッダー----------*/
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header a {
    text-decoration: none;
    font-size: 24px;
}

.x-link img:hover {
    opacity: 0.7;
}

/*----------管理ナビ----------*/
.admin-nav {
    display: flex;
    align-items: center;
}

.admin-nav form {
    margin-left: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

/*----------更新情報----------*/

.update-info {
    margin: 10px 0 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #fafafa;
}

.update-info summary {
    padding: 8px 12px;
    font-weight: bold;
}

.update-latest {
    margin-left: 10px;
    font-weight: normal;
    color: #555;
}

.update-list {
    padding: 0 12px 10px;
    max-height: 150px;
    overflow-y: auto;
}

.update-item {
    display: flex;
    gap: 15px;
    margin-top: 5px;
    font-size: 0.9em;
}

.update-date {
    color: #777;
    white-space: nowrap;
}