@charset "UTF-8";
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,300);
.form-error {
  border: 1px solid #fff;
  line-height: 1.2;
  padding: 8px;
  color: #fff;
  margin-top: 24px;
}

.tabs {
  width: 50%;
  margin: 10px auto;
  position: relative;
}

.taskTabs .groupButtonWrap {
  overflow-x: auto;
}

.taskTabs .groupButtonWrap .groupButton span {
  color: #fff;
}

.is-animate {
  opacity: 1;
  -webkit-animation: .6s zoom-in;
          animation: .6s zoom-in;
}

@-webkit-keyframes zoom-in {
  0% {
    opacity: 0.3;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes zoom-in {
  0% {
    opacity: 0.3;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@media only screen and (max-width: 767px) {
  .mainHeader {
    padding: 0px 0;
    position: relative;
    border-radius: 0 10px 10px 0;
    -webkit-filter: drop-shadow(0px 0px 15px rgba(0, 0, 0, 0.4));
            filter: drop-shadow(0px 0px 15px rgba(0, 0, 0, 0.4));
    min-height: 100%;
    padding: 70px 0 40px 0;
    left: 0;
    width: auto;
    position: relative;
    border-radius: 0 0 10px 10px;
  }
}

.mainHeader .pageTitle {
  text-align: center;
  font-size: 26px;
  color: #fff;
  margin-bottom: 12px;
}

@media only screen and (max-width: 767px) {
  .mainHeader .pageTitle {
    font-size: 6vw;
  }
}

.mainHeader .prevNav {
  position: absolute;
  left: 0px;
  top: 50%;
  height: 50px;
  width: 40px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transition-duration: .3s;
          transition-duration: .3s;
}

@media only screen and (max-width: 767px) {
  .mainHeader .prevNav {
    left: 10px;
  }
}

.mainHeader .prevNav:hover {
  left: -10px;
}

@media only screen and (max-width: 767px) {
  .mainHeader .prevNav:hover {
    left: 10px;
  }
}

.mainHeader .prevNav:hover a {
  padding-right: 20px;
}

.mainHeader .prevNav a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.mainHeader .prevNav a span {
  width: 20px;
  height: 1px;
  background-color: #fff;
  display: inline-block;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  left: 0;
  top: 32px;
}

@media only screen and (max-width: 767px) {
  .mainHeader .prevNav a span {
    width: 20px;
  }
}

.mainHeader .prevNav a span:last-child {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: auto;
  bottom: 31px;
}

.mainHeader .nextNav {
  position: absolute;
  right: 0px;
  height: 50px;
  width: 40px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transition-duration: .3s;
          transition-duration: .3s;
}

@media only screen and (max-width: 767px) {
  .mainHeader .nextNav {
    right: 10px;
  }
}

.mainHeader .nextNav:hover {
  right: -10px;
}

@media only screen and (max-width: 767px) {
  .mainHeader .nextNav:hover {
    right: 10px;
  }
}

.mainHeader .nextNav a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.mainHeader .nextNav a span {
  width: 20px;
  height: 1px;
  background-color: #fff;
  display: inline-block;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  position: absolute;
  right: 0;
  top: 32px;
}

@media only screen and (max-width: 767px) {
  .mainHeader .nextNav a span {
    width: 20px;
  }
}

.mainHeader .nextNav a span:last-child {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: auto;
  bottom: 31px;
}

.mainHeader .dayINfoWrap {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  margin: 0 auto;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .mainHeader .dayINfoWrap {
    padding: 0;
    width: 100%;
  }
}

.mainHeader .dayINfoWrap .day {
  width: 100%;
  text-align: center;
  margin-bottom: 10px;
  font-family: 'Barlow', sans-serif;
  font-weight: 200;
  font-size: 24px;
  margin-bottom: 32px;
}

@media only screen and (max-width: 767px) {
  .mainHeader .dayINfoWrap .day {
    font-size: 7vw;
    margin-bottom: 6px;
  }
}

.mainHeader .dayINfoWrap .day span {
  font-family: 'Barlow', sans-serif;
  font-weight: 100;
  font-size: 70%;
  padding-left: 10px;
}

.mainHeader .dayINfoWrap .dayInfo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media only screen and (max-width: 767px) {
  .mainHeader .dayINfoWrap .dayInfo {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.mainHeader .dayINfoWrap .dayInfo .dayTime {
  margin-right: 0px;
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .mainHeader .dayINfoWrap .dayInfo .dayTime {
    margin-right: 16px;
    width: auto;
  }
}

.mainHeader .dayINfoWrap .dayInfo .dayTime .date_time_all {
  font-size: 78px;
}

.mainHeader .dayINfoWrap .dayInfo .dayTime .item {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.mainHeader .dayINfoWrap .dayInfo .dayProject {
  text-align: center;
  padding-top: 10px;
  margin-right: 16px;
}

.mainHeader .dayINfoWrap .dayInfo .dayProject h5 {
  font-size: 0.6vw;
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  line-height: 1;
}

@media only screen and (max-width: 767px) {
  .mainHeader .dayINfoWrap .dayInfo .dayProject h5 {
    font-size: 2.5vw;
  }
}

.mainHeader .dayINfoWrap .dayInfo .dayProject p {
  font-size: 4vw;
  font-family: 'Barlow', sans-serif;
  font-weight: 200;
  line-height: 1;
}

@media only screen and (max-width: 767px) {
  .mainHeader .dayINfoWrap .dayInfo .dayProject p {
    font-size: 12vw;
  }
}

.mainHeader .dayINfoWrap .dayInfo .dayTask {
  text-align: center;
  padding-top: 10px;
}

.mainHeader .dayINfoWrap .dayInfo .dayTask h5 {
  font-size: 0.6vw;
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  line-height: 1;
}

@media only screen and (max-width: 767px) {
  .mainHeader .dayINfoWrap .dayInfo .dayTask h5 {
    font-size: 2.5vw;
  }
}

.mainHeader .dayINfoWrap .dayInfo .dayTask p {
  font-size: 4vw;
  font-family: 'Barlow', sans-serif;
  font-weight: 200;
  line-height: 1;
}

@media only screen and (max-width: 767px) {
  .mainHeader .dayINfoWrap .dayInfo .dayTask p {
    font-size: 12vw;
  }
}

.mainHeader .time {
  font-size: 48px;
  font-family: 'Barlow', sans-serif;
  font-weight: 200;
  line-height: 1;
  margin-top: -1.5vh;
}

@media only screen and (max-width: 767px) {
  .mainHeader .time {
    font-size: 15vw;
  }
}

.mainHeader .attendanceControl {
  width: 100%;
  margin: 0 auto;
  max-width: 640px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 16px;
}

@media only screen and (max-width: 767px) {
  .mainHeader .attendanceControl {
    padding: 0 10%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

.mainHeader .attendanceControl .stratTime {
  width: 70px;
  height: 70px;
  text-align: center;
  background-color: #000000;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media only screen and (max-width: 767px) {
  .mainHeader .attendanceControl .stratTime {
    width: 90px;
    height: 90px;
  }
}

.mainHeader .attendanceControl .stratTime h6 {
  width: 100%;
  text-align: center;
  font-size: 18px;
  margin-bottom: 4px;
}

@media only screen and (max-width: 767px) {
  .mainHeader .attendanceControl .stratTime h6 {
    font-size: 3vw;
  }
}

.mainHeader .attendanceControl .stratTime p {
  font-size: 16px;
  font-family: 'Barlow', sans-serif;
  -webkit-filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.2));
}

@media only screen and (max-width: 767px) {
  .mainHeader .attendanceControl .stratTime p {
    font-size: 6vw;
  }
}

.mainHeader .attendanceControl .endTime {
  width: 70px;
  height: 70px;
  text-align: center;
  background-color: #fff;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 0px;
  display: block;
  -webkit-filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.2));
  cursor: pointer;
  font-size: 18px;
}

@media only screen and (max-width: 767px) {
  .mainHeader .attendanceControl .endTime {
    width: 90px;
    height: 90px;
    font-size: 4vw;
  }
}

.mainHeader .attendanceControl .dayComment {
  width: auto;
}

.mainHeader .attendanceControl .dayComment a {
  width: 70px;
  height: 70px;
  text-align: center;
  background-color: #fff;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 0px;
  -webkit-filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.2));
}

@media only screen and (max-width: 767px) {
  .mainHeader .attendanceControl .dayComment a {
    width: 90px;
    height: 90px;
  }
}

.mainHeader .attendanceControl .dayComment a img {
  width: 36%;
}

.mainHeader .localNav {
  width: 80%;
  margin: 0 auto;
  padding-top: 2.5vh;
  max-width: 600px;
}

.mainHeader .localNav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 24px;
}

.mainHeader .localNav ul li {
  width: calc(100% / 3);
}

.mainHeader .localNav ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
  height: 48px;
  line-height: 48px;
  text-align: center;
  border-radius: 24px;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.mainHeader .localNav ul li a img {
  width: 16px;
  display: inline-block;
}

.mainHeader .localNav ul li a.active {
  background-color: #00b4c6;
}

.groupContent {
  position: relative;
}

.groupContent .content1 {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  opacity: 0;
  -webkit-transition-duration: .5s;
          transition-duration: .5s;
}

.groupContent .content1.current {
  display: block;
  opacity: 1;
}

/*listcard*/
.listCardWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.listCardWrap:before {
  content: "";
  display: block;
  width: calc(49.3%);
  /* .boxに指定したwidthと同じ幅を指定する */
  height: 0;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  /* 疑似要素beforeの順番を必ず指定する*/
}

@media only screen and (min-width: 1280px) {
  .listCardWrap:before {
    width: calc(32.4%);
  }
}

.listCardWrap:after {
  content: "";
  display: block;
  width: calc(49.3%);
  /* .boxに指定したwidthと同じ幅を指定する */
  height: 0;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  /* 疑似要素beforeの順番を必ず指定する*/
}

@media only screen and (min-width: 1280px) {
  .listCardWrap:after {
    width: calc(32.4%);
  }
}

.listCardWrap .taskCard {
  width: 49.3%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 1.2%;
  -webkit-filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.4));
          filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.4));
}

.listCardWrap .taskCard.settings {
  background-color: #fff;
  border-radius: 6px 6px 6px 6px;
  -webkit-transition-duration: .3s;
          transition-duration: .3s;
}

.listCardWrap .taskCard > a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.listCardWrap .taskCard > a:after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-color: #fff;
  border-radius: 50%;
  -webkit-transition-duration: .3s;
          transition-duration: .3s;
  z-index: 15;
}

.listCardWrap .taskCard > a:before {
  content: "";
  position: absolute;
  right: 22px;
  width: 7px;
  height: 7px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  -webkit-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
  z-index: 2;
  -webkit-transition-duration: .3s;
          transition-duration: .3s;
  z-index: 16;
}

.listCardWrap .taskCard > a:hover:after {
  background-color: #153e7c;
  right: 9px;
}

.listCardWrap .taskCard > a:hover:before {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  right: 19px;
}

.listCardWrap .taskCard > a .taskInformationInner h3 {
  font-size: 19px !important;
  margin-bottom: 16px !important;
  line-height: 1.2 !important;
  font-weight: 600 !important;
}

@media only screen and (max-width: 767px) {
  .listCardWrap .taskCard > a .taskInformationInner h3 {
    font-size: 4.8vw !important;
  }
}

@media only screen and (min-width: 1280px) {
  .listCardWrap .taskCard {
    width: calc(32.4%);
  }
}

@media only screen and (max-width: 767px) {
  .listCardWrap .taskCard {
    width: 100%;
    margin-bottom: 2%;
    padding: 0px;
    margin-right: 0;
  }
}

.listCardWrap .taskCard.finish .taskInformation {
  background-color: rgba(255, 255, 255, 0.6);
}

.listCardWrap .taskCard.redColor .iconWrap {
  background-color: #D50000;
}

.listCardWrap .taskCard.redColor .iconWrap a:after {
  color: #D50000;
}

.listCardWrap .taskCard.redColor .iconWrap a:hover {
  background-color: #db455c;
}

.listCardWrap .taskCard.lightBlueColor .iconWrap {
  background-color: #039BE5;
}

.listCardWrap .taskCard.lightBlueColor .iconWrap a:after {
  color: #039BE5;
}

.listCardWrap .taskCard.lightBlueColor .iconWrap a:hover {
  background-color: #2f9ade;
}

.listCardWrap .taskCard.blueColor .iconWrap {
  background-color: #3F51B5;
}

.listCardWrap .taskCard.blueColor .iconWrap a:after {
  color: #3F51B5;
}

.listCardWrap .taskCard.blueColor .iconWrap a:hover {
  background-color: #2f9ade;
}

.listCardWrap .taskCard.blueGreenColor .iconWrap {
  background-color: #3fd8d2;
}

.listCardWrap .taskCard.blueGreenColor .iconWrap a:after {
  color: #3fd8d2;
}

.listCardWrap .taskCard.blueGreenColor .iconWrap a:hover {
  background-color: #1ebeb8;
}

.listCardWrap .taskCard.purpleColor .iconWrap {
  background-color: #8E24AA;
}

.listCardWrap .taskCard.purpleColor .iconWrap a:after {
  color: #8E24AA;
}

.listCardWrap .taskCard.purpleColor .iconWrap a:hover {
  background-color: #8951a7;
}

.listCardWrap .taskCard.orangeColor .iconWrap {
  background-color: #F4511E;
}

.listCardWrap .taskCard.orangeColor .iconWrap a:after {
  color: #F4511E;
}

.listCardWrap .taskCard.orangeColor .iconWrap a:hover {
  background-color: #de8c1b;
}

.listCardWrap .taskCard.pinkColor .iconWrap {
  background-color: #E67C73;
}

.listCardWrap .taskCard.pinkColor .iconWrap a:after {
  color: #E67C73;
}

.listCardWrap .taskCard.pinkColor .iconWrap a:hover {
  background-color: #d95fae;
}

.listCardWrap .taskCard.greenColor .iconWrap {
  background-color: #0B8043;
}

.listCardWrap .taskCard.greenColor .iconWrap a:after {
  color: #0B8043;
}

.listCardWrap .taskCard.greenColor .iconWrap a:hover {
  background-color: #49b967;
}

.listCardWrap .taskCard.yellowColor .iconWrap {
  background-color: #F6BF26;
}

.listCardWrap .taskCard.yellowColor .iconWrap a:after {
  color: #F6BF26;
}

.listCardWrap .taskCard.yellowColor .iconWrap a:hover {
  background-color: #ddc01b;
}

.listCardWrap .taskCard.yellowGreenColor .iconWrap {
  background-color: #33B679;
}

.listCardWrap .taskCard.yellowGreenColor .iconWrap a:after {
  color: #33B679;
}

.listCardWrap .taskCard.yellowGreenColor .iconWrap a:hover {
  background-color: #ddc01b;
}

.listCardWrap .taskCard.bluePurpleColor .iconWrap {
  background-color: #7986CB;
}

.listCardWrap .taskCard.bluePurpleColor .iconWrap a:after {
  color: #7986CB;
}

.listCardWrap .taskCard.bluePurpleColor .iconWrap a:hover {
  background-color: #8951a7;
}

.listCardWrap .taskCard .iconWrap {
  width: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-radius: 6px 0 0 6px;
}

.listCardWrap .taskCard .iconWrap a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  height: 100%;
  width: 100%;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  -webkit-transition-duration: .3s;
          transition-duration: .3s;
  border-radius: 6px 0 0 6px;
}

.listCardWrap .taskCard .iconWrap a:before {
  content: "";
  position: absolute;
  right: 7px;
  top: 7px;
  width: 12px;
  height: 12px;
  color: #00b4c6;
  border-radius: 50%;
  line-height: 1;
  background-image: url(../images/plus.svg);
  background-size: cover;
}

.listCardWrap .taskCard .iconWrap a .statusIcon {
  margin-top: 8px !important;
}

.listCardWrap .taskCard .iconWrap .iconWrapInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}

.listCardWrap .taskCard .iconWrap .iconWrapInner .groupIcon {
  display: none;
}

.listCardWrap .taskCard .iconWrap .iconWrapInner .statusIcon {
  width: 100%;
  text-align: center;
  margin-top: 20px;
}

.listCardWrap .taskCard .iconWrap .iconWrapInner .statusIcon .task_status_icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
}

.listCardWrap .taskCard .iconWrap .timeWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
}

.listCardWrap .taskCard .iconWrap .timeWrap .timeWrapInner {
  text-align: center;
  position: relative;
  padding-right: 7px;
  color: #fff;
}

.listCardWrap .taskCard .iconWrap .timeWrap .timeWrapInner .num {
  font-family: 'Barlow', sans-serif;
  font-size: 30px;
}

.listCardWrap .taskCard .iconWrap .timeWrap .timeWrapInner .num span {
  font-size: 18px;
}

@media only screen and (max-width: 767px) {
  .listCardWrap .taskCard .iconWrap .timeWrap .timeWrapInner .num span {
    font-size: 5vw;
    font-family: 'Barlow', sans-serif;
  }
}

.listCardWrap .taskCard .iconWrap .timeWrap .timeWrapInner .unit {
  font-size: 10px;
  -webkit-transform: rotate(90deg) scale(0.8);
          transform: rotate(90deg) scale(0.8);
  position: absolute;
  right: -11px;
  top: 12px;
  font-family: 'Barlow', sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.listCardWrap .taskCard .taskInformation {
  width: calc(100% - 90px);
  position: relative;
  background-color: #fff;
  border-radius: 0 6px 6px 0;
  padding: 16px 16px 50px 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.listCardWrap .taskCard .taskInformation .taskInformationInner > p {
  font-size: 12px;
  margin-bottom: 4px;
  line-height: 1.2;
  font-weight: 300;
}

@media only screen and (max-width: 767px) {
  .listCardWrap .taskCard .taskInformation .taskInformationInner > p {
    font-size: 4.8vw;
  }
}

.listCardWrap .taskCard .taskInformation .taskInformationInner > p span {
  display: inline-block;
  height: 17px;
  width: 17px;
  padding-left: 5px;
  padding-top: 2px;
}

.listCardWrap .taskCard .taskInformation .taskInformationInner > h3 {
  font-size: 19px;
  margin-bottom: 16px;
  line-height: 1.2;
  font-weight: 600;
}

@media only screen and (max-width: 767px) {
  .listCardWrap .taskCard .taskInformation .taskInformationInner > h3 {
    font-size: 4.8vw;
  }
}

.listCardWrap .taskCard .taskInformation .taskInformationInner > h3 span {
  display: inline-block;
  height: 17px;
  width: 17px;
  padding-left: 5px;
  padding-top: 2px;
}

.listCardWrap .taskCard .taskInformation .taskInformationInner h3,
.listCardWrap .taskCard .taskInformation .taskInformationInner .project_name {
  font-size: 12px;
  margin-bottom: 4px;
  line-height: 1.2;
  font-weight: 300;
}

@media only screen and (max-width: 767px) {
  .listCardWrap .taskCard .taskInformation .taskInformationInner h3,
  .listCardWrap .taskCard .taskInformation .taskInformationInner .project_name {
    font-size: 4.8vw;
  }
}

.listCardWrap .taskCard .taskInformation .taskInformationInner h3 span,
.listCardWrap .taskCard .taskInformation .taskInformationInner .project_name span {
  display: inline-block;
  height: 17px;
  width: 17px;
  padding-left: 5px;
  padding-top: 2px;
}

.listCardWrap .taskCard .taskInformation .taskInformationInner h4,
.listCardWrap .taskCard .taskInformation .taskInformationInner .name {
  font-size: 19px;
  margin-bottom: 16px;
  line-height: 1.2;
  font-weight: 600;
}

@media only screen and (max-width: 767px) {
  .listCardWrap .taskCard .taskInformation .taskInformationInner h4,
  .listCardWrap .taskCard .taskInformation .taskInformationInner .name {
    font-size: 4.8vw;
  }
}

.listCardWrap .taskCard .taskInformation .taskInformationInner h4 span,
.listCardWrap .taskCard .taskInformation .taskInformationInner .name span {
  display: inline-block;
  height: 17px;
  width: 17px;
  padding-left: 5px;
  padding-top: 2px;
}

.listCardWrap .taskCard .taskInformation .taskInformationInner .face {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-top: 24px;
}

.listCardWrap .taskCard .taskInformation .taskInformationInner .face li {
  text-align: center;
  margin-right: 10px;
  width: 20%;
  max-width: 60px;
}

.listCardWrap .taskCard .taskInformation .taskInformationInner .face li p {
  margin-top: 4px;
  font-size: 11px;
  color: #a2a2a2;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
}

.listCardWrap .taskCard .taskInformation .taskInformationInner .face li svg {
  width: 100%;
  height: auto;
  fill: #a2a2a2;
}

.listCardWrap .taskCard .taskInformation .taskInformationInner .face li.active svg {
  fill: #FDA602 !important;
}

.listCardWrap .taskCard .taskInformation .taskInformationInner .face li.active p {
  color: #333 !important;
}

.listCardWrap .taskCard .taskInformation .project_name {
  margin-bottom: 4px;
  font-size: 12px;
}

.listCardWrap .taskCard .taskInformation h3 {
  font-size: 19px;
  margin-bottom: 16px;
  line-height: 1.2;
  font-weight: 600;
}

@media only screen and (max-width: 767px) {
  .listCardWrap .taskCard .taskInformation h3 {
    font-size: 4.8vw;
  }
}

.listCardWrap .taskCard .taskInformation h3 span {
  display: inline-block;
  height: 17px;
  width: 17px;
  padding-left: 5px;
  padding-top: 2px;
}

.listCardWrap .taskCard .taskInformation .taskNum {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  color: #666;
  margin-bottom: 0;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  height: 30px;
  position: absolute;
  left: 16px;
  bottom: 16px;
}

.listCardWrap .taskCard .taskInformation .taskNum .taskInfo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.listCardWrap .taskCard .taskInformation .taskNum .taskInfo > div p {
  font-size: 10px;
  margin-bottom: 3px;
}

.listCardWrap .taskCard .taskInformation .taskNum .taskInfo > div div {
  font-family: 'Barlow', sans-serif;
  color: #000;
  font-size: 15px;
}

.listCardWrap .taskCard .taskInformation .taskNum .taskInfo > div.periodDay {
  width: 85px;
}

.listCardWrap .taskCard .taskInformation .taskNum .taskInfo > div.scheduledTime {
  width: 56px;
}

.listCardWrap .taskCard .taskInformation .taskNum .taskInfo > div.taskUser div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.listCardWrap .taskCard .taskInformation .taskNum .taskInfo > div.taskUser div p {
  font-size: 10px;
  padding: 0 5px;
}

.listCardWrap .taskCard .taskInformation .taskNum .taskInfo > div.taskUser .user_icon {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-size: cover;
  background-position: center center;
  border: 1px solid #717171;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  z-index: 2;
}

.listCardWrap .taskCard .taskInformation .taskNum .taskInfo > div.taskUser .user_icon:nth-child(2) {
  margin-left: 9px;
}

.listCardWrap .taskCard .taskInformation .taskNum .taskInfo > div.taskUser .user_icon:nth-child(2):after {
  position: absolute;
  content: "";
  left: -8px;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  border-left: 6px solid #717171;
  z-index: 1;
}

.statusBtnWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 24px;
}

.statusBtnWrap .radioWrap {
  width: calc(100% / 8);
  margin: 0 3px;
}

@media only screen and (max-width: 767px) {
  .statusBtnWrap .radioWrap {
    width: calc(100% / 6);
  }
}

.statusBtnWrap .radioWrap input[type="radio"] {
  display: none;
}

.statusBtnWrap .radioWrap input[type="radio"]:checked + label {
  opacity: 1;
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}

.statusBtnWrap .radioWrap label {
  width: 100%;
  padding: 50%;
  border-radius: 5px;
  background: #fff;
  -webkit-filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.4));
          filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.4));
  opacity: 0.3;
  -webkit-transition-duration: .3s;
          transition-duration: .3s;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  background-size: cover;
}

.statusBtnWrap .radioWrap label.go {
  background-image: url(../images/icon/start.svg);
}

.statusBtnWrap .radioWrap label.help {
  background-image: url(../images/icon/help.svg);
}

.statusBtnWrap .radioWrap label.stay {
  background-image: url(../images/icon/stay.svg);
}

.statusBtnWrap .radioWrap label.hurry {
  background-image: url(../images/icon/hurry.svg);
}

.statusBtnWrap .radioWrap label.important {
  background-image: url(../images/icon/important.svg);
}

.slide {
  padding: 0 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.slide .taskCard {
  width: 23.5%;
  margin-right: 2%;
  margin-bottom: 3%;
}

.slide .taskCard:nth-child(4n + 1) {
  margin-right: 0;
}

@media only screen and (max-width: 767px) {
  .slide {
    padding: 0 0px;
  }
  .slide .taskCard {
    width: 320px;
    margin-right: 0;
    margin-bottom: 0;
  }
  .slide .taskCard:nth-child(4n) {
    margin-right: 0;
  }
}

.taskLIst {
  position: relative;
  z-index: 1;
}

.taskLIst ul .listCard {
  background-color: #fff;
  -webkit-filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.2));
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}

.taskLIst ul .listCard:first-child {
  margin-top: 0;
}

.taskLIst ul .listCard.finish {
  background-color: #f5f5f5;
}

.taskLIst ul .listCard .cardInfo {
  padding: 40px;
  width: calc(100% - 280px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media only screen and (max-width: 767px) {
  .taskLIst ul .listCard .cardInfo {
    width: calc(100% - 140px);
    padding: 4vw 70px 4vw 4vw;
  }
}

.taskLIst ul .listCard .cardInfo .projectName {
  color: #00cbc9;
  margin-bottom: 4px;
  font-size: 16px;
}

@media only screen and (max-width: 767px) {
  .taskLIst ul .listCard .cardInfo .projectName {
    font-size: 3vw;
  }
}

.taskLIst ul .listCard .cardInfo h3 {
  font-size: 28px;
  margin-bottom: 10px;
  line-height: 1.3;
}

@media only screen and (max-width: 767px) {
  .taskLIst ul .listCard .cardInfo h3 {
    font-size: 4.8vw;
  }
}

.taskLIst ul .listCard .cardInfo .numInfo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  margin-top: 16px;
}

@media only screen and (max-width: 767px) {
  .taskLIst ul .listCard .cardInfo .numInfo {
    font-size: 2.5vw;
  }
}

.taskLIst ul .listCard .cardInfo .numInfo .day {
  margin-right: 16px;
}

@media only screen and (max-width: 767px) {
  .taskLIst ul .listCard .cardInfo .numInfo .day {
    margin-right: 10px;
  }
}

.taskLIst ul .listCard .finishBtn {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.cardControl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}

.cardControl .btn {
  width: 50%;
}

.cardControl .btn a {
  border: 0px solid #000;
  display: block;
  height: 50px;
  line-height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  cursor: pointer;
  font-size: 14px;
  background: #1fc7ad;
  background: linear-gradient(45deg, #1fc7ad 0%, #25d9be 100%);
  -webkit-transition-duration: .3s;
          transition-duration: .3s;
  color: #fff;
  font-weight: bold;
}

@media only screen and (max-width: 767px) {
  .cardControl .btn a {
    font-size: 0;
    height: 36px;
  }
}

.cardControl .btn a img {
  width: 20px;
  margin-right: 10px;
}

.cardControl .btn a:hover {
  background: #1fc7ad;
  background: linear-gradient(225deg, #1fc7ad 0%, #1fdec1 100%);
}

.cardControl .btn:last-child a {
  background: #74c9bc;
  background: linear-gradient(45deg, #74c9bc 0%, #56e3cd 100%);
  -webkit-transition-duration: .3s;
          transition-duration: .3s;
}

.cardControl .btn:last-child a img {
  width: 14px;
}

.cardControl .btn:last-child a:hover {
  background: #74c9bc;
  background: linear-gradient(225deg, #74c9bc 0%, #56e3cd 100%);
}

.projectList ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}

.projectList ul li {
  margin-bottom: 2%;
  position: relative;
  width: 48%;
  margin-right: 2%;
}

@media only screen and (max-width: 767px) {
  .projectList ul li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 2%;
  }
}

.projectList ul li.finish a {
  background-color: rgba(255, 255, 255, 0.65);
}

.projectList ul li.noLink {
  position: relative;
  overflow: hidden;
  display: block;
  border-radius: 5px;
  background-color: #8ea7d7;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 38px 24px 24px 24px;
  color: #fff;
  -webkit-box-shadow: rgba(62, 134, 133, 0.3) 0px 4px 12px;
          box-shadow: rgba(62, 134, 133, 0.3) 0px 4px 12px;
  -webkit-transition-duration: .3s;
          transition-duration: .3s;
}

.projectList ul li dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.projectList ul li > a {
  position: relative;
  overflow: hidden;
  display: block;
  border-radius: 5px;
  background-color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 38px 24px 24px 24px;
  -webkit-box-shadow: rgba(62, 134, 133, 0.6) 0px 4px 6px;
          box-shadow: rgba(62, 134, 133, 0.6) 0px 4px 6px;
  -webkit-transition-duration: .3s;
          transition-duration: .3s;
}

.projectList ul li > a:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-filter: drop-shadow(0px 0px 12px rgba(0, 0, 0, 0.6));
          filter: drop-shadow(0px 0px 12px rgba(0, 0, 0, 0.6));
}

.projectList ul li > a:hover .nextBtn {
  right: 10px;
}

.projectList ul li > a .nextBtn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  right: 16px;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}

.projectList ul li > a .nextBtn:after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid #153e7c;
  border-right: 2px solid #153e7c;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  bottom: 0px;
  right: 0;
  margin: 0 auto;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}

@media only screen and (max-width: 767px) {
  .projectList ul li > a .nextBtn:after {
    width: 6px;
    height: 6px;
    bottom: 8px;
  }
}

.projectList ul li .groupName {
  font-size: 12px;
  margin-top: 10px;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: inline-block;
  width: auto;
  text-align: center;
}

.projectList ul li .groupName p {
  display: inline-block;
  height: 20px;
  line-height: 20px;
  padding: 0 10px;
  border-radius: 0 0 5px 5px;
  background-color: #333;
}

.projectList ul li .projectIcon {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background-color: #ededed;
  display: inline-block;
  background-size: cover;
  background-position: center center;
  background-size: cover;
  background-position: center center;
  position: absolute;
  left: -20px;
  top: -20px;
  -ms-transform: translateY(-50%);
  background-image: url(../images/noimg.jpg);
}

@media only screen and (max-width: 767px) {
  .projectList ul li .projectIcon {
    width: 110px;
    height: 110px;
    left: -15px;
    top: -15px;
  }
}

.projectList ul li .projectInfo {
  width: 100%;
  padding-left: 110px;
  padding-right: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.projectList ul li .projectInfo h3 {
  font-size: 24px;
  line-height: 1.3;
  font-weight: 500;
  width: 100%;
  margin-bottom: 8px;
}

@media only screen and (max-width: 767px) {
  .projectList ul li .projectInfo h3 {
    font-size: 4.5vw;
    line-height: 1.2;
  }
}

.projectList ul li .projectInfo p {
  display: inline-block;
  font-size: 11px;
}

.projectList ul li .projectInfo p span {
  font-size: 17px;
  font-family: 'Barlow', sans-serif;
}

@media only screen and (max-width: 767px) {
  .projectList ul li .projectInfo p span {
    font-size: 3vw;
    margin-top: 5px;
  }
}

.projectList ul li .projectInfo .lastDay {
  padding-right: 16px;
}

.taskList ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.taskList ul li {
  margin-bottom: 2%;
  position: relative;
  width: 48%;
  margin-right: 2%;
  background-color: #5a5bf7;
}

@media only screen and (max-width: 767px) {
  .taskList ul li {
    margin-bottom: 2%;
    width: 100%;
    margin-right: 0;
  }
}

.taskList ul li.noLink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 32px 52px 32px 0px;
  background-color: #fff;
  border-radius: 5px;
  -webkit-box-shadow: rgba(62, 134, 133, 0.2) 0px 4px 12px;
          box-shadow: rgba(62, 134, 133, 0.2) 0px 4px 12px;
  -webkit-transition-duration: .3s;
          transition-duration: .3s;
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.taskList ul li.noLink:after {
  content: "";
  width: 240px;
  height: 240px;
  background-color: rgba(142, 216, 255, 0.1);
  border-radius: 120px;
  position: absolute;
  left: -100px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.taskList ul li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 32px 52px 32px 0px;
  background-color: #fff;
  border-radius: 5px;
  -webkit-box-shadow: rgba(62, 134, 133, 0.2) 0px 4px 12px;
          box-shadow: rgba(62, 134, 133, 0.2) 0px 4px 12px;
  -webkit-transition-duration: .3s;
          transition-duration: .3s;
  overflow: hidden;
}

.taskList ul li > a:hover {
  -webkit-box-shadow: rgba(62, 134, 133, 0.5) 0px 4px 24px;
          box-shadow: rgba(62, 134, 133, 0.5) 0px 4px 24px;
}

.taskList ul li > a:after {
  content: "";
  width: 240px;
  height: 240px;
  background-color: rgba(142, 216, 255, 0.1);
  border-radius: 120px;
  position: absolute;
  left: -100px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.taskList ul li .taskTimeWrap {
  text-align: center;
  width: 120px;
  height: 100%;
  position: relative;
  z-index: 10;
  font-size: 32px;
}

@media only screen and (max-width: 767px) {
  .taskList ul li .taskTimeWrap {
    width: 120px;
  }
}

.taskList ul li .taskTimeWrap .num {
  font-size: 32px;
  font-family: 'Barlow', sans-serif;
  line-height: 1;
  background: #00cbc9;
  background: linear-gradient(110deg, #00cbc9 0%, #272388 35%, #ae22d6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media only screen and (max-width: 767px) {
  .taskList ul li .taskTimeWrap .num {
    font-size: 8vw;
  }
}

.taskList ul li .taskTimeWrap .item {
  font-size: 18px;
  font-family: 'Barlow', sans-serif;
  text-align: center;
  color: #000;
  background: #00cbc9;
  background: linear-gradient(110deg, #00cbc9 0%, #272388 35%, #ae22d6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media only screen and (max-width: 767px) {
  .taskList ul li .taskTimeWrap .item {
    font-size: 3.5vw;
  }
}

.taskList ul li .taskInfo {
  width: calc(100% - 100px);
}

@media only screen and (max-width: 767px) {
  .taskList ul li .taskInfo {
    width: calc(100% - 110px);
  }
}

.taskList ul li .taskInfo h3 {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
}

@media only screen and (max-width: 767px) {
  .taskList ul li .taskInfo h3 {
    font-size: 4.8vw;
  }
}

.taskList ul li .taskInfo .projectName {
  font-size: 16px;
  margin-bottom: 10px;
  color: #00b4c6;
}

@media only screen and (max-width: 767px) {
  .taskList ul li .taskInfo .projectName {
    font-size: 3.5vw;
  }
}

.taskList ul li .taskInfo .numInfo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  font-size: 12px;
  font-family: 'Barlow', sans-serif;
  margin-top: 5px;
}

@media only screen and (max-width: 767px) {
  .taskList ul li .taskInfo .numInfo {
    font-size: 3vw;
  }
}

.taskList ul li .taskInfo .numInfo .day {
  font-size: 12px;
  font-family: 'Barlow', sans-serif;
}

@media only screen and (max-width: 767px) {
  .taskList ul li .taskInfo .numInfo .day {
    font-size: 3vw;
  }
}

.textLink.right {
  text-align: right;
}

.textLink a {
  padding-left: 16px;
  position: relative;
  color: #fff;
  padding-bottom: 5px;
  border-bottom: 1px solid #fff;
  -webkit-transition-duration: .3s;
          transition-duration: .3s;
  display: inline-block;
  margin-bottom: 12px;
}

.textLink a:hover {
  border-bottom: 1px solid rgba(255, 255, 255, 0);
}

.textLink a:hover:after {
  left: 3px;
}

.textLink a:after {
  content: "";
  position: absolute;
  top: 5px;
  left: 0px;
  width: 5px;
  height: 5px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition-duration: .3s;
          transition-duration: .3s;
}

.startBtnWrap {
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.startBtnWrap .startBtn {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  text-align: center;
  border: 1px solid #fff;
  display: inline-block;
  background-color: transparent;
  color: #fff;
  cursor: pointer;
  -webkit-transition-duration: .3s;
          transition-duration: .3s;
}

.startBtnWrap .startBtn:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.startBtnWrap .startBtn img {
  width: 100px;
  margin-bottom: 16px;
}

.startBtnWrap .startBtn h3 {
  font-size: 24px;
  font-family: 'Barlow', sans-serif;
  line-height: 1;
  margin-top: 10px;
}

.startBtnWrap .startBtn .day {
  font-size: 18px;
  font-family: 'Barlow', sans-serif;
  line-height: 1;
}

.startBtnWrap .startBtn .time {
  font-size: 64px;
  font-family: 'Barlow', sans-serif;
  line-height: 1;
}

.message {
  padding: 8px;
  font-size: 14px;
  border: 1px solid #fff;
  margin: 16px 0;
  text-align: center;
  color: #fff;
}

.monthControl {
  text-align: center;
  width: 80%;
  margin: 0 auto;
  position: relative;
  padding: 24px 0;
}

.monthControl .month {
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  font-size: 24px;
}

@media only screen and (max-width: 767px) {
  .monthControl .month {
    font-size: 8vw;
  }
}

.monthControl .prevNav {
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 24px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transition-duration: .3s;
          transition-duration: .3s;
}

@media only screen and (max-width: 767px) {
  .monthControl .prevNav {
    left: 5px;
  }
}

.monthControl .prevNav:hover {
  left: 0px;
}

.monthControl .prevNav a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.monthControl .prevNav a span {
  width: 9px;
  height: 9px;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
  display: inline-block;
}

.monthControl .nextNav {
  position: absolute;
  right: 5px;
  width: 24px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transition-duration: .3s;
          transition-duration: .3s;
}

@media only screen and (max-width: 767px) {
  .monthControl .nextNav {
    right: 5px;
  }
}

.monthControl .nextNav:hover {
  right: 0px;
}

.monthControl .nextNav a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.monthControl .nextNav a span {
  width: 9px;
  height: 9px;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  display: inline-block;
}

.attendList ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #fff;
  -webkit-filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.2));
  border-radius: 3px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 24px;
  margin-top: 5px;
}

@media only screen and (max-width: 767px) {
  .attendList ul li {
    padding: 16px;
  }
}

.attendList ul li:first-child {
  margin-top: 0;
}

.attendList ul li .dayWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  font-family: 'Barlow', sans-serif;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

.attendList ul li .dayWrap .day {
  font-family: 'Barlow', sans-serif;
  font-size: 32px;
  line-height: 1;
  background: #00cbc9;
  background: linear-gradient(110deg, #00cbc9 0%, #272388 35%, #ae22d6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-right: 4px;
}

@media only screen and (max-width: 767px) {
  .attendList ul li .dayWrap .day {
    font-size: 5vw;
  }
}

.attendList ul li .dayWrap .dayWeek {
  font-family: 'Barlow', sans-serif;
  font-size: 24px;
  line-height: 1;
  background: #00cbc9;
  background: linear-gradient(110deg, #00cbc9 0%, #272388 35%, #ae22d6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media only screen and (max-width: 767px) {
  .attendList ul li .dayWrap .dayWeek {
    font-size: 4vw;
  }
}

.attendList ul li .timeWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: 'Barlow', sans-serif;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

.attendList ul li .timeWrap p {
  font-family: 'Barlow', sans-serif;
  font-size: 32px;
}

@media only screen and (max-width: 767px) {
  .attendList ul li .timeWrap p {
    font-size: 5vw;
  }
}

.attendList ul li .timeWrap p:nth-child(2) {
  font-size: 18px;
  padding: 0 5px;
}

@media only screen and (max-width: 767px) {
  .attendList ul li .timeWrap p:nth-child(2) {
    font-size: 4vw;
  }
}

.attendList ul li .workHour {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  font-family: 'Barlow', sans-serif;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

.attendList ul li .workHour p {
  font-family: 'Barlow', sans-serif;
  font-size: 32px;
}

@media only screen and (max-width: 767px) {
  .attendList ul li .workHour p {
    font-size: 5vw;
  }
}

.attendList ul li .workHour p.unit {
  font-family: 'Barlow', sans-serif;
  font-size: 18px;
}

@media only screen and (max-width: 767px) {
  .attendList ul li .workHour p.unit {
    font-size: 4vw;
  }
}

.attendList ul li .comment {
  width: 24px;
}

.attendList ul li .comment img {
  width: 24px;
}

.attendList ul li .comment.registered img {
  opacity: 0.3;
}

.graphWrap {
  margin-top: 24px;
}

.todayDolist ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #fff;
  -webkit-filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.2));
  border-radius: 3px;
  padding: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 5px;
}

.todayDolist ul li:first-child {
  margin-top: 0;
}

.todayDolist ul li .thumnail {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #00b4c6;
}

@media only screen and (min-width: 1024px) {
  .todayDolist ul li .doInfo {
    width: calc(100% - 200px);
  }
}

.todayDolist ul li .doInfo .groupName {
  margin-bottom: 5px;
}

.todayDolist ul li .doInfo .projectName {
  font-size: 26px;
}

@media only screen and (max-width: 767px) {
  .todayDolist ul li .doInfo .projectName {
    font-size: 3vw;
  }
}

.todayDolist ul li .dayTime {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  color: #888888;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

@media only screen and (min-width: 1024px) {
  .todayDolist ul li .dayTime {
    width: 150px;
  }
}

.todayDolist ul li .dayTime .hour {
  font-family: 'Barlow', sans-serif;
  font-size: 24px;
}

@media only screen and (max-width: 767px) {
  .todayDolist ul li .dayTime .hour {
    font-size: 5vw;
  }
}

.todayDolist ul li .dayTime .item {
  font-family: 'Barlow', sans-serif;
  font-size: 18px;
}

@media only screen and (max-width: 767px) {
  .todayDolist ul li .dayTime .item {
    font-size: 3.5vw;
  }
}

.todayDolist ul li .dayTime .percentage .doPercentage {
  font-family: 'Barlow', sans-serif;
  font-size: 18px;
  text-align: right;
}

@media only screen and (max-width: 767px) {
  .todayDolist ul li .dayTime .percentage .doPercentage {
    font-size: 3.5vw;
  }
}

.reportMenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.reportMenu > div {
  margin-bottom: 32px;
  width: 48%;
  margin-right: 4%;
  position: relative;
}

.reportMenu > div:nth-child(2n) {
  margin-right: 0;
}

@media only screen and (max-width: 767px) {
  .reportMenu > div {
    margin-right: 0;
    width: 100%;
    margin-bottom: 32px;
  }
}

.reportMenu > div a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background-color: #fff;
  -webkit-filter: drop-shadow(0px 3px 1px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(0px 3px 1px rgba(0, 0, 0, 0.2));
  position: relative;
  border-radius: 5px;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  padding: 32px 32px 56px 32px;
}

@media only screen and (max-width: 767px) {
  .reportMenu > div a {
    padding: 24px 24px 36px 24px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.reportMenu > div a:hover {
  -webkit-filter: drop-shadow(0px 3px 1px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(0px 3px 1px rgba(0, 0, 0, 0.2));
  background-color: #f3f4f7;
}

.reportMenu > div a:hover .nextBtn:before {
  background-color: #153e7c;
}

.reportMenu > div a:hover .nextBtn:after {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.reportMenu > div a .icon {
  width: 110px;
  height: 120px;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.1));
}

@media only screen and (max-width: 767px) {
  .reportMenu > div a .icon {
    width: 60px;
    height: 60px;
  }
}

.reportMenu > div a .icon.group {
  background-image: url(../images/icon/groupreport.svg);
}

.reportMenu > div a .icon.project {
  background-image: url(../images/addproject.svg);
}

.reportMenu > div a .icon.user {
  background-image: url(../images/adduser.svg);
}

.reportMenu > div a h4 {
  text-align: center;
  color: #000;
  margin-top: 24px;
  font-size: 20px;
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .reportMenu > div a h4 {
    font-size: 17px;
    width: 100%;
    padding-left: 20px;
  }
}

.reportMenu > div a p {
  line-height: 1.5;
  font-size: 15px;
  margin-top: 16px;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .reportMenu > div a p {
    font-size: 14px;
  }
}

.reportMenu > div a .nextBtn {
  position: absolute;
  bottom: -24px;
  left: 0;
  right: 0;
  margin: 0 auto;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}

@media only screen and (max-width: 767px) {
  .reportMenu > div a .nextBtn {
    bottom: -17px;
  }
}

.reportMenu > div a .nextBtn:before {
  content: "";
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  -webkit-filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.2));
  background-color: #fff;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}

@media only screen and (max-width: 767px) {
  .reportMenu > div a .nextBtn:before {
    width: 36px;
    height: 36px;
  }
}

.reportMenu > div a .nextBtn:after {
  content: "";
  width: 12px;
  height: 12px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  bottom: 17px;
  left: -5px;
  right: 0;
  margin: 0 auto;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}

@media only screen and (max-width: 767px) {
  .reportMenu > div a .nextBtn:after {
    width: 9px;
    height: 9px;
    bottom: 12px;
  }
}

.reportGroupList {
  position: relative;
  z-index: 5;
}

.reportGroupList ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.reportGroupList ul li {
  width: 31%;
  margin-right: 3.5%;
  margin-bottom: 3.5%;
}

.reportGroupList ul li:nth-child(3n) {
  margin-right: 0;
}

@media only screen and (max-width: 767px) {
  .reportGroupList ul li {
    width: 100%;
  }
  .reportGroupList ul li:nth-child(3n) {
    margin-right: 6%;
  }
}

.reportGroupList ul li a {
  -webkit-filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.2));
  display: block;
}

.reportGroupList ul li a .guroupInfo {
  background-color: #fff;
  padding: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.reportGroupList ul li a .guroupInfo .icon {
  width: 100px;
  height: 100px;
  text-align: center;
  background-color: #00b4c6;
  border-radius: 50px;
  display: block;
  margin-bottom: 24px;
}

.reportGroupList ul li a .guroupInfo h3 {
  width: 100%;
  text-align: center;
  font-size: 24px;
  margin-bottom: 24px;
  line-height: 1.2;
}

.reportGroupList ul li a .guroupInfo dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.reportGroupList ul li a .guroupInfo dl dt {
  padding-right: 10px;
}

.reportGroupList ul li a .numWrap {
  padding: 32px;
  background-color: #fafafa;
  border-radius: 0 0 0 10px;
}

.reportGroupList ul li a .numWrap ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.reportGroupList ul li a .numWrap ol li {
  margin-right: 24px;
}

.reportGroupList ul li a .numWrap ol li .item {
  font-size: 12px;
  margin-bottom: 5px;
}

.reportGroupList ul li a .numWrap ol li .num {
  font-family: 'Barlow', sans-serif;
  font-size: 28px;
}

.reportProjectList ul li {
  -webkit-filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.2));
}

.reportProjectList ul li .projectInfoWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #fff;
  padding: 32px;
}

.reportProjectList ul li .projectInfoWrap .iconWrap {
  width: 120px;
}

.reportProjectList ul li .projectInfoWrap .iconWrap .icon {
  width: 100px;
  height: 100px;
  background-color: #00b4c6;
  border-radius: 50px;
}

.reportProjectList ul li .projectInfoWrap .projectInfo {
  width: calc(100% - 120px);
}

.reportProjectList ul li .projectInfoWrap .projectInfo h3 {
  font-size: 21px;
}

.reportProjectList ul li .projectInfoWrap .projectInfo .piriod {
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  margin-top: 8px;
}

.reportProjectList ul li .projectInfoWrap .projectInfo ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: 12px;
}

.reportProjectList ul li .projectInfoWrap .projectInfo ul li {
  margin-right: -8px;
}

.reportProjectList ul li .projectInfoWrap .projectInfo ul li .icon {
  width: 40px;
  height: 40px;
  border: 2px solid #fff;
  background-size: cover;
  background-image: url(../images/unnamed.png);
  border-radius: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.reportProjectList ul li .numWrap {
  padding: 32px;
  background-color: #fafafa;
  border-radius: 0 0 0 10px;
}

.reportProjectList ul li .numWrap ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.reportProjectList ul li .numWrap ol li {
  margin-right: 24px;
}

.reportProjectList ul li .numWrap ol li .item {
  font-size: 12px;
  margin-bottom: 5px;
}

.reportProjectList ul li .numWrap ol li .num {
  font-family: 'Barlow', sans-serif;
  font-size: 28px;
}

.circleButton {
  width: 38px;
  height: 38px;
  padding: 5px;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: inline-block;
  position: absolute;
  top: 10px;
  right: 10px;
}

.circleButton a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 28px;
  height: 28px;
  border-radius: 15px;
  -webkit-transition-duration: .3s;
          transition-duration: .3s;
  cursor: pointer;
}

.circleButton a img {
  width: 12px;
}

.circleButton.deletebtn {
  background-color: #ffe6f1;
  -webkit-box-shadow: #eddce3 3px 3px 6px 0px inset, rgba(255, 255, 255, 0.5) -3px -3px 6px 1px inset;
          box-shadow: #eddce3 3px 3px 6px 0px inset, rgba(255, 255, 255, 0.5) -3px -3px 6px 1px inset;
}

.circleButton.deletebtn a {
  background-color: #fe7cb8;
  -webkit-box-shadow: rgba(134, 87, 106, 0.1) 0px 3px 0px;
          box-shadow: rgba(134, 87, 106, 0.1) 0px 3px 0px;
}

.circleButton.deletebtn a:hover {
  -webkit-box-shadow: rgba(134, 87, 106, 0.2) 0px 6px 15px -3px, rgba(134, 87, 106, 0.4) 0px 4px 6px -2px;
          box-shadow: rgba(134, 87, 106, 0.2) 0px 6px 15px -3px, rgba(134, 87, 106, 0.4) 0px 4px 6px -2px;
  background-color: #fa66aa;
}

.circleButton.editBtn {
  background-color: #e3e3ff;
  -webkit-box-shadow: #dcdcf0 3px 3px 6px 0px inset, rgba(255, 255, 255, 0.5) -3px -3px 6px 1px inset;
          box-shadow: #dcdcf0 3px 3px 6px 0px inset, rgba(255, 255, 255, 0.5) -3px -3px 6px 1px inset;
}

.circleButton.editBtn a {
  background-color: #7171dd;
  -webkit-box-shadow: rgba(56, 56, 109, 0.1) 0px 3px 0px;
          box-shadow: rgba(56, 56, 109, 0.1) 0px 3px 0px;
}

.circleButton.editBtn a:hover {
  -webkit-box-shadow: rgba(56, 56, 109, 0.2) 0px 6px 15px -3px, rgba(56, 56, 109, 0.4) 0px 4px 6px -2px;
          box-shadow: rgba(56, 56, 109, 0.2) 0px 6px 15px -3px, rgba(56, 56, 109, 0.4) 0px 4px 6px -2px;
  background-color: #5a5bf7;
}

.circleButton.completeBtn {
  background-color: #dbf6ef;
  -webkit-box-shadow: #cfebe4 3px 3px 6px 0px inset, rgba(255, 255, 255, 0.5) -3px -3px 6px 1px inset;
          box-shadow: #cfebe4 3px 3px 6px 0px inset, rgba(255, 255, 255, 0.5) -3px -3px 6px 1px inset;
}

.circleButton.completeBtn a {
  background-color: #2cdab7;
  -webkit-box-shadow: rgba(35, 78, 67, 0.1) 0px 3px 0px;
          box-shadow: rgba(35, 78, 67, 0.1) 0px 3px 0px;
}

.circleButton.completeBtn a:hover {
  -webkit-box-shadow: rgba(35, 78, 67, 0.2) 0px 6px 15px -3px, rgba(35, 78, 67, 0.4) 0px 4px 6px -2px;
          box-shadow: rgba(35, 78, 67, 0.2) 0px 6px 15px -3px, rgba(35, 78, 67, 0.4) 0px 4px 6px -2px;
  background-color: #0ac6a0;
}

.centerBtn {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.roundButton {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  position: relative;
  width: 160px;
}

.roundButton a {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 50px;
  border-radius: 30px;
  padding: 0 24px;
  cursor: pointer;
  -webkit-transition-duration: .3s;
          transition-duration: .3s;
  max-width: 240px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.roundButton a img {
  width: 18px;
}

.roundButton a p {
  font-size: 16px;
  padding-left: 4px;
}

.roundButton.deletebtn a {
  background-color: #fe7cb8;
  -webkit-box-shadow: rgba(134, 87, 106, 0.1) 0px 3px 0px;
          box-shadow: rgba(134, 87, 106, 0.1) 0px 3px 0px;
  font-weight: 500;
}

.roundButton.deletebtn a:hover {
  -webkit-box-shadow: rgba(134, 87, 106, 0.2) 0px 6px 24px -3px, rgba(134, 87, 106, 0.4) 0px 4px 6px -2px;
          box-shadow: rgba(134, 87, 106, 0.2) 0px 6px 24px -3px, rgba(134, 87, 106, 0.4) 0px 4px 6px -2px;
  background-color: #fa66aa;
}

.roundButton.editBtn a {
  background-color: #7171dd;
  -webkit-box-shadow: rgba(56, 56, 109, 0.1) 0px 3px 0px;
          box-shadow: rgba(56, 56, 109, 0.1) 0px 3px 0px;
  font-weight: 400;
}

.roundButton.editBtn a:hover {
  -webkit-box-shadow: rgba(56, 56, 109, 0.2) 0px 6px 24px -3px, rgba(56, 56, 109, 0.4) 0px 4px 6px -2px;
          box-shadow: rgba(56, 56, 109, 0.2) 0px 6px 24px -3px, rgba(56, 56, 109, 0.4) 0px 4px 6px -2px;
  background-color: #5a5bf7;
}

.roundButton.completeBtn a {
  background-color: #2cdab7;
  -webkit-box-shadow: rgba(35, 78, 67, 0.1) 0px 3px 0px;
          box-shadow: rgba(35, 78, 67, 0.1) 0px 3px 0px;
  font-weight: 400;
}

.roundButton.completeBtn a:hover {
  -webkit-box-shadow: rgba(35, 78, 67, 0.2) 0px 6px 24px -3px, rgba(35, 78, 67, 0.4) 0px 4px 6px -2px;
          box-shadow: rgba(35, 78, 67, 0.2) 0px 6px 24px -3px, rgba(35, 78, 67, 0.4) 0px 4px 6px -2px;
  background-color: #0ac6a0;
}

.roundButton input[type="submit"] {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 50px;
  border-radius: 30px;
  padding: 0 32px 0 32px;
  width: 160px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  -webkit-transition-duration: .3s;
          transition-duration: .3s;
  background-color: #6d6efa;
  -webkit-box-shadow: rgba(56, 56, 109, 0.1) 0px 3px 0px;
          box-shadow: rgba(56, 56, 109, 0.1) 0px 3px 0px;
  font-weight: 400;
  border: none;
  font-size: 15px;
  -webkit-appearance: none;
}

.roundButton input[type="submit"]:hover {
  -webkit-box-shadow: rgba(56, 56, 109, 0.2) 0px 6px 24px -3px, rgba(56, 56, 109, 0.4) 0px 4px 6px -2px;
          box-shadow: rgba(56, 56, 109, 0.2) 0px 6px 24px -3px, rgba(56, 56, 109, 0.4) 0px 4px 6px -2px;
  background-color: #5a5bf7;
}

.roundButton .icon {
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  left: 24px;
  top: 0;
}

.roundButton .icon img {
  width: 18px;
}

.roundSmallButton {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  position: relative;
}

.roundSmallButton a {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 32px;
  border-radius: 30px;
  padding: 0 16px;
  cursor: pointer;
  -webkit-transition-duration: .3s;
          transition-duration: .3s;
  max-width: 240px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.roundSmallButton a img {
  width: 12px;
}

.roundSmallButton a p {
  font-size: 13px;
  padding-left: 4px;
}

.roundSmallButton.deletebtn a {
  background-color: #fe7cb8;
  -webkit-box-shadow: rgba(134, 87, 106, 0.1) 0px 3px 0px;
          box-shadow: rgba(134, 87, 106, 0.1) 0px 3px 0px;
  font-weight: 500;
}

.roundSmallButton.deletebtn a:hover {
  -webkit-box-shadow: rgba(134, 87, 106, 0.2) 0px 6px 24px -3px, rgba(134, 87, 106, 0.4) 0px 4px 6px -2px;
          box-shadow: rgba(134, 87, 106, 0.2) 0px 6px 24px -3px, rgba(134, 87, 106, 0.4) 0px 4px 6px -2px;
  background-color: #fa66aa;
}

.roundSmallButton.editBtn a {
  background-color: #7171dd;
  -webkit-box-shadow: rgba(56, 56, 109, 0.1) 0px 3px 0px;
          box-shadow: rgba(56, 56, 109, 0.1) 0px 3px 0px;
  font-weight: 400;
}

.roundSmallButton.editBtn a:hover {
  -webkit-box-shadow: rgba(56, 56, 109, 0.2) 0px 6px 24px -3px, rgba(56, 56, 109, 0.4) 0px 4px 6px -2px;
          box-shadow: rgba(56, 56, 109, 0.2) 0px 6px 24px -3px, rgba(56, 56, 109, 0.4) 0px 4px 6px -2px;
  background-color: #5a5bf7;
}

.roundSmallButton.completeBtn a {
  background-color: #2cdab7;
  -webkit-box-shadow: rgba(35, 78, 67, 0.1) 0px 3px 0px;
          box-shadow: rgba(35, 78, 67, 0.1) 0px 3px 0px;
  font-weight: 400;
}

.roundSmallButton.completeBtn a:hover {
  -webkit-box-shadow: rgba(35, 78, 67, 0.2) 0px 6px 24px -3px, rgba(35, 78, 67, 0.4) 0px 4px 6px -2px;
          box-shadow: rgba(35, 78, 67, 0.2) 0px 6px 24px -3px, rgba(35, 78, 67, 0.4) 0px 4px 6px -2px;
  background-color: #0ac6a0;
}

.roundSmallButton input[type="submit"] {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 50px;
  border-radius: 30px;
  padding: 0 24px 0 46px;
  cursor: pointer;
  -webkit-transition-duration: .3s;
          transition-duration: .3s;
  background-color: #6d6efa;
  -webkit-box-shadow: rgba(56, 56, 109, 0.1) 0px 3px 0px;
          box-shadow: rgba(56, 56, 109, 0.1) 0px 3px 0px;
  font-weight: 400;
  border: none;
  font-size: 15px;
}

.roundSmallButton input[type="submit"]:hover {
  -webkit-box-shadow: rgba(56, 56, 109, 0.2) 0px 6px 24px -3px, rgba(56, 56, 109, 0.4) 0px 4px 6px -2px;
          box-shadow: rgba(56, 56, 109, 0.2) 0px 6px 24px -3px, rgba(56, 56, 109, 0.4) 0px 4px 6px -2px;
  background-color: #5a5bf7;
}

.roundSmallButton .icon {
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  left: 24px;
  top: 0;
}

.roundSmallButton .icon img {
  width: 18px;
}

.textButton {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 24px;
  text-align: center;
}

.textButton a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition-duration: .3s;
          transition-duration: .3s;
  cursor: pointer;
}

.textButton a .icon {
  width: 32px;
  height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-left: 10px;
  -webkit-transition-duration: .3s;
          transition-duration: .3s;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.textButton a .icon svg {
  width: 16px;
}

.textButton.deletebtn a .icon {
  border: 1px solid #fe7cb8;
  width: 32px;
  height: 32px;
  border-radius: 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-left: 10px;
  -webkit-transition-duration: .3s;
          transition-duration: .3s;
}

.textButton.deletebtn a .icon svg {
  fill: #fe7cb8;
  -webkit-transition-duration: .3s;
          transition-duration: .3s;
}

.textButton.deletebtn a:hover p {
  text-decoration: none;
}

.textButton.deletebtn a:hover .icon {
  background-color: #fe7cb8;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.textButton.deletebtn a:hover .icon svg {
  fill: #fff;
}

.projectChangeNav {
  margin-bottom: 40px;
}

@media only screen and (max-width: 767px) {
  .projectChangeNav {
    margin-bottom: 20px;
  }
}

.projectChangeNav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  height: 60px;
  border-radius: 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: rgba(0, 0, 0, 0.23);
  padding: 5px;
}

.projectChangeNav ul li {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #e5e5e5;
  display: block;
  height: 50px;
  width: 100%;
  border-radius: 25px;
  text-align: center;
  line-height: 50px;
  color: #fff;
}

.projectChangeNav ul li.active {
  background-color: #348ab7;
  -webkit-filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.2));
}

.projectChangeNav ul li a {
  display: block;
  height: 50px;
  width: 100%;
  border-radius: 25px;
  background-color: transparent;
  text-align: center;
  line-height: 50px;
  -webkit-filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0));
          filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0));
  color: #fff;
}

.projectChangeNav ul li a:hover {
  background-color: rgba(52, 138, 183, 0.47);
  -webkit-filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.2));
}

.projectReportList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.projectReportList .projectCard {
  width: calc(50% - 2px);
  margin-bottom: 4px;
}

@media only screen and (max-width: 767px) {
  .projectReportList .projectCard {
    width: 100%;
  }
}

.projectReportList .projectCard.noLink {
  background-color: #fff;
  -webkit-filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.2));
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  padding-left: 120px;
  -webkit-transition-duration: .3s;
          transition-duration: .3s;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}

@media only screen and (max-width: 767px) {
  .projectReportList .projectCard.noLink {
    padding-left: 80px;
  }
}

.projectReportList .projectCard .projectIcon {
  width: 160px;
  height: 160px;
  background-color: #5757ff;
  position: absolute;
  left: -50px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  border-radius: 50%;
  background-image: url(../images/noimg.jpg);
  background-position: center center;
  background-size: cover;
}

@media only screen and (max-width: 767px) {
  .projectReportList .projectCard .projectIcon {
    width: 100px;
    height: 100px;
    left: -16px;
    top: -16px;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
  }
}

.projectReportList .projectCard .projectInfo {
  padding: 20px;
}

.projectReportList .projectCard .projectInfo h3 {
  font-size: 21px;
  margin-bottom: 20px;
  font-weight: 400;
}

@media only screen and (max-width: 767px) {
  .projectReportList .projectCard .projectInfo h3 {
    font-size: 5vw;
    margin-bottom: 10px;
  }
}

.projectReportList .projectCard .projectInfo .groupName {
  margin-bottom: 10px;
  color: #999;
}

@media only screen and (max-width: 767px) {
  .projectReportList .projectCard .projectInfo .groupName {
    font-size: 3.2vw;
    margin-bottom: 5px;
  }
}

.projectReportList .projectCard .projectInfo dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  color: #999;
}

@media only screen and (max-width: 767px) {
  .projectReportList .projectCard .projectInfo dl {
    font-size: 3.2vw;
  }
}

.projectReportList .projectCard .projectInfo dl dd {
  font-family: 'Barlow', sans-serif;
}

.projectReportList .projectCard .projectInfo dl dd:first-child {
  padding-right: 12px;
}

.projectReportList .projectCard a {
  display: block;
  background-color: #fff;
  -webkit-filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.2));
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  padding-left: 120px;
  -webkit-transition-duration: .3s;
          transition-duration: .3s;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}

@media only screen and (max-width: 767px) {
  .projectReportList .projectCard a {
    padding-left: 80px;
  }
}

.projectReportList .projectCard a:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-filter: drop-shadow(0px 0px 7px rgba(0, 0, 0, 0.4));
          filter: drop-shadow(0px 0px 7px rgba(0, 0, 0, 0.4));
}

.projectReportList .projectCard.finish a {
  background-color: rgba(0, 0, 0, 0.22);
}

.projectReportList .projectCard.finish a .projectInfo {
  padding: 20px;
}

.projectReportList .projectCard.finish a .projectInfo h3 {
  color: rgba(255, 255, 255, 0.74);
}

.projectReportList .projectCard.finish a .projectInfo .groupName {
  color: rgba(255, 255, 255, 0.54);
}

.projectReportList .projectCard.finish a .projectInfo dl {
  color: rgba(255, 255, 255, 0.54);
}

.projectHeader {
  margin-bottom: 24px;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.projectHeader .projectDetailInner {
  padding: 60px 40px 40px 40px;
  background-color: #fff;
  border-radius: 5px 5px 0px 0px;
  overflow: hidden;
}

@media only screen and (max-width: 767px) {
  .projectHeader .projectDetailInner {
    padding: 9vw 5vw 6vw 5vw;
  }
}

.projectHeader .projectDetailInner .projectTitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media only screen and (max-width: 767px) {
  .projectHeader .projectDetailInner .projectTitle {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.projectHeader .projectDetailInner .projectTitle > .icon {
  width: 240px;
  height: 240px;
  background-color: #fff;
  background-image: url(../images/noimg.jpg);
  background-position: center center;
  background-size: cover;
  border-radius: 50%;
  -webkit-filter: drop-shadow(0px 0px 2px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(0px 0px 2px rgba(0, 0, 0, 0.1));
  position: absolute;
  left: -36px;
  top: -36px;
}

@media only screen and (max-width: 767px) {
  .projectHeader .projectDetailInner .projectTitle > .icon {
    width: 110px;
    height: 110px;
    left: -30px;
    top: 10px;
  }
}

.projectHeader .projectDetailInner .projectTitle .groupName {
  font-size: 12px;
  margin-top: 10px;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: inline-block;
  width: auto;
  text-align: center;
}

.projectHeader .projectDetailInner .projectTitle .groupName p {
  display: inline-block;
  height: 20px;
  line-height: 20px;
  padding: 0 10px;
  border-radius: 0 0 5px 5px;
  background-color: #333;
}

.projectHeader .projectDetailInner .projectTitle .projectInfo {
  padding-left: 210px;
}

@media only screen and (max-width: 767px) {
  .projectHeader .projectDetailInner .projectTitle .projectInfo {
    width: 100%;
    margin-top: 16px;
    text-align: center;
    padding-left: 0;
  }
}

.projectHeader .projectDetailInner .projectTitle .projectInfo h3 {
  font-size: 42px;
  margin-bottom: 8px;
}

@media only screen and (max-width: 767px) {
  .projectHeader .projectDetailInner .projectTitle .projectInfo h3 {
    font-size: 6vw;
    padding-left: 80px;
    text-align: left;
  }
}

.projectHeader .projectDetailInner .projectTitle .projectInfo .groupName {
  margin-bottom: 16px;
}

.projectHeader .projectDetailInner .projectTitle .projectInfo .projectComment {
  margin-top: 48px;
  line-height: 1.3;
}

@media only screen and (max-width: 767px) {
  .projectHeader .projectDetailInner .projectTitle .projectInfo .projectComment {
    margin-top: 32px;
    text-align: left;
  }
}

.projectHeader .projectDetailInner .iconWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (max-width: 767px) {
  .projectHeader .projectDetailInner .iconWrap {
    width: 100%;
    margin-bottom: 32px;
  }
}

.projectHeader .projectDetailInner .iconWrap .iconWrapInner {
  position: relative;
  padding-bottom: 10px;
  padding-right: 10px;
}

.projectHeader .projectDetailInner .iconWrap .iconWrapInner .projectIcon {
  width: 160px;
  height: 160px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 50%;
}

.projectHeader .projectDetailInner .iconWrap .iconWrapInner .statusIcon {
  width: 48px;
  height: 48px;
  background-color: #fff;
  background-image: url(../images/icon/start.svg);
  background-position: center center;
  background-size: cover;
  border-radius: 24px;
  -webkit-filter: drop-shadow(0px 0px 2px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(0px 0px 2px rgba(0, 0, 0, 0.1));
  position: absolute;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.projectHeader .projectDetailInner .iconWrap .iconWrapInner .statusIcon.status1 {
  background-image: url(../images/icon/start.svg);
}

.projectHeader .projectDetailInner .iconWrap .iconWrapInner .statusIcon.status5 {
  background-image: url(../images/icon/help.svg);
}

.projectHeader .projectDetailInner .iconWrap .iconWrapInner .statusIcon.status3 {
  background-image: url(../images/icon/stay.svg);
}

.projectHeader .projectDetailInner .iconWrap .iconWrapInner .statusIcon.status2 {
  background-image: url(../images/icon/hurry.svg);
}

.projectHeader .projectDetailInner .iconWrap .iconWrapInner .statusIcon.status4 {
  background-image: url(../images/icon/important.svg);
}

.projectHeader .projectDetailInner .projectInfo {
  width: calc(100% - 200px);
}

@media only screen and (max-width: 767px) {
  .projectHeader .projectDetailInner .projectInfo {
    width: 100%;
  }
}

.projectHeader .projectDetailInner dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  color: #606060;
  font-size: 17px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

@media only screen and (max-width: 767px) {
  .projectHeader .projectDetailInner dl {
    font-size: 3.2vw;
    padding-left: 80px;
  }
}

.projectHeader .projectDetailInner dl dd {
  font-family: 'Barlow', sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.projectHeader .projectDetailInner dl dd:first-child {
  padding-right: 16px;
}

.projectHeader .projectDetailInner dl dd .itemName {
  font-size: 12px;
  color: #666;
}

.projectHeader .projectDetailInner .projectUser ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: 12px;
}

@media only screen and (max-width: 767px) {
  .projectHeader .projectDetailInner .projectUser ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.projectHeader .projectDetailInner .projectUser ul .icon {
  width: 48px;
  height: 48px;
  border: 2px solid #fff;
  background-size: cover;
  background-image: url(../images/unnamed.png);
  border-radius: 24px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-right: -8px;
}

@media only screen and (max-width: 767px) {
  .projectHeader .projectDetailInner .projectUser ul .icon {
    width: 30px;
    height: 30px;
  }
}

.projectHeader .numWrap {
  background-color: #fafafa;
  border-radius: 0px 0px 5px 5px;
}

.projectHeader .numWrap ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.projectHeader .numWrap ol li {
  text-align: center;
  padding: 20px;
}

@media only screen and (max-width: 767px) {
  .projectHeader .numWrap ol li {
    padding: 20px 3vw;
  }
}

.projectHeader .numWrap ol li .num {
  font-family: 'Barlow', sans-serif;
  font-size: 24px;
}

@media only screen and (max-width: 767px) {
  .projectHeader .numWrap ol li .num {
    font-size: 5vw;
  }
}

.projectHeader .numWrap ol li .item {
  font-size: 80%;
  margin-top: 5px;
}

.taskNum {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 24px;
  color: #fff;
}

.workTimeList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.workTimeList .workTimeCard {
  text-align: center;
  background-color: #fff;
  padding: 24px;
  border-radius: 5px;
  -webkit-filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.2));
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 14%;
  margin-right: calc(2% / 6);
  margin-bottom: calc(2% / 6);
}

.workTimeList .workTimeCard:nth-child(7n) {
  margin-right: 0;
}

@media only screen and (max-width: 767px) {
  .workTimeList .workTimeCard {
    width: 32%;
    margin-right: 2%;
    margin-bottom: 2%;
  }
  .workTimeList .workTimeCard:nth-child(7n) {
    margin-right: 2%;
  }
  .workTimeList .workTimeCard:nth-child(3n) {
    margin-right: 0;
  }
}

.workTimeList .workTimeCard .workDay {
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  margin-bottom: 5px;
}

.workTimeList .workTimeCard .workTime {
  font-family: 'Barlow', sans-serif;
  font-size: 24px;
}

.workTimeList .workTimeCard .workTime span {
  font-family: 'Barlow', sans-serif;
  font-size: 60%;
}

.memberList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.memberList .memberCard {
  width: 23.5%;
  margin-right: 2%;
  margin-bottom: 2%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.2));
  border-radius: 5px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
}

.memberList .memberCard:nth-child(4n) {
  margin-right: 0;
}

@media only screen and (max-width: 767px) {
  .memberList .memberCard {
    width: 49%;
    margin-right: 2%;
  }
  .memberList .memberCard:nth-child(4n) {
    margin-right: 0;
  }
  .memberList .memberCard:nth-child(2n) {
    margin-right: 0;
  }
}

.memberList .memberCard a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  position: relative;
  overflow: hidden;
  background-color: #fff;
  border-radius: 5px;
  -webkit-transition-duration: .3s;
          transition-duration: .3s;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media only screen and (max-width: 767px) {
  .memberList .memberCard a {
    padding-top: 0px;
  }
}

.memberList .memberCard a:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-filter: drop-shadow(0px 0px 7px rgba(0, 0, 0, 0.4));
          filter: drop-shadow(0px 0px 7px rgba(0, 0, 0, 0.4));
}

.memberList .memberCard .userIcon {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-position: center center;
  background-size: cover;
  border: 1px solid #fafafa;
  margin: 0 auto;
  background-image: url(../images/usericon.jpg);
}

@media only screen and (max-width: 767px) {
  .memberList .memberCard .userIcon {
    width: 100px;
    height: 100px;
    left: -24px;
    top: -24px;
  }
}

.memberList .memberCard .memberInfo {
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .memberList .memberCard .memberInfo {
    padding: 16px;
  }
}

.memberList .memberCard .groupName {
  margin-bottom: 20px;
}

.memberList .memberCard .userName {
  margin-bottom: 20px;
  font-size: 21px;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .memberList .memberCard .userName {
    font-size: 4.7vw;
    margin-bottom: 20px;
  }
}

.memberList .memberCard .userNum {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}

.memberList .memberCard .userNum dl {
  text-align: center;
  padding: 0 10px;
}

.memberList .memberCard .userNum dl dt {
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  font-size: 10px;
  color: #333;
  opacity: 0.5;
}

.memberList .memberCard .userNum dl dd {
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  font-size: 32px;
  margin-bottom: 5px;
}

.memberList .memberCard .detailLink {
  width: 40px;
  height: 100%;
}

.memberList .memberCard .detailLink a {
  display: block;
  height: 100%;
  background-color: #fafafa;
  position: relative;
}

.memberList .memberCard .detailLink a span {
  width: 20px;
  height: 1px;
  background-color: #666;
  display: inline-block;
  position: absolute;
  right: 0;
  left: 0;
  margin: 0 auto;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

@media only screen and (max-width: 767px) {
  .memberList .memberCard .detailLink a span {
    width: 20px;
  }
}

.memberList .memberCard .detailLink a span:last-child {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 10px;
  margin: 0 auto;
  margin-top: -3px;
  right: -12px;
}

.memberMonthList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 48px;
}

@media only screen and (max-width: 767px) {
  .memberMonthList {
    margin-top: 24px;
  }
}

.memberMonthList .monthlyCard {
  width: 49%;
  margin-bottom: 2%;
}

@media only screen and (max-width: 767px) {
  .memberMonthList .monthlyCard {
    width: 100%;
  }
}

.memberMonthList .monthlyCard a {
  display: block;
  background-color: #fff;
  -webkit-filter: drop-shadow(0px 0px 12px rgba(7, 27, 72, 0.5));
          filter: drop-shadow(0px 0px 12px rgba(7, 27, 72, 0.5));
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-transition-duration: .3s;
          transition-duration: .3s;
}

.memberMonthList .monthlyCard a:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-filter: drop-shadow(0px 0px 7px rgba(0, 0, 0, 0.4));
          filter: drop-shadow(0px 0px 7px rgba(0, 0, 0, 0.4));
}

.memberMonthList .monthlyCard a .monthWrap {
  background-color: #153e7c;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 24px;
  border-radius: 5px 0px 0px 5px;
}

@media only screen and (max-width: 767px) {
  .memberMonthList .monthlyCard a .monthWrap {
    padding: 4vw;
  }
}

.memberMonthList .monthlyCard a .monthWrap .monthlyInner {
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .memberMonthList .monthlyCard a .monthWrap .monthlyInner p {
    font-size: 3vw;
  }
}

.memberMonthList .monthlyCard a .monthWrap .monthlyInner p:last-child {
  font-size: 24px;
  padding-top: 6px;
}

@media only screen and (max-width: 767px) {
  .memberMonthList .monthlyCard a .monthWrap .monthlyInner p:last-child {
    font-size: 4.5vw;
  }
}

.memberMonthList .monthlyCard a .monthNum {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 24px;
}

@media only screen and (max-width: 767px) {
  .memberMonthList .monthlyCard a .monthNum {
    padding: 4vw;
  }
}

.memberMonthList .monthlyCard a .monthNum dl {
  text-align: center;
  margin-right: 16px;
}

.memberMonthList .monthlyCard a .monthNum dl dt {
  font-size: 12px;
  margin-bottom: 5px;
}

.memberMonthList .monthlyCard a .monthNum dl dd {
  font-family: 'Barlow', sans-serif;
  font-size: 28px;
}

@media only screen and (max-width: 767px) {
  .memberMonthList .monthlyCard a .monthNum dl dd {
    font-size: 6vw;
  }
}

.memberHeader {
  -webkit-filter: drop-shadow(0px 0px 12px rgba(7, 27, 72, 0.5));
          filter: drop-shadow(0px 0px 12px rgba(7, 27, 72, 0.5));
}

.memberHeader .memberNameWrap {
  text-align: center;
  padding: 68px 0 48px 0;
  border-radius: 5px 5px 0px 0px;
  background-color: #fff;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .memberHeader .memberNameWrap {
    padding: 48px 0 24px 0;
  }
}

.memberHeader .memberNameWrap.redColor .flock_name p {
  background-color: #ed5c72;
}

.memberHeader .memberNameWrap.blueColor .flock_name p {
  background-color: #5cb5ed;
}

.memberHeader .memberNameWrap.blueGreenColor .flock_name p {
  background-color: #3fd8d2;
}

.memberHeader .memberNameWrap.purpleColor .flock_name p {
  background-color: #b782d3;
}

.memberHeader .memberNameWrap.orangeColor .flock_name p {
  background-color: #ebad58;
}

.memberHeader .memberNameWrap.pinkColor .flock_name p {
  background-color: #ed8ccb;
}

.memberHeader .memberNameWrap.greenColor .flock_name p {
  background-color: #72db8e;
}

.memberHeader .memberNameWrap.yellowColor p .flock_name {
  background-color: #ebd245;
}

.memberHeader .memberNameWrap.bluePurpleColor p .flock_name {
  background-color: #7c73e8;
}

.memberHeader .memberNameWrap.grayColor .flock_name p {
  background-color: #b9b9b8;
}

.memberHeader .memberNameWrap .flock_name {
  font-size: 12px;
  color: #fff;
  margin: 0 auto;
  display: inline-block;
  width: auto;
  text-align: center;
  margin-bottom: 16px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: 0 auto;
  width: auto;
}

.memberHeader .memberNameWrap .flock_name p {
  display: inline-block;
  height: 20px;
  line-height: 20px;
  padding: 0 10px;
  border-radius: 0 0 5px 5px;
  background-color: #333;
}

.memberHeader .memberNameWrap {
  text-align: center;
  padding: 68px 0 48px 0;
  border-radius: 5px 5px 0px 0px;
  background-color: #fff;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .memberHeader .memberNameWrap {
    padding: 48px 0 24px 0;
  }
}

.memberHeader .memberNameWrap.redColor .flock_name p {
  background-color: #ed5c72;
}

.memberHeader .memberNameWrap.blueColor .flock_name p {
  background-color: #5cb5ed;
}

.memberHeader .memberNameWrap.blueGreenColor .flock_name p {
  background-color: #3fd8d2;
}

.memberHeader .memberNameWrap.purpleColor .flock_name p {
  background-color: #b782d3;
}

.memberHeader .memberNameWrap.orangeColor .flock_name p {
  background-color: #ebad58;
}

.memberHeader .memberNameWrap.pinkColor .flock_name p {
  background-color: #ed8ccb;
}

.memberHeader .memberNameWrap.greenColor .flock_name p {
  background-color: #72db8e;
}

.memberHeader .memberNameWrap.yellowColor p .flock_name {
  background-color: #ebd245;
}

.memberHeader .memberNameWrap.bluePurpleColor p .flock_name {
  background-color: #7c73e8;
}

.memberHeader .memberNameWrap.grayColor .flock_name p {
  background-color: #b9b9b8;
}

.memberHeader .memberNameWrap .flock_name {
  font-size: 12px;
  color: #fff;
  margin: 0 auto;
  display: inline-block;
  width: auto;
  text-align: center;
  margin-bottom: 16px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: 0 auto;
  width: auto;
}

.memberHeader .memberNameWrap .flock_name p {
  display: inline-block;
  height: 20px;
  line-height: 20px;
  padding: 0 10px;
  border-radius: 0 0 5px 5px;
  background-color: #333;
}

.memberHeader .memberNameWrap .userIcon {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-size: cover;
  background-position: center center;
  display: inline-block;
  margin-bottom: 8px;
  border: 1px solid #f8f8f8;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media only screen and (max-width: 767px) {
  .memberHeader .memberNameWrap .userIcon {
    width: 100px;
    height: 100px;
  }
}

.memberHeader .memberNameWrap h3 {
  font-size: 24px;
}

.memberHeader .memberNameWrap p {
  font-size: 15px;
}

@media only screen and (max-width: 767px) {
  .memberHeader .memberNameWrap p {
    font-size: 4vw;
  }
}

.dateControl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0px 16px 16px 16px;
}

.dateControl .date {
  font-family: 'Barlow', sans-serif;
  font-size: 32px;
  color: #fff;
  line-height: 1;
  padding: 0 16px;
}

@media only screen and (max-width: 767px) {
  .dateControl .date {
    font-size: 24px;
  }
}

.dateControl button {
  background: none;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  width: 24px;
  height: 24px;
  cursor: pointer;
  padding: 0;
  margin: 0;
}

.dateControl button:after {
  content: "";
  position: absolute;
  left: 10px;
  width: 12px;
  height: 12px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  top: 8px;
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
  -webkit-transition-duration: .3s;
          transition-duration: .3s;
}

@media only screen and (max-width: 767px) {
  .dateControl button:after {
    width: 8px;
    height: 8px;
  }
}

.dateControl button:hover:after {
  left: 4px;
}

.dateControl button.nextBtn:after {
  left: auto;
  right: 10px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.dateControl button.nextBtn:hover:after {
  right: 4px;
}

.memberDayList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 48px;
}

@media only screen and (max-width: 767px) {
  .memberDayList {
    margin-top: 24px;
  }
}

.memberDayList .memberDayCard {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 49.5%;
  margin-right: 1%;
  margin-bottom: 1%;
  -webkit-filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.2));
}

.memberDayList .memberDayCard:nth-child(2n) {
  margin-right: 0;
}

@media only screen and (max-width: 767px) {
  .memberDayList .memberDayCard {
    width: 100%;
    margin-right: 0%;
  }
}

.memberDayList .memberDayCard .day {
  background-color: #153e7c;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 95px;
  padding: 16px 0;
  border-radius: 5px 0 0 5px;
}

.memberDayList .memberDayCard .day .dayInner {
  text-align: center;
}

.memberDayList .memberDayCard .day .dayInner .days {
  font-family: 'Barlow', sans-serif;
  font-size: 24px;
}

@media only screen and (max-width: 767px) {
  .memberDayList .memberDayCard .day .dayInner .days {
    font-size: 4.5vw;
  }
}

.memberDayList .memberDayCard .day .dayInner .weekly {
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
}

.memberDayList .memberDayCard .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: calc(100% - 110px);
  padding: 0 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #fff;
}

.memberDayList .memberDayCard .info dl {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-right: 20px;
  line-height: 1;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .memberDayList .memberDayCard .info dl {
    width: 70px;
    padding-right: 0px;
  }
}

.memberDayList .memberDayCard .info dl dt {
  color: #666;
  font-size: 12px;
  padding-right: 5px;
  line-height: 1;
  width: 100%;
  padding-bottom: 6px;
}

@media only screen and (max-width: 767px) {
  .memberDayList .memberDayCard .info dl dt {
    width: 70px;
    font-size: 10px;
    padding-right: 0;
  }
}

.memberDayList .memberDayCard .info dl dd {
  color: #000;
  font-family: 'Barlow', sans-serif;
  font-size: 26px;
  line-height: 1;
  margin-bottom: 0;
  display: inline-block;
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .memberDayList .memberDayCard .info dl dd {
    width: 70px;
    text-align: center;
    font-size: 5vw;
  }
}

.memberDayList .memberDayCard .detailLink {
  width: 40px;
  height: 100%;
}

.memberDayList .memberDayCard .detailLink a {
  display: block;
  height: 100%;
  background-color: #fafafa;
  position: relative;
}

.memberDayList .memberDayCard .detailLink a span {
  width: 20px;
  height: 1px;
  background-color: #666;
  display: inline-block;
  position: absolute;
  right: 0;
  left: 0;
  margin: 0 auto;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

@media only screen and (max-width: 767px) {
  .memberDayList .memberDayCard .detailLink a span {
    width: 20px;
  }
}

.memberDayList .memberDayCard .detailLink a span:last-child {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 10px;
  margin: 0 auto;
  margin-top: -3px;
  right: -12px;
}

#main header .numWrap {
  padding: 24px 0;
  border-radius: 0px 0px 5px 5px;
  background-color: #fafafa;
  position: relative;
}

#main header .numWrap:after {
  position: absolute;
  left: 0;
  right: 0;
  width: calc(100% - 10px);
  top: 0;
  margin: 0 auto;
  height: 2px;
  border-top: 1px dotted #ccc;
  content: "";
}

@media only screen and (max-width: 767px) {
  #main header .numWrap {
    padding: 5vw 0;
  }
}

#main header .numWrap ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#main header .numWrap ol li {
  text-align: center;
  padding: 0 12px;
}

@media only screen and (max-width: 767px) {
  #main header .numWrap ol li {
    padding: 0 2vw;
  }
}

#main header .numWrap ol li .item {
  font-size: 12px;
  margin-bottom: 5px;
}

@media only screen and (max-width: 767px) {
  #main header .numWrap ol li .item {
    font-size: 10px;
  }
}

#main header .numWrap ol li .num {
  font-family: 'Barlow', sans-serif;
  font-size: 32px;
}

@media only screen and (max-width: 767px) {
  #main header .numWrap ol li .num {
    font-size: 6.5vw;
  }
}

#main header .numWrap ol li .num span {
  font-family: 'Barlow', sans-serif;
}

.workTaskList {
  margin-top: 48px;
}

@media only screen and (max-width: 767px) {
  .workTaskList {
    margin-top: 24px;
  }
}

.workTaskList .workTaskCard {
  padding: 16px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-filter: drop-shadow(0px 0px 12px rgba(7, 27, 72, 0.5));
          filter: drop-shadow(0px 0px 12px rgba(7, 27, 72, 0.5));
  border-radius: 5px;
  margin-bottom: 2%;
}

.workTaskList .workTaskCard.blueColor {
  border-left: 5px solid #5cb5ed;
}

.workTaskList .workTaskCard.finish {
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0.5;
}

.workTaskList .workTaskCard.finish .taskInfo p {
  color: #fff;
}

.workTaskList .workTaskCard.finish .taskInfo h3 {
  color: #fff;
}

.workTaskList .workTaskCard.finish .workTime {
  color: #fff;
}

.workTaskList .workTaskCard .taskIcon {
  width: 40px;
  height: 40px;
  background-color: #999;
  border-radius: 20px;
  background-size: cover;
  background-position: center center;
}

.workTaskList .workTaskCard .statusIcon {
  width: 40px;
  height: 40px;
  background-color: #999;
  border-radius: 20px;
  background-size: cover;
  background-position: center center;
}

.workTaskList .workTaskCard .taskInfo {
  width: calc(100% - 142px);
}

.workTaskList .workTaskCard .taskInfo p {
  margin-bottom: 5px;
  line-height: 1.2;
}

@media only screen and (max-width: 767px) {
  .workTaskList .workTaskCard .taskInfo p {
    font-size: 3.5vw;
  }
}

.workTaskList .workTaskCard .taskInfo h3 {
  font-size: 20px;
  line-height: 1.2;
}

@media only screen and (max-width: 767px) {
  .workTaskList .workTaskCard .taskInfo h3 {
    font-size: 4.5vw;
  }
}

.workTaskList .workTaskCard .workTime {
  width: 100px;
  font-family: 'Barlow', sans-serif;
  font-size: 32px;
  text-align: right;
}

@media only screen and (max-width: 767px) {
  .workTaskList .workTaskCard .workTime {
    font-size: 6.5vw;
  }
}

.taskHeader {
  position: relative;
  margin-bottom: 32px;
}

.taskHeader .projectDetailInner {
  padding: 40px;
  border-radius: 5px 5px 0 0;
  background-color: #fff;
}

.taskHeader .groupName {
  font-size: 12px;
  margin-top: 10px;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: inline-block;
  width: auto;
  text-align: center;
}

.taskHeader .groupName p {
  display: inline-block;
  height: 20px;
  line-height: 20px;
  padding: 0 10px;
  border-radius: 0 0 5px 5px;
  background-color: #333;
}

.taskHeader .iconWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.taskHeader .iconWrap .iconWrapInner {
  position: relative;
}

.taskHeader .iconWrap .iconWrapInner .projectIcon {
  width: 160px;
  height: 160px;
  background-position: center center;
  background-size: cover;
  border-radius: 50%;
}

@media only screen and (max-width: 767px) {
  .taskHeader .iconWrap .iconWrapInner .projectIcon {
    width: 120px;
    height: 120px;
  }
}

.taskHeader .iconWrap .iconWrapInner .statusIcon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.2));
  background-image: url(../images/icon/start.svg);
  background-size: cover;
  overflow: hidden;
}

@media only screen and (max-width: 767px) {
  .taskHeader .iconWrap .iconWrapInner .statusIcon {
    width: 36px;
    height: 36px;
  }
}

.taskHeader .iconWrap .iconWrapInner .statusIcon.status1 {
  background-image: url(../images/icon/start.svg);
}

.taskHeader .iconWrap .iconWrapInner .statusIcon.status5 {
  background-image: url(../images/icon/help.svg);
}

.taskHeader .iconWrap .iconWrapInner .statusIcon.status3 {
  background-image: url(../images/icon/stay.svg);
}

.taskHeader .iconWrap .iconWrapInner .statusIcon.status2 {
  background-image: url(../images/icon/hurry.svg);
}

.taskHeader .iconWrap .iconWrapInner .statusIcon.status4 {
  background-image: url(../images/icon/important.svg);
}

.taskHeader .iconWrap .iconWrapInner .statusIcon img {
  width: 0px;
}

.taskHeader .projectInfo {
  margin-top: 32px;
}

@media only screen and (max-width: 767px) {
  .taskHeader .projectInfo {
    margin-top: 16px;
  }
}

.taskHeader .projectInfo .project_comment {
  text-align: center;
}

.taskHeader .projectInfo h3 {
  text-align: center;
  margin-bottom: 10px;
  font-size: 30px;
}

@media only screen and (max-width: 767px) {
  .taskHeader .projectInfo h3 {
    font-size: 6vw;
  }
}

.taskHeader .projectInfo .project_name {
  text-align: center;
  color: #153e7c;
}

.taskHeader .projectInfo dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 48px;
  margin-bottom: 32px;
}

@media only screen and (max-width: 767px) {
  .taskHeader .projectInfo dl {
    margin-top: 30px;
  }
}

.taskHeader .projectInfo dl dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-left: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-family: 'Barlow', sans-serif;
  font-size: 18px;
}

@media only screen and (max-width: 767px) {
  .taskHeader .projectInfo dl dd {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-left: 10px;
  }
}

.taskHeader .projectInfo dl dd:first-child {
  margin-left: 0;
}

.taskHeader .projectInfo dl dd p {
  font-size: 80%;
  padding-right: 10px;
}

@media only screen and (max-width: 767px) {
  .taskHeader .projectInfo dl dd p {
    width: 100%;
    text-align: center;
    font-size: 12px;
    margin-bottom: 6px;
    padding-right: 0;
  }
}

.taskHeader .projectInfo dl dd span {
  font-family: 'Barlow', sans-serif;
  font-size: 18px;
}

.reportMemberList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.reportMemberList .memberCard {
  width: calc(50% - 10px);
  background-color: #fff;
  border-radius: 3px;
  -webkit-filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.2));
  margin-right: 20px;
  margin-top: 20px;
  padding: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 4px;
  background-color: #fafafa;
}

.reportMemberList .memberCard:nth-child(2n) {
  margin-right: 0;
}

@media only screen and (max-width: 1023px) {
  .reportMemberList .memberCard {
    width: 100%;
    margin: 0;
    margin-top: 20px;
  }
}

.reportMemberList .memberCard a {
  position: relative;
  width: 100%;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 30px;
}

.reportMemberList .memberCard a:hover:after {
  background-color: #153e7c;
  right: 9px;
}

.reportMemberList .memberCard a:hover:before {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  right: 19px;
}

.reportMemberList .memberCard a:after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-color: #fff;
  border-radius: 50%;
  -webkit-transition-duration: .3s;
          transition-duration: .3s;
}

.reportMemberList .memberCard a:before {
  content: "";
  position: absolute;
  right: 22px;
  width: 7px;
  height: 7px;
  border-top: 1px solid #153e7c;
  border-right: 1px solid #153e7c;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  -webkit-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
  z-index: 2;
  -webkit-transition-duration: .3s;
          transition-duration: .3s;
}

.reportMemberList .memberCard .flockList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.reportMemberList .memberCard .flockList li {
  width: calc((100% / 2) - 10px);
  margin-right: 20px;
  margin-top: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.reportMemberList .memberCard .flockList li:nth-child(-n+2) {
  margin-top: 0;
}

.reportMemberList .memberCard .flockList li:nth-child(2n) {
  margin-right: 0;
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .reportMemberList .memberCard .flockList li {
    width: calc((100% / 3) - 20px);
  }
  .reportMemberList .memberCard .flockList li:nth-child(2n) {
    margin-right: 20px;
  }
  .reportMemberList .memberCard .flockList li:nth-child(3n) {
    margin-right: 00px;
  }
  .reportMemberList .memberCard .flockList li:nth-child(3n) {
    margin-right: 20px;
  }
  .reportMemberList .memberCard .flockList li:nth-child(-n+3) {
    margin-top: 0;
  }
}

@media only screen and (max-width: 767px) {
  .reportMemberList .memberCard .flockList li {
    width: calc(50% - 5px);
    margin-right: 10px;
    margin-top: 20px;
  }
  .reportMemberList .memberCard .flockList li:nth-child(-n+3) {
    margin-top: 20px;
  }
  .reportMemberList .memberCard .flockList li:nth-child(3n) {
    margin-right: 10px;
  }
  .reportMemberList .memberCard .flockList li:nth-child(-n+2) {
    margin-top: 0px;
  }
  .reportMemberList .memberCard .flockList li:nth-child(2n) {
    margin-right: 0px;
  }
}

.reportMemberList .memberCard .memberInfo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.reportMemberList .memberCard .memberInfo .userIcon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-position: center center;
  background-size: cover;
  border: 1px solid #eee;
}

@media only screen and (max-width: 767px) {
  .reportMemberList .memberCard .memberInfo .userIcon {
    width: 80px;
    height: 80px;
  }
}

.reportMemberList .memberCard .memberInfo .userInfo {
  padding-left: 20px;
}

.reportMemberList .memberCard .memberInfo .userInfo .userBelongs {
  font-size: 13px;
  margin-bottom: 5px;
}

.reportMemberList .memberCard .memberInfo .userInfo .userName {
  font-size: 22px;
}

.memberHeader {
  background-color: #fff;
  border-radius: 6px;
  -webkit-filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.2));
  margin-bottom: 24px;
}

.memberHeader.redColor .flock_name {
  background-color: #ed5c72;
}

.memberHeader.blueColor .flock_name {
  background-color: #5cb5ed;
}

.memberHeader.blueGreenColor .flock_name {
  background-color: #3fd8d2;
}

.memberHeader.purpleColor .flock_name {
  background-color: #b782d3;
}

.memberHeader.orangeColor .flock_name {
  background-color: #ebad58;
}

.memberHeader.pinkColor .flock_name {
  background-color: #ed8ccb;
}

.memberHeader.greenColor .flock_name {
  background-color: #72db8e;
}

.memberHeader.yellowColor .flock_name {
  background-color: #ebd245;
}

.memberHeader.bluePurpleColor .flock_name {
  background-color: #7c73e8;
}

.memberHeader.grayColor .flock_name {
  background-color: #b9b9b8;
}

.memberHeader .flock_name {
  background-color: #000;
  color: #fff;
  padding: 12px 0;
  text-align: center;
  border-radius: 6px 6px 0 0;
  font-weight: 600;
}

.memberHeader .memberInfo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 0;
}

.memberHeader .memberInfo .userIcon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-position: center center;
  background-size: cover;
  border: 1px solid #eee;
}

@media only screen and (max-width: 767px) {
  .memberHeader .memberInfo .userIcon {
    width: 80px;
    height: 80px;
  }
}

.memberHeader .memberInfo .userInfo {
  padding-left: 20px;
}

.memberHeader .memberInfo .userInfo .userBelongs {
  font-size: 13px;
  margin-bottom: 5px;
  color: #666;
}

.memberHeader .memberInfo .userInfo .memberName {
  font-size: 22px;
}

.memberHeader .dayNum {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 0;
  background-color: #F4F5F7;
  border-radius: 0 0 6px 6px;
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.memberHeader .dayNum .day {
  font-family: 'Barlow', sans-serif;
  font-size: 22px;
  padding-right: 16px;
  font-weight: 500;
}

@media only screen and (max-width: 767px) {
  .memberHeader .dayNum .day {
    font-size: 18px;
    padding-left: 0;
    width: 100%;
    margin-bottom: 10px;
    text-align: center;
  }
}

.memberHeader .dayNum .day span {
  font-size: 60%;
  color: #333;
  padding-left: 5px;
}

.memberHeader .dayNum .numWrap ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.memberHeader .dayNum .numWrap ol li {
  text-align: center;
  margin-left: 20px;
  margin-top: 8px;
}

.memberHeader .dayNum .numWrap ol li:first-child {
  margin-left: 0;
}

.memberHeader .dayNum .numWrap ol li .item {
  font-size: 10px;
  line-height: 1;
  padding-bottom: 5px;
  color: #5e6c84;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

.memberHeader .dayNum .numWrap ol li .num {
  font-family: 'Barlow', sans-serif;
  font-size: 32px;
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .memberHeader .dayNum .numWrap ol li .num {
    font-size: 5vw;
  }
}

@media only screen and (max-width: 767px) {
  .memberHeader .dayNum .numWrap ol li .num {
    font-size: 7vw;
  }
}

.perfomanceWrap {
  background-color: #fff;
  border-radius: 6px;
  -webkit-filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.2));
  margin: 24px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 20px;
}

.perfomanceWrap h4 {
  text-align: center;
  font-weight: bold;
  width: 100%;
  margin-bottom: 24px;
}

@media only screen and (max-width: 767px) {
  .perfomanceWrap h4 {
    width: 100%;
    text-align: center;
    padding-right: 0;
    margin-bottom: 12px;
  }
}

.perfomanceWrap .numWrap ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.perfomanceWrap .numWrap ol li {
  text-align: center;
  margin-left: 20px;
}

.perfomanceWrap .numWrap ol li:first-child {
  margin-left: 0;
}

.perfomanceWrap .numWrap ol li .item {
  font-size: 10px;
  line-height: 1;
  padding-bottom: 5px;
  color: #5e6c84;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

.perfomanceWrap .numWrap ol li .num {
  font-family: 'Barlow', sans-serif;
  font-size: 32px;
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .perfomanceWrap .numWrap ol li .num {
    font-size: 5vw;
  }
}

@media only screen and (max-width: 767px) {
  .perfomanceWrap .numWrap ol li .num {
    font-size: 7vw;
  }
}

.dayWorkList {
  background-color: #fff;
  border-radius: 6px;
  -webkit-filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.2));
  margin-top: 24px;
  padding: 20px;
}

.dayWorkList .dayWorkHeader {
  padding-right: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

@media only screen and (max-width: 767px) {
  .dayWorkList .dayWorkHeader {
    padding-right: 30px;
  }
}

.dayWorkList .dayWorkHeader dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.dayWorkList .dayWorkHeader dl dd {
  font-size: 10px;
  width: 60px;
  text-align: center;
  color: #5e6c84;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

.dayWorkList .dayWorkHeader dl dd:nth-child(2) {
  width: 40px;
}

.dayWorkList ul li {
  width: 100%;
  border-bottom: 1px solid #eee;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.dayWorkList ul li > .day {
  font-family: 'Barlow', sans-serif;
  font-size: 22px;
  padding-left: 16px;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #b4b4b4;
}

@media only screen and (max-width: 767px) {
  .dayWorkList ul li > .day {
    font-size: 16px;
    padding-left: 0;
  }
}

.dayWorkList ul li > .day span {
  font-size: 60%;
  color: #b4b4b4;
  padding-left: 5px;
}

.dayWorkList ul li > dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-right: 40px;
  color: #b4b4b4;
}

.dayWorkList ul li > dl dd {
  font-family: 'Barlow', sans-serif;
  font-size: 22px;
  width: 60px;
  text-align: center;
  color: #b4b4b4;
}

.dayWorkList ul li > dl dd:nth-child(2) {
  width: 40px;
}

@media only screen and (max-width: 767px) {
  .dayWorkList ul li > dl dd {
    font-size: 20px;
    padding-left: 0;
  }
}

.dayWorkList ul li > dl dd span {
  font-size: 80%;
  color: #b4b4b4;
}

.dayWorkList ul li.sat a .day {
  color: #97cad6;
}

.dayWorkList ul li.sat a .day span {
  color: #97cad6;
}

.dayWorkList ul li.sun a .day {
  color: #d697b2;
}

.dayWorkList ul li.sun a .day span {
  color: #d697b2;
}

.dayWorkList ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 40px 20px 0;
  position: relative;
  -webkit-transition-duration: .3s;
          transition-duration: .3s;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media only screen and (max-width: 767px) {
  .dayWorkList ul li a {
    padding: 16px 30px 16px 0;
  }
}

.dayWorkList ul li a:before {
  position: absolute;
  right: 20px;
  width: 8px;
  height: 8px;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  content: "";
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  -webkit-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
  -webkit-transition-duration: .3s;
          transition-duration: .3s;
}

@media only screen and (max-width: 767px) {
  .dayWorkList ul li a:before {
    right: 10px;
  }
}

.dayWorkList ul li a:hover {
  background-color: #f3f4f7;
}

.dayWorkList ul li a:hover:before {
  right: 15px;
}

.dayWorkList ul li a .day {
  font-family: 'Barlow', sans-serif;
  font-size: 22px;
  padding-left: 16px;
}

@media only screen and (max-width: 767px) {
  .dayWorkList ul li a .day {
    font-size: 16px;
    padding-left: 0;
  }
}

.dayWorkList ul li a .day span {
  font-size: 60%;
  color: #333;
  padding-left: 5px;
}

.dayWorkList ul li a dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.dayWorkList ul li a dl dd {
  width: 60px;
  text-align: center;
}

.dayWorkList ul li a dl dd:nth-child(2) {
  width: 40px;
}

@media only screen and (max-width: 767px) {
  .dayWorkList ul li a dl dd {
    font-size: 20px;
    padding-left: 0;
  }
}

.dayWorkList ul li a dl dd span {
  font-size: 80%;
  color: #333;
}

.flockList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.flockList li {
  width: calc((100% / 3) - 14px);
  margin-right: 20px;
  margin-top: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.flockList li:nth-child(-n+3) {
  margin-top: 0;
}

.flockList li:nth-child(3n) {
  margin-right: 0;
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .flockList li {
    width: calc((100% / 3) - 20px);
  }
  .flockList li:nth-child(3) {
    margin-top: 0;
  }
  .flockList li:nth-child(2n) {
    margin-right: 20px;
  }
  .flockList li:nth-child(3n) {
    margin-right: 0px;
  }
}

@media only screen and (max-width: 767px) {
  .flockList li {
    width: calc(50% - 5px);
    margin-right: 10px;
    margin-top: 20px;
  }
  .flockList li:nth-child(-n+3) {
    margin-top: 20px;
  }
  .flockList li:nth-child(3n) {
    margin-right: 10px;
  }
  .flockList li:nth-child(-n+2) {
    margin-top: 0px;
  }
  .flockList li:nth-child(2n) {
    margin-right: 0px;
  }
}

.flockList li.redColor .flock_name {
  background-color: #ed5c72;
}

.flockList li.blueColor .flock_name {
  background-color: #5cb5ed;
}

.flockList li.blueGreenColor .flock_name {
  background-color: #3fd8d2;
}

.flockList li.purpleColor .flock_name {
  background-color: #b782d3;
}

.flockList li.orangeColor .flock_name {
  background-color: #ebad58;
}

.flockList li.pinkColor .flock_name {
  background-color: #ed8ccb;
}

.flockList li.greenColor .flock_name {
  background-color: #72db8e;
}

.flockList li.yellowColor .flock_name {
  background-color: #ebd245;
}

.flockList li.bluePurpleColor .flock_name {
  background-color: #7c73e8;
}

.flockList li.grayColor .flock_name {
  background-color: #b9b9b8;
}

.flockList li a {
  display: block;
  width: 100%;
  height: 100%;
  -webkit-transition-duration: .3s;
          transition-duration: .3s;
  background-color: #fff;
  -webkit-filter: drop-shadow(0px 3px 1px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(0px 3px 1px rgba(0, 0, 0, 0.2));
  border-radius: 6px;
  position: relative;
}

.flockList li a:hover {
  -webkit-filter: drop-shadow(0px 3px 1px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(0px 3px 1px rgba(0, 0, 0, 0.2));
  background-color: #f3f4f7;
}

.flockList li a:hover:after {
  background-color: #153e7c;
}

.flockList li a:hover:before {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}

.flockList li a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -12px;
  width: 24px;
  height: 24px;
  background-color: #fff;
  border-radius: 50%;
  -webkit-transition-duration: .3s;
          transition-duration: .3s;
}

.flockList li a:before {
  content: "";
  position: absolute;
  left: 0;
  right: 5px;
  margin: 0 auto;
  width: 7px;
  height: 7px;
  border-top: 1px solid #153e7c;
  border-right: 1px solid #153e7c;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  bottom: -4px;
  z-index: 2;
  -webkit-transition-duration: .3s;
          transition-duration: .3s;
}

.flockList li a .flock_name {
  background-color: #000;
  color: #fff;
  padding: 12px;
  text-align: center;
  border-radius: 6px 6px 0 0;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.3;
  min-height: 42px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media only screen and (max-width: 1023px) {
  .flockList li a .flock_name {
    font-size: 13px;
  }
}

.flockList li a .flock_name p {
  width: 100%;
}

.flockList li a .groupNum {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px;
}

@media only screen and (max-width: 1023px) {
  .flockList li a .groupNum {
    padding: 16px 10px;
  }
}

.flockList li a .groupNum dl {
  width: 80px;
  text-align: center;
}

.flockList li a .groupNum dl dt {
  font-size: 11px;
  line-height: 1.2;
  padding-bottom: 5px;
  color: #5e6c84;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

@media only screen and (max-width: 1023px) {
  .flockList li a .groupNum dl dt {
    font-size: 10px;
  }
}

.flockList li a .groupNum dl dd {
  font-family: 'Barlow', sans-serif;
  font-size: 32px;
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .flockList li a .groupNum dl dd {
    font-size: 5vw;
  }
}

.inner > .selectWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-bottom: 12px;
}

.inner > .selectWrap .selectBox {
  position: relative;
  background-color: #348ab7;
  border-radius: 5px;
  -webkit-filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.5));
          filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.5));
}

.inner > .selectWrap .selectBox:after {
  background-image: url(../images/addtask_white.svg);
  content: "";
  position: absolute;
  left: 9px;
  width: 20px;
  height: 15px;
  background-size: cover;
  z-index: 3;
  background-position: center center;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.inner > .selectWrap .selectBox:before {
  content: "";
  top: 14px;
  right: 12px;
  width: 4px;
  height: 4px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  position: absolute;
  z-index: 2;
}

.inner > .selectWrap .selectBox select {
  cursor: pointer;
  color: #fff;
  border: none;
  padding-left: 20px;
  padding: 8px 30px 8px 36px;
  font-size: 16px;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background-color: transparent;
  position: relative;
  z-index: 4;
  /* デフォルトのスタイルを無効 */
}

.inner > .selectWrap .selectBox select option {
  background-color: #fff;
}

.inner > .selectWrap .selectBox select:-ms-expand {
  display: none;
  /* デフォルトのスタイルを無効(IE用) */
}

.authority {
  font-size: 75%;
  font-weight: normal;
  width: 100%;
}

.wrapBox {
  display: block;
  width: 100%;
}

/*プロジェクト*/
.projectList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.projectList .project_Card {
  width: calc(50% - 10px);
  margin-right: 20px;
  margin-top: 20px;
  -webkit-filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.5));
          filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.5));
  -webkit-transition-duration: .3s;
          transition-duration: .3s;
  background-color: white;
  padding: 16px;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}

.projectList .project_Card .cardNum {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.projectList .project_Card .cardNum dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 8px;
}

.projectList .project_Card .cardNum dl:nth-child(1) {
  width: 100px;
}

.projectList .project_Card .cardNum dl:nth-child(2) {
  width: 60px;
}

.projectList .project_Card .cardNum dl:nth-child(3) {
  width: 60px;
}

.projectList .project_Card .cardNum dl dt {
  font-size: 10px;
  margin-bottom: 2px;
  color: #666;
  width: 100%;
}

.projectList .project_Card .cardNum dl dd {
  font-family: 'Barlow', sans-serif;
  font-size: 18px;
}

.projectList .project_Card .cardNum dl dd .taskUser div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.projectList .project_Card .cardNum dl dd .taskUser div p {
  font-size: 10px;
  padding: 0 5px;
}

.projectList .project_Card .cardNum dl dd .taskUser .user_icon {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-size: cover;
  background-position: center center;
  border: 1px solid #717171;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  z-index: 2;
}

.projectList .project_Card .cardNum dl dd .taskUser .user_icon:nth-child(2) {
  margin-left: 9px;
}

.projectList .project_Card .cardNum dl dd .taskUser .user_icon:nth-child(2):after {
  position: absolute;
  content: "";
  left: -8px;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  border-left: 6px solid #717171;
  z-index: 1;
}

.projectList .project_Card .cardNum dl dd span {
  font-family: 'Barlow', sans-serif;
}

.projectList .project_Card:nth-child(2n) {
  margin-right: 0;
}

@media only screen and (min-width: 1280px) {
  .projectList .project_Card {
    width: 32.4%;
    margin-right: 1.4%;
  }
  .projectList .project_Card:nth-child(2n) {
    margin-right: 1.4%;
  }
  .projectList .project_Card:nth-child(3n) {
    margin-right: 0;
  }
}

@media only screen and (max-width: 1023px) {
  .projectList .project_Card {
    width: 100%;
    margin-right: 0;
  }
}

@media only screen and (max-width: 767px) {
  .projectList .project_Card:first-child {
    margin-top: 0;
  }
}

.projectList .project_Card.noLink {
  background-color: rgba(255, 255, 255, 0.6);
}

.projectList .project_Card.noLink:after {
  display: none;
}

.projectList .project_Card.noLink:before {
  display: none;
}

@media only screen and (max-width: 1023px) {
  .projectList .project_Card.noLink .projectInfo {
    padding-left: 80px;
  }
}

@media only screen and (max-width: 1023px) {
  .projectList .project_Card a .projectInfo {
    padding-left: 80px;
  }
}

.projectList .project_Card a:after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-color: #fff;
  border-radius: 50%;
  -webkit-transition-duration: .3s;
          transition-duration: .3s;
}

.projectList .project_Card a:before {
  content: "";
  position: absolute;
  right: 22px;
  width: 7px;
  height: 7px;
  border-top: 1px solid #153e7c;
  border-right: 1px solid #153e7c;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  -webkit-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
  z-index: 2;
  -webkit-transition-duration: .3s;
          transition-duration: .3s;
}

.projectList .project_Card a:hover:after {
  background-color: #153e7c;
  right: 9px;
}

.projectList .project_Card a:hover:before {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  right: 19px;
}

#setting-group-detail.redColor .flock_name {
  background-color: #ed5c72;
}

#setting-group-detail.blueColor .flock_name {
  background-color: #5cb5ed;
}

#setting-group-detail.blueGreenColor .flock_name {
  background-color: #3fd8d2;
}

#setting-group-detail.purpleColor .flock_name {
  background-color: #b782d3;
}

#setting-group-detail.orangeColor .flock_name {
  background-color: #ebad58;
}

#setting-group-detail.pinkColor .flock_name {
  background-color: #ed8ccb;
}

#setting-group-detail.greenColor .flock_name {
  background-color: #72db8e;
}

#setting-group-detail.yellowColor .flock_name {
  background-color: #ebd245;
}

#setting-group-detail.bluePurpleColor .flock_name {
  background-color: #7c73e8;
}

#setting-group-detail.grayColor .flock_name {
  background-color: #b9b9b8;
}

.project_Card {
  background-color: #fff;
  padding: 16px;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.project_Card.redColor h3:after {
  background-color: #D50000;
}

.project_Card.pinkColor h3:after {
  background-color: #E67C73;
}

.project_Card.orangeColor h3:after {
  background-color: #F4511E;
}

.project_Card.yellowColor h3:after {
  background-color: #F6BF26;
}

.project_Card.yellowGreenColor h3:after {
  background-color: #33B679;
}

.project_Card.greenColor h3:after {
  background-color: #0B8043;
}

.project_Card.lightBlueColor h3:after {
  background-color: #039BE5;
}

.project_Card.blueColor h3:after {
  background-color: #3F51B5;
}

.project_Card.bluePurpleColor h3:after {
  background-color: #7986CB;
}

.project_Card.purpleColor h3:after {
  background-color: #8E24AA;
}

.project_Card.blueGreenColor h3:after {
  background-color: #3fd8d2;
}

.project_Card.grayColor h3:after {
  background-color: #b9b9b8;
}

.project_Card.finish {
  background-color: rgba(255, 255, 255, 0.45);
}

.project_Card .projectIcon {
  width: 120px;
  height: 120px;
  background-color: #5757ff;
  position: absolute;
  left: -24px;
  top: -24px;
  border-radius: 50%;
  background-image: url(../images/noimg.jpg);
  background-position: center center;
  background-size: cover;
}

@media only screen and (max-width: 1023px) {
  .project_Card .projectIcon {
    width: 100px;
    height: 100px;
    left: -16px;
    top: -16px;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
  }
}

.project_Card .projectInfo {
  padding-left: 100px;
}

@media only screen and (max-width: 1023px) {
  .project_Card .projectInfo {
    padding-left: 80px;
  }
}

.project_Card .projectInfo .groupIcon {
  content: " ";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-right: 2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: inline-block;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  left: 0;
  top: 0;
}

.project_Card .projectInfo h2 {
  display: inline-block;
  font-size: 19px;
  margin-bottom: 20px;
  font-weight: 400;
  height: 20px;
  line-height: 20px;
  padding: 0 12px;
  border-radius: 12px;
  margin-bottom: 8px;
  padding-left: 24px;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .project_Card .projectInfo h2 {
    font-size: 5vw;
    margin-bottom: 10px;
  }
}

.project_Card .projectInfo h2 span {
  display: none;
}

.project_Card .projectInfo h2:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.project_Card .projectInfo h3 {
  font-size: 19px;
  margin-bottom: 20px;
  font-weight: 400;
  padding-left: 24px;
  position: relative;
}

.project_Card .projectInfo h3 span {
  display: none;
}

.project_Card .projectInfo h3:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

@media only screen and (max-width: 767px) {
  .project_Card .projectInfo h3 {
    font-size: 19px;
    margin-bottom: 10px;
  }
}

.project_Card .projectUser ul {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.projectUser {
  width: 100%;
  margin-top: 16px;
}

.projectUser ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media only screen and (max-width: 767px) {
  .projectUser ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.projectUser ul .icon {
  width: 40px;
  height: 40px;
  border: 2px solid #fff;
  background-size: cover;
  background-image: url(../images/unnamed.png);
  border-radius: 24px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-right: -8px;
}

@media only screen and (max-width: 767px) {
  .projectUser ul .icon {
    width: 34px;
    height: 34px;
  }
}

.cardNum {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.cardNum dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 8px;
}

.cardNum dl:nth-child(1) {
  width: 100px;
}

.cardNum dl dt {
  font-size: 10px;
  margin-bottom: 2px;
  color: #666;
  width: 100%;
}

.cardNum dl dd {
  font-family: 'Barlow', sans-serif;
  font-size: 18px;
}

.cardNum dl dd .taskUser div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.cardNum dl dd .taskUser div p {
  font-size: 10px;
  padding: 0 5px;
}

.cardNum dl dd .taskUser .user_icon {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-size: cover;
  background-position: center center;
  border: 1px solid #717171;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  z-index: 2;
}

.cardNum dl dd .taskUser .user_icon:nth-child(2) {
  margin-left: 9px;
}

.cardNum dl dd .taskUser .user_icon:nth-child(2):after {
  position: absolute;
  content: "";
  left: -8px;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  border-left: 6px solid #717171;
  z-index: 1;
}

.cardNum dl dd .userIcon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-position: center center;
  background-size: cover;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #cecece;
}

.cardNum dl dd span {
  font-family: 'Barlow', sans-serif;
}

.comment {
  font-size: 15px;
  line-height: 1.5;
  color: #555;
  margin-top: 24px;
}

.sukima {
  height: 160px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
}

.settingGroup .flockList li {
  position: relative;
}

.ac-box {
  margin-top: 20px;
}

.ac-box input {
  display: none;
}

.ac-box .ac-small {
  line-height: 1.5;
}

#noTask {
  width: 100%;
}

#noTask .content {
  width: 80%;
  height: 120px;
  line-height: 120px;
  text-align: center;
  background-color: #eee;
  margin: 20px auto;
  padding: 0;
  opacity: 0.5;
  white-space: nowrap;
  border-radius: 6px;
  -webkit-filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.4));
          filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.4));
}

@media only screen and (max-width: 767px) {
  #noTask .content {
    width: 320px;
  }
}

.chart-container {
  display: block;
  width: calc(100% - 5px);
  height: 50vh;
  margin: 5vh auto;
}

canvas#chart_pc {
  display: block !important;
}

@media only screen and (max-width: 767px) {
  canvas#chart_pc {
    display: none !important;
  }
}

canvas#chart_sp {
  display: none !important;
}

@media only screen and (max-width: 767px) {
  canvas#chart_sp {
    display: block !important;
  }
}

.nowPlan {
  background-color: #fff;
  border-radius: 6px;
  -webkit-filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.2));
  margin: 24px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 20px;
}

.nowPlan h4 {
  text-align: center;
  font-weight: bold;
  width: 100%;
  margin-bottom: 24px;
}

@media only screen and (max-width: 767px) {
  .nowPlan h4 {
    width: 100%;
    text-align: center;
    padding-right: 0;
    margin-bottom: 12px;
  }
}

.nowPlan .summary ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.nowPlan .summary ol li {
  text-align: center;
  margin-left: 20px;
}

.nowPlan .summary ol li:first-child {
  margin-left: 0;
}

.nowPlan .summary ol li .item {
  font-size: 10px;
  line-height: 1;
  padding-bottom: 5px;
  color: #5e6c84;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

.nowPlan .summary ol li .num {
  font-family: 'Barlow', sans-serif;
  font-size: 32px;
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .nowPlan .summary ol li .num {
    font-size: 5vw;
  }
}

@media only screen and (max-width: 767px) {
  .nowPlan .summary ol li .num {
    font-size: 7vw;
  }
}

.payList {
  background-color: #fff;
  border-radius: 6px;
  -webkit-filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.2));
  margin-top: 24px;
  padding: 20px;
  /*
    ul {
        li {
            width: 100%;
            border-bottom: 1px solid #eee;
            display: flex;
            justify-content: space-between;

            > .day {
                font-family: 'Barlow', sans-serif;
                font-size: 22px;
                padding-left: 16px;
                padding-top: 20px;
                padding-bottom: 20px;
                color: #b4b4b4;

                @include mobile {
                    font-size: 16px;
                    padding-left: 0;
                }

                span {
                    font-size: 60%;
                    color: #b4b4b4;
                    padding-left: 5px;
                }
            }

            > dl {
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding-top: 20px;
                padding-bottom: 20px;
                padding-right: 40px;
                color: #b4b4b4;

                dd {
                    font-family: 'Barlow', sans-serif;
                    font-size: 22px;
                    width: 60px;
                    text-align: center;
                    color: #b4b4b4;

                    &:nth-child(2) {
                        width: 40px;
                    }

                    @include mobile {
                        font-size: 20px;
                        padding-left: 0;
                    }

                    span {
                        font-size: 80%;
                        color: #b4b4b4;
                    }
                }

            }

            &.sat {
                a {
                    .day {
                        color: #97cad6;

                        span {
                            color: #97cad6;
                        }
                    }
                }
            }

            &.sun {
                a {
                    .day {
                        color: #d697b2;

                        span {
                            color: #d697b2;
                        }
                    }
                }
            }

            a {
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding: 20px 40px 20px 0;
                position: relative;
                transition-duration: .3s;
                width: 100%;
                box-sizing: border-box;

                @include mobile {
                    padding: 16px 30px 16px 0;
                }

                &:before {
                    position: absolute;
                    right: 20px;

                    width: 8px;
                    height: 8px;
                    border-top: 1px solid #333;
                    border-right: 1px solid #333;
                    content: "";
                    top: 50%;
                    transform: translateY(-50%) rotate(45deg);
                    -webkit-transform: translateY(-50%) rotate(45deg);
                    -ms-transform: translateY(-50%) rotate(45deg);
                    transition-duration: .3s;

                    @include mobile {
                        right: 10px;
                    }
                }

                &:hover {
                    background-color: #f3f4f7;

                    &:before {
                        right: 15px;
                    }
                }

                .day {
                    font-family: 'Barlow', sans-serif;
                    font-size: 22px;
                    padding-left: 16px;

                    @include mobile {
                        font-size: 16px;
                        padding-left: 0;
                    }

                    span {
                        font-size: 60%;
                        color: #333;
                        padding-left: 5px;
                    }
                }

                dl {
                    display: flex;
                    justify-content: space-between;
                    align-items: center;



                    dd {

                        width: 60px;
                        text-align: center;

                        &:nth-child(2) {
                            width: 40px;
                        }

                        @include mobile {
                            font-size: 20px;
                            padding-left: 0;
                        }

                        span {
                            font-size: 80%;
                            color: #333;
                        }
                    }

                }

            }

        }
    }
    */
}

.payList h2 {
  text-align: center;
  font-size: 20px;
}

.payList .payHeader {
  margin-top: 24px;
  padding-right: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media only screen and (max-width: 767px) {
  .payList .payHeader {
    padding-right: 30px;
  }
}

.payList .payHeader dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

.payList .payHeader dl dd {
  font-size: 10px;
  width: 33%;
  text-align: center;
  color: #5e6c84;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

.payList dl.list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-right: 40px;
  color: #b4b4b4;
  border-bottom: 1px solid #eee;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media only screen and (max-width: 767px) {
  .payList dl.list {
    padding-right: 30px;
  }
}

.payList dl.list dd {
  font-family: 'Barlow', sans-serif;
  font-size: 22px;
  width: 33%;
  text-align: center;
  color: #b4b4b4;
}

.payList dl.list dd:nth-child(2) {
  text-align: left;
}

.paidMember {
  background-color: #fff;
  border-radius: 6px;
  -webkit-filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.2));
  margin: 24px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 20px;
}

.paidMember h4 {
  text-align: center;
  font-weight: bold;
  width: 100%;
  margin-bottom: 24px;
}

@media only screen and (max-width: 767px) {
  .paidMember h4 {
    width: 100%;
    text-align: center;
    padding-right: 0;
    margin-bottom: 12px;
  }
}

.paidMember .list {
  margin: 0px;
  width: 100%;
}

.paidMember .list .person {
  position: relative;
  width: 40%;
  height: auto;
  padding: 5px;
  margin: 10px auto;
}

.paidMember .list .person input[type=submit] {
  margin: 0;
  position: absolute;
  right: 0;
}

.paidMember .form {
  margin: 5px;
  display: block;
}
/*# sourceMappingURL=parts.css.map */