* {
    color: #00284c;
}

h1 {
    letter-spacing: 2px;
}

body {
    background-color: #f8f9ff;
    padding-bottom: 30px;
    margin: 0 8%;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: 1px solid #768a9b;
    background-color: #f8f9ff;
    padding-top: 15px;
    padding-bottom: 5px;
}

.left {
    margin-left: 5%;
    display: flex;
    align-items: flex-end;
    gap: 15px;
}

.left form {
    margin-bottom: 0;
}

.search-button {
    background-color: #f8f9ff;
    border: 1px solid #00284c;
    border-radius: 5px;
}

.right {
    display: flex;
    gap: 0 20px;
    margin-right: 5%;
    margin-bottom: 0;
    font-family: serif;
}

.page-name {
    font-size: 28px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 2px;
    font-family: serif;
}

.page-name a {
    text-decoration: none;
}

.return-button button{
    display: inline-block;         /* インライン要素に見せかける */
    padding: 10px 15px;           /* 内側の余白 */
    background-color: transparent; /* 背景色を透明にする */
    text-decoration: underline;   /* 下線を追加 */
    border: none;                 /* 枠線を消す */
    cursor: pointer;              /* ポインターに変更 */
    font-size: inherit;           /* フォントサイズを継承 */
}

.return-button button:hover {
    color: #828ca2;
}

.err {
    color: rgb(207, 50, 50);
}

