@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP");
body {
    font-family: "Noto Sans JP", sans-serif;
    width: 90%;
    margin: 20px auto;
}

h2{
    margin: 0;
    font-size: 25px;
}

h3{
    font-size: 23px;
}

/*ボタン共通設定*/
a{
    text-decoration: none;
}

*[class*="button-blue"]{
    color: #fff;
    background-color: #00B0F0;
    border: 2px solid #156082;
}

*[class*="button-red"]{
    color: #fff;
    background-color: red;
    border: 2px solid #80350E;
}

*[class*="button-navy"]{
    color: #fff;
    background-color: #0070C0;
    border: 2px solid #0b3446;
}

*[class*="button-white"]{
    color: #000;
    background-color: #fff;
    border: 2px solid #000;
}

*[class*="button-w-blue"]{
    color: #0070C0;
    background-color: #fff;
    border: 2px solid #0070C0;
}

*[class*="button-w-red"]{
    color: red;
    background-color: #fff;
    border: 2px solid red;
}

/*テーブル共通設定*/
table{
    border-collapse: collapse;
    border-color: #156082;
    width: 100%;
    font-size: 19px;
}

tr[class*="table-heading"]{
    background-color: #00B0F0;
    color: #fff;
    font-weight: bold;
}
table th,
table td{
    padding: 5px 10px;
}

tr[class*="table-data"]{
    background-color: #ecfaff;
}

@media (max-width: 880px) {
    table th,
    table td{
        padding: 5px 5px;
    }
}

/*ページ上部*/
.page-top-area{
    display: flex;
    flex-wrap: wrap;
}

.page-top-area .page-title{
    width: 50%;
}

.page-top-area .top-buttons{
    width: 50%;
    text-align: right;
}

.top-buttons a{
    text-align: center;
}

/*ログイン画面*/
.login{
    width: 80%;
    margin: 200px auto;
}

.login-pass{
    width: 40%;
    height: 40px;
    border: 1px solid #000;
    border-radius: 10px;
    font-size: 16px;
}

.login-button-blue{
    width: 120px;
    padding: 10px 0;
    font-size: 16px;
    font-weight: bold;
}

@media (max-width: 880px) {
    .page-top-area .page-title,
    .page-top-area .top-buttons{
        width: 100%;
    }

    .login{
        width: 100%;
        margin: 200px auto;
    }
    
    .login-pass{
        width: 50%;
        height: 40px;
        border: 1px solid #000;
        border-radius: 10px;
        font-size: 16px;
    }

    .login-area .input-datas-label{
        width: 35%;
    }
}

/*フォーム設定*/
.form-button-area{
    margin: 100px 0;
    text-align: end;
}