@charset "UTF-8";
.top-main .common-section {
  margin: 64px auto 0;
}

@media screen and (max-width: 768px) {
  .top-main .common-section {
    margin: 32px 0 0;
  }
}

/* top-mv */
.top-mv {
  position: relative;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.top-mv.initialized {
  opacity: 1;
}

.top-mv .top-mv-slider {
  margin: 0;
  padding: 0;
}

.top-mv .top-mv-slide {
  width: 100%;
  height: auto;
}

.top-mv .top-mv-slide > a {
  display: flex;
  flex-direction: row-reverse;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.top-mv .top-mv-slide dl {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50%;
  height: 100%;
  padding: 24px 72px 72px;
  background-color: var(--base-color-black);
}

.top-mv .top-mv-slide dl .top-mv-label {
  position: relative;
  margin: 0;
  padding-left: 29px;
  font-size: 1.5em;
  font-weight: 600;
}

.top-mv .top-mv-slide dl .top-mv-label::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 22px;
  height: 22px;
  content: "";
  transform: translateY(-50%);
}

.top-mv .top-mv-slide.cat-pickup dl .top-mv-label {
  color: var(--main-color-green);
}

.top-mv .top-mv-slide.cat-pickup dl .top-mv-label::before {
  background: url(/assets/images/top/icon_mv_pickup.png) center center / cover no-repeat;
}

.top-mv .top-mv-slide.cat-interview dl .top-mv-label {
  color: var(--main-color-blue);
}

.top-mv .top-mv-slide.cat-interview dl .top-mv-label::before {
  background: url(/assets/images/top/icon_mv_interview.png) center center / cover no-repeat;
}

.top-mv .top-mv-slide dl .top-mv-subtitle {
  display: -webkit-box;
  margin: 20px 0 0;
  font-size: 1em;
  font-weight: 400;
  color: rgb(255, 255, 255, 0.6);
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.top-mv .top-mv-slide dl dt {
  display: -webkit-box;
  position: relative;
  margin: 14px 0 0;
  font-size: 2em;
  font-weight: 600;
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.top-mv .top-mv-slide dl dd {
  margin: 0;
}

.top-mv .top-mv-slide dl .top-mv-plan {
  margin: 14px 0 0;
}

.top-mv .top-mv-slide dl .top-mv-plan span {
  display: block;
  width: fit-content;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.875em;
  color: rgb(255, 255, 255, 0.6);
  background-color: rgb(255, 255, 255, 0.1);
}

.top-mv .top-mv-slide dl .top-mv-time {
  margin: 24px 0 0;
}

.top-mv .top-mv-slide dl time {
  display: block;
  color: #fff;
  font-size: 0.875em;
}

.top-mv .top-mv-slide dl .top-mv-copy {
  margin: 9px 0 0;
  color: rgb(255, 255, 255, 0.6);
  font-size: 0.6875em;
}

.top-mv .top-mv-slide dl .top-mv-link {
  position: absolute;
  left: 72px;
  bottom: 48px;

  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  margin: 40px 0 0;
  width: 100%;
  max-width: 186px;
  height: 48px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  color: var(--text-color);
  transition: all 0.3s ease;
}

.top-mv .top-mv-slide figure {
  display: flex;
  align-items: center;
  width: 50%;
  height: 100%;
  max-height: 650px;
}

.top-mv .top-mv-slide figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-color: #000;
}

.top-mv .top-mv-slider-pagination {
  position: relative;
  width: fit-content;
  margin: 0 auto;
  padding: 24px 0 25px;
}

.top-mv .swiper-button-prev,
.top-mv .swiper-button-next {
  position: absolute;
  top: 50%;
  margin: auto;
  width: 24px;
  height: 24px;
  margin: 0;
  transform: translateY(-50%);
  z-index: 1;
}

.top-mv .swiper-button-prev:after,
.top-mv .swiper-button-next:after {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  width: 24px;
  left: 50%;
  top: 50%;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  transition: all 0.2s;
}

.top-mv .swiper-button-prev {
  left: -68px;
}

.top-mv .swiper-button-next {
  right: -68px;
}

.top-mv .swiper-pagination-bullets.swiper-pagination-horizontal {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 0;
  width: auto;
  top: 0;
}

.top-mv .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background: #fff;
  opacity: 0.4;
  transition: transform 2s ease, position 2s ease, opacity 0.5s ease;
}

.top-mv .swiper-pagination-bullet-active {
  width: 20px;
  opacity: 1;
}

.top-mv .top-mv-pagination {
  display: flex;
  justify-content: center;
  width: 80px;
  height: calc((68px - 38px) / 5);
  margin: -28px auto 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.top-mv .top-mv-pagination ul {
  margin: 0;
  padding: 0 14px 0 0;
}

.top-mv .top-mv-pagination ul li.swiper-slide {
  width: calc((68px - 38px) / 5);
  height: calc((68px - 38px) / 5);
  margin: 0 3.5px;
  border-radius: 3px;
  background: #fff;
  transform: scale(0.66666666667);
  opacity: 0.4;
  transition: all .3s ease;
}

.top-mv .top-mv-pagination ul li.swiper-slide-prev,
.top-mv .top-mv-pagination ul li.swiper-slide-next {
  transform: scale(1);
}

.top-mv .top-mv-pagination ul li.swiper-slide-active {
  width: 16px;
  opacity: 1;
  transform: scale(1);
}

@media screen and (max-width: 1280px) {
  .top-mv .top-mv-slide dl {
    padding: 24px 36px;
  }

  .top-mv .top-mv-slide dl .top-mv-link {
    left: 36px;
  }
}

@media screen and (min-width: 769px) {
  .top-mv .top-mv-slide dl .top-mv-link:hover {
    color: #fff;
    background-color: var(--main-color-green);
  }
}

@media screen and (max-width: 768px) {
  .top-mv-overlay {
    height: calc(100% - 38px);
  }

  .top-mv .top-mv-slide > a {
    display: block;
    background-color: var(--base-color-black);
  }

  .top-mv .top-mv-slide dl {
    justify-content: flex-start;
    flex: 1;
    width: 100%;
    height: auto;
    padding: 25px 20px 90px;
    background-color: transparent;
  }

  .top-mv .top-mv-slide dl .top-mv-label {
    padding-left: 23px;
    font-size: 1.125em;
  }

  .top-mv .top-mv-slide dl .top-mv-label::before {
    width: 18px;
    height: 18px;
  }

  .top-mv .top-mv-slide dl .top-mv-subtitle {
    margin: 10px 0 0;
    font-size: 0.75em;
  }

  .top-mv .top-mv-slide dl dt {
    margin: 8px 0 0;
    font-size: 1.25em;
  }

  .top-mv .top-mv-slide dl .top-mv-plan span {
    padding: 3px 8px;
    font-size: 0.75em;
  }

  .top-mv .top-mv-slide dl .top-mv-time {
    margin: 18px 0 0;
  }

  .top-mv .top-mv-slide dl time {
    font-size: 0.8125em;
  }

  .top-mv .top-mv-slide dl .top-mv-copy {
    margin: 6px 0 0;
    font-size: 0.5625em;
  }

  .top-mv .top-mv-slide dl .top-mv-link {
    position: absolute;
    width: calc(100% - 40px);
    left: 20px;
    bottom: 20px;
    margin: 24px 0 0;
    max-width: none;
    height: 44px;
    font-size: 0.875em;
    border-radius: 8px;
  }

  .top-mv .top-mv-slide figure {
    width: 100%;
    height: auto;
    aspect-ratio: 375 / 210;
  }

  .top-mv .top-mv-slider-pagination {
    padding: 17px 0 15px;
  }

  .top-mv .swiper-button-prev,
  .top-mv .swiper-button-next {
    width: 6px;
    height: 9px;
    top: calc(50% + 1px);
  }

  .top-mv .swiper-button-prev:after,
  .top-mv .swiper-button-next:after {
    width: 6px;
    height: 9px;
  }

  .top-mv .swiper-button-prev {
    left: -58px;
  }

  .top-mv .swiper-button-next {
    right: -58px;
  }

  .top-mv .top-mv-pagination {
    margin: -19px auto 0;
  }
}

/* .top-banner */
.top-banner {
  display: flex;
  justify-content: center;
  margin: 70px auto 44px;
  padding: 0 20px;
}

.top-banner a {
  width: 100%;
  max-width: 990px;
}

.top-banner a img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .top-banner {
    margin: 40px auto 24px;
    padding: 0 20px;
  }
}

/* .top-main */
.top-main {
  margin: 28px 0 0;
  padding: 24px 0 104px;
  border-radius: 72px 0 0;
  background-color: var(--base-color-black);
}

.top-banner + .top-main {
  margin: 0;
}

@media screen and (max-width: 768px) {
  .top-main {
    margin: 15px 0 0;
    padding: 12px 0 76px;
    border-radius: 40px 0 0;
  }
}

.top-main .common-sec-heading h2 {
  font-size: 1.5em;
}

@media screen and (max-width: 768px) {
  .top-main .common-sec-heading h2 {
    font-size: 1.125em;
  }
}
