@charset "UTF-8";
html {
  scroll-behavior: smooth;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

html body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 18px;
  min-height: 100vh;
  color: #333;
  position: relative;
}

html body.no-scroll {
  overflow: hidden;
}

html a {
  font-style: none;
  text-decoration: none;
}

html iframe {
  display: block;
  width: 100%;
  height: 100%;
}

html li {
  list-style: none;
}

html ul {
  margin: 0;
  padding: 0;
}

html img {
  width: 100%;
  height: auto;
}

.cs {
  font-family: "Zen Kurenaido", serif;
  text-align: center;
  font-size: 32px;
}

.body {
  position: relative;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
}

.popup.active {
  display: block;
}

.popup.active span {
  position: absolute;
  width: 8vw;
  max-width: 45px;
  height: auto;
  display: block;
  top: -50px;
  right: 0;
}

.popup.active span svg {
  width: 100%;
  height: auto;
  fill: #fff;
}

.popup__img {
  width: 95vw;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.popup__img img {
  height: 100%;
}

@media screen and (min-width: 900px) {
  .popup__img {
    height: 90vh;
    width: auto;
  }
  .popup__img img {
    width: auto;
  }
}

.header {
  position: fixed;
  top: 1.875vw;
  right: 1.875vw;
  z-index: 9999;
}

.header .ham {
  position: relative;
  background-color: #FF446F;
  border-radius: 50%;
  width: 12.5vw;
  height: 12.5vw;
  max-width: 75px;
  max-height: 75px;
  display: block;
  border: 1px solid #000;
  cursor: pointer;
  transition: all 0.2s;
}

.header .ham span {
  position: absolute;
  width: 6.875vw;
  height: 0.52817vh;
  max-width: 40px;
  max-height: 40px;
  border-radius: 3px;
  background-color: #fff;
  border: 1px solid #000;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 1;
  transition: all 0.5s;
}

.header .ham::before {
  content: "";
  display: block;
  width: 6.875vw;
  height: 0.52817vh;
  max-width: 40px;
  max-height: 40px;
  border-radius: 3px;
  background-color: #fff;
  border: 1px solid #000;
  position: absolute;
  bottom: 25%;
  left: 50%;
  transform: translate(-50%, 0);
  transition: all 0.5s;
}

.header .ham::after {
  content: "";
  display: block;
  width: 6.875vw;
  height: 0.52817vh;
  max-width: 40px;
  max-height: 40px;
  border-radius: 3px;
  background-color: #fff;
  border: 1px solid #000;
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translate(-50%, 0);
  transition: all 0.5s;
}

.header .ham.close span {
  opacity: 0;
}

.header .ham.close::before {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.header .ham.close::after {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.header .ham:hover {
  transform: scale(1.2, 1.2);
  animation-name: ripple;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
}

.header .nav {
  position: fixed;
  z-index: -1;
  width: 84.375%;
  background-color: #fff;
  border-radius: 20px;
  left: 50%;
  top: -100%;
  transform: translate(-50%, 0);
  text-align: center;
  padding: 10px;
  border: 0.5px solid #000;
  color: #FF446F;
  opacity: 0;
  transition: all 0.5s;
}

.header .nav__item {
  width: fit-content;
  margin: 30px auto;
  font-family: "Zen Kurenaido", serif;
  font-size: 24px;
}

.header .nav.open {
  top: 4.40141vh;
  opacity: 1;
}

@media screen and (min-width: 768px) {
  .header .nav__item {
    font-size: 40px;
  }
  .header .nav.open {
    top: 5.85938vh;
  }
}

@media screen and (min-width: 1024px) {
  .header .nav {
    width: 50vw;
    left: auto;
  }
  .header .nav.open {
    top: 9.16667vh;
    left: auto;
    right: -20%;
  }
}

@media screen and (min-width: 1280px) {
  .header .nav {
    width: 30vw;
    right: -11%;
  }
  .header .nav.open {
    top: 6.875vh;
    left: auto;
    right: -11%;
  }
}

@keyframes ripple {
  0% {
    box-shadow: 0 0 0 0px rgba(255, 68, 111, 0.5);
  }
  25% {
    box-shadow: 0 0 0 8px rgba(255, 68, 111, 0.5);
  }
  50% {
    box-shadow: 0 0 0 3px rgba(255, 68, 111, 0.5);
  }
  75% {
    box-shadow: 0 0 0 10px rgba(255, 68, 111, 0.2);
  }
  100% {
    box-shadow: 0 0 0 0px rgba(255, 68, 111, 0.5);
  }
}

@keyframes topripple {
  0% {
    box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.5);
  }
  25% {
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.5);
  }
  50% {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.5);
  }
  75% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.2);
  }
  100% {
    box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.5);
  }
}

.jump {
  position: fixed;
  bottom: 1.875vw;
  right: 1.875vw;
  z-index: 200;
  transition: all .5s;
  width: 30%;
  max-width: 160px;
  animation-name: jump;
  animation-delay: 1.5s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

.jump a {
  display: block;
}

@media screen and (min-width: 768px) {
  .jump {
    width: 17%;
  }
}

@media screen and (min-width: 820px) {
  .jump {
    bottom: 20px;
    right: 40px;
    font-size: 32px;
    width: 10%;
    transform-origin: center bottom;
    max-width: 180px;
  }
  .jump:hover {
    transform: translate(0%, -20%) rotate(20deg) scale(1.2, 1.2);
    bottom: 40px;
  }
}

@keyframes jump {
  0% {
    transform: rotate(10deg);
  }
  100% {
    transform: rotate(-10deg);
  }
}

.view {
  position: relative;
  width: 100vw;
  height: 100vh;
  background-image: url(../img/view_back_deco_mbtb.webp), url(../img/view_back.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.view__tag {
  background-color: #FF446F;
  width: fit-content;
  margin-bottom: 10px;
  margin-left: auto;
  padding: 10px 6.25vw 10px 20px;
  color: #fff;
  border-top: 0.1px solid #000;
  border-bottom: 0.1px solid #000;
  border-left: 0.1px solid #000;
  font-weight: 400;
}

.view__visual {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 100vh;
  z-index: 10;
}

.view__img {
  position: absolute;
  top: 53%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70vw;
  height: auto;
  z-index: 10;
}

.view__img img {
  display: block;
  width: 100%;
  height: auto;
}

.view__back {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.5);
  z-index: 0;
}

@media screen and (min-width: 768px) {
  .view__img {
    width: 75vw;
  }
}

@media screen and (min-width: 820px) {
  .view {
    background-image: url(../img/view_back_deco_pc.webp), url(../img/view_back.webp);
  }
  .view__tagbox {
    position: absolute;
    top: 21.63462vh;
    right: 0;
    z-index: 2;
  }
  .view__img {
    height: 70vh;
    width: auto;
  }
  .view__img img {
    width: auto;
    height: 100%;
  }
}

.tag {
  padding: 20px 0;
  background-color: #fff;
  border-top: 1px solid #FF446F;
  border-bottom: 1px solid #FF446F;
  color: #FF446F;
  font-weight: 400;
  font-size: clamp(1rem, 2.4vw, 2rem);
  width: 100vw;
  white-space: nowrap;
  font-family: "Zen Kurenaido", serif;
}

.tag__slide {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
}

.tag__text {
  width: fit-content;
}

.tag .swiper-wrapper {
  transition-timing-function: linear;
}

.tag .swiper-slide {
  width: fit-content !important;
  padding: 0 40px;
}

.ty {
  background: #ff446f;
  padding: 40px;
}

.ty__inner {
  max-width: 87.5%;
  width: 100%;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .ty__inner {
    max-width: 70%;
  }
}

@media screen and (min-width: 820px) {
  .ty__inner {
    max-width: 90%;
  }
}

@media screen and (min-width: 1280px) {
  .ty__inner {
    max-width: 1100px;
  }
}

.ty__text {
  text-align: center;
  color: #fff;
  font-size: 32px;
  word-break: break-ward;
  font-weight: 900;
}

.ty__text span {
  display: inline-block;
}

@media screen and (min-width: 768px) {
  .ty__text {
    font-size: 56px;
    letter-spacing: 0.1em;
  }
}

.day {
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  overflow: hidden;
  margin-bottom: 80px;
}

.day__inner {
  max-width: 87.5%;
  width: 100%;
  margin: 0 auto;
  padding: 40px 0;
  color: #FF446F;
  font-size: 18px;
  font-weight: 900;
  position: relative;
  letter-spacing: 0.15em;
  line-height: 1.5;
  opacity: 0;
  transition: all 1.2s;
}

@media screen and (min-width: 768px) {
  .day__inner {
    max-width: 70%;
  }
}

@media screen and (min-width: 820px) {
  .day__inner {
    max-width: 90%;
  }
}

@media screen and (min-width: 1280px) {
  .day__inner {
    max-width: 1100px;
  }
}

.day__inner::after {
  content: "";
  display: block;
  position: absolute;
  width: 100vw;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #FF446F;
  transition: all .8s;
  opacity: 1;
}

.day__inner.active {
  opacity: 1;
}

.day__inner.active::after {
  left: -100vw;
  opacity: 0;
}

.day__date {
  padding: 40px 0;
  background-color: #FF446F;
  color: #fff;
  position: relative;
}

.day__date::after {
  content: "";
  display: block;
  position: absolute;
  width: 100vw;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  transition: all 0.8s;
  opacity: 1;
}

.day__date.active::after {
  left: 200vw;
  opacity: 0;
}

.day__day {
  font-size: 32px;
  font-weight: 900;
}

.day__day span {
  font-size: 56px;
}

.day__place {
  font-size: 16px;
  margin: 0 auto 48px;
}

.day__jumpbtn {
  width: fit-content;
  height: auto;
  margin: 0 auto;
  position: relative;
  transition: all .5s;
}

.day__jumpbtn a {
  color: #FF446F;
  padding: 16px 30px;
  width: auto;
  background-color: #fff;
  border-radius: 60px;
  display: block;
  transition: all .5s;
}

.day__jumpbtn a:hover {
  transform: scale(1.2, 1.2);
  animation-name: topripple;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
}

.day__about {
  padding: 40px 0 0;
  background-color: #fff;
  color: #FF446F;
  opacity: 0;
  transition: all .5s;
  position: relative;
  top: 20px;
}

.day__about .day__inner {
  max-width: 87.5%;
  width: 100%;
  margin: 0 auto;
  opacity: 1;
  padding: 0;
}

@media screen and (min-width: 768px) {
  .day__about .day__inner {
    max-width: 70%;
  }
}

@media screen and (min-width: 820px) {
  .day__about .day__inner {
    max-width: 90%;
  }
}

@media screen and (min-width: 1280px) {
  .day__about .day__inner {
    max-width: 1100px;
  }
}

.day__about .day__inner::after {
  display: none;
}

.day__about.active {
  opacity: 1;
  top: 0;
}

.day__subtitle {
  margin-bottom: 10px;
  font-size: 32px;
  font-weight: 900;
}

.day__text {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 500;
  max-width: 700px;
  margin: 0 auto;
}

.day__text span {
  display: inline-block;
}

@media screen and (min-width: 768px) {
  .day {
    margin-bottom: 120px;
  }
  .day__inner {
    padding: 60px 0;
    font-size: 40px;
    letter-spacing: 0.08em;
  }
  .day__date {
    padding: 60px 0;
  }
  .day__day {
    font-size: 48px;
    margin-bottom: 5px;
  }
  .day__day span {
    font-size: 64px;
  }
  .day__place {
    font-size: 22px;
  }
  .day__about {
    padding: 80px 0 0;
  }
  .day__text {
    font-size: clamp(1.25rem, 2.1vw, 1, 375rem);
    font-weight: 500;
    max-width: 560px;
    letter-spacing: 0.1em;
    margin: 0 auto;
  }
}

@media screen and (min-width: 1280px) {
  .day__inner {
    font-size: 48px;
  }
  .day__subtitle {
    font-size: 40px;
    margin-bottom: 30px;
  }
}

.description {
  margin-bottom: 120px;
  padding-top: 60px;
}

.description__inner {
  max-width: 87.5%;
  width: 100%;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .description__inner {
    max-width: 70%;
  }
}

@media screen and (min-width: 820px) {
  .description__inner {
    max-width: 90%;
  }
}

@media screen and (min-width: 1280px) {
  .description__inner {
    max-width: 1100px;
  }
}

.description__titlebox {
  position: relative;
  width: fit-content;
  height: auto;
  margin: 0 auto 40px;
  opacity: 0;
  transition: all 1s;
  top: 30px;
}

.description__titlebox.active {
  opacity: 1;
  top: 0;
}

.description .decotext {
  position: absolute;
  font-family: "Dancing Script", cursive;
  color: #FF446F;
  font-size: clamp(1rem, 2vw, 1.5rem);
  text-shadow: 0.5px 0.5px 0 #93223C;
  transform: rotate(-20deg);
  transform-origin: center;
  display: block;
  top: -30px;
  left: -30px;
}

.description__title {
  position: relative;
  font-family: "Zen Kurenaido", serif;
  text-align: center;
  width: fit-content;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(1.5rem, 2.803vw, 2rem);
}

.description .deco {
  position: absolute;
  width: 48px;
  height: 13px;
  background-image: url(../img/deco_03.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  right: 0px;
  bottom: -0.52817vh;
  max-width: 82px;
  max-height: 22px;
  transform: rotate(45deg);
  opacity: 0;
  transition: all .3s;
}

.description .deco.active {
  right: -20px;
  transform: rotate(0deg);
  opacity: 1;
}

@media screen and (min-width: 768px) {
  .description__title {
    font-size: clamp(2rem, 3.6, 2.5rem);
  }
  .description .deco {
    width: 80px;
    height: 30px;
    right: -40px;
  }
}

.description__box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.description__item {
  overflow: hidden;
  width: 48%;
  height: 100%;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.4);
}

.description__item img {
  border-radius: 10px;
}

.description__img {
  display: none;
  opacity: 0;
  transition: all 0.5s;
}

.description .open {
  overflow: visible;
}

.description .open .description__img {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  opacity: 1;
  animation-name: img;
  animation-duration: 0.2s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
}

.description .open .description__img span {
  position: absolute;
  width: 8vw;
  max-width: 45px;
  height: auto;
  display: block;
  top: 1.8vh;
  right: 4.2vw;
  color: #fff;
}

.description .open .description__img span svg {
  width: 100%;
  height: auto;
  color: #fff;
}

.description .open .description__img img {
  position: absolute;
  width: 90%;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 0;
}

@media screen and (min-width: 768px) {
  .description .open {
    overflow: visible;
  }
  .description .open .description__img img {
    position: absolute;
    width: auto;
    height: 80vh;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

@keyframes img {
  0% {
    opacity: 0;
    display: none;
  }
  25% {
    display: block;
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
    display: block;
  }
}

.artist {
  margin-bottom: 80px;
  padding-top: 60px;
}

.artist__inner {
  max-width: 87.5%;
  width: 100%;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .artist__inner {
    max-width: 70%;
  }
}

@media screen and (min-width: 820px) {
  .artist__inner {
    max-width: 90%;
  }
}

@media screen and (min-width: 1280px) {
  .artist__inner {
    max-width: 1100px;
  }
}

.artist__titlebox {
  position: relative;
  width: fit-content;
  height: auto;
  margin: 0 auto 40px;
  opacity: 0;
  transition: all 1s;
  top: 30px;
}

.artist__titlebox.active {
  opacity: 1;
  top: 0;
}

.artist .decotext {
  position: absolute;
  font-family: "Dancing Script", cursive;
  color: #FF446F;
  font-size: clamp(1rem, 2vw, 1.5rem);
  text-shadow: 0.5px 0.5px 0 #93223C;
  transform: rotate(-20deg);
  transform-origin: center;
  display: block;
  top: -30px;
  left: -30px;
}

.artist__title {
  position: relative;
  font-family: "Zen Kurenaido", serif;
  text-align: center;
  width: fit-content;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(1.5rem, 2.803vw, 2rem);
}

.artist .deco {
  position: absolute;
  width: 48px;
  height: 13px;
  background-image: url(../img/deco_03.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  right: 0px;
  bottom: -0.52817vh;
  max-width: 82px;
  max-height: 22px;
  transform: rotate(45deg);
  opacity: 0;
  transition: all .3s;
}

.artist .deco.active {
  right: -20px;
  transform: rotate(0deg);
  opacity: 1;
}

@media screen and (min-width: 768px) {
  .artist__title {
    font-size: clamp(2rem, 3.6, 2.5rem);
  }
  .artist .deco {
    width: 80px;
    height: 30px;
    right: -40px;
  }
}

.artist .pctop {
  margin: 0 auto 30px;
}

.artist__box {
  margin-bottom: 60px;
}

.artist__subtitle {
  margin-bottom: 20px;
  color: #FF446F;
  font-size: 32px;
  text-align: center;
}

.artist__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  justify-content: center;
}

.artist__item {
  width: 46.42857%;
  position: relative;
  margin: 0 5px 20px;
}

.artist__item::after {
  content: "";
  background-image: url(../img/shadow_dot.webp);
  background-size: 8px;
  background-repeat: round;
  position: absolute;
  right: -7px;
  bottom: -18px;
  display: block;
  width: 100%;
  height: 100%;
  z-index: -1;
  border-radius: 10px;
}

.artist__item img {
  display: block;
}

.artist__name {
  position: absolute;
  bottom: -10%;
  left: 0;
  width: fit-content;
  padding: 5px 10px;
  background-color: #fff;
  box-shadow: 2px 2px 0 #FF446F;
  border-radius: 5px;
  border: 1px solid #FF446F;
  font-weight: 400;
  font-size: clamp(0.875rem, 1.702vw, 1.25rem);
}

.artist .decotop {
  position: absolute;
  top: 5px;
  left: -10px;
  width: 17.8125vw;
  z-index: 10;
}

.artist .decobtm {
  position: absolute;
  bottom: 20px;
  right: -20px;
  width: 17.8125vw;
}

.artist__img {
  border-radius: 10px;
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  .artist {
    margin-bottom: 120px;
  }
  .artist__item {
    margin-bottom: 60px;
  }
  .artist__name {
    letter-spacing: 0.1em;
    bottom: -5px;
    padding: 10px;
  }
  .artist__name br {
    display: none;
  }
  .artist .decotop {
    left: -20px;
  }
  .artist .decobtm {
    right: -30px;
    bottom: 10px;
  }
}

@media screen and (min-width: 820px) {
  .artist__item::after {
    background-size: 10px;
  }
  .artist .pctop {
    display: block;
    margin: 0 auto 40px;
  }
  .artist .normaltop {
    display: none;
  }
  .artist__subtitle {
    font-size: 44px;
  }
  .artist__list {
    justify-content: center;
  }
  .artist__item {
    width: 25%;
    margin: 0 20px 60px;
  }
  .artist .decotop {
    left: -20px;
    width: 7.57812vw;
    height: 5.04808vh;
  }
  .artist .decobtm {
    right: -30px;
    bottom: 1.5vw;
    width: 7.57812vw;
    height: 5.04808vh;
  }
}

.ticket {
  margin-bottom: 40px;
  padding-top: 60px;
}

.ticket__inner {
  max-width: 87.5%;
  width: 100%;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .ticket__inner {
    max-width: 70%;
  }
}

@media screen and (min-width: 820px) {
  .ticket__inner {
    max-width: 90%;
  }
}

@media screen and (min-width: 1280px) {
  .ticket__inner {
    max-width: 1100px;
  }
}

.ticket__titlebox {
  position: relative;
  width: fit-content;
  height: auto;
  margin: 0 auto 40px;
  opacity: 0;
  transition: all 1s;
  top: 30px;
}

.ticket__titlebox.active {
  opacity: 1;
  top: 0;
}

.ticket .decotext {
  position: absolute;
  font-family: "Dancing Script", cursive;
  color: #FF446F;
  font-size: clamp(1rem, 2vw, 1.5rem);
  text-shadow: 0.5px 0.5px 0 #93223C;
  transform: rotate(-20deg);
  transform-origin: center;
  display: block;
  top: -30px;
  left: -30px;
}

.ticket__title {
  position: relative;
  font-family: "Zen Kurenaido", serif;
  text-align: center;
  width: fit-content;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(1.5rem, 2.803vw, 2rem);
}

.ticket .deco {
  position: absolute;
  width: 48px;
  height: 13px;
  background-image: url(../img/deco_03.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  right: 0px;
  bottom: -0.52817vh;
  max-width: 82px;
  max-height: 22px;
  transform: rotate(45deg);
  opacity: 0;
  transition: all .3s;
}

.ticket .deco.active {
  right: -20px;
  transform: rotate(0deg);
  opacity: 1;
}

@media screen and (min-width: 768px) {
  .ticket__title {
    font-size: clamp(2rem, 3.6, 2.5rem);
  }
  .ticket .deco {
    width: 80px;
    height: 30px;
    right: -40px;
  }
}

.ticket__sectionbox {
  padding: 60px 0 40px;
  background-color: #FFD2DD;
  border-radius: 20px;
  border: 0.5px solid #000;
}

.ticket__day {
  margin-bottom: 40px;
  font-size: 32px;
  font-family: "Zen Kurenaido", serif;
  text-align: center;
}

.ticket__day span {
  font-size: 28px;
}

.ticket .genre {
  margin-bottom: 40px;
}

.ticket .genre__item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  max-width: 400px;
  margin: 0 auto 10px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: 24px;
  padding: 20px 10px;
  border-top: 2px solid #575757;
  border-bottom: 2px solid #575757;
  color: #575757;
}

.ticket .genre__item span {
  font-size: 16px;
  font-weight: 600;
}

.ticket .genre__atten {
  max-width: 87.5%;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  font-size: 14px;
  color: #575757;
}

@media screen and (min-width: 768px) {
  .ticket .genre__atten {
    max-width: 70%;
  }
}

@media screen and (min-width: 820px) {
  .ticket .genre__atten {
    max-width: 90%;
  }
}

@media screen and (min-width: 1280px) {
  .ticket .genre__atten {
    max-width: 1100px;
  }
}

.ticket__list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  justify-content: center;
}

.ticket__item {
  width: 45%;
  max-width: 270px;
  background-color: #FF446F;
  margin: 4px;
  border-radius: 2vw;
  color: #fff;
  text-align: center;
  font-size: 14px;
  position: relative;
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.2);
  padding: 28px 0;
  transition: all .5s;
}

.ticket__item .line {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 95%;
  border-radius: 1.8vw;
  border: 1px solid #fff;
  max-width: 260px;
  padding: 24px 0;
  transition: all .5s;
}

.ticket__item a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.ticket__item span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (min-width: 768px) {
  .ticket {
    margin-bottom: 40px;
  }
  .ticket__item {
    background-color: #FF446F;
    margin: 10px;
    border-radius: 2vw;
    color: #fff;
    text-align: center;
    font-size: 20px;
    position: relative;
    box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.2);
    padding: 40px 0;
  }
  .ticket__item .line {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 1.8vw;
    border: 1px solid #fff;
    padding: 34px 0;
  }
}

@media screen and (min-width: 820px) {
  .ticket .genre__item {
    font-size: 32px;
  }
  .ticket .genre__atten {
    max-width: 87.5%;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    font-size: 18px;
    color: #575757;
  }
}

@media screen and (min-width: 820px) and (min-width: 768px) {
  .ticket .genre__atten {
    max-width: 70%;
  }
}

@media screen and (min-width: 820px) and (min-width: 820px) {
  .ticket .genre__atten {
    max-width: 90%;
  }
}

@media screen and (min-width: 820px) and (min-width: 1280px) {
  .ticket .genre__atten {
    max-width: 1100px;
  }
}

@media screen and (min-width: 820px) {
  .ticket__item {
    position: relative;
    width: 20vw;
    top: 0;
    left: 0;
  }
  .ticket__item .line {
    width: 18vw;
  }
  .ticket__item:hover {
    top: 6px;
    left: 6px;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.2);
    color: #FF446F;
    background-color: #fff;
  }
  .ticket__item:hover .line {
    border: 1px solid #FF446F;
  }
}

@media screen and (min-width: 1024px) {
  .ticket__item {
    width: 12vw;
    font-size: 14px;
  }
  .ticket__item .line {
    width: 11.5vw;
  }
}

@media screen and (min-width: 1280px) {
  .ticket__item {
    font-size: 18px;
  }
}

.atten {
  margin-bottom: 80px;
}

.atten__inner {
  max-width: 87.5%;
  width: 100%;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .atten__inner {
    max-width: 70%;
  }
}

@media screen and (min-width: 820px) {
  .atten__inner {
    max-width: 90%;
  }
}

@media screen and (min-width: 1280px) {
  .atten__inner {
    max-width: 1100px;
  }
}

.atten__title {
  text-align: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.atten__item {
  margin-bottom: 5px;
  font-size: 14px;
  font-family: "Zen Kaku Gothic New", sans-serif !important;
  font-weight: 500;
}

.atten__item::before {
  position: relative;
  top: -4px;
  left: -5px;
  display: inline-block;
  width: 3px;
  height: 3px;
  content: '';
  border-radius: 100%;
  background: #000;
}

.atten__subtitle {
  margin: 20px 0 5px;
  font-size: 14px;
}

.atten .red {
  color: #ff0000;
}

.atten .red::before {
  display: none;
}

@media screen and (min-width: 768px) {
  .atten {
    margin-bottom: 120px;
  }
}

.question {
  padding-top: 60px;
}

.question__inner {
  max-width: 87.5%;
  width: 100%;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .question__inner {
    max-width: 70%;
  }
}

@media screen and (min-width: 820px) {
  .question__inner {
    max-width: 90%;
  }
}

@media screen and (min-width: 1280px) {
  .question__inner {
    max-width: 1100px;
  }
}

.question__titlebox {
  position: relative;
  width: fit-content;
  height: auto;
  margin: 0 auto 40px;
  opacity: 0;
  transition: all 1s;
  top: 30px;
}

.question__titlebox.active {
  opacity: 1;
  top: 0;
}

.question .decotext {
  position: absolute;
  font-family: "Dancing Script", cursive;
  color: #FF446F;
  font-size: clamp(1rem, 2vw, 1.5rem);
  text-shadow: 0.5px 0.5px 0 #93223C;
  transform: rotate(-20deg);
  transform-origin: center;
  display: block;
  top: -30px;
  left: -30px;
}

.question__title {
  position: relative;
  font-family: "Zen Kurenaido", serif;
  text-align: center;
  width: fit-content;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(1.5rem, 2.803vw, 2rem);
}

.question .deco {
  position: absolute;
  width: 48px;
  height: 13px;
  background-image: url(../img/deco_03.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  right: 0px;
  bottom: -0.52817vh;
  max-width: 82px;
  max-height: 22px;
  transform: rotate(45deg);
  opacity: 0;
  transition: all .3s;
}

.question .deco.active {
  right: -20px;
  transform: rotate(0deg);
  opacity: 1;
}

@media screen and (min-width: 768px) {
  .question__title {
    font-size: clamp(2rem, 3.6, 2.5rem);
  }
  .question .deco {
    width: 80px;
    height: 30px;
    right: -40px;
  }
}

.question__item {
  border: 2px solid #FF446F;
  background-color: #fff;
  margin-bottom: 16px;
  padding: 16px;
  border-radius: 15px;
  font-size: 14px;
  font-weight: 400;
}

.question__item a {
  word-break: break-all;
  width: 74%;
  font-size: 16px;
  margin: 0 auto;
  color: #FF446F;
  display: block;
  transition: all .5s;
}

.question .arrow {
  position: relative;
  text-align: center;
  color: #FF446F;
  margin: 0 auto;
  font-size: 14px;
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: all .5s;
}

.question .arrow.is-open {
  opacity: 1;
  height: auto;
}

.question--flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  justify-content: flex-start;
  align-items: baseline;
  height: fit-content;
}

.question__query {
  margin-bottom: 10px;
  width: calc(100% - 24px);
  font-size: 18px;
}

.question__query span {
  width: 74%;
}

.question__query::before {
  content: "Q.";
  margin-right: 10px;
  padding: 4px;
  color: #FF446F;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: 24px;
}

.question__answer {
  height: 0;
  overflow: hidden;
  transition: height 0.5s ease;
  width: calc(100% - 24px);
}

.question__answer span {
  width: 76.55172%;
}

.question__answer::before {
  content: "A.";
  margin-right: 10px;
  padding: 4px;
  color: #447FFF;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: 24px;
}

.question__contents {
  position: relative;
}

.question__btn::before {
  content: "+";
  display: block;
  position: absolute;
  right: 0;
  font-weight: 900;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #FF446F;
  font-size: 28px;
  transition: all .5s;
  transform-origin: center;
}

.question__btn.is-open::before {
  content: "-";
  display: block;
  font-size: 56px;
  font-weight: 200;
  font-family: "Zen Kaku Gothic New", sans-serif;
  /* クリック後はマイナスアイコン */
  top: -24px;
}

@media screen and (min-width: 714px) {
  .question__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    width: 70%;
    padding: 0 20px;
    margin: 0 auto;
    flex-wrap: wrap;
    align-items: stretch;
  }
  .question__item {
    margin: 0 auto 16px;
    width: 48%;
    font-size: 18px;
  }
  .question__query {
    width: 100%;
  }
  .question__answer {
    width: 100%;
    height: auto !important;
    overflow: visible !important;
  }
  .question__answer span {
    line-height: 1.5em;
    letter-spacing: 0.8;
  }
  .question .arrow {
    padding-top: 10px;
    overflow: auto;
    opacity: 1;
    height: auto;
  }
  .question .arrow a {
    position: relative;
    text-decoration: underline;
    transition: all .5s;
  }
  .question .arrow a:hover {
    text-decoration: none;
    color: #447FFF;
  }
  .question__btn {
    display: none;
  }
}

.access {
  margin-bottom: 80px;
  padding-top: 60px;
}

.access__inner {
  max-width: 87.5%;
  width: 100%;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .access__inner {
    max-width: 70%;
  }
}

@media screen and (min-width: 820px) {
  .access__inner {
    max-width: 90%;
  }
}

@media screen and (min-width: 1280px) {
  .access__inner {
    max-width: 1100px;
  }
}

.access__titlebox {
  position: relative;
  width: fit-content;
  height: auto;
  margin: 0 auto 40px;
  opacity: 0;
  transition: all 1s;
  top: 30px;
}

.access__titlebox.active {
  opacity: 1;
  top: 0;
}

.access .decotext {
  position: absolute;
  font-family: "Dancing Script", cursive;
  color: #FF446F;
  font-size: clamp(1rem, 2vw, 1.5rem);
  text-shadow: 0.5px 0.5px 0 #93223C;
  transform: rotate(-20deg);
  transform-origin: center;
  display: block;
  top: -30px;
  left: -30px;
}

.access__title {
  position: relative;
  font-family: "Zen Kurenaido", serif;
  text-align: center;
  width: fit-content;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(1.5rem, 2.803vw, 2rem);
}

.access .deco {
  position: absolute;
  width: 48px;
  height: 13px;
  background-image: url(../img/deco_03.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  right: 0px;
  bottom: -0.52817vh;
  max-width: 82px;
  max-height: 22px;
  transform: rotate(45deg);
  opacity: 0;
  transition: all .3s;
}

.access .deco.active {
  right: -20px;
  transform: rotate(0deg);
  opacity: 1;
}

@media screen and (min-width: 768px) {
  .access__title {
    font-size: clamp(2rem, 3.6, 2.5rem);
  }
  .access .deco {
    width: 80px;
    height: 30px;
    right: -40px;
  }
}

.access__box {
  position: relative;
  font-weight: 400;
  height: fit-content;
  margin-bottom: 40px;
}

.access__databox {
  margin-bottom: 40px;
}

.access__textbox {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  justify-content: flex-start;
  align-items: center;
  border-bottom: 1px solid #000;
  padding: 20px 10px;
}

.access__datatitle {
  width: 70px;
  margin: 10px 30px 10px 0;
  text-align: justify;
  text-align-last: justify;
}

.access__datatext {
  width: fit-content;
  margin: 10px 0 10px;
}

.access__datatext span {
  display: inline-block;
}

.access__text {
  position: relative;
  letter-spacing: 0.08em;
  line-height: 1.2;
  margin: 20px 0;
}

.access iframe {
  position: relative;
  display: block !important;
  height: 280px;
}

.access__bustext {
  text-align: center;
  margin-bottom: 40px;
}

.access__bustext span {
  display: inline-block !important;
}

.access__busbtn {
  width: fit-content;
  margin: 0 auto;
}

.access__busbtn a {
  color: #fff;
  padding: 16px 30px;
  width: auto;
  background-color: #FF446F;
  border-radius: 60px;
}

.access__busbtn a:hover {
  transform: scale(1.2, 1.2);
  animation-name: ripple;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
}

@media screen and (min-width: 820px) {
  .access {
    margin-bottom: 120px;
  }
  .access__box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto60px;
    align-items: flex-end;
    padding-bottom: 0;
    height: 100%;
  }
  .access__databox {
    width: 48%;
    padding-right: 30px;
    margin-bottom: 0;
  }
  .access iframe {
    width: 100%;
    height: 300px;
  }
  .access__maindata {
    width: 48%;
  }
}

.company {
  margin-bottom: 80px;
}

.company__inner {
  max-width: 87.5%;
  width: 100%;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .company__inner {
    max-width: 70%;
  }
}

@media screen and (min-width: 820px) {
  .company__inner {
    max-width: 90%;
  }
}

@media screen and (min-width: 1280px) {
  .company__inner {
    max-width: 1100px;
  }
}

.company__logobox {
  margin: 0 auto 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  justify-content: center;
}

.company__logo {
  margin: 0 auto;
  width: 40%;
}

.company__logo a img {
  width: 100%;
  height: auto;
}

.company__textbox {
  font-size: 14px;
  width: fit-content;
  width: -moz-fit-content;
  margin: 0 auto;
  color: #FF446F;
}

.company__text {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 8px;
}

.company__text:last-child {
  margin-bottom: 0;
}

.company__textlink {
  position: relative;
  font-weight: 900;
  font-size: 10px;
}

@media screen and (min-width: 820px) {
  .company .company__logobox {
    margin: 0 auto 100px;
  }
  .company .company__logobox .company__logo {
    margin: 0 10px;
  }
  .company .company__logo {
    width: 20%;
    margin-bottom: 0;
    transition: all .5s;
    opacity: 1;
  }
  .company .company__logo:hover {
    opacity: .5;
    transform: scale(0.9);
  }
  .company .company__textbox {
    font-size: 20px;
    width: fit-content;
    width: -moz-fit-content;
    margin: 0 auto;
  }
  .company .company__textlink {
    font-size: 20px;
  }
}

.footer {
  padding-bottom: 80px;
  text-align: center;
  color: #FF446F;
  position: relative;
}

.footer__deco {
  position: absolute;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  top: 70%;
  left: 50%;
  z-index: 1;
}

.footer__deco::before {
  content: "";
  position: absolute;
  left: 0;
  width: 70px;
  height: 30px;
  background-image: url(../img/deco_01.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.footer__deco::after {
  content: "";
  position: absolute;
  right: 0;
  width: 107px;
  height: 25px;
  background-image: url(../img/deco_02.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

@media screen and (min-width: 820px) {
  .footer__deco::before {
    width: 140px;
    height: 60px;
    left: 40px;
    bottom: 5px;
  }
  .footer__deco::after {
    width: 214px;
    height: 50px;
    right: 40px;
    bottom: 5px;
  }
}

@media screen and (min-width: 1024px) {
  .footer__deco::before {
    width: 210px;
    height: 90px;
    left: 40px;
    bottom: 5px;
  }
  .footer__deco::after {
    width: 321px;
    height: 75px;
    right: 40px;
    bottom: 5px;
  }
}
