
.oneday {
  margin-bottom: 4rem;
  padding-block: 1rem;
  background-color: #ebf2f9;
  @media (min-width: 768px) {
    margin-bottom: 5.72rem;
    padding-block: 4.44rem;
  }
}
.oneday_inner {
  @media (min-width: 768px) {
    max-width: 920px;
    margin-inline: auto;
  }
}
.oneday_ttl {
  margin-inline: auto;
  width: fit-content;
  margin-bottom: 1rem;
  display: grid;
  row-gap: 0.4rem;
  justify-items: center;
  @media (min-width: 768px) {
    margin-bottom: 2.22rem;
  }
  .ico {
    width: 2rem;
    height: 2rem;
    @media (min-width: 768px) {
      width: 3.22rem;
      height: 3.22rem;
    }
    img {
      width: 100%;
      height: auto;
      object-fit: contain;
    }
  }
  .txt {
    font-size: 1.2rem;
    font-weight: 700;
    color: #000000;
    @media (min-width: 768px) {
      font-size: 2.11rem;
    }
  }
}
.oneday_list_wrap {
  position: relative;
}
.oneday_list_wrap_line {
  position: absolute;
  top: 0;
  left: calc(2.22rem / 2);
  width: 1px;
  height: 100%;
  display: grid;
  grid-auto-rows: 1fr;
  row-gap: 0.4rem;
  @media (min-width: 768px) {
    left: 50%;
    transform: translateX(-50%);
  }
  span {
    position: relative;
    display: block;
    width: 1px;
    top: calc(0.4rem + 2px);
    height: calc(100% + 0.4rem);
    &:first-of-type {
/*       top: 0.4rem; */
      top: calc(0.4rem + 2px);
/*       height: calc(100% + 0.4rem - 0.4rem); */
      height: calc(100% + 0.4rem);
    }
    &:not(:last-of-type) {
      background-color: #000000;
    }
    @media (max-width: 767px) {
      &:nth-last-of-type(2) {
/*         height: calc(100% + 0.4rem - 0.4rem + 2.4rem); */
        height: calc(100% - 0.4rem + 2.4rem);
      }
    }
  }
}
.oneday_list {
  display: grid;
  grid-auto-rows: 1fr;
  @media (max-width: 767px) {
    row-gap: 2rem;
  }
}
.oneday_item {
  display: grid;
  position: relative;
  width: calc(100% - 2.22rem);
  margin-left: auto;
  // display: flex;
  // flex-direction: column;
  row-gap: 0.4rem;
  @media (min-width: 768px) {
    padding-left: 2.22rem;
    width: 50%;
    &:nth-of-type(even) {
      margin-left: unset;
      margin-right: auto;
      padding-left: unset;
      padding-right: 2.22rem;
      .oneday_item_ttl {
        padding-left: unset;
        padding-right: 0.4rem;
        justify-content: flex-end;
        &::before {
          right: unset;
          left: 100%;
        }
        &::after {
          right: unset;
          left: calc(100% + 2.22rem - (0.89rem / 2));
        }
        .txt {
          order: 1;
        }
        .time {
          order: 2;
        }
      }
      .oneday_item_lead {
        padding-left: unset;
        padding-right: 0.4rem;
      }
    }
  }
}
.oneday_item_ttl {
  padding-left: 0.4rem;
  padding-right: 1rem;
  position: relative;
  display: grid;
  grid-template-columns: max-content max-content;
  column-gap: 0.4rem;
  height: fit-content;
  @media (min-width: 768px) {
    padding-right: unset;
  }
  &::before {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 100%;
    height: 0;
    width: calc(2.22rem - 0.89rem);
    content: "";
    border-bottom: 1px dashed #000000;
    @media (min-width: 768px) {
      right: 100%;
      width: 2.22rem;
    }
  }
  &::after {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: calc(100% + ((2.22rem - 0.89rem) / 2));
    height: 0.89rem;
    width: 0.89rem;
    border: 1px solid #000000;
    background-color: #ffffff;
    border-radius: 50vw;
    content: "";
    @media (min-width: 768px) {
      right: calc(100% + 2.22rem - (0.89rem / 2));
    }
  }
  .txt {
    order: 2;
  }
  .time {
    order: 1;
  }
}
.oneday_item_lead {
  padding-left: 0.4rem;
  padding-right: 1rem;
  font-size: 0.89rem;
  font-weight: 500;
  color: #000000;
  @media (min-width: 768px) {
    padding-right: unset;
  }
}