button {
    padding: 10px;
    margin: 5px;
    border-radius: 10px;
    box-shadow: 0px 0px 4px gray;
    background: white;
    color: black;
    cursor: pointer;
    font-family: "Noto Sans JP", sanfs-serif;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 0;
}

.button-horizontal-expand {
    width: calc(100% - 10px);
}

a {
    overflow: visible;
    color: black;
    text-decoration: none;
}

#view-container {
    background: #E6E6E6;
    height: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

#view-header {
    top: 0px;
    left: 0px;
    position: fixed;
    z-index: 100;
    width: 100%;
    background: #FFFFFF;
    border-radius: 0px 0px 10px 10px;
    box-shadow: 0px 0px 4px gray;
    opacity: 90%;
}

#view-header-container {
    margin: 10px 15px;
}

#view-header-logo {
    height: 40px;
    border-radius: 20px;
}

#view-header-top {
    height: 40px;
}

#view-header-body {
    height: 0px;
    overflow: hidden;
}

#view-header-button-container {
    height: 40px;
    gap: 0px 0px;
}

.view-header-button {
    font-size: 30px;
    padding: 0;
    margin: 0;
    overflow: visible;
    color: black;
    text-decoration: none;
    width: 40px;
    height: 40px;
}

.view-header-button img {
    padding: 5px;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    object-fit: contain;
    border-radius: 50%;
}

.view-header-button-icon {
    font-size: 30px;
    line-height: 30px;
}

#view-body {
    margin-top: 75px;
    min-height: calc(100vh - 75px - 30px);
    padding: 15px 20px;
    background: #FFFFFF;
    border-radius: 10px 10px 0px 0px;
    box-shadow: 0px 0px 4px gray;
}

.view-body-center-icon {
    font-size: 100px;
}

.view-body-center-label {
    font-size: 20px;
}

.loader {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: solid 4px;
    border-color: #000000 #00000010 #00000010;
    position: relative;
    animation-name: spin;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.dialog-background {
    top: 0px;
    left: 0px;
    position: fixed;
    z-index: 1000;
    opacity: 0.75;
    background: gray;
    height: 100vh;
    width: 100vw;
}

.dialog-container {
    top: 0px;
    left: 0px;
    position: fixed;
    z-index: 1001;
    height: 100vh;
    width: 100vw;
}

.dialog {
    opacity: 1;
    background: white;
    margin-top: auto;
    margin-bottom: auto;
    margin-left: auto;
    margin-right: auto;
    max-width: calc(100% - 40px);
}

.dialog-button-critical {
    background: red;
    color: white;
    margin-top: 5px;
    margin-bottom: 5px;
}

.dialog-icon {
    font-size: 48px;
}

.info-error {
    width: 100%;
    background: pink;
    padding: 10px;
    border-radius: 10px;
    color: gray;
    font-size: 16px;
    box-shadow: 0px 0px 4px gray;
    margin-top: 10px;
    margin-bottom: 10px;
}

.info-info {
    width: 100%;
    background: lightgreen;
    padding: 10px;
    border-radius: 10px;
    color: gray;
    font-size: 16px;
    box-shadow: 0px 0px 4px gray;
    margin-top: 10px;
    margin-bottom: 10px;
}

.animated-horizontal-list {
    display: flex;
}

.animated-horizontal-list-item {
    position: relative;
    margin-right: 10px;
}