@charset "utf-8";

html,
body {
    height: 100%;
}
/******************************
 * ログイン画面 
 ******************************/
body#login {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    background: linear-gradient(#FFFFFF, #BEBDBD);
    line-height: 1.4em;
}
#login .logo {
    margin-bottom: 25px;
    background-image: url('../images/logo.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    margin: auto;
    height: 38px;
    width: 227px;
}
.login_box {
    position: absolute;  /*body要素に対して絶対配置*/
    top: 40%;  /*上端を中央に*/
    left: 50%;  /*左端を中央に*/
    max-width: 600px;  /*横幅*/
    width: 100%;
    height: 400px;
    background-color: #FFFFFF;
    box-shadow: 0 0 6px 3px #969696;
    margin: -200px 0 0 -300px;
    padding: 30px;
}
.login_box .title {
    font-weight: bold;
    font-size: 20px;
    margin: 0;
    margin-top: 20px;
}
.alert_txt {
    font-size: 12px;
    color: #D50000;
    margin: 0;
    text-align: center;
}
/* 入力欄 */
.login_box input {
    box-sizing: border-box;
    margin-top: 35px;
    border: none;
    border-bottom: 1px solid #EAEAEA;
    outline: 0;
    background: transparent;
    padding: 6px 10px;
    width: 100%;
}
.login_box .active {
    border-bottom: 2px solid;
}
.active.u_red {
    border-color: #FF0000;
}
.active.u_blue {
    border-color: #0099D9;
}
.active.u_green {
    border-color: #42B25D;
}
/* ボタン */
.center_btn {
    font-size: 18px;
    width: 250px;
    margin: 50px auto 15px;
    text-align: center;
}
.center_btn button {
    display: block;
    padding-top: 15px;
    padding-bottom: 15px;
    color: #FFFFFF;
    border: 2px solid #006757;
    border-radius: 5px;
    background-color: #006757;
    text-decoration: none;
    width: 100%;
    font-size: 18px;
    cursor: pointer;
}
.center_btn button:hover {
    color: #006757;
    background-color: #FFFFFF;
}
/******************************
 * トップ(予約枠管理一覧) 
 ******************************/
.reserve_pj_list {
    width: 100%;
    table-layout: fixed;
}
.reserve_pj_list th {
    width: auto;
}
.reserve_pj_list .btn_list,
.head01 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.reserve_pj_list .btn_list {
    gap: 10px;
}
.reserve_pj_list .link_btn {
    width: 150px;
}
/******************************
 * 予約枠管理
 ******************************/
.contents_head {
    border-bottom: 1px solid #959595;
}
.head01 {
    background-color: #E2EEF2;
    padding: 15px 10px;
    margin-top: -10px;
    box-sizing: border-box;
}
.change_type_btn {
    width: 200px;
}
/* ul */
.ul_check {
    margin: 10px 0;
    gap: 10px;
}
.ul_check.width_equal li {
    width: 10em;
}
.multi_element .ul_check {
    margin-bottom: 15px;
}
/* カレンダー */
.input_calendar + img.ui-datepicker-trigger {
    width: 30px;
    height: 30px;
    background-size: contain;
}
.input_calendar + img.ui-datepicker-trigger:hover {
    cursor: pointer;
}
/* ページ下部固定ボタン */
.fixed_background {
    display: flex;
    flex-wrap: wrap;
    width: 85%;
    justify-content: center;
    align-items: flex-end;
    gap: 10%;
    position: fixed;
    bottom: 0;
    right: 0;
    box-sizing: border-box;
    padding: 30px;
    background-color: #EEEEEE;
}
.fixed_background .link_btn {
    width: 90%;
    max-width: 300px;
}
/******************************
 * レスポンシブ対応
 ******************************/
/* スマホ用 */
@media screen and (max-width: 520px) {
    /* ログイン画面 */
    body#login {
        min-width: auto;
        min-height: auto;
    }
    .login_box {
        width: 90%;
        height: auto;
        box-sizing: border-box;
        left: 0;
        top: 0;
        margin: 5%;
    }
    .login_box .title {
        text-align: center;
    }
    /* トップページ配下 */
    table th,
    table td {
        width: auto;
    }
    .event_setting table th {
        min-width: 120px;
    }
    .event_setting table th:nth-of-type(2) {
        min-width: 180px;
    }
    .fixed_background {
        width: 100%;
        gap: 10px;
    }
}
/* PC用 */
@media screen and (min-width: 521px) {
    .reserve_pj_list th:last-of-type  {
        width: 510px;
    }
}
