@charset "UTF-8";

.schedule table {
  width: 100%;
  margin-top: 2em;
  table-layout: fixed;
  position: relative;
}

.schedule table::after {
  content: "";
  position: absolute;
  top: 0;
  left: 10em;
  width: 1.5em;
  height: 100%;
  background: var(--black);
  border-radius: 0.7em;
}

.schedule table tr:last-of-type {
  border-bottom: none;
}

.schedule th {
  vertical-align: top;
  width: 10.5em;
  position: relative;
}

.schedule th::after {
  content: "";
  background: var(--white);
  width: 0.7em;
  height: 0.7em;
  border-radius: 50%;
  position: absolute;
  top: 0.5em;
  left: 10.4em;
  z-index: 1;
}

.schedule h3 span {
  display: flex;
  align-items: center;
}

.schedule h3 span::before {
  content: "";
  background: url(../img/icon/clock.png) no-repeat center;
  background-size: contain;
  display: block;
  width: 1em;
  height: 1em;
  margin-right: 0.2em;
}

.schedule td {
  display: flex;
  padding: 1em 1em 1em 2.5em;
}

.schedule td figure {
  width: 200px;
  height: 150px;
  flex-shrink: 0;
  margin-right: 1.5em;
}

.schedule td img {
  object-fit: cover;
}

.interview li {
  display: flex;
}

.interview li:not(:last-of-type) {
  margin-bottom: 2em;
}

.interview figure,
.interview p {
  width: 50%;
}

.interview li:nth-of-type(odd) *:first-child,
.interview li:nth-of-type(even) *:last-child {
  margin-right: 2em;
}

.interview li:nth-of-type(even) figure {
  order: 2;
}

.interview img {
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .schedule h3 {
    display: flex;
    align-items: center;
    margin-bottom: 0.5em;
  }

  .schedule h3 span {
    margin-right: 0.5em;
  }

  .schedule tr {
    display: block;
    margin-bottom: 2em;
    border-bottom: none;
  }

  .schedule th,
  .schedule td {
    display: block;
    padding: 0;
    width: 100%;
  }

  .schedule table::after {
    left: calc(100% - 2em);
    z-index: -1;
    width: 1em;
    opacity: 0.1;
  }
  .schedule th::after {
    top: 50%;
    transform: translateY(-50%);
    left: auto;
    right: 1.25em;
    width: 0.5em;
    height: 0.5em;
  }

  .schedule td figure {
    width: 100%;
    height: 14em;
    margin-bottom: 1em;
  }

  .schedule td figure img {
    width: 100%;
  }

  .schedule h3 {
    border-bottom: 1px dashed var(--gray);
  }

  .interview li {
    display: block;
  }

  .interview li > * {
    width: 100%;
  }

  .interview figure {
    margin-bottom: 1em;
  }
}
