@charset "UTF-8";

/* @font-face {
    font-family: "NotoSansJP";
    src:url(../fonts/NotoSansJP-VariableFont_wght.ttf) format("truetype");
} */
/* 全体について------------------------------------------------------------------------- */
*,
*::before,
*::after{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    font-size: 62.5%;
}
body{
    width: 100%;
    font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", sans-self;
    font-size: 1.4rem;
    color: #fff;
    line-height: 1.8;
    background-image: url(../images/footer/footer.jpg);
    background-attachment: fixed;
    background-size: cover;
    background-position: center center;
}
h1,
h2,
h3,
h4,
h5,
h6{
    margin: 0;
    padding: 0;
}
img{
    width: 100%;
    vertical-align: bottom;
}
a{
    color: #fff;
    text-decoration: none;
}
ol,
ul{
    list-style: none;
}
.inner{
    max-width: 1100px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}
.fadein{
    opacity: 0;
}
/* トップページリンク */
.to_top {
    display: block;
    position: fixed;
    color: #fff;
    background-color: #A0292B;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    text-align: center;
    cursor: pointer;
    z-index: 1990;
    right: 10px;
    bottom: 10px;
    height: 50px;
    width: 50px;
    line-height: 65px;
    font-size: 1.2rem;
    transition: 0.4s;
    opacity: 0;
}
.to_top:hover {
    transform: translate3d(0,-10px,0);
    transition-duration: 0.5s, 0.3s;
    transition-timing-function: ease, ease;
    transition-delay: 0s, 0s;
    background-color: #a14547;
}
.topbar{
    width: 10px;
    height: 1.5px;
    background-color: #fff;
    left: 5px;
    position: absolute;
}
.topbar1{
    top: 15px;
    left: 16px;
    rotate: -45deg; /* degは角度 */
}
.topbar2{
    top: 15px;
    left: 22px;
    rotate: 45deg; /* degは角度 */
}
.title{
    font-size: calc(30/1100*100vw);
    font-family: 'Noto Serif JP', serif;
    color: #fff;
    margin-top: 80px;
    text-align: center;
}
.subtitle{
    margin-top: 0;
    color: #E0D044;
    text-align: center;
}
/*ボタン*/
.btnarrow5{
    position: relative;
    font-family: 'Noto Serif JP', serif;
    border: 1px solid #fff;
    padding: 8px 100px;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    color: #fff;
    outline: none;
    transition: all .2s linear;
    margin: 50px;
}

.btnarrow5:hover{
    background:rgb(255, 255, 255, .3);
    color:#fff;
}
.btnarrow5::before{
    content:"";
    position: absolute;
    top:50%;
    right:-26px;
    width:40px;
    height:1px;
    background:#fff;
    transition: all .2s linear;
}
.btnarrow5::after{
    content:"";
    position: absolute;
    top: 20%;
    right: -21px;
    width:1px;
    height:12px;
    background:#fff;
    transform:skewX(45deg);
    transition: all .2s linear;
}
.btnarrow5:hover::before{
    right:-30px;
}
.btnarrow5:hover::after{
    right:-25px;
}

/* キービジュアル */
.key-visual{
    position: relative;
    margin-bottom: 50px;
}
.key-visual .video{ /*ビデオの場所*/
    position: relative;
}
.video::before {
    padding-top: 65%;
    display: block;
    content: "";
}
.video video{ /*ビデオの位置*/
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
/* スクロールの矢印 */
.scrolldown4{/*スクロールダウン全体の場所と矢印の動き1秒かけて永遠にループ*/
	position:absolute;
    bottom: 20%;
	right:5%;
	animation: arrowmove 1s ease-in-out infinite;
}
@keyframes arrowmove{/*下からの距離が変化して全体が下→上→下に動く*/
    0%{bottom:10%;}
    50%{bottom:13%;}
    100%{bottom:10%;}
}
.scrolldown4 span{/*Scrollテキストの描写*/
    /*描画位置*/
	position: absolute;
	left:-20px;
	bottom:calc(150/1100*100vh);
    /*テキストの形状*/
	color: #fff;
	font-size: 1rem;
	letter-spacing: 0.05em;
	/*縦書き設定*/
	-ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
}
.scrolldown4:before {/* 矢印の描写 */
    content: "";
    /*描画位置*/
    position: absolute;
	bottom:calc(150/1100*100vh);
    right: -6px;
    /*矢印の形状*/
    width: 2px;
    height: 20px;
    background: #eee;
    transform: skewX(-31deg);
}
.scrolldown4:after{
	content:"";
    /*描画位置*/
	position: absolute;
	bottom:calc(150/1100*100vh);
	right:0;
    /*矢印の形状*/
	width:2px;
	height: 100px;
	background:#eee;
}
.movie__btn{ /*スイッチの位置*/
    position: absolute;
	bottom:calc(200/1100*100vh);
	right:10%;
    opacity: 50%;
}
#switch{ /*ミュートスイッチ*/
    width: 40px;
    height: 50px;
    background: url(../images/icon/buttom_mute.svg) no-repeat;
    background-size: 100% 100%;
    cursor: pointer;
}
#switch.on_switch{/*onスイッチ*/
    background: url(../images/icon/buttom_on.svg) no-repeat;
    background-size: 100% 100%;
    }

/* アイコン */
.subnav-item{
    position: absolute;
    top: 0%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-right: 30px;
    z-index: 10;
    left: 0%;
}
#rogo_title{
    width: calc(100/1100*100vw);
    margin: 50px 30px 0 30px;
}
#Xicon{
    background-color: #fff;
    border-radius: 50%;
    width: 50px;
}
#Xicon:hover{
    background-color: rgb(255, 255, 255,.8);
}
/* ナブ */
.nav02{
    padding-left: 20px;
}
.nav02 p{
    color: #fff;
    border-bottom: #fff 1px solid;
    font-size: calc(10/1100*100vw);
    font-family: 'Noto Serif JP', serif;
}
.nav02-list{
    position: relative;
    width: 150px;
}
.nav02-list a{
    font-family: 'Noto Serif JP', serif;
    color: #fff;
    font-size: calc(15/1100*100vw);
    /*アニメーションの起点とするためrelativeを指定*/
    position: relative;
    overflow: hidden;
    /*ボタンの形状*/
    display: inline-block;
    text-align: center;
    outline: none;
    /*アニメーションの指定*/   
    transition: ease .2s;
    padding: 0px 10px;
}
.nav02-list img{
    width: 80%;
}
.nav02-item a:hover{
    color: #A0292B;
}
.nav02-item a span{
    position: relative;
}
.bgskew::before {/*　背景が流れる（斜め） */
    content: '';
    /*絶対配置で位置を指定*/
    position: absolute;
    top: 0;
    left: -150%;
    /*色や形状*/
    background: #fff;
    width:120%;
    height: 100%;
    transform: skewX(-25deg);
}
.bgskew:hover::before {/*hoverした時のアニメーション*/
    animation: skewanime .5s forwards;/*アニメーションの名前と速度を定義*/
}
@keyframes skewanime {
    100% {
        left:-10%;/*画面の見えていない左から右へ移動する終了地点*/
    }
}
/* ハンバーガーボタン */
.trigger{
    display: block;
    background-color: #A0292B;
    width: 50px;
    height: 50px;
    position: fixed;
    right: 0px;
    top: 0px;
    z-index: 1100;
    border: none;
}
.bar{
    display: block;
    width: 40px;
    height: 2px;
    background-color: #fff;
    left: 5px;
    position: absolute;
}
.bar1{
    top: 14px;
}
.bar2{
    top: 24px;
}
.bar3{
    top: 34px;
}
body.open{
    overflow: hidden;
}
.open .bar1{
    top: 24px;
    rotate: -45deg;
}
.open .bar2{
    opacity: 0;
}
.open .bar3{
    top: 24px;
    rotate: -135deg;
}
.open .trigger{
    background-color: rgb(197, 61, 67,0);
}
/* ナブ */
.open .nav{
    left: 0;
}
/* 変化の設定 */
.nav,
.bar{
    transition: 0.4s cubic-bezier(0.54,-0.18, 0.52, 1.29);
}
.nav{
    position: fixed;
    display: flex;
    justify-content: right;
    left: -200vw;
    background-color: #A0292B;
    opacity: 85%;
    backdrop-filter: blur(30px);
    width: 100%;
    height: 100%;
    text-align: center;
    z-index: 999;
    font-family: 'Noto Serif JP', serif;
    padding-right: 100px;
    padding-top: 100px;
}
.nav-list{
    display: block;
    flex-direction: column;
    text-align: left;
    gap: 40px;
}
.nav-list p{
    border-bottom: #fff 1px solid;
}
.nav-list a{
    color: #fff;
    font-size: 2.0rem;
    /*アニメーションの起点とするためrelativeを指定*/
    position: relative;
    overflow: hidden;
    /*ボタンの形状*/
    display: inline-block;
    text-align: center;
    outline: none;
    /*アニメーションの指定*/   
    transition: ease .2s;
    padding: 0px 10px;
    font-size: 2.0rem;
}
.nav-list a{
    font-family: 'Noto Serif JP', serif;
    color: #fff;
    /*アニメーションの起点とするためrelativeを指定*/
    position: relative;
    overflow: hidden;
    /*ボタンの形状*/
    display: inline-block;
    text-align: center;
    outline: none;
    /*アニメーションの指定*/   
    transition: ease .2s;
    padding: 0px 10px;
}
.nav-list img{
    width: 80%;
}
.nav-item a:hover{
    color: #A0292B;
}
.nav-item a span{
    position: relative;
}
.bgskew::before {/*　背景が流れる（斜め） */
    content: '';
    /*絶対配置で位置を指定*/
    position: absolute;
    top: 0;
    left: -150%;
    /*色や形状*/
    background: #fff;
    width:120%;
    height: 100%;
    transform: skewX(-25deg);
}
.bgskew:hover::before {/*hoverした時のアニメーション*/
    animation: skewanime .5s forwards;/*アニメーションの名前と速度を定義*/
}
@keyframes skewanime {
    100% {
        left:-10%;/*画面の見えていない左から右へ移動する終了地点*/
    }
}

/*  キャッチコピー */
#index_intro{
    padding: 100px 0 0 0;
}
/* イントロ */
#catchcopy{
    font-family: 'Noto Serif JP', serif;
    font-size: 3.0rem;
    color: #A0292B;
    font-weight: bold;
    margin: 30px 0 15px 0;
    padding: 0 10px;
    display:inline-block;
    background-color: #fff;
}
#catchcopy span{
    color: #A0292B;
}
.intro-item{
    text-align: center;
}
.intro-p{
    padding-top: 30px;
}
.slide-in {
    overflow: hidden;
    display: inline-block;
}
.slide-in_inner {
    display: inline-block;
}
.leftAnime{
    opacity: 0;
}
.slideAnimeLeftRight {
    animation-name:slideTextX100;
    animation-duration:0.8s;
    animation-fill-mode:forwards;
    opacity: 0;
}
@keyframes slideTextX100 {
    from {
    transform: translateX(-100%); 
        opacity: 0;
    }

    to {
    transform: translateX(0);
    opacity: 1;
    }
}
.slideAnimeRightLeft {
    animation-name:slideTextX-100;
    animation-duration:0.8s;
    animation-fill-mode:forwards;
    opacity: 0;
}
@keyframes slideTextX-100 {
    from {
    transform: translateX(100%);
    }
    to {
    transform: translateX(0);
    opacity: 1;
    }
}


/* ニュース */
.news{
    text-align: center;
}
.news-list{
    padding: 30px;
    font-size: 1.8rem;
    margin: 0px 50px;
}
.news-list-item{
    border: #fff 1px solid;
    margin: 15px 0;
}
.news-page{
    display: flex;
    padding: 5px 0;
    align-items: center;
}
.date{
    color: #A0292B;
    font-family: 'Noto Serif JP', serif;
    font-size: 3.0rem;
    display: flex;
    flex-direction: column;
    text-align: left;
    padding: 10px 20px;
    background-color: #fff;
    opacity: .7;
}
.date span{
    font-size: 2.0rem;
}
.news-topic{
    flex-grow: 1;
}
/* ボタン共通設定 */
.btn04 {
    position: relative;
    display:inline-block;
    padding: 39px 30px;
    color:#fff;
    text-decoration: none;
    outline: none;
    overflow: hidden;
}
.btn04:hover {
    color: #A0292B;
    border-color: transparent;
    border-left: #A0292B 1.5px solid;
}
.btn04 span{
    display: block;
    z-index: 2;
}
.borderleft span::before,
.borderleft span::after {
    content: '';
    position: absolute;
    width:0;
    height:1px;
    background: #fff;
    transition: all .3s;
    opacity: .7;
}
.borderleft::before{
    content: '';
    position: absolute;
    left: 0;
    bottom:0;
    z-index: -1;
    height: 100%;
    width: 0;
    background:#fff;
    transition: all .3s;
    opacity: .7;
}
.borderleft:hover::before{
    width: 100%;
}
/* キャラ */
.chara{
    text-align: center;
}
.chara-list{
    display: flex;
    margin: 50px 0 50px 0;
    align-items: center;
    text-align: center;
}
.chara-img{
    width: 400px;
    height: 100%;
}
/*左から展開される
-------*/
.scroll_layer {
    position: relative;
    transition: 0.8s;
    transform: scaleX(0);
    transform-origin: left center;
}
.scroll_layer.on {
    transform: scaleX(1);
}
.scroll_layer::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #d8bc2d;
    transition: 1.2s;
    transform-origin: right center;
}
.scroll_layer.on::after {
    transform: scaleX(0);
}
.name-title{
    padding-bottom: 50px;
}
.name-title h2{
    font-family: 'Noto Serif JP', serif;
    font-size: 4.0rem;
}
.exp{
    border-top: #fff 1px solid;
    border-bottom: #fff 1px solid;
    padding: 20px 0px;
    margin: 0 0px;
    text-align: left;
}
/* ギャラリー */
.gallery{
    text-align: center;
}
.gallery-list{
    background-image:url(../images/main/washi.jpg);
    padding: 30px;
    margin-top: 30px;
}
.slider {
    width:94%;
    margin:0 auto;
}
.slider img{
    width: 250;
    height: 400px;
    object-fit: cover;
    object-position: center;
    overflow:hidden; 
}
.slider img:hover{
    transform:scale(1.1,1.1);
    transition:0.5s all;
}
.slider .slick-slide {
    margin:0 10px;
}
.slick-prev, 
.slick-next {
    position: absolute;
    top: 42%;
    cursor: pointer;
    outline: none;
    border-top: 2px solid #A0292B;
    border-right: 2px solid #A0292B;
    height: 15px;
    width: 15px;
}
.slick-prev {
    left: -1.5%;
    transform: rotate(-135deg);
}
.slick-next {
    right: -1.5%;
    transform: rotate(45deg);
}



/* ミュージック */
.music{
    text-align: center;
}
.music-list{
    display: flex;
    gap: 20px;
    margin-top: 30px;
    align-items: center;
}
.music-list img{
    width: 350px;
}
.music-title{
    display: flex;
    align-items: baseline;
    gap: 20px;
    border-bottom: #fff 1px solid;
    padding-bottom: 10px;
}
.music-title p{
    background-color: #fff;
    color: #A0292B;
    font-size: 1.2rem;
    padding: 5px 10px;
}
.music-title h3{
    font-size: 2.0rem;
    color: #fff;
}
.music-exp p{
    margin-top: 20px;
}

/* スタッフ */
.staff{
    text-align: center;
}
.staff-list{
    display: flex;
    justify-content: space-around;
    margin-top: 50px;
}
.team-title h3{
    font-family: 'Noto Serif JP', serif;
    font-size: 1.4rem;
    color: #fff;
    background-color: #A0292B;
    padding: 0px 5px;
    text-align: center;
}
.staff-item{
    margin: 20px 0;
}
.staff-role{
    color: #d8bc2d;
    font-size: 1.0rem;
}
.staff-name{
    font-size: 1.8rem;
    font-family: 'Noto Serif JP', serif;
}
/* ツイッター */
.twitter{
    position: relative;
    width: 560px;
    height: 480px;
    margin: 0 auto;
    z-index: 12;
}
#twitter{
    margin-top: 30px;
}

/* アサイド */
.aside{
    margin-top: 350px;
    margin-bottom: 50px;
}
.aside-item{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.share{
    display: flex;
    flex-direction: column;
    text-align: center;
    color: #fff;
}
.aside-nav-list{
    display: flex;
    gap: 15px;
    padding-top: 15px;
    align-items: center;
}
.aside-nav-list img{
    width: 60px;
    background-color: #fff;
    border-radius: 100vw;
}
.aside-nav-list img:hover{
    opacity: 90%;
}
.subnav{
    color: #fff;
    font-size: 1.2rem;
    display: flex;
}
.subnav li{
    padding: 0 10px;
    margin-top: 30px;
}
.subnav li:hover{
    color: #c6c6c6;
}
.subnav li+li{
    position: relative;
}
.subnav li+li::before{
    content: "";
    display: block;
    height: 1em;
    border-left: 1px solid #fff;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0%;
    margin: auto;
}
.cautionarynote{
    font-size: 1.0rem;
    text-align: center;
    color: #fff;
    margin-top: 30px;
}

/* フッター */
.footer{
    /* background-color: #A0292B; */
    background-color: #631216;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}
.footer small{
    font-size: 1rem;
} 


/* -----------------------------------------------モバイル版----------------------------------------------  */
@media( max-width: 700px ){  
    .inner{
        max-width: 750px;
        width: 85%;
    } 
    /* 共通 */
    .title{
        font-size: 3.0rem;
        margin-top: 80px;
    }
    .subtitle{
        font-size: 1.2rem;
    }
    body::before{
        position:fixed;
        top:0;
        left:0;
        z-index:-1;
        width:100vw;
        height:100vh;
        -webkit-background-size:contain;
        background-size:contain;
        content:"";
        background-position: center center;
    }
    
    /*ボタン*/
    .btnarrow5{
        padding: 5px 40px;
        margin: 30px;
        font-size: 1.3rem;
    }
    /* キービジュアル */
    .scrolldown4 span{/*Scrollテキストの描写*/
        left:-20px;
        bottom:calc(0/700*100vh);
    }
    .scrolldown4:before {/* 矢印の描写 */
        bottom:calc(0/700*100vh);
    }
    .scrolldown4:after{
        bottom:calc(0/700*100vh);
    }
    .movie__btn{ /*スイッチの位置*/
        bottom:calc(15/700*100vh);
    }
    #switch{ /*ミュートスイッチ*/
        width: 30px;
        height: 40px;
    }
    /* アイコン */
    .subnav-item{
        align-items: start;
        top: 0%;
        left: 0%;
        gap: 5px;
    }
    #rogo_title{
        width: 80px;
        margin: 20px 0 0 0 ;
    }
    #Xicon{
        width: 35px;
        margin-left: 10px;
        margin-bottom: 10px;
    }
    /* ナブ */
    .nav02{
        padding-left: 10px;
    }
    .nav02 p{
        color: #fff;
        border-bottom: #fff 1px solid;
        font-size: 0.8rem;
        font-family: 'Noto Serif JP', serif;
    }
    .nav02-list{
        position: relative;
        width: 50px;
    }
    .nav02-list a{
        font-family: 'Noto Serif JP', serif;
        color: #fff;
        font-size: 1.0rem;
    }
    #catchcopy{
        font-size: 2.0rem;
    }
    
    /* ニュース */
    .news-list{
        padding: 0;
        font-size: 1.2rem;
        margin: 0px 0px;
        align-items: center;
    }
    .news-list-item{
        border: #fff 1px solid;
        margin: 5px 0;
        height: 80px;
    }
    .news-page{
        display: flex;
        padding: 5px 5px;
        align-items: center;
    }
    .date{
        color: #A0292B;
        font-family: 'Noto Serif JP', serif;
        font-size:1.2rem;
        display: flex;
        flex-direction: column;
        text-align: left;
        padding: 10px 20px;
        background-color: #fff;
        opacity: .7;
    }
    .date span{
        font-size: 1.0rem;
    }
    .btn04 {
        padding: 15px 0px;
    }
    /* イントロ */
    .intro-p{
        font-size: 1.2rem;
        line-height: 22px;
    }
    /* キャラクター */
    .chara-list{
        display: block;
        margin: 30px 0;
        text-align: center;
    }
    .chara-img{
        width: calc(450/750*100vw);
    }
    .name-title h2{
        font-size: calc(60/750*100vw);
    }
    .name-title p{
        font-size: calc(25/750*100vw);
    }  
    .chara-exp{
        padding: 0;
        font-size: 1.2rem;
    }
    #setsuna{
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
    }
    /* ギャラリー */
    .slider img{
        width: 250;
        height: 200px;
        object-fit: cover;
        object-position: center;
        overflow:hidden; 
    }
    /* ミュージック */
    .music-list{
        flex-direction: column;
    }
    .music-list img{
        width: 200px;
    }
    .music-title p{
        font-size: 1.0rem;
    }
    .music-exp{
        font-size: 1.2rem;
    }
    /* スタッフ */
    .staff-list{
        flex-direction: column;
        padding-left: 20px;
        margin-top: 10px;
    }
    .staff-items{
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .team-title h3{
        color: #fff;
        background-color: #A0292B;
        font-size: 1.2rem;
        padding: 0px 5px;
        width: 100px;
        margin-top: 30px;
    }
    /* アサイド */
    .aside{
        position: relative;
        margin-top: 250px;
    }
    .share{
        display: flex;
        flex-direction: column;
        text-align: center;
        color: #fff;
        font-size: 1.0rem;
    }
    .aside-nav-list{
        padding-top: 5px;
    }

    .aside-nav-list img{
        width: 35px;
    }
    .subnav{
        font-size: 0.8rem;
    }
    .subnav li{
        margin-top: 10px;
    }
    
    .cautionarynote{
        font-size: 0.8rem;
        text-align: center;
        color: #fff;
        margin-top: 5px;
    }
    /* フッター */
    .footer{
        background-color: #c53d43;
        color: #fff;
        padding: 20px 0;
        text-align: center;
    }
    .footer small{
        font-size: 1rem;
    } 
}