/**************************************/
/* 共通 */
/**************************************/
.hide {
  display: none;
}

/**************************************/
/* CSVダウンロード */
/**************************************/
.csvdownload{
  /* background-color: #f2f2f2;
  border-radius: 4px;
  padding: 20px; */
  margin-top: 10px;
  display: none;
  flex: 0 0 100%;
  max-width: 100%;
}
.csvdownload-inner{
  display: flex;
  /* align-items: flex-end;
  justify-content: center; */
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}
.csvdownload-inner-left{
  flex: 0 0 100%;
  max-width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.csvdownload-inner-right{
  flex: 0 0 100%;
  max-width: 100%;
}
.csvdownload-data{
  /* padding: 0 5px; */
  margin-top: 0 !important;
}
.csvdownload-data input{
  width: 200px;
  text-align: center;
}
.csvdownload-text{
  padding: 0 5px 10px 5px;
}
.csvdownload-date-error{
  flex: 0 0 100%;
  max-width: 100%;
  font-size: 12px;
  margin-top: 10px;
  color: #cc0000;
}
.csvdownload-button{
  /* padding: 0 5px; */
  margin-top: 10px;
}
.csvdownload-button button,
.csvdownload-button div{
  font-size: 12px;
  color: #ffffff;
  height: 38px;
  min-width: 240px;
  text-align: center;
  display: inline-block;
}
.csvdownload-info{
  padding: 0 5px;
  font-size: 12px;
  margin-top: 10px;
  text-align: right;
}
@media (min-width: 768px){
  .csvdownload-inner-left{
    flex: 0 0 70%;
    max-width: 70%;
    flex-wrap: wrap;
    padding-right: 30px;
  }
  .csvdownload-inner-right{
    flex: 0 0 30%;
    max-width: 30%;
    margin-top: -10px;
  }
  .csvdownload-button{
    /* margin-top: 0; */
  }
}


/**************************************/
/* ローディング */
/**************************************/
.loader-area{
  position: fixed;
  top: 0;
  left :0;
  width :100vw;
  height: 100vh;
  background: rgba(0, 0, 0, .68);
  z-index: 20;
}
.loader-area .loader-frame {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
  width: 5em;
  height: 5em;
}
.loader,
.loader:after {
  border-radius: 50%;
  width: 100%;
  height: 100%;
}
.loader {
  margin: 60px auto;
  font-size: 10px;
  position: relative;
  text-indent: -9999em;
  border-top: 1.1em solid rgba(255, 255, 255, 0.2);
  border-right: 1.1em solid rgba(255, 255, 255, 0.2);
  border-bottom: 1.1em solid rgba(255, 255, 255, 0.2);
  border-left: 1.1em solid #ffffff;
  transform: translateZ(0);
  animation: load8 1.1s infinite linear;
  margin: 0;
}
@-webkit-keyframes load8 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes load8 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/**************************************/
/* カレンダー */
/**************************************/

.ui-datepicker.ui-corner-all{
  padding: 10px;
}
.ui-datepicker th {
  color: #999999;
  font-size: 12px;
}
.ui-datepicker td{
  padding: 0;
}

.ui-datepicker .ui-datepicker-header{
  background-color: #ffffff;
  border: 0;
}

.ui-datepicker .ui-state-default,
.ui-datepicker .ui-state-highlight,
.ui-datepicker .ui-state-active,
.ui-datepicker .ui-state-hover{
  text-align: center;
  background-color: #FFFFFF;
  border: 0;
  color: #666666;
}

.ui-datepicker .ui-state-default{
} 
.ui-datepicker .ui-state-highlight{
}
.ui-datepicker .ui-state-active{
  font-weight: 600;
  -webkit-text-stroke: 1px;
  text-stroke: 1px;
}
.ui-datepicker .ui-state-hover{
  background-color: #F5F5F5;
  border: 0;
}

.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span{
  position: relative;
  background-image: none;
}
.ui-datepicker .ui-datepicker-prev span:before,
.ui-datepicker .ui-datepicker-next span:before{
  content: "▲";
  color: #666666;
  text-indent: 0;
  width: 1em;
  height: 1em;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 10px;
  transform: translateX(-50%) translateY(-70%);
}
.ui-datepicker .ui-datepicker-prev span:before{
  content: "◀";
}
.ui-datepicker .ui-datepicker-next span:before{
  content: "▶";
}




