@charset "UTF-8";
/* Scss Document */
@import "common.css";
/* Scss Document */
/*メディアクエリ*/
/*例*/
.hoge {
  color: blue;
}
@media screen and (max-width: 849px) {
  .hoge {
    color: yellow;
  }
}
@media screen and (max-width: 479px) {
  .hoge {
    color: red;
  }
}

@media screen and (max-width: 1279px) {
  body {
    /*background: skyblue;*/
  }
}
@media screen and (max-width: 849px) {
  body {
    /*background: pink;*/
  }
}
@media screen and (max-width: 479px) {
  body {
    /*background: silver;*/
  }
}

/**************************/
html {
  font-size: 62.5%; /* 16px x 0.625 = 10px(=1rem) */
}
@media screen and (max-width: 849px) {
  html {
    font-size: 62.5%; /* 16px x 0.625 = 10px(=1rem) */
  }
}
@media screen and (max-width: 479px) {
  html {
    font-size: 63%; /*50*/ /* 16px x 0.625 = 10px(=1rem) */
  }
}

body {
  position: relative;
  margin: 0 auto;
  padding: 0;
  text-align: center;
  line-height: 1.8;
  font-size: 1.8rem; /* 16px */
  -webkit-text-size-adjust: 100%;
  background: #000;
  color: #fff;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 849px) {
  body {
    font-size: 1.5rem;
  }
}
body {
  overflow-x: hidden;
}

/*テーマカラー*/
a,
.colorMain {
  color: #00adc9;
}

a:hover {
  text-decoration: none;
}

a[href^="tel:"] {
  color: #fff;
  text-decoration: none;
}

.colorBlue {
  color: #00a0e9;
}

.colorRed {
  color: #00adc9 !important;
}

.colorOrange {
  color: #fb7e53;
}

.colorPurple {
  color: #ff7bf7;
}

.colorGray {
  color: #484848;
}

.colorWhite {
  color: #fff;
}

.txtS {
  font-size: 0.8em !important;
}

.txtM {
  font-size: 0.9em !important;
}

.txtL {
  font-size: 1.2em !important;
}

.txtB {
  font-weight: bold !important;
}

.indent {
  padding-left: 1em;
  text-indent: -1em;
}

.indent2 {
  margin-left: 1em;
}

.txtThr {
  text-decoration: line-through;
}

.alignL {
  text-align: left;
}

.fawesome {
  color: #c8ba9e;
  margin: 0 0.3em 0 0;
}

.mt05 {
  margin-top: 0.5em;
}

.mt1 {
  margin-top: 1em;
}

hr {
  max-width: 500px;
  margin: 3.5em auto 0;
  border: 0;
  border-top: 1px solid #bbb;
}

.hr2 {
  max-width: 500px;
  margin: 5em auto !important;
  border: 0;
  border-top: medium double #bbb;
}

.hr3 {
  max-width: 50px;
  margin: 3em auto;
  border: 0;
  border-top: 1px solid #bbb;
}

.pc {
  display: inline-block;
}
@media screen and (max-width: 849px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 849px) {
  .sp {
    display: inline-block;
  }
}

.fontGothic {
  font-family: "source-han-sans-japanese", sans-serif;
}

body {
  animation: fadeIn 2s ease 0s 1 normal;
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 20px 25px 0;
  z-index: 10;
}
@media screen and (max-width: 1300px) {
  header {
    padding: 1.428vw 2.083vw 0;
  }
}
@media screen and (max-width: 849px) {
  header {
    padding: 20px 25px 0;
  }
}
header .logo {
  width: 125px;
}
@media screen and (max-width: 1300px) {
  header .logo {
    width: 8.928vw;
  }
}
@media screen and (max-width: 849px) {
  header .logo {
    width: 20vw;
  }
}
header .box {
  display: flex;
  margin-left: auto;
}
@media screen and (max-width: 849px) {
  header .box {
    margin-right: 10px;
  }
}
header .box .ttl {
  font-size: 1.6rem;
  font-weight: 200;
  text-align: left;
  line-height: 1.4em;
}
@media screen and (max-width: 1300px) {
  header .box .ttl {
    font-size: 1.14vw;
  }
}
header .box .sns {
  display: flex;
  align-items: center;
  margin: 0 0 0 20px;
}
@media screen and (max-width: 849px) {
  header .box .sns {
    margin: 0 20px 0 0;
  }
}
header .box .sns li {
  width: 28px;
  margin: 0 0 0 17px;
}
@media screen and (max-width: 1300px) {
  header .box .sns li {
    width: 1.944vw;
  }
}
@media screen and (max-width: 849px) {
  header .box .sns li {
    width: 6vw;
  }
}
header .box .sns li a {
  display: block;
  font-size: 0;
}
header .box .sns li.txt {
  margin: 0 15px 2px 0;
  font-size: 1.4rem;
  font-family: "source-han-sans-japanese", sans-serif;
  align-self: flex-end;
}
header .navBtn {
  position: relative;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  margin: 0;
  width: 6vw;
  height: auto;
}
header .navBtn img {
  width: 100%;
}
header .mainNav {
  position: fixed;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  text-align: right;
  z-index: 10;
}
@media screen and (max-width: 849px) {
  header .mainNav {
    height: 100vh;
    right: 0;
    top: 0;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    background: #000;
    padding: 60px 25px 30px 30px;
    display: flex;
    align-items: center;
    z-index: 100;
    visibility: hidden;
  }
  header .mainNav.is-open {
    transform: translateX(0);
    visibility: visible;
  }
}
header .mainNav .navCloseBtn {
  display: none;
}
@media screen and (max-width: 849px) {
  header .mainNav .navCloseBtn {
    display: block;
    position: absolute;
    right: 30px;
    top: 30px;
    border: none;
    background: none;
    cursor: pointer;
    padding: 0;
    margin: 0;
    width: 5vw;
    height: auto;
    z-index: 1;
  }
}
header .mainNav .navCloseBtn img {
  width: 100%;
}
header .mainNav ul li {
  position: relative;
  margin: 0.5em 0;
}
@media screen and (max-width: 849px) {
  header .mainNav ul li {
    margin: 1em 0;
  }
}
header .mainNav ul li a {
  position: relative;
  font-size: 1.8rem;
  color: #fff;
  text-decoration: none;
  padding: 0.5em 1.5em 0.5em 0;
  border-radius: 5px;
  line-height: 1em;
}
header .mainNav ul li a::after {
  position: absolute;
  right: 0;
  top: 50%;
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #00adc9;
  opacity: 0;
  transform: translateY(-50%) scale(0.4);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
header .mainNav ul li a.is-current::after {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}
header .mainNav ul .x {
  width: 23px;
  margin: 25px 26px 0 auto;
}

@media screen and (max-width: 849px) {
  body.is-nav-open {
    overflow: hidden;
  }
  body.is-nav-open::after {
    content: "";
    position: fixed;
    inset: 0;
    background: none;
    z-index: 90;
  }
  body.is-nav-open header {
    z-index: 100;
  }
}

main,
footer {
  position: relative;
  z-index: 1;
}

.mvWrap {
  position: relative;
  z-index: -1;
  padding: 12vw 0 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
@media screen and (max-width: 849px) {
  .mvWrap {
    margin: 0 0 0;
    padding: 50vw 0 100px;
  }
}
.mvWrap .box {
  position: relative;
  z-index: 2;
  max-width: 492px;
  margin: 0 auto;
}
@media screen and (max-width: 849px) {
  .mvWrap .box {
    margin: 0 10%;
    max-width: none;
  }
}
.mvWrap .box .logo {
  max-width: 27vw;
  margin: 0 auto 0;
}
@media screen and (max-width: 849px) {
  .mvWrap .box .logo {
    width: 62.93vw;
    max-width: none;
  }
}
@media screen and (max-width: 1000px) {
  .mvWrap .box .ttl {
    font-size: 2vw;
  }
}
@media screen and (max-width: 849px) {
  .mvWrap .box .ttl {
    font-size: 3vw;
    margin: 1em auto 0;
  }
}
.mvWrap .box .txt1 {
  max-width: 492px;
  width: 35.14vw;
  margin: 10vw auto 0;
}
@media screen and (max-width: 849px) {
  .mvWrap .box .txt1 {
    margin: 41vw auto 0;
    width: auto;
  }
}
.mvWrap .box .txt2 {
  margin: 50px auto 0;
  max-width: 369px;
  width: 26.35vw;
}
@media screen and (max-width: 849px) {
  .mvWrap .box .txt2 {
    width: auto;
    margin: 7vw auto 0;
  }
}
.mvWrap .mv {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  aspect-ratio: 2800/2801;
  background: url(../images/mv.webp) no-repeat center top/100% auto;
  z-index: 0;
  pointer-events: none;
}
@media screen and (min-width: 850px) {
  .mvWrap .mv::after {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.7s ease;
    pointer-events: none;
    z-index: 0;
  }
  .mvWrap .mv.is-pinned {
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    height: auto;
    background-position: center bottom;
  }
  .mvWrap .mv.is-pinned::after {
    opacity: 1;
  }
  .mvWrap .mv.is-mv-instant::after {
    transition: none;
  }
}
@media screen and (max-width: 849px) {
  .mvWrap .mv {
    aspect-ratio: 750/1322;
    background: url(../images/mv_sp.webp) no-repeat center top/100% auto;
  }
}

@media screen and (min-width: 850px) {
  body.is-mv-bg {
    background: transparent;
  }
}

.messageWrap {
  position: relative;
  z-index: 1;
  width: 600px;
  margin: 20px auto 0;
  text-align: left;
}
@media screen and (max-width: 849px) {
  .messageWrap {
    width: auto;
    padding: 0 5%;
    margin: 10px auto 0;
  }
}
.messageWrap p {
  margin: 1em 0 0;
}
.messageWrap p:last-child {
  text-align: right;
}

/*alllll*/
h2.mainttl {
  font-size: 3.5rem;
  font-weight: bold;
  margin: 0 0 1em;
  text-align: center;
}
h2.mainttl::first-letter {
  color: #00adc9;
}

h3.mainttl {
  text-align: center !important;
  font-size: 2.5rem;
  font-weight: bold;
  border-bottom: 2px solid #00adc9;
  display: table;
  margin: 3em auto 1em;
  padding: 0 0.5em 0.5em;
}
@media screen and (max-width: 849px) {
  h3.mainttl {
    font-size: 2.1rem;
    margin: 2.5em auto 1em;
  }
}

#newsWrap {
  width: 600px;
  margin: 0 auto;
  padding: 150px 0 0;
}
@media screen and (max-width: 849px) {
  #newsWrap {
    width: auto;
    padding: 25vw 5% 0;
  }
}
#newsWrap .newsBox {
  overflow-y: auto;
  max-height: 300px;
}
#newsWrap .newsBox dl {
  text-align: left;
  line-height: 1.3em;
  margin: 0 1em 0 0;
  font-family: "source-han-sans-japanese", sans-serif;
}
@media screen and (max-width: 849px) {
  #newsWrap .newsBox dl {
    margin: 0;
  }
}
#newsWrap .newsBox dl dt {
  font-size: 1.4rem;
  float: left;
  width: 90px;
}
#newsWrap .newsBox dl dd {
  margin: 0 0 1em;
  border-bottom: 1px solid #444;
  padding: 0 0 1em 90px;
  line-height: 1.4em;
}
#newsWrap .newsBox dl dd span {
  display: block;
  margin: 0 0 0.5em;
}

.campaignWrap {
  max-width: 1420px;
  margin: 0 auto;
  padding: 90px 200px 0;
  text-align: left;
  font-family: "source-han-sans-japanese", sans-serif;
}
@media screen and (max-width: 849px) {
  .campaignWrap {
    padding: 12vw 5% 0;
  }
}
.campaignWrap .campaignWrapIn {
  background: rgba(0, 17, 20, 0.5);
  border: 1px solid #00adc9;
  padding: 40px 50px;
}
@media screen and (max-width: 849px) {
  .campaignWrap .campaignWrapIn {
    padding: 25px 20px;
  }
}
.campaignWrap__title {
  font-family: "source-han-serif-japanese", serif;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.5em;
  color: #00adc9;
  text-align: center;
}
.campaignWrap__title span {
  font-size: 2.8rem;
  font-weight: bold;
}
@media screen and (max-width: 849px) {
  .campaignWrap__title {
    font-size: 2.2rem;
  }
}
.campaignWrap__lead {
  margin: 1.5em 0 0;
  font-size: 1.8rem;
  line-height: 1.8em;
}
.campaignWrap .campaignSection {
  margin-top: 2.5em;
}
.campaignWrap .campaignSection__title {
  margin: 0 0 0.8em;
  padding-bottom: 0.4em;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4em;
  color: #00adc9;
  border-bottom: 1px solid rgba(0, 173, 201, 0.4);
}
@media screen and (max-width: 849px) {
  .campaignWrap .campaignSection__title {
    font-size: 1.9rem;
  }
}
.campaignWrap .campaignSection p {
  margin: 0;
  font-size: 1.8rem;
  line-height: 1.8em;
}
.campaignWrap .campaignSection p + p,
.campaignWrap .campaignSection p + .campaignList,
.campaignWrap .campaignSection .campaignTargetList + p {
  margin-top: 0.6em;
}
.campaignWrap .campaignTargetList {
  margin: 0;
}
.campaignWrap .campaignTargetList dt {
  margin: 1em 0 0;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.5em;
  color: #fff;
}
.campaignWrap .campaignTargetList dt:first-child {
  margin-top: 0;
}
.campaignWrap .campaignTargetList dt::after {
  content: "：";
}
.campaignWrap .campaignTargetList dd {
  margin: 0.3em 0 0;
  font-size: 1.8rem;
  line-height: 1.8em;
}
.campaignWrap .campaignList {
  margin: 0.6em 0 0;
  padding: 0;
  list-style: none;
}
.campaignWrap .campaignList li {
  position: relative;
  margin: 0.8em 0 0;
  padding: 0 0 0 1.2em;
  font-size: 1.8rem;
  line-height: 1.8em;
}
.campaignWrap .campaignList li::before {
  position: absolute;
  top: 0.95em;
  left: 0;
  content: "";
  width: 7px;
  height: 7px;
  background: #00adc9;
  border-radius: 50%;
  transform: translateY(-50%);
}
.campaignWrap .campaignList--decimal {
  counter-reset: campaign-counter;
  padding-left: 0;
}
.campaignWrap .campaignList--decimal li {
  padding-left: 1.5em;
  counter-increment: campaign-counter;
}
.campaignWrap .campaignList--decimal li::before {
  top: 0;
  left: 0;
  width: auto;
  height: auto;
  background: none;
  border-radius: 0;
  transform: none;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.8em;
  color: #00adc9;
  content: counter(campaign-counter) ".";
}
.campaignWrap .campaignHashList {
  margin: 0.6em 0 0;
  padding: 0;
  list-style: none;
}
.campaignWrap .campaignHashList li {
  display: inline-block;
  margin: 0.5em 0.8em 0 0;
  padding: 0.35em 0.9em;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.4em;
  color: #fff;
  border: 1px solid rgba(0, 173, 201, 0.6);
  border-radius: 50px;
  background: rgba(0, 173, 201, 0.08);
}

#aboutWrap {
  max-width: 1420px;
  margin: 0 auto;
  padding: 150px 200px 0;
  text-align: left;
}
@media screen and (max-width: 849px) {
  #aboutWrap {
    padding: 25vw 5% 0;
  }
}

#aboutWrap .scheduleWrap {
  line-height: 1.9em;
}
#aboutWrap .scheduleWrap .flexBox {
  display: flex;
  justify-content: space-between;
  margin: 35px 0 0 0;
}
@media screen and (max-width: 849px) {
  #aboutWrap .scheduleWrap .flexBox {
    flex-direction: column;
  }
}
#aboutWrap .scheduleWrap .flexBox .star {
  color: #ce9a0e;
}
#aboutWrap .scheduleWrap .flexBox .box {
  width: 100%;
  line-height: 1.5em;
  font-family: "source-han-sans-japanese", sans-serif;
}
@media screen and (max-width: 849px) {
  #aboutWrap .scheduleWrap .flexBox .box {
    width: 100%;
  }
}
#aboutWrap .scheduleWrap .flexBox .box .map {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 50%;
}
#aboutWrap .scheduleWrap .flexBox .box .map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#aboutWrap .scheduleWrap .flexBox .box h3 {
  font-size: 2.4rem;
  border-bottom: 2px solid #fff;
  font-weight: bold;
  margin: 0 0 15px 0;
  padding: 0 0 5px 0;
  font-family: "source-han-serif-japanese", serif;
}
@media screen and (max-width: 849px) {
  #aboutWrap .scheduleWrap .flexBox .box h3 {
    font-size: 2.8rem;
  }
}
#aboutWrap .scheduleWrap .flexBox .box table {
  text-align: center;
  width: 100%;
  margin: 15px auto 0;
  font-size: 1.4rem;
  line-height: 1.3em;
  table-layout: fixed;
  background: #012227;
}
#aboutWrap .scheduleWrap .flexBox .box table tr {
  border: 1px solid #605646;
}
#aboutWrap .scheduleWrap .flexBox .box table tr th {
  padding: 10px 0;
  border: 1px solid #605646;
  font-weight: bold;
}
#aboutWrap .scheduleWrap .flexBox .box table tr td {
  border: 1px solid #605646;
  padding: 10px 0;
  color: #00adc9;
}
#aboutWrap .scheduleWrap .flexBox .box table tr:nth-child(even) td,
#aboutWrap .scheduleWrap .flexBox .box table tr:nth-child(even) th {
  background: #001114;
}
#aboutWrap .scheduleWrap .flexBox .box table .colorRed {
  font-size: 120%;
}
#aboutWrap .scheduleWrap .flexBox .box table .deco01 {
  color: #fb7e53;
}
#aboutWrap .scheduleWrap .flexBox .box table .deco03 {
  vertical-align: middle;
}
#aboutWrap .scheduleWrap .flexBox .box table .deco04 {
  color: #fff;
}
#aboutWrap .scheduleWrap .flexBox .box table .star {
  font-size: 95%;
  color: #ce9a0e;
}
#aboutWrap .scheduleWrap .flexBox .box {
  /*table*/
}
@media screen and (max-width: 1156px) {
  #aboutWrap .scheduleWrap .flexBox .box .js-scrollable {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  #aboutWrap .scheduleWrap .flexBox .box .js-scrollable table {
    width: max-content;
    min-width: 800px;
  }
}
@media screen and (max-width: 849px) {
  #aboutWrap .scheduleWrap .flexBox .box .js-scrollable {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  #aboutWrap .scheduleWrap .flexBox .box .js-scrollable table {
    width: max-content;
    min-width: 600px;
  }
}
#aboutWrap .scheduleWrap .flexBox .box h4 {
  margin: 35px 0 5px 0;
  padding: 0 0 0 0.3em;
  border-left: 5px solid #00adc9;
  line-height: 1.3em;
}
#aboutWrap .scheduleWrap .flexBox .box .address {
  margin: 0 0 30px 0;
}

#castWrap {
  max-width: 1420px;
  margin: 0 auto;
  padding: 150px 200px 0;
}
@media screen and (max-width: 849px) {
  #castWrap {
    padding: 25vw 5% 0;
  }
}
#castWrap .txt .name {
  font-size: 2.3rem;
  margin: 0.5em 0 0;
  line-height: 1.2em;
}
#castWrap .castList {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  row-gap: 20px;
  max-width: 500px;
  margin: 0 auto;
}
@media screen and (max-width: 849px) {
  #castWrap .castList {
    max-width: 300px;
  }
}
#castWrap .castList li {
  font-size: 2.3rem;
  line-height: 1.2em;
}
#castWrap .castListM {
  margin-top: 5em;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  row-gap: 40px;
}
#castWrap .castListM .item {
  width: 250px;
}
#castWrap .deco {
  font-size: 2.3rem;
  line-height: 1.2em;
}

/*castWrap_id*/
#ticketWrap {
  max-width: 1420px;
  margin: 0 auto;
  padding: 150px 200px 0;
}
@media screen and (max-width: 849px) {
  #ticketWrap {
    padding: 25vw 5% 0;
  }
}
#ticketWrap .deco .font-20 {
  width: 400px;
  margin: 40px auto 0.9em;
  display: block;
  padding: 0.4em 0.5em;
  border: 1px solid #00adc9;
}
@media screen and (max-width: 849px) {
  #ticketWrap .deco .font-20 {
    width: 80%;
  }
}
#ticketWrap h3.mainttl {
  margin-top: 4em;
}
#ticketWrap h3.mainttl.deco {
  margin-top: 2em;
}
#ticketWrap p {
  font-size: 1.8rem;
  line-height: 1.5em;
}
#ticketWrap p a {
  font-size: 1.8rem;
}
#ticketWrap .btnTicket {
  position: relative;
  max-width: 500px;
  margin: 3.5em auto 0;
  padding: 0.44em;
}
#ticketWrap .btnTicket a {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35em;
  padding: 0.8em;
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1em;
  color: #fff !important;
  text-decoration: none;
  border-radius: 50px;
  font-family: "source-han-sans-japanese", sans-serif;
  background: #00adc9;
  border: 1px solid rgba(255, 255, 255, 0.65);
  transition: all 0.3s ease;
}
@media screen and (max-width: 849px) {
  #ticketWrap .btnTicket a {
    font-size: 2.2rem;
  }
}
#ticketWrap .btnTicket a:hover {
  border-color: rgba(255, 255, 255, 0.95);
  filter: brightness(1.12);
  box-shadow: 0 0 12px rgba(0, 173, 201, 0.55), 0 0 24px rgba(0, 173, 201, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
#ticketWrap .btnTicket a:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 3px;
}
#ticketWrap .btnTicket .btnTicket__arrow {
  position: relative;
  flex-shrink: 0;
  display: inline-block;
  top: 2px;
  width: 0.6em;
  height: 0.7em;
  background: #fff;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

@keyframes btnTicketColorWave {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
@keyframes btnTicketGlow {
  0%, 100% {
    box-shadow: 0 0 18px rgba(0, 173, 201, 0.4), 0 0 36px rgba(0, 173, 201, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  }
  50% {
    box-shadow: 0 0 28px rgba(0, 173, 201, 0.62), 0 0 52px rgba(0, 173, 201, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.32);
  }
}
@keyframes btnTicketMist {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.55;
    transform: scale(1.06);
  }
}
#commentWrap {
  max-width: 1420px;
  margin: 0 auto;
  padding: 150px 200px 200px;
}
@media screen and (max-width: 849px) {
  #commentWrap {
    padding: 25vw 5% 0;
  }
}
#commentWrap .commentList {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  row-gap: 20px;
  max-width: 600px;
  margin: 0 auto;
}
@media screen and (max-width: 849px) {
  #commentWrap .commentList {
    max-width: 300px;
  }
}
#commentWrap .commentList li {
  font-size: 2.1rem;
  line-height: 1.2em;
}
#commentWrap .commentList li a {
  color: #fff;
  text-decoration: none;
}
#commentWrap .commentList li .commentList__name {
  color: rgba(255, 255, 255, 0.45);
}

/********** コメント画像ライトボックス **********/
body.is-comment-lightbox-open {
  overflow: hidden;
}

.comment-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10020;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.comment-lightbox.is-open {
  visibility: visible;
  opacity: 1;
}

.comment-lightbox__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.comment-lightbox__close,
.comment-lightbox__nav {
  position: fixed;
  z-index: 10022;
  border: none;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, opacity 0.2s ease;
}
.comment-lightbox__close:hover, .comment-lightbox__close:focus,
.comment-lightbox__nav:hover,
.comment-lightbox__nav:focus {
  outline: none;
  background: #fff;
}
.comment-lightbox__close.is-hidden,
.comment-lightbox__nav.is-hidden {
  display: none;
}

.comment-lightbox__close {
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  line-height: 1;
  color: #00adc9;
  font-size: 4.5rem;
}
@media screen and (max-width: 849px) {
  .comment-lightbox__close {
    top: 12px;
    right: 12px;
  }
}
.comment-lightbox__close:hover {
  opacity: 0.6;
}

.comment-lightbox__nav {
  top: 50%;
  width: 50px;
  height: 50px;
  transform: translateY(-50%);
}

.comment-lightbox__prev {
  left: 45px;
}
.comment-lightbox__prev .comment-lightbox__nav-icon::before {
  left: 22px;
  margin: 5px 0 0;
  transform: rotate(-45deg);
}
.comment-lightbox__prev .comment-lightbox__nav-icon::after {
  left: 22px;
  margin: -5px 0 0;
  transform: rotate(45deg);
}
@media screen and (max-width: 849px) {
  .comment-lightbox__prev {
    left: 20px;
    top: auto;
    bottom: 20px;
    transform: none;
  }
}

.comment-lightbox__next {
  right: 45px;
}
.comment-lightbox__next .comment-lightbox__nav-icon::before {
  margin: -5px 0 0;
  transform: rotate(-45deg);
}
.comment-lightbox__next .comment-lightbox__nav-icon::after {
  margin: 5px 0 0;
  transform: rotate(45deg);
}
@media screen and (max-width: 849px) {
  .comment-lightbox__next {
    right: 20px;
    top: auto;
    bottom: 20px;
    transform: none;
  }
}

.comment-lightbox__nav-icon {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}
.comment-lightbox__nav-icon::before, .comment-lightbox__nav-icon::after {
  content: "";
  position: absolute;
  top: 16px;
  left: 25px;
  width: 4px;
  height: 18px;
  border-radius: 4px;
  background: #00adc9;
  transition: background 0.2s ease;
}

.comment-lightbox__nav:hover {
  opacity: 0.6;
}

.comment-lightbox__stage {
  position: relative;
  z-index: 10021;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  box-sizing: border-box;
  height: 100%;
  padding: 80px 120px 40px;
  pointer-events: none;
}
@media screen and (max-width: 849px) {
  .comment-lightbox__stage {
    padding: 70px 20px 90px;
  }
}

.comment-lightbox__scroll {
  width: 600px;
  max-width: 100%;
  max-height: 85vh;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  pointer-events: auto;
}

.comment-lightbox__loading {
  display: none;
  margin: 2em 0;
  text-align: center;
  color: #fff;
  font-size: 1.4rem;
}

.comment-lightbox.is-loading .comment-lightbox__loading {
  display: block;
}
.comment-lightbox.is-loading .comment-lightbox__img {
  visibility: hidden;
}

.comment-lightbox__img {
  display: block;
  width: 600px;
  max-width: 100%;
  height: auto;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.comment-lightbox__img.is-visible {
  opacity: 1;
}

#attentionBox .list {
  text-align: left;
  font-family: "source-han-sans-japanese", sans-serif;
}
#attentionBox .list li {
  position: relative;
  margin: 0.8em 0 0;
  padding: 0 0 0 1em;
  line-height: 1.5em;
}
#attentionBox .list li::before {
  position: absolute;
  top: 0.6em;
  left: 0;
  content: "";
  display: inline-block;
  margin: 0 0.5em 0 0;
  width: 7px;
  height: 7px;
  background: #00adc9;
  border-radius: 50%;
  vertical-align: middle;
}

footer {
  width: 100%;
  text-align: center;
  margin: 120px auto 1em;
}
footer .copyright {
  font-size: 1.6rem;
  font-weight: 200;
}

/********** 動画再生ボタン **********/
#videoButtonWrap {
  text-align: center;
  margin: 50px 0 0;
}

.play-video-button {
  background: transparent;
  border: 1px solid #fff;
  color: white;
  padding: 1em 2em;
  font-size: 16px;
  line-height: 1em;
  font-weight: bold;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  font-family: "Noto Serif JP", serif;
}
.play-video-button::after {
  content: "";
  display: inline-block;
  width: 0.6em;
  height: 0.7em;
  background: #fff;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.play-video-button:hover {
  opacity: 0.6;
}

/********** 動画ポップアップ **********/
.video-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-popup-container {
  position: relative;
  width: 700px;
  height: auto;
}
@media screen and (max-width: 849px) {
  .video-popup-container {
    width: 88%;
  }
}

.video-popup-close {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 24px;
  font-weight: bold;
  color: #333;
  z-index: 10001;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.video-popup-close:hover {
  background: rgb(255, 255, 255);
  transform: scale(1.1);
}

.video-popup-content {
  text-align: center;
}

.video-popup-content iframe,
.video-popup-content #youtube-player {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}/*# sourceMappingURL=style.css.map */