@charset "UTF-8";

body {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  color: white;
  position: relative;
  font-size: 100%;

  background-image: 
    url(images/bg_pc_text.png),   /* ← 下部に置きたい画像 */
    url(images/bg_pc.jpg);       /* ← メイン背景 */

  background-position: 
    center bottom,   /* 1枚目: 下に固定 */
    center center;   /* 2枚目: 中央 */

  background-repeat: no-repeat, no-repeat;
  background-size: 100%, cover;   /* 1枚目は原寸 or contain、2枚目はcover */
  background-attachment: fixed, fixed; /* 両方固定 */
}

html {
  font-size: 15px;
  line-height:1.8;
  letter-spacing: .8px;
  scroll-behavior: smooth;
}
.bold {
  font-weight: bold !important;
}

.font-size-SS {
  font-size:1.3em;
}
.font-size-14px {
  font-size:14px;
}
.font-size-S {
  font-size:1.5em;
}
.font-size-M {
  font-size:1.8em;
}
.font-size-L {
  font-size:2.2em;
}
.sold-out {
  color: #e40012;
  font-weight: bold;
  font-size:16px;
}
.mail_text {
  font-weight: bold;
  font-size:14px;
  line-height: 1.5;
  
}
.button-mail {
  background-color: white;
  border-radius: 50px;
  border: 2px solid #e40012;
  border-bottom:4px solid #e40012;
  color: #e40012;
  padding:8px;
  margin:15px 0;
  width:100%;
  padding-left:30px;
  display: inline-block;
  text-align: center;
  position: relative;
  font-size:18px;
  font-weight: bold;
}
.button-mail::before {
  content: ""; 
  background-image: url("images/icon_button-mail.png"); 
  background-size: cover; 
  width: 40px; 
  height: 40px; 
  position: absolute; 
  left: 10px; 
  top: 50%; 
  transform: translateY(-50%); 
}

.wrapper {
  padding:20px;
}

.red-line-box{
padding:30px;
}
img {
  max-width: 100%;
}
.pc {
  display: none;
}
@media(min-width: 550px){
  .hamburger__icon{
    display: none !important;
  }
.sp__contents{
  width: 500px;
  overflow: hidden;
  position: absolute;
  right: 0;
  left: 0;
  margin: 0 auto;

}
.pc__wrapper {
  width:100%;
  position: relative;
}

.pc__wrapper__line-left {
  position: fixed;
  left: calc(50% + 260px);
  width: 100px;
  height: 100vh;
  background-image: url(images/text_pusu_pc.png);
  background-repeat: repeat-y;
  background-size: 60px; 
  z-index: 10;
  animation: loop-text-left 300s linear infinite;
}

@keyframes loop-text-left {
  from {
      background-position: 0 0;
  }
  to {
      background-position: 0 -4474px; 
  }
}

.pc__wrapper__line-right {
  position: fixed;
  right: calc(50% + 200px);
  width: 100px;
  height: 100vh;
  background-image: url(images/text_pusu_pc.png);
  background-repeat: repeat-y;
  background-size: 60px; 
  z-index: 10;
  animation: loop-text-right 300s linear infinite;
}
@keyframes loop-text-right {
  from {
      background-position: 0 -4474px;
  }
  to {
      background-position: 0 0; 
  }
}
}



@media(min-width: 1200px){
  .sp__contents{
  max-width: 500px;    
  margin: 0 auto;
  filter: drop-shadow(0 0 30px #000);
  }
  .pc__wrapper__line-left {
    right:760px;
    left:auto;
}
.pc__wrapper__line-right {
right:190px;
}
}
@media(min-width: 1500px){
.pc__wrapper__menu {
  display: block !important;
  position: fixed;
  left:4%;
  top:30%;
  padding:50px 40px;
}
.pc__wrapper__menu li{
line-height: 2.3;
}

.pc__wrapper__menu-list a:hover,
.pc__wrapper__menu-list a:focus-visible,
.pc__wrapper__menu-list a:active {
  color: #FFEE00;                 /* 触ったら黄色に */
  outline: none;                  /* デフォのアウトラインは消す */
}

}
.pc__wrapper__menu-title {
  width:100px;
  margin-bottom:10px;
}
.pc__wrapper__icon  {
  position: fixed;
  display: block !important;
  right:20px;
  top:40%;
  z-index: 20;
}
.pc__wrapper__icon img{
  width:60px;
  margin-bottom:10px;  
}
@media screen and (max-width: 500px) {
  .pc__wrapper__icon {
    right: 5px;
  }
  .pc__wrapper__icon img {
    width: 30px;
  }
}
  @media(min-width: 1950px){
 
    .pc__wrapper__line-left {
      right:860px;
}
.pc__wrapper__line-right {
  right:290px;
}
  }
.pc__wrapper__menu {
  display: none;
}

 /*
ハンバーガーメニュー
*/

.hamburger__icon{
  display: block;
  position: fixed;
  z-index: 100;
  right: 0px;
  top: 0px;
  width: 80px;
  height: 80px;
  cursor: pointer;
  text-align: center;
  border-radius: 0 0 0 30px;
}

.hamburger__icon span {
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 26px;
  background: white;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.hamburger__icon span:nth-child(1) {
  top: 25px;
}

.hamburger__icon span:nth-child(2) {
  top: 35px;
}

.hamburger__icon span:nth-child(3) {
  top: 45px;
}

.hamburger__icon.active span:nth-child(1) {
  top: 35px;
  left:26px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  background: #000;
}

.hamburger__icon.active span:nth-child(2),
.hamburger__icon.active span:nth-child(3) {
  top: 35px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  background: #000;
}

nav.hamburger__sp-menu {
  position: fixed;
  z-index: 90;
  top: 0;
  left: 0;
  transform: translateX(100%);
  transition: all 0.6s;
  width: 100%;
  height: 100vh; 
  background-color: #FFEE00;
  margin: 0 auto;
  padding: 20px 20px 30px 20px;
  display: block;
}
.hamburger__sp-menu__inner{
  padding-top:30%;

}
.hamburger__sp-menu__list{
  padding-bottom:1em;
  line-height: 2.5;
  font-weight: bold;
  font-size: clamp(1.3rem, calc(1.3rem + 1vw), 4rem);
  color: #000;
  text-align: center;
}

nav.hamburger__sp-menu ul li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.hamburger__sp-menu__logo {
  width:23%;
}

.hamburger__sp-menu__icon img{
width:50px;
}

body.active {
  overflow-y: hidden;
}

nav.hamburger__sp-menu.active {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}



/*---------------
MV
----------------*/
#mv {
.mv__wrapper {
  position: relative;
  z-index: 100;
}
}

/*---------------
story
----------------*/
.story__wrapper{
  background-color: #000;
  position: relative;
}
.ink_right {
  position: absolute;
  bottom:-240px;
  right:0;
  width:50%;
  z-index: 10;
}

/*---------------
news
----------------*/
.news__wrapper{
  padding:120px 24px 100px 24px;
  background-color: #212121;
  position: relative;
  text-align: left;
background-image: url("images/bg_news-top.jpg"),
                    url("images/bg_news-bottom.jpg");
  background-repeat: no-repeat, no-repeat;
  background-position: top center, bottom center;
}
.news__title {
  margin: auto;
  text-align: center;
}
.news__title img {
  width:160px;
}

#news .news__title {
  margin: 0 auto 24px;  /* タイトル下に少し間をあける */
  text-align: center;   /* 既存でOKだが明示 */
}

/* トグルは視覚非表示（アクセシブルに保持） */
#news .news__toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
}

/* リスト本体 */
#news .news__list {
  margin: 0;
  padding: 0;
}

/* 各行：日付・本文の2カラム。境界線は currentColor でブランド色に追従 */
#news .news__row {
  display: grid;
  grid-template-columns: 6rem 1fr; /* 左：日付（固定幅）右：本文 */
  column-gap: 1rem;
  padding: 16px 0;
  border-top: 1px solid #383838;
  text-align: left;
  /* 先頭だけ線を消す */
}
#news .news__row:first-child {
  border-top: none;
}

/* dt/dd の不要な余白をリセット */
#news .news__date,
#news .news__text {
  margin: 0;
}

/* 4件目以降は初期非表示（CSSのみ） */
#news .news__toggle:not(:checked) ~ .news__list .news__row:nth-child(n + 4) {
  display: none;
}
#news .news__toggle:checked ~ .news__list .news__row {
  display: grid;
}

/* view more ボタン：枠線も currentColor で追従、背景は透過 */
#news .news__button {
  display: grid;
  place-items: center;
  margin: 24px auto 0;
  padding: 16px 24px;
  width: min(440px, 100%);
  border: 1px solid currentColor;

  background: transparent;
  cursor: pointer;
  text-align: center;
  line-height: 1;
  user-select: none;
}

/* 文言の出し分け（CSSのみ） */
#news .news__button .hide { display: none; }
#news .news__toggle:checked ~ .news__button .show { display: none; }
#news .news__toggle:checked ~ .news__button .hide  { display: inline; }

/*---------------
cast
----------------*/
/* 既存 */
.cast__wrapper{
  background-color: #000;
  position: relative;
    background-image: url("images/bg_cast.png");
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: 100%;
}


/* ▼ 背景を Cast + Staff 全体にかける */
.cast__wrapper{
  background-color: #000;
  background-image: url("images/bg_cast.png");
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: 100%;
  padding: 10px 20px 30px; /* 全体余白（お好みで） */
}



/* タイトル（Cast） */
.cast__title{
  margin: 0 auto 28px;
  text-align: center;
  position: relative; /* ::before の上に出すため */
}
.cast__title img{ width:160px; }

/* 大キャスト */
.cast__main{
  position: relative; /* ::before の上 */
  display: grid;
  row-gap: 48px;
  margin: 24px auto 56px;
  max-width: 640px;
  text-align: center;
}
.cast__lead .cast__name--xl{
  margin: 0;
  font-size: clamp(28px, 7vw, 40px);
  line-height: 1.25;
}
.cast__affil{
  margin: 10px 0 0;
  font-size: clamp(12px, 3.2vw, 14px);
  line-height: 1.7;
  opacity: .9;
}

.cast__grid {
  position: relative;
  max-width: 880px;
  margin: 0 auto 80px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cast__area-title {
  margin: 0 auto 24px;
}
.cast__area-title img {
  width: 100%;
}

.cast__columns {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.cast__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cast__item {
  text-align: center;
}

.cast__name {
  margin: 0;
  font-size: clamp(16px, 4.4vw, 20px);
  line-height: 1.5;
}

.cast__affil--sm {
  margin: 0px 0 0;
  font-size: clamp(8px, 3.0vw, 14px);
  line-height: 1.2;
  opacity: .9;
}

.cast__columns--tokyo {
  justify-content: center;
  gap: 100px;
}

.cast__special {
  text-align: center;
  margin-top: 24px;
  margin-bottom:40px;
}

.cast__special .cast__name {
  font-size: clamp(18px, 5vw, 22px);
  margin-bottom: 4px;
}

.cast__special .cast__affil--sm {
  font-size: clamp(13px, 3.2vw, 15px);
  opacity: 0.9;
  line-height:1 ;
}
/* Staff（同じ wrapper 内） */
.staff__title{
  position: relative;
  text-align: center;
  margin: 8px auto 24px;
}
.staff__title img{ width: 220px; }

.staff__body{
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  row-gap: 12px;
  line-height: 1.6;
  font-size:13px;
}
.staff__block{ margin-top: 10px; }

/* 共通ラッパー（既存wrapper内で使う想定） */
.credit{
  max-width: 760px;
  margin: 0 auto 56px;
}
.credit__title{
  text-align: center;         /* 画像見出しを左寄せ（中央なら center） */
  margin: 0 0 16px;
}
.credit__title img{
  width: 150px;             /* Staff/Sponsors 見出し画像サイズ */
}

/* 本文 */
.credit__body{
  display: grid;
  row-gap: 10px;
  font-size: 13px;
  line-height: 1.8;
}
.credit__block{ margin-top: 8px; }

/* スポンサーロゴ */
.credit__logos{
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, 1fr));
  gap: 14px 18px;
  list-style: none;
  padding: 18px 0 0;
  margin: 0 0 12px;
}
.credit__logos li{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  padding: 10px;
  display: grid;
  place-items: center;
}
.credit__logos img{
  max-width: 100%;
  height: auto;
  display: block;
}

/* フッター的クレジット行 */
.credit__foot{
  margin-top: 16px;
  display: grid;
  row-gap: 6px;
  font-size: 13px;
}

/* スマホ微調整 */
@media (max-width: 480px){
  .credit__title img{ width: 128px; }
  .credit__logos{ grid-template-columns: 1fr 1fr; }
}
/*---------------
Schedule
----------------*/
.schedule__wrapper {
  background-color:  #212121;
  padding:120px 0 140px 0;
  position: relative;

  position: relative;
text-align: center;
background-image: url("images/bg_news-top.jpg"),
                    url("images/bg_news-bottom.jpg");
  background-repeat: no-repeat, no-repeat;
  background-position: top center, bottom center;
}

.schedule__title {
  margin: 0 auto 28px;
}
.schedule__title img {
  width: 250px;
}

.schedule__info {
  margin: 0 auto 20px;
}
.schedule__period {
  font-size: 20px;
  margin: 0 0 12px;
  line-height: 1.6;
}
.schedule__place {
  font-size: 24px;
  margin: 0 0 8px;
  line-height: 1.5;
}
.schedule__address {
  font-size: 14px;
  line-height: 1.6;
  opacity: .9;
  margin: 0;
}

.schedule__table {
  width: 60%;
  margin: 0 auto;
}
.schedule__row {
  display: flex;
  justify-content: flex-start;
  border-bottom: 1px solid #666;
  padding: 6px 0;
}
.schedule__row dt {
  flex: 0 0 100px;   /* 日付の固定幅 */
}
.schedule__row dd {
  flex: 1;
  margin: 0;
  text-align: left; /* ここで時間も左揃え */
}

.schedule__note {
  font-size: 12px;
  opacity: .9;
  margin-top: 16px;
}
.schedule__date {
  flex: 0 0 100px;   /* 日付の幅固定 */
}
.schedule__time {
  flex: 1;
  text-align: left;
}
.map__wrapper {
  width: 90%;
  max-width: 100%;
  overflow: hidden;
  margin: auto;
  line-height: 0; /* iframe下の余白対策 */
}

.map__wrapper iframe {
  width: 100%;
  height: 280px;       /* 必要に応じて高さ調整 */
  filter: grayscale(100%); /* グレースケール加工 */
  border: none;
}


/* セクションをスタック基準に */
#ticket {
  position: relative;
}

/*---------------
Ticket
----------------*/
.ticket__wrapper {
  background-color: #000;
  padding: 10px 20px 80px;
  text-align: center;
  position: relative;
  z-index: 1; /* インクより下にする */
}

/* 左上インク画像を最前面へ */
.ink_left {
  position: absolute;
  top: -120px;
  left: 0;
  width: 30%;
  z-index: 2;          /* wrapper より前面 */
  pointer-events: none;/* クリックを塞がない(任意) */
}

.ticket__title { margin: 0 auto 28px; }
.ticket__title img { width: 200px; }

.ticket__open {
  margin: 12px auto 30px;
  line-height: 1.8;
  font-size: 20px;
}

.ticket__list {
  width: 80%;          /* 適宜調整（60〜80%推奨） */
  margin: 0 auto 60px;
}
.ticket__row {
  display: flex;
  border-bottom: 1px solid #666;
  padding: 6px 0;
}
.ticket__row dt {
  flex: 0 0 100px;      /* ラベル幅を固定 */
  margin: 0;
}
.ticket__row dd {
  flex: 1;
  margin: 0;
  text-align: left;
  line-height: 1.8;
}

.ticket__note { margin: 20px auto 40px; line-height: 1.6; font-size: 14px; opacity: 0.9; }
.ticket__note p { margin: 4px 0; }

.ticket__cta { margin: 0; }
.ticket__button {
  display: inline-block;
  min-width: min(520px, 100%);
  padding: 16px 24px;
  background: #FFEE00;
  color: #000;
  border: none;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  margin-bottom: 20px;
}
.white {
  background-color: black;
  border: 1px solid #fff;
  color: white;
}
/*---------------
Tsukatabi (対談企画)
----------------*/
#tsukatabi .tsukatabi__wrapper{
  position: relative;
  padding: 56px 20px 72px;
  background-color: #0e0e0e;
 background-image: 
    linear-gradient(rgba(14, 14, 14, 0.98), rgba(14, 14, 14, 0.9)), 
    url("images/photo_vol1.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ヘッダ */
#tsukatabi .tsukatabi__head{
  max-width: 900px;
  margin: 0 auto 36px;
}
#tsukatabi .tsukatabi__release{
  margin: auto;
  padding:40px 0 20px 0;
  text-align: center;
  img {
    width: 90%;
  }
}
#tsukatabi .tsukatabi__kicker{
  margin: 0 0 8px;
  letter-spacing: .06em;
  opacity: .9;
  text-align: center;
}
#tsukatabi .tsukatabi__title{
  margin: 0 0 32px;
  line-height: 1.25;
  text-align: center;
  font-size: 32px;
}
#tsukatabi .tsukatabi__lead{
  margin: 0;
  line-height: 2;
  max-width: 720px;
}

/* 記事リスト */
#tsukatabi .tsukatabi__list{
  list-style: none;
  margin: 28px auto 0;
  padding: 0;
  max-width: 960px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

/* カード */
#tsukatabi .tsukatabi__figure{ margin: 0; }
#tsukatabi .tsukatabi__thumb-link{
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
#tsukatabi .tsukatabi__thumb{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .25s ease;
}
#tsukatabi .tsukatabi__thumb-link:hover .tsukatabi__thumb{
  transform: scale(1.02);
}

/* タイトル */
#tsukatabi .tsukatabi__caption{
  margin: 10px 0 0;
  text-align: left;
  font-size: 13px;
  line-height: 1.4;
}
#tsukatabi .tsukatabi__title-link{
  text-decoration: none;
  display: inline-block;
}

/* 8件目以降は初期非表示（CSSのみ） */
#tsukatabi .tsukatabi__toggle:not(:checked) ~ .tsukatabi__list .tsukatabi__item:nth-child(n + 9) {
  display: none;
}

/* チェックされたら全部表示 */
#tsukatabi .tsukatabi__toggle:checked ~ .tsukatabi__list .tsukatabi__item {
  display: list-item; /* もともとのli表示に戻す */
}

/* view more ボタン（newsと同じ思想） */
#tsukatabi .tsukatabi__button {
  display: grid;
  place-items: center;
  margin: 24px auto 0;
  padding: 16px 24px;
  width: min(440px, 100%);
  border: 1px solid currentColor;

  background: transparent;
  cursor: pointer;
  text-align: center;
  line-height: 1;
  user-select: none;
}

/* ボタン文言切り替え（任意） */
#tsukatabi .tsukatabi__buttonText--close {
  display: none;
}
#tsukatabi .tsukatabi__toggle:checked ~ .tsukatabi__button .tsukatabi__buttonText--more {
  display: none;
}
#tsukatabi .tsukatabi__toggle:checked ~ .tsukatabi__button .tsukatabi__buttonText--close {
  display: inline;
}
/*---------------
Funding (共闘者募集)
----------------*/
.funding__wrapper {
  background-color: #000;
  padding: 56px 20px 42px;
  text-align: left;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}
.ink_left_right {
  position: absolute;
  top: -110px;
  right: 0;
  width: 30%;
  z-index: 2;          /* wrapper より前面 */
  pointer-events: none;/* クリックを塞がない(任意) */
  transform: scaleX(-1);
}

.funding__title {
  text-align: center;
  margin: 0 auto 32px;
}
.funding__title img {
  width: 260px;
}

.funding__body {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 40px;
}
.funding__body p {
  margin: 16px 0;
}

.funding__sign {
  text-align: right;
  margin-top: 32px;
}
.funding__sign img {
  max-width: 180px;  /* 署名画像の横幅調整（任意で変更可） */
  height: auto;
  display: inline-block;
}
.funding__cta {
  margin-top: 40px;
  display: grid;
  row-gap: 16px;
}
.funding__button {
  display: block;
  width: 100%;
  padding: 16px;
  background: #FFEE00; /* カンプの黄色 */
  color: #000;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
}
/*---------------
LINE登録促進
----------------*/
.line__wrapper {
  background-color: #212121;
  padding: 100px 20px 120px;
  text-align: center;
  background-image: url("images/bg_news-top.jpg"),
                    url("images/bg_news-bottom.jpg");
  background-repeat: no-repeat, no-repeat;
  background-position: top center, bottom center;
}

.line__title {
  margin: 0 auto 28px;
  padding-left:40px;
}
.line__title img {
  width: 240px;
}

.line__lead {
  margin: 0 auto 32px;
  max-width: 720px;
  line-height: 1.9;
  font-size: 16px;
  text-align: left;
}

.line__cta {
  margin-top: 20px;
}
.line__button {
  display: inline-block;
  min-width: min(520px, 100%);
  padding: 16px 24px;
  background: #FFEE00; /* カンプの黄色 */
  color: #000;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
}
/*---------------
Footer
----------------*/
#footer .footer__wrapper {
  position: relative;
  padding: 160px 20px 250px;
  margin-top:-10px;
  z-index: -10;
  text-align: center;
background-color: #000;
  background-image: url("images/bg_last.jpg"); /* 写真を背景に */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  color: #fff; /* 文字色は白 */
}

#footer .footer__logo {
  margin-bottom: 40px;
}
#footer .footer__logo p {
  margin: 0 0 12px;
  font-size: 14px;
  opacity: 0.9;
}
#footer .footer__logo img {
  max-width: 180px;
  height: auto;
}

#footer .footer__copy {
  font-size: 12px;
  opacity: 0.9;
  position: absolute;
  bottom:10px;
  left:0;
  right:0;
}
#footer .footer__copy p {
  margin: 0;
}
/*---------------
PC表示
----------------*/
@media(min-width: 768px){
.pc {
  display: block;
}

.pc-menu__list {
position: absolute;
width:380px;
padding:60px 60px;
line-height: 2.5;
margin:50px;
}


}