.sce-event-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  align-items: stretch;
}
@media (max-width: 1200px) {
  .sce-event-list {
    gap: 36px;
  }
}
@media (max-width: 1024px) {
  .sce-event-list {
    gap: 28px;
  }
}
@media (max-width: 767px) {
  .sce-event-list {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.sce-card {
  background-color: #ffffff;
  border-radius: 40px;
  padding: 60px;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: #231F20;
  display: flex;
  flex-direction: column;
  box-shadow: 2px 7px 7px 0px rgba(0, 0, 0, 0.1019607843);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.sce-card:hover {
  box-shadow: 4px 16px 24px 0px rgba(0, 0, 0, 0.1647058824);
}
@media (max-width: 1200px) {
  .sce-card {
    padding: 48px;
    border-radius: 32px;
  }
}
@media (max-width: 1024px) {
  .sce-card {
    padding: 36px;
    border-radius: 28px;
  }
}
@media (max-width: 767px) {
  .sce-card {
    padding: 28px 24px;
    border-radius: 24px;
  }
}
.sce-card .sce-image {
  width: 100%;
  aspect-ratio: 430/243;
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 30px;
  line-height: 0;
}
@media (max-width: 767px) {
  .sce-card .sce-image {
    margin-bottom: 22px;
  }
}
.sce-card .sce-image img.sce-img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}
.sce-card .sce-title {
  font-family: "League Spartan", sans-serif;
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1.1;
  color: #231F20;
  margin: 0 0 10px;
  padding: 0;
}
.sce-card .sce-title a {
  color: inherit;
}
@media (max-width: 1200px) {
  .sce-card .sce-title {
    font-size: 1.75rem;
  }
}
@media (max-width: 1024px) {
  .sce-card .sce-title {
    font-size: 1.5rem;
  }
}
@media (max-width: 767px) {
  .sce-card .sce-title {
    font-size: 1.375rem;
  }
}
.sce-card .sce-excerpt {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #231F20;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .sce-card .sce-excerpt {
    font-size: 0.875rem;
  }
}
.sce-card .sce-excerpt p:last-child {
  margin-bottom: 0;
}
.sce-card .sce-footnote {
  font-size: 0.938rem;
  line-height: 1.6;
  color: #231F20;
  margin: 0;
}
@media (max-width: 767px) {
  .sce-card .sce-footnote {
    font-size: 0.875rem;
  }
}
.sce-card .sce-spacer {
  flex-grow: 1;
  min-height: 20px;
}
.sce-card .sce-pricing-wrap {
  margin: 40px 0 30px;
}
@media (max-width: 767px) {
  .sce-card .sce-pricing-wrap {
    margin: 24px 0;
  }
}
.sce-card .sce-pricing {
  display: flex;
  align-items: flex-start;
}
.sce-card .sce-pricing + .sce-pricing {
  margin-top: 16px;
}
@media (max-width: 767px) {
  .sce-card .sce-pricing {
    flex-direction: column;
    gap: 20px;
  }
}
.sce-card .sce-price-item {
  display: flex;
  flex-direction: column;
  padding: 0 50px;
}
@media (max-width: 1200px) {
  .sce-card .sce-price-item {
    padding: 0 36px;
  }
}
@media (max-width: 1024px) {
  .sce-card .sce-price-item {
    padding: 0 28px;
  }
}
@media (max-width: 767px) {
  .sce-card .sce-price-item {
    padding: 0;
  }
}
.sce-card .sce-price-item:first-child {
  padding-left: 0;
}
.sce-card .sce-price-item:last-child {
  padding-right: 0;
}
.sce-card .sce-price-amount-wrap {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}
.sce-card .sce-price-amount {
  font-family: "League Spartan", sans-serif;
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1.1;
  color: #231F20;
  letter-spacing: -0.01em;
}
@media (max-width: 1024px) {
  .sce-card .sce-price-amount {
    font-size: 1.625rem;
  }
}
@media (max-width: 767px) {
  .sce-card .sce-price-amount {
    font-size: 1.5rem;
  }
}
.sce-card .sce-price-suffix {
  font-size: 0.938rem;
  color: #231F20;
  font-weight: 400;
  line-height: 1;
}
.sce-card .sce-price-label {
  font-size: 0.938rem;
  color: #231F20;
  font-weight: 600;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .sce-card .sce-price-label {
    font-size: 0.875rem;
  }
}
.sce-card .sce-price-divider {
  width: 1px;
  background-color: #231F20;
  flex-shrink: 0;
  align-self: stretch;
  min-height: 40px;
  margin: 2px 0;
}
@media (max-width: 767px) {
  .sce-card .sce-price-divider {
    display: none;
  }
}
.sce-card .sce-button {
  display: block;
  width: 100%;
  text-align: center;
  background-color: #E46DAB;
  color: #ffffff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.6;
  padding: 12px 30px;
  border-radius: 32px;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
@media (max-width: 767px) {
  .sce-card .sce-button {
    font-size: 1rem;
    padding: 11px 24px;
  }
}
.sce-card .sce-button:hover, .sce-card .sce-button:focus {
  background-color: #005375;
  color: #ffffff;
  text-decoration: none;
}
.sce-card .sce-button:active {
  transform: translateY(0);
  box-shadow: none;
}

.sce-swiper-outer {
  position: relative;
  overflow: hidden;
  padding: 12px 6px 50px;
  margin: -12px -6px -50px;
}

.sce-swiper {
  overflow: visible;
}
.sce-swiper .swiper-wrapper {
  align-items: stretch;
}
.sce-swiper .swiper-slide {
  height: auto;
}
.sce-swiper .swiper-slide .sce-card {
  height: 100%;
}
.sce-swiper .swiper-button-prev,
.sce-swiper .swiper-button-next {
  color: #E46DAB;
  top: 50%;
  transform: translateY(-50%);
}
.sce-swiper .swiper-button-prev::after,
.sce-swiper .swiper-button-next::after {
  font-size: 1.25rem;
  font-weight: 700;
}
.sce-swiper .swiper-pagination {
  bottom: -36px;
}
.sce-swiper .swiper-pagination .swiper-pagination-bullet {
  background: #ffffff;
  opacity: 1;
}
.sce-swiper .swiper-pagination .swiper-pagination-bullet-active {
  background: #E46DAB;
}

/*# sourceMappingURL=style.css.map*/