.flex {
    display: flex;
}
.pc-flex-col {
    display: flex;
    flex-direction: column;
}

.absolute {
  position: absolute;
}

.w-full, .w100 {
  width: 100%;
}
.w90 {
  width: 90%
}
.w80 {
  width: 80%
}
.w30 {
  width: 30%;
}

.pc-w30 {
    width: 30%;
}

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


.pt30 {
    padding-top: 30px;
}

.pl30 {
  padding-left: 30px;
}

.pb50 {
  padding-bottom: 50px;
}

.p-10 {
  padding: 10px;
}

.mt0i {
  margin-top: 0 !important;
}
.mt5 {
  margin-top: 5px;
}
.mt10 {
  margin-top: 10px;
}
.mt15 {
  margin-top: 15px;
}
.mt20 {
  margin-top: 20px;
}
.mt30 {
  margin-top: 30px;
}
.mt50 {
  margin-top: 50px;
}

.mx-auto {
  margin: 0 auto;
}
.mb20 {
  margin-bottom: 20px;
}

.text-left {
  text-align: left;
}
.text-orange {
  color: var(--brand-orange);
}
.text14 {
  font-size: min(calc(14 * 100vw / 1200), 14px);
}
.text16 {
  font-size: 16px;
}
.text20 {
  font-size: min(calc(20 * 100vw / 1200), 20px);
}
.text25 {
  font-size: min(calc(25 * 100vw / 1200), 25px);
}
.font-bold {
  font-weight: bold;
}

.border {
  border: solid 1px;
  border-color: #333333;
}

.flex {
  display: flex;
}
.justify-center {
  justify-content: center;
}
.justify-end {
  justify-content: flex-end;
}
.items-center {
  align-items: center;
}

input[type="date"], input[type="time"] {
  padding: min(calc(8 * 100vw / 1200), 8px);
  border: 1px solid #cccccc;
  border-radius: min(calc(4 * 100vw / 1200), 4px);
  background: #fafafa;
  -webkit-appearance: none;
  font-size: min(calc(18 * 100vw / 1200), 18px);
  font-weight: normal;
  font-family: inherit;
  line-height: normal;
}

.action-text {
  bottom: 5%;
  right: 20px;
  font-size: min(15px, 1.2vw);
}
.action-top {
  margin-top: min(20px, 1.5vw);
}


@media (max-width: 768px) {
    input[type="date"], input[type="time"] {
      padding: 8px 3px;
      border-radius: 4px;
      font-size: 15px;
    }
    input[type="date"] {
      width: 120px;
    }
    input[type="time"] {
      width: 80px;
    }

    .sp-block {
        display: block;
    }
    .sp-relative {
      position: relative;
    }

    .sp-w100 {
        width: 100%;
    }
    .sp-w80 {
        width: 80%;
    }
    .sp-w60 {
        width: 60%;
    }
    .sp-w40 {
        width: 40%;
    }
    .sp-w45 {
        width: 45%;
    }
    .sp-w120px {
      width: 120px;
    }
    .sp-w80px {
      width: 80px
    }
    .sp-text15 {
      font-size: 18px !important;
    }
    .text14 {
      font-size: 1.1rem;
    }
    .text19 {
      font-size: 1.7rem;
    }
    .text20 {
      font-size: 1.8rem;
    }
    .text25 {
      font-size: 2.2rem;
    }

    .sp-justify-center {
      justify-content: center;
    }
    .sp-flex-col {
      display: flex;
      flex-direction: column;
    }

    /* .pc-flex-col {
        display: flex;
        flex-direction: row;
    } */

    .action-text {
      bottom: 0%;
      right: 0%;
      font-size: max(2vw, 9px);
    }

    .action-top {
      margin-top:3vw;
    }
}