@charset "utf-8";

/* 共通クラス用 */
.absolute-v-center {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}

.text-align-left {
    text-align: left !important;
}
.text-align-center {
    text-align: center !important;
}
.text-align-right {
    text-align: right !important;
}

.wrap {
    overflow:unset !important;
    word-break: break-all !important;
    text-overflow: unset !important;
}

.border-bottom1 {
    border-bottom: 1px solid #9ACCFF;
}
.border-bottom2 {
    border-bottom: 2px solid #9ACCFF;
}
.border-bottom3 {
    border-bottom: 3px solid #9ACCFF;
}

.float-left {
    float: left;
}
.float-right {
    float: right;
}
.margin0 {
    margin: 0;
}
.margin-top5 {
    margin-top: 5px;
}
.margin-top10 {
    margin-top: 10px;
}
.margin-top20 {
    margin-top: 20px;
}
.margin-top30 {
    margin-top: 30px;
}

.margin-left10 {
    margin-left: 10px;
}
.margin-left20 {
    margin-left: 20px;
}

.margin-right10 {
    margin-right: 10px;
}
.margin-right20 {
    margin-right: 20px;
}

.padding-bottom5 {
    padding-bottom: 5px;
}
.padding-bottom10 {
    padding-bottom: 10px;
}

.text-align-center {
    text-align: center;
}

.h-center {
    margin: 0 auto;
}

.v-center {
    vertical-align: middle;
}
.v-bottom {
    vertical-align: bottom;
}

.left0 {
    left: 0;
}
.right0 {
    right: 0;
}
.bottom0 {
    bottom: 0;
}

.w20p {
    width: 20% !important;
}
.w25p {
    width: 25% !important;
}
.w33p {
    width: 33% !important;
}
.w34p {
    width: 34% !important;
}
.w50p {
    width: 50% !important;
}
.w90p {
    width: 90% !important;
}
.h90p {
    height: 90% !important;
}
.w100p {
    width: 100% !important;
}
.h100p {
    height: 100% !important;
}

.w30 {
    width: 30px !important;
}
.w40 {
    width: 40px !important;
}
.w50 {
    width: 50px !important;
}
.w70 {
    width: 70px !important;
}
.w100 {
    width: 100px !important;
}
.w120 {
    width: 120px !important;
}
.w140 {
    width: 140px !important;
}
.w150 {
    width: 150px !important;
}
.w155 {
    width: 155px !important;
}
.w160 {
    width: 160px !important;
}
.w180 {
    width: 180px !important;
}
.w200 {
    width: 200px !important;
}
.w220 {
    width: 220px !important;
}
.w250 {
    width: 250px !important;
}
.w300 {
    width: 300px !important;
}
.w350 {
    width: 350px !important;
}
.w400 {
    width: 400px !important;
}
.w450 {
    width: 450px !important;
}
.w500 {
    width: 500px !important;
}

.h20 {
    height: 20px !important;
}
.h25 {
    height: 25px !important;
}
.h35 {
    height: 35px !important;
}
.h50 {
    height: 50px !important;
}
.h65 {
    height: 65px !important;
}
.h100 {
    height: 100px !important;
}
.h120 {
    height: 120px !important;
}
.h150 {
    height: 150px !important;
}
.h160 {
    height: 160px !important;
}
.h170 {
    height: 170px !important;
}
.h180 {
    height: 180px !important;
}
.h190 {
    height: 190px !important;
}
.h200 {
    height: 200px !important;
}
.h250 {
    height: 250px !important;
}
.h300 {
    height: 300px !important;
}

input[type="text"]:focus,
input[type="password"]:focus,
select:focus,
textarea:focus {
    /* outline: 4px dashed rgb(40, 201, 241); */
    outline: 2px solid #06156b;
    /* outline: none; */
    background: #d9f1fc;
}

input[type="text"]:disabled,
input[type="password"]:disabled,
select:disabled,
textarea:disabled {
    background: #f3f3f3;
}
input[type="text"].read-only,
input[type="password"].read-only,
select.read-only,
textarea.read-only {
    background: #f3f3f3;
    border: 1px solid #9e9e9e;
}
input[type="text"].readonly_bgwhite:read-only,
input[type="password"].readonly_bgwhite:read-only,
select.readonly_bgwhite:read-only,
textarea.readonly_bgwhite:read-only {
    background: #ffffff;
    border: 1px solid #9e9e9e;
}
input[type="text"].readonly_non_edge:read-only,
input[type="password"].readonly_non_edge:read-only,
select.readonly_non_edge:read-only,
textarea.readonly_non_edge:read-only {
    border: none;
    -webkit-appearance: none;
    appearance: none; /* デフォルトの矢印を無効 */
}
input[type="text"].readonly_bgwhite:focus,
input[type="password"].readonly_bgwhite:focus,
select.readonly_bgwhite:focus,
textarea.readonly_bgwhite:focus {
    /* outline: 4px dashed rgb(40, 201, 241); */
    outline: 2px solid #06156b;
    /* outline: none; */
    background: #d9f1fc;
}
input[type="text"].readonly_non_edge:focus,
input[type="password"].readonly_non_edge:focus,
select.readonly_non_edge:focus,
textarea.readonly_non_edge:focus {
    outline: none;
    background: unset;
    -webkit-appearance: none;
    appearance: none; /* デフォルトの矢印を無効 */
}

#btn_move {
    font-size:13px;
    height: 25px;
    line-height: 17px;
    width: 100px;
    margin: 0;
}

/* 行の背景色を交互に変える 奇数行：odd 偶数行：even */
table.cc tr:nth-child(even) td {
    background: #eeeeee !important;
}

/* イベントカラー設定 */
#color_mihon,
#grid_color_mihon {
    display:inline-block;
    width:150px;
    height:25px;
    vertical-align:middle;
    border: 1px solid #6b6b6b;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    background: #ffffff;
    text-align: left;
    padding-left: 3px;
    line-height: 27px;
    margin-left:10px;
    color:#000000;
}
#grid_color_mihon {
    width: 80px;
    height: 18px;
    line-height: 18px;
    font-size:12px;
    margin-left:2px;
    margin-right:2px;
}
.line_blue {
    background-color: #7199f1 !important;
    border-color: #5d80ca !important;
}
.line_blue > .fc-event-main {
    color: #ffffff !important;
}
.line_blue2 {
    background-color: #71d7f1 !important;
    border-color: #5fbed6 !important;
}
.line_blue2 > .fc-event-main {
    color: #000000 !important;
}
.line_red {
    background-color: #f35a52 !important;
    border-color: #c54740 !important;
}
.line_red > .fc-event-main {
    color: #ffffff !important;
}
.line_pink {
    background-color: #ffb8df !important;
    border-color: #e29bc2 !important;
}
.line_pink > .fc-event-main {
    color: #000000 !important;
}
.line_yellow {
    background-color: #e8f352 !important;
    border-color: #b1b93e !important;
}
.line_yellow > .fc-event-main {
    color: #000000 !important;
}
.line_beige {
    background-color: #f5eda3 !important;
    border-color: #e0d679 !important;
}
.line_beige > .fc-event-main {
    color: #000000 !important;
}
.line_green {
    background-color: #52f375 !important;
    border-color: #3dbd58 !important;
}
.line_green > .fc-event-main {
    color: #000000 !important;
}
.line_green2 {
    background-color: #a0ffcb !important;
    border-color: #7dd4a5 !important;
}
.line_green2 > .fc-event-main {
    color: #000000 !important;
}
.line_purple {
    background-color: #d352f3 !important;
    border-color: #ae3dbd !important;
}
.line_purple > .fc-event-main {
    color: #ffffff !important;
}
.line_orange {
    background-color: #f3ad52 !important;
    border-color: #bd8a3d !important;
}
.line_orange > .fc-event-main {
    color: #000000 !important;
}
.line_brown {
    background-color: #b8884b !important;
    border-color: #a5793f !important;
}
.line_brown > .fc-event-main {
    color: #ffffff !important;
}
.line_gray {
    background-color: #ebebeb !important;
    border-color: #bebebe !important;
}
.line_gray > .fc-event-main {
    color: #000000 !important;
}
