:root {
    --base: #f4f0e7;
    --paper:url("../img/paper01.webp");
    --ink: #151515;
    --muted: rgba(21, 21, 21, .72);
    --line: rgba(0, 0, 0, .15);
    --pink: #c63b68;
    --yellow: #d2a021;
    --red: #9f312b;
    --black: #101010;
    --fontJ: 'Noto Sans JP', system-ui, sans-serif;
    --fontE: 'Bebas Neue', Impact, sans-serif;
}

html{
    overflow-x:hidden;
}
body {
    font-family: var(--fontJ);
    color: var(--ink);
    font-size: 16px;
    line-height: 1.9;
    letter-spacing: .035em;
    overflow-x: hidden;
 position:relative;
    background-color:var(--base);
    background-image:var(--paper);
    background-repeat:repeat;
    background-size:2048px auto;
    background-position: top center;
}

@media (max-width:860px){
    body {
        font-size: 14px;
        line-height: 1.85
    }
  }/**/   


/* =========================================================
   Anchor Scroll Offset
========================================================= */
html {
  scroll-padding-top: 70px;
}

@media (max-width: 860px) {
  html {
    scroll-padding-top: 78px;
  }
}


/* =========================================================
   四隅がほんの少し暗く
========================================================= */
body::after{
    content:"";
    position:fixed;
    inset:0;
    pointer-events:none;

    background:
    radial-gradient(circle at center,
    transparent 60%,
    rgba(0,0,0,.08) 100%);
}

/* =========================================================
   noise OVERLAY
========================================================= */
.noise {
  position: fixed;
  inset: 0;
  z-index: 2147483647;
  pointer-events: none;
  background-image: url("../img/noise.webp");
  background-repeat: repeat;
  background-size: 220px 220px;
  opacity: .12;
  /* ★要素は動かさず、背景だけ切り替える */
  animation: grainBg 1.4s steps(1) infinite;
  will-change: background-position;
}
@keyframes grainBg {
  0% {
    background-position: 0px 0px;
  }
  13% {
    background-position: 12px -8px;
  }
  27% {
    background-position: -8px 14px;
  }
  39% {
    background-position: 16px 6px;
  }
  58% {
    background-position: -14px -6px;
  }
  74% {
    background-position: 8px -14px;
  }
  91% {
    background-position: -16px 8px;
  }
  100% {
    background-position: 0px 0px;
  }
}

/* =========================================================
   Global Nav
========================================================= */
.header {
position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
    padding: 0 34px;
    mix-blend-mode: normal;
}
.brand {
    font-weight: 900;
    font-size: 14px;
    letter-spacing: .08em;
   opacity:0;
    transform:translateY(-8px);
    transition:
        opacity .35s ease,
        transform .35s ease;
}
.header.is-scrolled{    background:rgba(244,240,231,.55);
    backdrop-filter:blur(8px);}
.header.is-scrolled .brand{
    opacity:1;
    transform:translateY(0);
}
.nav {
    display: flex;
    gap: 23px;
    font-family: var(--fontE);
    font-size: 20px;
    letter-spacing: .08em
}
.nav a {
    position: relative; 
}
.nav a:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 1px;
    height: 2px;
    background: var(--pink);
    transform: scaleX(0);
    transform-origin: left;
    transition: .25s
}
.nav a:hover:after {
    transform: scaleX(1)
}
.menu {
    display: none
}


@media (max-width:860px){

    
      .brand{
    display: none;
  }
    .header {justify-content: flex-end;
        height: 58px;
        padding: 0 18px;   
    }
    

    .nav {
        position: fixed;
        inset: 0 0 auto auto;
        width: 78%;
        height: 100svh;
        background: #111;
        color: #fff;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 42px;
        font-size: 27px;
        transform: translateX(100%);
        transition: .28s;
        mix-blend-mode: normal
    }
    .nav.is-open {
        transform: translateX(0)
    }



.menu{
    
    margin-left:auto;
    display:grid;
    place-items:center;
    width:58px;
    height:58px;
    background:#111;
    color:#fff;
    position:relative;
    z-index:3001;
}

.menu span{
    position:absolute;
    left:50%;
    width:24px;
    height:2px;
    margin:0;
    background:#fff;
    transform:translateX(-50%);
    transition:
        transform .28s ease,
        opacity .2s ease,
        top .28s ease;
}

.menu span:nth-child(1){
    top:18px;
}

.menu span:nth-child(2){
    top:26px;
}

.menu em{font-family: var(--fontE); font-style: normal; 
    position:absolute;
    bottom:3px;
    left:50%;
    transform:translateX(-50%);
    transition:opacity .2s ease;
}

/* OPEN */

.menu.is-open em{
    opacity:0;
}

.menu.is-open span:nth-child(1){
    top:22px;
    transform:translateX(-50%) rotate(45deg);
}

.menu.is-open span:nth-child(2){
    top:22px;
    transform:translateX(-50%) rotate(-45deg);
}

 
 }/**/



/* =========================================================
   media 
========================================================= */
.pc{display:block;}
.sp{display:none;}

@media (max-width:860px){
.pc{display:none;}
.sp{display:block;}
}

.nowrap{
    white-space: nowrap;
}
/* =========================================================
   Base Scrap
========================================================= */


.page {
    position: relative;
    min-height: 50vh;
    padding: 60px 0;
    overflow: hidden
}


.piece {
    position: absolute;
    display: block;
    pointer-events: none;
    user-select: none
}

.rotL {
    transform: rotate(-3deg)
}
.rotR {
    transform: rotate(3deg)
}
.layer1 {
    z-index: 1
}
.layer5 {
    z-index: 5
}
.kvP01 {
    width: 58vw;
    left: -5vw;
    bottom: 6vh;
    opacity: .9
}
.kvP02 {
    width: 36vw;
    right: -8vw;
    top: -2vh;
    height: 80vh;
    object-fit: cover;
    opacity: .9;
    /*clip-path: polygon(0 0, 100% 3%, 95% 100%, 4% 94%)*/
}
.kvTape01 {
    object-fit: cover;
    left:0;width: 20vw;
    bottom: 0;
    transform: rotate(-180deg) scaleX(1);
    transform-origin: center center;
}

.scrap {
    position: relative;
    z-index: 2;
    width: min(1060px, 88vw);
    margin: auto
}

@media (max-width:860px){   .page {
        padding: 76px 0
    } }/**/
/* =========================================================
   Contents Title
========================================================= */
.head{
  margin-bottom:36px;
}

.head h2{
  display:inline-block;
  font-size:50px;
  font-family:var(--fontE);
  line-height:1.2;
  transform:rotate(-2deg);
  transform-origin:left center;
  white-space:nowrap;
}

.titleLine{
  display:block;
  min-height:8px;
  margin-top:.35rem;
  object-fit:fill;
  transform:rotate(-1deg);
  transform-origin:left center;
}
.head-staff{
    margin-left:56px;
}
.head-news .titleLine{ width:120px; }
.head-intro .titleLine{ width:390px; }
.head-story .titleLine{ width:150px; }
.head-cast .titleLine{ width:160px; }
.head-staff .titleLine{ width:150px; }
.head-ticket .titleLine{ width:380px; }

@media (max-width:860px){
     .head {
        grid-template-columns: 34px auto;
        margin-bottom: 26px
    }
    .head h2{
    font-size:38px;
  }

    .head-staff{
    margin-left:0px;
}
    
  .head-news .titleLine{ width:180px; }
  .head-intro .titleLine{ width:300px; }
  .head-story .titleLine{ width:120px; }
  .head-cast .titleLine{ width:160px; }
  .head-staff .titleLine{ width:180px; }
  .head-ticket .titleLine{ width:280px; }

}/**/



/* =========================================================
   Top
========================================================= */

.kv {
    min-height: 100svh;
    padding: 105px 0 70px;
    background: linear-gradient(120deg, #faf7ee 0%, #f4f0e7 100%)
}
.kvInner {
    position: relative;
    z-index: 10;
    width: min(1180px, 90vw);
    margin: auto;
    display: grid;
    grid-template-columns: .9fr 1.05fr;
    align-items: center;
    gap: 70px
}
.small {
    font-weight: 900;
    font-size:16px;
    margin-bottom: 42px
}

.logo {
  max-width: 450px;
}
.copy {

    margin-top: 38px;max-width: 400px;
}
.open {
    font-size: 34px;
    font-weight: 900;
    margin-top: 32px;
    letter-spacing: .08em
}
.kvPhoto {
    position: relative;
    z-index: 3;
    transform: rotate(2.2deg);
    background: #fff;
    padding: 0;
    clip-path: polygon(3% 0, 100% 4%, 96% 93%, 7% 100%, 0 8%)
}
.kvPhoto img {
    width: 100%;
    height: min(72vh, 680px);
    object-fit: cover;
    filter: contrast(1.05) saturate(.95)
}

@media (max-width:860px){
    .kv {
        padding: 78px 0 64px;
        min-height: 100svh;
    }
    .kvInner {
        width: 90vw;
        display: block
    }
    .logo {max-width: 90%;
       
    }
    .small {
        margin-bottom: 28px
    }
    .copy {
max-width: 70%;
    }
    .open {
        font-size: 24px
    }
    .kvPhoto {
        margin-top: 38px;
        transform: rotate(-1.5deg)
    }
    .kvPhoto img {
        height: auto
    }
    .kvP01 {
        width: 100vh;
        left: -2vw;
        top:60vh
    }
    .kvP02 {
        width: 70vw;
        height: 50vh;
        right: -30vw
    }
    .kvTape01 {
    right:0;
    bottom:0;
    width:20vw; 
    }
}/**/

/* =========================================================
  News
========================================================= */
.news {
    background: url("../img/tearBeige.png") center/cover;
      min-height:auto;
    padding:80px 0 60px;position:relative;
    overflow:hidden;
}
.newsTape{
    position:absolute;
    right:-2%;
    top:-5%;
    width:20%;
}
.newsList a {
    display: grid;
    grid-template-columns: 120px 46px 1fr;
    gap: 18px;
    align-items: center;
    border-bottom: 1px solid var(--line);
    padding: 16px 0;
    font-weight: 700
}



.newsList time {
    font-family: var(--fontE);
    font-size: 20px
}
.newsList b {
    background: #111;
    color: #fff;
    font-size: 8px;
    text-align: center;
    padding: 2px 4px;
    line-height: 1.5;
}
.newsList span{
transform: translateX(0);transition: .25s;
}
.newsList span:hover{
opacity: 0.8; transform: translateX(4px);
}

.newsScroll {
  /* 1件あたり約72px × 3件 */
  max-height: 216px;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: #ef8fb4 transparent;
}

.newsList {
  min-height: 72px;
}

.newsScroll::-webkit-scrollbar {
  width: 5px;
}

.newsScroll::-webkit-scrollbar-track {
  background: transparent;
}

.newsScroll::-webkit-scrollbar-thumb {
  background: #ef8fb4;
  border-radius: 10px;
}
.more {
    display: inline-block;
    margin-top: 34px;
    font-family: var(--fontE);
    font-size: 22px;
    letter-spacing: .08em
}
.newsMore {
  position: relative;margin-top: 34px;font-size: 22px;
  display: inline-block;font-family: var(--fontE);
  color: inherit;
  text-decoration: none;
  font-weight: 600;
  transition: .25s;
}

.newsMore::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 6px;
  background: #f7b6cf; /* サイトで使っているピンク */
  opacity: .9;
  z-index: -1;
  transform: scaleX(1);
  transform-origin: left;
  transition: transform .25s ease;
}
.newsMore:hover{
opacity: 0.8; transform: translateX(4px);
}
.newsMore:hover::after {
  transform: scaleX(1.5);
}
@media (max-width:860px){
    .newsList a {
        grid-template-columns: 1fr;
        gap: 4px;
        padding: 13px 0;
    }

    .newsList b {
        width: 42px;
    }

    .newsTape {
        width: 130px;
        right: 7%;
        top: 43px;
    }
    
    .newsScroll {
  /* 1件あたり約72px × 3件 */
  max-height: 288px;
 
}
    
    
}/**/

/* =========================================================
  Intro
========================================================= */

.intro{
    position:relative;
    padding:150px 0 80px;
  background:
        url("../img/tearOrangebottom.png") top center / 100% auto no-repeat,
        #f4f0e7;
}
.introTear{
    position:absolute;
    top:-55px;
    left:0;

    width:100%;
    height:120px;

    object-fit:cover;
    transform:rotate(-180deg);

    pointer-events:none;
    z-index:10;
}


.introPaper{

    width:min(920px,92vw);

    padding:80px;
transform:rotate(-0.8deg);
margin:auto;
 position:relative;
 z-index:10;
}
.introPaper .lead {
    font-size: 22px;
    font-weight: 900;
}


.introPaper h3{
    margin:3.5rem 0 1rem;
    font-size:1.3rem;
    font-weight:900;
    letter-spacing:.06em;
    line-height:1.4;
}

.introPaper p{
    margin-bottom:1.2em;
}

.introPaper h3:first-of-type{
    margin-top:2rem;
}



@media(max-width:860px){


    .intro {
        padding: 90px 0
    }
    
.introPaper{
    width:94vw;
    padding:24px;
}
    
    .introPaper .lead {
        font-size: 18px
    }


}/**/

/* =========================================================
   INTRO → STORY Bridge
========================================================= */

.storyBridge {
    position: relative;
    z-index: 20;
    width: 100%;
    height: 120px;
    margin: -110px 0 100px;
}

.storyBridge__inner {
    position: relative;
    width: min(920px, 92vw);
    height: 100%;
    margin: 0 auto;
}

.storyBridge__tape {
    position: absolute;
    top: 12px;
    right: 110px;
    z-index: 2;
    width: 115px;
    height: auto;
    transform: rotate(-9deg);
    pointer-events: none;
}

.storyBridge__memo {
    position: absolute;
    top: 28px;
    right: -45px;
    z-index: 1;
    width: 460px;
    margin: 0;
    padding: 18px 26px;
    background: url("../img/tapeYellow.png") center / 100% 100% no-repeat;
    transform: rotate(-3deg);
}

.storyBridge__memo img {
    display: block;
    width: 90%;
    height: auto;
    margin: 0 auto;
}

/* =========================================================
   Story
========================================================= */

.story {
    position: relative;
    overflow: hidden;
    padding: 20px 0 120px;
}

.story::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
    height: 320px;
    background: url("../img/tearBlackbottom.png") center bottom / cover no-repeat;
    transform: scaleY(-1);
    transform-origin: center;
}

.story > * {
    position: relative;
}

/* 写真 */
.storyVisual {
    z-index: 5;
    width: 100%;
}

.storyVisual__inner {
    position: relative;
    width: min(920px, 82vw);
    margin: 0 auto;
    transform: translateX(-4vw) rotate(-2.5deg);
    transform-origin: center;
}

.storyVisual__photo {
    position: relative;
    z-index: 2;
    margin: 0;
}

.storyVisual__photoInner {
    display: block;
    padding: 13px 13px 24px;
    background: #f7f3e9;
}

.storyVisual__photoInner img {
    display: block;
    width: 100%;
    height: auto;
}

/* テープ */
.storyVisual__tape {
    position: absolute;
    z-index: 3;
    width: 105px;
    height: auto;
    pointer-events: none;
}

.storyVisual__tape--left {
    top: -22px;
    left: 11%;
    transform: rotate(-8deg);
}

.storyVisual__tape--right {
    right: 10%;
    bottom: -15px;
    transform: rotate(6deg) scaleX(-1);
}

/* 黄色い紙 */
.storyPaperWrap {
    position: relative;
    z-index: 10;
    width: 100%;
    margin-top: 42px;
}

.storyPaper {
    position: relative;
    width: min(860px, 84vw);
    margin: 0 auto;
    padding: 92px 98px;
    background: url("../img/graph.png") center bottom / cover;
    box-shadow: 0 16px 40px rgba(0, 0, 0, .12);
    transform: translateX(4vw) rotate(1deg);
    transform-origin: center;
}

.storyCols {
    font-weight: 700;
}

.storyBlock + .storyBlock {
    margin-top: 2em;
}

.storyCols p {
    margin-bottom: 1.3em;
}

.story .memo img {
    display: block;
    width: 58%;
    margin: 110px 0 40px auto;
}

/* =========================================================
   Story SP
========================================================= */

@media (max-width:860px){
    .storyBridge {
        height: 95px;
        margin: -80px 0 80px;
    }

    .storyBridge__inner {
        width: 94vw;
    }

    .storyBridge__tape {
        top: 4px;
        right: 45px;
        width: 76px;
    }

    .storyBridge__memo {
        top: 22px;
        right: -4px;
        width: 78%;
        padding: 12px 16px;
    }

    .story {
        padding: 0px 0 80px;
    }

.storyVisual{
    width:98vw;
    margin:0 auto;
    transform:none;
}

.storyVisual__inner{
    width:98vw;
    transform:rotate(-1.2deg);
}

    .storyVisual__photo {
        padding: 7px;
    }

    .storyVisual__photoInner {
        padding: 8px 8px 15px;
    }

    .storyVisual__tape {
        width: 62px;
    }

    .storyVisual__tape--left {
        top: -5px;
        left: 10%;
    }

    .storyVisual__tape--right {
        right: 8%;
        bottom: -12px;
    }

    .storyPaper {
        width: 90vw;
        margin: -16px auto 0;
        padding: 48px 22px 34px 28px;
            transform:translateX(0) rotate(.3deg);
    }

    .storyBlock + .storyBlock {
        margin-top: 1.8em;
    }

    .story .memo img {
        width: 80%;
        margin: 34px 0 40px auto;
    }
}

/* =========================================================
  Cast
========================================================= */
.cast {color: #eee;
    position:relative;
    padding:60px 0 200px;background:url("../img/tearBlackbottom.png") center/cover;
}
.castTear {
   right: 0;
   bottom: 0;
    width: 20%;
    height: auto;

    transform: scaleY(-1)
}
.castInner {
    width:min(1120px,90vw);
    margin-left:4vw;
    position: relative;
    z-index: 3
}


.castCards{
  display:grid;
    grid-template-columns:repeat(3,280px);
    justify-content:center;
   gap:46px;
  margin-top:48px;line-height: 1.45;
}

.castCard{
  appearance:none;
  border:0;
  background:transparent;
  color:inherit;
  padding:0;
  text-align:left;
  cursor:pointer;
  position:relative;
  transform:rotate(-1.4deg);
}

.castCard:nth-child(1){
    transform:rotate(-2deg) translateY(0);
}

.castCard:nth-child(2){    margin-top:24px;
    transform:rotate(1.5deg) translateY(26px);
}

.castCard:nth-child(3){  margin-top:8px;
    transform:rotate(-1deg) translateY(10px);
}
.castPhoto{   position:relative;
  display:block;
  background:#fff;
 padding:12px 12px 62px;
  box-shadow:0 18px 36px rgba(0,0,0,.34);
  transition:
    transform .55s cubic-bezier(.22,1,.36,1),
    box-shadow .55s cubic-bezier(.22,1,.36,1),
    filter .55s ease;
}


.castCard:hover .castPhoto{
  transform:translateY(-10px) rotate(.8deg);
  box-shadow:0 28px 58px rgba(0,0,0,.48);
  filter:brightness(1.06);
}

.castPhoto > img:first-child{
    display:block;
    width:100%;
    aspect-ratio:3 / 4;
    object-fit:cover;
    filter:grayscale(.1) contrast(1.08);
}
.photoSign{
    position:absolute;
   left:52%;
    bottom:10px;
    width:90px;
    height:auto;
    transform:translateX(-50%) rotate(-2deg);
    pointer-events:none;
}


.castRole{
  display:block;
  margin-top:8px;
  font-family:var(--fontE);
  font-size:18px;
  letter-spacing:.14em;
  color:rgba(255,255,255,.5);
}

.castName{    margin-top:10px;
    font-size:36px;
    letter-spacing:.06em;
  display:block;
  font-weight:900;
}
.castMore{
    position:relative;
    display:inline-block;
    margin-top:8px;
    padding:0 .35em;
    color:#fff;
    font-weight:700;
    line-height:1.4;
    z-index:1;
}

.castMore::after{
    content:"";
    position:absolute;
    left:-4px;
    right:-10px;
    bottom:-0.6em;
    height:.68em;

    background:#df4f86;

    clip-path:polygon(
        0 18%,
        8% 8%,
        20% 14%,
        36% 5%,
        54% 13%,
        72% 7%,
        88% 18%,
        100% 48%,
        91% 62%,
        78% 82%,
        61% 75%,
        44% 88%,
        26% 78%,
        10% 90%,
        0 76%
    );

    opacity:.82;
    z-index:-1;
    transform:rotate(-1deg);
    transform-origin:left center;
    transition:
        right .25s ease,
        transform .25s ease,
        opacity .25s ease;
}

.castCard:hover .castMore::after,
.staffMain:hover .castMore::after{
    right:-16px;
    transform:rotate(-1deg) scaleX(1.04);
    opacity:1;
}

.castCard:hover .castMore::after{
    height:.8em;
}
.staff .castMore{
  color:#222;    transform:translateX(-18px);
  border-bottom:1px solid rgba(0,0,0,.6);
}
/* modal */
.castModal{
  position:fixed;
  inset:0;
  z-index:3000;
  display:grid;
  place-items:center;
  padding:36px;
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:
    opacity .45s ease,
    visibility .45s ease;
}

.castModal.is-open{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
}

.castModalBg{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.72);
  backdrop-filter:blur(8px);
}

.castModalPanel{
  position:relative;
  z-index:2;
  width:min(980px,92vw);
  max-height:86svh;
  overflow:auto;
  background:#f8f3e8;
  color:#151515;
  padding:42px;
  box-shadow:0 28px 80px rgba(0,0,0,.5);
  transform:translateY(22px) scale(.96) rotate(-.6deg);
  opacity:0;
  transition:
    transform .55s cubic-bezier(.22,1,.36,1),
    opacity .45s ease;
}

.castModal.is-open .castModalPanel{
  transform:translateY(0) scale(1) rotate(-.6deg);
  opacity:1;
}

.castModalGrid{
  display:grid;
  grid-template-columns:320px 1fr;
  gap:42px;
  align-items:start;
}

.castModalPhoto{
  background:#fff;
  padding:10px 10px 36px;
  box-shadow:0 12px 28px rgba(0,0,0,.18);
  transform:rotate(1.4deg);
}

.castModalPhoto img{
  display:block;
  width:100%;
  aspect-ratio:3 / 4;
  object-fit:cover;
}

.castModalLabel{line-height:1.25;
  font-family:var(--fontE);
  font-size:22px;
  letter-spacing:.12em;
  color:rgba(21,21,21,.45);
}

.castModalText h3{
  font-size:42px;
  line-height:1.25;
  letter-spacing:.12em;
  margin:4px 0;
}

.castProfile,
.castComment{
border-top:2px solid rgba(0,0,0,.15);
margin:15px 0 20px;
  padding-top:15px;

}

.castProfile h4,
.castComment h4{
    color: var(--muted);
  font-family:var(--fontE);
  font-size:18px;
  letter-spacing:.12em;
  margin:0;
}

.castComment p{
  font-weight:700;
}
.castProfile p{font-size:0.9em;
line-height: 1.45;
}
.castModalTextOnly{
    max-width:780px;
    margin:auto;
}

/* CLOSE span × */
.castModalClose{
  position:fixed;
  top:24px;
  right:24px;
  width:52px;
  height:52px;
  border:0;
  background:#111;
  cursor:pointer;
  z-index:4000;
}

.castModalClose span{
  position:absolute;
  left:50%;
  top:50%;
  width:26px;
  height:2px;
  background:#fff;
  transform-origin:center;
}

.castModalClose span:first-child{
  transform:translate(-50%, -50%) rotate(45deg);
}

.castModalClose span:last-child{
  transform:translate(-50%, -50%) rotate(-45deg);
}

body.is-modal-open{
  overflow:hidden;
}

@media(max-width:860px){
 .cast {
    padding:30px 0 200px;background:url("../img/tearBlackbottom.png") left/cover;
}
    
    .castTear {
   right: 0;
   bottom: 0;
    width: 100%;
    height: auto;

    transform: scaleY(-1)
}
    
    .castCards{
    grid-template-columns:1fr;
 gap:52px;
  }

    .castCard{
    width:min(260px,70vw);
    margin:auto;
}
    
  .castCard,
  .castCard:nth-child(2),
  .castCard:nth-child(3){
    transform:rotate(-.8deg);
  }
    .castPhoto{
        padding:10px 10px 44px;
    }

    .photoSign{
        width:70px;
        bottom:8px;
    }

  .castName{
    font-size:26px;
  }

  .castModal{
    padding:22px;
  }

  .castModalPanel{
    padding:28px 24px 34px;
    width:94vw;
  }

  .castModalGrid{
    grid-template-columns:1fr;
    gap:26px;
  }

  .castModalPhoto{
    width:min(240px,70%);
    margin:auto;
  }

  .castModalText h3{
    font-size:32px;
  }
}


/* =========================================================
  Staff
========================================================= */
.staffPaper{
    background:url('../img/note.jpg') center/cover;
    width:min(760px,86vw);
    margin:auto;
    padding:58px 62px;
    transform:rotate(-1.4deg);
}

.staffTape{
    position:absolute;
    left:0;
    width:20%;
    bottom:-10%;
    transform:rotate(-180deg) scaleX(1);
    z-index:1;
}

.staffMain{
    width:560px;
    max-width:100%;
    margin:0 0 34px;
    padding:26px 36px;

    display:grid;
    grid-template-columns:auto 1fr auto;
    align-items:center;
    column-gap:16px;

    background:url("../img/tape02.png") center/cover;
    transform:rotate(-2deg);
    position:relative;
}

.staffMain dt{
    font-size:16px;
    font-weight:700;
    color:#111;
    letter-spacing:.08em;    white-space:nowrap;
    margin:0;
}

.staffMain dd{    margin:0;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.staffMain dd > span{
    font-size:32px;
    font-weight:900;
    color:#111;
}

.staffMain .castMore{
     margin-left:auto;
    font-size:18px;
    transform:translateX(-16px);
}

.staffList{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:8px 36px;
    margin-top:28px;
}

.staffList div{
    display:grid;
    grid-template-columns:90px 1fr;
    align-items:baseline;
}

.staffList dt{
    color:#777;
    font-weight:500;
    font-size:14px;
}

.staffList dd{
    color:#111;
    font-weight:700;
    line-height:1.4;
}

@media (max-width:860px){

  .staffPaper{
    width:88vw;
    padding:34px 24px;
    transform:rotate(-1deg);
  }

  .staffTape{
    left:0;
    width:100%;
    bottom:-1%;
  }

  .staffMain{
    width:100%;
    padding:22px 20px;
    margin:0 0 24px;
    display:block;
    transform:rotate(-1deg);
  }

  .staffMain dt{
    font-size:14px;
    margin-bottom:8px;
  }

  .staffMain dd{
    display:block;
  }

  .staffMain dd > span{
    display:block;
    font-size:28px;
    line-height:1.3;
  }

  .staffMain .castMore{
    display:inline-block;
    margin-top:14px;
    margin-left:0;
    transform:none;
    font-size:13.5px;
  }

  .staffList{
    grid-template-columns:1fr;
    gap:6px;
  }

  .staffList div{
    grid-template-columns:90px 1fr;
  }
}/**/
/* =========================================================
  Tickets
========================================================= */
.ticket{
    padding:115px 0 150px;
}

.ticket::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    height:180px;
    background:url("../img/tearBlackbottom.png") center bottom/cover no-repeat;
    opacity:.9;
    z-index:0; transform: scaleY(-1)
}

.ticket > *{
    position:relative;
    z-index:1;
}

.scheduleWrap {
  width:min(920px,92vw);
    margin: auto;
    position: relative;
    z-index: 2
}

.schedule{
    display:flex;
    flex-direction:column;
    gap:40px;
}

.scheduleItem{
background:url("../img/note.jpg") left 30% top 70%/cover;
    padding:42px 48px;
    box-shadow:0 8px 18px rgba(0,0,0,.10);
    transform:rotate(-1deg);
    width:min(980px,92vw);
}

.scheduleItem:nth-child(2){
    width:min(900px,86vw);
    transform:rotate(1deg);
    margin-left:40px;
}

.scheduleItem:nth-child(3){
    width:min(950px,88vw);
    transform:rotate(-.7deg);
    margin-left:18px;
}



.scheduleBody dl{line-height: 1.55;

    display:grid;

    grid-template-columns:140px 1fr;

    row-gap:18px;

    column-gap:30px;

}

.scheduleBody dt{

    font-weight:900;

    color:var(--muted);

}

.scheduleBody dd{

    font-weight:700;

}

.scheduleBody img{

    width:100%;

    max-width:760px;

    display:block;

}

.scheduleBody a{

    border-bottom:1px solid;

}



.scheduleDate{
    margin:0;
    font-size:2rem;
    font-weight:900;
    line-height:1.2;
    color:var(--pink);
}

.scheduleImage{
    margin:18px;max-width:80%;
    width:100%;
}
.scheduleImage--s{
    margin:18px;max-width:60%;
    width:100%;
}
.scheduleImage img{
    display:block;
    width:100%;
    height:auto;
}
.scheduleImage--s img{
    display:block;
    width:100%;
    height:auto;
}.scheduleHead{
    display:flex;
    align-items:flex-end;
    gap:20px;
    margin-bottom:46px;
}

h3.scheduleEn{
    margin:0;

    font-family: var(--fontE);

   font-size:clamp(5rem,6.5vw,7.6rem);
    line-height:.85;
    font-weight:900;
    letter-spacing:-.03em;
    color:#111;
}

.scheduleStamp{
    display:inline-flex;
    align-items:top;
    justify-content:center;

    padding:8px 18px;

    /*border:3px solid #111;*/
 background: rgba(247,243,231,.8);

    font-size:1rem;
    font-weight:700;
    letter-spacing:.06em;
    line-height:1;

  margin-left:-30px;
    transform:rotate(-4deg) translateY(-8px);
    border-radius:2px;
}

.playguideLinks{
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:16px 28px;
    margin-top:20px;
}

.playguideLinks a{
    position:relative;
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    justify-content:center;

    min-height:48px;
    padding:4px .4em 10px;

    color:#111;
    font-weight:700;
    line-height:1.4;
    letter-spacing:.05em;

    border:0;
    background:transparent;

    transition:
        transform .25s ease,
        opacity .25s ease;
}

/* CASTの「コメントを読む」と同じラフな下線 */
.playguideLinks a::after{
    content:"";
    position:absolute;
    left:0;
    right:10%;
    bottom:2px;
    height:.65em;

    background:#df4f86;

    clip-path:polygon(
        0 18%,
        8% 8%,
        20% 14%,
        36% 5%,
        54% 13%,
        72% 7%,
        88% 18%,
        100% 48%,
        91% 62%,
        78% 82%,
        61% 75%,
        44% 88%,
        26% 78%,
        10% 90%,
        0 76%
    );

    opacity:.72;
    z-index:-1;
    transform:rotate(-1deg);
    transform-origin:left center;

    transition:
        right .25s ease,
        transform .25s ease,
        opacity .25s ease;
}

.playguideLinks a:hover{
    transform:translateY(-2px) rotate(-.5deg);
}

.playguideLinks a:hover::after{
    right:2%;
    opacity:1;
    transform:rotate(-1deg) scaleX(1.03);
}

.playguideLinks small{
    display:block;
    margin-top:3px;
    font-size:12px;
    font-weight:500;
    color:#666;
    letter-spacing:.03em;
}

.extLink{
    margin-left:8px;
    font-size:.8em;
    letter-spacing:.08em;
    color:#777;
    border-bottom:1px solid #bbb;
}

.extLink:hover{

    background:rgba(198,59,104,.12);

    transform:rotate(-2deg);

}


@media(max-width:860px){
h3.scheduleEn{
   font-size:3.3rem;letter-spacing: 0.03em;
}
    
    .scheduleStamp{
margin-left:-22px;
}
    

  .scheduleItem,
  .scheduleItem:nth-child(2),
  .scheduleItem:nth-child(3){
    margin-left:0;
    transform:rotate(-.6deg); padding:28px 20px;
  }

    
    
    .scheduleImage{
    margin:20px auto;max-width:96%;
    width:100%;
}
    
    
    .scheduleDate{
    font-size:1.75rem;
}
     .scheduleDate small{
    font-size:1.1rem;
}
       
    
.scheduleBody dl{

    grid-template-columns:1fr;

    row-gap:6px;

}

.scheduleBody dt{

    margin-top:14px;

}

    .playguideLinks{
        grid-template-columns:1fr;
        gap:14px;
    }

    .playguideLinks a{
        width:100%;
        min-height:44px;
        padding:4px .3em 9px;
        font-size:15px;
    }
    
    .ticketBtn {
        width: 100%;
        justify-content: center;
        padding: 18px
    }
}/**/


/* =========================================================
  Footer
========================================================= */

.footer {
    position: relative;
    background: url('../img/tearOrangebottom.png') center/cover;
    padding: 78px;
    display: grid;
    grid-template-columns: 40% 55%;
    gap: 28px
}
.footerLogo {
    width:120px;
    margin-bottom:30px;
    margin-left:5%;
}

.footerSns{
    margin:20px 0 0;text-align: right;
}

.footerSns a{
    display:inline-flex;
    align-items:center;
    gap:10px;

    font-family:var(--fontE);
    font-size:22px;
    letter-spacing:.06em;

    color:#111;margin-bottom: 20px;
}

.footerSns img{
    width:22px;
    height:22px;
    display:block;
}

.footerSns a:hover{
    opacity:.7;
}

.footerList {font-weight: 700;}


.footerList small{color: var(--muted);font-size: 14px;

}

.footer small {margin-top:20px;font-size: 13px;
    color: var(--muted)
}




@media(max-width:860px) {



    .footer {
        display: block;
        padding: 58px 7vw 80px
    }
    .footerLogo {

    margin-left:auto;
}
.footerSns{
text-align: left;
}
    .footerList {font-size: 11.5px;}
    
    .footer small {font-size: 10.5px;margin-top: 15px;
    }

}



/* =========================================================
  js
========================================================= */
.js-in{
    opacity:0;
    transform:translateY(8px);
    transition:
        opacity .65s ease,
        transform .65s cubic-bezier(.22,1,.36,1);
}

.js-in.is-in {
    opacity:1;
    transform:none;
}




/*==========================
LOADING
==========================*/

.loading{
    position:fixed;
    inset:0;
    z-index:99999;

    display:flex;
    justify-content:center;
    align-items:center;

    background:
        var(--base)
        var(--paper)
        center/2048px auto repeat;

    transition:
        opacity .7s ease,
        visibility .7s ease;
}


.loading.is-hide{
    opacity:0;
    visibility:hidden;
    pointer-events:none;   /* ←追加 */
}

.loadingInner{
    text-align:center;
}


.loadingLine{

    display:block;

    width:0;

    height:7px;

    margin:18px auto 0;

    background:url("../img/line-pencil.svg")
              left center/100% 100% no-repeat;

    animation:
        lineDraw .45s .55s forwards;
}

/* logo */

@keyframes logoFade{

    to{
        opacity:1;
    }

}

/* pencil */

@keyframes lineDraw{

    from{
        width:0;
    }

    to{
        width:160px;
    }

}

.loadingLogoWrap{
    display:inline-block;
}

.loadingLogo{
    width:min(200px,40vw);
    opacity:0;

    animation:
        logoFade .5s .15s forwards;
}

/* ロゴを左から消す */

.loadingLogo.erase{

    animation:eraseLogo .45s ease forwards;

}

@keyframes eraseLogo{

    from{
        clip-path:inset(0 0 0 0);
        opacity:1;
    }

    to{
        clip-path:inset(0 100% 0 0);
        opacity:1;
    }

}






/* =========================================================
   STORY photo entrance
   写真が左上からゆっくり入り、テープが遅れて貼り付く
   ※既存の .js-in / .is-in を利用。JS追加なし
========================================================= */

/* STORY写真ブロックは汎用 .js-in の移動量を使わず、個別に制御 */
.storyVisual.js-in {
    opacity: 1;
    transform: none;
    transition: none;
}

/* 台紙＋写真を左上から静かに入れる */
.storyVisual.js-in .storyVisual__photo {
    opacity: 0;
    transform: translate3d(-42px, -34px, 0) rotate(-1.2deg);
    transform-origin: center;
    transition:
        opacity 1.15s ease,
        transform 1.45s cubic-bezier(.22, 1, .36, 1);
}

.storyVisual.js-in.is-in .storyVisual__photo {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(0deg);
}

/* テープは写真より遅れて、少し浮いた状態から貼り付く */
.storyVisual.js-in .storyVisual__tape {
    opacity: 0;
    transition:
        opacity .42s ease,
        transform .68s cubic-bezier(.22, 1, .36, 1);
}

.storyVisual.js-in .storyVisual__tape--left {
    transform: translate3d(-12px, -16px, 0) rotate(-13deg) scale(.94);
    transition-delay: .72s;
}

.storyVisual.js-in .storyVisual__tape--right {
    transform: translate3d(13px, 15px, 0) rotate(11deg) scaleX(-1) scale(.94);
    transition-delay: .9s;
}

.storyVisual.js-in.is-in .storyVisual__tape--left {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(-8deg) scale(1);
}

.storyVisual.js-in.is-in .storyVisual__tape--right {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(6deg) scaleX(-1) scale(1);
}

@media (max-width:860px) {
    .storyVisual.js-in .storyVisual__photo {
        transform: translate3d(-24px, -22px, 0) rotate(-.8deg);
        transition-duration: 1.1s, 1.3s;
    }

    .storyVisual.js-in .storyVisual__tape--left {
        transform: translate3d(-8px, -11px, 0) rotate(-12deg) scale(.95);
    }

    .storyVisual.js-in .storyVisual__tape--right {
        transform: translate3d(8px, 10px, 0) rotate(10deg) scaleX(-1) scale(.95);
    }
}

/* =========================================================
   公式HP先行 フローティングバナー
========================================================= */
.floatingAdvance {
    position: fixed;
    left: clamp(12px, 2vw, 28px);
    right: auto;
    bottom: clamp(12px, 2vw, 24px);
    z-index: 999;
    width: min(400px, calc(100vw - 24px));
    min-height: 74px;
    color: #222;
    background:#fff;
    border: 2px solid var(--ink);
    box-shadow: 3px 3px 0 var(--yellow);
    transform: rotate(-.4deg);
    transition: transform .22s ease, box-shadow .22s ease;
}
.floatingAdvance__link {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    min-height: 74px;
    padding: 12px 42px 12px 12px;
    color: inherit;
}
.floatingAdvance::before {
    content: "CHECK!";
    position: absolute;
    top: -13px;
    left: 18px;
    padding: 3px 11px 2px;
    color: var(--ink);
    background: var(--base);
    border: 1px solid var(--ink);
    font: 700 12px/1.2 var(--fontE);
    letter-spacing: .12em;
    transform: rotate(-3deg);
}

.floatingAdvance__close {
    position: absolute;
    top: -13px;
    right: -11px;
    z-index: 2;
    width: 32px;
    height: 32px;
    padding: 0;
    border: 2px solid var(--ink);
    border-radius: 50%;
    background: var(--base);
    box-shadow: 2px 2px 0 rgba(34,34,34,.2);
    cursor: pointer;
    transition: transform .18s ease, background-color .18s ease;
}
.floatingAdvance__close span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 15px;
    height: 2px;
    background: var(--ink);
}
.floatingAdvance__close span:first-child { transform: translate(-50%, -50%) rotate(45deg); }
.floatingAdvance__close span:last-child { transform: translate(-50%, -50%) rotate(-45deg); }
.floatingAdvance__close:hover {
    background: #fff;
    transform: rotate(8deg) scale(1.06);
}
.floatingAdvance.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(16px) rotate(-.4deg);
}

.floatingAdvance__title {
    flex: 0 0 auto;
    padding: 8px 12px;
    color: #fff;
    background: var(--pink);
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: .06em;
    white-space: nowrap;
}
.floatingAdvance__date {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 9px;
    min-width: 0;
    flex: 1;
    color:var(--pink);
    line-height: 1;
}
.floatingAdvance__date > span { 
    display: flex;
    align-items: baseline;
    gap: 4px;
    white-space: nowrap;
}
.floatingAdvance__date strong {
    font: 400 clamp(25px, 3vw, 34px)/.9 var(--fontE);
    letter-spacing: .01em;
}
.floatingAdvance__date small {color: #222;
    font-size: 12px;
    font-weight: 900;
}

@media (hover:hover) {
    .floatingAdvance:hover {
        transform: translate(-3px, -3px) rotate(0);
        box-shadow: 6px 6px 0 var(--yellow);
    }
}
@media (max-width: 860px) {
    .floatingAdvance {
        left: 8px;
        bottom: 8px;
        max-width: 328px;
        min-height: 0;
        box-shadow: 2px 2px 0 var(--yellow);
        transform: none;
    }
    .floatingAdvance::before {
        display: none;
    }
    .floatingAdvance__link {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 7px 10px;
        min-height: 0;
        padding: 10px 36px 9px 11px;
    }
    .floatingAdvance__close {
        top: -10px;
        right: -6px;
        width: 28px;
        height: 28px;
    }

    .floatingAdvance__title {

        align-items: center;
        padding: 7px 10px;
        font-size: clamp(16px, 5vw, 20px);
    }
 
    .floatingAdvance__date > span {
        gap: 3px;
    }

    .floatingAdvance__date strong {
        font-size: clamp(22px, 7vw, 28px);
    }
    .floatingAdvance__date small {
        font-size: 10px;
    }

}

/* =========================
   NEWS下 公式HP先行バナー
========================= */
/* =========================
   NEWS下 公式HP先行バナー
========================= */

.newsPresale {
  width: min(540px, calc(100% - 40px));
  margin: 28px auto 0;
}

.newsPresale__link {
  display: grid;
  grid-template-columns: 108px 1fr auto;
  align-items: center;
  gap: 22px;

  padding: 13px 20px 13px 0;

  color: var(--base);
  text-decoration: none;

  background:
    linear-gradient(
      90deg,
      #8b2c2b 0%,
      #b13a46 45%,
      #8b2c2b 100%
    );

  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--yellow);

  transition:
    transform .2s ease,
    box-shadow .2s ease;
}

.newsPresale__check {
  display: grid;
  place-items: center;

  padding: 5px;
  margin-right: 16px;

  color: var(--yellow);
  background: var(--black);
  border: 2px solid var(--yellow);

  font-family: var(--fontE);
  font-size: 28px;
  line-height: 1;
  letter-spacing: .03em;
}

.newsPresale__body {
  min-width: 0;
}

.newsPresale__title {
  margin: 0 0 4px;

  color: var(--base);
  font-family: var(--fontJ);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: .06em;
}

.newsPresale__date {
  margin: 0;

  color: #f8f5ee;
  font-family: var(--fontE);
  font-size: 40px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: .02em;
  white-space: nowrap;
}

.newsPresale__date small {
  color: #f0dcb3;
  font-family: var(--fontE);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: .04em;
}

.newsPresale__arrow {
  margin-left: 8px;

  color: var(--base);
  font-family: var(--fontE);
  font-size: 44px;
  line-height: 1;

  transition: transform .2s ease;
}

@media (hover: hover) {
  .newsPresale__link:hover {
    transform: translate(-2px, -2px);
    box-shadow: 8px 8px 0 var(--yellow);
  }

  .newsPresale__link:hover .newsPresale__arrow {
    transform: translateX(8px);
  }
}

/* SP */
@media (max-width: 700px) {
  .newsPresale {
    width: calc(100% - 28px);
    margin-top: 20px;
  }

  .newsPresale__link {
    grid-template-columns: 76px 1fr auto;
    gap: 10px;

    padding: 9px 12px 9px 0;
    box-shadow: 3px 3px 0 var(--yellow);
  }

  .newsPresale__check {
    margin-right: 8px;
    padding: .4em .45em;
    font-size: 20px;
  }

  .newsPresale__title {
    margin-bottom: 3px;
    font-size: 15px;
    letter-spacing: .04em;
  }

  .newsPresale__date {
    font-size: clamp(21px, 6vw, 28px);
    line-height: 1.05;
    white-space: normal;
  }

  .newsPresale__date small {
    font-size: 10px;
  }

  .newsPresale__arrow {
    margin-left: 0;
    font-size: 31px;
  }
}