@charset "UTF-8";

.bl_status_top {

}

.bl_status_topHead {

}

.bl_calenderHead {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 30px;
}

.bl_calenderHead_ttl,
.bl_history_list_ttl {
    font-size: 18px;
    font-weight: bold;
    color: #ed1e79;

}

/* セレクトボックス */
.el_selectBox {
    display: inline-block;
    position: relative;
    border: 1px solid #e4e4e4;
    border-radius:  5px;
    vertical-align: middle;
    margin-bottom: 27px;
}

.el_selectBox::before {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    width: 0;
    height: 0;
    border-width: 13px 7px 0 7px;
    border-style: solid;
    border-color: #727171 transparent transparent transparent;
    content: "";
    pointer-events: none;
}

.el_select {
    font-size: 18px;
    color: #3e3a39;
    appearance: none;
    width: 366px;
    padding: 7px 11px;
    border: none;
    outline: 0;
    background: #fff;
    background-image: linear-gradient(to top, #c6c6c6, #fff);
    box-shadow: none;
    text-indent: 0.01px;
    text-overflow: ellipsis; /* 文字の省略 */
    cursor: pointer;
    border-radius:  5px;
}

.el_changeDateBox {
    display: flex;
    align-items: flex-end;
    margin-left: 15px;
    margin-bottom: 20px;
}

.el_arrowBox{
    position: relative;
}

.el_arrow_prev,
.el_arrow_next {
    display: inline-block;
    vertical-align: middle;
    line-height: 30px;
    font-size: 18px;
    height: 30px;
    color: #fff;
    background: #888;
}

.el_arrow_prev {
    padding: 0 15px 0 5px;
}

.el_arrow_next {
    padding: 0 5px 0 15px;
}

.el_arrow_prev_caret,
.el_arrow_next_caret {
    position: absolute;
    display: inline-block;
    vertical-align: middle;
    color: #888;
    line-height: 1;
    width: 0;
    height: 0;
    border-style: solid;
    border-color: transparent;
    border-width: 15px;
}

.el_arrow_prev_caret {
    border-right-color: currentColor;
    border-left: 0;
    left: -15px;
}

.el_arrow_next_caret {
    border-left-color: currentColor;
    border-right: 0;
    right: -15px;
}

.el_changeDate_result {
    margin: 0 20px;
    font-size: 32px;
    font-weight: bold;
    line-height: 1;
}

.bl_calender_selectBoxWrap {
    display: flex;
    align-items: flex-end;
    width: 370px;
    position: relative;
}

.bl_calender_selectBox {
    display: inline-block;
    position: relative;
    border: 1px solid #848484;
    border-radius:  5px;
    vertical-align: middle;
}

.bl_calender_selectBox::before {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 9px;
    width: 0;
    height: 0;
    border-width: 10px 5px 0 5px;
    border-style: solid;
    border-color: #727171 transparent transparent transparent;
    content: "";
    pointer-events: none;
}

/* .bl_calender_selectBox::after {
    content: "";
    position: absolute;
    top: 0;
    right: 27px;
    height: 32px;
    width: 1px;
    background: #e4e4e4;
} */

.bl_calender_select {
    font-size: 18px;
    color: #3e3a39;
    appearance: none;
    padding: 7px 11px;
    border: none;
    outline: 0;
    background: #fff;
    box-shadow: none;
    text-indent: 0.01px;
    text-overflow: ellipsis; /* 文字の省略 */
    cursor: pointer;
    border-radius:  5px;
}

.bl_calender_select_y {
    width: 100px;
}

.bl_calender_select_m {
    width: 75px;
}

.bl_calender_select_txt {
    font-size: 18px;
    padding: 0 15px 0 8px;
}

.bl_calender_select_btn {
    position: absolute;
    right: 0;
    background: #888;
    color: #fff;
    height: 34px;
    line-height: 34px;
    padding: 0 15px;
    font-size: 15px;
    border-radius: 5px;
    cursor: pointer;
    /* border: 1px solid #787878; */
}

.el_status_total {
    display: flex;
    justify-content: end;
    align-items: flex-end;
    border-bottom: 1px solid #919696;
    padding: 0 4px 1px;
    font-size: 18px;
    font-weight: bold;
}

.el_status_total_item {
    color: #919696;
}

.el_status_total_item:nth-child(1) {
    margin-right: 17px;
}

.el_status_total_item:nth-child(2) {
    margin-right: 25px;
}

.el_status_total_result {
    color: #ed1e79;
}

.el_status_total_resultNum {
    font-size: 23px;
}

/* カレンダー本体 */
.bl_calender {
    margin-bottom: 30px;
}

.bl_calender table{
    border-collapse:collapse;
    width: 100%;
    border-spacing: 0;
    border: 2px solid #000;
    table-layout: fixed;
}

.bl_calender table th{
    background-color: #f5f5f5;
    color: #000;
    border:solid 1px #000;
    font-size: 17px;
    font-weight: normal;
    padding: 8px 0;
}

.bl_calender table td{
    background-color: #fff;
    border:solid 1px #000;
    height: 118px;
    vertical-align: text-top;
    font-size: 21px;
    padding: 3px;
    line-height: 1;
}

.bl_calender tr th:first-child,
.bl_calender tr td:first-child {
    background: #ffe6e6;
}

.bl_calender tr th:last-child,
.bl_calender tr td:last-child {
    background: #f0f0ff;
}

.el_bg_pk {
    background: #ffe6e6;
}

.bl_calender_img {
    padding: 0 35px 3px;
    transition: all ease .3s;
}

.bl_calender_price {
    text-align: center;
    font-size: 16px;
    color: #fff;
    background-color: #ed1e79;
    border-radius: 100vh;
    padding: 2px 0;
    margin: 0 2px;
    transition: all ease .3s;
}

.bl_calender_include {
    cursor: pointer;
}

.bl_calender_include:hover .bl_calender_img,
.bl_calender_include:hover .bl_calender_price{
    opacity: .7;
}


/* 一覧 */
.bl_history_listBox:not(:last-child) {
    margin-bottom: 18px;
}

.bl_history_listBox:last-child {
    margin-bottom: 20px;
}

.bl_history_list table{
    display: block;
    overflow-x: auto;
    border-collapse: collapse;
    width: 100%;

    border-spacing: 0;
    text-align: center;
    white-space: nowrap;
}

.bl_history_list table th{
    background-color: #969696;
    color: #fff;
    border:solid 1px #c8c9c9;
    font-size: 12px;
    font-weight: normal;
    padding: 8px;

}

.bl_history_list table th:not(:first-child) {
    /* 最大幅 - No.の幅 / 残りの項目数 */
    min-width: calc((1000px - 35px) / 9);
}

.bl_history_list table td{
    background-color: #fff;
    color: #3e3a39;
    border:solid 1px #c8c9c9;
    vertical-align: text-top;
    font-size: 12px;
    padding: 10px 8px;
    line-height: 1;
}

.bl_history_listTatal_outer {
    text-align: right;
}

.bl_history_listTatal {
    display: inline-block;
}

/* モーダル コンテンツエリア */
.bl_calender_modal {
    display: none;
    /* position: absolute; */
    top: 50%;
    /* left: 50%; */
    transform: translateY(-50%);
    min-width: 1000px;
    height: 80%;
    margin: 0;
    padding: 28px 20px;
    background-color: #ffffff;
    color: #666666;
    overflow-y: auto;
    position:fixed;
    z-index: 2;
    box-shadow: 2px 2px 8px #525252;
}

.bl_calender_modal_headBox {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #787878;
    padding: 7px 12px;
    margin-bottom: 20px;
}

.bl_calender_modal_head {
    display: block;
    font-size: 17px;
    color: #fff;
}

.square_btn {
  display: block;
  position: relative;
  width: 25px;
  height: 25px;
  background: #555; /* ボタンの背景色 */
  cursor: pointer;
}

.square_btn::before, .square_btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px; /* 棒の幅（太さ） */
  height: 23px; /* 棒の高さ */
  background: #fff; /* バツ印の色 */
}

.square_btn::before {
  transform: translate(-50%,-50%) rotate(45deg);
}

.square_btn::after {
  transform: translate(-50%,-50%) rotate(-45deg);
}

.bl_calender_modal_mainWrap {
    padding: 0 15px;
}

.bl_calender_modal_mainHead {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 18px;
}

.bl_calender_modal_mainHead_ttl {
    font-size: 17px;
    color: #787878;
}

.bl_calender_modal_mainHead_total {
    font-size: 17px;
    font-weight: bold;
    color: #ed1e79;
}

.bl_calender_modal_mainHead_total-s {
    font-size: 14px;
}

.bl_calender_modal_main_item {
    display: flex;
    border: 1px solid #3e3a39;
    padding: 3px;
}

.bl_calender_modal_main_item:not(:last-child) {
    margin-bottom: 20px;
}


.bl_calender_modal_main_itemImg {
    width: 140px;
    margin-right: 23px;
}

.bl_calender_modal_main_item_typeBox {
    margin-top: 7px;
}

.bl_calender_modal_main_item_type {
    display: flex;
    font-size: 14px;
}

.bl_calender_modal_main_item_type:not(:last-child) {
    padding-bottom: 3px;
}

/* モーダル 背景エリア */
.bl_calender_modal_bg {
    display:none;
    width:100%;
    height:100%;
    background-color: rgba(0,0,0,0.5);
    position:fixed;
    top:0;
    left:0;
    z-index: 1;
}
