.topicpath{
    margin-bottom: 36px;
    padding-left: 0;
}
.topicpath .topicpath__inner{
    color: #222f33;
    overflow-x: auto;
    overflow-y: hidden;
    padding-left: 0;
}
.topicpath .topicpath__inner li a{
    color: #222f33;
}
.topicpath .topicpath__inner li:before {
    border-top: 1px solid #101211;
    border-right: 1px solid #101211;
}
.movie-tag-wrap{
    background-color: #3CB1D6;
    padding: 8px;
    padding-bottom: 16px;
}
.movie-tag{
    padding: 20px;
    background-image: url('/assets/img/movie/bg_pattern_wh.svg');
    border-radius: 40px;
    background-size: 20px;
}
.movie-tag__inner{
    max-width: 1000px;
    margin: 0 auto;
}
.movie-tag__title{
    color: var(--text-primary, #333);
    font-family: "Hiragino Kaku Gothic ProN";
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 2.88px;
    margin-bottom: 20px;
}
.movie-tag__list{
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 32px;
}
.movie-tag__list__item-link{
  display: block;
  padding: 4px 8px;
  border-radius: 1000px;
  border: 1px solid var(--text-primary, #333);
  background: var(--background-quaternary, #FFF);
  color: var(--text-primary, #333);
  font-family: "Hiragino Kaku Gothic ProN";
  font-size: 10px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5;
}

.movie-tag__tabs{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 0 10px;
    border-bottom: 2px solid var(--text-primary, #333);
    margin-bottom: 15px;
}
.movie-tag__tab{
    border-radius: 10px 10px 0 0;
    border: 1px solid var(--text-primary, #333);
    background: var(--background-quaternary, #FFF);
    padding: 12px 18px;
    font-weight: bold;
    border-bottom: none;
    color: #333;
}
.movie-tag__tab.is-active{
    background: #3CB1D6;
    color: #FFF;
}
.short-movie-area{
    padding: 20px 0;
}
.movie-area{
    padding: 25px 0;
    background-image: none;
}
.standard-movie{
    border-radius: 10px;
}
.movie-elem {
    position: relative;
    width: 100%;
    overflow: hidden;
}
#js-scroll-loader {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}
#js-scroll-loader.is-hidden {
    display: none;
}
.loader-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}
.loader-dot {
    width: 14px;
    height: 14px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    animation: loader-color-shift 1.2s ease-in-out infinite;
}
.loader-dot:nth-child(1) { animation-delay: 0s; }
.loader-dot:nth-child(2) { animation-delay: -0.8s; }
.loader-dot:nth-child(3) { animation-delay: -0.4s; }
@keyframes loader-color-shift {
    0%, 100% { background-color: #C0C5E8; }
    33.3%    { background-color: #E9EBF9; }
    66.6%    { background-color: #D8DBF7; }
}
.oc-banner {
    position: relative;
    margin: 60px auto;
    z-index: 1;
}

.oc-banner__link {
    display: block;
    position: relative;
    transition: transform 0.3s ease;
    text-decoration: none;
}
@media screen and (min-width: 768px) {
    .topicpath{
        margin-bottom: 20px;
    }
    .movie-tag-wrap{
        padding: 16px;
    }
    .movie-tag__title{
        font-size: 32px;
        letter-spacing: 8px;
        margin-bottom: 20px;
    }
    .movie-tag__list__item-link{
        padding: 3px 12px;
    }
    .movie-tag__list{
        gap: 10px;
        margin-bottom: 40px;
    }
    .movie-tag__tabs{
        margin-bottom: 0;
        display: flex;
    }
    .movie-tag__tab{
        padding: 15px;
        cursor: pointer;
        font-size: 16px;
        max-width: 240px;
        width: 100%;
        transition: .3s all ease;
    }
    .movie-tag__tab:hover{
        background: #3CB1D6;
        color: #FFF;
    }
    .short-movie-area{
        padding: 30px 0;
    }
    .short-movie-area:first-of-type{
        padding-top: 36px;
    }
    .short-movie__grid{
        grid-template-columns: repeat(4, 1fr);
        gap: 60px 40px;
    }
    .movie-area{
        padding: 30px 0;
    }
}