.event-seminar-c-breadcrumbs {
  background: #F9F9F9;

  .c-breadcrumbs-list {
    li {
      color: #898887;
    }
  }
}


.e-page-hero {
  background: #F9F9F9;
  height: auto;
  padding: 24px 16px 56px;

  .e-page-hero-head {
    gap: 24px;

    h1 {
      font-size: 36px;
      line-height: 140%;
      letter-spacing: 4px;
    }

    .e-text {
      font-size: 16px;
      font-weight: 600;
      font-variation-settings: "wght" 600;
      line-height: 1.7;
      color: #1b1b11;
    }
  }
}

/* イベント・セミナー情報 */
.section {
  padding: 5rem 0;

  .section-head {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
}

.e-headline {
  font-size: 28px;
}

.event-seminar {
  background: #fff;
}

.old-event-seminar {
  background: #F9F9F9;

  .link-arrow {
    display: none;
  }
}

.e-flex-column {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.e-cards {
  max-width: 73rem;
  margin: 0 auto;
}

.e-card-lists {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 48px;
}

.e-card-list {
  max-width: 21.875rem;
}

.e-card-list a {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  color: var(--rs-secondary-color-black);
  background: #fff;
  border: 1px solid var(--rs-gray300);
  border-radius: 0.5rem;
  height: 100%;
  transition: 0.5s;
}

.old-event-seminar .link-figure {
  position: relative;

  &::after {
    content: "開催終了しました";
    font-size: 20px;
    font-weight: 600;
    font-variation-settings: "wght" 600;
    line-height: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    background-color: rgba(0,0,0, 0.45);
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 100%;
  }
}

.event-seminar-text {
  align-items: flex-start;
}

.event-seminar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.event-seminar-tag {
  font-size: 14px;
  font-weight: 600;
  font-variation-settings: "wght" 600;
  letter-spacing: 0.04em;
  padding: 0.125rem 0.625rem;
  border-radius: 0.1875rem;

  &.regular {
    background: #FFF1F3;
    color: #E7174E;
  }

  &.offline {
    background: #f3f3f3;
    color: #004b76;
  }

  &.streaming {
    background: #FFF1F3;
    color: #E7174E;
  }

  &.old {
    background: #999;
    color: #fff;
  }
}

.event-seminar-date {
  font-size: 1rem;
  line-height: 170%;
  font-weight: 600;
  font-variation-settings: "wght" 600;

  & strong {
    font-size: 1.25rem;
    line-height: 150%;
    font-weight: 600;
    font-variation-settings: "wght" 600;
  }

  & b {
    font-weight: 600;
    font-variation-settings: "wght" 600;
  }
}

.event-seminar-title {
  font-size: 14px;
  font-weight: 400;
  font-variation-settings: "wght" 400;
  line-height: 170%;
}



@media (width < 768px) {
  .e-page-hero {
    & .e-page-hero-head {
      h1 {
        font-size: 1.75rem;
      }
    }
  }

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

  .e-card-lists {
    justify-content: center;
  }

  .e-card-list {
    width: 100%;
  }
}