@charset "UTF-8";
/* シフト詳細_入口 */

.u-inner {
  padding: 0 25px;
}

.Shift_Detail__title {
  font-size: 24px;
  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;
  gap: 16px;
  font-weight: bold !important;
}

.Content.Shift_Detail h1.Shift_Detail__title {
  margin-bottom: 16px;
}

.Shift_Detail__text {
  font-size: 18px;
}

.Shift_Detail__title::before,
.Shift_Detail__title::after {
  content: "";
  display: inline-block;
  width: 68px;
  height: 2px;
  background-color: #37baca;
}

.Shift_Detail__contents {
  width: 100%;
  -webkit-margin-before: 24px;
          margin-block-start: 24px;
}

.Shift_Detail__contents-month {
  padding-left: calc(1em + 25px);
  position: relative;
  font-weight: bold !important;
}

.Shift_Detail__contents-month::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 100%;
  background-color: #37baca;
  position: absolute;
  top: 0;
  left: 25px;
}

.Shift_Detail__contents-list {
  display: -ms-grid;
  display: grid;
  gap: 16px;
  margin-top: 8px;
  margin-bottom: 8px;
  padding: 16px 25px 40px 25px;
  background-color: #F2F2F2;
}

.Shift_Detail__contents-item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 100px 14px auto;
  grid-template-columns: 100px auto;
  gap: 14px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.Shift_Detail__contents-label {
  font-size: 15px;
  color: #fff;
  font-weight: bold;
  background-color: #313F4A;
  line-height: 1.2;
  padding: 8px;
  border-radius: 30px;
  display: -ms-grid;
  display: grid;
  place-items: center;
}

.Shift_Detail__contents-value {
  font-size: 18px;
  word-break: auto-phrase;
}

.Shift_Detail__contents-button {
  text-align: center;
}

.Shift_Detail__contents-button .button {
  margin: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.Shift_Detail__contents-confirmed {
  -webkit-margin-before: 16px;
          margin-block-start: 16px;
}

.button--confirmed {
  border: 2px solid #B8B7B7;
  background: #fff;
  color: #B8B7B7;
  -webkit-box-shadow: revert;
          box-shadow: revert;
}

.button--confirmed::after {
  content: "";
  display: inline-block;
  width: 4px;
  height: 12px;
  border-bottom: 2px solid #B8B7B7;
  border-right: 2px solid #B8B7B7;
  translate: 12px -2px;
  rotate: 45deg;
}

.button--completed {
  border: 2px solid #000;
  background: #fff;
  color: #000;
  -webkit-box-shadow: revert;
          box-shadow: revert;
}

.button--completed::after {
  content: "";
  display: inline-block;
  width: 4px;
  height: 12px;
  border-bottom: 2px solid #000;
  border-right: 2px solid #000;
  translate: 12px -2px;
  rotate: 45deg;
}


/* シフト詳細_詳細 */

.Content.Daily_report .InfoBox,
    .Content.Shift_Detail .InfoBox {
        margin-bottom: 40px;
        font-size: 18px;
        padding-left: revert;
    }

    .InfoBox p {
        padding-left: 1em;
    }

    .Content.Shift_Detail .InfoMain .infoMain__title {
        font-size: 24px;
        font-weight: bold !important;
        border-bottom: 4px solid #37baca;
        margin-bottom: 16px;
    }

    .infoBox {
        display: -ms-grid;
        display: grid;
        gap: 15px;
    }

    .infoBox__wrap {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 100px 14px auto;
        grid-template-columns: 100px auto;
        gap: 14px;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
    }

    .infoBox__label {
        font-size: 15px;
        color: #fff;
        font-weight: bold;
        background-color: #313F4A;
        line-height: 1.2;
        padding: 8px;
        border-radius: 30px;
        display: -ms-grid;
        display: grid;
        place-items: center;
    }

    .infoBox__block {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr 60px 1fr;
        grid-template-columns: repeat(2, 1fr);
        -ms-flex-pack: distribute;
            justify-content: space-around;
        gap: 60px;
        margin-top: 16px;
        padding-left: 1em;
    }

    .infoBox__contents-title {
        border-bottom: 2px solid #313F4A;
        font-size: 14px;
    }

    .infoBox__contents-text {
        font-size: 18px;

    }

    .infoBox__contents-text + .infoBox__contents-text {
        margin-top: 8px;
    }

    .infoBox__contents-text--period {
        position: relative;
    }

    .infoBox__contents-text--period::before {
        content: "";
        display: inline-block;
        width: 35px;
        height: 2px;
        background-color: #C1C3C4;
        position: absolute;
        top: 50%;
        left: -50%;
        -webkit-transform: translateY(-50%);
                transform: translateY(-50%);
    }


    .button.infoBox__button {
        font-size: 17px;
        border: 1px solid #E86573;
        background-color: #E86573;
        background: #E86573;
        color: #fff;
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
        max-width: 450px;
    }

    .button.infoBox__button:hover {
        background-color: #fff;
        color: #E86573;
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
    }

    .button.AltColor.infoBox__button--outline {
        font-size: 17px;
        color: #E86573;
        border: 1px solid #E86573;
        background-color: #fff;
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
    }

    .button.AltColor.infoBox__button--outline:hover {
        background-color: #E86573;
        color: #fff;
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
    }

    .infoBox__list {
        margin: 0;
        padding-left: 1em;
    }

    .infoGrey {
        background-color: #F1F2F1;
        padding-top: 37px;
        padding-bottom: 36px;
        margin-top: 20px;
        margin-right: calc(50% - 50vw);
        margin-left: calc(50% - 50vw);
        padding-right: calc(50vw - 50%);
        padding-left: calc(50vw - 50%);
    }

    .infoGrey__title {
        font-size: 24px;
        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;
        gap: 16px;
    }

    .infoGrey__title::before,
    .infoGrey__title::after {
        content: "";
        display: inline-block;
        width: 30px;
        height: 2px;
        background-color: #37baca;
    }

    .infoGrey__select {
        font-size: 18px;
        text-align: center;
    }

    .infoGrey__select select {
        font-size: 18px;
        margin-top: 8px;
        padding: 4px 8px;
    }