html {
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #222;
    scroll-behavior: smooth;
    scroll-padding-top: 120px; 
    }

* {
    box-sizing: border-box;
}

body {
    margin: 0;
}

img {
    max-width: 100%;
  }
  
  a {
    text-decoration: none;
    color: black;
  }
  
  a:hover {
    color: #F7B686;
  }

  li {
    list-style: none;
  }

 

header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}
 
/*ロゴの大きさを調整*/
#logo img {
    max-width:50%;
}
 
nav{
    width: 100%;
    height: 70px;
    position: relative;
    background: #F6F6F6;
    opacity: 95%;
}
 
.drawer{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: relative;
    height: 70px;
    padding: 0 1em;
}
 
/*ナビゲーション部分*/
 
.menu ul li a {
    display:block;
    font-weight:bold;
    padding: 2em;
    border-bottom: 1px dotted #CCC;
    color:#000000;
    text-decoration:none;
}
 
 
.menu ul li a:hover
{background-color:rgba(0,0,0,0.5);
color:orange;}
 
 
.menu{
 
  text-align:center;
  background-color:rgb(255, 255, 255);
  transition: 0.5s ease;/*滑らかに表示*/
  -webkit-transform: translateX(100%);/*画面より100%外へ押し出し非表示にさせる*/
 
/*  transform: translateX(-100%);/*右から出す場合は、マイナス100%としてください*/
 
}
 
/*OPEN時の動き*/
.menu.open {
 -webkit-transform: translateX(0%);
 transform: translateX(0%);/*メニューを元の位置へ戻す*/
 
}
 
/*トグルボタンのスタイルを指定*/
.Toggle {
    display: block;
    position: fixed;    /* bodyに対しての絶対位置指定 */
    width: 42px;
    height: 42px;
    cursor: pointer;
    z-index: 3;
    right:15px;
}
 
.Toggle span {
    display: block;
    position: absolute;
    width: 50px;
    border-bottom: solid 4px #333;
    -webkit-transition: .35s ease-in-out;	/*変化の速度を指定*/
    -moz-transition: .35s ease-in-out;		/*変化の速度を指定*/
    transition: .35s ease-in-out;			/*変化の速度を指定*/
 
}
 /*各ボーダー少しずつずらす*/
.Toggle span:nth-child(1) {
    top:5px;
}
 .Toggle span:nth-child(2) {
    top: 18px;
}
 .Toggle span:nth-child(3) {
    top: 32px;
}
.Toggle.active span:nth-child(1) {
    top: 18px;
/* 1番目のspanをマイナス45度に */
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
 
/* 2番目と3番目のspanを45度に */
.Toggle.active span:nth-child(2),
.Toggle.active span:nth-child(3) {
    top: 18px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}
 
/*----------------------------------ここからPCモニターの記述-----------*/
@media screen and (min-width: 768px) {
 
/*ロゴの大きさを調整*/
#logo img{max-width:250px;}	
	
nav{
    display: flex;
}
 
.Toggle{
    display: none;
}
.menu{
    width: 100%;
    font-size:0.9em;
    background-color: transparent;
    margin:0 10px;
    -webkit-transform: translateX(0);
    transform: translateX(0);
}
.menu ul{
    height: 70px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
}
.menu ul li a{
    padding: 0 1em;
    border-bottom: none;
}
.menu ul li a:hover{
    background-color:transparent;
}
}

ul {
    padding-left: 0px;
}


.mv_outer {
    line-height: 0;
    font-size: 0;
    overflow: hidden;
    position: relative;
  }
  
  .mv_outer svg {
    display: block;
    width: 100%;
    height: auto;
    vertical-align: bottom;
  }

  .mv_outer::after {
    content: '';
    display: block;
    height: 1px;
    background: #fff;
    margin-top: -1px;
  }

  .character svg { display: block; }

  


.mv_outer {
    text-align: center;
}

.mv_wrapper {
    display: flex;
    background-color: #ff3131;
    padding-top: 150px;
    padding-bottom: 50px;
    display: flex;
    justify-content: center;  /* 横方向中央寄せ */
    align-items: center;      /* 縦方向中央寄せ（必要に応じて） */
    gap: 2rem; 

}

.mv {
    img {
        text-align: center;
        width: 800px
    }
}

@media screen and (max-width: 768px) {
    .mv_wrapper {
      flex-direction: column; /* ← これで縦並びになる！ */
      padding-top: 100px;
    }
    .mv {
        img {
            padding: 0.5rem;
        }
    }
  }

.btn {
    width: 300px;
    margin: 0 auto;
    margin-bottom: 2rem;
}

a.btn_06 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 300px;
    height: 50px;
    box-sizing: border-box;
    background: repeating-linear-gradient(45deg, #ffffff, #ffffff 3px, #e7e7e7 3px, #e7e7e7 30px);
    color: #333;
    font-size: 14px;
    letter-spacing: 0.1em;
    text-decoration: none;
    position: relative;
  }
  a.btn_06 span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px;
    background: #fff;
    border: 1px solid #000;
    box-sizing: border-box;
    position: absolute;
    top: -6px;
    left: -6px;
    transition-duration: 0.2s;
  }
  a.btn_06:hover span {
    left: -1px;
    top: -1px;
  }

.title {
    text-align: center;
    margin: 100px auto;
}

section {
    margin-top: 150px;
    margin-bottom: 150px;
}

.story {
    h2 {
        margin: 50px 100px 50px 100px;
    }
    h1,h2,h3,p {
        text-align: center;
    }
    p {
        margin: 2rem;
        line-height: 3;
    }
}

.story,.character,.info,.ticket {
    
h2 {
    padding-bottom: 1rem;
    font-size: 2rem;
    border-bottom: 2px solid #222;
   }

h1,h2,h3,h4,p {
    text-align: center;
    }
p {
    margin: 2rem;
    }

}

.bold {
    font-weight: bold;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}


.character {
    margin-bottom: 0;
    background-color: #ff3131;
    background-image: linear-gradient(#ff3131, #ffffff 47%, #ff3131);
    padding-bottom: 80px;
    h2 {
        margin: 100px 50px;
    }
    
}

.chara_set {
    display: flex;
    margin-top: 80px;
    .chara {
        margin: 0 auto;
    }
}

.chara {
    margin-top: 80px;
}

@media(max-width:768px){
    .chara_set {
    display:block;
    .chara {
        margin-top: 80px;
    }
    }
  }

.charaimg {
    width: 300px;
    height: 300px;
    margin: 0 auto;
    flex-shrink: 0;
    img {
        width: 300px;
        height: 300px;
        object-fit: cover;
    }
    .cast_aya {
        object-position: 0 -60px;
    }
    .cast_tomomi {
        object-position: -150px ;
    }
    .cast_kai {
        object-position: 0 ;
    }
    .cast_shinno {
        object-position: -50px ;
    }
    .cast_takeuchi {
        object-position: 0 -10px;
    }
    .cast_sakamoto {
        object-position: 0 -10px;
    }
    .cast_gift {
        object-position: 0;
    }
    .cast_yoshioka {
        object-position: 0;
    }
    .cast_sanada {
        object-position: 0 -20px;
    }
    .cast_kumasaka {
        object-position: 0 -10px;
    }
    .cast_michii {
        object-position: 0 -70px;
    }
    .cast_takeda {
        object-position: 0 -10px;
    }
    .cast_nishiki {
        object-position: 0 -10px;
    }
}

.charaname {
    margin: auto;
    }


.info {
    h2 {
        margin: 50px;
        }
    h3 {
        width: 150px;
        margin:50px auto ;
        position: relative;
        padding: 0.25em 0;
    }
    h3:after {
        content: "";
        display: block;
        height: 4px;
        background: -webkit-linear-gradient(to right, rgb(230, 90, 90), transparent);
        background: linear-gradient(to right, rgb(230, 90, 90), transparent);
      }
    h3:first-letter {
        font-size: 2em;
        color: #ff3131;
      }
    h4 {
        margin-bottom: 0;
    }
    p {
        line-height: normal;
        }
    a {
        img {
            width: 25px;
            vertical-align: -6px;
            }    
        }
    }

table {
    margin: 30px auto;
    border-spacing:1cap
}

.cast_inner {
    padding-bottom: 1rem;
}

.map_wrap {
    width: 70%;
    margin: 0 auto;
  }
  
.map_wrap img {
    display: block;
    margin: 0 auto;
  }

.small_font {
    font-size: 0.7rem;
}

.ticket {
    h2 {
        margin: 50px;
        }
    h1,h2,h3,h4,p {
        text-align: center;
        }
    p {
        margin: 2rem;
        line-height: 3;
        }   
}

.ticket_wrap {
    margin-top: 80px;
    margin-bottom: 80px;
}

.support {
    .logo_wrap {
        width: 300px;
        margin: 0 auto;
    }
    h2,p {
        text-align: center;
    }
    p {
        margin: 2rem;
    }
}

.sub_visual {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    flex-shrink: 0;
    img {
        margin: auto;
        width: 200px;
        height: 200px;
        object-position: 0 -10px;
        object-fit: cover;
        border-radius: 50%;
    }
}

.footer {
    display: flex;
    height: auto;
    padding: 50px;
    margin-top: 50px;
    justify-content: center;
    p {
        font-size: 0.7rem;
    }
    svg {
        margin-top: 100px;
    }
}

.footer_left {
    margin-right: 2rem;
    img {
        width: 100px;
    }
}

@media(max-width:768px){
    .footer {
        display: block;
    }
    .footer_left {
        text-align: center;
        margin: 0;
    }
    .footer_right {
        text-align: center;
    }
    }

