@charset "UTF-8";
:root {
  /* color */
  --base-color: #fff;
  --base2-color: #fff4e2;
  --main-color: #333333;
  --accent-color: #e25418;
  --gold-color: #a68c26;
}

@keyframes gradientMove {
  0% {
    background-position: 50% 0%;
  }
  50% {
    background-position: 50% 100%;
  }
  100% {
    background-position: 50% 0%;
  }
}
/* -- FOUNDATION -- */
html {
  font-size: 62.5%;
}

body {
  position: relative;
  width: 100%;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: var(--main-color);
  line-height: 1;
}
body:before {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: block;
  width: 100%;
  height: 100vh;
  background: linear-gradient(0deg, rgb(127, 176, 204) 0%, rgb(192, 172, 204) 0%, rgb(213, 169, 203) 13%, rgb(234, 166, 202) 50%, rgb(181, 171, 203) 80%, rgb(127, 176, 204) 100%);
  background-size: 800% 800%;
  animation: gradientMove 24s ease infinite;
  content: "";
  z-index: -1;
}
@media (max-width:768px) {
  body {
    font-size: 3.4667vw;
  }
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  text-decoration: none;
  color: var(--main-color);
  transition: 0.2s opacity;
}

@media (min-width:769px) {
  a:hover {
    opacity: 0.7;
  }
}
/* -- LAYOUT -- */
#overlay {
  position: fixed;
  inset: 0;
  background: white;
  z-index: 9999;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.2s ease;
}

#overlay.hidden {
  opacity: 0;
}

.toggle {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 101;
  margin: 0;
  padding: 0;
  width: 13.0067vw;
  height: 13.0067vw;
  border: none;
  background: none;
  cursor: pointer;
}
@media (max-width:768px) {
  .toggle {
    display: block;
  }
}
.toggle > span, .toggle:before, .toggle:after {
  display: block;
  position: absolute;
  top: 50%;
  left: calc(50% - 2.4vw);
  width: 4.8vw;
  height: 0.5333vw;
  margin: 0;
  background-color: #fff;
}
.toggle > span {
  transition: opacity 0.3s ease;
  will-change: opacity;
}
.toggle::before, .toggle::after {
  content: "";
  transition: background-color 0.3s ease;
}
.toggle::before {
  transform: translateY(-2.1333vw);
}
.toggle::after {
  transform: translateY(2.1333vw);
}
.toggle[aria-expanded=true] > span {
  opacity: 0;
}
.toggle[aria-expanded=true]::before {
  animation: 0.3s ease closeBar1 forwards;
}
.toggle[aria-expanded=true]::after {
  animation: 0.3s ease closeBar2 forwards;
}
.toggle.-close::before {
  animation: 0.3s ease closeBar1Rev forwards;
}
.toggle.-close::after {
  animation: 0.3s ease closeBar2Rev forwards;
}

.humnav {
  display: none;
  justify-content: center;
  align-content: center;
  align-items: center;
  flex-flow: column;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #e1a8cb;
  color: black;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media (max-width:768px) {
  .humnav {
    display: flex;
  }
}
.humnav[aria-hidden=true] {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}
.humnav[aria-hidden=false] {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.humnav_logo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9.7333vw;
  margin: 10.8vw auto 0;
}
.humnav_sol {
  width: 29.4667vw;
}
.humnav_mynavi {
  width: 37.0667vw;
}

.menu li {
  position: relative;
}
.menu li a {
  display: block;
  width: 100%;
  color: #fff;
  font-size: 5vw;
  font-weight: 700;
}
.menu li + li {
  margin-top: 8vw;
}

@keyframes closeBar1 {
  0% {
    transform: translateY(-10px);
  }
  50% {
    transform: translateY(0) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(45deg);
  }
}
@keyframes closeBar2 {
  0% {
    transform: translateY(10px);
  }
  50% {
    transform: translateY(0) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(-45deg);
  }
}
@keyframes closeBar1Rev {
  0% {
    transform: translateY(0) rotate(45deg);
  }
  50% {
    transform: translateY(0) rotate(0);
  }
  100% {
    transform: translateY(-10px);
  }
}
@keyframes closeBar2Rev {
  0% {
    transform: translateY(0) rotate(-45deg);
  }
  50% {
    transform: translateY(0) rotate(0);
  }
  100% {
    transform: translateY(10px);
  }
}
@media (max-width:768px) {
  @keyframes closeBar1 {
    0% {
      transform: translateY(-1.4667vw);
    }
    50% {
      transform: translateY(0) rotate(0);
    }
    100% {
      transform: translateY(0) rotate(45deg);
    }
  }
  @keyframes closeBar2 {
    0% {
      transform: translateY(1.4667vw);
    }
    50% {
      transform: translateY(0) rotate(0);
    }
    100% {
      transform: translateY(0) rotate(-45deg);
    }
  }
  @keyframes closeBar1Rev {
    0% {
      transform: translateY(0) rotate(45deg);
    }
    50% {
      transform: translateY(0) rotate(0);
    }
    100% {
      transform: translateY(-1.4667vw);
    }
  }
  @keyframes closeBar2Rev {
    0% {
      transform: translateY(0) rotate(-45deg);
    }
    50% {
      transform: translateY(0) rotate(0);
    }
    100% {
      transform: translateY(1.4667vw);
    }
  }
}
.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  height: 70px;
  padding: 0 30px;
  box-sizing: border-box;
  transition: background-color 0.7s ease-in;
  background-color: #85b1cc;
  z-index: 3;
}
.header.is-kv-visible {
  background-color: transparent;
}
@media (max-width:768px) {
  .header {
    padding: 3.4667vw;
    height: auto;
  }
}

.header_logo {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 15px;
}
@media (max-width:768px) {
  .header_logo {
    gap: 2.5333vw;
  }
}

.header_sol {
  width: min(106px, 9vw);
}
@media (max-width:768px) {
  .header_sol {
    width: 15.3333vw;
  }
}

.header_mynavi {
  width: min(166px, 14vw);
}
@media (max-width:768px) {
  .header_mynavi {
    width: 24.1333vw;
  }
}

.header_navpc {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: min(3em, 1vw);
  height: 100%;
  font-size: clamp(7.65px, -1.546px + 1.196vw, 14px);
  font-weight: 700;
  list-style: none;
}
.header_navpc a {
  color: #fff;
}
@media (max-width:768px) {
  .header_navpc {
    display: none;
  }
}

.kv {
  padding: 90px 0 70px;
  background-image: url(../img/kv_sakura-l.png), url(../img/kv_sakura-r.png);
  background-size: 228px, 238px;
  background-repeat: no-repeat, no-repeat;
  background-position: top -70px left, top -70px right;
}
@media (max-width:768px) {
  .kv {
    padding: 30.6667% 0 33.6%;
    background-image: url(../img/sp/kv_sakura.png);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: top center;
  }
}

.kv_sub {
  display: block;
  width: 648px;
  margin: 0 auto;
}
@media (max-width:768px) {
  .kv_sub {
    width: 89.3333%;
  }
}

.kv_logo {
  display: block;
  width: 701px;
  margin: 11px auto 0;
}
@media (max-width:768px) {
  .kv_logo {
    width: 94.5333%;
    margin: 4.6667% auto 0;
  }
}

.date {
  padding: 15px 0 10px;
  background: #f645b3;
}
.date img {
  display: block;
  width: 761px;
  max-width: 90%;
  margin: 0 auto;
}
@media (max-width:768px) {
  .date {
    padding: 5.6% 0 4.2667%;
  }
  .date img {
    width: 93.0667%;
    min-width: unset;
  }
}

.about {
  position: relative;
  padding: 75px 0 130px;
  background-color: #fff;
  background-image: url(../img/about_sakura.png);
  background-repeat: no-repeat;
  background-position: center 360px;
  background-size: 1600px;
}
@media (max-width:768px) {
  .about {
    padding: 15.4667% 0 23.6%;
    background-image: url(../img/sp/about_sakura.png);
    background-repeat: no-repeat;
    background-position: center 602px;
    background-size: 100%;
  }
}

.about_heading {
  width: 543px;
  margin: 0 auto;
}
@media (max-width:768px) {
  .about_heading {
    width: 88%;
  }
}

.about_txt {
  margin: 50px auto 0;
  font-size: min(22px, 2.6vw);
  color: #679cbb;
  font-weight: 700;
  line-height: 1.909;
  text-align: center;
}
@media (max-width:768px) {
  .about_txt {
    margin: 7.3333vw auto 0;
    font-size: 3.7333vw;
    line-height: 1.8571;
  }
}

.about_btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 500px;
  height: 60px;
  margin: 50px auto 0;
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  border-radius: 30px;
  background: #f645b3;
  box-shadow: 4px 5px 0px 0px #b70463;
  transition: transform 0.3s, box-shadow 0.3s;
}
.about_btn:after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  display: block;
  width: 15px;
  height: 11px;
  margin: auto 0;
  background: url(../img/carret.svg);
  background-size: 15px 11px;
  background-repeat: no-repeat;
  content: "";
}
.about_btn:hover {
  transform: translateY(2px);
  opacity: 1;
  box-shadow: 3px 3px 0px 0px #b70463;
}
@media (max-width:768px) {
  .about_btn {
    width: 93.3333vw;
    height: 12vw;
    margin: 8vw auto 0;
    font-size: 4.8vw;
    font-weight: 900;
    border-radius: 6vw;
    box-shadow: 0.6667vw 0.9333vw 0px 0px #b70463;
  }
  .about_btn:after {
    right: 5.4667vw;
    display: block;
    width: 3.2vw;
    height: 2.2667vw;
    margin: auto 0;
    background: url(../img/carret.svg);
    background-size: 3.2vw 2.2667vw;
  }
  .about_btn:hover {
    transform: unset;
    box-shadow: 4px 5px 0px 0px #b70463;
  }
}

.main_wrapper {
  position: relative;
  overflow: hidden;
  background: repeating-linear-gradient(0deg, rgb(127, 176, 204) 0%, rgb(213, 169, 203) 13%, rgb(234, 166, 202) 25%, rgb(181, 171, 203) 40%, rgb(127, 176, 204) 50%);
  background-size: 100% 400%;
  animation: gradientMove 24s ease-in-out infinite;
}
.main_wrapper:after {
  position: absolute;
  inset: 0;
  background: url(../img/live_over.png);
  background-size: 1600px;
  background-position: top center;
  background-repeat: no-repeat;
  pointer-events: none;
  content: "";
}
@media (max-width:768px) {
  .main_wrapper:after {
    background: url(../img/sp/live_over_1.png);
    background-size: 100%;
    background-position: bottom 3vw center;
    background-repeat: no-repeat;
  }
}

.main_wrapper-2 {
  position: relative;
  padding-top: 180px;
  background: repeating-linear-gradient(0deg, rgb(127, 176, 204) 0%, rgb(213, 169, 203) 13%, rgb(234, 166, 202) 25%, rgb(181, 171, 203) 40%, rgb(127, 176, 204) 50%);
  background-size: 100% 400%;
  animation: gradientMove 24s ease-in-out infinite;
}
.main_wrapper-2:before {
  position: absolute;
  top: -1px;
  display: block;
  width: 100%;
  height: 180px;
  background: url(../img/notice_bottom.png);
  background-size: 100% 180px;
  background-position: top center;
  background-repeat: no-repeat;
  pointer-events: none;
  content: "";
}
.main_wrapper-2:after {
  position: absolute;
  inset: 0;
  background: url(../img/voice_over.png);
  background-size: 1600px;
  background-position: top center;
  background-repeat: repeat-y;
  pointer-events: none;
  content: "";
}
@media (max-width:768px) {
  .main_wrapper-2 {
    padding-top: 13.7333vw;
  }
  .main_wrapper-2:before {
    height: 13.7333vw;
    background: url(../img/sp/notice_bottom.png);
    background-size: 100% 13.7333vw;
    background-position: top center;
    background-repeat: no-repeat;
  }
  .main_wrapper-2:after {
    display: none;
  }
}

.scroll {
  position: absolute;
  bottom: -33px;
  left: 0;
  right: 0;
  overflow: hidden;
  width: 100%;
  height: 91px;
  z-index: 2;
  background-image: url("../img/loop_txt.png");
  background-repeat: repeat-x;
  background-size: 1030px auto;
  background-position: 0 50%;
  animation: scrollBg 25s linear infinite;
}
@media (max-width:768px) {
  .scroll {
    bottom: -4vw;
    height: 12.6667vw;
    background-image: url("../img/loop_txt.png");
    background-repeat: repeat-x;
    background-size: 142.4vw auto;
  }
}

@keyframes scrollBg {
  from {
    background-position: 0 50%;
  }
  to {
    /* タイル1枚ぶんだけ左へ動かす */
    background-position: -1030px 50%;
  }
}
.live {
  padding: 109px 20px 0;
}
@media (max-width:768px) {
  .live {
    padding: 20.5333vw 0 0;
  }
}

.live_heading {
  width: 269px;
  margin: 0 auto;
}
@media (max-width:768px) {
  .live_heading {
    width: 37.7333vw;
  }
}

.live_txt {
  margin: 50px auto 0;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}
@media (max-width:768px) {
  .live_txt {
    margin: 6.4vw auto 0;
    font-size: 3.4667vw;
  }
}

.live_container {
  display: flex;
  justify-content: center;
  align-items: start;
  gap: 20px;
  margin: 50px auto 0;
}
@media (max-width:768px) {
  .live_container {
    justify-content: start;
    align-items: center;
    flex-flow: column;
    gap: 8.1333vw;
    margin: 6.9333vw auto 0;
  }
}

.live_box {
  width: 50%;
  max-width: 588px;
}
@media (max-width:768px) {
  .live_box {
    width: 92.6667%;
    max-width: unset;
  }
}

.live_img {
  filter: drop-shadow(0px 0px 19px rgba(139, 176, 204, 0.4));
}
@media (max-width:768px) {
  .live_img {
    filter: drop-shadow(0px 0px 4vw rgba(139, 176, 204, 0.5));
  }
}

.live_btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 590px;
  max-width: 100%;
  height: 60px;
  margin-top: 50px;
  color: #6793cd;
  font-size: min(26px, 2.2vw);
  font-weight: 700;
  border-radius: 30px;
  border: none;
  outline: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.live_btn:after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  display: block;
  width: 15px;
  height: 11px;
  margin: auto 0;
  background: url(../img/carret_b.svg);
  background-size: 15px 11px;
  background-repeat: no-repeat;
  transition: transform 0.1s linear;
  content: "";
}
@media (max-width:768px) {
  .live_btn {
    width: 92.8vw;
    height: 9.3333vw;
    margin-top: 4.5333vw;
    font-size: 4vw;
    border-radius: 4.6667vw;
  }
  .live_btn:after {
    right: 5.6vw;
    display: block;
    width: 3.2vw;
    height: 2.2667vw;
    margin: auto 0;
    background: url(../img/carret_b.svg);
    background-size: 3.2vw 2.2667vw;
    background-repeat: no-repeat;
    transition: transform 0.1s linear;
    content: "";
  }
}

.live_body {
  max-height: 0;
  margin-top: 30px;
  color: #fff;
  line-height: 1.8889;
  overflow: hidden;
  transition: max-height 0.3s ease-in;
}
@media (max-width:768px) {
  .live_body {
    margin-top: 4vw;
    font-size: 3.4667vw;
    line-height: 1.5385;
  }
}

.live_box.is-active .live_btn:after {
  transform: rotate(180deg);
}

.live_newsong {
  display: block;
  width: 876px;
  max-width: 100%;
  margin: 40px auto 0;
}
@media (max-width:768px) {
  .live_newsong {
    width: 95.6vw;
    margin: 4.5vw auto 0;
  }
}

.guest {
  position: relative;
  padding: 80px 0 0;
  z-index: 2;
}
@media (max-width:768px) {
  .guest {
    padding: 14.6667vw 0 0;
  }
}

.guest_heading {
  width: 435px;
  margin: 0 auto;
}
@media (max-width:768px) {
  .guest_heading {
    width: 62.2667vw;
  }
}

.guest_txt {
  margin: 50px auto 0;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}
@media (max-width:768px) {
  .guest_txt {
    margin: 6.6667vw auto 0;
    font-size: 3.4667vw;
  }
}

.guest_container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin: 50px auto 0;
}
@media (max-width:768px) {
  .guest_container {
    gap: 2.1333vw;
    margin: 6.6667vw auto 0;
  }
}

.guest_box {
  padding: 10px;
  background: #fff;
  box-sizing: border-box;
}
@media (max-width:768px) {
  .guest_box {
    width: 45.3333vw;
    padding: 1.3333vw;
  }
}

.guest_img {
  display: block;
  width: 100%;
  max-width: 290px;
}

.guest_name {
  margin: 10px auto 0;
  color: #e874b1;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}
@media (max-width:768px) {
  .guest_name {
    margin: 1.3333vw auto 0;
    font-size: 3.4667vw;
  }
}

.mc {
  position: relative;
  padding: 97px 0 110px;
  background-image: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.5) 44%, rgba(255, 255, 255, 0) 100%);
  background-size: 100% 160px;
  background-repeat: no-repeat;
  background-position: bottom center;
  z-index: 2;
}
@media (max-width:768px) {
  .mc {
    padding: 15.8667vw 0 26.5vw;
    background-image: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.5) 44%, rgba(255, 255, 255, 0) 100%);
    background-size: 100% 100px;
    background-repeat: no-repeat;
    background-position: bottom center;
  }
}

.mc_heading {
  width: 154px;
  margin: 0 auto;
}
@media (max-width:768px) {
  .mc_heading {
    width: 22.8vw;
  }
}

.mc_container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin: 50px auto 0;
}
@media (max-width:768px) {
  .mc_container {
    gap: 2.1333vw;
    margin: 6vw auto 0;
  }
}

.mc_box {
  padding: 10px;
  background: #fff;
  box-sizing: border-box;
}
@media (max-width:768px) {
  .mc_box {
    width: 45.3333vw;
    padding: 1.3333vw;
  }
}

.mc_img {
  display: block;
  width: 300px;
  height: auto;
}

.mc_name {
  margin: 10px auto 0;
  color: #e874b1;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}
@media (max-width:768px) {
  .mc_name {
    margin: 1.3333vw auto 0;
    font-size: 3.4667vw;
  }
}

.mc_namesub {
  margin-top: 0.5em;
  font-size: 0.55em;
}

.event {
  padding: 70px 0 0;
  background: url(../img/main_sakura.png);
  background-color: #fff;
  background-size: 1514px;
  background-repeat: no-repeat;
  background-position: center top;
}
@media (max-width:768px) {
  .event {
    padding: 15.7333vw 0 0;
    background: #fff;
  }
}

.event_heading {
  width: 180px;
  margin: 0 auto;
}
@media (max-width:768px) {
  .event_heading {
    width: 25.4667vw;
  }
}

.event_list {
  width: 788px;
  max-width: 95%;
  margin: 0 auto 0;
}
.event_list dl {
  margin: 50px auto 0;
}
.event_list dl + dl {
  margin: 30px auto 0;
}
.event_list dt {
  padding-bottom: 10px;
  color: #e398c2;
  font-size: 18px;
  border-bottom: 1px solid #e4e3ea;
}
.event_list dd {
  margin: 10px auto 0;
  line-height: 1.4444;
}
.event_list dd > .andmore {
  display: inline-block;
  margin-left: 1em;
  color: #8fb1cc;
}
.event_list dd > a {
  color: #0000ee;
  text-decoration: underline;
}
.event_list dd .mynavi {
  width: 147px;
}
@media (max-width:768px) {
  .event_list {
    width: 93.2vw;
  }
  .event_list dl {
    margin: 5.7333vw auto 0;
  }
  .event_list dl + dl {
    margin: 7vw auto 0;
  }
  .event_list dt {
    padding-bottom: 2.5vw;
    font-size: 4vw;
  }
  .event_list dd {
    margin: 2.5vw auto 0;
    font-size: 3.4667vw;
    line-height: 1.538;
  }
  .event_list dd > .andmore {
    display: block;
    margin-left: 0;
  }
  .event_list dd .mynavi {
    width: 31.2vw;
  }
}

.attention {
  width: 100%;
  margin: 40px auto 0;
  padding: 30px 30px 40px;
  box-sizing: border-box;
  background: #fff;
  border: 3px solid #e398c2;
}
@media (max-width:768px) {
  .attention {
    margin: 5.6vw auto 0;
    padding: 5.4667vw 3.6vw 6.8vw;
    border: 1.5px solid #e398c2;
  }
}

.attention_heading {
  color: #e398c2;
  font-size: 26px;
  font-weight: 900;
  text-align: center;
}
@media (max-width:768px) {
  .attention_heading {
    font-size: 6vw;
  }
}

.attention_txt {
  margin: 20px auto 0;
  font-weight: 500;
  line-height: 1.75;
}
@media (max-width:768px) {
  .attention_txt {
    margin: 4.2667vw auto 0;
    font-size: 3.4667vw;
  }
  .attention_txt + .attention_txt {
    margin: 1.5vw auto 0;
  }
}

.ticket {
  padding-top: 70px;
  background: url(../img/main_sakura.png);
  background-color: #fff;
  background-size: 1514px;
  background-repeat: no-repeat;
  background-position: top 70px center;
}
@media (max-width:768px) {
  .ticket {
    background: #fff;
  }
}

.ticket_container {
  width: 788px;
  max-width: 95%;
  margin: 0 auto;
}
@media (max-width:768px) {
  .ticket_container {
    width: 93.0667vw;
    max-width: unset;
  }
}

.ticket_heading {
  width: 201px;
  margin: 0 auto;
}
@media (max-width:768px) {
  .ticket_heading {
    width: 28.2667vw;
  }
}

.ticket_box {
  margin: 40px auto 0;
}
@media (max-width:768px) {
  .ticket_box {
    margin: 6.4vw auto 0;
  }
}

.ticket_boxHeading {
  position: relative;
  display: flex;
  justify-content: start;
  align-items: center;
  height: 40px;
  padding-left: 18px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  box-sizing: border-box;
  background: linear-gradient(90deg, #95b2cc, #e9a7ca);
}
.ticket_boxHeading:after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: -1px;
  display: block;
  width: 11px;
  height: 22px;
  margin: auto;
  background-image: url(../img/half_circle.svg);
  background-size: 11px 22px;
  background-repeat: no-repeat;
  content: "";
}
@media (max-width:768px) {
  .ticket_boxHeading {
    height: 12vw;
    padding-left: 3.4667vw;
    font-size: 4vw;
  }
  .ticket_boxHeading:after {
    width: 2.9333vw;
    height: 6.6667vw;
    background-image: url(../img/half_circle.svg);
    background-size: 2.9333vw 6.6667vw;
    background-repeat: no-repeat;
  }
}

.ticket_priceList {
  display: flex;
  justify-content: start;
  flex-flow: column;
  gap: 3px;
  list-style: none;
}
.ticket_priceList > li {
  display: flex;
  justify-content: start;
  align-items: center;
  height: 40px;
}
.ticket_priceList > li > .head {
  flex: 0 0 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  min-height: 40px;
  font-size: 15px;
  font-weight: 700;
  background: #ead9e3;
}
.ticket_priceList > li > .detail {
  flex: 1 0 auto;
  display: flex;
  justify-content: start;
  align-items: center;
  min-height: 40px;
  padding-left: 19px;
  font-size: 18px;
  font-weight: 900;
  background: #f3e9ef;
}
@media (max-width:768px) {
  .ticket_priceList {
    gap: 0.4vw;
  }
  .ticket_priceList > li {
    height: 9.3333vw;
  }
  .ticket_priceList > li > .head {
    flex: 0 0 50%;
    width: 50%;
    min-height: 9.3333vw;
    font-size: 3.4667vw;
  }
  .ticket_priceList > li > .detail {
    min-height: 9.3333vw;
    padding-left: 7.3333vw;
    font-size: 3.4667vw;
  }
}

.ticket_notice {
  margin: 20px auto 0;
  list-style: none;
}
.ticket_notice li {
  padding-left: 1em;
  text-indent: -1em;
  font-size: 14px;
  line-height: 1.7143;
}
@media (max-width:768px) {
  .ticket_notice {
    margin: 4vw auto 0;
  }
  .ticket_notice li {
    font-size: 3.4667vw;
    line-height: 1.4615;
  }
}

.ticket_scheduleHeading {
  margin: 30px auto 0;
  padding-bottom: 10px;
  color: #e398c2;
  font-size: 18px;
  font-weight: 700;
  border-bottom: 1px solid #e4e3ea;
}
@media (max-width:768px) {
  .ticket_scheduleHeading {
    margin: 4.2667vw auto 0;
    padding-bottom: 2.5333vw;
    font-size: 4vw;
  }
}

.ticket_scheduleDetail {
  margin: 10px auto 0;
  font-size: 18px;
  font-weight: 700;
}
@media (max-width:768px) {
  .ticket_scheduleDetail {
    margin: 2.9333vw auto 0;
    font-size: 3.4667vw;
  }
}

.ticket_btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 400px;
  height: 50px;
  margin: 20px auto 0;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  border-radius: 25px;
  background: #f645b3;
  box-shadow: 0px 4px 0px 0px #b70463;
  transition: transform 0.3s, box-shadow 0.3s;
}
.ticket_btn:after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  display: block;
  width: 15px;
  height: 11px;
  margin: auto 0;
  background: url(../img/carret.svg);
  background-size: 15px 11px;
  background-repeat: no-repeat;
  transform: rotate(-90deg);
  content: "";
}
.ticket_btn:hover {
  transform: translateY(3px);
  opacity: 1;
  box-shadow: 0px 2px 0px 0px #b70463;
}
@media (max-width:768px) {
  .ticket_btn {
    width: 93.3333vw;
    height: 12vw;
    margin: 4vw auto 0;
    font-size: 4.8vw;
    font-weight: 900;
    border-radius: 6vw;
    box-shadow: 0.6667vw 0.9333vw 0px 0px #b70463;
  }
  .ticket_btn:after {
    right: 5.4667vw;
    display: block;
    width: 3.2vw;
    height: 2.2667vw;
    margin: auto 0;
    background: url(../img/carret.svg);
    background-size: 3.2vw 2.2667vw;
  }
  .ticket_btn:hover {
    transform: unset;
    box-shadow: 0.6667vw 0.9333vw 0px 0px #b70463;
  }
}

.notice {
  padding: 76px 0 0;
  background: url(../img/main_sakura.png);
  background-color: #fff;
  background-size: 1514px;
  background-repeat: no-repeat;
  background-position: top 76px center;
}
@media (max-width:768px) {
  .notice {
    padding: 16.8vw 0;
    background: #fff;
  }
}

.notice_container {
  width: 788px;
  max-width: 95%;
  margin: 0 auto;
}
@media (max-width:768px) {
  .notice_container {
    width: 93.2vw;
  }
}

.notice_heading {
  width: 199px;
  margin: 0 auto;
}
@media (max-width:768px) {
  .notice_heading {
    width: 28vw;
  }
}

.notice_box {
  margin: 40px auto 0;
}
@media (max-width:768px) {
  .notice_box {
    margin: 8vw auto 0;
  }
}

.notice_boxHeading {
  padding-bottom: 10px;
  color: #e398c2;
  font-size: 18px;
  font-weight: 700;
  border-bottom: 1px solid #e4e3ea;
}
@media (max-width:768px) {
  .notice_boxHeading {
    padding-bottom: 2.5333vw;
    font-size: 4vw;
  }
}

.notice_txt {
  margin: 10px auto 0;
  font-size: 16px;
  line-height: 1.625;
}
@media (max-width:768px) {
  .notice_txt {
    margin: 2.5333vw auto 0;
    font-size: 3.4667vw;
    line-height: 1.4615;
  }
}

.notice_sublist {
  margin: 20px auto 0;
  padding-left: 1em;
  text-indent: -1em;
  font-size: 14px;
  line-height: 1.7143;
  list-style: none;
}
@media (max-width:768px) {
  .notice_sublist {
    margin: 4.8vw auto 0;
    font-size: 3.4667vw;
    line-height: 1.4615;
  }
}

.notice_list {
  margin: 10px auto 0;
  padding-left: 1em;
  text-indent: -1em;
  font-size: 16px;
  line-height: 1.625;
  list-style: none;
}
.notice_list li {
  margin-top: 0.4em;
}
@media (max-width:768px) {
  .notice_list {
    margin: 2.5333vw auto 0;
    font-size: 3.4667vw;
    line-height: 1.4615;
  }
}

.voice {
  position: relative;
  padding: 156px 0 0;
}
.voice:before {
  position: absolute;
  top: -110px;
  right: 0;
  left: 0;
  display: block;
  width: 395px;
  height: 186px;
  margin: auto;
  background-image: url(../img/circle_bottom_sakura.png);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}
@media (max-width:768px) {
  .voice {
    padding: 24.9333vw 0 0;
  }
  .voice:before {
    top: -20.5333vw;
    width: 100%;
    height: auto;
    aspect-ratio: 750/224;
    background-image: url(../img/sp/circle_bottom_sakura.png);
    background-size: contain;
    background-repeat: no-repeat;
  }
}

.voice_heading {
  width: 626px;
  margin: 0 auto;
}
@media (max-width:768px) {
  .voice_heading {
    width: 93.0667vw;
  }
}

.voice_container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  width: 970px;
  max-width: 95%;
  margin: 40px auto 0;
}
@media (max-width:768px) {
  .voice_container {
    flex-flow: column;
    gap: 4.6667vw;
    width: 93.0667vw;
    max-width: unset;
    margin: 5.7333vw auto 0;
  }
}

.voice_img {
  width: 394px;
}
@media (max-width:768px) {
  .voice_img {
    width: 83.0667vw;
  }
}

.voice_txt {
  color: #fff;
  font-size: 18px;
  line-height: 1.8889;
}
@media (max-width:768px) {
  .voice_txt {
    font-size: 3.7333vw;
    line-height: 1.6429;
  }
}

.archive {
  padding-top: 70px;
  width: 777px;
  max-width: 100%;
  margin: 0 auto;
}
@media (max-width:768px) {
  .archive {
    padding-top: 15.2vw;
  }
}

.archive_heading {
  width: 775px;
  max-width: 95%;
  margin: 0 auto;
}
@media (max-width:768px) {
  .archive_heading {
    width: 66.9333vw;
    max-width: unset;
  }
}

.archive_list {
  position: relative;
  display: block;
  width: 777px;
  aspect-ratio: 777/822;
  max-width: 100%;
  margin: 45px auto 0;
  padding-top: 8.8%;
  list-style: none;
  background-image: url(../img/archive_list.png);
  background-size: 100%;
  box-sizing: border-box;
}
@media (max-width:768px) {
  .archive_list {
    width: 100%;
    max-width: unset;
    aspect-ratio: 750/1069;
    margin: 6.2667vw auto 0;
    padding-top: 8.3%;
    container-type: inline-size;
    background-image: url(../img/sp/archive_list.png);
    background-size: 100%;
  }
}
.archive_list li {
  padding-left: 39%;
  font-size: clamp(17px, -68.333px + 11.111vw, 18px);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  letter-spacing: 0.05em;
}
.archive_list li a {
  color: #fff;
}
@media (max-width:768px) {
  .archive_list li {
    padding-left: 29%;
    font-size: 3.5573cqw;
    line-height: 1.1563;
  }
}
.archive_list .li_1 {
  margin-top: 0;
}
.archive_list .li_2 {
  margin-top: 5.5%;
}
.archive_list .li_3 {
  margin-top: 6.7%;
}
.archive_list .li_4 {
  margin-top: 7.8%;
}
.archive_list .li_5 {
  margin-top: 8.1%;
}
.archive_list .li_6 {
  margin-top: 8%;
}
.archive_list .li_7 {
  margin-top: 7.4%;
}
.archive_list .li_8 {
  margin-top: 7.9%;
}
.archive_list .li_9 {
  margin-top: 7.5%;
}
@media (max-width:768px) {
  .archive_list .li_1 {
    margin-top: 0;
  }
  .archive_list .li_2 {
    margin-top: 7.2%;
  }
  .archive_list .li_3 {
    margin-top: 9.4%;
  }
  .archive_list .li_4 {
    margin-top: 10.4%;
  }
  .archive_list .li_5 {
    margin-top: 11.2%;
  }
  .archive_list .li_6 {
    margin-top: 10.8%;
  }
  .archive_list .li_7 {
    margin-top: 10.4%;
  }
  .archive_list .li_8 {
    margin-top: 10.4%;
  }
  .archive_list .li_9 {
    margin-top: 10.5%;
  }
}

.goods {
  padding: 77px 0 120px;
}
@media (max-width:768px) {
  .goods {
    padding: 16vw 0 21.8667vw;
  }
}

.goods_heading {
  width: 210px;
  margin: 0 auto;
}
@media (max-width:768px) {
  .goods_heading {
    width: 29.8667vw;
  }
}

.goods_cs {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 972px;
  max-width: 95%;
  height: 300px;
  margin: 42px auto 0;
  color: #93b3cd;
  font-size: 28px;
  font-style: italic;
  font-weight: 700;
}
@media (max-width:768px) {
  .goods_cs {
    width: 92.8vw;
    max-width: unset;
    height: 40vw;
    margin: 6.8vw auto 0;
    font-size: 4.8vw;
  }
}

.footer {
  background: #85b1cc;
}
@media (max-width:768px) {
  .footer {
    padding-bottom: 13.8667vw;
  }
}

.footer_sponsor {
  padding: 79px 0 107px;
  background: #fff;
}
@media (max-width:768px) {
  .footer_sponsor {
    padding: 10.5333vw 0 16vw;
  }
}

.footer_sponsorHeading {
  width: 185px;
  margin: 0 auto;
}
@media (max-width:768px) {
  .footer_sponsorHeading {
    width: 26.6667vw;
  }
}

.footer_mynavi {
  display: block;
  width: 140px;
  margin: 65px auto 0;
}
@media (max-width:768px) {
  .footer_mynavi {
    width: 30vw;
    margin: 9.4667vw auto 0;
  }
}

.footer_logo {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 47px 0 35px;
}
@media (max-width:768px) {
  .footer_logo {
    padding: 8.9333vw 0;
  }
}

.footer_sol {
  width: 228px;
}
@media (max-width:768px) {
  .footer_sol {
    width: 32.9333vw;
  }
}

.footer_tfm {
  width: 153px;
  margin-left: 34px;
  margin-right: 57px;
}
@media (max-width:768px) {
  .footer_tfm {
    width: 24.4vw;
    margin-left: 6.2667vw;
    margin-right: 6vw;
  }
}

.footer_jfn {
  width: 63px;
}
@media (max-width:768px) {
  .footer_jfn {
    width: 10vw;
  }
}

.footer_copy {
  padding-bottom: 10px;
  color: #fff;
  font-size: 12px;
  text-align: center;
}
@media (max-width:768px) {
  .footer_copy {
    padding-bottom: 3vw;
    font-size: 2.6667vw;
  }
}

.fixed {
  position: fixed;
  right: 0;
  bottom: 30px;
  cursor: pointer;
  filter: drop-shadow(7px 7px 17px hsla(240, 24%, 54%, 0.6));
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 3;
}
.fixed img {
  width: 280px;
  height: 96px;
}
.fixed.hide {
  opacity: 0;
  visibility: hidden;
}

@media (max-width:768px) {
  .fixed {
    right: 0;
    bottom: 0;
    width: 100%;
    height: 13.8667vw;
    filter: drop-shadow(0px -0.6667vw 2.6667vw hsla(240, 24%, 54%, 0.4));
  }
  .fixed img {
    width: 100%;
    height: 100%;
  }
}
/* -- UTILITY -- */
.u-fadeInUp {
  opacity: 0;
  will-change: opacity, transform, filter;
}

/* 共通フッター用 もしくはブレイクポイントごとの表示指定 */
.pc {
  display: block;
}

.sp {
  display: none;
}

@media (max-width:768px) {
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */