/* リセットCSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: "Noto Serif JP", serif;
  text-align: center;
  width: 100%;
  background:
    linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)),
    url(img/light.webp) no-repeat left top fixed,
    url(img/back.webp) repeat left top fixed;
  aspect-ratio: 16/9;
}

.movie_blk {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: -1;
}
.movie_blk video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

/*========= LoadingのためのCSS ===============*/

/* Loading背景画面設定　*/

#splash {
  /*fixedで全面に固定*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100%;
  background: #004831;
  text-align: center;
  color: #eeff00;
}

/* Loadingバー中央配置　*/
#splash_text {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 999;
  width: 100%;
  transform: translate(-50%, -50%);
  color: #fff82b;
}

/* ======================
      レスポンシブ　PC 
========================*/

/*. header  */

header {
  width: 100%;
  height: 90px;
  padding: 10px;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #004831;
  z-index: 998;
}

.heading img {
  width: 70px;
  margin: auto;
  padding: 5px;
}

/* ナビゲーション */

nav {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  font-family: "Hina Mincho", serif;
}

nav > :first-child {
  margin-right: auto;
}

.nav-list {
  display: flex;
  justify-content: flex-end;
}

.nav-list-item {
  margin: 0 30px;
  list-style: none;
  line-height: 70px;
  text-align: center;
  color: rgb(255, 255, 255);
  font-weight: 700;
  font-size: 16px;
}

.nav-list-item a {
  text-decoration: none;
  color: rgb(255, 255, 255);
  position: relative;
}

.nav-list-item a::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: rgb(3, 0, 56);
  bottom: -8px;
  visibility: hidden;
  opacity: 0;
}

.nav-list-item a:hover:after {
  visibility: visible;
  opacity: 1;
  transition: 0.3s;
}

#story,
#cast,
#schedule,
.info,
#send {
  margin: 128px auto;
  padding: 64px auto;
}

.cp_hr04 {
  border-width: 3px 0 0 0;
  border-style: double;
  border-color: #a50000;
  width: 80%;
  display: block;
  margin: 0 auto;
}

.cp_hr02 {
  border-width: 1px 0 0 0;
  border-style: dashed;
  border-color: #a50000;
  width: 80%;
  display: block;
  margin: 0 auto;
}

/* TITLE */

.title2 img {
  margin: 128px auto 32px;
}

#top img {
  margin: 169px auto 0px;
  width: auto;
  height: 80vh;
}

/* STORY */

#story {
  background-color: white;
}

.story-text {
  width: 700px;
  text-align: left;
  display: block;
  font-size: 16px;
  color: #a50000;
  font-weight: 600;
  line-height: 2;
  margin: 32px auto 128px;
  padding-bottom: 64px;
  align-items: center;
}

/* CAST */

.cast_content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 64px;
}

.cast-box {
  margin: 32px auto;
  width: 250px;
  text-align: left;
}

.cast-box_am {
  margin: 32px auto;
  width: 220px;
  text-align: left;
}

.list-c dd {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
}

.yaku {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

.cast-box img {
  width: 250px;
  height: auto;
}

.cast-box_am img {
  width: 200px;
  height: auto;
}

.name-a {
  font-size: 12px;
  font-weight: 500;
  color: #ffffff;
  margin-top: 8px;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

.name {
  font-size: 24px;
  font-weight: 500;
  color: #ffffff;
  margin-top: 8px;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

/* jimoto */

.s_01 {
  z-index: 1;
}

.s_01 .accordion_one {
  max-width: 1024px;
  margin: 0 auto;
}
.s_01 .accordion_one .accordion_header {
  background-color: #db0f2f;
  color: #fff;
  font-size: 26px;
  font-weight: bold;
  padding: 20px 11%;
  text-align: center;
  position: relative;
  z-index: +1;
  cursor: pointer;
  transition-duration: 0.2s;
}
.s_01 .accordion_one:nth-of-type(2) .accordion_header {
  background-color: #ff9a05;
}
.s_01 .accordion_one:nth-of-type(3) .accordion_header {
  background-color: #1c85d8;
}
.s_01 .accordion_one .accordion_header:hover {
  opacity: 0.8;
}
.s_01 .accordion_one .accordion_header .i_box {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  right: 5%;
  width: 40px;
  height: 40px;
  border: 1px solid #fff;
  margin-top: -20px;
  box-sizing: border-box;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transform-origin: center center;
  transition-duration: 0.2s;
}
.s_01 .accordion_one .accordion_header .i_box .one_i {
  display: block;
  width: 18px;
  height: 18px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transform-origin: center center;
  transition-duration: 0.2s;
  position: relative;
}
.s_01 .accordion_one .accordion_header.open .i_box {
  -webkit-transform: rotate(-360deg);
  transform: rotate(-360deg);
}
.s_01 .accordion_one .accordion_header .i_box .one_i:before,
.s_01 .accordion_one .accordion_header .i_box .one_i:after {
  display: flex;
  content: "";
  background-color: #fff;
  border-radius: 10px;
  width: 18px;
  height: 4px;
  position: absolute;
  top: 7px;
  left: 0;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  transform-origin: center center;
}
.s_01 .accordion_one .accordion_header .i_box .one_i:before {
  width: 4px;
  height: 18px;
  top: 0;
  left: 7px;
}
.s_01 .accordion_one .accordion_header.open .i_box .one_i:before {
  content: none;
}
.s_01 .accordion_one .accordion_header.open .i_box .one_i:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.s_01 .accordion_one .accordion_inner {
  display: none;
  padding: 30px 30px;
  border-left: 2px solid #db0f2f;
  border-right: 2px solid #db0f2f;
  border-bottom: 2px solid #db0f2f;
  box-sizing: border-box;
}
.s_01 .accordion_one:nth-of-type(2) .accordion_inner {
  border-left: 2px solid #ff9a05;
  border-right: 2px solid #ff9a05;
  border-bottom: 2px solid #ff9a05;
}
.s_01 .accordion_one:nth-of-type(3) .accordion_inner {
  border-left: 2px solid #1c85d8;
  border-right: 2px solid #1c85d8;
  border-bottom: 2px solid #1c85d8;
}
.s_01 .accordion_one .accordion_inner .box_one {
  height: 450px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.s_01 .accordion_one .accordion_inner p.txt_a_ac {
  margin: 0;
}
@media screen and (max-width: 1024px) {
  .s_01 .accordion_one .accordion_header {
    font-size: 18px;
  }
  .s_01 .accordion_one .accordion_header .i_box {
    width: 30px;
    height: 30px;
    margin-top: -15px;
  }
}
@media screen and (max-width: 767px) {
  .s_01 .accordion_one .accordion_header {
    font-size: 16px;
    text-align: left;
    padding: 15px 60px 15px 15px;
  }
}

.jimoto_cast {
  width: 100px;
  height: 150px;
  text-align: center;
}

.jimoto_cast img {
  width: auto;
  height: 90px;
}

.jimoto_yomi {
  font-size: 10px;
  font-weight: 400;
  color: #ffffff;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}
.jimoto_name {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

/* STAFF */

.staff p {
  width: 500px;
  text-align: left;
  display: block;
  font-size: 16px;
  color: #ffffff;
  font-weight: 400;
  line-height: 1.5;
  margin: 8px auto 8px;
  padding-bottom: 12px;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
  align-items: center;
}

/* schedule */

#schedule {
  background-color: #ffffff;
  margin-bottom: 128px;
  padding-bottom: 64px;
}

#schedule .title2 img {
  margin-bottom: 64px;
}

.schedule_content {
  width: 100%;
  display: flex;
  justify-content: center;
  background-color: #ffffff;
}

.date_place {
  width: 300px;
  font-size: 16px;
  font-weight: 800;
  line-height: 2;
  margin: 16px 32px 24px;
  padding: 12px 24px;
  align-items: center;
  border: 0.5px solid #a50000;
}

.city {
  font-size: 30px;
  color: #a50000;
  font-weight: 900;
  margin-bottom: 8px;
}

.date {
  font-size: 20px;
  color: #a50000;
  font-weight: 700;
  margin-bottom: 8px;
}

.place {
  font-size: 20px;
  color: #a50000;
  font-weight: 700;
  margin-bottom: 8px;
}

.time {
  font-size: 15px;
  color: #a50000;
  font-weight: 700;
  margin-bottom: 8px;
}

/* ticket */

.comesoon p {
  width: 100%;
  padding: 64px;
  font-size: 24px;
  font-weight: 800;
  color: #a50000;
  text-align: center;
}

.timerHidden {
  display: none;
}
.timerVisible {
  display: block;
}

#ticket {
  background-color: #ffffff;
  color: #a50000;
}

.ticket_table {
  width: 800px;
  margin: 0 auto 64px;
  border-collapse: collapse;
}

.ticket_table th {
  background-color: #a50000;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  border-color: #ffffff;
}

.ticket_table th,
.ticket_table td {
  border: 1px solid #a50000;
  padding: 12px;
  text-align: center;
}
tr td:first-child {
  font-weight: 700;
  font-size: 18px;
}

tr td:nth-child(2) {
  font-size: 20px;
  font-weight: 800;
}

.u18 {
  font-size: 12px;
  font-weight: 400;
  margin-top: 8px;
}

.ticket_start {
  font-size: 34px;
  color: #a50000;
  font-weight: 700;
  margin-bottom: 8px;
}

.start_text {
  font-size: 36px;
  color: #a50000;
  font-weight: 700;
  margin-bottom: 8px;
}

.start_span {
  font-size: 18px;
}

.start_info {
  width: 650px;
  padding: 12px;
  margin: 32px auto;
  font-size: 16px;
  color: #a50000;
  font-weight: 400;
  margin-top: 16px;
  line-height: 1.5;
  border: #a50000 1px solid;
}

.senkou_btn1 {
  display: inline-block;
  margin-top: 24px;
  padding: 12px 48px;
  font-size: 20px;
  font-weight: 700;
  color: rgb(255, 255, 255);
  background-color: #a50000;
  border-radius: 50px;
  border: none;
  text-decoration: none;
}

.senkou_btn2 {
  display: inline-block;
  margin: 24px 24px 0px;
  padding: 12px 48px;
  font-size: 20px;
  font-weight: 700;
  color: rgb(255, 255, 255);
  background-color: #a50000;
  border-radius: 50px;
  border: none;
  text-decoration: none;
}

.senkou_btn2 a {
  color: rgb(255, 255, 255);
  background-color: #a50000;
  border-radius: 50px;
  border: none;
  text-decoration: none;
}

.ticket_senkou {
  margin: 128px 0px;
}

.info h4 {
  color: #a50000;
}

.info li {
  color: #a50000;
}

/* send */

#send {
  padding-bottom: 64px;
}

.send_text p {
  font-size: 13px;
  color: #a50000;
  font-weight: 400;
  margin: 0 auto 32px;
  padding-top: 24px;
  padding-bottom: 32px;
  align-items: center;
}

form {
  width: 450px;
  margin: 0 auto;
  text-align: center;
}

label {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #a50000;
  margin-top: 16px;
  text-align: left;
}

input {
  width: 450px;
  height: 40px;
  margin: 8px 0;
  padding: 0 8px;
  font-size: 16px;
}

textarea {
  width: 450px;
  height: 150px;
  margin: 8px 0;
  padding: 8px;
  font-size: 12px;
  resize: vertical;
}

button {
  margin-top: 16px;
  padding: 12px 80px;
  font-size: 16px;
  font-weight: 700;
  color: rgb(255, 255, 255);
  background-color: #a50000;
  border: none;
  cursor: pointer;
}

/* info */
h4 {
  font-size: 20px;
  color: rgb(255, 255, 255);
  font-weight: 700;
  margin-bottom: 16px;
}

.info ul {
  margin: 0 auto;
  display: block;
  width: 800px;
  font-size: 14px;
  color: rgb(255, 255, 255);
  font-weight: 600;
  margin-bottom: 8px;
  text-align: left;
  line-height: 2;
}

/* TOPbtn */

/* トップへ戻るボタン */
.back-btn {
  display: none;
  padding: 40px 10px;
  background-color: #fff;
  color: #000;
  text-decoration: none;
  border-radius: 50%;
  position: fixed;
  bottom: 10px;
  right: 10px;
  opacity: 0;
  visibility: hidden;
}

/* トップへ戻るボタンを出現 */
.back-btn.active {
  opacity: 1;
  visibility: visible;
  display: block; /* 追加: ボタンを表示する */
}

/* チケット販売ボタン */
.ticket_btn {
  display: none;
  padding: 40px 20px;
  background-color: #fff;
  color: #000;
  text-decoration: none;
  border-radius: 50%;
  position: fixed;
  bottom: 120px;
  right: 10px;
  opacity: 0;
  visibility: hidden;
}

/* チケット販売ボタンを出現 */
.ticket_btn.active {
  opacity: 1;
  visibility: visible;
  display: block; /* 追加: ボタンを表示する */
}

/* footer */

footer {
  margin: 64px auto;
}

.border {
  border: 1px solid rgb(255, 255, 255);
  width: 80%;
  margin: 64px auto;
}

.foot-unei img {
  width: 150px;
  height: auto;
  margin-bottom: 32px;
}

.foot-unei01 {
  font-size: 16px;
  color: rgb(255, 255, 255);
  font-weight: 700;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

.foot-unei02 {
  font-size: 16px;
  color: rgb(255, 255, 255);
  font-weight: 700;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

.foot-unei02 a {
  text-decoration: none;
  color: rgb(255, 255, 255);
}

.sns-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 32px;
}

.sns-icon img {
  width: 40px;
  height: 40px;
  margin: 0 10px;
  transition: transform 0.3s;
}

.sns-icon img:hover {
  transform: scale(1.2);
}

.footer-text {
  font-size: 14px;
  color: rgb(255, 255, 255);
  font-weight: 400;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

/* =========================
      hamburger menu
=========================== */

.pc-logo {
  display: block;
}

.sm-logo {
  display: none;
}

#drawer_input {
  display: none;
}

.drawer_open {
  display: none;
}

/* ============================
      レスポンシブ　スマホ
==============================*/
@media screen and (max-width: 480px) {
  html,
  body,
  header,
  nav,
  main,
  .main-visual,
  .main-visual-text,
  .main-contents,
  .works,
  .profile,
  .blogs,
  .blogs-contents,
  footer {
    width: 100%;
  }

  .none {
    display: none !important;
  }

  .heading.pc-logo {
    display: none;
  }

  .heading.sm-logo {
    display: block;
    margin: 0;
    height: 70px;
  }

  /* ナビゲーション */
  /* =========================
           header
  =========================== */

  .heading a {
    display: block;
    padding-top: 7px;
  }

  .nav-list {
    padding: 0;
    display: block;
  }

  /* =========================
        hamburger menu
  =========================== */

  .nav-list {
    padding: 0;
    display: block;
  }

  .drawer_hidden {
    display: none;
  }

  .drawer_open {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    z-index: 100;
    cursor: pointer;
    top: 18px;
    right: 26px;
    width: 40px;
    height: 40px;
  }

  .drawer_open span,
  .drawer_open span:before,
  .drawer_open span:after {
    content: "";
    display: block;
    height: 3px;
    width: 35px;
    border-radius: 3px;
    background: #f9f9f9;
    transition: 0.5s;
    position: absolute;
  }

  .drawer_open span:before {
    bottom: 10px;
  }

  .drawer_open span:after {
    top: 10px;
  }

  #drawer_input:checked ~ .drawer_open span {
    background: rgba(255, 255, 255, 0);
  }

  #drawer_input:checked ~ .drawer_open span::before {
    bottom: 0;
    transform: rotate(45deg);
  }

  #drawer_input:checked ~ .drawer_open span::after {
    top: 0;
    transform: rotate(-45deg);
  }

  nav {
    height: 100%;
    position: fixed;
    left: -100%;
    background: rgba(0, 80, 1, 0.893);
    transition: 1.5s;
    text-align: right;
  }

  .nav-list-item {
    width: 300px;
    margin: 0 auto;
  }

  .nav-list-item:first-child {
    margin-top: 64px;
  }

  .nav-list-item a {
    font-size: 20px;
  }

  #drawer_input:checked ~ nav {
    left: 0;
  }

  /* TITLE */

  .title2 img {
    margin: 64px auto 16px;
  }

  #top img {
    margin: 126px auto 0;
    width: 350px;
    height: auto;
  }

  /* STORY */

  #story {
    background-color: white;
  }

  .story-text {
    width: 300px;
    text-align: left;
    display: block;
    font-size: 12px;
    color: #a50000;
    font-weight: 600;
    line-height: 2;
    margin: 32px auto 128px;
    padding-bottom: 64px;
    align-items: center;
  }

  /* CAST */

  .cast_content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 64px;
  }

  .cast-box {
    margin: 32px auto;
    width: 250px;
    text-align: left;
  }

  .cast-box_am {
    margin: 32px auto;
    width: 250px;
    text-align: left;
  }

  .list-c dd {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .yaku {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
  }

  .cast-box img {
    width: 250px;
    height: auto;
  }

  .cast-box_am img {
    width: 250px;
    height: auto;
  }

  .name-a {
    font-size: 12px;
    font-weight: 500;
    color: #ffffff;
    margin-top: 8px;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
  }

  .name {
    font-size: 24px;
    font-weight: 500;
    color: #ffffff;
    margin-top: 8px;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
  }

  /* jimoto */

  .s_01 .accordion_one {
    max-width: 1024px;
    margin: 0 auto;
  }
  .s_01 .accordion_one .accordion_header {
    background-color: #db0f2f;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    padding: 20px 11%;
    text-align: center;
    position: relative;
    z-index: +1;
    cursor: pointer;
    transition-duration: 0.2s;
  }
  .s_01 .accordion_one:nth-of-type(2) .accordion_header {
    background-color: #ff9a05;
  }
  .s_01 .accordion_one:nth-of-type(3) .accordion_header {
    background-color: #1c85d8;
  }
  .s_01 .accordion_one .accordion_header:hover {
    opacity: 0.8;
  }
  .s_01 .accordion_one .accordion_header .i_box {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    right: 5%;
    width: 40px;
    height: 40px;
    border: 1px solid #fff;
    margin-top: -20px;
    box-sizing: border-box;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transform-origin: center center;
    transition-duration: 0.2s;
  }
  .s_01 .accordion_one .accordion_header .i_box .one_i {
    display: block;
    width: 18px;
    height: 18px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transform-origin: center center;
    transition-duration: 0.2s;
    position: relative;
  }
  .s_01 .accordion_one .accordion_header.open .i_box {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
  .s_01 .accordion_one .accordion_header .i_box .one_i:before,
  .s_01 .accordion_one .accordion_header .i_box .one_i:after {
    display: flex;
    content: "";
    background-color: #fff;
    border-radius: 10px;
    width: 18px;
    height: 4px;
    position: absolute;
    top: 7px;
    left: 0;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    transform-origin: center center;
  }
  .s_01 .accordion_one .accordion_header .i_box .one_i:before {
    width: 4px;
    height: 18px;
    top: 0;
    left: 7px;
  }
  .s_01 .accordion_one .accordion_header.open .i_box .one_i:before {
    content: none;
  }
  .s_01 .accordion_one .accordion_header.open .i_box .one_i:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .s_01 .accordion_one .accordion_inner {
    display: none;
    padding: 30px 30px;
    border-left: 2px solid #db0f2f;
    border-right: 2px solid #db0f2f;
    border-bottom: 2px solid #db0f2f;
    box-sizing: border-box;
  }
  .s_01 .accordion_one:nth-of-type(2) .accordion_inner {
    border-left: 2px solid #ff9a05;
    border-right: 2px solid #ff9a05;
    border-bottom: 2px solid #ff9a05;
  }
  .s_01 .accordion_one:nth-of-type(3) .accordion_inner {
    border-left: 2px solid #1c85d8;
    border-right: 2px solid #1c85d8;
    border-bottom: 2px solid #1c85d8;
  }
  .s_01 .accordion_one .accordion_inner .box_one {
    height: 1200px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  .s_01 .accordion_one .accordion_inner p.txt_a_ac {
    margin: 0;
  }
  @media screen and (max-width: 1024px) {
    .s_01 .accordion_one .accordion_header {
      font-size: 18px;
    }
    .s_01 .accordion_one .accordion_header .i_box {
      width: 30px;
      height: 30px;
      margin-top: -15px;
    }
  }
  @media screen and (max-width: 767px) {
    .s_01 .accordion_one .accordion_header {
      font-size: 16px;
      text-align: left;
      padding: 15px 60px 15px 15px;
    }
  }

  .jimoto_cast {
    width: 100px;
    height: 150px;
    text-align: center;
  }

  .jimoto_cast img {
    width: auto;
    height: 90px;
  }

  .jimoto_yomi {
    font-size: 10px;
    font-weight: 400;
    color: #ffffff;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
  }
  .jimoto_name {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
  }

  /* STAFF */

  .staff p {
    width: 300px;
    text-align: left;
    display: block;
    font-size: 12px;
    color: #ffffff;
    font-weight: 400;
    line-height: 1.5;
    margin: 8px auto 8px;
    padding-bottom: 12px;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    align-items: center;
  }

  /* schedule */

  #schedule {
    background-color: #ffffff;
    margin-bottom: 128px;
    padding-bottom: 12px;
  }

  #schedule .title2 img {
    margin-bottom: 64px;
  }

  .schedule_content {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background-color: #ffffff;
  }

  .date_place {
    width: 300px;
    font-size: 12px;
    font-weight: 800;
    line-height: 2;
    margin: 16px 32px 24px;
    padding: 12px;
    align-items: center;
  }

  .city {
    font-size: 30px;
    color: #a50000;
    font-weight: 900;
    margin-bottom: 8px;
  }

  .date {
    font-size: 20px;
    color: #a50000;
    font-weight: 700;
    margin-bottom: 8px;
  }

  .place {
    font-size: 20px;
    color: #a50000;
    font-weight: 700;
    margin-bottom: 8px;
  }

  /* ticket */

  .timerHidden {
    display: none;
  }
  .timerVisible {
    display: block;
  }

  #ticket {
    background-color: #ffffff;
    color: #a50000;
  }

  .ticket_table {
    width: 300px;
    margin: 0 auto 64px;
    border-collapse: collapse;
  }

  .ticket_table th {
    background-color: #a50000;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    border-color: #ffffff;
  }

  .ticket_table th,
  .ticket_table td {
    border: 1px solid #a50000;
    padding: 12px;
    text-align: center;
  }
  tr td:first-child {
    font-weight: 700;
    font-size: 16px;
  }

  tr td:nth-child(2) {
    font-size: 18px;
    font-weight: 800;
  }

  .u18 {
    font-size: 9px;
    font-weight: 400;
    margin-top: 8px;
  }

  .ticket_start {
    font-size: 34px;
    color: #a50000;
    font-weight: 700;
    margin-bottom: 8px;
  }

  .start_text {
    font-size: 36px;
    color: #a50000;
    font-weight: 700;
    margin-bottom: 8px;
  }

  .start_span {
    font-size: 18px;
  }

  .start_info {
    width: 300px;
    padding: 12px;
    margin: 32px auto;
    font-size: 12px;
    color: #a50000;
    font-weight: 400;
    margin-top: 16px;
    line-height: 1.5;
    border: #a50000 1px solid;
  }

  .senkou_btn1 {
    display: inline-block;
    margin-top: 24px;
    padding: 12px 48px;
    font-size: 20px;
    font-weight: 700;
    color: rgb(255, 255, 255);
    background-color: #01012f;
    border-radius: 50px;
    border: none;
    text-decoration: none;
  }

  .senkou_btn2 {
    display: inline-block;
    margin-top: 24px;
    padding: 12px 48px;
    font-size: 20px;
    font-weight: 700;
    color: rgb(255, 255, 255);
    background-color: #a50000;
    border-radius: 50px;
    border: none;
    text-decoration: none;
  }

  .ticket_senkou {
    margin: 128px 0px;
  }

  .info h4 {
    color: #a50000;
  }

  .info li {
    color: #a50000;
  }

  /* send */

  #send {
    padding-bottom: 32px;
  }

  .send_text p {
    width: 300px;
    font-size: 12px;
    color: rgb(255, 255, 255);
    font-weight: 400;
    margin: 0 auto 32px;
    padding-top: 24px;
    padding-bottom: 32px;
    align-items: center;
  }

  form {
    width: 300px;
    margin: 0 auto;
    text-align: center;
  }

  label {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: rgb(255, 255, 255);
    margin-top: 16px;
    text-align: left;
  }

  input {
    width: 300px;
    height: 40px;
    margin: 8px 0;
    padding: 0 8px;
    font-size: 16px;
  }

  textarea {
    width: 300px;
    height: 150px;
    margin: 8px 0;
    padding: 8px;
    font-size: 12px;
    resize: vertical;
  }

  button {
    margin-top: 16px;
    padding: 12px 80px;
    font-size: 16px;
    font-weight: 700;
    color: rgb(255, 255, 255);
    background-color: #01012f;
    border: none;
    cursor: pointer;
  }

  /* info */
  h4 {
    font-size: 20px;
    color: rgb(255, 255, 255);
    font-weight: 700;
    margin-bottom: 16px;
  }

  .info ul {
    margin: 0 auto;
    display: block;
    width: 300px;
    font-size: 12px;
    color: rgb(255, 255, 255);
    font-weight: 600;
    margin-bottom: 8px;
    text-align: left;
    line-height: 2;
  }

  /* トップへ戻るボタン */
  .back-btn {
    display: none;
    padding: 30px 10px;
    font-size: 10px;
    background-color: #fff;
    color: #000;
    text-decoration: none;
    border-radius: 50%;
    position: fixed;
    bottom: 10px;
    right: 10px;
    opacity: 0;
    visibility: hidden;
  }

  /* トップへ戻るボタンを出現 */
  .back-btn.active {
    opacity: 1;
    visibility: visible;
    display: block; /* 追加: ボタンを表示する */
  }

  /* footer */

  footer {
    margin: 64px auto;
  }

  .border {
    border: 1px solid rgb(255, 255, 255);
    width: 80%;
    margin: 64px auto;
  }

  .foot-unei img {
    width: 100px;
    height: auto;
    margin-bottom: 32px;
  }

  .foot-unei01 {
    font-size: 12px;
    color: rgb(255, 255, 255);
    font-weight: 700;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
  }

  .foot-unei02 {
    font-size: 12px;
    color: rgb(255, 255, 255);
    font-weight: 700;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
  }

  .foot-unei02 a {
    text-decoration: none;
    color: rgb(255, 255, 255);
  }

  .sns-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 32px;
  }

  .sns-icon img {
    width: 40px;
    height: 40px;
    margin: 0 10px;
    transition: transform 0.3s;
  }

  .sns-icon img:hover {
    transform: scale(1.2);
  }

  .footer-text {
    font-size: 12px;
    color: rgb(255, 255, 255);
    font-weight: 400;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
  }
}
