/*
    memolead-motors stylesheet
    @copyright  Ishimaru Co.,LTD.
    @version    1.0.0
    @create     2023/09/15
    @author     a.kawamoto

    全体共通デザイン
*/

/* 共通 */
body {
    color: #000;
    font-family:'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;
    padding: 0;
    margin: 0;
    font-size: 15px;
    background-color: #E6E6E6;
}
main{
    width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

/* ヘッダー */
header {
    width: 100%;
    margin: 0;
    padding: 0;
    background-color: #A9A9A9;
}

.header_main {
    width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.header_left {
    padding: 12.5px;
    margin: 0;
    font-size: 25px;
    font-weight: bold;
}
.header_left a {
    color: #1400C6;
    text-decoration: none;
}

.header_right {
    display: flex;
    margin: 0;
}

.header_logout {
    margin-left: 20px;
}
.header_logout p {
    width: fit-content;
    padding: 5px;
    margin: 15px 0;
    background-color: #F0F0F0;
    border: solid 1px #808080;
    border-radius: 10px;
}
.header_logout p:hover {
    background-color: #C0C0C0;
}
.header_logout a {
    text-decoration: none;
    color: #333;
}

/* メインコンテンツ */
.contents {
    width: 1000px;
    display: block;
    justify-content: center;
}
.page_title {
    text-align: center;
    font-size: 25px;
    font-weight: bold;
}

#select button{
    font-size: 30px;
}

h2 {
    text-align: center;
    margin: 0;
    color: #808080;
    font-size: 20px;
}

/* フッター */