@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: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 400;
  font-style: normal;
}
@media screen and (max-width: 849px) {
  body {
    font-size: 1.6rem;
  }
}
body {
  overflow-x: hidden;
}

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

a:hover {
  text-decoration: none;
}

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

.colorBlue {
  color: #00a0e9;
}

.colorRed {
  color: #fc8d24 !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

*********************/
header {
  position: fixed;
  width: 100%;
  z-index: 9999;
}

.headerWrap {
  height: 65px;
  display: flex;
  justify-content: space-between;
  margin-right: auto;
  align-items: center;
  padding: 0 15px 0 10px;
  background-color: rgba(5, 13, 46, 0.8);
}
.headerWrap > :last-child {
  margin-left: auto;
}
.headerWrap a {
  color: #b9aeae;
  text-decoration: none;
}
.headerWrap .ttlTxt {
  text-align: left;
  letter-spacing: 0px;
  line-height: 1.1em;
  font-weight: 700;
  color: #fff;
}
.headerWrap .ttl {
  margin: 0px 20px 0 0;
  text-align: left;
  letter-spacing: 0px;
  line-height: 1.2em;
  font-weight: 700;
  color: #f2f2f2;
}
.headerWrap .ttl .font-16 {
  font-weight: bold;
}
@media screen and (max-width: 849px) {
  .headerWrap .ttl {
    line-height: 1.3em;
  }
  .headerWrap .ttl span.font-12 {
    font-size: 1.5rem;
  }
  .headerWrap .ttl span.font-16 {
    font-size: 1.9rem;
  }
}
.headerWrap .ttl .font-14 {
  display: inline-block;
}
@media screen and (max-width: 479px) {
  .headerWrap .ttl .font-14 {
    font-size: 11px !important;
  }
}
@media screen and (max-width: 479px) {
  .headerWrap .ttl .font-16 {
    font-size: 16px !important;
  }
}
.headerWrap .navBox {
  background: none;
  padding-top: 5px;
}
@media screen and (min-width: 1201px) {
  .headerWrap .navBox {
    position: relative;
  }
}
@media screen and (max-width: 1200px) {
  .headerWrap .navBox {
    padding-top: 0;
  }
}
@media screen and (max-width: 849px) {
  .headerWrap .navBox {
    background: #fff;
  }
}
@media screen and (max-width: 1200px) {
  .headerWrap .drawer-nav {
    background-color: rgb(5, 13, 46);
  }
}
.headerWrap .navBox .drawer-menu {
  display: flex;
  font-size: 1.35rem;
}
@media screen and (max-width: 1200px) {
  .headerWrap .navBox .drawer-menu {
    display: block;
    padding-top: 3rem;
    padding-bottom: 2rem;
    font-size: 1.8rem;
  }
}
.headerWrap .navBox .drawer-menu li {
  font-weight: 8;
}
.headerWrap .navBox .drawer-menu li a {
  font-weight: 8;
  text-decoration: none;
  color: #f2f2f2;
  padding: 8px 10px;
  border-right: 1px solid #fff;
}
@media screen and (max-width: 1200px) {
  .headerWrap .navBox .drawer-menu li a {
    display: block;
    border-right: none;
  }
}
.headerWrap .navBox .drawer-menu li {
  /*                &:last-child a{
                      border-right: none;
                  }*/
}
.headerWrap .navBox .drawer-menu li .noLink {
  text-decoration: none;
  padding: 10px 15px;
  border-right: 1px solid #fff;
  color: #707070;
}
@media screen and (max-width: 1200px) {
  .headerWrap .navBox .drawer-menu li .noLink {
    display: block;
    border-right: none;
  }
}
.headerWrap .navBox .drawer-menu li .noLink .font-12 {
  color: #ffe488;
  font-weight: normal;
}
@media screen and (max-width: 849px) {
  .headerWrap .navBox .drawer-menu li .noLink .font-12 {
    color: #ffe486;
  }
}
.headerWrap .navBox .drawer-menu li:last-child .noLink {
  border-right: none;
}
.headerWrap .navBox .slideBdr {
  position: absolute;
  top: -14px; /*-18*/
  left: 14.5px;
  /*margin-left: -22px;*/
  width: 44px;
  height: 4px;
  background-color: #fc8d24;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1200px) {
  .headerWrap .navBox .slideBdr {
    display: none;
  }
}
.headerWrap .snsBox {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1200px) {
  .headerWrap .snsBox {
    justify-content: center;
    padding-bottom: 3.75rem;
  }
}
.headerWrap .snsBox li {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin: 0 0 0 20px;
  line-height: 0;
}
@media screen and (max-width: 1200px) {
  .headerWrap .snsBox li {
    margin: 0 6px 0;
  }
}
.headerWrap .snsBox li a {
  display: flex;
  align-items: center;
  line-height: 0;
}
.headerWrap .snsBox li img {
  display: block;
  width: 100%;
  height: auto;
}
.headerWrap .snsBox li.fb {
  width: 32px;
}
.headerWrap .snsBox li.x {
  width: 23px;
}
.headerWrap .snsBox li.line {
  width: 30px;
}

.drawer-container {
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 1200px) {
  .drawer-container {
    margin-right: 0;
  }
}

.drawer-toggle {
  width: 30px !important;
  height: 30px !important;
}

.drawer-navbar .drawer-navbar-header {
  border: none;
}

.drawer-hamburger {
  padding: 0;
  position: relative;
}

.drawer-navbar-header {
  height: auto;
}

@media screen and (min-width: 1201px) {
  .drawer-navbar .drawer-hamburger {
    display: none;
  }
  .drawer-navbar .drawer-nav {
    position: relative;
    left: 0;
    overflow: visible;
    width: auto;
    height: 3.75rem;
    padding-top: auto;
    transform: translate3d(0, 0, 0);
  }
  .drawer-navbar .drawer-menu {
    padding: 0;
  }
  .drawer--top .drawer-nav {
    top: auto;
  }
}
@media screen and (max-width: 1200px) {
  .drawer-navbar .drawer-hamburger {
    display: block;
  }
  .drawer--top .drawer-nav {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: auto;
    max-height: 100%;
    overflow: hidden;
  }
  .drawer--top.drawer-open .drawer-nav {
    top: 0;
  }
}
@media (min-width: 64em) {
  .drawer-container {
    max-width: 70rem;
  }
}
main,
footer {
  position: relative;
  z-index: 1;
}

.mvWrap {
  position: relative;
  z-index: -1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
@media screen and (max-width: 849px) {
  .mvWrap {
    margin: 0 0 0;
  }
}
.mvWrap .box {
  position: relative;
  z-index: 2;
  margin: 7.71vw auto 0;
}
@media screen and (max-width: 849px) {
  .mvWrap .box {
    margin: 95px auto 0;
    width: 86%;
    max-width: 500px;
  }
}
.mvWrap .box .txt1 {
  width: 29.71vw;
  margin: 0 auto 0;
}
@media screen and (max-width: 849px) {
  .mvWrap .box .txt1 {
    width: 82%;
  }
}
.mvWrap .box .title {
  width: 150%;
  margin-left: -25%;
  margin-top: 0.7vw;
}
@media screen and (max-width: 849px) {
  .mvWrap .box .title {
    width: 100%;
    font-size: 3vw;
    margin: 0.5em auto 0;
  }
}
.mvWrap .box .txt2 {
  margin: 2vw auto 0;
  width: 38.65vw;
}
@media screen and (max-width: 849px) {
  .mvWrap .box .txt2 {
    margin: 5vw auto 0;
    width: 94%;
  }
}
.mvWrap .mv {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  aspect-ratio: auto;
  background: url(../images/mv.webp) no-repeat center top/cover;
  z-index: 0;
  pointer-events: none;
}
.mvWrap .mv::after {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(5, 13, 46, 0.8);
  opacity: 0;
  transition: opacity 0.7s ease;
  pointer-events: none;
  z-index: 0;
}
.mvWrap .mv.is-pinned::after {
  opacity: 1;
}
.mvWrap .mv.is-mv-instant::after {
  transition: none;
}

body.is-mv-bg {
  background: transparent;
}

/*alllll*/
h2.mainttl {
  font-family: "Dela Gothic One", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 5rem;
  line-height: 1.2em;
}
@media screen and (max-width: 849px) {
  h2.mainttl {
    font-size: 3.5rem;
  }
}

/*860*/
div.txt p {
  margin: 1em 0 0;
}
div.txt p:first-child {
  margin: 0;
}
div.txt p {
  line-height: 1.5em;
}

.dlBox dt {
  float: left;
  padding: 0 0.5em;
  font-weight: 900;
  font-size: 2.1rem;
}
@media screen and (max-width: 849px) {
  .dlBox dt {
    float: none;
    padding: 0 5px;
    font-size: 1.9rem;
  }
}
.dlBox dd {
  margin: 0 0 1.5em;
  border-bottom: 1px solid #fff;
  padding: 0.1em 0 1.5em 170px;
}
@media screen and (max-width: 849px) {
  .dlBox dd {
    padding: 0.1em 5px 1.5em;
  }
}

#newsWrap {
  max-width: 1060px;
  margin: 10vw auto 0;
  padding: 10vw 100px 0;
  text-align: left;
}
@media screen and (max-width: 849px) {
  #newsWrap {
    margin: 46vw auto 0;
    padding: 80px 5% 0;
  }
}
#newsWrap .newsBox {
  overflow-y: auto;
  max-height: 300px;
  margin-top: 20px;
}
#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 1.5em;
  border-bottom: 1px solid #666666;
  padding: 0 0 1.5em 90px;
  line-height: 1.4em;
}
#newsWrap .newsBox dl dd span {
  display: block;
  margin: 0 0 0.5em;
}

#aboutWrap {
  max-width: 1060px;
  margin: 0 auto;
  padding: 100px 100px 0;
  text-align: left;
}
@media screen and (max-width: 849px) {
  #aboutWrap {
    padding: 80px 5% 0;
  }
}
#aboutWrap .txt {
  margin: 1.5em 0 0;
}
#aboutWrap .tableBox {
  margin-top: 60px;
}
#aboutWrap .tableBox h3.mainttl {
  font-size: 2.1rem;
  font-weight: 900;
}
#aboutWrap .tableBox table {
  text-align: center;
  width: 100%;
  margin: 15px auto 0;
  line-height: 1.3em;
  table-layout: fixed;
}
#aboutWrap .tableBox table tr {
  border: 1px solid #fff;
}
#aboutWrap .tableBox table tr th {
  padding: 8px 0;
  border: 1px solid #fff;
}
#aboutWrap .tableBox table tr th span {
  font-size: 1.4rem;
}
#aboutWrap .tableBox table tr td {
  border: 1px solid #fff;
  padding: 8px 0;
  font-size: 2.1rem;
  font-weight: 700;
}
#aboutWrap .tableBox table tr td.ab {
  background: rgba(34, 181, 115, 0.5);
}
#aboutWrap .tableBox table tr td.cd {
  background: rgba(251, 176, 59, 0.5);
}
#aboutWrap .tableBox table tr td.ae {
  background: rgba(231, 58, 112, 0.5);
}
#aboutWrap .tableBox table tr td.be {
  background: rgba(0, 113, 188, 0.5);
}
#aboutWrap .tableBox {
  /*table*/
}
@media screen and (max-width: 849px) {
  #aboutWrap .tableBox .js-scrollable {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  #aboutWrap .tableBox .js-scrollable table {
    width: max-content;
    min-width: 100%;
  }
}
#aboutWrap .list01 {
  margin: 1.5em 0 0 0.5em;
}
#aboutWrap .list01 li {
  line-height: 1.3em;
  margin-top: 5px;
}
#aboutWrap .list02 {
  margin: 1em 0 0 0.5em;
}
#aboutWrap .list02 li {
  font-size: 1.4rem;
  line-height: 1.3em;
  margin-top: 5px;
}

#castWrap {
  max-width: 1060px;
  margin: 0 auto;
  padding: 90px 100px 0;
  text-align: left;
}
@media screen and (max-width: 849px) {
  #castWrap {
    padding: 80px 5% 0;
  }
}
#castWrap h3.mainttl {
  font-size: 2.8rem;
  font-weight: 900;
  padding-top: 2em;
  line-height: 1.2em;
  overflow-wrap: break-word;
  word-break: break-word;
}
@media screen and (max-width: 849px) {
  #castWrap h3.mainttl {
    font-size: 2.4rem;
  }
}
#castWrap h3.mainttl.deco1 {
  margin-top: 80px;
}
@media screen and (max-width: 849px) {
  #castWrap h3.mainttl.deco1 {
    margin-top: 50px;
  }
}
#castWrap .dlBox dd {
  margin: 0 0 1em;
  padding: 0.1em 0 1em 220px;
}
@media screen and (max-width: 849px) {
  #castWrap .dlBox dd {
    padding: 0.1em 5px 1.5em;
  }
}

/*castWrap_id*/
#staffWrap {
  max-width: 1060px;
  margin: 0 auto;
  padding: 100px 100px 0;
  text-align: left;
}
@media screen and (max-width: 849px) {
  #staffWrap {
    padding: 80px 5% 0;
  }
}
#staffWrap .list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}
#staffWrap .list li {
  margin: 0 1em 0.3em 0;
  line-height: 1.3em;
}
#staffWrap .list li.deco1 {
  margin: 1.5em 0 0.3em;
  width: 100%;
}
#staffWrap .list li span {
  font-weight: 700;
}

/*staffWrap*/
#ticketWrap {
  max-width: 1060px;
  margin: 0 auto;
  padding: 120px 100px 0;
  text-align: left;
}
@media screen and (max-width: 849px) {
  #ticketWrap {
    padding: 80px 5% 0;
  }
}
#ticketWrap .decoP {
  font-weight: 700;
}
@media screen and (max-width: 849px) {
  #ticketWrap .decoP {
    font-size: 1.9rem;
    line-height: 35px;
  }
}
#ticketWrap .decoP .deco1 {
  font-size: 2.4rem;
  font-weight: 700;
}
@media screen and (max-width: 849px) {
  #ticketWrap .decoP .deco1 {
    font-size: 2.1rem;
  }
}
#ticketWrap .decoP .deco2 {
  font-size: 4rem;
  font-weight: 700;
}
@media screen and (max-width: 849px) {
  #ticketWrap .decoP .deco2 {
    font-size: 3.5rem;
  }
}
#ticketWrap .btnTicket {
  position: relative;
  margin: 1.5em auto 0;
}
#ticketWrap .btnTicket a {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35em;
  padding: 0.6em 1em;
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1em;
  color: #fff !important;
  text-decoration: none;
  border-radius: 20px;
  background: #fc8d24;
  transition: all 0.3s ease;
}
@media screen and (max-width: 849px) {
  #ticketWrap .btnTicket a {
    font-size: 2.2rem;
  }
}
#ticketWrap .btnTicket a:hover {
  filter: brightness(1.12);
  box-shadow: 0 0 12px rgba(252, 141, 36, 0.55), 0 0 24px rgba(252, 141, 36, 0.25);
}
#ticketWrap .btnTicket a:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 3px;
}
#ticketWrap .txt {
  margin-top: 1em;
}
#ticketWrap .txt p {
  font-size: 1.6rem;
  margin: 0.4em 0 0;
}

@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: 1060px;
  margin: 0 auto;
  padding: 150px 200px 200px;
}
@media screen and (max-width: 849px) {
  #commentWrap {
    padding: 5vw 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 wrap

*********************/
footer {
  margin-top: 150px;
  color: #eee;
}
@media screen and (max-width: 849px) {
  footer {
    margin-top: 80px;
  }
}

footer a {
  text-decoration: none;
  color: #eee;
}

footer a.link {
  text-decoration: underline;
}

footer .flexBox {
  padding: 0 0 20px 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media screen and (max-width: 849px) {
  footer .flexBox {
    display: block;
    margin: 0 5%;
    padding: 0 0 20px 0;
  }
}
footer .flexBox p {
  line-height: 1.8em;
  text-align: left;
  padding: 0 20px 0 0;
  font-size: 1.6rem;
}
@media screen and (max-width: 849px) {
  footer .flexBox p {
    padding: 0 0 0 0;
    text-align: center;
  }
}

.pagetop {
  padding-top: 3em;
  padding-bottom: 5em;
  margin: 0 auto;
  text-align: center;
}

.pagetop a {
  position: relative;
  display: inline-block;
  color: #000;
  vertical-align: middle;
  text-decoration: none;
}

.pagetop a::before,
.pagetop a::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}

.pagetop a::before {
  left: -11px;
  width: 22px;
  height: 22px;
  border-top: 8px solid #fc8d24;
  border-right: 8px solid #fc8d24;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/********** 動画ポップアップ **********/
.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 */