:root {
  --c-ktRed: hsla(358, 79%, 43%, 1);
  --c-kt26-purple: hsla(294, 43%, 40%, 1);
  --c-kt26-red: hsla(359, 79%, 56%, 1);
  --c-kt26-yellow: hsla(44, 95%, 53%, 1);
  --c-gray63: hsla(0, 0%, 39%, 1);
  --c-grayB8: hsla(0, 0%, 72%, 1);
  --c-grayF2: hsla(0, 0%, 95%, 1);
  --c-kt26-pink: hsla(344, 78%, 58%, 1);
  --c-yellow: hsl(55 100% 50.2%);
  --c-Black: hsl(220 0% 0%);
  --c-black: hsl(220 0% 10%);
  --c-blackHover: hsl(220 0% 50%);
  --c-White: hsl(220 0% 100%);
  --c-white: hsl(220 0% 100%);
  --c-dummy: hsl(220 0% 90%);
  --c-bg: hsl(220 10% 90%);
  --c-text: hsl(220 10% 10%);
  --c-textHover: hsl(220 10% 50%);
  --c-blueGray3080: hsl(220, 30%, 80%);
  --c-blueGray3085: hsl(220, 30%, 85%);
  --c-blueGray3095: hsl(220, 30%, 95%);
  --fadeInLength: 30px;
  --easeOutQuad: cubic-bezier(0.5, 1, 0.89, 1);
  --easeOutCubic: cubic-bezier(0.33, 1, 0.68, 1);
  --easeOutQuart: cubic-bezier(0.25, 1, 0.5, 1);
  --easeOutQuint: cubic-bezier(0.22, 1, 0.36, 1);
  --easeOutExpo: cubic-bezier(0.16, 1, 0.3, 1);
  --easeInOutQuad: cubic-bezier(0.45, 0, 0.55, 1);
  --easeInOutCubic: cubic-bezier(0.65, 0, 0.35, 1);
  --easeInOutQuart: cubic-bezier(0.76, 0, 0.24, 1);
  --easeInOutQuint: cubic-bezier(0.83, 0, 0.17, 1);
  --easeInOutExpo: cubic-bezier(0.87, 0, 0.13, 1);
  --easeInQuad: cubic-bezier(0.11, 0, 0.5, 0);
  --easeInCubic: cubic-bezier(0.32, 0, 0.67, 0);
  --easeInQuart: cubic-bezier(0.5, 0, 0.75, 0);
  --easeInQuint: cubic-bezier(0.64, 0, 0.78, 0);
  --easeInExpo: cubic-bezier(0.7, 0, 0.84, 0);
}

main {
  margin-inline: auto;
  margin-top: 64px;
  width: 960px;
  overflow: visible;
}
@media screen and (max-width: 1239px) {
  main {
    margin-top: 60px;
    width: 92vw;
  }
}
@media screen and (max-width: 639px) {
  main {
    margin-top: 56px;
  }
}
main .top_bar {
  margin-left: calc(-1 * (100vw - 960px) / 2);
  width: 100vw;
  height: 4px;
  background: linear-gradient(90deg, var(--c-kt26-purple) 0%, var(--c-kt26-red) 50%, var(--c-kt26-yellow) 100%);
}
@media screen and (max-width: 1239px) {
  main .top_bar {
    margin-left: -4vw;
    height: 3.5px;
  }
}
@media screen and (max-width: 639px) {
  main .top_bar {
    height: 3px;
  }
}
main .page_title {
  margin-top: 60px;
  padding: 16px 25px;
  position: relative;
}
@media screen and (max-width: 1239px) {
  main .page_title {
    margin-top: 50px;
  }
}
@media screen and (max-width: 639px) {
  main .page_title {
    margin-top: 40px;
  }
}
main .page_title::before {
  content: "";
  display: inline-block;
  background: linear-gradient(90deg, var(--c-kt26-purple) 0%, var(--c-kt26-red) 50%, var(--c-kt26-yellow) 100%);
  border-radius: 8px;
  position: absolute;
  inset: 0;
}
main .page_title h1 {
  margin-block: calc((1em - 1lh) / 2);
  font-size: 32px;
  line-height: 1.5em;
  letter-spacing: 0em;
  font-weight: 600;
}
main .page_title h1 span {
  font-weight: 600;
}
main .page_title h1 {
  color: var(--c-white);
  text-align: center;
  translate: 0 -0.05em;
  position: relative;
}
@media screen and (max-width: 1239px) {
  main .page_title h1 {
    font-size: 26px;
  }
}
@media screen and (max-width: 639px) {
  main .page_title h1 {
    font-size: 20px;
  }
}
main section {
  margin-top: 50px;
  padding-top: 50px;
}
@media screen and (max-width: 1239px) {
  main section {
    margin-top: 40px;
    padding-top: 40px;
  }
}
@media screen and (max-width: 639px) {
  main section {
    margin-top: 30px;
    padding-top: 30px;
  }
}
main section.section_movie .movie_ul {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 60px;
}
@media screen and (max-width: 1239px) {
  main section.section_movie .movie_ul {
    margin-inline: auto;
    width: 76vw;
  }
}
@media screen and (max-width: 839px) {
  main section.section_movie .movie_ul {
    width: 68vw;
  }
}
@media screen and (max-width: 639px) {
  main section.section_movie .movie_ul {
    width: 84vw;
  }
}
main section.section_movie .movie_ul li {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 50px;
}
@media screen and (max-width: 1239px) {
  main section.section_movie .movie_ul li {
    column-gap: 4vw;
  }
}
@media screen and (max-width: 839px) {
  main section.section_movie .movie_ul li {
    grid-template-columns: 1fr;
  }
}
main section.section_movie .movie_ul li .movie_wrap {
  width: 480px;
  height: 270px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1239px) {
  main section.section_movie .movie_ul li .movie_wrap {
    width: 36vw;
    height: 20.25vw;
  }
}
@media screen and (max-width: 839px) {
  main section.section_movie .movie_ul li .movie_wrap {
    width: 68vw;
    height: 38.25vw;
  }
}
@media screen and (max-width: 639px) {
  main section.section_movie .movie_ul li .movie_wrap {
    width: 84vw;
    height: 47.25vw;
  }
}
main section.section_movie .movie_ul li .movie_wrap .movie {
  width: 100%;
  height: 100%;
}
main section.section_movie .movie_ul li .movie_wrap .movie button::before, main section.section_movie .movie_ul li .movie_wrap .movie button::after {
  display: none;
}
main section.section_movie .movie_ul li .movie_wrap .thumb_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  inset: 0;
  cursor: pointer;
  pointer-events: none;
}
main section.section_movie .movie_ul li .movie_wrap .thumb_wrap .thumb {
  position: absolute;
  inset: 0;
}
main section.section_movie .movie_ul li .movie_wrap .thumb_wrap .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
main section.section_movie .movie_ul li .movie_wrap .thumb_wrap .icon {
  transition: opacity 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 57px;
  height: 57px;
  position: relative;
}
@media screen and (max-width: 1239px) {
  main section.section_movie .movie_ul li .movie_wrap .thumb_wrap .icon {
    width: 46.74px;
    height: 46.74px;
  }
}
@media screen and (max-width: 639px) {
  main section.section_movie .movie_ul li .movie_wrap .thumb_wrap .icon {
    width: 36.48px;
    height: 36.48px;
  }
}
main section.section_movie .movie_ul li .movie_wrap .thumb_wrap .icon::before {
  content: "";
  display: inline-block;
  background-color: var(--c-black);
  border-radius: 50%;
  position: absolute;
  inset: 0;
}
main section.section_movie .movie_ul li .movie_wrap .thumb_wrap .icon .arrow {
  translate: 15% 0;
  position: relative;
}
@media screen and (max-width: 1239px) {
  main section.section_movie .movie_ul li .movie_wrap .thumb_wrap .icon .arrow {
    translate: 12% 0;
  }
}
@media screen and (max-width: 639px) {
  main section.section_movie .movie_ul li .movie_wrap .thumb_wrap .icon .arrow {
    translate: 9% 0;
  }
}
main section.section_movie .movie_ul li .movie_wrap .thumb_wrap .icon .arrow svg {
  fill: var(--c-white);
}
@media screen and (max-width: 1239px) {
  main section.section_movie .movie_ul li .movie_wrap .thumb_wrap .icon .arrow svg {
    scale: 0.82;
  }
}
@media screen and (max-width: 639px) {
  main section.section_movie .movie_ul li .movie_wrap .thumb_wrap .icon .arrow svg {
    scale: 0.64;
  }
}
main section.section_movie .movie_ul li .movie_wrap::after {
  content: "";
  display: inline-block;
  border: 1px solid var(--c-grayF2);
  position: absolute;
  inset: 0;
  pointer-events: none;
}
@media screen and (min-width: 1239px) {
  main section.section_movie .movie_ul li .movie_wrap:hover .thumb_wrap .icon {
    opacity: 0.7;
  }
}
main section.section_movie .movie_ul li .movie_wrap.play .thumb_wrap {
  transition: opacity 0.5s, translate 0s 0.5s;
  opacity: 0;
  translate: 100vw 0;
}
main section.section_movie .movie_ul li .info {
  align-self: center;
}
@media screen and (max-width: 839px) {
  main section.section_movie .movie_ul li .info {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 45px;
  }
}
@media screen and (max-width: 639px) {
  main section.section_movie .movie_ul li .info {
    margin-top: 35px;
  }
}
main section.section_movie .movie_ul li .info .title {
  padding: 16px 20px;
  max-width: 400px;
  position: relative;
}
@media screen and (max-width: 839px) {
  main section.section_movie .movie_ul li .info .title {
    justify-self: center;
    max-width: none;
    width: 68vw;
  }
}
@media screen and (max-width: 639px) {
  main section.section_movie .movie_ul li .info .title {
    width: 84vw;
  }
}
main section.section_movie .movie_ul li .info .title::before {
  content: "";
  display: inline-block;
  background-color: var(--c-grayF2);
  border-radius: 4px;
  position: absolute;
  inset: 0;
}
main section.section_movie .movie_ul li .info .title h4 {
  margin-block: calc((1em - 1lh) / 2);
  font-size: 16px;
  line-height: 1.4em;
  letter-spacing: 0em;
  font-weight: 600;
}
main section.section_movie .movie_ul li .info .title h4 span {
  font-weight: 600;
}
main section.section_movie .movie_ul li .info .title h4 {
  color: var(--c-ktRed);
  text-align: center;
  position: relative;
}
main section.section_movie .movie_ul li .info .content {
  margin-top: 30px;
}
@media screen and (max-width: 1239px) {
  main section.section_movie .movie_ul li .info .content {
    margin-top: 25px;
  }
}
@media screen and (max-width: 839px) {
  main section.section_movie .movie_ul li .info .content {
    display: grid;
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 639px) {
  main section.section_movie .movie_ul li .info .content {
    margin-top: 20px;
  }
}
main section.section_movie .movie_ul li .info .content .position {
  padding-bottom: 15px;
}
@media screen and (max-width: 1239px) {
  main section.section_movie .movie_ul li .info .content .position {
    padding-bottom: 13px;
  }
}
@media screen and (max-width: 839px) {
  main section.section_movie .movie_ul li .info .content .position {
    justify-self: center;
  }
}
@media screen and (max-width: 639px) {
  main section.section_movie .movie_ul li .info .content .position {
    padding-bottom: 11px;
  }
}
main section.section_movie .movie_ul li .info .content .position .text {
  margin-block: calc((1em - 1lh) / 2);
  font-size: 14px;
  line-height: 1.5em;
  letter-spacing: 0em;
  font-weight: 500;
}
main section.section_movie .movie_ul li .info .content .position .text span {
  font-weight: 500;
}
@media screen and (max-width: 839px) {
  main section.section_movie .movie_ul li .info .content .name {
    justify-self: center;
  }
}
main section.section_movie .movie_ul li .info .content .name .text {
  margin-block: calc((1em - 1lh) / 2);
  font-size: 18px;
  line-height: 1.5em;
  letter-spacing: 0em;
  font-weight: 500;
}
main section.section_movie .movie_ul li .info .content .name .text span {
  font-weight: 500;
}
main section.section_movie .movie_ul li .download {
  grid-column: 1/3;
  margin-top: 25px;
}
@media screen and (max-width: 839px) {
  main section.section_movie .movie_ul li .download {
    grid-column: auto;
    justify-self: center;
    margin-top: 30px;
  }
}
main section.section_movie .movie_ul li .download .item {
  display: grid;
  grid-template-columns: auto auto;
  column-gap: 10px;
  justify-content: start;
}
@media screen and (max-width: 1239px) {
  main section.section_movie .movie_ul li .download .item {
    column-gap: 9px;
  }
}
@media screen and (max-width: 639px) {
  main section.section_movie .movie_ul li .download .item {
    grid-template-columns: auto;
    row-gap: 15px;
  }
}
main section.section_movie .movie_ul li .download .item .title {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 0.2em;
  padding-top: 14px;
}
@media screen and (max-width: 639px) {
  main section.section_movie .movie_ul li .download .item .title {
    padding-top: 0;
  }
}
main section.section_movie .movie_ul li .download .item .title .maru {
  font-size: 20px;
  line-height: 1em;
  letter-spacing: 0em;
  font-weight: 700;
}
main section.section_movie .movie_ul li .download .item .title .maru span {
  font-weight: 700;
}
@media screen and (max-width: 1239px) {
  main section.section_movie .movie_ul li .download .item .title .maru {
    font-size: 18px;
  }
}
@media screen and (max-width: 639px) {
  main section.section_movie .movie_ul li .download .item .title .maru {
    font-size: 16px;
  }
}
main section.section_movie .movie_ul li .download .item .title .content .text {
  font-size: 20px;
  line-height: 1em;
  letter-spacing: 0em;
  font-weight: 700;
}
main section.section_movie .movie_ul li .download .item .title .content .text span {
  font-weight: 700;
}
@media screen and (max-width: 1239px) {
  main section.section_movie .movie_ul li .download .item .title .content .text {
    font-size: 18px;
  }
}
@media screen and (max-width: 639px) {
  main section.section_movie .movie_ul li .download .item .title .content .text {
    font-size: 16px;
  }
}
main section.section_movie .movie_ul li .download .item .title .content .size {
  margin-top: 0.5em;
  font-size: 14px;
  line-height: 1em;
  letter-spacing: 0em;
  font-weight: 500;
}
main section.section_movie .movie_ul li .download .item .title .content .size span {
  font-weight: 500;
}
@media screen and (max-width: 1239px) {
  main section.section_movie .movie_ul li .download .item .title .content .size {
    font-size: 13px;
  }
}
@media screen and (max-width: 639px) {
  main section.section_movie .movie_ul li .download .item .title .content .size {
    font-size: 12px;
  }
}
@media screen and (max-width: 839px) {
  main section.section_movie .movie_ul li .download .item .btn {
    justify-self: center;
  }
}
main section.section_movie .movie_ul li .download .item .btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 48px;
  border-radius: 24px;
  position: relative;
}
main section.section_movie .movie_ul li .download .item .btn a .bg::before {
  content: "";
  display: inline-block;
  border-radius: 24px;
  background: linear-gradient(90deg, var(--c-kt26-purple) 0%, var(--c-kt26-red) 50%, var(--c-kt26-yellow) 100%);
  position: absolute;
  inset: 0;
}
main section.section_movie .movie_ul li .download .item .btn a .bg::after {
  transition: opacity 0.3s;
  content: "";
  display: inline-block;
  border-radius: 22px;
  background-color: var(--c-white);
  position: absolute;
  left: 2px;
  right: 2px;
  top: 2px;
  bottom: 2px;
}
main section.section_movie .movie_ul li .download .item .btn a .icon {
  line-height: 0;
  position: relative;
}
main section.section_movie .movie_ul li .download .item .btn a .icon svg {
  transition: fill 0.3s;
  fill: var(--c-Black);
}
@media screen and (min-width: 1239px) {
  main section.section_movie .movie_ul li .download .item .btn a:hover .bg::after {
    opacity: 0;
  }
}
@media screen and (min-width: 1239px) {
  main section.section_movie .movie_ul li .download .item .btn a:hover .icon svg {
    fill: var(--c-white);
  }
}
main section.section_movie .movie_ul li .download .item .btn a.gray {
  pointer-events: none;
}
main section.section_movie .movie_ul li .download .item .btn a.gray .bg::before {
  background: var(--c-grayB8);
}
main section.section_movie .movie_ul li .download .item .btn a.gray .icon svg {
  fill: var(--c-grayB8);
}
@media screen and (max-width: 1239px) {
  main section.section_open,
  main section.section_catch {
    margin-inline: auto;
    width: 76vw;
  }
}
@media screen and (max-width: 639px) {
  main section.section_open,
  main section.section_catch {
    width: 84vw;
  }
}
main section.section_open .box,
main section.section_catch .box {
  position: relative;
}
main section.section_open .box::before, main section.section_open .box::after,
main section.section_catch .box::before,
main section.section_catch .box::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 2px;
  background-color: var(--c-ktRed);
  position: absolute;
  left: 0;
}
main section.section_open .box::before,
main section.section_catch .box::before {
  top: 0;
}
main section.section_open .box::after,
main section.section_catch .box::after {
  bottom: 0;
}
main section.section_open .box h3,
main section.section_catch .box h3 {
  margin-block: calc((1em - 1lh) / 2);
  padding: 40px 15px;
  font-size: 24px;
  line-height: 1.5em;
  letter-spacing: 0em;
  font-weight: 600;
}
main section.section_open .box h3 span,
main section.section_catch .box h3 span {
  font-weight: 600;
}
main section.section_open .box h3,
main section.section_catch .box h3 {
  color: var(--c-ktRed);
  text-align: center;
  translate: 0 -0.05em;
}
@media screen and (max-width: 1239px) {
  main section.section_open .box h3,
  main section.section_catch .box h3 {
    padding: 35px 15px;
  }
}
@media screen and (max-width: 639px) {
  main section.section_open .box h3,
  main section.section_catch .box h3 {
    padding: 30px 10px;
    line-height: 1.4em;
  }
}
main section.section_open .box.fadeElem::before, main section.section_open .box.fadeElem::after,
main section.section_catch .box.fadeElem::before,
main section.section_catch .box.fadeElem::after {
  clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}
main section.section_open .box.fadeIn::before, main section.section_open .box.fadeIn::after,
main section.section_catch .box.fadeIn::before,
main section.section_catch .box.fadeIn::after {
  transition: clip-path 1s var(--easeOutQuart);
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
main section.section_catch .box h3 {
  padding: 40px 30px;
  font-size: 24px;
  line-height: 1.5em;
}
@media screen and (max-width: 1239px) {
  main section.section_catch .box h3 {
    padding: 30px 30px;
    font-size: 20px;
  }
}
@media screen and (max-width: 639px) {
  main section.section_catch .box h3 {
    padding: 20px 30px;
    font-size: 16px;
  }
}
@media screen and (max-width: 1239px) {
  main section.section_merit {
    margin-top: 50px;
    margin-inline: auto;
    width: 76vw;
  }
}
@media screen and (max-width: 639px) {
  main section.section_merit {
    margin-top: 50px;
    width: 84vw;
  }
}
main section.section_merit .merit_box {
  position: relative;
}
main section.section_merit .merit_box .bg {
  position: absolute;
  inset: 0;
}
main section.section_merit .merit_box .bg::before {
  content: "";
  display: inline-block;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--c-kt26-purple) 0%, var(--c-kt26-red) 50%, var(--c-kt26-yellow) 100%);
  position: absolute;
  inset: 0;
}
main section.section_merit .merit_box .bg::after {
  content: "";
  display: inline-block;
  border-radius: 6px;
  background-color: var(--c-white);
  position: absolute;
  inset: 2px;
}
main section.section_merit .merit_box .title {
  display: flex;
  justify-content: center;
  padding: 35px 15px;
  position: relative;
}
@media screen and (max-width: 1239px) {
  main section.section_merit .merit_box .title {
    padding: 27px 15px;
  }
}
@media screen and (max-width: 639px) {
  main section.section_merit .merit_box .title {
    padding: 20px 4vw;
  }
}
main section.section_merit .merit_box .title h2 {
  margin-block: calc((1em - 1lh) / 2);
  font-size: 32px;
  line-height: 1.5em;
  letter-spacing: 0em;
  font-weight: 700;
}
main section.section_merit .merit_box .title h2 span {
  font-weight: 700;
}
main section.section_merit .merit_box .title h2 {
  text-align: center;
  background: linear-gradient(90deg, var(--c-kt26-purple) 0%, var(--c-kt26-red) 50%, var(--c-kt26-yellow) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 1239px) {
  main section.section_merit .merit_box .title h2 {
    font-size: 26px;
  }
}
@media screen and (max-width: 639px) {
  main section.section_merit .merit_box .title h2 {
    font-size: 20px;
  }
}
main section.section_merit .merit_box .content {
  padding: 35px 0 50px;
  font-size: 20px;
  line-height: 1.4em;
  letter-spacing: 0em;
  font-weight: 700;
}
main section.section_merit .merit_box .content span {
  font-weight: 700;
}
main section.section_merit .merit_box .content {
  position: relative;
}
@media screen and (max-width: 1239px) {
  main section.section_merit .merit_box .content {
    padding: 30px 0 40px;
    font-size: 17.5px;
  }
}
@media screen and (max-width: 639px) {
  main section.section_merit .merit_box .content {
    padding: 25px 0;
    font-size: 15px;
    font-weight: 600;
  }
  main section.section_merit .merit_box .content span {
    font-weight: 600;
  }
}
main section.section_merit .merit_box .content::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--c-kt26-purple) 0%, var(--c-kt26-red) 50%, var(--c-kt26-yellow) 100%);
  position: absolute;
  left: 0;
  top: 0;
}
main section.section_merit .merit_box .content .bullet {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 0.6em;
  padding: 0 80px;
  position: relative;
}
@media screen and (max-width: 1239px) {
  main section.section_merit .merit_box .content .bullet {
    row-gap: 0.7em;
    padding: 0 12vw;
  }
}
@media screen and (max-width: 1039px) {
  main section.section_merit .merit_box .content .bullet {
    padding: 0 9vw;
  }
}
@media screen and (max-width: 839px) {
  main section.section_merit .merit_box .content .bullet {
    row-gap: 0.8em;
    padding: 0 6vw;
  }
}
main section.section_merit .merit_box .content .bullet .grid {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 0.3em;
  margin-block: calc((1em - 1lh) / 2);
}
main section.section_merit .merit_box .content .bullet .grid span.t {
  color: var(--c-kt26-pink);
}
main section.section_merit .merit_box .content.fadeElem {
  opacity: 0;
  translate: 0 20px;
}
main section.section_merit .merit_box .content.fadeIn {
  transition: opacity 1s, translate 1s var(--easeOutQuart);
  opacity: 1;
  translate: 0 0;
}
main section.section_btn .btn_ul {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 60px;
}
@media screen and (max-width: 1239px) {
  main section.section_btn .btn_ul {
    row-gap: 45px;
  }
}
@media screen and (max-width: 639px) {
  main section.section_btn .btn_ul {
    row-gap: 30px;
  }
}