@charset "utf-8";

body {
    overflow-y: scroll;
}
/*
.pc-img{
    display:block;
}
.sp-img{
    display:none;
}

@media only screen and (max-width: 750px){
    .pc-img{
    display:none;
    }
    .sp-img{
        display:block;
    }
}
*/
/** colors **/
.bg-deep-perple {
    background-color: #363237 !important;
}
.bg-indigo {
    background-color: #2d4262 !important;
}
.bg-taupe {
    background-color: #73605b !important;
}
.bg-blush {
    background-color: #d09683 !important;
}
.border-indigo {
    border: 1px solid #2d4262;
}

.btn-deep-perple {
    color: #fff;
    background-color: #363237;
    border-color: #363237;
}
.btn-deep-perple:not(:disabled):not(.disabled):active,
.btn-deep-perple:not(:disabled):not(.disabled).active,
.show > .btn-deep-perple.dropdown-toggle {
    color: #fff;
    background-color: #161416;
    border-color: #161416;
}
.btn-deep-perple:hover {
    color: #fff;
    background-color: #161416;
    border-color: #050405;
}
.btn-indigo {
    color: #fff;
    background-color: #2d4262;
    border-color: #2d4262;
}
.btn-indigo:not(:disabled):not(.disabled):active,
.btn-indigo:not(:disabled):not(.disabled).active,
.show > .btn-indigo.dropdown-toggle {
    color: #fff;
    background-color: #223349;
    border-color: #223349;
}
.btn-indigo:hover {
    color: #fff;
    background-color: #223349;
    border-color: #162330;
}

.btn-taupe {
    color: #fff;
    background-color: #73605b;
    border-color: #73605b;
}
.btn-taupe:not(:disabled):not(.disabled):active,
.btn-taupe:not(:disabled):not(.disabled).active,
.show > .btn-taupe.dropdown-toggle {
    color: #fff;
    background-color: #493e3b;
    border-color: #493e3b;
}
.btn-taupe:hover {
    color: #fff;
    background-color: #493e3b;
    border-color: #2d2725;
}

/** size button**/
.btn-50 {
    width: 50px;
    height: 50px;
}
.btn-90 {
    width: 90px;
}
.btn-125 {
    width: 125px;
}

.perfect-centering {
     position: absolute;
     top: 40%;
     left:50%;
     transform: translate(-50%,-50%);
     -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%,-50%);
     width: 30%;
}

.page-title {
  margin: 0 auto;
  padding-top: 10px;
  padding-bottom: 10px;
}
.content_title{
    text-align: center;
}
.main {
    padding-left: 170px;
}

@media print {
  .main {
    padding-left: 0px;
  }
}

.container {
    width: 100%;
    margin: 0 !important;
    max-width: unset;
}
.contents {
    width: 100%;
    position: relative;
}
.master_area{
    width: 100%;
    height: 100%;
    padding: 0 15px;
}
.header-fixed {
    position: fixed;
    top: 10px;
    width: 100%;
}
.header-area{
    height: 200px;
    width: 100%;
}

.text_enlarge{
    font-size: 18em;
}
.register {
    margin-bottom: 10px;
}
.clearfix {
    margin-top: 10px;
}
.master_title{
    text-align: center;
}

.body-content{
    padding:200px 0 160px 0;
    width: 100%;
    position: absolute;
}
input[type=checkbox]
{
  /* Double-sized Checkboxes */
  -ms-transform: scale(2); /* IE */
  -moz-transform: scale(2); /* FF */
  -webkit-transform: scale(2); /* Safari and Chrome */
  -o-transform: scale(2); /* Opera */
  padding: 10px;
}

.plant_menu{
    margin:20px 0 0;
    padding: 0;
}

.plant_menu > li{
  box-sizing: border-box;
    margin: 0;
    padding: 0 5px;
    float: left;
    font-size: 25px;
    font-family: bold;
    color: white;
    text-align: center;
    list-style-type: none;
    cursor: pointer;
}

.plant_menu > li:nth-child(2){
    border-left: 0;
}
.plant_menu > li:nth-child(3){
    border-left: 0;
    border-right: 0;
}

.customer_menu{
    margin:20px 0 0;
    padding: 0;
}

.customer_menu > li{
  box-sizing: border-box;
    margin: 0;
    padding: 0 5px;
    float: left;
    font-size: 25px;
    font-family: bold;
    color: white;
    text-align: center;
    list-style-type: none;
    cursor: pointer;
}

.customer_menu > li:nth-child(2){
    border-left: 0;
}
.customer_menu > li:nth-child(3){
    border-left: 0;
    border-right: 0;
}

/*Datepicker土日の色変え20190522 START*/
/* 日曜日のカラー設定 */
td.ui-datepicker-week-end:first-child a.ui-state-default{
  background-color: #ffecec;   /* 背景色を設定 */
  color: #f00!important;       /* 文字色を設定 */
}
/* 土曜日のカラー設定 */
td.ui-datepicker-week-end:last-child a.ui-state-default{
  background-color: #eaeaff;   /* 背景色を設定 */
  color: #00f!important;       /* 文字色を設定 */
}
/* ホバー時の動作 */
td.ui-datepicker-week-end a.ui-state-hover{
  opacity: 0.8;
}
/* 当日を示す色はそのまま */
td.ui-datepicker-week-end a.ui-state-highlight{
  background-color: #fffa90!important;
}
/*Datepicker土日の色変え20190522 END*/