@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Yu Gothic", "Hiragino Sans", "Meiryo", sans-serif;
  background-color: #1b2e66;
  color: #f2f2f2;
  font-size: 16px;
  line-height: 1.8;
}
body::before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1; /* 背景として最背面にする */
  width: 100%;
  height: 100vh; /* 画面全体の高さ */
  background: url(../img/bg_img.jpg) center no-repeat;
  background: url(../img/bg_img.webp) center no-repeat;
  background-size: cover;
}

img {
  /* PCの右クリック禁止 */
  pointer-events: none;
  /* SPの長押し禁止 */
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-touch-callout: none;
  -moz-user-select: none;
  user-select: none;
}

.bg-cover {
  width: 100vw;
  height: 100vh;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.35);
  opacity: 0;
  transition: all 0.7s;
}

.scrolled .bg-cover {
  opacity: 1;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
}

header {
  position: fixed;
  width: 100%;
  top: 0;
  padding: 3px;
  z-index: 100;
}
@media (min-width: 768px) {
  header {
    padding: 10px;
  }
}
header nav {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
header .menu {
  display: inline-flex;
  list-style: none;
  gap: 15px;
  padding-top: 40px;
}
@media (min-width: 768px) {
  header .menu {
    padding: 0;
  }
}
header .menu a {
  text-decoration: none;
  color: #333;
}
@media (min-width: 768px) {
  header .menu a {
    color: #f2f2f2;
  }
}

nav {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between; /* モバイルは左右に配置 */
}

/* メニュー（モバイル：右からスライドイン） */
.menu {
  list-style: none;
  margin: 0;
  padding: 80px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: fixed;
  top: 0;
  right: 0; /* ← 左から出したいなら left:0 に変更 */
  height: 100vh;
  width: 70vw;
  max-width: 280px;
  background: #fff;
  box-shadow: -4px 0 16px rgba(0, 0, 0, 0.15);
  transform: translateX(100%); /* 画面外に退避（右） */
  transition: transform 0.3s ease;
  z-index: 200;
}

.menu li a {
  text-decoration: none;
  color: #333;
  font-size: 16px;
}
@media (min-width: 768px) {
  .menu li a {
    color: #f2f2f2;
  }
}

/* 開いたとき */
.menu.open {
  transform: translateX(0);
}

/* オーバーレイ（モバイルで使用） */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 150;
}

.menu-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

/* メニュー開いている間、背景スクロールを止める */
body.menu-open {
  overflow: hidden;
}

/* ハンバーガーボタン（モバイルで表示） */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  position: relative;
  z-index: 201; /* メニューより手前 */
}

/* 三本線 */
.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: #f2f2f2;
  border-radius: 3px;
  transition: transform 0.25s ease, opacity 0.25s ease, top 0.25s ease;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

/* 線の初期位置 */
.hamburger span:nth-child(1) {
  top: 12px;
}

.hamburger span:nth-child(2) {
  top: 19px;
}

.hamburger span:nth-child(3) {
  top: 26px;
}

/* active時 → × 印へ変形 */
.hamburger.active span:nth-child(1) {
  top: 19px;
  transform: translateX(-50%) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  top: 19px;
  transform: translateX(-50%) rotate(-45deg);
}

/* ─────────────────────────────
   ここから PC（768px以上）のスタイル
   ───────────────────────────── */
@media (min-width: 768px) {
  nav {
    justify-content: center;
  }
  /* PCではハンバーガー非表示 */
  .hamburger {
    display: none;
  }
  /* PCではメニューを通常の横並びに */
  .menu {
    position: static;
    height: auto;
    width: auto;
    max-width: none;
    padding: 0;
    margin: 0;
    box-shadow: none;
    background: transparent;
    transform: none;
    flex-direction: row;
    gap: 20px;
  }
  .menu-overlay {
    display: none;
  }
  body.menu-open {
    overflow: auto;
  }
}
.scrolled header {
  background-color: rgba(0, 0, 0, 0.45);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

footer {
  padding: 10px 0;
}
footer p {
  text-align: center;
  font-size: 13px;
}

main {
  flex-grow: 1;
}

.section-area {
  padding: 50px 10px;
}
@media (min-width: 768px) {
  .section-area {
    padding: 80px 10px;
  }
}

.section-area-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
.section-area-inner .section-title {
  margin-bottom: 30px;
}
.section-area-inner .section-title img {
  margin: 0 auto;
  height: auto;
}

.list-block {
  margin-top: 50px;
}
.list-block dl {
  width: -moz-fit-content;
  width: fit-content; /* 中身に応じた最小幅 */
  margin-inline: auto; /* 横中央配置 */
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.list-block dl div {
  display: flex;
  gap: 16px; /* dt と dd の隙間（任意） */
}
.list-block dl dt {
  white-space: nowrap; /* dt 改行防止 */
}
.list-block dl dd {
  margin: 0; /* デフォルト余白をリセット */
}
.list-block .wide {
  flex-wrap: wrap;
  gap: 2px;
}
.list-block .wide .wide-dt,
.list-block .wide .wide-dd {
  width: 100%;
  text-align: center;
}

img.half {
  width: 100%; /* 親要素の幅にあわせて縮む */
  height: auto; /* アスペクト比を保つ */
  display: block; /* インライン隙間対策（お好み） */
  --ratio: 0.45; /* デフォルトは50%（半分） */
}
@media (min-width: 768px) {
  img.half {
    --ratio: 0.75; /* ここを好きな縮小率に変える（例：25%） */
  }
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

.openBtn {
  width: auto;
  padding: 0;
  margin: 0;
  background: none;
  border: 0;
  font-size: 0;
  line-height: 0;
  overflow: visible;
  cursor: pointer;
}

dialog::backdrop {
  position: fixed;
  top: 0;
  background-color: rgba(0, 0, 0, 0.75);
  inset: 0px;
  transition: opacity 0.4s; /* 背景のフェードイン・フェードアウトアニメーション */
}

.comment-dialog {
  margin: auto;
  width: 90vw;
  max-width: 960px;
}

.mainvisual-area {
  width: 100vw;
  height: 100vh;
}
.mainvisual-area .inner {
  display: grid;
  place-items: center;
  height: 90%;
}
.mainvisual-area .mainvisual-block {
  font-family: "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.4);
}
.mainvisual-area .mainvisual-block .title {
  text-align: center;
  font-size: 40px;
  font-weight: normal;
}
.mainvisual-area .mainvisual-block .list-block {
  font-size: 20px;
}
.mainvisual-area .mainvisual-block .etc {
  font-size: 18px;
}
.mainvisual-area .mainvisual-block .small {
  font-size: 16px;
}

.dialog-block .comment-image {
  margin: 0 auto;
  margin-bottom: 10px;
}
.dialog-block .comment-text-large {
  font-size: 16px;
  font-weight: bold;
  display: block;
  width: 100%;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .dialog-block .comment-text-large {
    margin-bottom: 25px;
  }
}
.dialog-block .comment-text {
  text-align: left;
  display: block;
  font-size: 14px;
  width: 100%;
}
.dialog-block .openBtn {
  width: 60%;
  margin: 0 auto;
}
.dialog-block .openBtn img {
  margin: 0 auto;
}
.dialog-block button {
  padding: 0;
  font-family: inherit;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  background-color: transparent;
  border: none;
}
.dialog-block .closeBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 180px;
  height: 35px;
  padding: 8px 24px;
  margin: 15px auto 0;
  border: none;
  font-family: sans-serif;
  font-size: 16px;
  color: #fff;
  text-align: center;
  overflow-wrap: anywhere;
  background-color: #989898;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
.dialog-block .closeBtn:focus {
  outline: none;
}
@media (any-hover: hover) {
  .dialog-block .closeBtn {
    transition: background-color 0.2s;
  }
  .dialog-block .closeBtn:hover {
    background-color: #dddddd;
  }
}

.staff-area .dialog-block .comment-text-large {
  text-align: center;
}

.card {
  width: 100%;
  text-align: center;
}
.card .member-image {
  margin: 0 auto;
  margin-bottom: 20px;
}
.card .member-data {
  margin-bottom: 15px;
}
.card .member-data .member-text,
.card .member-data .member-text-large,
.card .member-data .member-text-small {
  display: block;
  width: 100%;
}
.card .member-data .member-text-large {
  font-size: 18px;
  font-weight: bold;
}
.card .member-data .member-text-small {
  font-size: 13px;
}

.announcement-area .summary,
.introduction-area .summary {
  font-family: "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-size: 18px;
  font-weight: bold;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: 20px;
}

.announcement-area .summary {
  font-weight: initial;
  width: 100%;
  max-width: 500px;
  padding: 5% 2%;
  font-size: 13px;
}
@media (min-width: 768px) {
  .announcement-area .summary {
    line-height: 3;
    padding: 80px 40px;
    max-width: 800px;
    font-size: 18px;
  }
}
.announcement-area .pc-center {
  text-align: center;
}

.glass {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
  .introduction-area .pc-center,
  .story-area .pc-center {
    text-align: center;
  }
}

.cast-area .card-area {
  display: flex;
  flex-direction: column;
  row-gap: 50px;
}
.cast-area .card-area .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .cast-area .card-area {
    flex-wrap: wrap;
    flex-direction: row;
  }
  .cast-area .card-area .card {
    width: 50%;
  }
  .cast-area .card-area .card:first-of-type {
    width: 100%;
  }
}
.cast-area .comment-area {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (min-width: 768px) {
  .cast-area .comment-area {
    align-items: center;
    flex-direction: row;
  }
}

.staff-area {
  font-size: 18px;
}
.staff-area .list-block {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.staff-area .flex {
  display: flex;
  align-items: start;
}
@media (min-width: 768px) {
  .staff-area .flex {
    align-items: center;
  }
}
.staff-area .flex .narrow-dd {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: start;
}
@media (min-width: 768px) {
  .staff-area .flex .narrow-dd {
    flex-direction: row;
    gap: 15px;
    align-items: start;
  }
}
.staff-area .flex .narrow-dd .openBtn {
  display: block;
  width: 100%;
  max-width: 200px;
  margin-top: -10px;
}
.staff-area .small {
  font-size: 13px;
}

.schedule-area .schedule-menu {
  display: flex;
  gap: 10px;
  list-style: none;
  padding: 30px 0 50px;
  justify-content: center;
}
.schedule-area .schedule-info-area {
  margin-bottom: 80px;
}
.schedule-area .schedule-info-area a {
  text-decoration: none;
  color: #f2f2f2;
}
.schedule-area .schedule-info-area a:after {
  margin: 0 0 0 5px;
  font-family: "Font Awesome 5 Free";
  content: "\f35d";
  font-weight: 900;
  font-size: 13px;
}
.schedule-area .schedule-info-area .title {
  text-align: center;
  font-size: 18px;
}
.schedule-area .schedule-info-area .title .large {
  font-size: 20px;
  font-weight: bold;
}
.schedule-area .schedule-info-area .information {
  width: -moz-fit-content;
  width: fit-content;
  margin: 30px auto 0;
}
.schedule-area .schedule-info-area .information-list {
  display: grid;
  grid-template-rows: repeat(3, auto);
  grid-template-columns: auto;
}
.schedule-area .schedule-info-area .information-list dd {
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .schedule-area .schedule-info-area .information-list dd {
    margin-bottom: 5px;
  }
}
@media (min-width: 768px) {
  .schedule-area .schedule-info-area .information-list {
    grid-template-columns: auto auto;
  }
}
.schedule-area .schedule-info-area .shape {
  border: 1px solid #fff;
  padding: 3px 5px;
  font-size: 13px;
  margin-right: 15px;
}

.note {
  font-size: 13px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.pagetop {
  height: 50px;
  width: 50px;
  position: fixed;
  right: 10px;
  bottom: 10px;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  margin-right: 0;
  margin-left: auto;
}
.pagetop .pagetop__arrow {
  height: 15px;
  width: 15px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(20%) rotate(-45deg);
}

.copyright {
  padding-top: 5px;
  font-size: 20px;
  vertical-align: sub;
}

/* ========================================
   共通：基本テーブル
   ======================================== */
.schedule {
  width: 100%;
  max-width: 96%;
  margin: 15px auto 5px;
  font-size: 11px;
  text-align: center;
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
  background-color: #fff;
  color: #000;
}
@media (min-width: 768px) {
  .schedule {
    width: -moz-max-content;
    width: max-content;
  }
}

.schedule th,
.schedule td {
  border: 1px solid #4b4b4b;
  margin: 0;
  padding: 0;
  text-align: center;
  vertical-align: middle;
}

/* 見出しセル */
.schedule th {
  font-weight: 400;
  font-size: 11px;
  height: 2em;
}

/* THEAD */
.schedule thead th {
  color: #262626;
  padding: 4px 0.5rem;
}

/* 「schedule」セル */
.schedule thead th:nth-child(1) {
  width: 70px;
  height: 2em;
  font-size: 12px;
}

/* 時刻セル */
.schedule tbody th.start {
  width: 100px;
  height: 30px;
  background: #fff;
  font-size: 11px;
}

/* 星アイコン */
.schedule td img {
  width: 20px;
  padding: 5px 0;
  vertical-align: middle;
  margin: 0 auto;
}

/* 日付と曜日 */
.date {
  display: block;
  font-size: 12px;
}

.day {
  display: block;
  margin: 4px 0 0;
  font-size: 12px;
  color: #000;
}

.day_sunday {
  color: #ff1975; /* 日曜などの強調色 */
}

.day_saturday {
  color: #194bff; /* 土曜の強調色 */
}

/* 休演日の縦連結（PC表示用） */
.schedule td.kyu {
  border-bottom: none;
}

.schedule td.en {
  border-top: none;
}

.schedule td.bi {
  border-top: none;
}

/* ========================================
   レスポンシブ：991px 以下
   （テーブルを横型のフレックスレイアウトに崩す）
   ======================================== */
@media screen and (max-width: 991px) {
  /* 休演日の罫線を「縦 → 横」用に調整 */
  .schedule td.kyu {
    border-right: none;
    border-bottom: 1px solid #111;
  }
  .schedule td.en {
    border-left: none;
    border-bottom: 1px solid #111;
  }
  .schedule td.bi {
    border-left: none;
    border-bottom: 1px solid #111;
  }
  /* テーブル全体をflex化（thead と tbody を左右に並べる） */
  .schedule {
    margin: 20px auto 5px;
    width: 100%;
    max-width: 96%;
    border-top: 1px solid #111;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .schedule thead th.year-area {
    border-left: 1px solid #111;
  }
  /* ←日付側（thead） */
  .schedule thead {
    flex: 1 0 30%;
    display: flex;
  }
  .schedule thead th {
    padding: 0;
  }
  .schedule thead th.date-area {
    border-left: 1px solid #111;
  }
  .schedule thead th:nth-child(1) {
    font-size: 12px;
    height: 2.5em;
    width: auto;
  }
  /* ←時間＆内容側（tbody） */
  .schedule tbody {
    flex: 1 0 70%;
    display: flex;
    flex-direction: row;
  }
  .schedule tbody th.start {
    width: auto;
    height: 2.5em;
    font-size: 12px;
  }
  .schedule tr {
    flex: 1 1 100%;
  }
  .schedule th,
  .schedule td {
    font-size: 1em;
    height: 2.5em;
    border-left: none;
    border-top: none;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .schedule td:first-child {
    border-left: 1px solid #111;
  }
  .day {
    flex: 1 1 50%;
    margin: 0 10px 0 0;
  }
  .date {
    flex: 1 1 50%;
    margin: 0 10px;
  }
}
/* 必要なら 768px 以下などの追加メディアクエリをここに書く *//*# sourceMappingURL=style.css.map */