@charset "utf-8";
  html {
    scroll-behavior: smooth; /* これだけでスムーススクロール */
  }
body {
    color: #eee;
    font-weight: 500;
    font-family: 'Shippori Mincho', serif;
    font-size: 1rem;
    line-height: 1.75;
    word-wrap: break-word;
    overflow-y: scroll;
    overflow-x: hidden;
    background-color: #d2000f;
}
/*.ticket-text,.ticket-table{  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;}*/
    
    
    
ul, li {
    margin: 0;
    padding: 0;
    list-style: none;
}

a {
    color: #333;
    outline: none;
    text-decoration: none;
}
a:hover, a:active {
    text-decoration: none;
}

*:focus {
    outline: none;
}

img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
}
a:hover img {
    opacity: 0.9;
    filter: alpha(opacity=90);
}

.text-center { text-align: center; margin: 0 auto; }
.text-left { text-align: left; margin: 0; }
.text-right { text-align: right; margin: 0; }
.red { color: #b20004; }

p {padding:0.3rem 0 0;
    text-align: justify;
    text-shadow: -1px -1px 8px #e60327;
    letter-spacing: 0.03em;
}

h3 { 
    font-weight: 700;
    text-shadow: -1px -1px 8px #e60327;
}

@media screen and (max-width: 992px) {
    body { font-size: 1.1em; }
}


#wrapper { width: 100%; overflow: hidden; }
main { width: 100%; }

#main-area::before {
    content: "";
    display: block;
    position: fixed;
    top: 0; left: 0;
    z-index: -1;
    width: 100%; height: 100vh;
background-color: #d2000f;
}





.title-logo{
    width: 100%;
    max-width: 640px;
    margin: 60px auto 0px;

}

/* --- キャッチコピー --- */
.catch-copy2 {
margin: auto;text-align: center;width:8.5vw;padding: 6rem 0;
}
@media screen and (max-width: 992px) {
.catch-copy2 { width:20vw;}
}

/*
---------------------------------------------
h2
---------------------------------------------
*/
.title-area {
    margin: auto;
    width: 100px;
    background-image: url("../svg/loader-tan.svg");
    background-size:100%;
    background-position: top 50%
        ;
    background-repeat: no-repeat;
}
h2 {
    padding-top: 60px;
    width: 58px;
    font-size: 1.6rem;
    line-height: 1.5;
    font-weight: 700;
    -ms-writing-mode: tb-rl;
    text-orientation: upright;
    writing-mode: vertical-rl;
    align-items: center;
    margin-bottom: 30px;
    text-shadow: 3px 3px 8px #000;
}
h2 span {
    font-weight: 400;
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.1rem;
    padding-top: 15px;
    text-orientation: mixed;
}


/* ------------------------------------------------------------------- 
 * responsive:
 * h2
 * ------------------------------------------------------------------- */
@media screen and (max-width: 992px) {
    .title-area {
        margin: auto;
        width: 80px;
    
        background-size: 100%;
        background-position: center top;
        background-repeat: no-repeat;
    }
    
        .title-logo{
    max-width: 80%;

}
    
    
    
    h2 {
        padding-top: 60px;
        width: 48px;
        font-size: 1.2rem;
        line-height: 1.5;
        font-weight: 700;
        -ms-writing-mode: tb-rl;
        writing-mode: vertical-rl;
        align-items: center;
        margin-bottom: 30px;
    }
    h2 span {
        font-weight: 400;
        display: block;
        font-size: 0.7rem;
        letter-spacing: 0.1rem;
        padding-top: 15px;
    }
}
/* ------------
 * font-family
 ------------ */
.copyright, .entry-date, nav, h3, h2, midashi {}
h2 span, .scrolldown {
    font-family: "EB Garamond", serif;
}

/* ------------------------------------------------------------------- 
 * top
 * ------------------------------------------------------------------- */
.loading {  /*display: none !important;*/
  position: fixed;
  top:0; left:0;
  width:100%; height:100%;
  background:#d2000f;
  z-index:1500;
  overflow:hidden;
}

.loader-text {
  position: absolute;
  top:20%; left:50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  writing-mode: vertical-rl;
  text-orientation: upright; visibility: hidden; /* 最初は隠す */
}

.loader-text p {
  color:#fff;
  margin: 0;
  padding: 0;
  font-size:1.58rem;
  line-height:1.5;
  white-space: nowrap;
}

/* iOSでも縦になる縦線 */
.loader-text .symbol {
  display: inline-block;        /* ブロック化 */
  width: 2px;                   /* 線の太さ */
  height: 1em;                  /* 線の高さ */
  background-color: #fff;       /* 線の色 */
  margin-left: 0.3em;           /* 文字との間隔 */
  vertical-align: bottom;
}
.loader-text.active {
  visibility: visible; /* JSで順番アニメーション前に表示 */
}

/* スマホ対応 */



/* #top */
#top {
  opacity: 1;
  position: relative;
  z-index: 1;
  transition: opacity 1s ease;  
  overflow: hidden;
}

/* YouTube overlay */
#yt-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

#yt-popup {
  width: 80%;             /* PCは80% */
  max-width: 1200px;
  aspect-ratio: 16 / 9;   /* 高さ自動計算 */
  background: #000;
  position: relative;
}
#yt-popup iframe {
  width: 100%;
  height: 100%;
  display: block;
}

#yt-popup .close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2rem;
  color: #fff;
  background: transparent;
  border: none;
  cursor: pointer;
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
  #yt-popup {
    width: 100%;
    height: auto;
  }

}
/* VIDEO OVERLAY */
.video-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  display: none; /* 初期は非表示 */
}

.video-wrapper {
  width: 80%;
  max-width: 1200px;
  aspect-ratio: 16 / 9;
  background: #000;
}
.video-wrapper iframe {
  width: 100%;
  height: 100%;
  display: block;
}
.video-overlay 
.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2rem;
  color: #fff;
  background: transparent;
  border: none;
  cursor: pointer;
}
/* レスポンシブ */
@media screen and (max-width:768px){
  .video-wrapper {
    width: 100%;
    height: auto;
  }
  .loader-text p { font-size:1.5rem; }
}
@media screen and (max-width:480px){
  .loader-text p { font-size:1.2rem; }
}


/* TOP VISUAL */

/* ビジュアルのズーム */
#top .bg_mc img {
  transform: scale(1.05); /* 初期は少し拡大 */
  transition: transform 12s ease-out; /* 12秒かけて等倍へ戻す */
}

#top.active .bg_mc img {
  transform: scale(1);    /* 等倍でズームイン */
}
#top .catch-copy {
    position: absolute;
    right:14%;
   width:8vw;
    top:5%;
}
#top .catch-copy img {
    width: 100%; 
}
#top .title {
    position: absolute;
    right: 0.5%;
    width: 15vw;
    top: 1%;
    filter: drop-shadow(0px 0px 30px rgba(22, 22, 22, 0.9)) drop-shadow(0px 0px 2px rgba(22, 22, 22, 0.8));
}
/* 初期状態は透明 */
#top .catch-copy,
#top .title {
  opacity: 0;
  transition: opacity 1s ease;
}

/* activeで順番にフェードイン */
#top.active .catch-copy {
  opacity: 1;
}

#top.active .title {
  opacity: 1;
}
@media screen and (max-width:992px){
    
#top .catch-copy {

    right:20%;
   width:14vw;
    top:70%;
    bottom: 0;
}
    #top .title { 
        position: absolute;
        left: 40%;
        width: 22vw;
        top:44%;
    }
}
/* ------------------------------------------------------------------- 
 * topics
 * ------------------------------------------------------------------- */
#topics {
    margin: 0 auto;
    padding: 60px 0;

}
.topics-content {
    padding: 30px 0 0;
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 auto;
    text-align: center;
}
.topics-L {
    width: 17%;
}
.topics-R {
    width: 73%;
}
#feed {
    width: 100%;
    background:#ab0713;
    border: double 6px #231815;
}
#feed ul.entry {}
#feed ul.entry li {
    line-height: 1.2;
    padding: 2% 10%;
    text-align: left;
    font-size: 1rem;
    margin-bottom: 10px;
    border-bottom: 2px solid #231815;
}
#feed ul.entry li a, #feed ul.entry li a:visited {
    color: #eee;
    text-decoration: none;
}
#feed ul.entry li .entry-date {
    color: #fff;
    display: block;
}
/* ------------------------------------------------------------------- 
 * responsive:
 * topics
 * ------------------------------------------------------------------- */
@media screen and (max-width:1240px) {
    #topics {
        width: 100%;
        max-width: 100%;
        padding: 30px 0;
    }
    .topics-content {
        width: 100%;
        display: block;
        margin: 0 auto;
        text-align: center;
        max-width: 90%;
    }
    .topics-L {
        width: 100%;
        margin: 0 auto;
        text-align: center;
    }
    .topics-R {
        width: 100%;
        margin: 30px auto 0;
        text-align: center;
    }
    #feed {
        width: 100%;
    }
    #feed ul.entry {
        margin: 0 auto;
    }
    #feed ul.entry li {
        line-height: 1.8;
    }
    #feed ul.entry li .entry-date {
        display: block;
    }
} /*end*/
/* ------------------------------------------------------------------- 
 * topics Movie
 * ------------------------------------------------------------------- */
#top-movie {}
#topics-movie .videos {
    width: 100%;
    max-width: 1200px;
    padding: 50px 0;
    margin: 0 auto;
    text-align: center;
}
.videos {
    width: 100%;
    padding: 0;
    margin: 0 auto;
    text-align: center;
}
.movie--node {
    position: relative;
    padding-top: calc(9/16 * 100%);
}
iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.col_2 {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
}
.col_2 > div {
    width: 48%;
    padding: 10px;
}
.col_2 > div > div {
    position: relative;
    overflow: hidden
}
@media screen and (max-width: 992px) {
    
    #topics-movie{padding:60px 0;}
    
    
    #topics-movie .videos {
        padding: 0;
        width: 100%;
        max-width: 100%;
        background: none;
    }
    .col_2 > div {
        width: 100%;
        padding: 20px 0 20px 0;
    }
    .videos {
        width: 100%;
        max-width: 560px;
        padding: 0;
        margin: 0 auto;
        text-align: center;
    }
} /*end*/



/* ------------------------------------------------------------------- 
 * charactor
 * ------------------------------------------------------------------- */
#charactor {margin: 0;
    padding: 60px 0;
      background: linear-gradient(to bottom, #362552 5%, #0a0615);
}
.charactor {
    background: #362552;
    padding: 0;
    margin: 0 auto;
    text-align: center;
}
.charactor .section_inner {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 80%;
    margin: auto;
}
.charactor .section_inner .charactor_space {
    width: 24%;
    margin: 0;
    padding: 0.5%;
}
.charactor .section_inner .charactor2 {
    width: 24%;
    margin: auto;
    text-align: center;
    padding: 0.5% 0.5% 1%;
}
.charactor2 {
    position: relative;
    text-align: center;
}


.character-box {
  margin-bottom: 20px;
}

.character-description {padding: 0.2rem 0.2rem;
  font-size: 0.88rem;
  line-height: 1.4;min-height: 80px; /* 好みの高さに調整 */
}

/*ギャラリー内のイメージは横幅100%にする*/
#character .section_inner .charactor2 img {
    width: 100%;
    height: auto;
    vertical-align: bottom; /*画像の下にできる余白を削除*/
}
#character .section_inner .charactor2 img:hover {}
.zoomIn img {
    transform: rotate(0deg) scale(1);
    transition: .6s ease-in-out;
}
.zoomIn img:hover {
    transform: rotate(3deg) scale(1.4);
}
/*　画像のマスク　*/
.mask {
    display: block;
    line-height: 1; /*行の高さを0にする*/
    overflow: hidden; /*拡大してはみ出る要素を隠す*/
}



/*PC 画面幅が 992px 以上のときにだけ*/
@media screen and (min-width:992px) {
    /*1D*/
    .item10 {
        order: 1;
    }
    .item1 {
        order: 3;
    }
    .item2 {
        order: 2;
    }
    .item11 {
        order: 4;
    }
    /*2D*/
    .item3 {
        order: 3;
    }
    .item4 {
        order: 2;
    }
    .item5 {
        order: 4;
    }
    .item6 {
        order: 1;
    }
    /*3D*/
    .item12 {
        order: 1;
    }
    .item7 {
        order: 3;
    }
    .item8 {
        order: 2;
    }
    .item13 {
        order: 4;
    }
} /**/




/* ------------------------------------------------------------------- 
 * responsive:
 *charactor
 * ------------------------------------------------------------------- */
@media screen and (max-width:992px) {
    .charactor {
        padding: 0 0 30px;
    }
    .charactor .section_inner .charactor_space {
        display: none;
    }
    .charactor .section_inner .charactor2 {
        width: 68%;
        margin: 2rem auto;
    }

 
    .character-description {min-height: 40px; /* 好みの高さに調整 */
}
    
} /**/


/* ------------------------------------------------------------------- 
 * overlay banner
 * ------------------------------------------------------------------- */
.fix-pc {
    position: fixed;
    animation-name: fadey_bottom_start;
    animation-duration: 7s;
    z-index: 9998;
    left: 10px;
    bottom: 10px;
    background: #442970;
}
.fix-txt {

    padding: 0.1rem 0.3rem;
}
.fix-pc-wrap {
    margin: 0 auto;
    text-align: center;
    padding: 13px;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 400;
    line-height: 0.8rem;
}
.fix-pc-wrap i {
    font-size: 1rem;
}
.fix-pc-wrap a:link {
    color: #fff;
    text-decoration: none;
}
.fix-pc-wrap a:visited {
    color: #fff;
    text-decoration: none;
}
.fix-pc-wrap a:active {
    color: #fff;
    text-decoration: none;
}
.fix-pc-wrap a:hover {
    color: #d2000f;
    text-decoration: none;
}
/* ------------------------------------------------------------------- 
 * responsive:
 * overlay banner
 * ------------------------------------------------------------------- */
@media screen and (max-width:1024px) {
    .fix-sp {
        width: 100%;
        max-width: 100%;
        position: fixed;
        animation-name: fadey_bottom_start;
        animation-duration: 7s;
        z-index: 9998;
        left: 50%;
        transform: translateX(-50%);
        bottom: 0;
        background: #442970;
        height: auto;
    }
    .fix-txt {
  
        padding: 1rem 0.3rem;
        margin-bottom: 8px;
    }
    .fix-sp-wrap {
        margin: 0 auto;
        text-align: center;
        color: #fff;
        font-size: 0.85rem;
        font-weight: 400;
        line-height: 0.9rem;
        padding: 10px 5px;
    }
    .fix-sp-wrap i {
        font-size: 0.8rem;
    }
    .fix-sp-wrap a:link {
        color: #fff;
        text-decoration: none;
    }
    .fix-sp-wrap a:visited {
        color: #fff;
        text-decoration: none;
    }
    .fix-sp-wrap a:active {
        color: #fff;
        text-decoration: none;
    }
    .fix-sp-wrap a:hover {
        color: #ebff00;
        text-decoration: none;
    }
} /*end*/
@keyframes fadey_bottom_start {
    0% {
        opacity: 0;
    }
    90% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
/* ------------------------------------------------------------------- 
 * g-nav
 * ------------------------------------------------------------------- */



#g-nav {
    /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
    position: fixed;
    z-index: -1;
    opacity: 0; /*はじめは透過0*/
    /*ナビの位置と形状*/
    top: 0;
    width: 100%;
    height: 100vh; /*ナビの高さ*/
    background: #d2000f;
    /*動き*/
    transition: all 0.3s;
}
/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive {
    opacity: 1;
  z-index: 5000 !important; /* 強制で最前面 */
}

#g-nav.panelactive,
#nav-bg {
    opacity: 1;
  z-index: 5000 !important; /* 強制で最前面 */
}
/* nav-fix はナビ中は消す（スマホではすでにやっている） */
#g-nav.panelactive ~ .nav-fix {
    opacity: 0;
    pointer-events: none;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 1000;
    width: 100%;
    height: 100vh; /*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}
/*ナビゲーション*/
#g-nav ul {
    display: none;
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
#g-nav.panelactive ul {
    display: block;
}


#g-nav-list {
    display: none;
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}
#g-nav.panelactive #g-nav-list {
    display: block;
}
/*ナビゲーション*/
#g-nav ul {
    opacity: 0;
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
#g-nav.panelactive ul {
    opacity: 1;
    flex-wrap: wrap;
}
#g-nav.panelactive li {
    text-align: center;
    width: 100%;
}
#g-nav.panelactive li a {
    font-size: 1.2rem;
    padding:10px 0;margin: 10px 0;
    color: #fff;
}

#g-nav.panelactive li a:hover {
color: #b20004;
}

.gnavi div.follow {
    display: flex;
    align-items: stretch;
    text-align: center;
    margin: auto;
    width: 250px;
    padding: 10px 0;
}
.in a, .tw a, .yt a {
    width: 33px;
    margin: 0 10px;
}
.in-img, .tw-img, .yt-img {
    width: 28px;
}

.in a:hover, .tw a:hover, .yt a:hover {
opacity: 0.5;
}


.nav-fix {
    position: fixed;
    top: 0;
    right: 15px;
    z-index: 1000;
    padding: 15px;
    transition: 0.2s;
    opacity: 0;
}
.nav-fix img {
    width: 30px;
    margin-top: 0;
    margin-left: 5px
}
@media screen and (max-width: 992px) {
    .nav-fix {
        display: none;
    }
} /*end*/

/*===========================================================*/
/*左から右に線
/*===========================================================*/
@media screen and (min-width: 1200px) { /* 1200px以上の場合に適用 */
    .gnavi {
        width: 100%;
        max-width: 50%;
    }
} /*end*/
@media screen and (max-width: 992px) {
   #g-nav {
        padding: 40px 0;
    }
    #g-nav a {
        font-size: 1rem;
    }
    .gnavi {
        width: 100%;
        max-width: 90%;
    }
}
.gnavi {
    display: flex;
    justify-content: flex-start;
    list-style: none;
    text-transform: uppercase;
    font-size: 0.95rem;
    font-weight: 500;
    /*background-color:rgba(0,0,0,0.9);*/
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    perspective: 1000;
}
.gnavi a, .gnavi a:visited {
    display: block;
    padding: 10px 5px;
    color: #fffefb;
    /*background-color:rgba(255,39,98,1);*/
    /*background-color:rgba(0,0,0,1);*/
    text-decoration: none;
}
.gnavi {
    line-height: 1.2;
}
.gnavi span {
    display: block;
    font-size: 0.5rem;
}
.nav01d li a {
    /*線の基点とするためrelativeを指定*/
    position: relative;
}
.nav01d li.current a:hover {
    color: #b20004;
}
.nav01d li a::after {
    content: '';
    /*絶対配置で線の位置を決める*/
    position: absolute;
    top: 40px;
    left: 10%;
    /*線の形状*/
    width: 80%;
    height: 1px;
    background: #b20004;
    /*アニメーションの指定*/
    transition: all .3s;
    transform: scale(0, 1); /*X方向0、Y方向1*/
    transform-origin: center top; /*左上基点*/
}
/*現在地の形状の設定*/
.nav01d li.current a::after {
    transform: scale(0.2, 1); /*X方向に0.2スケール拡大*/
}
/*現在地を含むhoverの設定*/
.nav01d li.current a:hover::after, .nav01d li a:hover::after {
    transform: scale(1, 1); /*X方向にスケール拡大*/
}
/*===================================
メニュー
===================================*/
.openbtn {
    position: fixed;
    display: block;
    top: 15px;
    left: 15px;
    z-index: 9999; /*ボタンを最前面に*/
    cursor: pointer;
    width: 60px;
    height: 40px;
    filter: drop-shadow(0px 0px 30px rgba(22, 22, 22, 0.9)) drop-shadow(0px 0px 2px rgba(22, 22, 22, 0.8));
}
.openbtn span {
    display: inline-block;
    transition: all .4s; /*アニメーションの設定*/
    position: absolute;
    left: 14px;
    height: 2px;
    background: #fff;
}
.openbtn span:nth-of-type(1) {
    top: 15px;
    width: 90%;
}
.openbtn span:nth-of-type(2) {
    top: 22px;
    width: 90%;
}
.openbtn span:nth-of-type(3) {
    top: 29px;
    width: 90%;
}
/* × */
.openbtn.active span {
    background: #999;
}
.openbtn.active span:nth-of-type(1) {
    top: 15px;
    left: 10px;
    transform: translateY(3px) rotate(-210deg);
    width: 100%;
}
.openbtn.active span:nth-of-type(2) {
    opacity: 0;
}
.openbtn.active span:nth-of-type(3) {
    top: 22px;
    left: 10px;
    transform: translateY(-3px) rotate(210deg);
    width: 100%;
}

.fadeIn {
    opacity: 0;
    transition: 1s;
    transform: translateY(0px);
}
.fadeIn.is-inview {
    transform: translateY(0);
    opacity: 1;
}
.fadeInUp {
    opacity: 0;
    transition: 1s;
    transform: translateY(20px);
}
.fadeInUp.is-inview {
    transform: translateY(0);
    opacity: 1;
}
.blurUp {
    opacity: 0;
    transition: 1.5s;
    filter: blur(30px);
    transform: scale(1.1);
}
.blurUp.is-inview {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
}
.blurUp {
    opacity: 0;
    transition: 1s;
    transform: scale(1.2);
}
.blurUpLeft {
    opacity: 0;
    transition: 1s;
    filter: blur(50px);
    clip-path: inset(5%);
}
@media screen and (max-width: 992px) {
    .blurUpLeft {
        clip-path: inset(5%);
    }
}
.blurUpLeft.is-inview {
    opacity: 1;
    clip-path: inset(0%);
    filter: blur(0);
    transform: scale(1);
}
.clipDown {
    opacity: 0;
    transition: 2s;
    clip-path: inset(0% 0% 100% 0);
}
.clipDown.is-inview {
    clip-path: inset(0%);
    opacity: 1;
}

/*-------------------------------------------------------------------*/
.mt-1, .pt-1 {
    padding-top: 0.5em;
}
.mt-2, .pt-2 {
    padding-top: 1em;
}
.mt-3, .pt-3 {
    padding-top: 1.5em;
}
.mt-4, .pt-4 {
    padding-top: 2em;
}
.mt-5, .pt-5 {
    padding-top: 2.5em;
}
.mb-1, .pb-1 {
    padding-bottom: 0.5em;
}
.mb-2, .pb-2 {
    padding-bottom: 1em;
}
.mb-3, .pb-3 {
    padding-bottom: 1.5em;
}
.mb-4, .pb-4 {
    padding-bottom: 2em;
}
.mb-5, .pb-5 {
    padding-bottom: 2.5em;
}
/* ------------------------------------------------------------------- 
 * e.t.c
/*-------------------------------------------------------------------*/
.pc {
    display: block !important;
}
.sp {
    display: none !important;
}
/* ------------------------------------------------------------------- 
 * responsive:
 *  e.t.c
 * ------------------------------------------------------------------- */
@media screen and (max-width: 992px) {
    .pc {
        display: none !important;
    }
    .sp {
        display: block !important;
    }
} /*end*/

/*
---------------------------------------------
footer
---------------------------------------------
*/
#footer {
    padding: 120px 0 60px;
   background-repeat: no-repeat;
    background-position: center center;
    background-image:  url("../img/bg-fuji.jpg");
    background-size: cover;
    overflow: hidden;
}
.other-page #footer { background-image:none;}

.footer-content {
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
    text-align: center;
}
.footer-content img {
filter: drop-shadow(2px 2px 15px black);
}

.foot-logo,.foot-cast{
    width: 100%;
    max-width: 540px;
    margin: 3rem auto 0;
    text-align: center;
}
.foot-gc{
    width: 100%;
    max-width: 200px;
    margin:5rem auto 0;
    text-align: center;
}



.footer-content ul.follow {
    margin: 20px 0 0;
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer-content .follow .tw a img, .footer-content .follow .is a img, .footer-content .follow .yt a img, .footer-content .follow .fb a img, .footer-content .follow .tt a img {
    padding: 10px;
    width: auto;height: 40px;
}
/* ------------------------------------------------------------------- 
 * responsive:
 * footer
 * ------------------------------------------------------------------- */

@media screen and (max-width:992px) {
    #footer {
        padding: 200px 0 120px;
    }
    .footer-content {
        width: 100%;
        max-width: 80%;
    }
    
    
.foot-logo,.foot-cast{
    max-width: 80%;
}
  .foot-gc{
 max-width: 50%;
}  
    
} /**/
.kome {
    font-size: 0.85rem;
    list-style: none;
    padding-left: 1.5em;
    margin-left: 0.5em;
}
.kome li {
    text-indent: -1.5em;
    line-height: 1.5;
}
.kome li:before {
    content: "※";
    margin-right: 0.5em;
}


.other-page{ background-repeat: no-repeat;
 background: linear-gradient(to bottom, #d2000f, #362552);
  background-attachment: fixed;}


.other-page p {padding:0.3rem 0 0;
    text-align: justify;
    text-shadow: none;
    letter-spacing: 0.03em;
}

/*
---------------------------------------------
maeuri ticket
---------------------------------------------
*/
#maeuri{    padding: 0;margin:0 auto;

    /*background-image:  url("../img/bg-fuji-2.jpg");
    background-size:contain;
    background-color: #000;*/
    overflow: hidden;}




#ticket {width: 100%;margin: auto;background:  url("../img/W.jpg");
padding: 60px 0;
}

.header_logo{
    width: 100%;
    max-width: 150px;
    margin: 1.5rem auto;
    text-align: center;
}
.ticket-content {color: #333;
  width: 100%;

  margin: 0 auto 2rem;
  text-align: center;
  max-width:1000px; 
}

 .ticket-content h4{
  font-size: 1.8rem;
  font-weight: 700;
  color: #281040;
  border-bottom: 3px solid #d2000f;
  padding-bottom: 0.3rem;
  margin: 3rem 0 1rem;
  letter-spacing: 0.1rem;
}

 .ticket-text{text-align: left;}

/* ===========================
   ページ内リンクデザイン＆クリック保証
=========================== */

.page-link-area {
  margin: 40px auto;
  text-align: center;
}

ul.page-link-nav {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-link-nav li {
   /* pointer-events: auto !important; 安全対策 */
}

.page-link-nav a {
  display: block;
  padding: 12px 0 5px;
  font-size: 0.9rem;
  line-height: 1.4;
  text-decoration: none;
   /* ←pointer-events: auto !important;クリック保証 */
  cursor: pointer;
  z-index: auto;       /* ←覆われても最前面に */
  position: relative;

  /* デザイン */
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid #d2000f;
  border-radius: 0.5rem;
  color:#d2000f;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);       /* ガラス風 */min-height:50px;min-width:130px;
}

.page-link-nav a:hover {
  background: #d2000f;
  color: #000;
  transform: translateY(-3px);      /* 浮かせる */
  box-shadow: 0px 8px 15px rgba(0,0,0,0.4);
}



.mubiticket-box {
  border: 1px solid #999; /* 外枠の罫線 */
  padding: 20px;
  position: relative;
  
  max-width: 90%;
  margin: 60px auto;
}

.mubiticket-title {
  position: absolute;
  top: -15px; /* タイトルを罫線からはみ出す位置に調整 */
  left: 20px;
   background: url("../img/W.jpg");
  padding: 0 10px;
  font-size: 1.5em;
  font-weight: bold;
}

.mubiticket-box p{text-shadow: none;}

@media screen and (max-width: 992px) {

    .ticket-content {
  max-width:90%;
}
    
  .page-link-nav a {
    font-size: 0.8rem;
    padding: 10px 14px 0;
  }
    
     .ticket-content h4{
  font-size: 1.1rem;

}

    
    
}/**/




.mt-img {margin: auto;text-align: center;
}
.mt-img img.img-movtic{margin: auto;
   max-width: 500px;
}
.mt-img img.img-tokuten{margin: auto;
   max-width: 400px;
}
/* ＝＝＝ TABLE 基本デザイン ＝＝＝ */
.ticket-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  margin: 1.5rem auto;
}

.ticket-table th,
.ticket-table td {
  border-bottom: 1px solid #d2000f;
  padding: 12px;
  vertical-align: top;
  text-align: left;
}

/* 左側（項目） */
.ticket-table th {
  background:  rgba(210, 0, 15, 0.2) ;
color: #281040;
  width: 25%;
}

/* 右側（説明） */
.ticket-table td {
  /*background: #f7e7eb;*/
}

/* ＝＝＝ スマホ対応：段積みに変身！ ＝＝＝ */
@media screen and (max-width: 768px) {

  .ticket-table, 
  .ticket-table tbody, 
  .ticket-table tr,
  .ticket-table th,
  .ticket-table td {
    display: block;
    width: 100%;
  }

  /* 行ごとにBOX化 */
  .ticket-table tr {
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
  }

  /* 左列（項目） */
  .ticket-table th {
    width: 100%;
    border-bottom: none;

  }

  /* 右列（内容） */
  .ticket-table td {
    border-top: none;
  }
}


/* ------------------------------------------------------------------- 
 * intro
 * ------------------------------------------------------------------- */
#intro {
  overflow: hidden;  padding: 60px 0;
    background: linear-gradient(to bottom, transparent 5%, );
}
#intro .section_inner {
  position: relative;
}
#intro .section_inner .section_header {
  overflow: hidden;
  position: relative;
}
#intro .section_inner .section_header .header_bg {
  position: relative;
}
#intro .section_inner .section_header .header_bg img {
background-size: cover;
}
#intro .section_inner .section_main h3 {

  font-size: 1.5em;
}
#intro .section_inner .section_header h2 {
  display: block;
  width: 100%;
  position: absolute;
  top: 40%;left: -50%;
}

#intro .section_inner .section_header h2.header_copy {
  position: absolute;
  right: 10%;
  top: 50%;
  width: 30%;
}
#intro .section_inner .section_main_bg {

}
#intro .section_inner .section_main {
  padding: 50px;
  max-width: 750px;
  margin: 0 auto;
}
#intro .section_inner .section_main h3 {
  text-align: center;
  margin-bottom: 0.5em;
}
#intro .section_inner .section_main h3:last-of-type {
  margin-bottom: 60px;
}
/* ------------------------------------------------------------------- 
 * responsive:
 * intro
 * ------------------------------------------------------------------- */

@media screen and (max-width: 992px) {
  #intro .section_inner .section_header .header_bg img {
    width: 100%;
    height: 80vw;
    object-fit: cover;
  }
  #intro .section_inner .section_header h2 {
    width: 100%;top:35%;
    bottom: auto;
    left: -51%;
    font-size: 1.3rem;
    filter: drop-shadow(0px 0px 30px rgba(22, 22, 22, 0.9)) drop-shadow(0px 0px 2px rgba(22, 22, 22, 0.8));
  }
  #intro .section_inner .section_header h2 img {
    width: 60%;
  }
  #intro .section_inner .section_main {
    padding: 20px;
    max-width: 94%;
    margin: 0 auto;
  }
  #intro .section_inner .section_main_bg {

  }
  #intro .section_inner .section_main h3 {
    font-size: 1.1rem;
  }
  #intro .section_inner .section_main h3:last-of-type {
    margin-bottom: 40px;
  }
  #intro .section_inner .section_main .text_body p {
    font-size: 0.9rem;
  }
} /*end*/
/* ------------------------------------------------------------------- 
 * story 
 * ------------------------------------------------------------------- */
#story {padding:60px 0;
background: linear-gradient(to bottom, transparent 5%, #362552);
  overflow: hidden;
}
#story .section_inner {

}


#story .section_inner .section_main {margin: auto;
  padding: 50px;
  max-width: 750px;
  margin: 0 auto;
}
#story .section_inner .section_main h2 {
  width: 50%;
  margin: 0 auto 60px;
  text-align: center;
}
#story .section_inner .section_main h3 {
  margin: 0 0 60px auto;
  font-size: 1.5em;
  line-height: 1.6;
  margin-bottom: 60px;
  
}
#story .section_inner .section_main .text_body {
  margin: 0 0 0 auto;
}
#story .section_inner .section_main .text_body p {
  text-align: justify;
  margin-bottom: 1em;
}
/* ------------------------------------------------------------------- 
 * responsive:
 * story
 * ------------------------------------------------------------------- */
@media screen and (max-width: 992px) {
#story .section_inner .section_main {display: block; 
  padding: 0px 0 0 0;
  width: 90%;
  margin: 0 auto;
}
#story .section_inner .section_header .header_bg img {
  width: 100%;
  max-width: 100%;
}
  #story .section_inner .section_main h3 {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }
  #story .section_inner .section_main .text_body p {
    font-size: 0.9rem;
  }
} /*end*/
/* ===========================
   Other Loading
=========================== */

#loading-circle {
  position: fixed;
  inset: 0;
  background: #d2000f;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity .6s ease;
}

body.loaded #loading-circle {
  opacity: 0;
  pointer-events: none;
}

/* 中央の円 */
#loading-circle::before {
  content: "";
  width: 45px;
  height: 45px;
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 50%;
  animation: circle-breath-slow 2.8s infinite ease-in-out;
}

@keyframes circle-breath-slow {
  0%,100% { transform: scale(1); opacity: .45; }
  50%     { transform: scale(1.25); opacity: 1; }
}

.other-page p a, .other-page p a:visited{
    color: #333;text-decoration: underline;
}
.other-page p a:hover, a:active {
    text-decoration: none;
}


/*==================================================
矢印ボタンチケット PC
===================================*/
.button-ticket-off {
    font-weight: 700;
    display: inline-block;
    color: /*#d2000f*/ #666;
    background: #999;
    width: 90%;
    max-width: 90%;
    padding: 10px 30px 10px 20px;
    text-align: center;
    margin: 0;
    border: 3px solid /*#d2000f*/ #666;border-radius:0.5rem;
    cursor: pointer;
    position: relative;
    text-decoration: none;
    pointer-events: none;
}
.button-ticket {
    font-weight: 700;
    display: inline-block;
    color: #d2000f;
    background: #eee;
    width: 90%;
    max-width: 90%;
    padding: 10px 30px 10px 20px;
    text-align: center;
    margin: 0;
    border: 3px solid #d2000f;border-radius:0.5rem;
    cursor: pointer;
    position: relative;
    text-decoration: none;
}
.button-ticket::after {
    content: "";
    display: block;
    position: absolute;
    top: calc(50% - 5px);
    right: 20px;
    width: 20px;
    height: 5px;
    border: none;
    border-right: 2px solid #d2000f;
    border-bottom: 1px solid #d2000f;
    transform: skew(45deg);
    transition: .3s;
}
.button-ticket:hover {
    background: #d2000f;
    color: #eee
}
.button-ticket:hover::after {
    right: 10px;
    width: 30px;
    border-right: 2px solid #eee;
    border-bottom: 1px solid #eee;
}
@media screen and (max-width: 992px) {
    .button-ticket-off {
        width: 100%;
       max-width: 80%;
        padding: 15px 30px 15px 15px;
    }
    .button-ticket {
        width: 100%;
        max-width: 80%;
        padding: 15px 30px 15px 15px;
    }
}