.orientation-wrapper {
  width: 100%;
  background-color: #f3f5f6;
  padding: 100px 0 10px;
  margin-bottom: 100px;
}

.orientation-container {
  max-width: 1180px;
  width: 100%;
  margin: 50px auto;
}

.orientation-container h2 {
  font-size: 4.0rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #666;
}

.orientation-table {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto 100px;
  position: relative;
}

.orientation-table > p {
  font-size: clamp(1.6rem, 2.7vw, 2.4rem);
  font-weight: 600;
  color: #4d4d4d;
  text-align: center;
  padding-left: 0;
}

@media screen and (min-width: 768px) {
  .orientation-table > p {
    text-align: start;
    padding-left: clamp(5px, 3vw, 40px);
  }
}

.table-head,
.table-value {
  display: flex;
  align-items: center;
}

.table-value {
  justify-content: space-between;
}

.table-head {
  width: 100%;
  padding: 25px 85px;
  border-top: 2px solid #999;
  border-bottom: 2px solid #999;
  gap: 150px;
}

@media screen and (max-width: 1250px) {
  .table-head {
    padding: 25px clamp(30px, 6.8vw, 85px);
    gap: clamp(75px, calc(100vw * 0.1261 - 12.609px), 145px);
  }
}

@media screen and (max-width: 767px) {
  .table-head {
    justify-content: space-between;
    padding: 15px clamp(30px, calc(100vw * 0.0893 - 0.5px), 55px);
    gap: clamp(66px, calc(100vw * 0.422 - 93.722px), 244px);
  }
}

.table-value {
  width: 95%;
  margin: 0 auto;
  padding: 35px 0 35px clamp(5px, 1vw, 20px);
  border-bottom: 1px solid #999;
  position: relative;
}

.table-value:last-of-type {
  border: none;
}

.table-value:last-of-type::after {
  content: '';
  width: calc(100% / 0.95);
  height: 2px;
  background: #999;
  position: absolute;
  bottom: 0;
  left: -2.63%;
}

.event-date {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
}

.table-head p,
.event-date p,
.event-name p {
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #4d4d4d;
}

.table-head p {
  font-size: clamp(1.4rem, 1.76vw, 1.8rem);
}

@media screen and (max-width: 767px) {
  .table-head p {
    width: 100px;
  }

  .table-head p:last-of-type {
    width: 135px;
  }
}

.table-left {
  width: 50%;
}

.event-date p,
.event-name p {
  font-size: clamp(1.4rem, 1.6vw, 2.0rem);
}

.event-date p {
  width: clamp(100px, 12.4vw, 155px);
  text-align: center;
}

.event-date p:last-of-type {
  width: clamp(135px, 17.6vw, 220px);
  overflow-wrap: break-word;
  white-space: pre-wrap;
}

.event-date p,
.table-right a {
  white-space: nowrap;
}

.other-event-date {
  margin-bottom: 20px;
}

.table-right a {
  font-size: clamp(1.4rem, 1.95vw, 2.0rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #0d3955;
  padding: 20px 70px 20px 40px;
  background-color: #fff;
  border: 1px solid #0d3955;
  border-radius: 5px;
  position: relative;
  transition: background-color 0.4s ease, padding 0.4s ease;
}

/* hover時css */
@media (hover: hover) {
  .table-right a:hover {
    background-color: #e6e6e6;
  }
}

.table-right a::before,
.table-right a::after {
  content: '';
  width: 12px;
  height: 2px;
  background: #0d3955;
  position: absolute;
  right: 30px;
  z-index: 1;
  transition: top 0.4s ease;
}

.table-right a::before {
  top: 31.5px;
  transform: rotate(40deg);
}

.table-right a::after {
  top: 38.5px;
  transform: rotate(-40deg);
}

@media screen and (max-width: 1250px) {
  .orientation-container {
    width: 90%;
  }

  .orientation-table {
    width: 93%;
  }

  .table-right a {
    padding: 20px clamp(30px, 3.9vw, 40px) 20px clamp(10px, 1.3vw, 20px);
  }

  .table-right a::before,
  .table-right a::after {
    width: 10px;
    right: 15px;
  }

  .table-right a::before {
    top: clamp(27px, calc(100vw * 0.0197 + 11.83px), 32px);
  }

  .table-right a::after {
    top: clamp(33px, calc(100vw * 0.0197 + 17.83px), 38px);
  }
}

@media screen and (max-width: 767px) {
  .orientation-wrapper {
    padding: 50px 0 1px;
    margin-bottom: 50px;
  }

  .orientation-container {
    margin: 0 auto 15px;
  }

  .orientation-container h2 {
    font-size: 2.0rem;
  }

  .orientation-table {
    width: 100%;
    margin: 0 auto 50px;
  }

  .table-value {
    width: 100%;
    flex-direction: column;
    align-items: center;
    padding: 15px clamp(15px, 5.22vw, 40px) 25px;
    gap: 30px;
  }

  .table-left {
    width: 100%;
  }

  .table-left,
  .event-date {
    justify-content: space-between;
    gap: 15px;
  }

  .table-right a {
    padding: 10px 35px 10px 20px;
  }

  .table-right a::before,
  .table-right a::after,
  .other-table-right a::before,
  .other-table-right a::after {
    right: 10px;
  }

  .table-right a::before {
    top: 17px;
  }

  .table-right a::after {
    top: 23px;
  }
}