/*PC共通 -----------------*/
html {
    font-size: 62.5%;
    overflow-y: scroll !important;
}

body {
    font-size: 1.6rem;
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    background-color: #fff;
    color: #333;
    line-height: 2.2rem;
    list-style: none;
    background-image: url(../images/bg1.png);
    background-size: auto;
    background-repeat: repeat;

}

.bgWap {
    background: url(../images/bg2.png);
    background-size: 500px 944px;
    /* image size */
    animation: bg 18s infinite linear;
    /*background-size: 30%;*/
    background-repeat: repeat;
    position: relative;
    height: 100%;

}

@keyframes bg {
    0% {
        background-position-y: 0;
    }

    100% {
        background-position-y: 944px;
    }
}

section {
    padding: 8% 0;
}


.inner {
    max-width: 1600px;
    width: 90%;
    margin: 0 auto;
}

h2 {
    width: 100%;
    margin-bottom: 3%;
    text-align: right;


}

h2 img {
    max-width: 540px;
    width: 90%;

}

.left {
    text-align: left;
}

a {
    text-decoration: none;
    color: #333;
}

li {
    list-style: none !important;
}

.gothic {
    /*font-family: YakuHanJPs, "Hiragino Kaku Gothic ProN", メイリオ, sans-serif;*/
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    font-weight: 600;
}

.tbOnly {
    display: none;
}

.spOnly {
    display: none;
}

/* スクロール表示 ---------- */
.fade-in {
    opacity: 0;
    transition-duration: 1500ms;
    transition-property: opacity, transform;
}

.scroll-in {
    opacity: 1;
}





/*ボタン共通*/
.btn a {
    position: relative;
    display: block;
    padding: 5% 5%;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    transition: .1s;
    border-bottom: 1px solid #333;
}

.btn a::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    width: 0;
    height: 0;
    border: 1px solid transparent;
    transition: width .1s ease-out, height .1s ease-out .1s;
}

.btn a::after {
    content: '';
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 0;
    height: 0;
    border: 1px solid transparent;
    transition: border-color 0s ease-out .1s, width .1s ease-out .1s, height .2s ease-out .3s;
}

.btn a:hover {
    color: #ff79ae;
}

.btn a:hover::before {
    width: 100%;
    height: 100%;
    border-top-color: #ff79ae;
    border-right-color: #ff79ae;

}

.btn a:hover::after {
    width: 100%;
    height: 100%;
    border-bottom-color: #ff79ae;
    border-left-color: #ff79ae;

}

.btn .current {
    border: 1px solid #ff79ae;
    color: #ff79ae;
}

/*修正箇所　シャッター・モーダル↓*/
/*シャッター*/


.shutter {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background-color: #fff;
    z-index: 120;
    -webkit-animation: byeShutter 3s forwards;
    animation: byeShutter 3s forwards;
}

.shutter.is-active {
    opacity: 0;
    visibility: hidden;
}

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


.openLogo02 {
    position: absolute;
    /*max-width: 588px;
    width: 90%;*/
    height: 40vh;
    width: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    /*-webkit-animation: logo 0.8s forwards;
    animation: logo 0.8s forwards;*/
    animation-name: fadein;
    animation-duration: 2.5s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
    /*z-index: 130;*/

}

.openBlock02 {
    position: absolute;
    /*max-width: 588px;
    width: 90%;*/
    height: 50vh;
    width: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    /*-webkit-animation: logo 0.8s forwards;
    animation: logo 0.8s forwards;*/
    animation-name: block;
    animation-duration: 1.8s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
    z-index: 150;
    opacity: 0;
}


@keyframes byeShutter {
    70% {
        opacity: 1;
    }

    99% {
        z-index: 120;
    }

    100% {
        display: none;
        opacity: 0;
        z-index: 0;
    }
}

@keyframes block {
    0% {
        opacity: 1;
        display: block;
        transform: translateY(30%);
    }

    90% {
        opacity: 80%;
        display: block;
        transform: translateY(-100%);
    }

    100% {
        opacity: 0;
        display: none;
        transform: translateY(-100%);
    }
}

@keyframes fadein {
    0% {
        opacity: 0;
        display: none;
        /*transform: translateX(-20%);*/
    }

    50% {
        opacity: 1;
        display: none;
        /*transform: translateX(0%);*/
    }

    100% {
        opacity: 1;
        display: none;
        /*transform: translateX(0%);*/
    }
}





.smooth.is-animated {
    clip-path: inset(0);
}


/*0905*/
/*** 上にかぶせる背景 ***/
.mask {
    position: fixed;
    /*固定表示*/
    top: 0;
    left: 0;
    width: 100vw;
    /*画面幅*/
    height: 100vh;
    /*画面の高さ*/
    background-color: #fff;
    /*背景色*/
    z-index: 120;
    /*最前面に*/
    animation: fadeOut 3s forwards;
    /*フェードアウト*/
    animation-delay: 1.8s;
    /*ロゴ画像のアニメーション後に*/
}

/*フェードアウトアニメーション*/
@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        visibility: hidden;
    }
}

/*** ロゴ画像 ***/
.mask img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    /*中央に配置*/
}

.mask .openLogo {
    height: 40vh;
    width: auto;
    animation: logoIn 2.5s forwards;
    /*任意のアニメーション*/
    /*好みで遅延*/
    z-index: 500;
    opacity: 0;
}

.mask .openBlock {
    height: 50vh;
    width: auto;
    animation: blockIn 2.5s forwards;
    /*任意のアニメーション*/
    z-index: 550;
}

/*ロゴ用の鼓動するアニメーション*/
@keyframes logoIn {
    0% {
        opacity: 0;
        /*transform: translateX(-20%);*/
    }

    50% {
        opacity: 1;
        /*transform: translateX(0%);*/
    }

    100% {
        opacity: 1;
        /*transform: translateX(0%);*/
    }
}

@keyframes blockIn {
    0% {
        opacity: 1;

        transform: translateY(30%);
    }

    90% {
        opacity: 1;

        transform: translateY(-100%);
    }

    100% {
        opacity: 0;

        transform: translateY(-100%);
    }
}

/*PCモーダル -----------------*/

#layer_board_area {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0 3vw;
    overflow-y: auto;
    box-sizing: border-box;
    -ms-overflow-style: none;
    scrollbar-width: none;
    /*スクロールバーを非表示*/
    z-index: 30;
}

#layer_board_area::-webkit-scrollbar {
    display: none;
    /*スクロールバーを非表示*/
}

.layer_board_bg {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    cursor: pointer;
    background: #000;
    opacity: 0.5;
    z-index: 35;
}

/* --modalWindow ポップアップ部分-- */
.layer_board {
    display: none;
    position: relative;
    max-width: 900px;
    width: 100%;
    text-align: center;
    z-index: 40;
}

.layer_board iframe {
    width: 100%;
    height: 50vh;
}

.layer_board.shortLayer {
    margin: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}



/*0401限定*/
.layer_board .saiyou {
    width: 100%;
    margin: auto;

}

.layer_board .saiyou a {
    display: block;
}

.layer_board .saiyou img {
    width: 100%;
}

/* --close ボタン-- */
.layer_board .mdl_btn_close.circle_btn {
    position: absolute;
    top: -20px;
    right: -60px;
    transition: .15s;
}

.layer_board .mdl_btn_close.circle_btn img {
    max-width: 300px;
    width: 100%;
    height: 100%;
}

.layer_board .mdl_btn_close.circle_btn:hover {
    opacity: 0.7;
}

/*修正箇所　シャッター・モーダル↑*/



/*PCコンテンツ -----------------*/
.right {
    width: calc(100% - 300px) !important;
    margin-left: auto;
    margin-right: 0;

}

/*PCキービジュアル*/

.key {
    position: relative;
    line-height: 0;
}

.keyBox {
    position: relative;
    /*background: #fff;*/
    display: block;
    /*background: rgb(34, 193, 195);
    background: linear-gradient(0deg, rgba(34, 193, 195, 1) 0%, rgba(253, 187, 45, 1) 100%);*/
    z-index: 9;
}

.keyImg_Chnage_button {
    position: absolute;
    top: 1%;
    right: 0.5%;
    z-index: 10;
    cursor: pointer;
    max-width: 11%;
    width: 100%;
    height: auto;
    transition-duration: 0.7s;
}

.keyImg_Chnage_button img {

    width: 100%;
    height: auto;
}

.keyImg_Chnage_button:hover {
    transform: scale(0.8, 0.8);
}

.keyImg img {
    width: 100%;
    position: absolute;
    opacity: 0;
    top: -7%;
}

.keyBottom {
    display: block;
}

.key .spOnly {
    display: none;
}

.keyBottom {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 7%;
    z-index: 10;
    background-image: url(../images/bg3.png);
    background-size: 0.3%;

}

.keyBottom p {
    width: 80%;
    text-align: center;
    margin: 1% auto;
}

.keyBottom p img {
    max-width: 1200px;
    width: 100%;
}

.keyBnr {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}


.keyBnr li {
    width: 22%;
    list-style: none;
    margin: 0 2%;

}

.keyBnr li p {
    margin-top: 5%;
    font-weight: 600;
    font-size: 110%;
    line-height: 120%;

}


.keyBnr li img {
    max-width: 300px;
    width: 100%;
    border: 1px solid #fff;
    transition-duration: 0.5s;
}

.keyBnr li:hover img {
    transform: scale(1.2, 1.2);
}



.key_white img {
    position: absolute;
    top: -13%;
    z-index: 0;
    width: 100%;
    opacity: 0.9;

}


/*キービジュアルグラデーション -----------------*/

.RandomColor1 {
    background: rgb(165, 160, 255);
    background: linear-gradient(180deg, rgba(165, 160, 255, 1) 0%, rgba(235, 187, 254, 1) 62%, rgba(235, 187, 254, 0.3) 100%);
}



.RandomColor2 {
    background: rgb(255, 96, 207);
    background: linear-gradient(180deg, rgba(255, 96, 207, 0.3) 0%, rgba(255, 96, 207, 1) 50%, rgba(255, 96, 207, 0.3) 100%);
}

.RandomColor3 {
    background: rgb(78, 211, 251);
    background: linear-gradient(180deg, rgba(78, 211, 251, 0.3) 0%, rgba(78, 211, 251, 1) 50%, rgba(78, 211, 251, 0.3) 100%);

}

.RandomColor4 {
    background: rgb(182, 255, 121);
    background: linear-gradient(180deg, rgba(182, 255, 121, 0.3) 0%, rgba(182, 255, 121, 1) 50%, rgba(182, 255, 121, 0.3) 100%);

}

.RandomColor5 {
    /*background: rgb(255, 255, 255);
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 1) 100%);*/

    background: rgb(152, 247, 255);
    background: linear-gradient(180deg, rgba(152, 247, 255, 1) 0%, rgba(163, 255, 185, 1) 50%, rgba(204, 255, 153, 0.3) 100%);
}


.RandomColor6 {
    background: rgb(255, 255, 255);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0.7) 100%);

    /*background: rgb(152, 247, 255);
    background: linear-gradient(180deg, rgba(152, 247, 255, 1) 0%, rgba(163, 255, 185, 1) 50%, rgba(204, 255, 153, 0.3) 100%);*/
}


/*PCトップへ -----------------*/
.to-top {
    width: 10rem;
    height: auto;
    position: fixed;
    bottom: 1%;
    right: 1%;
    z-index: 20;
}

.to-top a {
    display: block;
    width: auto;
}


.to-top img {
    width: 100%;
    height: auto;
    transition-duration: 0.7s;
}

.to-top img:hover {
    transform: scale(0.8, 0.8);

}

/*ニュース*/



.news {
    background: rgba(255, 255, 255, 0.5);
}

/*1121*/
.newsWrap {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
}

.news article {
    margin-right: 1.5%;
    margin-left: 1.5%;
}


article {
    width: 30%;
}




article .datetime p {
    margin-bottom: 1%;
    font-size: 120%;
}

figure {
    margin-bottom: 4%;
}

figure img {
    width: 100%;
    margin-bottom: 1%;
    height: auto;
}

.thum_box {
    /*width: 100%;
    height: 200px;*/
    width: 100%;
    aspect-ratio: 13 / 7;
    overflow: hidden;
}

.thum_box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /*サムネイル表示位置調節*/
    object-position: 50% 50%;
    transition: 0.5s all;

    object-position: 100% 10%;
}

.news .thum_box img {
    object-position: 100% 10%;
    transition: 0.5s all;
}

.thum_box:hover img {
    transform: scale(1.1, 1.1);
}


.btnMore a {
    display: block;
    width: 15rem;
    margin-left: auto;
    margin-right: 0;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    margin-top: 2%;
}

.btnMore a::after {
    content: "";
    display: block;
    position: absolute;
    top: calc(50%);
    right: 5rem;
    width: 5rem;
    height: 0.5rem;
    border: none;
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
    transform: skew(45deg);
    transition: .3s;
}

.btnMore a:hover::after {
    right: 2rem;
    width: 8rem;
}


/*PCイントロダクション*/
/* PV ------------------------------- */
#Pv {
    position: relative;
    height: calc(115vh);
}

#Pv::before,
#Pv::after {
    content: "";
    display: block;
    width: 25vw;
    height: calc(115vh);
    position: absolute;
    z-index: 1;
}



.video_bg {
    position: relative;
    height: 100%;
    background: #000;
    overflow: hidden;
}

.video_bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .4);
    background-image: url(../images/bg3.png);
    background-size: 0.3%;
}

.video_bg video {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200%;
    height: 200%;
}

.videoWrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #fff;
}

.video_content {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
    text-align: center;
}

/*PCイントロダクション 内容*/
.intro {
    padding: 0;
    position: relative;
}

.intro .inner {
    padding: 8% 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.intro h2 {
    text-align: right;
}

.arasuji {
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
}



/*あらすじテキスト*/
.intro .inner {
    max-width: 100%;
    width: 100%;
}

.introInner {
    width: 90%;
    margin: 0 auto;
}

.arasujiBg {
    width: 100%;
    margin: 0 auto;
    display: block;
    background-color: rgba(255, 121, 174, 0.4);
    color: #fff;
    text-align: center;
    font-size: 110%;
    line-height: 140%;
}

.arasuji {
    width: 90%;
    margin: 0 auto;
    padding: 4% 0;
}

.arasuji p {
    margin-bottom: 1%;
}

.arasuji p span {
    font-size: 120%;
}

.arasuji .arasujiBr {
    margin-bottom: 3%;
}


.intro .bigger {
    font-size: 140%;
}

/*

.arasuji {
    width: 90%;
    margin: 0 auto;
    padding: 5% 0;
    text-align: center;
    color: #fff;
}

.arasuji .aori {
    font-size: 150%;
    font-weight: 700;
    margin-bottom: 3%;
}

.arasuji .naiyou {
    font-size: 100%;
    line-height: 220%;
    font-weight: 500;
    margin-bottom: 3%;
}

.arasuji .naiyou span {
    font-size: 120%;
}*/


/*PCキャラクター*/
.character {
    position: relative;
    z-index: 10;
    background: rgba(255, 255, 255, 0.5);
}

.character .tab-wrap {
    display: flex;
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4%;
    position: relative;
}

.character .tab-label {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
    /* width: 60px; */
    /* height: 60px; */
    font-size: 110%;
    text-decoration: none;
    /* color: #5b9213; */
    background-color: #fff;
    text-align: center;
    align-items: center;
    /* border-radius: 100px; */
    /* border: 3px solid #5b9213; */
    order: -1;
    margin: 0 0.1rem;
    width: 15%;
    margin-bottom: 4%;

}

.character .tab-label img {
    max-width: 200px;
    width: 90%;

}

.character .tab-content {
    width: 100%;
    display: none;
}




/* アクティブなタブ */

.character .tab-switch:checked+.tab-label {
    transition: 0.3s;
}

.character .tab-switch:checked+.tab-label+.tab-content {
    display: block;
}

/* ラジオボタン非表示 */
.character .tab-switch {
    display: none;
}



.character .tab-content h4 {
    font-size: 160%;
    color: #ff7ea5;
    margin-bottom: 2%;
}


.character .tab-content .mainImage {
    max-width: 800px;
    width: 90%;
    height: 100%;
    margin-bottom: 2%;
}

.character .tab-content .charathumbBox {
    display: flex;
    justify-content: space-between;
    width: 90%;
    margin-left: auto;
    margin-right: auto;

}

.character .tab-content .charathumbBox img {
    width: 30%;
    display: block;
}





/*areaにis-activeというクラスがついた時の形状*/
.tab-switch:checked+.tab-label+.tab-content {
    display: block;
    /*表示*/
    animation-name: displayAnime;
    /*ふわっと表示させるためのアニメーション*/
    animation-duration: 2s;
    animation-fill-mode: forwards;
}

@keyframes displayAnime {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/*キャラクタータブボタン */
.character .tab-label {
    position: relative;
    display: block;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    transition: .1s;
}

.character .tab-label::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    width: 0;
    height: 0;
    border: 1px solid transparent;
}

.character .tab-label::after {
    content: '';
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 0;
    height: 0;
    border: 1px solid transparent;
}

.character .tab-label:hover {
    color: #ff79ae;
}



.character .tab-label:hover::before {
    width: 100%;
    height: 100%;
    border-top-color: #ff79ae;
    border-right-color: #ff79ae;
    transition: width .1s ease-out, height .1s ease-out .1s;
}

.character .tab-label:hover::after {
    width: 100%;
    height: 100%;
    border-bottom-color: #ff79ae;
    border-left-color: #ff79ae;
    transition: border-color 0s ease-out .1s, width .1s ease-out .1s, height .2s ease-out .3s;
}

.character .tab-switch:checked+.tab-label {
    border: 1px solid #ff79ae;
    color: #ff79ae;
}

/*タブ背景*/
.charaTabbg {
    position: absolute;
    top: 0;
    z-index: 1;
    width: 100%;
}

.charaTabbg ul {

    display: flex;
    justify-content: center;
    background: #fff;
    border: 1px solid #fff;
}

.charaTabbg li {
    list-style: none;
    margin: 0 0.1rem;
    width: 18%;
}

.charaTabbg li img {
    opacity: 0;
    max-width: 200px;
    width: 90%;
}

.borderWhite {
    margin-top: 1%;
    width: 100%;
    display: block;
    height: 1.5rem;
    background-color: #fff;

}



/*cssのみslider */
.character article {
    width: 100%;
}

.slider {
    width: 80%;
    text-align: center;
    overflow: hidden;
    margin: 0 auto;
    position: relative;
}

.slides {
    display: flex;
    width: 100%;
    margin: 0 auto;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;

    /*
    scroll-snap-points-x: repeat(300px);
    scroll-snap-type: mandatory;
    */
}



.slides::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}



.slides::-webkit-scrollbar-track {
    background: transparent;
}





.slides .charaBox {
    scroll-snap-align: start;
    flex-shrink: 0;
    width: 100%;
    margin: 0 auto;
    transform-origin: center center;
    transform: scale(1);
    transition: transform 1s;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: start;
    position: relative;
}

/*修正箇所↓*/

.slides .charaBox .charaPic {
    max-width: 45%;
    width: 100%;
    height: auto;
    padding: 5% 0;
    position: relative;
}

.charaPic :nth-child(1) {
    width: 80%;
    opacity: 0;
    animation-duration: 1s;
}

.charaPic :nth-child(2) {
    width: 80%;
    opacity: 0;
    position: absolute;
    left: 10%;
    animation-duration: 1s;
}

.charaWide :nth-child(2) {
    left: 0%;
}

.slides .charaBox .charaPic img {
    width: 80%;
}

/*キャラ幅広め*/
/*絆アイ 画像*/
.slides .charaBox .charaWide img {
    width: 99%;
}

/*絆アイ 画像*/
.slides .charaBox .aiImg img {
    width: 99%;
}



/*修正箇所↑*/

.slides .charaBox .changeBtn {
    max-width: 15%;
    width: 100%;
    height: auto;
    position: absolute;
    bottom: 8%;
    left: 0;
    right: 14%;
    margin: 0 auto;
    cursor: pointer;
}

.slides .charaBox .changeBtn img {
    width: 80%;
}



.slides .charaBox .charaIntro {
    max-width: 50%;
    width: 100%;
    height: auto;
    margin-left: 0;
    margin-right: auto;
    position: absolute;
    top: 15%;
    right: 0%;
    left: auto;
    text-align: left;
}

.slides .charaBox .charaIntro img {
    width: 80%;
    margin-bottom: 2%;

}

.slides .charaBox .charaIntro p {
    text-align: left;
    font-size: 100%;
}

.slides>div:target {
    /*   transform: scale(0.8); */
}

/*.author-info {
    background: rgba(0, 0, 0, 0.75);
    color: white;
    padding: 0.75rem;
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: 0;
}

.author-info a {
    color: white;
}*/

.character .tab-content .img {
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.teamBox {
    display: flex;
    background: rgb(255, 255, 255);
    align-items: center;
    width: 45%;
    justify-content: space-between;
    position: absolute;
    z-index: 100;
    right: 5%;
    bottom: 35%;
    margin: auto 0px;
}

.teamBox p {
    width: 40%;
    text-align: center;
    line-height: 0;
}

.teamBox p img {
    width: 90%;
    margin-left: 10%;
}

.teamBox .team2 img {
    width: 80%;
}

.teamBox .team4 img {
    width: 60%;
}

.charaThumb {
    display: flex;
    justify-content: end;

    width: 60%;
    margin-right: 7%;
}

.charaViconic .charaThumb {
    margin-right: 0;
    margin-left: 7%;
}

.charaViconic .charaThumb .img0 {
    opacity: 0;
    pointer-events: none
}

.chara3dm8 .charaThumb .img0 {
    opacity: 0;
    pointer-events: none
}

.chara3dm8 .teamBox p {
    width: 25%;
    text-align: center;
    line-height: 0;
}

.chara3dm8 .teamBox p img {
    margin-left: 20%;
    width: 80%;
}


.slider .charaThumb img {
    width: 100%;
}


.slider .charaThumb a {
    display: inline-block;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #6a6a6a;
    clip-path: polygon(45% 0, 90% 0, 50% 100%, 5% 100%);
    line-height: 0 !important;
    margin-right: -16%;
}



.slider .charaThumb a {
    transition: .3s;
}

.slider .charaThumb .chara01:hover {
    background: #ff798f;
}



.slider .charaThumb .chara02:hover {
    background: #d45ec2;

}

.slider .charaThumb .chara03:hover {
    background: #f8c821;
}

.slider .charaThumb .chara04:hover {
    background: #55b2ef;
}

.slider .charaThumb .chara05:hover {

    background: #52f7cb;
}



/*BRT5 カラー*/

.slider .charaThumb .chara06:hover {
    background: #313eb6;
}

.slider .charaThumb .chara07:hover {
    background: #ff91c0;
}

.slider .charaThumb .chara08:hover {
    background: #b5e200;
}

.slider .charaThumb .chara09:hover {
    background: #f1201a;
}

.slider .charaThumb .chara10:hover {
    background: #9000af;
}

/*VICONIC カラー*/
.slider .charaThumb .chara11:hover {
    background: #7638e7;
}

.slider .charaThumb .chara12:hover {
    background: #a5be00;
}

/*3dm8 カラー*/
.slider .charaThumb .chara13:hover {
    background: #665991;
}

.slider .charaThumb .chara14:hover {
    background: #2dafb2;
}

.slider .charaThumb .chara15:hover {
    background: #993b46;
}

/*アナザー*/
.slider .charaThumb .chara17:hover {
    background: #bcacef;
}

.slider .charaThumb .chara18:hover {
    background: #447565;
}

.slider .charaThumb .chara19:hover {
    background: #70c5b6;
}

.slider .charaThumb .chara20:hover {
    background: #6d3bac;
}


.fadeIn {
    animation-name: fadeInAnime;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeInAnime {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}



/*修正箇所↓*/

.fadeOut {
    animation-name: fadeOutAnime;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    opacity: 1;
}

@keyframes fadeOutAnime {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

/*修正箇所↑*/


/*誕生日・年齢*/


.charaIntro .birthday dl {
    display: flex;
    font-weight: 600;
    margin-top: 2%;
}

.charaIntro .birthday dl:last-child {
    margin-bottom: 2%;
}

.charaIntro .birthday dt {
    position: relative;
    z-index: 1;
    text-align: center;
    display: inline-block;
    color: #fff;
    padding: 0 1%;
    margin-right: 3%;
    width: 80px;

}

.charaIntro .birthday dt::before {
    transform: skewX(-25deg);
    content: "";
    /*ボックスを作る*/
    position: absolute;
    /*ポジションで中央に配置*/
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
    /* 親要素の後ろに来るように-1 */
}




/*pathtlive カラー*/
.charaIntro .miracle dt::before {
    background: #ff798f;
}

.charaIntro .quan dt::before {
    background: #d45ec2;
}

.charaIntro .noelle dt::before {
    background: #f8c821;
}

.charaIntro .chris dt::before {
    background: #55b2ef;
}

.charaIntro .riz dt::before {
    background: #29e3b2;
}

/*BRT5 カラー*/

.charaIntro .niska dt::before {
    background: #313eb6;
}

.charaIntro .jessie dt::before {
    background: #ff91c0;
}

.charaIntro .ellie dt::before {
    background: #b5e200;
}

.charaIntro .sarah dt::before {
    background: #f1201a;
}

.charaIntro .halle dt::before {
    background: #9000af;
}




/*VICONIC カラー*/
.charaIntro .jua dt::before {
    background: #7638e7;
}

.charaIntro .thea dt::before {
    background: #a5be00;
}



/*3dm8 カラー*/
.charaIntro .zoe dt::before {
    background: #665991;
}

.charaIntro .sofia dt::before {
    background: #2dafb2;
}

.charaIntro .ximena dt::before {
    background: #993b46;
}


.charaBrt5 .teamBox p img {
    width: 75%;
}




.charaIntro .ai dt::before {
    background: #f47fd5;
}

/*PCストーリー*/
.storyWrap {
    background: rgba(255, 255, 255, 1);
}


#area-story .tab-content {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4%;
}



#area-story .bg {
    text-align: center;
    display: block;
    width: 100%;
    margin: 0 auto;
}

#area-story h4 {
    font-size: 160%;
    color: #ff79ae;
    margin-bottom: 2%;
}

#story .btn_area {
    display: -webkit-box;
    max-width: 600px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    counter-reset: number 0;
    margin: 0 auto;
    margin-bottom: 3%;
    row-gap: 1rem;
}

#story .tab_btn {
    display: flex;
    justify-content: center;
    font-size: 110%;
    text-decoration: none;
    order: -1;
    margin: 0 0.5%;
    cursor: pointer;
}


/*#story .tab_btn+.tab_btn {
    margin-left: 8px;
}*/

/*#story .tab_btn:hover {
    color: #fff;
    background-color: #ff7ea5;
    border: 3px solid #ff7ea5;
    transition: 0.3s;
}

#story .tab_btn.active {
    color: #fff;
    background-color: #5b9213;
    border: 3px solid #5b9213;
    transition: 0.3s;
}*/


#story .story_panel {
    display: none;
    width: 100%;
}

#story .story_panel.active {
    display: block;
}

#story .slick-slide {
    overflow: hidden;
}

#story .storythumbBox .slick-track {
    display: flex !important;
    width: 100% !important;
    transform: translate3d(0, 0, 0) !important;
    /*justify-content: space-between;*/
}

#story .storythumbBox .slick-slide {
    float: none;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    /*width: 30% !important;*/
    width: 100% !important;
    overflow: hidden;
    box-sizing: border-box;
    /*margin-bottom: 4%;*/
}

#story .storythumbBox .slick-slide:last-child {
    margin-bottom: 0;
}

#story .storythumbBox .slick-track:before,
.slick-track:after {
    display: table;
    content: none !important;
}

#story .storythumbBox .slick-list {
    width: 100% !important;
}


#story article .epi_number {
    text-align: center;
    color: #5b9213;
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 2rem;
}

#story article .synopsis {
    text-align: left;
    font-size: 1.8rem;
    transform: rotate(0.03deg);
    margin-bottom: 2rem;
}

#story article .txtWrap {
    counter-reset: number 0;
}

#story article .article-txt {
    text-align: left;
    font-size: 1.6rem;
    margin-bottom: 5rem;
    padding-bottom: 5rem;
    padding-left: 10rem;
    border-bottom: dotted 4px #5b9213;
    transform: rotate(0.03deg);
    position: relative;
}

/*#story article .article-txt::before {
	counter-increment: number 1;
	content: counter(number, decimal-leading-zero);
	position: absolute;
	top: 0;
	left: 3rem;
	font-size: 2.5rem;
	font-weight: bold;
	color: #5b9213;
}*/
#story article .num {
    position: absolute;
    top: 0;
    left: 3rem;
    /*font-size: 2.5rem;
    font-weight: bold;
    color: #5b9213;*/
}

#story article .article-txt h3 {
    font-size: 2.4rem;
    margin-bottom: 4rem;
}

#story .storyslider img {
    /*max-width: 1000px;*/
    /*width: 90%;*/
    width: 100%;
    height: 100%;
    /*margin-bottom: 4%;*/
    margin-left: auto;
    margin-right: auto;
}

/*#story .storythumbBox {
    display: flex;
    justify-content: space-between;
    width: 90%;
    margin-left: auto;
    margin-right: auto;

}*/

#story .storythumbBox img {
    width: 100%;
    display: block;
    transition: 0.5s;
}


#story .storythumbBox img:hover {
    opacity: 0.5;
}


/*1115追記分*/
.storyWrap article {
    width: auto !important;
}

.storyWrap .container {
    /*display: flex;
    justify-content: space-between;*/
    width: 90%;
    margin: 0 auto;
}

.storyWrap .storyslider {
    width: 100%;
}

.storyWrap .storythumbBox {
    width: 100%;
    display: flex !important;
    flex-flow: column;
    justify-content: space-between;
}

.storyText {
    font-weight: 500;
    font-size: 100%;
    text-align: left;
    margin-top: 1%;
    line-height: 150%;
}

/*ストーリーボタン */
.storyWrap .btn {
    position: relative;
    display: block;
    padding: 1.5%;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    transition: .1s;
    border-bottom: 1px solid #333;
    width: 7%;
}

.storyWrap .btn::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    width: 0;
    height: 0;
    border: 1px solid transparent;
}

.storyWrap .btn::after {
    content: '';
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 0;
    height: 0;
    border: 1px solid transparent;
}

.storyWrap .btn:hover {
    color: #ff79ae;
}

.storyWrap .btn:hover::before {
    width: 100%;
    height: 100%;
    border-top-color: #ff79ae;
    border-right-color: #ff79ae;
    transition: width .1s ease-out, height .1s ease-out .1s;
}

.storyWrap .btn:hover::after {
    width: 100%;
    height: 100%;
    border-bottom-color: #ff79ae;
    border-left-color: #ff79ae;
    transition: border-color 0s ease-out .1s, width .1s ease-out .1s, height .2s ease-out .3s;
}

.storyWrap .btn_area .active {
    border: 1px solid #ff79ae;
    color: #ff79ae;
}

/*次へ 前へ ボタン*/
.tabs_controls {
    display: flex;
    justify-content: center;
    font-size: 110%;
    font-weight: 600;
    width: 50%;
    margin: 0 auto;

}

.allowWrap {
    display: flex;
    width: 48%;


}

.prev {
    justify-content: end;
}

.next {
    justify-content: start;
}

.border {
    display: block;
    width: 0.2rem;
    transform: rotate(30deg);
    background-color: #333;
    margin: 0 3%;
}

.tabs_controls .current {
    color: #ff79ae;
}

.allowPrev {
    border-right: 1.4rem solid #ff79ae;
    border-top: 0.8rem solid transparent;
    border-bottom: 0.8rem solid transparent;
    margin-right: 3%;
    height: 0;
    width: 0;
    margin-top: 1%;
}

.allowNext {
    border-left: 1.4rem solid #333;
    border-top: 0.8rem solid transparent;
    border-bottom: 0.8rem solid transparent;
    height: 0;
    width: 0;
    margin-left: 3%;
    margin-top: 1%;
}

.borderPink {
    margin-top: 4%;
    width: 100%;
    display: block;
    height: 1rem;
    background-color: #ffbcd6;
}

/*0320追記*/
.storyWrap .slick-img {
    border: 1px solid #ffe9f2;
}

.storyWrap .thumbnail-img {
    border: 1px solid #ffe9f2;
}


/*次回予告動画 追加*/
.yokokuMv {
    width: 80%;
    margin: 0 auto;
    margin-top: 3rem;
}

.yokokuMv iframe {
    aspect-ratio: 16 / 9;
    width: 100%;
    height: auto;
}

.yokokuMv p {
    color: #fff;
    font-weight: normal;
    font-size: 160%;
    margin-bottom: 0.5%;
    /*color: rgba(199, 163, 233, 1);*/
    position: relative;
    z-index: 1;
    text-align: center;
    margin: 0 auto;
    display: inline-block;
    color: #fff;
    padding: 1%;
    padding-bottom: 0.7%;
    word-break: keep-all;
    margin-bottom: 2%;
    margin-top: 2%;
}

.yokokuMv p::before {
    transform: skewX(-25deg);
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
    background: #ff79ae;
}

/*PCキャスト・スタッフ*/

.cands .inner .cast,
.staff {
    width: 100%;
    margin: 0 auto;
}

.cands .inner .cast {
    margin-bottom: 5%;
}

.cands .inner h3 {
    text-align: center;
    font-size: 150%;
    color: #ff79ae;
    margin-bottom: 2%;
}

.castTeam {
    width: 8%;
    margin: 0 auto;
    margin-bottom: 0.5%;
}

.castTeam img {
    width: 100%;
}


.nameWrap {
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    font-weight: 500;
    margin-left: 10%;

}

.cast .nameBox {
    width: 19%;


}

.cast .castName {
    font-size: 120%;
    font-weight: 800;
    display: flex;
    align-items: center;
}

.castName {
    margin-top: 1%;
}

.staff .nameWrap {

    display: flex;
    flex-wrap: wrap;
}

.staff .nameBox {
    width: 30%;
    margin-bottom: 3%;
}



.cands dl {
    text-align: center;
}

.cands .charaName {
    position: relative;
    z-index: 1;
    text-align: center;
    margin: 0 auto;
    display: inline-block;
    color: #fff;
    padding: 0 1%;
    word-break: keep-all;

}

.cands .charaName::before {
    transform: skewX(-25deg);
    content: "";
    /*ボックスを作る*/
    position: absolute;
    /*ポジションで中央に配置*/
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
    /* 親要素の後ろに来るように-1 */
    background: rgba(199, 163, 233, 0.7);

}

.castBox {
    margin-bottom: 5%;
}


.castBox4 .castTeam {
    width: 6%;
}

.nameBox a {
    display: inline-block;
    border: 1px solid #ff79ae;
    color: #ff79ae;
    text-shadow: none;
    text-decoration: none;
    font-size: 60%;
    text-align: center;
    max-width: 60px;
    width: 100%;
    margin-left: 4%;
    transition: 0.2s;
}


.nameBox a:hover {
    color: #fff;
    background: #ff79ae;

}




/*.cands .aiNmame .castName {
    transform: scale(0.9, 1);
}*/

.cands .aiNmame .charaName::before {
    background: rgb(255, 147, 226);
}


.cands dt p {
    font-size: 95%;
}




.cands dd {
    margin-left: 25%;
    position: relative;

}

.staff .nameWrap .longName {
    width: 45%;
    text-align: left;
    margin-bottom: 2%;
}


.staff .nameWrap dl:last-child {
    margin-bottom: 0;
}


/*コメントモーダル*/
.nameWrap .hide-area {
    display: none;
}

.allComewrap {
    max-width: 950px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.comeWrap {
    display: flex;
    justify-content: space-evenly;
}

.castImg {
    width: 50%;
    height: 100%;
}

.modal_content {
    width: 55%;
    padding: 0 0 0 4%;
    font-size: 1.5rem;
    line-height: 1.4;
}

.modal_content h5 {
    border-bottom: 1px solid;
    border-image: linear-gradient(to right, #1cecc9 0%, #36cbf1 50%, #ff9aef 100%);
    border-image-slice: 1;
    padding: 0 0 2% 0;
    font-size: 140%;

}

.modal_content h5 span {
    font-size: 90%;
    line-height: 1.6;
}

.modal_content .castCome dl {
    margin-top: 3%;
}

.modal_content .castCome dt {
    margin-bottom: 1%;
    font-size: 140%;
}

.modal_content .castCome p {
    font-weight: 500;
    margin-top: 5%;
}



/*全て共通：モーダルのボタンの色を変更したい場合*/
.modaal-close:after,
.modaal-close:before {
    background: #ccc;
    opacity: 0;
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before {
    background: #666;
}



.modaal-close {
    display: block;
}



.allComewrap .modaal-close {
    display: flex;
    align-items: center;
    text-align: center;
    border: 1px solid #fff;
    width: 13%;
    margin: 0 auto;
    padding: 1.5% 0;
    border-radius: 0;
    font-size: 170% !important;
    position: absolute;
    bottom: -15%;
    right: 0;
    left: 0;
    top: auto;
    margin: 0 auto;
}

.allComewrap .modaal-close:hover {
    background: none !important;
}

.allComewrap .modaal-close p {
    text-align: center;
    color: #fff !important;
    font-weight: 800 !important;
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif !important;
    width: 100%;
}

/*PCスタッフ コメントモーダル*/
.staffCome .modal_content {
    width: 90%;
    padding: 0 0 0 0%;
    font-size: 1.5rem;
    line-height: 1.4;
}

.staff .castName {

    display: flex;
    align-items: center;

}

.staff .nameBox a {
    font-size: 70% !important;
}

.staffCome .modal_content .castCome p {
    font-weight: 500;
    margin-top: 2%;
}

.staffCome .modaal-close {
    bottom: -25%;
}

.charadesign p {
    margin-top: 1%;
}

.siriesCome .castName {
    margin-top: 1%;
}

.charadesign p:last-child {
    margin-top: 2%;
}


/*PCミュージック*/
.music {
    background: rgba(255, 255, 255, 0.5);
}

.music .inner h3 {
    text-align: center;
    font-size: 150%;
    color: #ff79ae;
    margin-bottom: 3%;
    /*元２％２％*/
    width: 100%;
}


.music dl {
    text-align: center;
    font-weight: 500;
    margin-bottom: 3%;
    padding-bottom: 3%;
    border-bottom: 1px solid;
    border-image: linear-gradient(to right, #1cecc9 0%, #36cbf1 50%, #ff9aef 100%);
    border-image-slice: 1;
    font-size: 110%;
}

.music dl:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.music dt {
    font-weight: normal;
    font-size: 100%;
    margin-bottom: 0.5%;
    /*color: rgba(199, 163, 233, 1);*/
    position: relative;
    z-index: 1;
    text-align: center;
    margin: 0 auto;
    display: inline-block;
    color: #fff;
    padding: 0 1%;
    word-break: keep-all;
    margin-bottom: 2%;
    margin-top: 2%;
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.music dt::before {
    transform: skewX(-25deg);
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
    background: rgba(199, 163, 233, 0.7);
}

.music dd {
    font-weight: 600;
    font-size: 150%;
    line-height: 1.2;
}

.music dd span {
    font-size: 60%;
}

.music dd img {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    margin-top: 2%;
    border: solid 1px #eaeaea;
}

.music dd div p {
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    text-align: left;
    font-weight: 600;
    font-size: 70%;
    margin-top: 2%;
}

.music dd div p:last-child {
    margin-top: 1%;
}


.music dd li:not(:last-child) {
    margin-bottom: 2%;
    padding-bottom: 2%;
    border-bottom: 1px solid;
    border-image: linear-gradient(to right, #1cecc9 0%, #36cbf1 50%, #ff9aef 100%);
    border-image-slice: 1;
}

#music .btn_area {
    display: -webkit-box;
    max-width: 600px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    counter-reset: number 0;
    margin: 0 auto;
    margin-bottom: 3%;
    row-gap: 1rem;
}

#music .tab_btn {
    display: flex;
    justify-content: center;
    font-size: 110%;
    text-decoration: none;
    order: -1;
    margin: 0 0.5%;
    cursor: pointer;
}

#music .music_panel {
    display: none;
    width: 100%;
}

#music .music_panel.active {
    display: block;
}

/*音楽情報タブボタン */
.music .btn {
    position: relative;
    display: block;
    padding: 1.5%;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    transition: .1s;
    border-bottom: 1px solid #333;
}

.music .btn::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    width: 0;
    height: 0;
    border: 1px solid transparent;
}

.music .btn::after {
    content: '';
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 0;
    height: 0;
    border: 1px solid transparent;
}

.music .btn:hover {
    color: #ff79ae;
}

.music .btn:hover::before {
    width: 100%;
    height: 100%;
    border-top-color: #ff79ae;
    border-right-color: #ff79ae;
    transition: width .1s ease-out, height .1s ease-out .1s;
}

.music .btn:hover::after {
    width: 100%;
    height: 100%;
    border-bottom-color: #ff79ae;
    border-left-color: #ff79ae;
    transition: border-color 0s ease-out .1s, width .1s ease-out .1s, height .2s ease-out .3s;
}

.music .btn_area .active {
    border: 1px solid #ff79ae;
    color: #ff79ae;
}






/*PCオンエア*/
.onAir {
    background-image: url(../images/bg4.png);
    background-size: 0.3%;
}



.onAir .inner h3 {
    text-align: center;
    font-size: 150%;
    color: #ff79ae;
    margin-bottom: 3%;
    /*元２％２％*/
    width: 100%;
}

.onAir .inner h3 img {
    width: 75%;
}

.oaBg {
    background: rgba(255, 255, 255, 0.9);
    padding: 3% 0;
    padding-bottom: 2%;
    width: 80%;
    margin: 0 auto;
    margin-bottom: 3%;
}



.inner2 {
    width: 80%;
    margin: 0 auto;
}

.onAir dl {
    text-align: center;
    font-weight: 500;
    margin-bottom: 1.5%;
    padding-bottom: 1.5%;
    border-bottom: 1px solid;
    border-image: linear-gradient(to right, #1cecc9 0%, #36cbf1 50%, #ff9aef 100%);
    border-image-slice: 1;
    font-size: 110%;
}

.onAir dl:last-child {
    border-bottom: none;
}

.onAir dt {
    font-weight: 600;
    /*font-size: 120%;*/
    margin-bottom: 0.5%;
}

.stream {
    text-align: center;
}

.stream .stStart {
    font-weight: 600;
    font-size: 120%;
    margin-bottom: 1.5%;
    padding-bottom: 1.5%;
    border-bottom: 1px solid;
    border-image: linear-gradient(to right, #1cecc9 0%, #36cbf1 50%, #ff9aef 100%);
    border-image-slice: 1;
}

.stream .stdate {
    font-size: 110%;
    font-weight: normal;
    margin-bottom: 1.5%;
    color: rgba(199, 163, 233, 1);
}

.stream ul {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    /* 折返し指定 */
}

.stream ul li {
    width: 32%;
    list-style: none;
    margin-bottom: 2%;
}


.stream ul .pcOnly {
    opacity: 0;
}


.stream ul li a {
    font-size: 110%;
    /*pointer-events: none;*/
    /* 押してもリンクさせない */
    /*リンク未定時*/
    display: flex;
    justify-content: center;
    align-items: center;

}

.stream ul .atention {
    width: 74%;
    display: flex;
    align-items: center;
    text-align: left;
    font-weight: 400;
}

.stream ul .atention01 {
    width: 66%;
}

.st2 ul {
    justify-content: space-around;
}



.stlast ul {
    flex-wrap: nowrap;
    justify-content: left;
}

.stlast ul .atention {
    width: 60%;
    margin-left: 2%;
}

/*PCスペシャル*/
.special {
    background: rgba(255, 255, 255, 0.5);
}

.spWrap {
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}


.spWrap article {
    width: 30%;
    margin-bottom: 4%;
    margin-right: 1.5%;
}


figure img {
    width: 100%;
    margin-bottom: 1%;
    cursor: pointer;
}


/*.spWrap figure:hover img {
    transform: scale(1.2, 1.2);
    transition-duration: 0.5s;
}*/

article p {
    font-weight: 600;
    font-size: 110%;
}

article p:hover a {
    text-decoration: underline;
}

.spWrap .thum_box {
    width: 100%;
    aspect-ratio: 13 / 7;
    overflow: hidden;
}

/*PC footer*/
.bottom {
    background: rgba(255, 255, 255, 0.5);
}

.bottom .bnrBox {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.bottom .bnrBox li {
    width: 30%;
    list-style: none;
    margin-bottom: 1%;
    line-height: 0;
}

.bottom .bnrBox li img {
    width: 100%;
}

footer {
    text-align: center;
    padding: 3% 0;
    font-weight: 600;

}

footer p {
    font-size: 80%;
}

/*PCフッターバナー*/
.bottom .bnrSmall {
    display: flex;
    justify-content: center;
    background-image: url(../images/bg4.png);
    background-size: 0.3%;
    padding: 3% 0;
}

.bottom .bnrSmall li {
    line-height: 0;
    margin: 0 0.5%;
}



.bottom .bnrSmall img {
    max-width: 280px;
    width: 100%;
}

.bottom .bnrSmall a:hover {
    opacity: 0.7;
    transition-duration: 0.3s;
}

/*PC1202時点ｃｓｓ*/
.onAir .inner h3 {
    margin-bottom: 3% !important;
}

.onAir .onair2023 {
    font-weight: 800;
    font-size: 160%;
    text-align: center;
}

.onAir .oaBg .inner2 p {
    width: 75%;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 1.5%;
}


.onAir .oaBg .inner2 p img {
    width: 100%;
}




.keyBnr {
    width: 90%;
    margin: 0 auto;
    display: flex;
    /*justify-content: flex-end;*/
}

.keyBnrWrap {
    width: 100%;
    /*background: rgba(255, 255, 255, 0.5);*/
    padding-bottom: 8%;
}


.keyBnr li {
    width: 30%;
    list-style: none;

}


.keyBnr li img {
    max-width: 100%;
    width: 100%;
    border: 1px solid #fff;
}

@media screen and (max-width:1400px) {
    .teamBox {
        bottom: 25%;
    }



}

/*max-width:1400px*/

@media screen and (max-width:1300px) {
    .cast .nameBox {
        width: 30%;
        margin-bottom: 3%;
    }

    .oaBg {

        width: 100%;
        margin: 0 auto;
        margin-bottom: 3%;
    }

}

/*max-width:1300px*/

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

    /*TBコンテンツ -----------------*/
    body {
        font-size: 1.4rem;
    }

    .right {
        width: calc(100% - 200px) !important;
        margin-left: auto;
        margin-right: 0;

    }

    .tbOnly {
        display: block;
    }



    h2 img {
        width: 60%;

    }

    /*1202修正css*/
    .keyBnr li {
        width: 40%;
        list-style: none;

    }



    /*TBニュース*/
    .thum_box {
        /*width: 100%;
        height: 150px;*/
    }

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

    /*TBイントロダクション */
    #Pv {
        position: relative;
        height: calc(90vh);
        position: relative;
    }

    .video_bg video {
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 250%;
        height: 200%;
    }

    /*TBキャラクター*/

    .slider {
        width: 90%;
    }

    .slides .charaBox .charaIntro {
        top: 15%;
    }

    .teamBox {
        width: 50%;
        right: 0%;
        bottom: 10%;
        margin: auto 0px;
    }



    /*TBストーリー*/
    #area-story .tab-content {
        width: 90%;
    }

    /*TBキャスト・スタッフ */
    .cands .charaName {
        font-size: 95%;
        line-height: 100%;
    }

    .cast .nameBox {
        width: 30%;
    }

    .castTeam {
        width: 15%;
    }

    .castBox4 .castTeam {
        width: 10%;
    }


    /*TBコメントモーダル*/


    .comeWrap {
        display: block;
        text-align: center;
    }

    .modal_content {
        margin-top: 3%;
        width: 90%;
        text-align: left;
        margin-left: auto;
        margin-right: auto;
        padding-left: 0;
    }


    .modaal-content-container {
        padding: 20px;
    }


    .allComewrap .modaal-close {
        width: 15%;
        bottom: -10%;
    }

    /*TB staffコメントモーダル*/

    .staffCome .modaal-close {
        bottom: -25%;
    }




    /*TB放送情報*/
    .stream ul li {
        width: 30%;
    }



    .stream ul .atention {
        width: 65%;
        font-size: 90%;
    }

    .onAir .inner h3 img {
        width: 100%;
    }

    .onAir dl:last-child {
        border-bottom: none;
    }
}

/*max-width:1100px*/

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

    /*SPコンテンツ*/
    body {
        background-size: 200%;
    }

    .right {
        width: 100% !important;
        margin-left: auto;
        margin-right: auto;
    }

    .inner {
        width: 90%;
    }


    .pcOnly {
        display: none;
    }

    .spOnly {
        display: block;
    }

    section {
        padding: 15% 0;
    }

    h2 {
        width: 100%;
        margin-bottom: 8%;
        text-align: right;
    }

    h2 img {
        max-width: 540px;
        width: 90%;

    }

    /*SPシャッター*/
    .mask .openLogo {
        height: 30vh;

    }

    /*SPキービジュアル*/
    .key {
        margin-bottom: 15%;
    }



    .keyImg_Chnage_button {
        position: absolute;
        top: 50%;
        right: 0.5%;
        z-index: 10;
        transition-duration: 0.7s;
        max-width: 30%;
    }

    .keyImg_Chnage_button:hover {
        transition-duration: 0.7s;
        transform: scale(1, 1);
    }



    .keyImg img {
        /*padding-top: 50px;*/
        width: 100%;
        margin-bottom: 8%;
        top: 0;
    }

    .key .pcOnly {
        display: block;
    }

    .key .spOnly {
        display: block;
    }

    .keyBottom {
        bottom: auto;
        background-image: url(../images/bg3.png);
        background-size: 0.8%;

    }

    .keyBottom p {
        width: 90%;
        margin: 2% auto;
        text-align: center;
    }

    .keyBottom p img {
        width: 100%;

    }


    .keyBnr {
        width: 90%;
        margin: 0 auto;
        display: block;
        justify-content: space-evenly;
        margin-top: 65%;
    }

    .keyBnr li {
        width: 80%;
        list-style: none;
        text-align: center;
        margin: 0 auto;
        margin-bottom: 5%;
    }

    .keyBnr li img {
        max-width: 300px;
        width: 100%;
        margin: 0 auto;
    }

    .keyBnr li:hover img {
        transform: none;
        transition-duration: 0.3s;
    }

    .key_white img {
        top: -0%;

    }




    /*SPツイッター*/
    .kizunaTwitter {
        width: 70%;
        position: relative;
        z-index: 0;
        margin-top: 5%;
        border: 1px solid #ff79ae;
        background: rgba(255, 255, 255, 0.5);
        margin: 0 auto;
    }

    .twitterbox {
        width: 100%;
        margin: 0 auto;
    }

    .infoTl {
        font-size: 2rem;
        font-weight: 500 !important;
        color: #ff79ae;
        text-align: center;
        border-top: none;
        border-bottom: 1px solid #ff79ae;
        padding: 2rem 0;
    }

    /*SPトップへ*/
    .to-top a {
        text-align: right;
    }

    .to-top img {
        width: 85%;
    }

    /*SPニュース*/
    /*1121*/
    .newsWrap {
        width: 100%;
        margin: 0 auto;
        display: block;
        justify-content: space-between;
    }

    .news article {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 8%;
    }


    .newsWrap .text {
        font-size: 100%;
    }

    .btnMore a {
        display: block;
        width: 12rem;
        margin-left: auto;
        margin-right: 0;
        cursor: pointer;
        text-decoration: none;
        position: relative;
        margin-top: 2%;
    }

    .btnMore a::after {
        content: "";
        display: block;
        position: absolute;
        top: calc(50%);
        right: 2rem;
        width: 6rem;
        height: 0.5rem;
        border: none;
        border-right: 2px solid #000;
        border-bottom: 2px solid #000;
        transform: skew(45deg);
        transition: .3s;
    }

    .btnMore a:hover::after {
        right: -1rem;
        width: 9rem;
    }

    figure {
        margin-bottom: 2%;
    }

    .thum_box {
        /*width: 100%;
        height: 200px;*/
    }

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


    /*SPイントロダクション*/

    .intro {
        position: relative;
    }

    .intro .inner {
        padding: 15% 0;
    }

    #Pv {
        position: relative;
        height: calc(90vh);
        position: relative;
    }

    .video_bg video {
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 350%;
        height: 350%;
    }

    .video_bg::after {
        background-image: url(../images/bg3.png);
        background-size: 0.8%;
    }

    .arasujiBg {
        background-color: rgba(255, 121, 174, 0.4);
    }

    .arasuji {
        overflow: scroll;
        height: 60vh;
    }


    .arasuji p {
        margin-bottom: 2%;
    }

    .arasuji .arasujiBr {
        margin-bottom: 4%;
    }

    .intro .bigger {
        font-size: 130%;
        line-height: 150%;
    }


    /*SPキャラクター*/

    .tab-content .inner {
        width: 100%;
    }

    .character .tab-label {
        display: flex;
        justify-content: center;

        background-color: #fff;
        text-align: center;
        align-items: center;
        margin: 0 0.1rem;
        width: 47%;
        margin-bottom: 0.2rem;

    }

    #TAB-03 .tab-label,
    #TAB-04 .tab-label {
        margin-bottom: 0;
    }

    /*SPタブ背景*/
    .charaTabbg {
        position: absolute;
        top: 0;
        z-index: 1;
        width: 100%;

    }

    .charaTabbg ul {

        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        background: #fff;
        border: 1px solid #fff;

    }

    .charaTabbg li {
        list-style: none;
        margin: 0 0.1rem;
        width: 42%;
        margin-bottom: 0.2rem;
    }

    .charaTabbg li:nth-child(3),
    .charaTabbg li:last-child {
        margin-bottom: 0;
    }

    .charaTabbg li img {
        opacity: 0;
        max-width: 200px;
        width: 90%;
    }

    .borderWhite {
        margin-top: 1%;
        width: 100%;
        height: 0.8rem;
        background-color: #fff;

    }

    /*SPキャラ紹介部分 */
    .slider {
        width: 100%;
    }

    .slides .charaBox .charaIntro {
        max-width: 80%;
        width: 100%;
        height: auto;
        margin-left: 0;
        margin-right: auto;
        position: absolute;
        top: auto;
        right: 0%;
        left: auto;
        bottom: 10%;
        /* text-align: left; */
        background: rgba(255, 255, 255, 0.8);
        padding: 3%;
    }

    .slides .charaBox .charaIntro img {
        width: 100%;
        margin-bottom: 2%;
    }

    .slides .charaBox .charaIntro p {
        text-align: left;
        font-size: 100%;
    }

    .slides .charaBox .charaPic {
        max-width: 83%;
        width: 100%;
        height: auto;
        padding: 5% 0;
        padding-top: 10%;
    }

    .slides .charaBox .charaPic img {
        width: 95%;

    }


    .slides .charaBox .charaWide {
        max-width: 85%;
    }

    .slides .charaBox .charaWide img {
        width: 100%;

    }

    .slides .charaBox .antImg {
        margin: 0 auto;
    }




    /*SP絆アイ 画像*/
    .slides .charaBox .aiImg {
        max-width: 100%;
        width: 100%;
        height: auto;
        padding: 5% 0;
        padding-top: 10%;
        margin-left: auto;
        margin-right: auto;
    }

    .slides .charaBox .aiImg img {
        width: 99%;
    }



    /*修正箇所↓*/
    .charaPic :nth-child(2) {
        left: 4%;
    }

    .charaWide :nth-child(2) {
        left: 0;
    }

    /*修正箇所↑*/

    .slides .charaBox .changeBtn {
        max-width: 25%;
        width: 100%;
        height: auto;
        position: absolute;
        top: 20%;
        bottom: 0;
        left: auto;
        right: 2%;
        /* margin: 0 auto; */
    }


    .slides .charaBox .changeBtn img {
        width: 100%;
    }

    .teamBox {
        display: flex;
        background: rgb(255, 255, 255);
        align-items: center;
        width: 90%;
        justify-content: space-between;
        position: absolute;
        z-index: 100;
        right: 0;
        left: auto;
        bottom: 0;
        margin: 0 auto;
    }

    /*.charaViconic .teamBox {
        width: 60%;
    }*/
    .dm8 .teamBox {
        width: 65%;
    }


    .teamBox p {
        width: 40%;
        text-align: center;
        line-height: 0;
    }

    /*.charaViconic.teamBox p {
        width: 50%;
        text-align: center;
        line-height: 0;
    }*/

    .dm8.teamBox p {
        width: 50%;
        text-align: center;
        line-height: 0;
    }

    .teamBox p img {
        width: 90%;
        margin-left: 10%;
    }

    .teamBox .team2 img {
        width: 80%;
    }

    .teamBox .team4 img {
        width: 60%;
    }

    /*.charaViconic .charaThumb {

        width: 45%;
        margin-right: -3%;
    }*/

    .dm8 .charaThumb {

        width: 45%;
        margin-right: 10%;
    }

    .slider .charaThumb img {
        width: 100%;
    }


    /* .charaViconic .slider .charaThumb a {
        margin-right: 0;
    }
*/
    .dm8 .slider .charaThumb a {
        margin-right: -28%;
    }

    /*.charaViconic .slider .charaThumb a:first-child {
        margin-right: -30%;
    }*/


    /*SPストーリー*/
    #area-story .tab-content {
        width: 100%;
    }

    #story .tab_btn {
        font-size: 120%;
    }

    #area-story h4 {
        font-size: 160%;
        margin-bottom: 5%;
    }

    #story .btn_area {
        margin-bottom: 5%;
    }

    .storyWrap .btn {
        padding: 1% 1.5%;
        margin: 0 1%;
        width: 10%;
    }

    .storyWrap .container {
        display: block;
    }

    .storyWrap .container {
        /*display: flex;
    justify-content: space-between;*/
        width: 100%;
        margin: 0 auto;
    }

    .storyWrap .storyslider {
        width: 100%;
    }

    .storyWrap .storythumbBox {
        width: 100%;
        display: flex !important;
        flex-flow: column;
        justify-content: space-between;
        margin-top: 1%;
    }

    #story .storythumbBox .slick-track {
        display: flex !important;
        width: 100% !important;
        transform: translate3d(0, 0, 0) !important;
        justify-content: space-between;
    }

    #story .storythumbBox .slick-slide {

        width: 24% !important;

    }

    .border {
        margin: 0 10%;
    }

    .allowPrev {

        margin-right: 10%;
        margin-top: 3%;
    }

    .allowNext {
        margin-left: 10%;
        margin-top: 3%;
    }

    /*0320追記 SP*/
    .storyWrap .slick-img {
        border-right: 1px solid #ffe9f2;
    }

    /*SP 次回予告*/
    .yokokuMv {
        width: 100%;
    }

    /*SPキャスト・スタッフ */
    .cands .inner .cast,
    .staff {
        width: 100%;
    }

    .nameWrap {
        display: block;
        margin-left: 0;
        margin: 0 auto;
    }

    .cands .inner .cast {
        margin-bottom: 15%;
    }


    .cast .nameBox {
        width: 100%;
        margin-bottom: 5%;
        text-align: center;
    }

    .cands .castName {
        margin: 0 auto;
        text-align: center;
        justify-content: center;
        margin-top: 0.5%;

    }


    .staff .nameBox {
        width: 100%;
        margin-bottom: 5%;
        text-align: center;
    }



    .cands dt p {
        font-size: 95%;
        line-height: 100%;
    }

    .cands .inner h3 {
        margin-bottom: 4%;
    }

    .castTeam {
        width: 25%;
    }

    .castBox4 .castTeam {
        width: 19%;
    }


    .castBox {
        margin-bottom: 10%;
    }

    /*SP スタッフ コメントモーダル*/
    .staffCome .modaal-close {
        bottom: -15%;
    }

    .allComewrap .modaal-close {
        width: 30%;
    }


    /*SP ミュージック*/
    .music dt {
        margin-bottom: 3%;
    }

    .music dd div p {
        margin-top: 2%;
    }

    .music dd div p:last-child {
        margin-top: 2%;
    }

    .music dd li:not(:last-child) {
        margin-bottom: 4%;
        padding-bottom: 4%;
    }

    #music .tab_btn {
        font-size: 90%;
        width: 48%;
    }

    /*spオンエア*/
    .onAir {
        background-image: url(../images/bg4.png);
        background-size: 0.8%;
    }

    .onAir .inner h3 {
        margin-bottom: 4%;
    }

    /*.onAir .inner h3 img {
        width: 100%;
        margin-left: 3%;
    }*/

    .oaBg {
        padding: 4% 0;
        padding-bottom: 3%;
        margin-bottom: 5%;
    }

    .onAir dl:last-child {
        border-bottom: none;
    }

    .onAir dl {
        margin-bottom: 2%;
        padding-bottom: 2%;

    }

    .onAir dd {
        font-size: 100%;
    }

    .onAir .oaBg .inner2 p {
        width: 100%;
    }

    .stream .stStart {
        margin-bottom: 2%;
        padding-bottom: 2%;
    }

    .stream ul {
        display: block;
    }

    .stream ul li {
        width: 100%;
        margin-bottom: 3%;
    }



    .stream ul li a {
        font-size: 120%;
    }

    .stream ul li .pcBr {
        display: none;
    }




    .stream .tbOnly {
        display: none;
    }

    .stream ul .atention {
        width: 100%;
        margin-top: 2%;
        display: contents;
    }

    .stream .stdate {
        margin-bottom: 3%;
    }

    .stream .btn a {
        border: 1px solid #ffadce;
        color: #ff79ae;
    }

    /*SPスペシャル*/
    .spWrap {
        width: 90%;
        margin: 0 auto;
        display: block;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .spWrap article {
        width: 100%;
        margin-bottom: 6%;
    }

    /*SPフッター*/
    .bottom .bnrBox {
        width: 90%;
        display: block;
    }

    .bottom .bnrBox li {
        width: 100%;
        margin-bottom: 2%;
    }

    footer {
        text-align: center;
        padding: 8% 0;
        font-weight: 600;
    }

    /*PCフッターバナー*/
    .bottom .bnrSmall {
        background-size: 0.8%;
        padding: 5% 0;
        display: block;

    }

    .bottom .bnrSmall li {
        margin: 0;
        text-align: center;
        margin-bottom: 3%;
    }

    /*SP1202時点ｃｓｓ*/
    .onAir .inner h3 {
        margin-bottom: 3% !important;
    }

    .onAir .onair2023 {
        font-weight: 800;
        font-size: 140%;
        text-align: center;
    }

}

/*max-width:767px*/

@media screen and (max-width:420px) {
    .layer_board.shortLayer {
        margin: 0;
        top: 35%;
        left: 0;
        transform: translate(0%, 0%);
    }
}

/*マスクアニメーション*/

.StripeUp1 {
    animation-name: StripeUpAnime;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
}

.StripeUp2 {
    animation-name: StripeUpAnime;
    animation-duration: 1.1s;
    animation-fill-mode: forwards;
}

.StripeUp3 {
    animation-name: StripeUpAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

.StripeUp4 {
    animation-name: StripeUpAnime;
    animation-duration: 0.7s;
    animation-fill-mode: forwards;
}

.StripeUp5 {
    animation-name: StripeUpAnime;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
}

.StripeUp6 {
    animation-name: StripeUpAnime;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
}

.StripeUp7 {
    animation-name: StripeUpAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

@keyframes StripeUpAnime {
    0% {
        transform: translateY(0%);
        opacity: 0;
    }

    50% {
        opacity: 0.6;
    }

    99% {
        z-index: 10;
    }

    100% {
        transform: translateY(-1000%);
        opacity: 0;
        z-index: -10;
    }
}

.CubeMask {
    bottom: 0%;
    width: 10%;
    height: 10%;
    position: absolute;

}

.MaskOut {
    animation-name: MaskOutAnime;
    animation-duration: 1.2s;
    animation-fill-mode: forwards;
}

@keyframes MaskOutAnime {
    0% {
        opacity: 1;
        /* -webkit-mask-image: linear-gradient(to bottom, rgb(0, 0, 0) 0%, transparent 100%); */
        /*clip-path: inset(0% 0% 0% 0%);*/
    }

    50% {
        opacity: 0;
    }


    100% {
        opacity: 0;
        /* -webkit-mask-image: linear-gradient(to bottom, rgb(0, 0, 0) 0%, transparent 0%); */
        /*clip-path: inset(0% 0% 100% 0%);*/
    }
}

.MaskIn {
    animation-name: MaskInAnime;
    animation-duration: 1.2s;
    animation-fill-mode: forwards;
}

@keyframes MaskInAnime {
    0% {
        opacity: 0;
        /* -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 98%, rgb(0, 0, 0,1000) 100%); */
        /*clip-path: inset(100% 0% 0% 0%);*/
    }



    100% {
        opacity: 1;
        /* -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) -2%, rgb(0, 0, 0,1000) 0%); */
        /*clip-path: inset(0% 0% 0% 0%);*/
    }
}