@charset "UTF-8";
/*--- color ---*/
/*--- z-index ---*/
/*--- breakpoint ---*/
/* =======================
  mixin
======================= */
/*--- 透過ホバー ---*/
/*--- color変更ホバー ---*/
/*--- background-color変更ホバー ---*/
/*--- color・background-colorホバー ---*/
.p-timetable__head {
  display: grid;
  grid-template-columns: 6rem 1fr 1fr;
}
@media screen and (max-width: 1199.9px) {
  .p-timetable__head {
    grid-template-columns: 4rem 1fr 1fr;
  }
}
@media screen and (max-width: 767.9px) {
  .p-timetable__head {
    display: none;
  }
}
.p-timetable__head::before {
  content: "";
  display: block;
  width: 6rem;
}
@media screen and (max-width: 1199.9px) {
  .p-timetable__head::before {
    width: 4rem;
  }
}
.p-timetable__place {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  min-height: 8rem;
  padding: 1rem 4rem;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}
@media screen and (max-width: 1199.9px) {
  .p-timetable__place {
    padding-inline: 2.4rem;
  }
}
.p-timetable__place.is-green {
  background: #2A9D8F;
  color: #fff;
}
.p-timetable__place.is-orange {
  background: #E76F51;
  color: #fff;
}
.p-timetable__row {
  display: grid;
  grid-template-columns: 6rem 1fr 1fr;
  border-bottom: 0.1rem solid #ccc;
}
.p-timetable__row:last-child {
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
}
@media screen and (max-width: 1199.9px) {
  .p-timetable__row {
    grid-template-columns: 4rem 1fr 1fr;
  }
}
@media screen and (max-width: 767.9px) {
  .p-timetable__row {
    grid-template-columns: 1fr;
    gap: 2.4rem;
    border-bottom: 0;
  }
  .p-timetable__row:not(:last-child) {
    margin-bottom: 4rem;
  }
}
.p-timetable__time {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 400;
  font-family: "Oswald", sans-serif;
  text-align: center;
  line-height: 1.4;
  color: #FFFFFF;
  padding: 4rem 1rem;
  background: #222222;
}
@media screen and (max-width: 1199.9px) {
  .p-timetable__time {
    font-size: 1.4rem;
    padding: 2.4rem 0.4rem;
  }
}
@media screen and (max-width: 767.9px) {
  .p-timetable__time {
    display: block;
    font-size: 1.4rem;
    margin-inline: -2rem;
    padding: 0.8rem 2rem;
  }
}
@media screen and (max-width: 767.9px) {
  .p-timetable__time .pc-var {
    padding-inline: 0.3rem;
  }
}
.p-timetable__row:nth-child(2) .p-timetable__time {
  border-top-left-radius: 1rem;
}
@media screen and (max-width: 767.9px) {
  .p-timetable__row:nth-child(2) .p-timetable__time {
    border-radius: 0;
  }
}
.p-timetable__row:last-child .p-timetable__time {
  border-bottom-left-radius: 1rem;
}
@media screen and (max-width: 767.9px) {
  .p-timetable__row:last-child .p-timetable__time {
    border-radius: 0;
  }
}
.p-timetable__item {
  display: flex;
  border-right: 0.1rem solid #ccc;
}
.p-timetable__row:last-child .p-timetable__item {
  border-bottom-right-radius: 1rem;
}
@media screen and (max-width: 767.9px) {
  .p-timetable__item {
    border-right: 0;
  }
}

.p-seminar-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 4rem;
  box-sizing: border-box;
}
@media screen and (max-width: 1199.9px) {
  .p-seminar-card {
    padding: 2.4rem;
  }
}
@media screen and (max-width: 767.9px) {
  .p-seminar-card {
    padding: 0 2.4rem 2.4rem;
    border-radius: 0.5rem;
  }
}
@media screen and (max-width: 767.9px) {
  .p-seminar-card.is-green {
    border: 0.1rem solid #2A9D8F;
    border-top: 0;
  }
}
@media screen and (max-width: 767.9px) {
  .p-seminar-card.is-orange {
    border: 0.1rem solid #E76F51;
    border-top: 0;
  }
}
.p-seminar-card__place {
  flex: 0 0 auto;
  display: none;
}
@media screen and (max-width: 767.9px) {
  .p-seminar-card__place {
    display: block;
    color: #fff;
    text-align: center;
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 1.6;
    margin-inline: -2.4rem;
    margin-bottom: 2rem;
    padding: 1.2rem 2.4rem;
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
  }
  .p-seminar-card.is-green .p-seminar-card__place {
    background: #2A9D8F;
  }
  .p-seminar-card.is-orange .p-seminar-card__place {
    background: #E76F51;
  }
}
.p-seminar-card__header {
  flex: 0 0 auto;
  display: flex;
  gap: 1.4rem;
  margin-bottom: 1.2rem;
}
@media screen and (max-width: 1199.9px) {
  .p-seminar-card__header {
    flex-wrap: wrap;
    gap: 1.4rem 0.8rem;
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 767.9px) {
  .p-seminar-card__header {
    gap: 0.4rem 0.8rem;
  }
}
.p-seminar-card__header__inner {
  flex: 1 1 auto;
}
@media screen and (max-width: 1199.9px) {
  .p-seminar-card__header__inner {
    order: 3;
    width: 100%;
  }
}
.p-seminar-card__header::after {
  display: block;
  flex: 0 0 auto;
  width: 4rem;
  height: 4rem;
  white-space: nowrap;
  padding-left: 4rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin-block: -0.4rem;
  overflow: hidden;
  box-sizing: border-box;
}
@media screen and (max-width: 1199.9px) {
  .p-seminar-card__header::after {
    order: 2;
    margin-left: auto;
  }
}
@media screen and (max-width: 767.9px) {
  .p-seminar-card__header::after {
    width: 2.4rem;
    height: 2.4rem;
    padding-left: 2.4rem;
    margin-top: 0.2rem;
    margin-bottom: 0;
  }
}
.p-seminar-card.is-available .p-seminar-card__header::after {
  content: "残席あり";
  background-image: url(/mex/media/images/icon_available.svg);
}
.p-seminar-card.is-limited .p-seminar-card__header::after {
  content: "残席残り僅か";
  background-image: url(/mex/media/images/icon_limited.svg);
}
.p-seminar-card.is-full .p-seminar-card__header::after {
  content: "満席";
  background-image: url(/mex/media/images/icon_full.svg);
}
.p-seminar-card__id {
  flex: 0 0 auto;
  align-self: flex-start;
  margin-top: 0.6rem;
  padding: 0.4rem 0.8rem;
  min-width: 6rem;
  color: #FFFFFF;
  font-weight: bold;
  font-size: 1.2rem;
  text-align: center;
  line-height: 1.2;
  background: #222222;
}
@media screen and (max-width: 1199.9px) {
  .p-seminar-card__id {
    order: 1;
  }
}
@media screen and (max-width: 767.9px) {
  .p-seminar-card__id {
    font-size: 1rem;
    margin-top: 0.3rem;
    min-width: 5rem;
  }
}
.p-seminar-card__title {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.6;
}
@media screen and (max-width: 767.9px) {
  .p-seminar-card__title {
    font-size: 1.6rem;
  }
}
.p-seminar-card__sub {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (max-width: 767.9px) {
  .p-seminar-card__sub {
    font-size: 1.4rem;
  }
}
.p-seminar-card__summary {
  flex: 0 0 auto;
  font-size: 1.6rem;
  line-height: 1.6;
  margin-bottom: 1.6rem;
}
@media screen and (max-width: 767.9px) {
  .p-seminar-card__summary {
    font-size: 1.4rem;
  }
}
.p-seminar-card__speaker {
  flex: 0 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.4rem;
  margin-bottom: 2.4rem;
  padding: 2.4rem 3rem;
  border-radius: 0.5rem;
}
@media screen and (max-width: 1199.9px) {
  .p-seminar-card__speaker {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
}
@media screen and (max-width: 767.9px) {
  .p-seminar-card__speaker {
    padding: 2.4rem;
  }
}
.p-seminar-card.is-green .p-seminar-card__speaker {
  background: rgba(42, 157, 143, 0.1);
}
.p-seminar-card.is-orange .p-seminar-card__speaker {
  background: rgba(231, 111, 81, 0.1);
}
.p-seminar-card__speaker > .c-speaker:only-child {
  grid-column: span 2;
}
.p-seminar-card__footer {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.6rem;
  margin-top: auto;
}
@media screen and (max-width: 1199.9px) {
  .p-seminar-card__footer {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767.9px) {
  .p-seminar-card__footer {
    gap: 0.8rem;
  }
}
.p-seminar-card__footer .c-button {
  flex: 1 1 auto;
}
@media screen and (max-width: 1199.9px) {
  .p-seminar-card__footer .c-button {
    gap: 0.8rem;
    padding-inline: 1.2rem;
  }
  .p-seminar-card__footer .c-button::before {
    width: 1.8rem;
    height: 1.8rem;
  }
  .p-seminar-card__footer .c-button .c-arrow {
    width: 1.8rem;
    height: 1.8rem;
  }
}
@media screen and (max-width: 767.9px) {
  .p-seminar-card__footer .c-button .c-arrow {
    width: 1.8rem;
    height: 1.8rem;
  }
}
.p-seminar-card__footer .c-button.is-white {
  flex: 0 0 auto;
  width: 24rem;
}
@media screen and (max-width: 1199.9px) {
  .p-seminar-card__footer .c-button.is-white {
    width: auto;
    text-align: center;
  }
  .p-seminar-card__footer .c-button.is-white::before {
    content: none;
  }
}

.c-speaker {
  display: flex;
  align-items: flex-start;
  gap: 2.2rem;
}
@media screen and (max-width: 767.9px) {
  .c-speaker {
    display: block;
    gap: 2rem;
  }
}
.p-seminar-card__speaker .c-speaker {
  gap: 1.6rem;
}
@media screen and (max-width: 767.9px) {
  .p-seminar-card__speaker .c-speaker {
    gap: 1.6rem;
  }
}
.c-speaker__avatar {
  flex: 0 0 auto;
  overflow: hidden;
  width: 26%;
  max-width: 8rem;
}
@media screen and (max-width: 767.9px) {
  .c-speaker__avatar {
    float: left;
    margin-right: 2rem;
  }
  .c-speaker__avatar::after {
    content: "";
    display: block;
    clear: both;
  }
}
.c-speaker__avatar img {
  max-width: 100%;
  height: auto;
}
.c-modal .c-speaker__avatar {
  width: 12.5rem;
  max-width: none;
}
@media screen and (max-width: 767.9px) {
  .c-modal .c-speaker__avatar {
    width: 10rem;
  }
}
.c-speaker__body {
  flex: 1 1 auto;
  transition: color 0.3s;
}
.c-speaker__company, .c-speaker__post {
  font-size: 1.2rem;
  line-height: 1.2;
  margin-bottom: 0.4rem;
}
@media screen and (max-width: 767.9px) {
  .c-speaker__company, .c-speaker__post {
    font-size: 1rem;
  }
}
.c-speaker__name {
  font-size: 1.8rem;
  font-weight: 500;
}
@media screen and (max-width: 767.9px) {
  .c-speaker__name {
    font-size: 1.5rem;
  }
}
.p-seminar-card__speaker .c-speaker__name {
  font-size: 1.6rem;
}
@media screen and (max-width: 767.9px) {
  .p-seminar-card__speaker .c-speaker__name {
    font-size: 1.4rem;
  }
}
.c-speaker__unit {
  font-size: 1.2rem;
  padding-left: 0.4rem;
}
.c-speaker__profile {
  margin-top: 1.5rem;
}
@media screen and (max-width: 767.9px) {
  .c-speaker__profile {
    clear: both;
    margin-top: 0;
    padding-top: 1rem;
  }
}
.c-speaker__profile > dt {
  display: flex;
  align-items: center;
  font-family: "Oswald", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.03em;
  gap: 1rem;
  margin-bottom: 0.4rem;
}
@media screen and (max-width: 767.9px) {
  .c-speaker__profile > dt {
    font-size: 1.4rem;
  }
}
.c-speaker__profile > dt::after {
  content: "";
  display: block;
  flex: 1 1 auto;
  height: 0.1rem;
  background: #ccc;
}
.c-speaker__profile > dd {
  font-size: 1.2rem;
  line-height: 1.6;
}
a.c-speaker:hover .c-speaker__avatar img {
  transform: scale(1.1);
}

.is-green a.c-speaker:hover .c-speaker__body {
  color: #2A9D8F;
}

.is-orange a.c-speaker:hover .c-speaker__body {
  color: #E76F51;
}

.c-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.4rem;
  font-size: 1.4rem;
  font-weight: 500;
  color: #FFFFFF;
  min-height: 6rem;
  padding: 1.2rem 2.4rem;
  border-radius: 1rem;
  box-shadow: inset 0 0 0 2px transparent;
  overflow: hidden;
  box-sizing: border-box;
  z-index: 0;
  cursor: pointer;
  transition: box-shadow 0.3s, color 0.3s, background-color 0.3s;
}
.c-button::before {
  content: "";
  flex: 0 0 auto;
  width: 2.4rem;
}
@media screen and (max-width: 767.9px) {
  .c-button::before {
    width: 1.8rem;
  }
}
.c-button::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, #2D9EE4 0%, #1D54A2 100%);
  transition: opacity 0.3s;
}
.c-button:hover {
  color: #1D54A2;
  box-shadow: inset 0 0 0 2px #1D54A2;
}
.c-button:hover::after {
  opacity: 0;
}
.c-button:hover .c-arrow {
  background-color: #1D54A2;
}
.c-button:hover .c-arrow::after {
  background: #FFFFFF;
}
.c-button.is-lg {
  width: 100%;
  max-width: 46rem;
}
.c-button.is-return {
  width: 100%;
  max-width: 24rem;
}
@media screen and (max-width: 767.9px) {
  .c-button.is-return {
    max-width: 46rem;
  }
}
.c-button.is-return::before {
  order: 3;
}
.c-button.is-return .c-arrow {
  order: -1;
  transform: rotate(180deg);
}
.c-button .c-arrow {
  flex: 0 0 auto;
  width: 2.4rem;
  height: 2.4rem;
  background-color: #FFFFFF;
}
@media screen and (max-width: 767.9px) {
  .c-button .c-arrow {
    width: 1.8rem;
    height: 1.8rem;
  }
}
.c-button .c-arrow::after {
  filter: none;
  background: #1D54A2;
  mask: url(/mex/media/images/icon_arrow.svg) no-repeat center/cover;
}
.c-button.is-white {
  color: #222222;
  box-shadow: inset 0 0 0 1px #222222;
}
.c-button.is-white::after {
  content: none;
}
.c-button.is-white .c-arrow {
  background: #222222;
}
.c-button.is-white .c-arrow::after {
  background: #FFFFFF;
}
.c-button.is-white:hover {
  color: #FFFFFF;
  background: #222222;
}
.c-button.is-white:hover .c-arrow {
  background-color: #FFFFFF;
}
.c-button.is-white:hover .c-arrow::after {
  background: #222222;
}
.c-button.is-green::after {
  background: linear-gradient(90deg, #4BDDA8 0%, #2A9D8F 100%);
}
.c-button.is-green .c-arrow::after {
  background: #2A9D8F;
}
.c-button.is-green:hover {
  color: #2A9D8F;
  box-shadow: inset 0 0 0 2px #2A9D8F;
}
.c-button.is-green:hover .c-arrow {
  background-color: #2A9D8F;
}
.c-button.is-green:hover .c-arrow::after {
  background: #FFFFFF;
}
.c-button.is-orange::after {
  background: linear-gradient(90deg, #F68D8D 0%, #E76F51 100%);
}
.c-button.is-orange .c-arrow::after {
  background: #E76F51;
}
.c-button.is-orange:hover {
  color: #E76F51;
  box-shadow: inset 0 0 0 2px #E76F51;
}
.c-button.is-orange:hover .c-arrow {
  background-color: #E76F51;
}
.c-button.is-orange:hover .c-arrow::after {
  background: #FFFFFF;
}
.is-green .c-button.is-inherit::after {
  background: linear-gradient(90deg, #4BDDA8 0%, #2A9D8F 100%);
}
.is-green .c-button.is-inherit .c-arrow::after {
  background: #2A9D8F;
}
.is-green .c-button.is-inherit:hover {
  color: #2A9D8F;
  box-shadow: inset 0 0 0 2px #2A9D8F;
}
.is-green .c-button.is-inherit:hover .c-arrow {
  background-color: #2A9D8F;
}
.is-green .c-button.is-inherit:hover .c-arrow::after {
  background: #FFFFFF;
}
.is-orange .c-button.is-inherit::after {
  background: linear-gradient(90deg, #F68D8D 0%, #E76F51 100%);
}
.is-orange .c-button.is-inherit .c-arrow::after {
  background: #E76F51;
}
.is-orange .c-button.is-inherit:hover {
  color: #E76F51;
  box-shadow: inset 0 0 0 2px #E76F51;
}
.is-orange .c-button.is-inherit:hover .c-arrow {
  background-color: #E76F51;
}
.is-orange .c-button.is-inherit:hover .c-arrow::after {
  background: #FFFFFF;
}
.c-button[aria-disabled=true][aria-disabled=true][aria-disabled=true] {
  pointer-events: none;
  background: #CCCCCC;
}
.c-button[aria-disabled=true][aria-disabled=true][aria-disabled=true]::after {
  content: none;
}
.c-button[aria-disabled=true][aria-disabled=true][aria-disabled=true] .c-arrow::after {
  background-color: #CCCCCC;
}

.pc-var {
  display: inline-block;
  transform: rotate(90deg);
}
@media screen and (max-width: 767.9px) {
  .pc-var {
    transform: rotate(0deg);
  }
}

.c-legend {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-block: 4rem;
}
@media screen and (max-width: 767.9px) {
  .c-legend {
    gap: 1.6rem;
    margin-block: 2.4rem;
  }
}
.c-legend > li {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}
.c-legend > li img {
  flex: 0 0 auto;
}
@media screen and (max-width: 767.9px) {
  .c-legend > li img {
    width: 2.4rem;
    height: 2.4rem;
  }
}
.c-legend__label {
  font-weight: 500;
}
@media screen and (max-width: 767.9px) {
  .c-legend__label {
    font-size: 1.2rem;
  }
}
.c-legend__label::before {
  content: "…";
}

.c-modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: calc(var(--dvh, 1vh) * 100);
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  z-index: 9999;
}
.c-modal[aria-hidden=false] .c-modal__overlay {
  opacity: 1;
  visibility: visible;
}
.is-ready .c-modal__overlay {
  transition: opacity 0.7s ease, visibility 0.7s ease;
}
.c-modal-contents {
  position: relative;
  max-width: 1200px;
  width: 90vw;
  max-height: 80vh;
  max-height: calc(var(--dvh, 1vh) * 80);
  transform: translateY(-2rem);
}
.c-modal[aria-hidden=false] .c-modal-contents {
  transform: translateY(0);
}
.is-ready .c-modal-contents {
  transition: transform 0.7s ease;
}
.c-modal-contents__inner {
  overflow: auto;
  background-color: #FFFFFF;
  border-radius: 0.5rem;
  max-height: calc(var(--dvh, 1vh) * 80);
  border: 2px solid #1D54A2;
}
.p-timeline__item:nth-child(odd) .c-modal-contents__inner {
  border-color: #297BD2;
}
.p-timeline__item:nth-child(even) .c-modal-contents__inner {
  border-color: #29A5D2;
}
.is-green .c-modal-contents__inner {
  border-color: #2A9D8F;
}
.is-orange .c-modal-contents__inner {
  border-color: #E76F51;
}
.c-modal__close {
  position: absolute;
  bottom: calc(100% + 1rem);
  right: 0;
  width: 37px;
  height: 37px;
  background: #FFFFFF;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
}
.c-modal__close::before, .c-modal__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 2rem;
  height: 0.2rem;
  background: #222222;
  transition: background-color 0.3s;
}
.c-modal__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.c-modal__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.c-modal__close:hover {
  background: #1D54A2;
}
.c-modal__close:hover::before, .c-modal__close:hover::after {
  background: #FFFFFF;
}
.p-timeline__item:nth-child(odd) .c-modal__close:hover {
  background: #297BD2;
}
.p-timeline__item:nth-child(even) .c-modal__close:hover {
  background: #29A5D2;
}
.is-green .c-modal__close:hover {
  background: #2A9D8F;
}
.is-orange .c-modal__close:hover {
  background: #E76F51;
}

.p-seminar-modal {
  position: relative;
  padding: 0 4rem 4rem;
}
@media screen and (max-width: 767.9px) {
  .p-seminar-modal {
    padding: 0 2rem 2rem;
  }
}
.p-seminar-modal__meta {
  display: flex;
  margin: 0 -4rem 2.4rem;
}
@media screen and (max-width: 767.9px) {
  .p-seminar-modal__meta {
    display: block;
    margin: 0 -2rem 1.6rem;
  }
}
.p-seminar-modal:has(.p-seminar-modal-button) .p-seminar-modal__meta {
  padding-right: 38rem;
}
@media screen and (max-width: 1199.9px) {
  .p-seminar-modal:has(.p-seminar-modal-button) .p-seminar-modal__meta {
    padding-right: 30.4rem;
  }
}
@media screen and (max-width: 767.9px) {
  .p-seminar-modal:has(.p-seminar-modal-button) .p-seminar-modal__meta {
    padding-right: 0;
  }
}
.p-seminar-modal__id {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.2;
  padding: 1.6rem 2.4rem;
  color: #FFFFFF;
  background: #333;
}
@media screen and (max-width: 1199.9px) {
  .p-seminar-modal__id {
    font-size: 1.7rem;
    padding-inline: 1.6rem;
  }
}
@media screen and (max-width: 767.9px) {
  .p-seminar-modal__id {
    font-size: 2rem;
    padding: 1rem 2rem;
    text-align: center;
  }
}
.p-seminar-modal__place {
  flex: 0 1 auto;
  font-size: 2rem;
  font-weight: bold;
  color: #FFFFFF;
  padding: 1.6rem 2.4rem;
  background: #29A5D2;
}
@media screen and (max-width: 1199.9px) {
  .p-seminar-modal__place {
    font-size: 1.5rem;
    padding-inline: 1.6rem;
  }
}
@media screen and (max-width: 767.9px) {
  .p-seminar-modal__place {
    font-size: 1.6rem;
    padding: 1rem 2rem;
    text-align: center;
  }
}
.p-timeline__item:nth-child(odd) .p-seminar-modal__place {
  background: #297BD2;
}
.p-timeline__item:nth-child(even) .p-seminar-modal__place {
  background: #29A5D2;
}
.is-green .p-seminar-modal__place {
  background: #2A9D8F;
}
.is-orange .p-seminar-modal__place {
  background: #E76F51;
}
.p-seminar-modal__data {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  margin-bottom: 3.6rem;
}
@media screen and (max-width: 1199.9px) {
  .p-seminar-modal__data {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }
}
@media screen and (max-width: 767.9px) {
  .p-seminar-modal__data {
    align-items: center;
    margin-bottom: 2rem;
  }
}
.p-seminar-modal:has(.p-seminar-modal-button) .p-seminar-modal__data {
  padding-right: 34rem;
}
@media screen and (max-width: 1199.9px) {
  .p-seminar-modal:has(.p-seminar-modal-button) .p-seminar-modal__data {
    padding-right: 26.4rem;
  }
}
@media screen and (max-width: 767.9px) {
  .p-seminar-modal:has(.p-seminar-modal-button) .p-seminar-modal__data {
    padding-right: 0;
  }
}
.p-seminar-modal__time {
  flex: 0 0 auto;
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1.4;
}
@media screen and (max-width: 1199.9px) {
  .p-seminar-modal__time {
    order: 2;
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 767.9px) {
  .p-seminar-modal__time {
    font-size: 2rem;
  }
}
.p-seminar-modal__seats {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 1.8rem;
}
@media screen and (max-width: 1199.9px) {
  .p-seminar-modal__seats {
    order: 1;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767.9px) {
  .p-seminar-modal__seats {
    font-size: 1.4rem;
  }
  .p-seminar-modal__seats img {
    width: 2.4rem;
    height: 2.4rem;
  }
}
.p-seminar-modal__title {
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1.4;
}
@media screen and (max-width: 1199.9px) {
  .p-seminar-modal__title {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767.9px) {
  .p-seminar-modal__title {
    font-size: 2rem;
  }
}
.p-seminar-modal__sub {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.4;
  margin-top: 0.4rem;
}
@media screen and (max-width: 1199.9px) {
  .p-seminar-modal__sub {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767.9px) {
  .p-seminar-modal__sub {
    font-size: 1.6rem;
  }
}
.p-seminar-modal__summary {
  font-size: 1.4rem;
  line-height: 1.8;
  margin-top: 1.6rem;
}
@media screen and (max-width: 767.9px) {
  .p-seminar-modal__summary {
    font-size: 1.3rem;
  }
}
.p-seminar-modal__speaker {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  margin-top: 3rem;
}
@media screen and (max-width: 1199.9px) {
  .p-seminar-modal__speaker {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.p-timeline__item .p-seminar-modal__speaker {
  display: flex;
  flex-wrap: wrap;
}
.p-timeline__item .p-seminar-modal__speaker .c-speaker {
  display: block;
}
.p-seminar-modal__speaker > .c-speaker:only-child {
  grid-column: span 2;
}
.p-seminar-modal-button {
  position: absolute;
  top: 4rem;
  right: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  width: 30rem;
  height: 9.5rem;
  padding: 0.8rem 1.6rem;
  color: #FFFFFF;
  background: #E70027;
  border-radius: 0.5rem;
  box-sizing: border-box;
  border: 0.2rem solid #E70027;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}
@media screen and (max-width: 1199.9px) {
  .p-seminar-modal-button {
    width: 24rem;
    height: 7.2rem;
    padding-inline: 0.8rem;
  }
}
@media screen and (max-width: 767.9px) {
  .p-seminar-modal-button {
    position: relative;
    right: 0;
    top: 0;
    width: 100%;
    max-width: none;
    margin: 2.4rem auto 0;
  }
}
.p-seminar-modal-button:disabled {
  pointer-events: none;
  background: #CCCCCC;
  border-color: #CCCCCC;
}
.p-seminar-modal-button[aria-disabled=true] {
  pointer-events: none;
  background: #CCCCCC;
  border-color: #CCCCCC;
}
.p-seminar-modal-button__tag {
  flex: 0 0 auto;
  width: 5.5rem;
  text-align: center;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.2;
  padding: 0.4rem 0.8rem;
  box-sizing: border-box;
  border: 0.1rem solid #FFFFFF;
  border-radius: 2rem;
  transition: border-color 0.3s;
}
@media screen and (max-width: 1199.9px) {
  .p-seminar-modal-button__tag {
    font-size: 1rem;
    width: 4rem;
  }
}
.p-seminar-modal-button__icon {
  flex: 0 0 auto;
  position: relative;
  width: 2.4rem;
  height: 2.4rem;
  background: #FFFFFF;
  border-radius: 0.4rem;
}
.p-seminar-modal-button__icon::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.9rem;
  aspect-ratio: 19/15.69;
  background: #E70027;
  transform: translate(-50%, -50%);
  opacity: 0;
  mask: url(/mex/media/images/icon_check.svg) no-repeat center/contain;
  transition: opacity 0.1s;
}
.p-seminar-modal-button.is-active .p-seminar-modal-button__icon::before {
  opacity: 1;
}
.p-seminar-modal-button__label {
  font-size: 1.6rem;
  font-weight: bold;
}
@media screen and (max-width: 1199.9px) {
  .p-seminar-modal-button__label {
    font-size: 1.4rem;
  }
}
a.p-seminar-modal-button:hover {
  background-color: #FFFFFF;
  color: #E70027;
}
a.p-seminar-modal-button:hover .p-seminar-modal-button__tag {
  border-color: #E70027;
}

main {
  background: #F3F6FA;
}

.c-page-title .bgimage {
  background-image: url(../media/images/kv_seminar.jpg);
}

.p-seminars {
  margin-top: 8rem;
}
@media screen and (max-width: 767.9px) {
  .p-seminars {
    margin-top: 6rem;
  }
}
.p-seminars-nav {
  max-width: 166rem;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2rem;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.p-seminars-nav__button {
  appearance: none;
  font-size: 2.4rem;
  font-weight: 500;
  padding: 1.6rem;
  color: #222222;
  text-align: center;
  background: #FFFFFF;
  border: 0.2rem solid #1D54A2;
  transition: color 0.3s, background-color 0.3s;
  cursor: pointer;
}
@media screen and (max-width: 767.9px) {
  .p-seminars-nav__button {
    font-size: 1.6rem;
    padding: 1rem;
  }
}
.p-seminars-nav__button:first-child {
  border-top-left-radius: 1rem;
  border-bottom-left-radius: 1rem;
}
@media screen and (max-width: 767.9px) {
  .p-seminars-nav__button:first-child {
    border-top-left-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
  }
}
.p-seminars-nav__button:last-child {
  border-top-right-radius: 1rem;
  border-bottom-right-radius: 1rem;
}
@media screen and (max-width: 767.9px) {
  .p-seminars-nav__button:last-child {
    border-top-right-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
  }
}
.p-seminars-nav__button:hover, .p-seminars-nav__button[aria-selected=true] {
  background: #1D54A2;
  color: #FFFFFF;
}
.p-seminars__contents {
  position: relative;
  overflow: hidden;
}
.p-seminars__panel {
  transition: opacity 0.5s, visibility 0.5s;
}
.p-seminars__panel[aria-hidden=true] {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-seminars__panel[aria-hidden=false] {
  opacity: 1;
  visibility: visible;
  position: static;
}

.p-schedule {
  padding: 8rem 0 0;
}
@media screen and (max-width: 767.9px) {
  .p-schedule {
    padding-top: 4rem;
  }
}
.p-schedule-nav {
  padding: 0 2rem;
  border-bottom: 0.4rem solid #1D54A2;
}
.p-schedule-nav__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 80rem;
  margin: 0 auto;
}
@media screen and (max-width: 767.9px) {
  .p-schedule-nav__inner {
    gap: 0.8rem;
  }
}
.p-schedule-nav__button {
  appearance: none;
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: center;
  font-size: 2.4rem;
  font-weight: 500;
  padding: 1.6rem;
  min-height: 8rem;
  color: #222222;
  text-align: center;
  background: #FFFFFF;
  border-bottom: 0;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
  transition: color 0.3s, background-color 0.3s;
  cursor: pointer;
  box-sizing: border-box;
}
@media screen and (max-width: 767.9px) {
  .p-schedule-nav__button {
    font-size: 1.4rem;
    padding: 1rem;
    min-height: 4rem;
  }
}
.p-schedule-nav__button:hover, .p-schedule-nav__button[aria-selected=true] {
  background: #1D54A2;
  color: #FFFFFF;
}
.p-schedule__contents {
  position: relative;
  overflow: hidden;
  background: #fff;
}
.p-schedule__panel {
  padding: 4rem 0;
  transition: opacity 0.5s, visibility 0.5s;
}
@media screen and (max-width: 767.9px) {
  .p-schedule__panel {
    padding-block: 2.4rem;
  }
}
.p-schedule__panel[aria-hidden=true] {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-schedule__panel[aria-hidden=false] {
  opacity: 1;
  visibility: visible;
  position: static;
}

.c-inner {
  max-width: 166rem;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2rem;
  box-sizing: border-box;
}

.c-caution {
  display: flex;
  align-items: center;
  gap: 4rem;
  width: fit-content;
  margin: 0 auto;
  padding: 2.4rem 3.5rem;
  background: #FFF7F3;
  border: 0.2rem solid #F24D00;
  border-radius: 0.5rem;
  box-sizing: border-box;
}
@media screen and (max-width: 767.9px) {
  .c-caution {
    flex-direction: column;
    gap: 1.6rem;
    padding-inline: 2.4rem;
  }
}
.c-caution > dt {
  flex: 0 0 auto;
  font-weight: bold;
  font-size: 2.4rem;
  color: #F24D00;
}
@media screen and (max-width: 767.9px) {
  .c-caution > dt {
    font-size: 2rem;
  }
}
.c-caution > dd {
  flex: 1 1 auto;
}
.c-caution > dd ul {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (max-width: 767.9px) {
  .c-caution > dd ul {
    font-size: 1.2rem;
  }
}
.c-caution > dd ul > li {
  text-indent: -1em;
  padding-left: 1em;
}

.p-timeline {
  position: relative;
  margin-top: 4rem;
  height: fit-content;
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.p-timeline::-webkit-scrollbar {
  display: none;
}
.p-timeline__inner {
  max-width: 162rem;
  margin: 0 auto;
}
.p-timeline__list {
  display: flex;
  gap: 0.8rem;
  width: fit-content;
  overflow: hidden;
}
@media screen and (max-width: 767.9px) {
  .p-timeline__list {
    gap: 0.4rem;
  }
}
.p-timeline__line {
  flex: 0 0 auto;
  position: sticky;
  left: 2rem;
  width: 6rem;
  z-index: 10;
}
.p-timeline__line::before {
  content: "";
  display: block;
  height: 12rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline__line::before {
    height: 5.4rem;
  }
}
.p-timeline__line .p-timeline__body {
  padding-left: 2rem;
  margin-left: -2rem;
  width: 6rem;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(1rem);
}
.p-timeline__time {
  display: block;
  position: absolute;
  left: 2rem;
  font-family: "Oswald", sans-serif;
  font-size: 1.8rem;
  line-height: 1;
  text-shadow: 0.2rem 0.2rem 0 #FFFFFF;
  transform: translateY(-50%);
}
@media screen and (max-width: 767.9px) {
  .p-timeline__time {
    font-size: 1.2rem;
  }
}
.p-timeline__time.t-10\:00 {
  top: 4rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline__time.t-10\:00 {
    top: 0.8rem;
    left: 3rem;
  }
}
.p-timeline__time.t-10\:10 {
  top: 10rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline__time.t-10\:10 {
    top: 5.8rem;
    left: 3rem;
  }
}
.p-timeline__time.t-10\:20 {
  top: 16rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline__time.t-10\:20 {
    top: 10.8rem;
    left: 3rem;
  }
}
.p-timeline__time.t-10\:30 {
  top: 22rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline__time.t-10\:30 {
    top: 15.8rem;
    left: 3rem;
  }
}
.p-timeline__time.t-10\:40 {
  top: 28rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline__time.t-10\:40 {
    top: 20.8rem;
    left: 3rem;
  }
}
.p-timeline__time.t-10\:50 {
  top: 34rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline__time.t-10\:50 {
    top: 25.8rem;
    left: 3rem;
  }
}
.p-timeline__time.t-11\:00 {
  top: 40rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline__time.t-11\:00 {
    top: 30.8rem;
    left: 3rem;
  }
}
.p-timeline__time.t-11\:10 {
  top: 46rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline__time.t-11\:10 {
    top: 35.8rem;
    left: 3rem;
  }
}
.p-timeline__time.t-11\:20 {
  top: 52rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline__time.t-11\:20 {
    top: 40.8rem;
    left: 3rem;
  }
}
.p-timeline__time.t-11\:30 {
  top: 58rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline__time.t-11\:30 {
    top: 45.8rem;
    left: 3rem;
  }
}
.p-timeline__time.t-11\:40 {
  top: 64rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline__time.t-11\:40 {
    top: 50.8rem;
    left: 3rem;
  }
}
.p-timeline__time.t-11\:50 {
  top: 70rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline__time.t-11\:50 {
    top: 55.8rem;
    left: 3rem;
  }
}
.p-timeline__time.t-12\:00 {
  top: 76rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline__time.t-12\:00 {
    top: 60.8rem;
    left: 3rem;
  }
}
.p-timeline__time.t-12\:10 {
  top: 82rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline__time.t-12\:10 {
    top: 65.8rem;
    left: 3rem;
  }
}
.p-timeline__time.t-12\:20 {
  top: 88rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline__time.t-12\:20 {
    top: 70.8rem;
    left: 3rem;
  }
}
.p-timeline__time.t-12\:30 {
  top: 94rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline__time.t-12\:30 {
    top: 75.8rem;
    left: 3rem;
  }
}
.p-timeline__time.t-12\:40 {
  top: 100rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline__time.t-12\:40 {
    top: 80.8rem;
    left: 3rem;
  }
}
.p-timeline__time.t-12\:50 {
  top: 106rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline__time.t-12\:50 {
    top: 85.8rem;
    left: 3rem;
  }
}
.p-timeline__time.t-13\:00 {
  top: 112rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline__time.t-13\:00 {
    top: 90.8rem;
    left: 3rem;
  }
}
.p-timeline__time.t-13\:10 {
  top: 118rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline__time.t-13\:10 {
    top: 95.8rem;
    left: 3rem;
  }
}
.p-timeline__time.t-13\:20 {
  top: 124rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline__time.t-13\:20 {
    top: 100.8rem;
    left: 3rem;
  }
}
.p-timeline__time.t-13\:30 {
  top: 130rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline__time.t-13\:30 {
    top: 105.8rem;
    left: 3rem;
  }
}
.p-timeline__time.t-13\:40 {
  top: 136rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline__time.t-13\:40 {
    top: 110.8rem;
    left: 3rem;
  }
}
.p-timeline__time.t-13\:50 {
  top: 142rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline__time.t-13\:50 {
    top: 115.8rem;
    left: 3rem;
  }
}
.p-timeline__time.t-14\:00 {
  top: 148rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline__time.t-14\:00 {
    top: 120.8rem;
    left: 3rem;
  }
}
.p-timeline__time.t-14\:10 {
  top: 154rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline__time.t-14\:10 {
    top: 125.8rem;
    left: 3rem;
  }
}
.p-timeline__time.t-14\:20 {
  top: 160rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline__time.t-14\:20 {
    top: 130.8rem;
    left: 3rem;
  }
}
.p-timeline__time.t-14\:30 {
  top: 166rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline__time.t-14\:30 {
    top: 135.8rem;
    left: 3rem;
  }
}
.p-timeline__time.t-14\:40 {
  top: 172rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline__time.t-14\:40 {
    top: 140.8rem;
    left: 3rem;
  }
}
.p-timeline__time.t-14\:50 {
  top: 178rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline__time.t-14\:50 {
    top: 145.8rem;
    left: 3rem;
  }
}
.p-timeline__time.t-15\:00 {
  top: 184rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline__time.t-15\:00 {
    top: 150.8rem;
    left: 3rem;
  }
}
.p-timeline__time.t-15\:10 {
  top: 190rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline__time.t-15\:10 {
    top: 155.8rem;
    left: 3rem;
  }
}
.p-timeline__time.t-15\:20 {
  top: 196rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline__time.t-15\:20 {
    top: 160.8rem;
    left: 3rem;
  }
}
.p-timeline__time.t-15\:30 {
  top: 202rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline__time.t-15\:30 {
    top: 165.8rem;
    left: 3rem;
  }
}
.p-timeline__time.t-15\:40 {
  top: 208rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline__time.t-15\:40 {
    top: 170.8rem;
    left: 3rem;
  }
}
.p-timeline__time.t-15\:50 {
  top: 214rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline__time.t-15\:50 {
    top: 175.8rem;
    left: 3rem;
  }
}
.p-timeline__time.t-16\:00 {
  top: 220rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline__time.t-16\:00 {
    top: 180.8rem;
    left: 3rem;
  }
}
.p-timeline__time.t-16\:10 {
  top: 226rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline__time.t-16\:10 {
    top: 185.8rem;
    left: 3rem;
  }
}
.p-timeline__time.t-16\:20 {
  top: 232rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline__time.t-16\:20 {
    top: 190.8rem;
    left: 3rem;
  }
}
.p-timeline__time.t-16\:30 {
  top: 238rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline__time.t-16\:30 {
    top: 195.8rem;
    left: 3rem;
  }
}
.p-timeline__time.t-16\:40 {
  top: 244rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline__time.t-16\:40 {
    top: 200.8rem;
    left: 3rem;
  }
}
.p-timeline__time.t-16\:50 {
  top: 250rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline__time.t-16\:50 {
    top: 205.8rem;
    left: 3rem;
  }
}
.p-timeline__time.t-17\:00 {
  top: 256rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline__time.t-17\:00 {
    top: 210.8rem;
    left: 3rem;
  }
}
.p-timeline__item {
  flex: 0 0 auto;
  width: 34rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline__item {
    width: 15rem;
  }
}
.p-timeline__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  height: 12rem;
  padding: 0.8rem 1.6rem;
  box-sizing: border-box;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline__head {
    padding: 0.8rem;
    height: 5.4rem;
  }
}
.p-timeline__item:nth-child(odd) .p-timeline__head {
  background: #297BD2;
}
.p-timeline__item:nth-child(even) .p-timeline__head {
  background: #29A5D2;
}
.p-timeline__title {
  font-weight: 500;
  font-size: 2rem;
  color: #FFFFFF;
  line-height: 1.6;
}
@media screen and (max-width: 767.9px) {
  .p-timeline__title {
    font-size: 1.2rem;
  }
}
.p-timeline__place {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  padding: 0.4rem 1.2rem;
  background: #fff;
}
@media screen and (max-width: 767.9px) {
  .p-timeline__place {
    font-size: 1rem;
    padding: 0.2rem 0.8rem;
  }
}
.p-timeline__body {
  position: relative;
  padding: 4rem 0;
  height: 260rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline__body {
    height: 211.6rem;
  }
}
.p-timeline__item:nth-child(odd) .p-timeline__body {
  background: #DDECFB;
}
.p-timeline__item:nth-child(even) .p-timeline__body {
  background: #DFF6FF;
}
.p-timeline-card {
  position: absolute;
  left: 2rem;
  right: 2rem;
  display: flex;
  padding: 2.4rem;
  color: #222222;
  background: #FFFFFF;
  box-sizing: border-box;
  border-radius: 0.5rem;
  border: 0.1rem solid #ccc;
  cursor: pointer;
  z-index: 2;
  transition: border-color 0.3s;
}
@media screen and (max-width: 767.9px) {
  .p-timeline-card {
    left: 0.8rem;
    right: 0.8rem;
    padding: 0.8rem;
  }
}
.p-timeline-card::before {
  content: "";
  display: block;
  position: absolute;
  top: -0.1rem;
  left: -0.1rem;
  right: -0.1rem;
  height: 0.8rem;
  background: transparent;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
  transition: background-color 0.3s;
}
.p-timeline__item:nth-child(odd) .p-timeline-card:hover {
  border-color: #297BD2;
}
.p-timeline__item:nth-child(odd) .p-timeline-card:hover::before {
  background: #297BD2;
}
.p-timeline__item:nth-child(even) .p-timeline-card:hover {
  border-color: #29A5D2;
}
.p-timeline__item:nth-child(even) .p-timeline-card:hover::before {
  background: #29A5D2;
}
.p-timeline-card.s-10\:00 {
  top: 4rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline-card.s-10\:00 {
    top: 0.8rem;
  }
}
.p-timeline-card.e-10\:00 {
  bottom: 256rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline-card.e-10\:00 {
    bottom: 210.8rem;
  }
}
.p-timeline-card.s-10\:10 {
  top: 10rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline-card.s-10\:10 {
    top: 5.8rem;
  }
}
.p-timeline-card.e-10\:10 {
  bottom: 250rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline-card.e-10\:10 {
    bottom: 205.8rem;
  }
}
.p-timeline-card.s-10\:20 {
  top: 16rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline-card.s-10\:20 {
    top: 10.8rem;
  }
}
.p-timeline-card.e-10\:20 {
  bottom: 244rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline-card.e-10\:20 {
    bottom: 200.8rem;
  }
}
.p-timeline-card.s-10\:30 {
  top: 22rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline-card.s-10\:30 {
    top: 15.8rem;
  }
}
.p-timeline-card.e-10\:30 {
  bottom: 238rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline-card.e-10\:30 {
    bottom: 195.8rem;
  }
}
.p-timeline-card.s-10\:40 {
  top: 28rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline-card.s-10\:40 {
    top: 20.8rem;
  }
}
.p-timeline-card.e-10\:40 {
  bottom: 232rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline-card.e-10\:40 {
    bottom: 190.8rem;
  }
}
.p-timeline-card.s-10\:50 {
  top: 34rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline-card.s-10\:50 {
    top: 25.8rem;
  }
}
.p-timeline-card.e-10\:50 {
  bottom: 226rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline-card.e-10\:50 {
    bottom: 185.8rem;
  }
}
.p-timeline-card.s-11\:00 {
  top: 40rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline-card.s-11\:00 {
    top: 30.8rem;
  }
}
.p-timeline-card.e-11\:00 {
  bottom: 220rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline-card.e-11\:00 {
    bottom: 180.8rem;
  }
}
.p-timeline-card.s-11\:10 {
  top: 46rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline-card.s-11\:10 {
    top: 35.8rem;
  }
}
.p-timeline-card.e-11\:10 {
  bottom: 214rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline-card.e-11\:10 {
    bottom: 175.8rem;
  }
}
.p-timeline-card.s-11\:20 {
  top: 52rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline-card.s-11\:20 {
    top: 40.8rem;
  }
}
.p-timeline-card.e-11\:20 {
  bottom: 208rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline-card.e-11\:20 {
    bottom: 170.8rem;
  }
}
.p-timeline-card.s-11\:30 {
  top: 58rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline-card.s-11\:30 {
    top: 45.8rem;
  }
}
.p-timeline-card.e-11\:30 {
  bottom: 202rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline-card.e-11\:30 {
    bottom: 165.8rem;
  }
}
.p-timeline-card.s-11\:40 {
  top: 64rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline-card.s-11\:40 {
    top: 50.8rem;
  }
}
.p-timeline-card.e-11\:40 {
  bottom: 196rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline-card.e-11\:40 {
    bottom: 160.8rem;
  }
}
.p-timeline-card.s-11\:50 {
  top: 70rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline-card.s-11\:50 {
    top: 55.8rem;
  }
}
.p-timeline-card.e-11\:50 {
  bottom: 190rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline-card.e-11\:50 {
    bottom: 155.8rem;
  }
}
.p-timeline-card.s-12\:00 {
  top: 76rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline-card.s-12\:00 {
    top: 60.8rem;
  }
}
.p-timeline-card.e-12\:00 {
  bottom: 184rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline-card.e-12\:00 {
    bottom: 150.8rem;
  }
}
.p-timeline-card.s-12\:10 {
  top: 82rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline-card.s-12\:10 {
    top: 65.8rem;
  }
}
.p-timeline-card.e-12\:10 {
  bottom: 178rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline-card.e-12\:10 {
    bottom: 145.8rem;
  }
}
.p-timeline-card.s-12\:20 {
  top: 88rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline-card.s-12\:20 {
    top: 70.8rem;
  }
}
.p-timeline-card.e-12\:20 {
  bottom: 172rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline-card.e-12\:20 {
    bottom: 140.8rem;
  }
}
.p-timeline-card.s-12\:30 {
  top: 94rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline-card.s-12\:30 {
    top: 75.8rem;
  }
}
.p-timeline-card.e-12\:30 {
  bottom: 166rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline-card.e-12\:30 {
    bottom: 135.8rem;
  }
}
.p-timeline-card.s-12\:40 {
  top: 100rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline-card.s-12\:40 {
    top: 80.8rem;
  }
}
.p-timeline-card.e-12\:40 {
  bottom: 160rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline-card.e-12\:40 {
    bottom: 130.8rem;
  }
}
.p-timeline-card.s-12\:50 {
  top: 106rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline-card.s-12\:50 {
    top: 85.8rem;
  }
}
.p-timeline-card.e-12\:50 {
  bottom: 154rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline-card.e-12\:50 {
    bottom: 125.8rem;
  }
}
.p-timeline-card.s-13\:00 {
  top: 112rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline-card.s-13\:00 {
    top: 90.8rem;
  }
}
.p-timeline-card.e-13\:00 {
  bottom: 148rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline-card.e-13\:00 {
    bottom: 120.8rem;
  }
}
.p-timeline-card.s-13\:10 {
  top: 118rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline-card.s-13\:10 {
    top: 95.8rem;
  }
}
.p-timeline-card.e-13\:10 {
  bottom: 142rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline-card.e-13\:10 {
    bottom: 115.8rem;
  }
}
.p-timeline-card.s-13\:20 {
  top: 124rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline-card.s-13\:20 {
    top: 100.8rem;
  }
}
.p-timeline-card.e-13\:20 {
  bottom: 136rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline-card.e-13\:20 {
    bottom: 110.8rem;
  }
}
.p-timeline-card.s-13\:30 {
  top: 130rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline-card.s-13\:30 {
    top: 105.8rem;
  }
}
.p-timeline-card.e-13\:30 {
  bottom: 130rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline-card.e-13\:30 {
    bottom: 105.8rem;
  }
}
.p-timeline-card.s-13\:40 {
  top: 136rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline-card.s-13\:40 {
    top: 110.8rem;
  }
}
.p-timeline-card.e-13\:40 {
  bottom: 124rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline-card.e-13\:40 {
    bottom: 100.8rem;
  }
}
.p-timeline-card.s-13\:50 {
  top: 142rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline-card.s-13\:50 {
    top: 115.8rem;
  }
}
.p-timeline-card.e-13\:50 {
  bottom: 118rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline-card.e-13\:50 {
    bottom: 95.8rem;
  }
}
.p-timeline-card.s-14\:00 {
  top: 148rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline-card.s-14\:00 {
    top: 120.8rem;
  }
}
.p-timeline-card.e-14\:00 {
  bottom: 112rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline-card.e-14\:00 {
    bottom: 90.8rem;
  }
}
.p-timeline-card.s-14\:10 {
  top: 154rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline-card.s-14\:10 {
    top: 125.8rem;
  }
}
.p-timeline-card.e-14\:10 {
  bottom: 106rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline-card.e-14\:10 {
    bottom: 85.8rem;
  }
}
.p-timeline-card.s-14\:20 {
  top: 160rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline-card.s-14\:20 {
    top: 130.8rem;
  }
}
.p-timeline-card.e-14\:20 {
  bottom: 100rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline-card.e-14\:20 {
    bottom: 80.8rem;
  }
}
.p-timeline-card.s-14\:30 {
  top: 166rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline-card.s-14\:30 {
    top: 135.8rem;
  }
}
.p-timeline-card.e-14\:30 {
  bottom: 94rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline-card.e-14\:30 {
    bottom: 75.8rem;
  }
}
.p-timeline-card.s-14\:40 {
  top: 172rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline-card.s-14\:40 {
    top: 140.8rem;
  }
}
.p-timeline-card.e-14\:40 {
  bottom: 88rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline-card.e-14\:40 {
    bottom: 70.8rem;
  }
}
.p-timeline-card.s-14\:50 {
  top: 178rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline-card.s-14\:50 {
    top: 145.8rem;
  }
}
.p-timeline-card.e-14\:50 {
  bottom: 82rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline-card.e-14\:50 {
    bottom: 65.8rem;
  }
}
.p-timeline-card.s-15\:00 {
  top: 184rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline-card.s-15\:00 {
    top: 150.8rem;
  }
}
.p-timeline-card.e-15\:00 {
  bottom: 76rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline-card.e-15\:00 {
    bottom: 60.8rem;
  }
}
.p-timeline-card.s-15\:10 {
  top: 190rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline-card.s-15\:10 {
    top: 155.8rem;
  }
}
.p-timeline-card.e-15\:10 {
  bottom: 70rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline-card.e-15\:10 {
    bottom: 55.8rem;
  }
}
.p-timeline-card.s-15\:20 {
  top: 196rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline-card.s-15\:20 {
    top: 160.8rem;
  }
}
.p-timeline-card.e-15\:20 {
  bottom: 64rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline-card.e-15\:20 {
    bottom: 50.8rem;
  }
}
.p-timeline-card.s-15\:30 {
  top: 202rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline-card.s-15\:30 {
    top: 165.8rem;
  }
}
.p-timeline-card.e-15\:30 {
  bottom: 58rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline-card.e-15\:30 {
    bottom: 45.8rem;
  }
}
.p-timeline-card.s-15\:40 {
  top: 208rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline-card.s-15\:40 {
    top: 170.8rem;
  }
}
.p-timeline-card.e-15\:40 {
  bottom: 52rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline-card.e-15\:40 {
    bottom: 40.8rem;
  }
}
.p-timeline-card.s-15\:50 {
  top: 214rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline-card.s-15\:50 {
    top: 175.8rem;
  }
}
.p-timeline-card.e-15\:50 {
  bottom: 46rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline-card.e-15\:50 {
    bottom: 35.8rem;
  }
}
.p-timeline-card.s-16\:00 {
  top: 220rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline-card.s-16\:00 {
    top: 180.8rem;
  }
}
.p-timeline-card.e-16\:00 {
  bottom: 40rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline-card.e-16\:00 {
    bottom: 30.8rem;
  }
}
.p-timeline-card.s-16\:10 {
  top: 226rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline-card.s-16\:10 {
    top: 185.8rem;
  }
}
.p-timeline-card.e-16\:10 {
  bottom: 34rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline-card.e-16\:10 {
    bottom: 25.8rem;
  }
}
.p-timeline-card.s-16\:20 {
  top: 232rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline-card.s-16\:20 {
    top: 190.8rem;
  }
}
.p-timeline-card.e-16\:20 {
  bottom: 28rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline-card.e-16\:20 {
    bottom: 20.8rem;
  }
}
.p-timeline-card.s-16\:30 {
  top: 238rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline-card.s-16\:30 {
    top: 195.8rem;
  }
}
.p-timeline-card.e-16\:30 {
  bottom: 22rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline-card.e-16\:30 {
    bottom: 15.8rem;
  }
}
.p-timeline-card.s-16\:40 {
  top: 244rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline-card.s-16\:40 {
    top: 200.8rem;
  }
}
.p-timeline-card.e-16\:40 {
  bottom: 16rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline-card.e-16\:40 {
    bottom: 10.8rem;
  }
}
.p-timeline-card.s-16\:50 {
  top: 250rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline-card.s-16\:50 {
    top: 205.8rem;
  }
}
.p-timeline-card.e-16\:50 {
  bottom: 10rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline-card.e-16\:50 {
    bottom: 5.8rem;
  }
}
.p-timeline-card.s-17\:00 {
  top: 256rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline-card.s-17\:00 {
    top: 210.8rem;
  }
}
.p-timeline-card.e-17\:00 {
  bottom: 4rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline-card.e-17\:00 {
    bottom: 0.8rem;
  }
}
.p-timeline-card__inner {
  flex: 1 1 auto;
  position: relative;
  margin-right: -1rem;
  padding-right: 1rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline-card__inner {
    margin-right: -0.5rem;
    padding-right: 0.5rem;
  }
}
.p-timeline-card__meta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.6rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline-card__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
    margin-bottom: 0.4rem;
  }
}
.p-timeline-card__id {
  flex: 0 0 auto;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.2;
  color: #FFFFFF;
  background: #222222;
  padding: 0.4rem 0.8rem;
}
.p-timeline-card__time {
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.6;
}
@media screen and (max-width: 767.9px) {
  .p-timeline-card__time {
    font-size: 1.2rem;
  }
}
.p-timeline-card__title {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}
@media screen and (max-width: 767.9px) {
  .p-timeline-card__title {
    font-size: 1.4rem;
  }
}
.p-timeline-card__speaker {
  padding: 1.6rem;
  margin-top: 1.6rem;
  border-radius: 0.5rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline-card__speaker {
    margin-top: 0.8rem;
    padding: 0.8rem;
  }
}
.p-timeline__item:nth-child(odd) .p-timeline-card__speaker {
  background: #DDECFB;
}
.p-timeline__item:nth-child(even) .p-timeline-card__speaker {
  background: #DFF6FF;
}
.p-timeline-card__speaker .c-speaker {
  display: block;
}
.p-timeline-card__speaker .c-speaker:not(:last-child) {
  margin-bottom: 0.8rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline-card__speaker .c-speaker .c-speaker__company,
  .p-timeline-card__speaker .c-speaker .c-speaker__post {
    font-size: 1rem;
  }
}
.p-timeline-card__speaker .c-speaker .c-speaker__name {
  font-size: 1.6rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline-card__speaker .c-speaker .c-speaker__name {
    font-size: 1.4rem;
  }
}
.p-timeline__border {
  position: absolute;
  left: 0;
  right: 0;
  height: 0.1rem;
  background: #ccc;
  z-index: 1;
}
.p-timeline__border.t-10\:00 {
  top: 4rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline__border.t-10\:00 {
    top: 0.8rem;
  }
}
.p-timeline__border.t-10\:10 {
  top: 10rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline__border.t-10\:10 {
    top: 5.8rem;
  }
}
.p-timeline__border.t-10\:20 {
  top: 16rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline__border.t-10\:20 {
    top: 10.8rem;
  }
}
.p-timeline__border.t-10\:30 {
  top: 22rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline__border.t-10\:30 {
    top: 15.8rem;
  }
}
.p-timeline__border.t-10\:40 {
  top: 28rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline__border.t-10\:40 {
    top: 20.8rem;
  }
}
.p-timeline__border.t-10\:50 {
  top: 34rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline__border.t-10\:50 {
    top: 25.8rem;
  }
}
.p-timeline__border.t-11\:00 {
  top: 40rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline__border.t-11\:00 {
    top: 30.8rem;
  }
}
.p-timeline__border.t-11\:10 {
  top: 46rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline__border.t-11\:10 {
    top: 35.8rem;
  }
}
.p-timeline__border.t-11\:20 {
  top: 52rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline__border.t-11\:20 {
    top: 40.8rem;
  }
}
.p-timeline__border.t-11\:30 {
  top: 58rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline__border.t-11\:30 {
    top: 45.8rem;
  }
}
.p-timeline__border.t-11\:40 {
  top: 64rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline__border.t-11\:40 {
    top: 50.8rem;
  }
}
.p-timeline__border.t-11\:50 {
  top: 70rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline__border.t-11\:50 {
    top: 55.8rem;
  }
}
.p-timeline__border.t-12\:00 {
  top: 76rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline__border.t-12\:00 {
    top: 60.8rem;
  }
}
.p-timeline__border.t-12\:10 {
  top: 82rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline__border.t-12\:10 {
    top: 65.8rem;
  }
}
.p-timeline__border.t-12\:20 {
  top: 88rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline__border.t-12\:20 {
    top: 70.8rem;
  }
}
.p-timeline__border.t-12\:30 {
  top: 94rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline__border.t-12\:30 {
    top: 75.8rem;
  }
}
.p-timeline__border.t-12\:40 {
  top: 100rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline__border.t-12\:40 {
    top: 80.8rem;
  }
}
.p-timeline__border.t-12\:50 {
  top: 106rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline__border.t-12\:50 {
    top: 85.8rem;
  }
}
.p-timeline__border.t-13\:00 {
  top: 112rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline__border.t-13\:00 {
    top: 90.8rem;
  }
}
.p-timeline__border.t-13\:10 {
  top: 118rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline__border.t-13\:10 {
    top: 95.8rem;
  }
}
.p-timeline__border.t-13\:20 {
  top: 124rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline__border.t-13\:20 {
    top: 100.8rem;
  }
}
.p-timeline__border.t-13\:30 {
  top: 130rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline__border.t-13\:30 {
    top: 105.8rem;
  }
}
.p-timeline__border.t-13\:40 {
  top: 136rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline__border.t-13\:40 {
    top: 110.8rem;
  }
}
.p-timeline__border.t-13\:50 {
  top: 142rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline__border.t-13\:50 {
    top: 115.8rem;
  }
}
.p-timeline__border.t-14\:00 {
  top: 148rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline__border.t-14\:00 {
    top: 120.8rem;
  }
}
.p-timeline__border.t-14\:10 {
  top: 154rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline__border.t-14\:10 {
    top: 125.8rem;
  }
}
.p-timeline__border.t-14\:20 {
  top: 160rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline__border.t-14\:20 {
    top: 130.8rem;
  }
}
.p-timeline__border.t-14\:30 {
  top: 166rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline__border.t-14\:30 {
    top: 135.8rem;
  }
}
.p-timeline__border.t-14\:40 {
  top: 172rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline__border.t-14\:40 {
    top: 140.8rem;
  }
}
.p-timeline__border.t-14\:50 {
  top: 178rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline__border.t-14\:50 {
    top: 145.8rem;
  }
}
.p-timeline__border.t-15\:00 {
  top: 184rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline__border.t-15\:00 {
    top: 150.8rem;
  }
}
.p-timeline__border.t-15\:10 {
  top: 190rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline__border.t-15\:10 {
    top: 155.8rem;
  }
}
.p-timeline__border.t-15\:20 {
  top: 196rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline__border.t-15\:20 {
    top: 160.8rem;
  }
}
.p-timeline__border.t-15\:30 {
  top: 202rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline__border.t-15\:30 {
    top: 165.8rem;
  }
}
.p-timeline__border.t-15\:40 {
  top: 208rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline__border.t-15\:40 {
    top: 170.8rem;
  }
}
.p-timeline__border.t-15\:50 {
  top: 214rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline__border.t-15\:50 {
    top: 175.8rem;
  }
}
.p-timeline__border.t-16\:00 {
  top: 220rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline__border.t-16\:00 {
    top: 180.8rem;
  }
}
.p-timeline__border.t-16\:10 {
  top: 226rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline__border.t-16\:10 {
    top: 185.8rem;
  }
}
.p-timeline__border.t-16\:20 {
  top: 232rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline__border.t-16\:20 {
    top: 190.8rem;
  }
}
.p-timeline__border.t-16\:30 {
  top: 238rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline__border.t-16\:30 {
    top: 195.8rem;
  }
}
.p-timeline__border.t-16\:40 {
  top: 244rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline__border.t-16\:40 {
    top: 200.8rem;
  }
}
.p-timeline__border.t-16\:50 {
  top: 250rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline__border.t-16\:50 {
    top: 205.8rem;
  }
}
.p-timeline__border.t-17\:00 {
  top: 256rem;
}
@media screen and (max-width: 767.9px) {
  .p-timeline__border.t-17\:00 {
    top: 210.8rem;
  }
}
