/*==================================================
Font読み出し
===================================*/

/*==================================================
全体
===================================*/
.jv_ma {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    background-color: #000;
    letter-spacing: 0.02em;
    position: relative;
    color: #fff;
    will-change: scroll-position;
    scroll-behavior: smooth;
}

.jv_ma_center {
    text-align: center;
}

.jv_ma_manga_icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 100%;
    max-width: 200px;
    z-index: 9999;
}

.jv_ma_manga_icon .jv_ma_hover-image {
    display: none;
    /* 初めは非表示 */
}

.jv_ma_manga_icon:hover .jv_ma_normal-image {
    display: none;
    /* 通常の画像を非表示 */
}

.jv_ma_manga_icon:hover .jv_ma_hover-image {
    display: block;
    /* hover時に新しい画像を表示 */
}

#jv_ma_manga_icon {
    opacity: 0;
    /* 初期状態は非表示（透明） */
    transition: opacity 0.5s ease;
    /* トランジションを設定 */
}

#jv_ma_manga_icon.show {
    opacity: 1;
    /* 表示時は不透明に */
}

.jv_ma_manga_icon figure img {
    width: 100%;
}

.jv_ma_manga_icon.absolute {
    position: absolute;
}

@media (max-width: 450px) {
    .jv_ma_manga_icon {
        width: 120px;
    }
}

/*==================================================
フェードで表示するアニメーション
===================================*/

.jv_ma_fadeup {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 1.2s, transform 0.8s;
}

.jv_ma_fadeup2 {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1.2s, transform 0.8s;
}

.jv_ma_fadeup3 {
    opacity: 0;
    transform: translateY(100px);
    transition: opacity 1.2s, transform 1.5s;
}

.jv_ma_fadeup4 {
    opacity: 0;
    transform: translateY(100px);
    transition: opacity 1.2s 0.1s, transform 1.5s 0.1s;
}

/* 要素が表示されたらアニメーションを適用 */
.jv_ma_fadeup.in-view,
.jv_ma_fadeup2.in-view,
.jv_ma_fadeup3.in-view,
.jv_ma_fadeup4.in-view {
    opacity: 1;
    transform: translateY(0);
}

/*==================================================
モーダル
===================================*/
.jv_ma_modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    background-color: #000;
    z-index: 9999999;
}

.jv_ma_modal.show,
.jv_ma_sharebox.show {
    display: block;
}

.jv_ma_modal_content {
    height: 100%;
    background-color: #ffffff;
}

.jv_ma_modal_inner {
    height: calc(100% - 40px);
    position: relative;
}

.jv_ma_toggle {
    width: 36px;
    height: 36px;
    position: absolute;
    cursor: pointer;
    top: 8px;
    right: 8px;
    z-index: 9999;
}

.jv_ma_modal_inner_footer {
    width: 100%;
    background-color: #242423;
    position: absolute;
    bottom: 0;
}

.jv_ma_modal_inner_footer_in {
    display: flex;
    justify-content: center;
}

.jv_ma_modal_inner_footer_in_left {
    min-width: 33.3333%;
}

.jv_ma_modal_inner_footer_in_center {
    min-width: 33.3333%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.jv_ma_modal_inner_footer_in_right {
    min-width: 33.3333%;
    margin-left: auto;
    display: flex;
    justify-content: end;
}

.jv_ma_modal_inner_footer_in_icon {
    object-fit: contain;
    position: relative;
    display: flex;
    align-items: center;
}

#jv_ma_transpose {
    margin-right: 1rem;
}

#jv_ma_share {
    margin-right: 10%;
}

#jv_ma_transpose,
#jv_ma_share {
    height: 40px;
    font-size: 1rem;
    line-height: 1em;
}

#jv_ma_transpose span,
#jv_ma_share span {
    margin-left: 0.5rem;
}

#jv_ma_transpose img {
    height: 2rem;
    rotate: 90deg;
}

#jv_ma_transpose span:nth-of-type(1) {
    display: none;
}

.horizontal #jv_ma_transpose span:nth-of-type(1) {
    display: inline;
}

.horizontal #jv_ma_transpose span:nth-of-type(2) {
    display: none;
}

.horizontal #jv_ma_transpose img {
    rotate: unset;
}

#jv_ma_share img {
    height: 1.6rem;
}

.jv_ma_sharebox {
    display: none;
    background-color: #000;
    padding: 5px 10px;
    border-radius: 10px;
    text-align: center;
    position: absolute;
    bottom: 70px;
    right: 10px;
    z-index: 9999;
    color: #fff;
}

.jv_ma_sharebox p {
    font-size: 14px;
    margin: 0;
}

.jv_ma_sharebox_icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

.jv_ma_sharebox_close {
    display: inline-block;
}

.jv_ma_sharebox_close:hover {
    border-bottom: 1px solid #fff;
}

.jv_ma_sharebox_icon_x,
.jv_ma_sharebox_icon_insta {
    width: 40px;
    margin: 10px;
}

#goToSlideButton {
    color: #000;
    border: 1px solid #000;
    padding: 5px 10px;
    background-color: #fff;
    font-size: 12px;
}

#goToSlideButton:hover {
    cursor: pointer;
}

.horizontal #goToSlideButton {
    display: none;
}

@media (max-width: 900px) {
    .jv_ma_modal_inner_footer_in_left {
        display: none;
    }

    .jv_ma_modal_inner_footer_in_center {
        min-width: 55.5555%;
    }

    .jv_ma_modal_inner_footer_in_right {
        min-width: 44.4444%;
    }
}

/*----------- Slider ------------------*/
.swiper-container {
    height: 100%;
    overflow: hidden;
}

.swiper-my-pagination {
    color: #fff;
    font-size: 1rem;
    bottom: 14px;
    width: unset;
}

.swiper-my-scrollbar {
    display: none;
    background-color: #fff;
    height: 2px;
    margin: 0 10px;
    flex-grow: 1;
    position: relative;
}

.horizontal .swiper-my-scrollbar {
    display: block;
}

.swiper-my-scrollbar .drag {
    background-color: #242423;
    border: 2px solid #fff;
    height: 16px;
    width: 16px !important;
    border-radius: 100%;
    margin-top: -7px;
}

.swiper-slide {
    text-align: center;
}

.swiper-horizontal .swiper-slide-active img {
    object-position: left;
}

.swiper-horizontal .swiper-slide-next img {
    object-position: right;
}

@media (max-aspect-ratio: 1) {

    .swiper-horizontal .swiper-slide-active img,
    .swiper-horizontal .swiper-slide-next img {
        object-position: unset;
    }
}

/* 前へ次への矢印カスタマイズ */
.swiper-button-prev,
.swiper-button-next {
    height: 50px;
    width: 50px;
    opacity: 0.5;
}

/* 前へ次への矢印カスタマイズ */
.swiper-button-prev::after,
.swiper-button-next::after {
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    height: 50px;
    margin: auto;
    width: 50px;
}

/*
  注意: 以下で使用している calc の計算式
  画面中央 - 縦の長さ * 画像の縦横比 - アイコンの幅と微調整
  50vw - 100vh * (742/ 1052) - 30px
*/
/* 前への矢印 */
.swiper-button-prev {
    left: calc(50vw - 100vh * (742/ 1052) - 48px);
    right: unset;
}

/* 次への矢印 */
.swiper-button-next {
    right: calc(50vw - 100vh * (742/ 1052) - 48px);
    left: unset;
}

/* ページネーション */
.swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: -25px;
}

/* 前への矢印カスタマイズ */
.swiper-button-prev::after {
    background-image: url(../img/ex-arrow-002.png);
}

/* 次への矢印カスタマイズ */
.swiper-button-next::after {
    background-image: url(../img/ex-arrow-001.png);
}

/* 画像サイズ調整 */
.swiper-slide img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

@media (max-width: 900px) {

    .swiper-button-prev,
    .swiper-button-next {
        display: none;
    }
}

/*----------- Close ------------------*/
.jv_ma_toggle span {
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #000;
    /* 線の色 */
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s, background-color 0.3s;
}

/* 1本目の線 */
.jv_ma_toggle span:first-child {
    transform: rotate(45deg);
}

/* 2本目の線 */
.jv_ma_toggle span:last-child {
    transform: rotate(-45deg);
}

/*==================================================
main
===================================*/

.jv_ma_top_content {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.jv_ma_top_content #jv_ma_video_bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 90px 0 0;
}

.jv_ma_main_content {
    margin: 80px auto;
}

.jv_ma_content1 {
    position: relative;
    z-index: 1;
    margin-bottom: calc(100px + 5vw);
}

.jv_ma_top_logo {
    width: 80%;
    max-width: 550px;
    margin: auto;
}

.jv_ma_top_text {
    text-align: center;
    margin: 80px auto;
    line-height: 2.5;
    font-size: clamp(15px, 1.4vw, 24px)
}

.jv_ma_top_manga_btn {
    max-width: 650px;
    margin: 0 auto 200px;
}

.jv_ma_content1_under {
    position: absolute;
    width: 100%;
    top: -45px;
    left: 50%;
    transform: translate(-50%, -50%);
    max-height: 300px;
    z-index: -1;
}

.jv_ma_content1_under2 {
    mix-blend-mode: hard-light;
    position: absolute;
    width: 100%;
    top: 0px;
    left: 50%;
    transform: translate(-50%, -45%);
    max-height: 400px;
}

.jv_ma_content1_under img,
.jv_ma_content1_under2 img {
    width: 100%;
}

.jv_ma_content1_underline {
    position: relative;
}

@media (max-width: 900px) {
    .jv_ma_top_content .jv_ma_video_bg {
        background: url(../../assets/comic/ex-comicsp-000.jpg) center/cover no-repeat;
    }

    .jv_ma_content1_under {
        width: 124%;
        top: -15px;
        left: 50%;
    }

    .jv_ma_content1_under2 {
        width: 120%;
        top: 0px;
        left: 50%;
    }

    .jv_ma_main_content {
        margin: 80px auto -120px;
    }

    .jv_ma_top_text {
        font-size: 19px;
    }

    .jv_ma_top_content #jv_ma_video_bg {
        margin: 80px 0 0;
    }

    .jv_ma_top_content {
        height: 100%;
    }
}

@media (max-width: 650px) {
    .jv_ma_content1_under {
        top: -71px;
    }

    .jv_ma_content1_under2 {
        top: -45px;
    }

    .jv_ma_main_content {
        margin: 80px auto -165px;
    }
}

@media (max-width: 450px) {
    .jv_ma_content1_under2 {
        top: -58px;
    }

    .jv_ma_content1_under2 {
        width: 200%;
    }

    .jv_ma_main_content {
        margin: 80px auto -175px;
    }

    .jv_ma_top_text {
        font-size: clamp(15px, 1.4vw, 19px)
    }

    .jv_ma_top_manga_btn {
        max-width: 390px;
    }
}

@media (max-width: 400px) {
    .jv_ma_top_manga_btn {
        max-width: 360px;
    }
}

@media (max-width: 380px) {
    .jv_ma_top_manga_btn {
        max-width: 340px;
    }
}

/*------------content2 characters -----------------*/
.jv_ma_characters {
    z-index: 20;
    position: relative;
}

.jv_ma_tit {
    font-family: 'Quantico', sans-serif;
    font-size: clamp(28px, 6vw, 80px);
    line-height: 1.4;
    letter-spacing: 0;
    text-align: center;
    font-weight: bold;
    width: 80%;
    margin: 50px auto 0;
}

@media (min-width: 1000px) {
    .jv_ma_tit {
        max-width: 700px;
    }
}

.jv_ma_characters_tit {
    margin: 0 auto 50px;
    padding-top: 100px;
    position: relative;
    z-index: 30;
}

/* start: 水平スクロールのスタイル */
.horizontal-container {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: scroll;
    overflow: visible;
    -ms-overflow-style: none;
    /* IE, Edge 対応 */
    scrollbar-width: none;
    /* Firefox 対応 */
    position: relative;
}

.horizontal-container::-webkit-scrollbar {
    /* Chrome, Safari 対応 */
    display: none;
}

.horizontal-slider {
    flex-shrink: 0;
    display: flex;
    position: relative;
}

.horizontal-slider figure img {
    width: 100%;
}

/* end: 水平スクロールのスタイル */
.charactor {
    width: calc(50% - 20px);
    height: 50%;
    display: flex;
    flex-direction: column;
    /* 間隔調整 */
    padding-left: 48px;
}

.charactor-image {
    max-height: 80%;
    clip-path: polygon(3rem 0px,
            100% 0px,
            100% calc(100% - 3rem),
            calc(100% - 3rem) 100%,
            0px 100%,
            0px 3rem);
}

.charactor-footer {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.charactor-title {
    font-size: 24px;
    font-weight: bold;
    line-height: 32px;
    padding: 32px 0 16px 0;
    color: white;
}

.charactor-description {
    font-size: clamp(15px, 1.4vw, 24px);
    color: white;
}

.charactor_box {
    position: relative;
    z-index: 20;
}

.charactor-footer_flex {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.charactor-footer_flex_inner {
    width: 45%;
}

@media (max-width: 1250px) {
    .charactor {
        width: calc(50% - 10px);
    }
}

@media (max-width: 900px) {
    .jv_ma_characters_tit {
        padding: 75px 0 0;
        margin: 0 auto 15px;
    }

    .charactor {
        width: calc(50% + 180px);
    }

    .charactor-footer_flex {
        display: block;
    }

    .charactor-footer_flex_inner {
        width: 100%;
    }

    .charactor-description {
        font-size: 19px;
        width: 70%;
    }
}

@media (max-width: 820px) {
    .jv_ma_characters_tit {
        padding: 98px 0 0;
        margin: 0 auto 160px;
    }
}

@media (max-width: 770px) {
    .jv_ma_characters_tit {
        margin: 0 auto 100px;
    }
}

@media (max-width: 450px) {
    .charactor {
        width: calc(50% + 155px);
    }

    .charactor-description {
        width: 90%;
        font-size: clamp(15px, 1.4vw, 24px);
    }
}

@media (max-width: 375px) {
    .jv_ma_characters_tit {
        padding: 100px 0 0;
        margin: 0 auto 25px;
    }
}

/*------------content2 characters arrow-----------------*/
.charactor-image-bg-j {
    position: absolute;
    z-index: -10;
    top: 176px;
    left: -300px;
    width: 90%;
}

.charactor-image-bg-e {
    position: absolute;
    top: 4px;
    left: -129px;
    width: 100%;
    z-index: -10;
    visibility: hidden;
}

.charactor-image-bg-r {
    position: absolute;
    top: 78px;
    left: 441px;
    width: 20%;
    z-index: -10;
}

.charactor-image-bg-a {
    position: absolute;
    top: 238px;
    left: 184px;
    width: 47%;
    z-index: -10;
}

.charactor-image-bg-v {
    position: absolute;
    top: 82px;
    left: 519px;
    z-index: -10;
    width: 55%;
}

.charactor-image-bg-d {
    position: absolute;
    top: 96px;
    left: 130px;
    z-index: -10;
    width: 74%;
}

@media (min-width: 1400px) {
    .charactor-image-bg-j {
        top: 124px;
    }

    .charactor-image-bg-r {
        top: 78px;
        left: 704px;
        width: 23%;
    }

    .charactor-image-bg-a {
        top: 211px;
        left: 175px;
        width: 52%;
    }

    .charactor-image-bg-v {
        top: -17px;
        left: 518px;
        width: 62%;
    }

    .charactor-image-bg-d {
        top: -8px;
        left: 356px;
    }
}

@media (max-width: 1100px) {
    .charactor-image-bg-a {
        top: 205px;
        left: 101px;
    }

    .charactor-image-bg-v {
        top: -13px;
        left: 739px;
        width: 56%;
    }

    .charactor-image-bg-d {
        top: -8px;
        left: 356px;
    }
}

@media (max-width: 900px) {
    .charactor-image-bg-j {
        top: -46px;
        left: -145px;
        width: 150%;
    }

    .charactor-image-bg-e {
        top: 36px;
        left: -300px;
        width: 200%;
    }

    .charactor-image-bg-r {
        top: -96px;
        left: 289px;
        width: 80%;
    }

    .charactor-image-bg-a {
        top: -58px;
        left: -367px;
        width: 140%;
    }

    .charactor-image-bg-v {
        top: -190px;
        left: -126px;
        width: 120%;
    }

    .charactor-image-bg-d {
        top: -72px;
        left: -382px;
        width: 180%;
    }
}

@media (max-width: 820px) {
    .charactor-image-bg-j {
        top: 137px;
    }

    .charactor-image-bg-e {
        top: 113px;
        left: -515px;
        width: 250%;
    }

    .charactor-image-bg-r {
        top: -96px;
        left: 265px;
        width: 80%;
    }

    .charactor-image-bg-a {
        top: 146px;
        left: -718px;
        width: 180%;
    }

    .charactor-image-bg-v {
        left: -330px;
    }

    .charactor-image-bg-d {
        top: 18px;
        left: -456px;
        width: 200%;
    }
}

@media (max-width: 770px) {
    .charactor-image-bg-j {
        top: 86px;
    }

    .charactor-image-bg-r {
        left: 177px;
    }

    .charactor-image-bg-d {
        top: 18px;
        left: -456px;
        width: 200%;
    }
}

@media (max-width: 450px) {
    .charactor-image-bg-j {
        top: 107px;
        left: -111px;
        width: 200%;
    }

    .charactor-image-bg-e {
        top: -38px;
        left: -649px;
        width: 330%;
    }

    .charactor-image-bg-r {
        top: -88px;
        left: 34px;
        width: 60%;
    }

    .charactor-image-bg-a {
        top: 61px;
        left: -527px;
        width: 240%;
    }

    .charactor-image-bg-v {
        top: -35px;
        left: -215px;
        width: 220%;
    }

    .charactor-image-bg-d {
        top: 78px;
        left: -382px;
        width: 250%;
    }
}

@media (max-width: 375px) {
    .charactor-image-bg-j {
        top: 51px;

    }

    .charactor-image-bg-e {
        top: -79px;
    }

    .charactor-image-bg-r {
        left: 22px;
    }

    .charactor-image-bg-d {
        top: -13px;
    }
}

/*------------content3 DownLoad -----------------*/
.jv_ma_content3 {
    position: relative;
    z-index: 999;
    padding: 170px 0;
    margin: 50px auto -240px;
    clip-path: polygon(0 0, 100% 21%, 100% 100%, 0 85%);
}

.jv_ma_download {
    display: flex;
    justify-content: center;
    margin: 80px auto 0;
    max-width: 1300px;
}

.jv_ma_download_tit {
    font-size: clamp(15px, 2.2vw, 24px);
    font-weight: 500;
}

.jv_ma_download .jv_ma_dl_box {
    margin: 2%;
    min-width: 220px;
}

.jv_ma_dl_img {
    height: 370px;
}

.jv_ma_dl_box figure img {
    object-fit: contain;
}

.jv_ma_download_table td {
    padding: 25px 35px 0 0;
    position: relative;
}

.jv_ma_download_table td a:hover,
.jv_ma_download_spflex span q:hover {
    text-decoration: underline;
}

.jv_ma_download_table td:last-child {
    font-weight: bold;
}

.jv_ma_download_spflex p {
    position: relative;
    margin: 0 !important;
}

.jv_ma_download_spflex span {
    font-weight: bold;
    padding-left: 10px;
}

.jv_ma_download_spflex span::before {
    background: url(../img/ex-arrowdown-001.png) center/cover no-repeat;
    content: "";
    height: 15px;
    width: 15px;
    margin: auto;
    position: absolute;
    left: -10px;
    bottom: 5px;
}

.jv_ma_download_arrrow::before {
    background: url(../img/ex-arrowdown-001.png) center/cover no-repeat;
    content: "";
    height: 15px;
    width: 15px;
    margin: auto;
    position: absolute;
    left: -18px;
    bottom: 5px;
}

.jv_ma_small {
    margin: 100px auto 0;
    font-size: 14px;
    width: 80%;
}

/* ラッパー（外側の要素） */
.jv_ma_content3_video_wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    z-index: -1;
}

/* video 要素 */
.jv_ma_content3_video_wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1200px) {
    .jv_ma_download .jv_ma_dl_box {
        margin: 20px;
    }
}

@media (max-width: 990px) {
    .jv_ma_content3 {
        margin: 50px auto -180px;
    }
}

@media (max-width: 900px) {
    .jv_ma_small {
        font-size: 14px;
        width: 70%;
        text-align: left;
    }

    .jv_ma_download {
        display: block;
        width: 85%;
    }

    .jv_ma_download .jv_ma_dl_box {
        text-align: center;
        min-width: auto;
        margin: 0 auto;
    }

    .jv_ma_download_table {
        margin: 0 auto 100px;
    }

    .jv_ma_download_table td {
        padding: 25px 20px 0 20px;
    }

    .jv_ma_download_arrrow::before {
        left: 2px;
    }

    .jv_ma_dl_sp,
    .jv_ma_dl_tl,
    .jv_ma_dl_pc {
        width: 100%;
    }

    .jv_ma_dl_img {
        height: auto;
    }

    .jv_ma_content3 {
        margin: 50px auto -180px;
        clip-path: polygon(0 0, 100% 10%, 100% 100%, 0 90%);
        padding: 240px 0;
    }

    .jv_ma_content3_video_wrapper video {
        width: 120%;
    }
}

@media (max-width: 850px) {
    .jv_ma_content3 {
        padding: 250px 0;
        margin: 0 auto -250px;
    }
}

@media (max-width: 450px) {
    .jv_ma_content3 {
        padding: 150px 0;
        margin: 0 auto -170px;
        clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 94%);
    }

    .jv_ma_small {
        font-size: 11px;
        width: 90%;
    }

    .jv_ma_content3_video_wrapper video {
        width: 190%;
    }
}

@media (max-width: 375px) {
    .jv_ma_content3_video_wrapper video {
        width: 220%;
    }

    .jv_ma_content3_video_wrapper {
        left: 5%;
    }
}

/*------------content4 Acky Bright -----------------*/
.jv_ma_content4 {
    position: relative;
    background: url(../img/bg-manga-005-content4.png) center/cover no-repeat;
    z-index: 1;
    margin: 0 0 0 auto;
    padding: 20% 0;
    min-height: 1200px;
}

.jv_ma_content4_tit {
    margin: 0 auto 50px;
}

.jv_ma_content4_inner {
    width: 95%;
    margin: 0 0 0 auto;
    padding: 20px;
}

.jv_ma_acky {
    display: flex;
    justify-content: center;
    max-width: 1335px;
    margin: 0 auto;
}

.jv_ma_acky_left {
    width: 62%;
    padding: 20px;
    max-width: 700px;
}

.jv_ma_acky_right {
    width: 36%;
    padding: 20px 0 20px 3%;
}

.jv_ma_acky_right_tit {
    font-family: 'Quantico', sans-serif;
    font-size: clamp(30px, 3.5vw, 50px);
    font-weight: bold;
    margin: 0 0 15px;
}

.jv_ma_acky_right_subtit {
    font-size: clamp(14px, 1.4vw, 22px);
    margin: 0 0 50px !important;
}

.jv_ma_acky_right_text {
    font-size: clamp(15px, 1.4vw, 19px);
    word-break: normal;
}

.jv_ma_acky_btn {
    margin: 150px auto 0;
    text-align: center;
    max-width: 650px;
    width: 50%;
}

.jv_ma_content4_bg {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translate(-50%, 20%);
    width: 100%;
    z-index: -1;
}

.jv_ma_content4_bg img {
    width: 100%;
}

@media (max-width: 1350px) {
    .jv_ma_acky_right_subtit {
        margin: 0 0 25px !important;
    }

    .jv_ma_acky_right_tit {
        margin: 0;
    }

    .jv_ma_acky_left {
        width: 55%;
    }

    .jv_ma_content4_inner {
        padding: 0;
        width: 100%;
    }
}

@media (max-width: 900px) {
    .jv_ma_manga_icon {
        max-width: 160px;
        bottom: 10px;
        right: 15px;
    }

    .jv_ma_acky {
        display: block;
    }

    .jv_ma_acky_left {
        margin: 0 auto;
    }

    .jv_ma_acky_right {
        width: 70%;
        margin: 0 auto;
    }

    .jv_ma_acky_right_tit,
    .jv_ma_acky_right_subtit {
        text-align: center;
    }

    .jv_ma_acky_btn {
        margin: 50px auto;
    }

    .jv_ma_acky_left,
    .jv_ma_acky_right {
        width: 90%;
    }

    .jv_ma_content4_tit {
        margin: 0 auto 10px;
    }

    .jv_ma_content4 {
        min-height: auto;
        background: url(../img/bg-manga-006-content4.png) center/cover no-repeat;
        height: calc(500px + 125vw);
    }

    .jv_ma_acky_btn {
        width: 70%;
    }

    .jv_ma_tit {
        font-size: clamp(28px, 9vw, 100px);
    }

    .jv_ma_content4_inner {
        position: absolute;
        top: 60%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .jv_ma_manga_icon.absolute {
        margin-bottom: 40px;
    }

    .jv_ma_acky_right_text {
        font-size: 19px;
    }
}

@media (max-width: 450px) {
    .jv_ma_content4 {
        height: calc(500px + 180vw);
        background: url(../img/bg-manga-007-content4.png) center/cover no-repeat;
    }

    .jv_ma_content4_inner {
        top: 59%;
    }

    .jv_ma_tit {
        font-size: 50px;
        width: 100%;
    }

    .jv_ma_acky_btn {
        width: 90%;
    }

    .jv_ma_acky_right_text {
        font-size: clamp(15px, 1.4vw, 19px);
    }
}

@media (max-width: 390px) {
    .jv_ma_content4_inner {
        top: 58%;
    }
}

/*==================================================
切り替えスイッチ
===================================*/
.jv_ma_sp_on,
.jv_ma_ex_on,
.jv_ma_md_on,
.jv_ma_sm_on {
    display: none;
}

@media (max-width: 900px) {
    .jv_ma_sp_on {
        display: block;
    }

    .jv_ma_pc_on {
        display: none;
    }

    .jv_ma_download_spflex {
        display: flex;
        justify-content: space-between;
        margin: 20px auto 100px;
        width: 40%;
    }
}

@media (max-width: 650px) {
    .jv_ma_md_on {
        display: block;
    }

    .jv_ma_md_off {
        display: none;
    }
}

@media (max-width: 450px) {
    .jv_ma_ex_on {
        display: block;
    }

    .jv_ma_ex_off {
        display: none;
    }

    .jv_ma_download_spflex {
        width: 70%;
    }
}

@media (max-width: 410px) {
    .jv_ma_sm_on {
        display: block;
    }

    .jv_ma_sm_off {
        display: none;
    }
}

/*==================================================
英語用
===================================*/
.path-en .jv_lp_en_on {
    display: none;
}

.path-en .charactor {
    width: calc(50% - 100px);
}

.path-en .jv_ma_characters_tit {
    margin: 0 auto 20px;
}

.path-en .charactor-title {
    padding: 15px 0 16px 0;
}

.path-en .charactor-image-bg-j {
    top: 108px;
}

.path-en .charactor-image-bg-a {
    top: 179px;
    left: 111px;
}

.path-en .charactor-image-bg-v {
    top: 36px;
    left: 470px;
}

.path-en .charactor-image-bg-d {
    top: 32px;
    left: 130px;
}

@media (min-width: 1400px) {
    .path-en .jv_ma_characters_tit {
        margin: 0 auto 50px;
    }

    .path-en .charactor-image-bg-v {
        top: -70px;
        left: 518px;
        width: 62%;
    }
}

@media (max-width: 900px) {
    .path-en .charactor {
        width: calc(50% + 180px);
    }

    .path-en .jv_lp_en_on {
        display: block;
    }

    .path-en .jv_ma_characters_tit {
        margin: 0 auto 50px;
    }

    .path-en .charactor-image-bg-j {
        top: 40px;
    }

    .path-en .charactor-image-bg-a {
        top: 146px;
        left: -710px;
    }

    .path-en .charactor-image-bg-v {
        top: -177px;
        left: -160px;
    }

    .path-en .charactor-image-bg-d {
        top: 19px;
        left: -380px;
    }
}