@charset "UTF-8";

/* ===== Page Reset ===== */
.wk-page {
  background: var(--cr-white);
  color: var(--cr-black);
  font-family: var(--cr-font-w3);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0;
}

.wk-page *,
.wk-page *::before,
.wk-page *::after {
  box-sizing: border-box;
}

.wk-page [id] {
  scroll-margin-top: calc(var(--header-pc-height, 90px) + 20px);
}

.wk-flow-card.--radius-20 {
  border-radius: 20px;
}

.cr-button-link.--center-wide {
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== Hero Section ===== */
.wk-hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: calc(var(--header-pc-height, 90px) + 60px) 24px 0;
}

.wk-hero__title {
  font-family: var(--cr-font-w6);
  font-size: 60px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--cr-black);
}

.wk-hero__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
  background: var(--cr-blue-light);
  border-radius: 20px;
  padding: 40px 60px;
  margin-top: 40px;
}

.wk-hero__nav-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  color: var(--cr-black);
  font-family: var(--cr-font-w6);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.7;
  transition: color 0.2s ease;
}

.wk-hero__nav-item:hover {
  color: var(--cr-black);
}

.wk-hero__nav-text {
  position: relative;
  padding-bottom: 2px;
}

.wk-hero__nav-text::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
}

.wk-hero__nav-item:hover .wk-hero__nav-text::after {
  transform: scaleX(1);
}

.wk-hero__nav-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.wk-hero__nav-icon svg {
  width: 12px;
  height: 13px;
}

.wk-hero__lead {
  margin-top: 60px;
}

.wk-hero__lead-heading {
  font-family: var(--cr-font-w6);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.6;
  color: var(--cr-black);
}

.wk-hero__lead-text {
  margin-top: 40px;
  font-family: var(--cr-font-w3);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--cr-black);
}

/* ===== Project Flow Section ===== */
.wk-flow {
  background: var(--cr-blue-light);
  border-radius: 100px 0 100px 0;
  padding: 100px 24px;
  margin-top: 120px;
}

.wk-flow__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.wk-flow__intro {
  margin-top: 60px;
  font-family: var(--cr-font-w6);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.7;
  color: var(--cr-black);
  margin-bottom:40px;
}

.wk-flow__cards {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0;
}

.wk-flow__card-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 787px;
}

.wk-flow-card {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: var(--cr-blue);
}

.wk-flow-card__header {
  padding: 32px 40px;
  color: var(--cr-white);
}

.wk-flow-card__title {
  font-family: var(--cr-font-w6);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.6;
}

.wk-flow-card__desc {
  font-family: var(--cr-font-w6);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.7;
  margin-top: 4px;
}

.wk-flow-card__detail {
  position: relative;
  max-height: 139px;
  overflow: hidden;
  background: var(--cr-white);
  border-radius: 0 0 16px 16px;
  transition: max-height 0.4s ease;
}

.wk-flow-card__detail.is-expanded {
  max-height: 2000px;
}

.wk-flow-card__detail-inner {
  display: flex;
  gap: 12px;
  padding: 32px 40px;
  align-items: flex-start;
}

.wk-flow-card__detail-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cr-brown);
}

.wk-flow-card__detail-icon.--green {
  color: var(--cr-green);
}

.wk-flow-card__detail-icon.--orange {
  color: var(--cr-orange);
}

.wk-flow-card__detail-icon svg {
  width: 19px;
  height: 19px;
}

.wk-flow-card__detail-list {
  flex: 1;
  font-family: var(--cr-font-w3);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--cr-gray-50);
  list-style: disc;
  padding-left: 21px;
  margin: 0;
}

.wk-flow-card__detail-list li {
  margin-bottom: 0;
}

.wk-flow-card__viewmore {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  padding: 20px 40px 32px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 32%);
}

.wk-flow-card__viewmore {
  transition: opacity 0.3s ease;
}

.wk-flow-card__detail.is-expanded .wk-flow-card__viewmore {
  opacity: 0;
  pointer-events: none;
}

.wk-flow-card__more-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  border: 2px solid var(--cr-gray-40);
  border-radius: 40px;
  background: var(--cr-white);
  cursor: pointer;
  font-family: var(--cr-font-en);
  font-size: 12px;
  font-weight: 600;
  color: var(--cr-gray-40);
  line-height: 1.6;
  transition: opacity 0.2s ease;
}

.wk-flow-card__more-btn:hover {
  opacity: 0.7;
}

.wk-flow-card__more-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
}

.wk-flow-card__more-icon svg {
  width: 11px;
  height: 7px;
}

.wk-flow__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
  flex-shrink: 0;
  width: 787px;
  align-self: flex-end;
}

.wk-flow__arrow svg {
  width: 30px;
  height: 22px;
}

/* ===== Schedule Section ===== */
.wk-schedule {
  max-width: 1200px;
  margin: 120px auto 0;
  padding: 0 24px;
}

.wk-schedule__layout {
  display: flex;
  gap: 60px;
}

.wk-schedule__heading {
  flex: 1;
  min-width: 0;
}

.wk-schedule__cards {
  width: 787px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.wk-schedule-card {
  border: 1px solid var(--cr-gray-20);
  border-radius: 20px;
  padding: 40px 40px 60px;
  background: var(--cr-white);
}

.wk-schedule-card__header {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.wk-schedule-card__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}

.wk-schedule-card__case {
  font-family: var(--cr-font-en);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--cr-black);
}

.wk-schedule-card__person {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wk-schedule-card__name-row {
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.6;
}

.wk-schedule-card__name {
  font-family: var(--cr-font-w6);
  font-size: 20px;
  font-weight: 600;
  color: var(--cr-black);
}

.wk-schedule-card__name-en {
  font-family: var(--cr-font-en);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--cr-gray-40);
}

.wk-schedule-card__tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border: 1px solid var(--cr-blue);
  border-radius: 20px;
  font-family: var(--cr-font-w6);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.8;
  color: var(--cr-blue);
  width: fit-content;
}

.wk-schedule-card__photo {
  width: 220px;
  height: 170px;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
}

.wk-schedule-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wk-schedule-card__body {
  margin-top: 20px;
}

/* Schedule Tab */
.wk-schedule-tab {
  display: flex;
  align-items: center;
  padding: 0 0 20px;
  border-bottom: 2px solid;
  cursor: pointer;
  transition: opacity 0.2s ease;
  margin-top: 20px;
  background: none;
  width: 100%;
  text-align: left;
}

.wk-schedule-tab:first-of-type {
  margin-top: 0;
}

.wk-schedule-tab:hover {
  opacity: 0.7;
}

.wk-schedule-tab.--orange {
  border-color: var(--cr-orange);
  color: var(--cr-orange);
}

.wk-schedule-tab.--blue {
  border-color: var(--cr-blue);
  color: var(--cr-blue);
}

.wk-schedule-tab__label {
  flex: 1;
  font-family: var(--cr-font-w6);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.7;
}

.wk-schedule-tab__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.wk-schedule-tab.--orange .wk-schedule-tab__icon {
  background: var(--cr-orange);
}

.wk-schedule-tab.--blue .wk-schedule-tab__icon {
  background: var(--cr-blue);
}

.wk-schedule-tab__icon svg {
  width: 11px;
  height: 7px;
}

.wk-schedule-tab.is-open .wk-schedule-tab__icon {
  transform: rotate(180deg);
}

/* Schedule Content */
.wk-schedule-content {
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
}

.wk-schedule-content:not(.is-hidden) {
  max-height: 2000px;
}

.wk-schedule-content.is-hidden {
  max-height: 0 !important;
  opacity: 0;
}

.wk-schedule-content__inner {
  padding-top: 20px;
}

.wk-schedule-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--cr-gray-20);
}

.wk-schedule-item + .wk-schedule-item {
  padding-top: 16px;
}

.wk-schedule-item:last-child {
  border-bottom: none;
}

.wk-schedule-item__time {
  font-family: var(--cr-font-en);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
  width: 40px;
  flex-shrink: 0;
}

.wk-schedule-item.--orange .wk-schedule-item__time {
  color: var(--cr-orange);
}

.wk-schedule-item.--blue .wk-schedule-item__time {
  color: var(--cr-blue);
}

.wk-schedule-item__text {
  flex: 1;
  font-family: var(--cr-font-w3);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--cr-black);
}

.wk-schedule-note {
  font-family: var(--cr-font-w3);
  font-size: 12px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--cr-black);
  text-align: right;
  margin-top: 20px;
}

/* Point Box */
.wk-schedule-point {
  border-radius: 16px;
  overflow: hidden;
  margin-top: 20px;
}

.wk-schedule-point.--orange {
  background: #f8f5f1;
}

.wk-schedule-point.--blue {
  background: var(--cr-blue-light);
}

.wk-schedule-point__label {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: var(--cr-white);
  border-radius: 16px 0 16px 0;
  padding: 4px 20px;
  font-family: var(--cr-font-en);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
  color: var(--cr-gray-40);
}

.wk-schedule-point__text {
  padding: 12px 24px 24px;
  font-family: var(--cr-font-w3);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--cr-black);
}

/* ===== Market Section ===== */
.wk-market {
  max-width: 1200px;
  margin: 120px auto 0;
  padding: 0 24px 120px;
}

.wk-market__chart-wrap {
  margin-top: 60px;
  background: var(--cr-white);
  overflow: hidden;
}

.wk-market__chart-wrap img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===== Works Section ===== */
.wk-works {
  max-width: 1780px;
  width: 90%;
  margin: 0 auto;
  padding: 0 0 120px;
}

.wk-works .wk-section-heading__title {
  font-size: 32px;
}

.wk-works__grid {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 60px;
  margin-bottom: 0;
}

.wk-works-card {
  max-width: 560px;
  width: 32%;
  margin-bottom: 4vw;
}

.wk-works-card__img {
  max-width: 560px;
  width: 100%;
  aspect-ratio: 546 / 341;
  overflow: hidden;
  margin-bottom: 1vw;
}

.wk-works-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wk-works-card__text {
  font-size: 1.2vw;
  line-height: 1.6;
  margin-bottom: 2vw;
}

.wk-works-card__link {
  max-width: 360px;
  width: 80%;
  border: 1px solid #17191a;
  margin: 0 auto;
  text-align: center;
  border-radius: 10px;
  padding: 1vw 0;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: block;
  outline: none;
  transition: ease .2s;
  line-height: 1;
}

.wk-works-card__link span {
  position: relative;
  z-index: 3;
  color: #17191a;
}

.wk-works-card__link:hover span {
  color: var(--cr-white);
  z-index: 5;
}

.wk-works-card__link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: var(--cr-black);
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}

.wk-works-card__link:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

/* ===== People Link ===== */
.wk-people-link {
  margin-top: 60px;
}

/* ===== Section Heading (reused pattern) ===== */
.wk-section-heading {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wk-section-heading__title {
  font-family: var(--cr-font-w6);
  font-size: 40px;
  font-weight: 600;
  line-height: 1.6;
  color: var(--cr-black);
}

.wk-section-heading__sub {
  font-family: var(--cr-font-en);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--cr-gray-40);
}

/* ===== SP Styles ===== */
@media screen and (max-width: 767px) {

  .wk-page [id] {
    scroll-margin-top: calc(var(--header-sp-height, 72px) + 20px);
  }

  .wk-hero {
    padding: calc(var(--header-sp-height, 72px) + 40px) 24px 0;
  }

  .wk-hero__title {
    font-size: 40px;
    line-height: 1.6;
  }

  .wk-hero__nav {
    padding: 40px 24px;
    gap: 20px;
  }

  .wk-hero__lead-heading {
    font-size: 20px;
  }

  .wk-flow {
    border-radius: 60px 0 60px 0;
    padding: 40px 24px;
    margin-top: 100px;
  }

  .wk-flow__card-wrap {
    width: 100%;
  }

  .wk-flow__cards {
    align-items: center;
  }

  .wk-flow__arrow {
    width: 100%;
    align-self: center;
  }

  .wk-flow-card__header {
    padding: 20px 24px;
  }

  .wk-flow-card__title {
    font-size: 20px;
  }

  .wk-flow-card__desc {
    font-size: 14px;
  }

  .wk-flow-card__detail {
    max-height: 122px;
  }

  .wk-flow-card__detail-inner {
    padding: 20px 24px;
    gap: 4px;
  }

  .wk-section-heading__title {
    font-size: 32px;
  }

  .wk-section-heading__sub {
    font-size: 16px;
  }

  .wk-schedule {
    margin-top: 100px;
  }

  .wk-schedule__layout {
    flex-direction: column;
    gap: 60px;
  }

  .wk-schedule__cards {
    width: 100%;
  }

  .wk-schedule-card {
    padding: 20px 24px 40px;
  }

  .wk-schedule-card__header {
    flex-direction: row;
    gap: 12px;
    align-items: flex-start;
  }

  .wk-schedule-card__info {
    gap: 12px;
  }

  .wk-schedule-card__case {
    font-family: var(--cr-font-en);
    font-size: 24px;
    font-weight: 600;
  }

  .wk-schedule-card__person {
    gap: 12px;
  }

  .wk-schedule-card__name-row {
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
  }

  .wk-schedule-card__name {
    font-size: 20px;
  }

  .wk-schedule-card__photo {
    width: 140px;
    height: 108px;
    flex-shrink: 0;
  }

  .wk-schedule-tab {
    padding-bottom: 12px;
  }

  .wk-schedule-tab__label {
    font-size: 14px;
  }

  .wk-schedule-content__inner {
    padding-top: 20px;
  }

  .wk-schedule-item {
    gap: 12px;
    padding-bottom: 12px;
  }

  .wk-schedule-item + .wk-schedule-item {
    padding-top: 12px;
  }

  .wk-schedule-item__time {
    font-size: 14px;
  }

  .wk-schedule-item__text {
    font-size: 14px;
  }

  .wk-schedule-point {
    margin-top: 20px;
  }

  .wk-schedule-point__label {
    font-size: 12px;
    padding: 4px 16px;
  }

  .wk-schedule-point__text {
    font-size: 12px;
    line-height: 1.8;
    padding: 8px 12px 12px;
  }

  .wk-schedule-note {
    font-size: 12px;
  }

  .wk-market {
    margin-top: 80px;
    padding: 0 24px 80px;
  }

  .wk-works {
    padding-bottom: 80px;
  }

  .wk-works__grid {
    display: block;
    flex-wrap: wrap;
  }

  .wk-works-card {
    width: 100%;
    margin-bottom: 30px;
  }

  .wk-works-card__img {
    margin-bottom: 15px;
  }

  .wk-works-card__text {
    font-size: 10pt;
    margin-bottom: 20px;
  }

  .wk-works-card__link {
    max-width: 100%;
    width: 100%;
    padding: 10px 0;
  }
}

/* ===== PC Styles ===== */
@media screen and (min-width: 768px) {
  .wk-flow__intro {
    width: 787px;
  }

  .wk-flow-card__detail-inner {
    min-height: 75px;
  }
}

/* ====== SPECIAL MOVIE ====== */
.p-movie {
  background-color: var(--cr-blue-light);
  margin-top: 40px;
  padding-top: 20px;
  padding-bottom: 40px;
}

.p-movie .l-inner {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
}

/* Escape the .wk-flow horizontal padding so the card fills the viewport like TOP */
.wk-flow > .p-movie {
  margin-left: -24px;
  margin-right: -24px;
}

.p-movie__card {
  background-color: var(--cr-white);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
}

.p-movie__head {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.p-movie__h1 {
  font-family: neulis-neue, sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.2;
  color: rgba(0, 0, 0, 0.8);
}

.p-movie__description {
  font-family: var(--cr-font-w6);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--cr-black);
}

.p-movie__slider {
  width: 100%;
}

.p-movie__slider .swiper {
  overflow: visible;
}

.movieSlide {
  width: 254px;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.movieSlide__cover {
  position: relative;
  width: 100%;
  aspect-ratio: 270 / 152;
  border-radius: 20px;
  overflow: hidden;
  background-color: #000;
}

.movieSlide__cover iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.movieSlide__content {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.movieSlide__title {
  font-family: var(--cr-font-w6);
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--cr-black);
}

.movieSlide__description {
  font-family: var(--cr-font-w3);
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--cr-black);
}

.movieSlider .swiper-controller {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 15px;
  margin-top: 20px;
}

.movieSlider .swiper-pagination {
  display: flex;
  column-gap: 10px;
}

.movieSlider .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--cr-gray-20);
  cursor: pointer;
  display: inline-block;
  vertical-align: top;
  transition: opacity 0.2s ease;
}

.movieSlider .swiper-pagination-bullet-active {
  background-color: var(--cr-blue);
}

.movieSlider .swiper-button-prev,
.movieSlider .swiper-button-next {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border: 1px solid var(--cr-gray-30);
  border-radius: 50%;
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.movieSlider .swiper-button-prev::after,
.movieSlider .swiper-button-next::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 8px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%226%22%20height%3D%228%22%20viewBox%3D%220%200%206%208%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M1%201L4%203.7874L1%207%22%20stroke%3D%22%23B2B2B2%22%20stroke-width%3D%222%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.movieSlider .swiper-button-prev::after {
  scale: -1;
}

.movieSlider .swiper-button-disabled {
  border-color: var(--cr-gray-20);
}

.movieSlider .swiper-button-disabled::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%226%22%20height%3D%228%22%20viewBox%3D%220%200%206%208%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M1%201L4%203.7874L1%207%22%20stroke%3D%22%23E0E0E0%22%20stroke-width%3D%222%22%2F%3E%3C%2Fsvg%3E");
}

.p-movie__credit {
  font-family: var(--cr-font-w3);
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1.7;
  color: var(--cr-gray-40);
  text-align: right;
}

@media screen and (min-width: 768px) {
  .p-movie {
    margin-top: 120px;
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .p-movie .l-inner {
    max-width: 1192px;
  }

  .p-movie__card {
    border-radius: 60px;
    padding: 60px;
    gap: 40px;
  }

  .p-movie__head {
    gap: 20px;
  }

  .p-movie__h1 {
    font-size: 3rem;
  }

  .p-movie__slider .swiper-wrapper {
    justify-content: center;
  }

  .p-movie__slider .swiper-wrapper > .swiper-slide:last-child {
    margin-right: 0 !important;
  }

  .movieSlide {
    width: calc((100% - 80px) / 3);
    flex: 0 0 auto;
    min-width: 0;
    gap: 20px;
  }

  .movieSlide__cover {
    aspect-ratio: 373 / 210;
  }

  .movieSlide__content {
    gap: 15px;
  }

  .movieSlide__title {
    font-size: 1.25rem;
    line-height: 1.6;
  }

  .movieSlide__description {
    font-size: 0.875rem;
  }

  .movieSlider .swiper-controller {
    display: none;
  }

  .movieSlider .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }

  .p-movie__credit {
    font-size: 0.75rem;
    margin-top: -20px;
  }
}

@media (hover: hover) {
  .movieSlider .swiper-button-prev:not(.swiper-button-disabled):hover,
  .movieSlider .swiper-button-next:not(.swiper-button-disabled):hover {
    opacity: 0.5;
  }
}
