@charset "UTF-8";

#loginUser {
    text-align: right;
}

#menuForm {
    text-align: center;
}


header,
footer {
    background-color: #b94047;
    margin: 0;
    box-sizing: border-box;
}

header {
    height: 4rem;
}

footer {
    height: 2.5rem;
}

main {
    min-height: calc(100vh - 6.5rem);
    height: auto;
    margin: 0;
    padding: 1em;
    box-sizing: border-box;
}

/*
 リンクをボタン風にするスタイル
 */
a.buttonStyle {
    display: inline-block;
    text-align: center;
    font-size: 100%;
    min-width: 4em;
    padding: 0.3em 1em;
    border-radius: 0.7em;
    border-width: 0;
    text-decoration: none;
    color: #FFF;
    background-image: -webkit-linear-gradient(45deg, #22bb55 0%, #33cc66 100%);
    background-image: linear-gradient(45deg, #22bb55 0%, #33cc66 100%);
    transition: .4s;
    cursor: pointer;
    height: 1.5em;
    line-height: 1.5em;
    margin: .5em .5em;
}

a.buttonStyle:hover {
    background-image: -webkit-linear-gradient(45deg, #1f9c48 0%, #1f9c48 100%);
    background-image: linear-gradient(45deg, #1f9c48 0%, #1f9c48 100%);
    text-decoration: none;
}

a.buttonStyle:disabled {
    color: #999999;
    cursor: not-allowed;
    background-image: -webkit-linear-gradient(45deg, #777777 0%, #777777 100%);
    background-image: linear-gradient(45deg, #777777 0%, #777777 100%);
}

a.buttonStyle:focus {
    outline: none;
}
