html {
  scroll-behavior: smooth;
}
body {
  width: 100vw;
  padding: 0;
  margin: 0;
  font-family: sans-serif, "Helvetica Neue", Arial;
  font-family: 'Noto Sans JP', sans-serif;
  font-family: 'Poppins', sans-serif;
  font-family: 'Roboto', sans-serif;
  font-family: 'Shippori Mincho', serif;
  overflow-x: hidden;
  font-weight: 300;
  letter-spacing: 0.1em;
}
.wrapper {
  width: 100%;
  max-width: 2000px;
  margin: auto;
}
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}
.g-1rem {
  gap: 1rem
}
a {
  text-decoration: none;
  color: #e58ef0;
  display: block;
  transition: all 0.3s ease-out;
}
a.color-black {
  color: #000
}
a:hover {
  opacity: 0.6;
}
p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.6em;
}
ul {
  list-style-type: none;
}
ul.center {
  text-align: center;
}
.sp {
  display: block;
}
.pc {
  display: none;
}
.marker {
  background: linear-gradient(transparent 60%, #ff0000bd 60%);
}
.bold {
  font-weight: 700;
}
.small {
  font-size: 0.7em;
}
.ft-Shippori {
  font-family: 'Shippori Mincho', serif;
}

/* body background */
.body-bg {
  box-sizing: border-box;
  height: 100vh;
  width: 100vw;
  position: fixed;
  z-index: 0;
}
.body-bg-img {
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/25Echoes_introduction-bg.jpg) no-repeat;
  background-size: cover;
}

/* Prelaoder */

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  overflow: hidden;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
}
.preloader h1 {
  font-size: 2.4em;
}
.preloader__ttl span {
  opacity: 0;
}

.loaded {
  -webkit-animation-name: loader-fadeOut;
  animation-name: loader-fadeOut;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  animation-fill-mode: both;
  animation-delay: 0.8s;
}

@-webkit-keyframes loader-fadeOut {
  0% {
    opacity: 1;
  }
  70% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
  }
}

@keyframes loader-fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.scroll-to-top {
  color: white;
  position: fixed;
  bottom: 36px;
  right: 24px;
  font-size: 14px;
  transition: all 0.6s ease-in-out;
  cursor: pointer;
  filter: drop-shadow(0 0 1px rgba(0, 0, 0, 0.8));
}
.scroll-to-top:hover {
  transform: translateY(-10px);
}

/* elements */

nav.menu {
  background-color: #ffffffbd;
  padding: 5px 5px 5px 10px;
  margin: 0;
  position: fixed;
  cursor: pointer;
  z-index: 600;
  top: 0;
  left: 0;
  bottom: auto;
  display: block;
  position:fixed;
  width: 156px;
  z-index: 100;
  transition: all 0.6s ease-in-out;
}
nav.menu ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 1rem;
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  animation-delay: 0.3s;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  animation-fill-mode: both;
}
nav.menu li {
  filter: drop-shadow(0 0 3px rgba(238, 238, 238, 0.617));
}
nav.menu.off {
  inset-inline-start:-111px;
  height: 48px;
}
nav.menu.off ul {
  display: none;
}
nav.menu li a {
  color: #000
}
nav.menu li a:hover {
  color: #e58ef0;
}

.toggle {
  display: block;
  position: absolute;
  z-index: 300;
  top: calc(50% - 20px);
  right: 0;
  width: 80px;
  height: 48px;
  transition: 0.3s ease-in-out;
  opacity: 1;
  cursor: pointer;
}
.toggle::after {
  content: "MENU";
  font-size: 0.6rem;
  text-align: center;
  position: absolute;
  display: block;
  top: 27px;
  left: 50%;
  margin-left: -8px;
}
.toggle span {
  display: block;
  position: absolute;
  background: #444;
  transition: 0.3s ease-in-out;
  width: 30px;
  height: 2px;
  right: 15px;
}
.toggle span:first-child {
  top: 10px;
}
.toggle span:nth-child(2) {
  top: 20px;
}
.toggle.active span:first-child {
  transform: rotate(30deg);
  top: 16px;
}
.toggle.active span:nth-child(2) {
  transform: rotate(-30deg);
  top: 16px;
}

.container {
  box-sizing: border-box;
  color: #000;
}

/* メインビジュアル　*/
.mv {
  box-sizing: border-box;
  background: url(../img/25Echoes_mv.jpg) center no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  width: clamp(680px, 100%, 2000px);
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  position: relative;
}
.mv-title-img {
  width: min(80%, 800px);
}
.text-gradation {
  background: linear-gradient(90deg, #edb347, #c09ff0 40%, #68bef0);
  background: -webkit-linear-gradient(0deg, #edb347, #c09ff0 40%, #68bef0);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__title {
  margin: auto;
  text-align: center;
  width: fit-content;
  filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.7));
}
.hero__title h1 {
  color: white;
  font-size: 3.25rem;
  font-weight: normal;
}
.hero__text {
  background-color: #00000048;
  width: 100%;
  padding: 8px 16px 24px;
}
.hero__text p {
  color: white;
  font-size: 1.125rem;
  font-family: 'Noto Sans JP', sans-serif;
  padding-top: 0.3rem;
  margin-bottom: 0.3rem;
  text-align: center;
}
.hero__text p  br {
  display: none;
}
.hero__text a {
  color: white;
  text-decoration: underline;
}

/* main */
main {
  position: relative;
}
.section {
  box-sizing: border-box;
  position: relative;
  padding: 0 40px;
}
.section--black {
  width: 100%;
  background-color: black;
  color: white;
  padding-top: 54px;
  /* margin-bottom: 3px */
}
.section__inner {
  display: grid;
  gap: 24px;
  font-family: 'Noto Sans JP';
  font-weight: 300;
  max-width: 980px;
  margin: auto;
  padding-bottom: 40px;
}
.section__title {
  font-size: 2.25rem;
  font-weight: normal;
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
  height: max-content;
  --reflectText: 100%;
  --opacity: 0;
}
.section__title::after {
    content: attr(data-text);
    position: absolute;
    top: 73%;
    left: 0;
    width: 100%;
    transform: scaleY(-1) translateY(var(--reflectText));
    opacity: var(--opacity);
    mask-image: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0));
}

/* introduction */
.introduction {
  padding: 100px 40px;
  min-height: 100vh;
  width: 100%;
  position: relative;
}
.introduction p {
  font-size: 1.1rem;
  z-index: 10;
}
.intro-text {
  font-weight: 600;
  text-shadow: rgb(255, 255, 255) 0px 0px 10px;
}

/* Message */
.message {
  padding: 2.5rem;
  margin-top: 16px;
  margin-bottom: 10vmax;
}
.message__wrapper {
  background-color: #ffffffbd;
  padding: 2.5rem 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(200px, 100%, 320px), 1fr));
  gap: 16px;
  justify-items: center;
  align-items: start;
  max-width: 1024px;
  margin: auto;
}
.message__img {
  height: 100%;
  max-height: 90vh;
}
.message__img img {
  object-fit: contain;
  height: 100%;
}
.border--gradation {
  background: linear-gradient(90deg, #edb347, #c09ff0 40%, #68bef0);
  background: -webkit-linear-gradient(0deg, #edb347, #c09ff0 40%, #68bef0);
  display: block;
  grid-column: 1;
  grid-row: 2;
  width: 100%;
  height: 3px;
  position: absolute;
}
/* photos */
.photos {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  overflow: hidden;
  flex-wrap: wrap;
}
.photo {
  background-color: #000;
  overflow: hidden;
  width: 33.3333%;
  filter: brightness(30%);
  transition: 4s;
}
.photo img {
    transform: scale(1.2);
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: 8s;
}
.photo.in-view {
  filter: brightness(100%);
}
.photo.in-view img {
  transform: scale(1);
}
@media screen and (max-width: 1024px) {
  .photo:first-of-type {
    width: 100%;
  }
  .photo:nth-of-type(2) {
    width: 50%;
  }
  .photos .photo:last-of-type {
      width: 50%;
  }
}


/* Information */
.information .section__inner {
  grid-template-columns: repeat(auto-fit, minmax(clamp(200px, 100%, 420px), 1fr));
}
.event-info {
  margin-bottom: 1rem
}
.event-info h3 {
  line-height: 1.6;
}
.event-info pre {
  font-size: 1rem;
  line-height: 1.6;
  white-space: pre-wrap;
}
.event-info.en p {
  font-size: 0.85rem;
}
.event-schedule {
  margin: 1rem 0;
}
/* Ticket */

.ticket-info h4 {
  font-size: 1.125rem;
  margin-top: 8px
}

.link-outer {
  border-radius: 100vw;
  border: 1px solid;
  display: block;
  font-size: 16px;
  line-height: 28px;
  padding: 8px 40px 8px 24px;
  -webkit-transition: all .6s cubic-bezier(.19,1,.22,1);
  transition: all .6s cubic-bezier(.19,1,.22,1);
  background: url(../img/arrow-right.svg) no-repeat right 12px top 50%;
  background-size: 14px auto;
  width: fit-content;
  cursor: pointer;
}

.link-outer:hover {
  background: url(../img/arrow-right.svg) no-repeat right 8px top 50%;
}

.link-outer a {
  color: white
}

.price {
  display: grid;
  margin-bottom: 4rem;
}
.price__title, .price__subtitle, .ticket-type {
  text-align: center;
  line-height: 1.6;
  margin: 2rem auto 1rem;
  width: fit-content;
}
.ticket-type {
  font-size: 1.25rem;
}
.price__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, auto);
  align-items: stretch;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  margin-bottom: 16px;
}
.price__list > * {
  padding: 8px;
  border-bottom: solid 1px rgb(255, 255, 255);
}
.price__list .en, .price__list--special .en {
  font-size: 0.8em
}
.price__list .item__price, .price__list--special .item__price {
  line-height: 2.75;
}
.price__list--special {
  display: grid;
}
.price__list--special .price__list__inner {
  display: grid;
  grid-template-columns: min(30%, 230px) 100px 1fr;
  margin-bottom: 16px;
  padding: 8px;
  border-bottom: solid 1px rgb(255, 255, 255);
}
.price__list--special .memo {
  font-size: 0.8em;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .price__list {
    grid-template-columns: 1fr auto;
  }
  .price__list--special .price__list__inner {
    grid-template-columns: 1fr auto;
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 16px;
    align-items: center;
    margin: 0;
  }
  .price__list--special .memo {
    grid-area: 2 / 1 / 3 / 3;
  }
}
.support {
  padding-top: 4rem;
  background-color: #ffffff6b;
}
.support .section__inner {
  padding: 1rem;
}
.support__link a {
  color: white;
  border-radius: 100vw;
  border: 1px solid #ddd;
  display: block;
  font-size: 16px;
  line-height: 28px;
  padding: 8px 40px 8px 24px;
  -webkit-transition: all .6s cubic-bezier(.19,1,.22,1);
  transition: all .6s cubic-bezier(.19,1,.22,1);
  background: url(../img/arrow-right.svg) no-repeat right 12px top 50%;
  background-color: #000;
  background-size: 14px auto;
  width: fit-content;
  cursor: pointer;
}
.support__link a:hover {
  background: url(../img/arrow-right.svg) no-repeat right 8px top 50%;
  background-color: #6f6f6f;
}
.appeal {
  background-color: #edededbd;
  font-family: serif;
  padding: 1.5rem;
  margin: 4rem 0;
}
/* choreographer */
.section--choreographer {
  padding-top: 54px;
  width: 100%;
  background-color: #c6c6c6;
}
/* dancers */
.section--dancers {
  padding-top: 54px;
  width: 100%;
}
.dancer {
  max-width: 900px;
  width: 100%;
  margin-bottom: 4rem;
}
.dancer pre {
  font-size: 1rem;
  line-height: 1.6;
  white-space: pre-wrap;
}
.dancer p {
  font-size: 0.875rem;
}
.dancer__inner-top {
  display: flex;
  flex-direction: row;
}
.dancer__inner-top .dancer-visual {
  display: block;
  width: 200px;
  height: auto;
}
.dancer__inner-top .dancer-visual img {
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
}
.dancer__bloc-info{
  padding: 0 1rem;
  width: calc(100% - 200px);
}
.dancer__bloc-info .dancer-name {
  margin-bottom: 1em
}
.dancer__bloc-info .dancer-name h3 .en {
  padding-left: 1em;
  font-weight: normal;
}
button.read-more {
  border-radius: 100vw;
  border: 1px solid;
  display: block;
  font-size: 16px;
  line-height: 28px;
  padding: 8px 24px 8px 24px;
  -webkit-transition: all .6s cubic-bezier(.19,1,.22,1);
  transition: all .6s cubic-bezier(.19,1,.22,1);
  background: transparent;
  width: fit-content;
  cursor: pointer;
}
button.read-more:hover {
  background: rgba(255, 255, 255, 0.354);
  color: white
}
.dancer__content {
  opacity: 1;
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  animation-fill-mode: both;
  overflow: hidden;
  padding: 1.5rem 1rem;
}
.hide {
  display: none;
}
.dancer-pr {
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.329);
  padding: 1rem 1.5rem;
  box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.35);
}
.dancer-pr pre {
  font-family: 'Shippori Mincho';
}

/* information */
.credit-members {
  display: grid;
  gap: 24px;
  font-weight: normal;
  margin-bottom: 16px;
}
.credit-title {
  display:grid;
  grid-template-columns: 240px 1fr;
  column-gap: 16px;
  font-weight: 300;
}
.credit-title .name {
  line-height: 1.8;
}
.credit-staff {
  font-size: 0.875rem;
}
.credit-organizations {
  border-top: 1px solid white;
  margin: 80px 0 40px;
  padding-top: 40px;
}
.credit-organizations h5 {
  font-size: 0.875rem;
  font-weight: normal;
  line-height: 1.8;
}
p.contact {
  font-size: 0.875rem
}
p.contact a {
  display: inline-block;
  color: white;
  text-decoration: underline;
}
.--border-bottom {
  border-bottom: 1px solid;
  width: fit-content;
}
@media screen and (max-width: 480px) {
  .credit-title {
    grid-template-columns: 1fr;
  }
  .credit-title .name {
    padding-left: 1rem;
  }
}

/*-- youtube --*/

.youtube {
  aspect-ratio: 16 / 9;
  width: min(100%, 840px);
  height: fit-content;
  margin: auto;
  grid-area: 1 / 1;
}
.youtube iframe {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.title-artists {
  font-size: 4.4em;
  text-align: center;
}


/*
	スケジュールテーブル
*/
.table-schedule {
  color: black;
  border-collapse: separate;
  border: 2px solid #000;
  border-radius: 6px;
}
.table-schedule + .table-schedule {
  margin-top: 45px;
}
.table-schedule tr th, .table-schedule tr td {
  width: 110px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  vertical-align: middle;
  background-color: #fff;
}
.table-schedule tr th.sunday, .table-schedule tr td.sunday {
  background-color: rgba(255, 224, 232, 1);
}
.table-schedule tr th {
  padding: 1em 0.5em;
  background-color: #e8e8e8;
  border-right: 1px solid rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid #000;
}
.table-schedule tr th:first-child {
  border-right-color: #000;
}
.table-schedule tr th strong {
  font-size: 18px;
}
.table-schedule tr td {
  padding: 1em 0.5em;
  border-right: 1px solid rgba(0, 0, 0, 0.2);
  border-bottom: 1px dotted rgba(0, 0, 0, 0.2);
}
.table-schedule tr td:first-child {
  border-right-color: #000;
}
.table-schedule tr:first-child th:first-child {
  width: 150px;
  border-radius: 6px 0 0 0;
  font-size: 16px;
  white-space: nowrap;
}
.table-schedule tr:first-child th:last-child {
  border-radius: 0 6px 0 0;
}
.table-schedule tr:last-child td {
  border-bottom: none;
}
.table-schedule tr:last-child td:first-child {
  border-radius: 0 0 0 6px;
}
.table-schedule tr:last-child td:last-child {
  border-radius: 0 0 6px 0;
}

.table-schedule-vertical {
  width: 100%;
  border-collapse: separate;
  border: 2px solid #000;
  border-radius: 6px;
  background: white;
  color: black;
}
.table-schedule-vertical tr th, .table-schedule-vertical tr td {
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  vertical-align: middle;
}
.table-schedule-vertical tr th {
  padding: 1em 0.5em;
  font-size: 2.8037383178vw;
  background-color: #e8e8e8;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  border-right: 1px solid #000;
}
.table-schedule-vertical tr th strong {
  font-size: 3.2710280374vw;
}
.table-schedule-vertical tr td {
  padding: 1em 0.5em;
  font-size: 3.2710280374vw;
  border-left: 1px dotted rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.table-schedule-vertical tr td:first-child {
  border-left-color: #000;
}
.table-schedule-vertical tr td.sunday {
  background-color: rgba(255, 224, 232, 0.4);
}
.table-schedule-vertical tr:first-child th {
  border-bottom-color: #000;
}
.table-schedule-vertical tr:first-child th:first-child {
  border-radius: 6px 0 0 0;
}
.table-schedule-vertical tr:first-child td {
  border-bottom-color: #000;
}
.table-schedule-vertical tr:first-child td:last-child {
  border-radius: 0 6px 0 0;
}
.table-schedule-vertical tr:last-child th {
  border-bottom: none;
}
.table-schedule-vertical tr:last-child th:first-child {
  border-radius: 0 0 0 6px;
}
.table-schedule-vertical tr:last-child td {
  border-bottom: none;
}
.table-schedule-vertical tr:last-child td:last-child {
  border-radius: 0 0 6px 0;
}

/*
	テーブル
*/
.table {
  width: 100%;
  margin-bottom: 75px;
  border-top: 1px solid #ddd;
}
.table tr th, .table tr td {
  padding: 0.8em 1em;
  line-height: 1.5;
  text-align: left;
}
.table tr th {
  font-weight: 700;
  white-space: nowrap;
  border-bottom: 1px solid #ddd;
}
.table tr td {
  border-bottom: 1px solid #ddd;
}
.only-sp {
  display: none;
}
.only-pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .table {
    margin: 7.0093457944vw 0 10.5140186916vw;
  }
  .only-sp {
    display: block;
  }
  .only-pc {
    display: none;
  }
}


.products_bloc .card {
  width: 100%;
  margin: auto;
}
.products_bloc .card .card-img {
  width: 300px;
  height: 300px;
  object-fit: cover;
}
.products_bloc .card .card-img img {
  width: 300px;
  height: 300px;
  object-fit: cover;
}
.product-card-top .name {
  text-align: center;
}
.product-card-top .name p {
  font-size: 1.6em;
  margin-bottom: 6px;
}
.product-info {
  max-width: 400px;
  margin: 40px auto;
}
.product-info > .name p {
  font-size: 2em;
  margin-bottom: 6px;
}
.product-text {
  margin-top: 20px;
}
.modal {
  display: none;
  padding: 30px;
  text-align: center;
}
.open {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #242829a8;
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.close {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.close-btn {
  position: absolute;
  top: 30px;
  left: 30px;
  color: #333;
}

.purchase {
  margin: auto;
  width: 80vw;
  text-align: center;
}

/* logos */
.bg-white {
  background-color: #fff;
}
.logos {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
  padding: 3rem;
  max-width: 980px;
  margin: auto;
}
.logos .logo {
  height: 80px;
  width: clamp(120px, 20%, 180px);
}
.logos .logo img {
  object-fit: contain;
  height: 100%;
}

/* footer */
footer {
  background-color: #eee;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  font-size: 0.875rem;
  padding: 20px 3%;
}
footer .links a {
  color:#000;
}
footer .links a:hover {
  color: #e58ef0;
}

@media screen and (max-width: 480px) {
  footer {
    padding: 30px 3%;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }
}

.copywrite { 
  margin-bottom: 0;
  font-size: 0.875rem;
}

.btn-default a {
  width: 93%;
  margin: 10px auto;
  text-align: center;
  font-size: 16px;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  padding: 12px 13px;
  border-radius: 4px;
  background: #fff;
  transition: 0.3s;
  cursor: pointer;
  display: block;
}
.btn-default a:hover {
  -webkit-box-shadow: 0px 0px 11px 2px rgb(255 255 255 / 80%);
  box-shadow: 0px 0px 11px 2px rgb(255 255 255 / 80%);
}
.btn-pdf a {
  color: #2a82c7;
  text-decoration: none;
  display: block;
  width: 100%;
  height: auto;
}
.btn-pdf:hover {
  background-position: right center;
}

.btn-ticket a {
  width: 93%;
  margin: 10px auto;
  text-align: center;
  font-size: 16px;
  text-decoration: none;
  font-weight: bold;
  padding: 12px 13px;
  border-radius: 4px;
  transition: 0.5s;
  cursor: pointer;
  background-image: linear-gradient(-45deg, #eae5ac, #f51c1c);
  color: #fff;
  display: block;
}
.btn-ticket a:hover {
  background-image: linear-gradient(-45deg, #f51c1c, #eae5ac);
  color: #000;
}
.btn-ticket .long {
  width: 200px;
}


/*　ticket_bloc */

.attention h4 {
  margin-top: 2em;
  color: #e21c02;
  font-size: 1.4em;
}
.attention .marker {
  background: linear-gradient(transparent 60%, #607d8b 60%);
  margin-bottom: 1em;
}
.attention li {
  padding-bottom: 1.5em;
}
.peatix-wedget {
  margin: 0 auto 40px;
  width: 95%;
  height: 500px;
}

.menu-list .flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.menu-list .flex li {
  line-height: 1.8;
  color: #1e2f6e;
  font-weight: 600;
  font-size: 1.1em;
  list-style: none;
  margin-bottom: 2.3rem;
  width: 100%;
  text-align: left;
}
.menu-list.inview {
  text-align: center;
  color: #1e2f6e;
  position: fixed;
  z-index: 500;
  right: 0;
  top: 0;
  display: block;
  animation-name: in-from-right;
  animation-duration: 0.5s;
  animation-timing-function: ease-out;
  animation-fill-mode: both;
}
.menu-list {
  display: none;
  width: 30%;
  padding: 40px 20px;
  height: 100vh;
  padding: 20vh 5vw;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  position: fixed;
  z-index: 500;
  right: 0;
  background-color: #ffffff;
}
.menu-list.inview {
  display: block;
  -webkit-animation-name: in-from-right;
  animation-name: in-from-right;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-iteration-count: none;
  animation-iteration-count: none;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
@-webkit-keyframes in-from-right {
  0% {
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes in-from-right {
  0% {
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
.menu-list.outview {
  display: block;
  -webkit-animation-name: out-to-right;
  animation-name: out-to-right;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-iteration-count: none;
  animation-iteration-count: none;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
@-webkit-keyframes out-to-right {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
    opacity: 0;
  }
}
@keyframes out-to-right {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
    opacity: 0;
  }
}
/* tablet */
@media screen and (max-width: 1023px) {
  .introduction h3 { font-size: 1rem; }
  .about__wrapper {
    width: fit-content;
    grid-template-columns: repeat(3, 300px);
    grid-template-rows: 95px 8px 1fr;
  }
}


@media screen and (max-width: 767px) {
  nav.menu {
    height: 200px;
    top: 40px;
  }
  .section {
    padding-left: 24px;
    padding-right: 24px;
  }
  .section__title {
    font-size: 1.25rem;
    top: 2rem;
  }
  .section__inner {
    padding-top: 40px
  }
  p {
    font-size: 1rem;
  }
  .mv {
    height: 100vh;
    width: 100%;
    margin: 0;
  }
  .hero__title h1 {
    font-size: 2rem;
  }
  .hero__title h2 {
    font-size: 1.5rem;
  }
  .hero__text p {
    font-size: 14px;
    margin-bottom: 0;
    padding-top: 0;
  }
  .hero__text p  br {
    display: inline-block;
  }
  .introduction {
    margin: 2rem auto 40px;
  }
  .introduction p, h3 {
    font-size: 1rem;
    line-height: 1.6;
  }
  .detail {
    height: fit-content;
  }
  .detail__wrapper {
    grid-template-columns: repeat(3, 80vw);
    grid-template-rows: 95px 8px 1fr;
    margin: 64px 40px 40px;
  }
  .detail__item--bottom {
    padding: 0 0.875rem;
  }
  .detail__item--bottom p{
    font-size: 0.875rem;
  }

  /* dancer-sp */
  .dancer pre {
    font-size: 0.875rem;
  }
  .dancer__inner-top {
    flex-direction: column;
    align-items: center;
  }
  .dancer__inner-top .dancer-visual {
    width: fit-content;
  }
  button.read-more {
    margin-left: auto
  }
  .dancer__bloc-info{
    padding: 1em 0;
    width: 100%;
  }
  .dancer-pr {
    padding: 0.5em 1em
  }
}

.scroll {
  position: fixed;
  bottom: 5%;
  left: 10px;
  width: 10px;
  height: 92px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  opacity: 1;
  z-index: 100;
  transform: translate3d(0, 0, 560px);
  -webkit-transform: translate3d(0, 0, 560px);
}
.scroll > svg {
  display: block;
  width: 10px;
  height: 92px;
}
/* .scroll .linev {
  stroke-dasharray: 10;
  stroke-dashoffset: 10px;
} */

#scroll {
  fill: #c8c8c8
}
.scroll .linev, .scroll .linei {
  fill: none;
  stroke: #c8c8c8;
  stroke-linecap: round;
}
/* .scroll .linei {
  stroke-dasharray: 30;
  stroke-dashoffset: 30px;
} */


/* sp */
@media screen and (min-width: 767px) {

  .sp {
    display: none;
  }
  .pc {
    display: block;
  }
  .space-around-pc {
    justify-content: space-around;
  }

  .title_img img {
    width: 80%;
    height: auto;
  }

  .info {
    padding: 10px 0;
  }

  .info_bloc {
    width: 80%;
    max-width: 800px;
    margin: 0 auto 4em;
  }
  .btn-pdf {
    width: 80%;
    padding: 12px 24px;
  }
  .btn-pdf,
  .btn-pdf a,
  .btn-attention a {
    width: 210px;
  }
  .btn-ticket,
  .btn-ticket a {
    width: 300px;
    margin: auto;
  }
  .long {
    width: 80%;
    text-align: center;
  }
  .long a {
    width: 100%;
  }
  .inner-title {
    margin-bottom: 6em;
  }
  .inner-title h3 {
    font-size: 2em;
    font-weight: 700;
  }

  .inner-title h3 span {
    font-size: 0.8em;
  }
  .inner-title h4 {
    font-size: 2em;
  }
  .date_table,
  .ticket_table {
    font-size: 1.2em;
  }
  .attention ul {
    margin-top: 1em;
  }
  .peatix-wedget {
    width: 400px;
    height: 500px;
  }

}
.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px
}
.gallery .zoom {
  width: 23%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}
.photo-credit {
  font-size: 0.825em
}
.lum-lightbox {
  z-index: 200;
}
.lum-gallery-button:after {
  height: 26px;
  width: 26px;
}
.lum-previous-button {
  left: 0
}
.lum-lightbox-image-wrapper {
  max-width: 90vw!important;
  max-height: 80vh!important;
}
.lum-lightbox-inner {
  width: 90vw;
}
.lum-close-button {
  top: 16px;
  right: 32px
}
.lum-lightbox-inner .lum-lightbox-caption {
  margin: 10px auto;
}
@media screen and (max-width: 767px) {
  .gallery .zoom {
    width: 48%;
  }
}
@media screen and (max-width: 460px) {
  .lum-lightbox-inner img {
    max-width: 160vw !important;  /* 軽くスワイプで左端から右端まで動かせる量 */
    max-height: 60vh !important;  /* 上下に適度に余白 */
  }
}