@font-face {
  font-family: "MyriadPro-Regular";
  font-style: normal;
  font-weight: 400;
  src: url("/assets/font/MyriadPro-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "MyriadPro-Semibold";
  font-style: normal;
  font-weight: 600;
  src: url("/assets/font/MyriadPro-Semibold.woff2") format("woff2");
}
@font-face {
  font-family: "MyriadPro-Bold";
  font-style: normal;
  font-weight: 700;
  src: url("/assets/font/MyriadPro-Bold.woff2") format("woff2");
}
@font-face {
  font-family: "SourceSans3-Regular";
  font-style: normal;
  font-weight: 400;
  src: url("/assets/font/SourceSans3-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "SourceSans3-Semibold";
  font-style: normal;
  font-weight: 600;
  src: url("/assets/font/SourceSans3-Semibold.woff2") format("woff2");
}
@font-face {
  font-family: "SourceSans3-Bold";
  font-style: normal;
  font-weight: 700;
  src: url("/assets/font/SourceSans3-Bold.woff2") format("woff2");
}
@font-face {
  font-family: "MyriadPro-Cond";
  font-style: normal;
  font-weight: 400;
  src: url("/assets/font/MyriadPro-Cond.woff2") format("woff2");
}
@font-face {
  font-family: "MyriadPro-BoldCond";
  font-style: normal;
  font-weight: 700;
  src: url("/assets/font/MyriadPro-BoldCond.woff2") format("woff2");
}
.header__top__link {
  color: #c2c4cd;
}
.header__top__button {
  color: #c2c4cd;
}

.background-color {
  background: #2f373d;
}
.background-pattern {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.page-header__title {
  color: #c2c4cd;
}
.page-header__tab__link {
  background-color: #293036;
  color: rgba(158, 161, 169, 0.5);
}

.breadcrumb__item::after {
  border-color: #c2c4cd;
}
.breadcrumb__text {
  color: #c2c4cd;
}
.breadcrumb__text:hover {
  color: #fff;
}
@media only screen and (min-width: 1024px) {
  .page-header__content {
    max-width: 1010px;
  }
}
@font-face {
  font-family: "MyriadPro-Regular";
  font-style: normal;
  font-weight: 400;
  src: url("/assets/font/MyriadPro-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "MyriadPro-Semibold";
  font-style: normal;
  font-weight: 600;
  src: url("/assets/font/MyriadPro-Semibold.woff2") format("woff2");
}
@font-face {
  font-family: "MyriadPro-Bold";
  font-style: normal;
  font-weight: 700;
  src: url("/assets/font/MyriadPro-Bold.woff2") format("woff2");
}
@font-face {
  font-family: "SourceSans3-Regular";
  font-style: normal;
  font-weight: 400;
  src: url("/assets/font/SourceSans3-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "SourceSans3-Semibold";
  font-style: normal;
  font-weight: 600;
  src: url("/assets/font/SourceSans3-Semibold.woff2") format("woff2");
}
@font-face {
  font-family: "SourceSans3-Bold";
  font-style: normal;
  font-weight: 700;
  src: url("/assets/font/SourceSans3-Bold.woff2") format("woff2");
}
@font-face {
  font-family: "MyriadPro-Cond";
  font-style: normal;
  font-weight: 400;
  src: url("/assets/font/MyriadPro-Cond.woff2") format("woff2");
}
@font-face {
  font-family: "MyriadPro-BoldCond";
  font-style: normal;
  font-weight: 700;
  src: url("/assets/font/MyriadPro-BoldCond.woff2") format("woff2");
}
.webcast__card {
  background: #fff;
  border: 1px solid #dee1e7;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}
.webcast__card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.webcast__thumb {
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.webcast__play-btn {
  position: absolute;
  width: 70px;
  height: 70px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 1;
}
.webcast__play-btn svg {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  width: 100%;
  height: 100%;
  padding: 26px 5px 24px 10px;
  aspect-ratio: 1;
  pointer-events: none;
}
.webcast__play-btn:hover {
  -webkit-transform: translate(-50%, -50%) scale(1.08);
          transform: translate(-50%, -50%) scale(1.08);
}
.webcast__audio-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.webcast__audio-wrap audio {
  display: none;
}
.webcast__audio-wrap.is-started .webcast__play-btn {
  display: none;
}
.webcast__audio-wrap.is-started .webcast__audio-controls {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.webcast__audio-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}
.webcast__audio-btn, .webcast__audio-reset {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border: none;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: #5a6070;
}
.webcast__audio-btn svg, .webcast__audio-reset svg {
  width: 16px;
  height: 16px;
}
.webcast__audio-progress {
  flex: 1;
  height: 4px;
  background: #dee1e7;
  border-radius: 2px;
  cursor: pointer;
  position: relative;
}
.webcast__audio-progress-fill {
  height: 100%;
  background: #5a6070;
  border-radius: 2px;
  width: 0%;
  pointer-events: none;
}
.webcast__audio-time {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 16px;
  line-height: 1rem;
  color: #5a6070;
  white-space: nowrap;
  flex-shrink: 0;
}
.webcast__video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  cursor: pointer;
}
.webcast__video-wrap.is-started .webcast__play-btn,
.webcast__video-wrap.is-started .webcast__thumb {
  display: none;
}
.webcast__video-wrap.is-started .webcast__player-iframe,
.webcast__video-wrap.is-started .webcast__player-video {
  display: block;
}
.webcast__player-iframe, .webcast__player-video {
  display: none;
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
}
.webcast__card-body {
  padding: 16px 20px 20px;
}
.webcast__card-title {
  font-size: 16px;
  font-size: 1rem;
  line-height: 24px;
  line-height: 1.5rem;
  font-weight: 600;
  color: #000;
  margin: 0 0 12px;
}
.webcast__card-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
}
.webcast__card-meta {
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 20px;
  line-height: 1.25rem;
  color: #5a6070;
  margin: 0;
}
.webcast__card-speaker {
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 20px;
  line-height: 1.25rem;
  color: #5a6070;
  margin: 0;
  text-align: right;
}

.webcast-detail {
  padding: 40px 0 80px 0;
}
.webcast-detail__header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.webcast-detail__title {
  font-size: 21px;
  font-size: 1.3125rem;
  line-height: 28px;
  line-height: 1.75rem;
  margin: 0;
}
.webcast-detail__select {
  appearance: none;
  -webkit-appearance: none;
  padding: 4px 44px 4px 16px;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 30px;
  line-height: 1.875rem;
  color: #5a6070;
  background: #fff;
  border: 2px solid #dee1e7;
  border-radius: 4px;
  cursor: pointer;
  min-width: 120px;
  outline: none;
  transition: border-color 0.2s ease;
}
.webcast-detail__select-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}
.webcast-detail__select-label {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 30px;
  line-height: 1.875rem;
  font-weight: 600;
  color: #5a6070;
  white-space: nowrap;
}
.webcast-detail__select-box {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.webcast-detail__select-box svg {
  position: absolute;
  -webkit-transform: rotate(-90deg) translateX(50%);
          transform: rotate(-90deg) translateX(50%);
  width: 20px;
  height: 20px;
  top: 50%;
  right: 6px;
  pointer-events: none;
}
.webcast-detail__select-box svg path {
  fill: #c22525;
}
.webcast-detail__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.webcast-detail .content-wrapper {
  max-width: 980px;
}

.webcast-list {
  padding: 40px 0 80px 0;
}
.webcast-list__section {
  position: relative;
  width: 100%;
  margin-bottom: 60px;
}
.webcast-list__section:last-child {
  margin-bottom: 0;
}
.webcast-list__section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.webcast-list__section-title {
  font-size: 21px;
  font-size: 1.3125rem;
  line-height: 28px;
  line-height: 1.75rem;
  font-weight: 600;
  color: #000;
  margin: 0;
}
.webcast-list__section-link {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 20px;
  line-height: 1.25rem;
  font-weight: 600;
  color: #5a6070;
  text-decoration: none;
  white-space: nowrap;
}
.webcast-list__section-link:hover {
  color: #c22525;
}
.webcast-list__slider-wrapper {
  position: relative;
}
.webcast-list__swiper {
  overflow: hidden;
  padding-bottom: 40px !important;
}
.webcast-list__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 0 !important;
  height: 24px;
}
.webcast-list__pagination .swiper-pagination-bullet {
  background: #dee1e7;
  opacity: 1;
  transition: all 0.2s ease;
  margin: 0 5px;
}
.webcast-list__pagination .swiper-pagination-bullet-active {
  position: relative;
  width: 12px;
  height: 12px;
  background: #000;
  box-shadow: 0 0 0 3px #fff, 0 0 0 5px #000;
}
.webcast-list .swiper-button-prev,
.webcast-list .swiper-button-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #000;
  background: #fff;
  cursor: pointer;
}
.webcast-list .swiper-button-prev svg,
.webcast-list .swiper-button-next svg {
  width: 20px;
}
.webcast-list .swiper-button-prev svg path,
.webcast-list .swiper-button-next svg path {
  fill: #000;
}
.webcast-list .swiper-button-next {
  right: -80px;
}
.webcast-list .swiper-button-prev {
  left: -80px;
}
.webcast-list .swiper-button-next svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.webcast-list .content-wrapper {
  max-width: 980px;
}
@media only screen and (min-width: 768px) {
  .webcast-detail__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (min-width: 1024px) {
  .webcast-detail {
    padding: 78px 0 90px 0;
  }
  .webcast-detail__header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .webcast-list {
    padding: 78px 0 90px 0;
  }
}
@media only screen and (max-width: 1247px) {
  .webcast-list .swiper-button-prev,
  .webcast-list .swiper-button-next {
    display: none;
  }
}