/* web font
font-family: "Poppins", serif;
font-family: "Jomhuria", serif;
*/

:root {
    --main-theme-color: #D4161A;
    --ft-poppins: "Poppins", serif;
    --ft-jomhuria: "Jomhuria", serif;
    --main-column: 1280px;
}

* {
    box-sizing: border-box;
    color: #262626;
    font-family: "Noto Sans JP", sans-serif;
    list-style: none;
    margin: 0;
    padding: 0;
}

body.open {
    overflow: hidden;
}

a {
    text-decoration: none;
}

img {
    height: auto;
    max-width: 100%;
}

.pc {
    display: block;
}

.sp {
    display: none;
}

.pc2 {
    display: block;
}

.sp2 {
    display: none;
}

@media screen and (max-width: 968px) {
    .pc {
        display: none;
    }

    .sp {
        display: block;
    }
}

@media screen and (max-width: 768px) {
    .pc2 {
        display: none;
    }

    .sp2 {
        display: block;
    }
}

.container {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    min-height: 100vh;
    overflow-x: clip;
    width: 100%;
}

main {
    padding-top: 100px;
}

.main-inner {
    padding-top: 32px;
}

/* header */
.header {
    position: fixed;
    top: 0;
    margin: 0 auto;
    width: 100%;
    z-index: 999;
    background-color: #fff;
}

.header.fixed {}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding-left: 35px;
}

.header-left {
    width: 168px;
}

.header-right {
    width: calc(100% - 188px);
}

.header-right,
.header-info__list,
.header-nav__list {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.header-info__list li {
    position: relative;
}

.header-nav__list li {
    position: relative;
}

.header-info__list li:not(:last-child) {
    margin-right: 15px;
    /* padding-right: 15px; */
}

.header-nav__list li:not(:last-child) {
    padding-right: 15px;
    margin-right: 15px;
}

/* .header-info__list li:not(:last-child)::after {
    background: #959595;
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    width: 1px;
} */

.header-info__list li a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 12px;
    font-weight: 400;
}

.header-info__list li a::before {
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    content: "";
    display: block;
    margin-right: 5px;
}

.header-info__list li.faq a::before {
    background-image: url(../images/faq-icon.svg);
    height: 13px;
    width: 14px;
}

.header-info__list li.howto a::before {
    background-image: url(../images/howto-icon.svg);
    height: 11.47px;
    width: 13.88px;
}

.header-info__list li.line a::before {
    background-image: url(../images/line-icon.svg);
    height: 22px;
    width: 22px;
}

.header-info__list li.youtube a::before {
    background-image: url(../images/youtube-icon.svg);
    height: 18.2px;
    width: 26px;
}

.header-nav__list li:not(:last-child)::after {
    background: #959595;
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    width: 1px;
}

.header-nav__list li a {
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.header-nav__customer {
    display: flex;
    justify-content: flex-end;
    align-items: stretch;
    margin-left: 25px;
}

.nav-customer__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    text-align: center;
    width: 90px;
}

.nav-customer__btn.register {
    background: rgb(64, 120, 242);
    background: linear-gradient(0deg, rgba(64, 120, 242, 1) 0%, rgba(62, 168, 230, 1) 100%);
}

.nav-customer__btn.login {
    background: rgb(255, 111, 104);
    background: linear-gradient(184deg, rgba(255, 111, 104, 1) 0%, rgba(255, 52, 25, 1) 100%);
}

.nav-customer__btn a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

.nav-customer__btn.register a {
    height: 100%;
    width: 100%;
}

.nav-customer__btn.login a {
    height: 100%;
    width: 100%;
}

.nav-customer__btn a .in {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
}

.nav-customer__btn.register a .in::before {
    background: #fff;
    border-radius: 2px;
    color: #3169E3;
    content: "無料";
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: 700;
    height: 19px;
    margin: 0 auto 5px;
    padding: 1px 5px;
    width: max-content;
}

.nav-customer__btn.login a .in::before {
    background: url(../images/icon-key.svg) no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
    display: block;
    height: 19px;
    margin: 0 auto 5px;
    width: 16.61px;
}

@media screen and (max-width: 1068px) {
    .header-left {
        width: 128px;
    }

    .header-right {
        width: calc(100% - 148px);
    }

    .header-info__list li:not(:last-child) {
        margin-right: 12px;
        padding-right: 12px;
    }

    .header-nav__list li:not(:last-child) {
        margin-right: 20px;
    }
}

@media screen and (max-width: 968px) {
    .header-inner {
        padding: 0 25px;
    }

    .nav-customer__btn {
        height: 80px;
        width: 75px;
    }

    .nav-customer__btn a .in {
        font-size: 14px;
    }

    .header-nav {
        background: #fff;
        height: 100%;
        padding: 45px 20px;
        position: fixed;
        right: -100%;
        top: 0;
        transition-duration: .3s;
        width: 100%;
        max-width: 300px;
        z-index: 999;
    }

    .header-nav.open {
        right: 0;
    }

    .header-nav__inner,
    .header-info__list,
    .header-nav__list {
        display: block;
    }

    .header-info__list {
        margin: 0 0 25px;
    }

    .header-info__list li:not(:last-child) {
        margin-right: 0;
        margin-bottom: 10px;
        padding-right: 0;
        padding-bottom: 10px;
    }

    .header-nav__list li:not(:last-child) {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .header-info__list li:not(:last-child)::after {
        height: 1px;
        left: 0;
        top: inherit;
        bottom: 0;
        width: 100%;
    }

    .header-bg {
        background: rgb(0 0 0 / 16%);
        display: none;
        height: 100%;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 996;
    }

    /* hamberger */
    .header-menu {
        display: block;
        height: 25px;
        margin-left: 20px;
        position: relative;
        text-align: center;
        width: 30px;
        z-index: 999999;
    }

    .header-menu span {
        display: block;
    }

    .header-menu___trigger {
        position: relative;
        width: 100%;
        height: 100%;
        cursor: pointer;
        z-index: 3;
    }

    .header-menu___trigger span {
        position: absolute;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #545454;
        border-radius: 4px;
    }

    .header-menu___trigger,
    .header-menu___trigger span {
        display: inline-block;
        transition: all .5s;
        box-sizing: border-box;
    }

    .header-menu___trigger span:nth-of-type(1) {
        top: 0;
    }

    .header-menu___trigger span:nth-of-type(2) {
        top: 12px;
    }

    .header-menu___trigger span:nth-of-type(3) {
        bottom: 0;
    }

    .header-menu___trigger.active span:nth-of-type(1) {
        top: -6px;
    }

    .header-menu___trigger.active span:nth-of-type(3) {
        bottom: -10px;
    }

    .header-menu___trigger span:nth-of-type(1) {
        animation: header-menu__bar01 .75s forwards;
    }

    @keyframes header-menu__bar01 {
        0% {
            transform: translateY(20px) rotate(45deg);
        }

        50% {
            transform: translateY(20px) rotate(0);
        }

        100% {
            transform: translateY(0) rotate(0);
        }
    }

    .header-menu___trigger span:nth-of-type(2) {
        transition: all .25s .25s;
        opacity: 1;
    }

    .header-menu___trigger span:nth-of-type(3) {
        animation: header-menu__bar03 .75s forwards;
    }

    @keyframes header-menu__bar03 {
        0% {
            transform: translateY(-20px) rotate(-45deg);
        }

        50% {
            transform: translateY(-20px) rotate(0);
        }

        100% {
            transform: translateY(0) rotate(0);
        }
    }

    .header-menu___trigger.active span:nth-of-type(1) {
        animation: active-header-menu__bar01 .75s forwards;
    }

    @keyframes active-header-menu__bar01 {
        0% {
            transform: translateY(0) rotate(0);
        }

        50% {
            transform: translateY(20px) rotate(0);
        }

        100% {
            transform: translateY(20px) rotate(45deg);
        }
    }

    .header-menu___trigger.active span:nth-of-type(2) {
        opacity: 0;
    }

    .header-menu___trigger.active span:nth-of-type(3) {
        animation: active-header-menu__bar03 .75s forwards;
    }

    @keyframes active-header-menu__bar03 {
        0% {
            transform: translateY(0) rotate(0);
        }

        50% {
            transform: translateY(-20px) rotate(0);
        }

        100% {
            transform: translateY(-20px) rotate(-45deg);
        }
    }
}

@media screen and (max-width: 768px) {
    .header-inner {
        padding: 0 15px;
    }

    .header-left {
        width: 80px;
    }

    .header-right {
        width: calc(100% - 90px);
    }

    .header-nav__customer {
        margin-left: 0;
    }

    .nav-customer__btn {
        height: 75px;
        width: 65px;
    }

    .nav-customer__btn a .in {
        font-size: 12px;
    }

    .nav-customer__btn.register a .in::before {
        font-size: 10px;
        height: 19px;
    }
}

@media screen and (max-width:968px) {
    main {
        padding-top: 75px;
    }
}

/* footer */
.footer {
    background: #3B4A5F;
    margin-top: 25px;
    padding: 65px 0;
}

.footer-inner {
    margin: 0 auto;
    width: 90%;
}

.footer-flex {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
}

.footer-left,
.footer-right {
    width: max-content;
}

.footer-left {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 35px;
}

.footer-links ul {
    display: grid;
    gap: 4px;
}

.footer-links ul li a {
    color: #fff;
    font-size: 12px;
    font-weight: 400;
}

.footer-logo {
    margin: 0 0 45px;
    text-align: center;
    max-width: 169px;
    width: 100%;
}

.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.copyright p {
    color: #fff;
    font-size: 12px;
    font-weight: 400;
}

@media screen and (max-width: 968px) {
    .footer-links ul li a {
        /* font-size: 16px; */
    }
}

@media screen and (max-width: 768px) {
    .footer {
        padding-bottom: 120px;
    }

    .footer-left,
    .footer-right {
        width: 100%;
        text-align: center;
    }

    .footer-left {
        justify-content: center;
        margin: 0 0 35px;
    }

    .footer-logo {
        max-width: initial;
        margin-left: auto;
        margin-right: auto;
        width: 80%;
    }

    .copyright p {
        text-align: center;
    }
}

@media screen and (max-width: 468px) {
    .footer-inner {
        width: 95%;
    }

    .footer-left {
        margin: 0 0 25px;
    }

    .footer-links ul li a {
        /* font-size: 14px; */
    }
}


/* main */
.flexcontent-inner {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    margin: 0 auto;
    width: 95%;
    max-width: var(--main-column);
}

.sidebar {
    width: 220px;
}

.maincontent {
    width: calc(100% - 500px);
}

@media screen and (max-width: 968px) {
    .maincontent {
        margin: 0 0 35px;
        order: 1;
        width: 100%;
    }

    .sidebar {
        margin: 0 auto;
        width: 100%;
        max-width: 776px;
    }

    .sidebar-left {
        margin: 35px auto 0;
        order: 3;
    }

    .sidebar-right {
        order: 2;
    }
}


/* sidebar widget */
.sidebar-inner {
    display: grid;
    gap: 35px;
}

.sidebar-widget__ttl {
    margin: 0 0 15px;
    text-align: center;
}

.sidebar-widget__ttl p {
    font-size: 20px;
    font-weight: 500;
}

.sidebar-widget__ttl p span {
    color: #3E9CE6;
    display: block;
    font-family: var(--ft-poppins);
    font-size: 14px;
    font-weight: 400;
}

.sidebar-media,
.sidebar-widget__links,
.sidebar-movie,
.sidebar-loginform__list {
    display: grid;
}

.sidebar-media {
    gap: 20px;
}

.sidebar-widget__links {
    gap: 10px;
}

.sidebar-movie {
    counter-reset: number 0;
    gap: 15px;
}

.sidebar-loginform__list {
    gap: 5px;
}

.sidebar-media__image {
    line-height: 0;
    aspect-ratio: 16/9;
}

.sidebar-media__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-media__text {
    padding: 5px 0 0;
}

.sidebar-media__text p {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.8em;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.sidebar-widget__links li {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.sidebar-widget__links li::before {
    background: #3E9CE6;
    content: "";
    display: block;
    height: 6px;
    margin-right: 3px;
    transform: rotate(45deg);
    width: 6px;
}

.sidebar-widget__links li a {
    font-size: 14px;
    font-weight: 500;
}

.sidebar-movie__item {
    background: #fff;
    border-radius: 4px 10px 10px 10px;
    filter: drop-shadow(0 3px 5px rgb(0 0 0 / 10%));
    overflow: hidden;
}

.sidebar-movie__item a {
    height: 100%;
    position: relative;
}

.sidebar-movie__item a::before {
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    counter-increment: number 1;
    content: counter(number);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    height: 30px;
    position: absolute;
    left: 0;
    top: -1px;
    width: 20px;
}

.sidebar-movie__item:nth-child(1) a::before {
    background-image: url(../images/rank-bg1.svg);
}

.sidebar-movie__item:nth-child(2) a::before {
    background-image: url(../images/rank-bg2.svg);
}

.sidebar-movie__item:nth-child(3) a::before {
    background-image: url(../images/rank-bg3.svg);
}

.sidebar-movie__image {
    line-height: 0;
}

.sidebar-movie__image img {
    width: 100%;
}

.sidebar-movie__text {
    padding: 5px 8px 8px;
}

.sidebar-movie__text p {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.8em;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.sidebar-more {
    height: 48px;
    margin: 25px auto 0;
    width: 95%;
}

.sidebar-more a {
    border: 2px solid #42A5F3;
    border-radius: 12px;
    color: #42A5F3;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: 700;
    height: 100%;
    width: 100%;
}

.sidebar-more a::after {
    background: url(../images/icon-arrow-r.svg) no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
    display: block;
    height: 12px;
    margin-left: 15px;
    width: 6px;
}

.sidebar-loginform__btn {
    margin-top: 10px;
}

.automation-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.automation-item input {
    outline: none;
}

.automation-item label {
    color: #737373;
    font-size: 11px;
    font-weight: 500;
    margin-left: 5px;
}

.sidebar-loginform__item dt {
    margin: 0 0 5px;
}

.sidebar-loginform__item dt label {
    color: #737373;
    font-size: 11px;
    font-weight: 500;
}

.sidebar-loginform__item dd input[type="email"],
.sidebar-loginform__item dd input[type="password"] {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    border: 1px solid #737373;
    border-radius: 4px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 34px;
    outline: none;
    padding: 0 8px;
    width: 100%;
}

.sidebar-loginform__submit {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background: rgb(255, 111, 104);
    background: linear-gradient(184deg, rgba(255, 111, 104, 1) 0%, rgba(255, 52, 25, 1) 100%);
    border: 0;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: 700;
    height: 48px;
    outline: none;
    width: 100%;
}

.sidebar-loginform__submit::before {
    background: url(../images/icon-key.svg) no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
    display: block;
    height: 15.85px;
    margin-right: 5px;
    width: 16.61px;
}

.sidebar-rank {
    counter-reset: number 0;
}

.sidebar-rank__item {
    border-bottom: 1px solid #BDBDBD;
    margin: 0 0 12px;
    padding: 0 0 12px;
}

.sidebar-rank__tag {
    color: #737373;
    font-size: 12px;
    font-weight: 600;
    margin: 0 0 5px;
}

.sidebar-rank__item a {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    position: relative;
}

.sidebar-rank__item a::before {
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    counter-increment: number 1;
    content: counter(number);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    height: 30px;
    position: absolute;
    left: 0;
    top: -1px;
    width: 20px;
}

.sidebar-rank__item:nth-child(1) a::before {
    background-image: url(../images/rank-bg1.svg);
}

.sidebar-rank__item:nth-child(2) a::before {
    background-image: url(../images/rank-bg2.svg);
}

.sidebar-rank__item:nth-child(3) a::before {
    background-image: url(../images/rank-bg3.svg);
}

.sidebar-rank__image {
    margin-right: 15px;
    width: 89px;
}

.sidebar-rank__text {
    width: calc(100% - 104px);
}

.sidebar-rank__text .ttl {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.8em;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.sidebar-rank__text .excerpt {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.8em;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.sidebar-consultation {
    background: url(../images/consultation-bg.png) no-repeat;
    background-color: #F3F3F3;
    background-position: center;
    background-size: cover;
    border-radius: 20px;
    padding: 25px;
}

.sidebar-consultation__ttl {
    margin: 0 0 15px;
    text-align: center;
}

.sidebar-consultation__ttl p {
    font-size: 16px;
    font-weight: 600;
}

.sidebar-consultation__ttl p span {
    display: block;
    font-size: 12px;
    font-weight: 600;
}

.sidebar-consultation__tags {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    row-gap: 10px;
}

.sidebar-consultation__tag {
    background: #fff;
    border: 2px solid #3169E3;
    border-radius: 2px 12px 2px 12px;
    color: #3169E3;
    font-size: 14px;
    font-weight: 600;
    padding: 5px;
    text-align: center;
    width: 48.5%;
}

.sidebar-consultation__tag:nth-child(4n+2),
.sidebar-consultation__tag:nth-child(4n+3) {
    border: 2px solid #1CA7DE;
    color: #1CA7DE;
}

.sidebar-consultation__button {
    margin: 15px 0 0;
}

.sidebar-consultation__button a {
    background: rgb(255, 111, 104);
    background: linear-gradient(184deg, rgba(255, 111, 104, 1) 0%, rgba(255, 52, 25, 1) 100%);
    border-radius: 10px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: 700;
    height: 48px;
    width: 100%;
}

.beginner-card__showdetail i {
    display: none;
}

/* topics */
.topics {
    background: #DFF1FF;
    margin: 0 0 25px;
    padding: 15px 0;
}

.topics.-page {
    margin-bottom: 0;
}

.topics-inner {
    margin: 0 auto;
    width: 95%;
    max-width: var(--main-column);
}

.topics-list {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.topics-list dt {
    color: #3E9CE6;
    font-family: var(--ft-poppins);
    font-size: 16px;
    font-weight: 400;
    margin-right: 15px;
    width: 60px;
}

.topics-list dd {
    width: calc(100% - 75px);
}

.topics-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}

.topics-date {
    font-family: var(--ft-poppins);
    font-size: 14px;
    font-weight: 400;
    margin-right: 10px;
    line-height: 1.3;
}

.topics-cat {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    gap: 5px;
    margin-right: 10px;
    line-height: 1.3;
}

.topics-cat span {
    border: 1px solid #262626;
    border-radius: 6px;
    display: inline-block;
    font-size: 12px;
    font-weight: 400;
    padding: 1px 5px;
    width: max-content;
}

.topics-ttl {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.3;
}

@media screen and (max-width: 968px) {}

@media screen and (max-width: 768px) {
    .topics-ttl {
        margin: 5px 0 0;
        width: 100%;
    }
}

/* mv */
.mv {
    background: url(../images/mv-bg.png) no-repeat;
    background-position: center;
    background-size: contain;
    overflow: hidden;
    padding: 0 0 85px;
}

.mv-slider {
    overflow: hidden;
    position: relative;
}

.mv-slide {
    width: 758px;
}

.mv-prev,
.mv-next {
    background: #fff;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 52.5px;
    margin: auto;
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    width: 52.5px;
}

.mv-prev {
    background-image: url(../images/slide-arrow-left.svg);
    left: calc((758px + 80px) * -1);
}

.mv-next {
    background-image: url(../images/slide-arrow-right.svg);
    right: calc((758px + 80px) * -1);
}

.mv-prev::after,
.mv-next::after {
    display: none;
}

.mv-loopslide {
    background: #fff;
    border: 1px solid #BAB9B9;
    border-right: 0;
    border-left: 0;
    margin: 25px 0 0;
    overflow: hidden;
    padding: 20px 0 15px;
    position: relative;
    width: 100%;
    white-space: nowrap;
}

.mv-loopslide.-page {
    margin-top: 0;
}

.mv-loopslide__inner {
    display: inline-flex;
    justify-content: space-between;
    width: 50%;
    animation: slideLeft 100s linear infinite;
}

.mv-loopslide__item {
    flex: 0 0 auto;
    line-height: 0;
    width: 20%;
    height: 52px;
    padding: 0 16px;
    /* width: 1376px;
    height: 52px; */
}

.mv-loopslide__item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* アニメーション */
@keyframes slideLeft {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

@media screen and (max-width: 968px) {
    .mv {
        padding: 0 0 45px;
    }

    .mv-slide {
        width: 580px;
    }

    .mv-prev {
        left: calc((580px + 55px) * -1);
    }

    .mv-next {
        right: calc((580px + 55px) * -1);
    }

    .mv-prev,
    .mv-next {
        height: 40px;
        width: 40px;
    }
}

@media screen and (max-width: 768px) {
    .mv {
        padding: 0 0 25px;
    }

    .mv-slide {
        width: 90%;
    }

    .mv-slider {
        padding: 30px 0;
    }

    .mv-prev,
    .mv-next {
        height: 32.5px;
        width: 32.5px;
    }

    .mv-prev {
        left: 10px;
        right: inherit;
    }

    .mv-next {
        right: 10px;
        left: inherit;
    }

    .mv-loopslide {
        margin-top: 0;
        padding-top: 0;
        padding-bottom: 0;
    }

    .mv-loopslide__item {
        width: 20%;
        padding: 0;
    }

    .mv-loopslide__item {
        /* width: 800px;
        height: auto; */
    }

    .mv-loopslide__item img {
        object-fit: contain;
    }
}

@media screen and (max-width: 968px) {}

@media screen and (max-width: 768px) {}