@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c&display=swap");
@font-face {
  font-family: "Yu Gothic";
  src: url("../fonts/Yu-Gothic-Medium.woff") format("woff"), url("../fonts/Yu-Gothic-Medium.otf") format("opentype"), url("../fonts/Yu-Gothic-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Yu Gothic";
  src: url("../fonts/Yu-Gothic-Bold.woff") format("woff"), url("../fonts/Yu-Gothic-Bold.otf") format("opentype"), url("../fonts/Yu-Gothic-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  position: relative;
  overflow-x: hidden;
}
@media screen and (min-width: 769px) {
  html,
  body {
    font-size: 0.6944444444vw;
  }
}
@media screen and (max-width: 768px) {
  html,
  body {
    font-size: 2.6666666667vw;
  }
  html.active,
  body.active {
    overflow-y: hidden;
  }
}

figure {
  line-height: 0;
}

img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  text-decoration: none;
  display: block;
  color: inherit;
}

ul,
dl {
  list-style: none;
  padding: 0;
}

.u-pcDb {
  display: block !important;
}

.u-spDb {
  display: none !important;
}

.u-spDf {
  display: none !important;
}

@media screen and (max-width: 768px) {
  .u-pcDb {
    display: none !important;
  }
  .u-spDb {
    display: block !important;
  }
  .u-spDf {
    display: flex !important;
  }
}
html,
body {
  font-feature-settings: "palt" 1;
  background-color: #FFC0DF;
}
html.is-active,
body.is-active {
  overflow: hidden;
}

main {
  min-height: 100svh;
}

.u-pcDb {
  display: block !important;
}

.u-pcDf {
  display: flex !important;
}

.u-spDb,
.u-spDf {
  display: none !important;
}

@media screen and (max-width: 768px) {
  .u-spDb {
    display: block !important;
  }
  .u-spDf {
    display: flex !important;
  }
  .u-pcDf,
  .u-pcDb {
    display: none !important;
  }
}
.relative {
  position: relative;
}

.ticket {
  position: fixed;
  right: 4.3rem;
  z-index: 999;
  cursor: pointer;
  width: 18rem;
  transition: opacity 0.3s ease;
  opacity: 0;
  pointer-events: none;
}
@media screen and (min-width: 769px) {
  .ticket {
    top: 4rem;
  }
}
.ticket.is-visible {
  opacity: 1;
  pointer-events: auto;
}
@media screen and (max-width: 768px) {
  .ticket {
    max-width: 8.4rem;
    right: 4.2rem;
    bottom: 3rem;
  }
}

.concept__text {
  margin: 7rem auto 0;
  max-width: 93rem;
}
@media screen and (max-width: 768px) {
  .concept__text {
    margin: 4.5rem auto 0;
    max-width: 30rem;
  }
}

@keyframes floating {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-1.5rem);
  }
  100% {
    transform: translateY(0);
  }
}
.header {
  z-index: 1000;
  position: fixed;
  height: 11.7rem;
  width: 100%;
  padding: 3.7rem 4.5rem;
  display: flex;
  background-color: transparent;
  transition: transform 0.3s ease, background-color 0.4s ease-out, backdrop-filter 0.4s ease-out, box-shadow 0.4s ease-out;
}
@media screen and (max-width: 768px) {
  .header {
    justify-content: space-between;
    padding: 1.3rem;
    height: 6.3rem;
  }
}
.header.is-scrolled {
  background-color: rgba(255, 192, 223, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}
.header.is-hidden {
  transform: translateY(-100%);
}
.header__inner {
  display: flex;
  justify-content: space-between;
  padding: 0.8rem 2.4rem;
}
.header__logoLink {
  display: block;
  max-width: 12rem;
  width: 100%;
  margin-right: 8.4rem;
}
@media screen and (max-width: 768px) {
  .header__logoLink {
    margin-right: 0;
    max-width: 7.5rem;
  }
}
.header__logo {
  width: 100%;
  z-index: 999;
  position: relative;
}
.header__logo img {
  width: 100%;
  height: auto;
}
.header__menuButton {
  width: 3rem;
  height: 2rem;
  cursor: pointer;
  z-index: 1001;
  position: relative;
  display: block;
}
.header__menuClose {
  width: 5.6rem;
  height: 5.6rem;
  cursor: pointer;
  z-index: 1001;
  position: relative;
  display: none;
  margin-top: 2.3rem;
  margin-right: 2.3rem;
}
.header__container {
  display: none;
}
@media screen and (max-width: 768px) {
  .header__container {
    display: flex;
    gap: 0.8rem;
  }
  .header__container.is-active .header__menuButton {
    display: none;
  }
  .header__container.is-active .header__menuClose {
    display: block;
  }
}
.header__nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  padding-top: 8rem;
  transform: translateX(100%);
  transition: transform 0.4s ease;
  z-index: 1001;
}
.header__nav.is-active {
  transform: translateX(0);
}
@media screen and (min-width: 769px) {
  .header__nav {
    width: 100%;
    height: auto;
    transform: translateX(0);
    position: relative;
    top: unset;
    right: unset;
    padding-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .header__nav {
    background-color: rgba(137, 137, 137, 0.8);
    padding-top: 9.8rem;
  }
}
.header__socMeds {
  display: flex;
  gap: 1.2rem;
  margin-top: 1.6rem;
  justify-content: flex-end;
  padding: 0 2.4rem;
}
.header__socItem a {
  width: 4rem;
  height: 4rem;
  display: block;
}
.header__navList {
  display: flex;
  flex-direction: column;
  padding: 0 2.4rem;
  gap: 8.5rem;
}
@media screen and (min-width: 769px) {
  .header__navList {
    flex-direction: row;
  }
}
@media screen and (max-width: 768px) {
  .header__navList {
    height: 100%;
    padding-top: 1.8rem;
    align-items: center;
    gap: 4.5rem;
  }
}
@media screen and (max-width: 768px) {
  .header__navItem:nth-of-type(1) {
    width: 4.8rem;
  }
}
.header__navItem:nth-of-type(2) {
  width: 13.5rem;
}
@media screen and (max-width: 768px) {
  .header__navItem:nth-of-type(2) {
    width: 14.7rem;
  }
}
.header__navItem:nth-of-type(3) {
  width: 10rem;
}
@media screen and (max-width: 768px) {
  .header__navItem:nth-of-type(3) {
    width: 11.2rem;
  }
}
.header__navItem:nth-of-type(4) {
  width: 8.3rem;
}
@media screen and (max-width: 768px) {
  .header__navItem:nth-of-type(4) {
    width: 9rem;
  }
}
.header__navItem:nth-of-type(5) {
  width: 8.8rem;
}
@media screen and (max-width: 768px) {
  .header__navItem:nth-of-type(5) {
    width: 9.6rem;
  }
}
.header__navItem a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  text-align: end;
  font-size: 24px;
}

.footer {
  margin-top: 6rem;
  padding-bottom: 16rem;
}
@media screen and (max-width: 768px) {
  .footer {
    margin-top: 5rem;
    padding-bottom: 14rem;
  }
}
.footer__uocMap {
  max-width: 21.3rem;
  margin-left: 23.3rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .footer__uocMap {
    margin-left: 3rem;
    max-width: 12.8rem;
  }
}
.footer__line {
  max-width: 58rem;
  margin: 8rem auto 7rem;
}
@media screen and (max-width: 768px) {
  .footer__line {
    margin: 3rem auto 2.5rem;
    max-width: 24.5rem;
  }
}
.footer__date {
  max-width: 59rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .footer__date {
    max-width: 29rem;
  }
}
.footer__ticket {
  max-width: 43rem;
  margin: -9rem auto 0;
}
@media screen and (max-width: 768px) {
  .footer__ticket {
    max-width: 21.6rem;
    margin: -5rem auto 0;
  }
}
.footer__offer {
  max-width: 56rem;
  margin: 0 auto 0;
}
@media screen and (max-width: 768px) {
  .footer__offer {
    max-width: 32.5rem;
  }
}
.footer__arrow {
  max-width: 2.3rem;
  margin: 3rem auto 0;
}
@media screen and (max-width: 768px) {
  .footer__arrow {
    margin: 0.5rem auto 0;
  }
}
.footer__button {
  max-width: 42.3rem;
  margin: 0.7rem auto 0;
}
@media screen and (max-width: 768px) {
  .footer__button {
    max-width: 27.5rem;
    margin: 0 auto 3rem;
  }
}
.footer__accessMap {
  max-width: 22.5rem;
  margin: 0 auto -3rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .footer__accessMap {
    max-width: 10rem;
    margin-bottom: 1rem;
    margin-top: 0;
  }
}
.footer__mapDesc {
  max-width: 47.4rem;
  margin-left: 24.4rem;
  margin-top: 2rem;
}
.footer__mapDesc + .footer__line {
  margin-top: 6rem;
}
@media screen and (max-width: 768px) {
  .footer__mapDesc + .footer__line {
    margin-top: 2.5rem;
  }
}
@media screen and (max-width: 768px) {
  .footer__mapDesc {
    margin-left: 2.5rem;
    max-width: 31.6rem;
    margin-top: 1rem;
  }
}
.footer__map {
  width: 100%;
  max-width: 100rem;
  height: 40rem;
  margin: 2rem auto 0;
  background-color: #e9e9e9;
  border-radius: 2rem;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .footer__map {
    max-width: 32.5rem;
    margin-top: 0.5rem;
  }
}
.footer__map .leaflet-control-zoom {
  border: none;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}
.footer__map .leaflet-control-zoom a {
  background-color: #fff;
  color: #666;
  width: 4rem;
  height: 4rem;
  line-height: 4rem;
  font-size: 1.8rem;
}
.footer__map .leaflet-control-zoom a:hover {
  background-color: #f8f8f8;
  color: #333;
}
.footer__map .leaflet-control-zoom a:first-child {
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
}
.footer__map .leaflet-control-zoom a:last-child {
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
}
.footer__jellyBanner {
  max-width: 100rem;
  width: 100%;
  margin: 0 auto 6.5rem;
}
@media screen and (max-width: 768px) {
  .footer__jellyBanner {
    max-width: 32.5rem;
    margin: 0 auto 2rem;
  }
}
.footer__jellyBrainButton {
  max-width: 23.5rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .footer__jellyBrainButton {
    max-width: 10rem;
  }
}
.footer .map-info-card {
  background: white;
  padding: 1.6rem;
  border-radius: 2px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  width: 32rem;
  max-width: calc(100vw - 4rem);
  font-family: "Roboto", Arial, sans-serif;
  font-size: 1.3rem;
  color: #333;
  line-height: 1.5;
  margin-top: 1rem;
  margin-left: 1rem;
  cursor: default;
}
.footer .map-info-card h2 {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 0.8rem;
  color: #000;
}
.footer .map-info-card .address {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 0.8rem;
}
.footer .map-info-card .rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 2rem;
}
.footer .map-info-card .rating .stars {
  color: #e7711b;
  letter-spacing: 1px;
}
.footer .map-info-card .rating .count {
  color: #1a73e8;
}
.footer .map-info-card .actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer .map-info-card .actions a.large-map-link {
  color: #1a73e8;
  text-decoration: none;
  font-size: 1.2rem;
}
.footer .map-info-card .actions a.large-map-link:hover {
  text-decoration: underline;
}
.footer .map-info-card .actions .directions-icon {
  width: 2.4rem;
  height: 2.4rem;
  fill: #1a73e8;
  cursor: pointer;
}
.footer .map-info-card .card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.footer .map-info-card .directions-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #1a73e8;
  font-size: 1rem;
}
.footer .map-info-card .directions-btn img {
  width: 20px;
  height: 20px;
  margin-bottom: 2px;
}
@media screen and (max-width: 768px) {
  .footer .footer__map {
    height: 30rem;
  }
  .footer .leaflet-control-zoom a {
    width: 3rem;
    height: 3rem;
    line-height: 3rem;
    font-size: 1.4rem;
  }
  .footer .leaflet-left .leaflet-control {
    margin-top: 1rem;
    margin-left: 1rem;
  }
  .footer .leaflet-left .leaflet-control h2 {
    font-size: 1rem;
  }
  .footer .leaflet-left .leaflet-control .address,
  .footer .leaflet-left .leaflet-control .count,
  .footer .leaflet-left .leaflet-control .stars {
    font-size: 0.8rem;
  }
  .footer .leaflet-left .leaflet-control .directions-icon {
    font-size: 0.9rem;
    width: 1.2rem;
  }
  .footer .map-info-card {
    width: 90%;
    max-width: 30rem;
    padding: 1.2rem;
    margin-left: 0.5rem;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .footer .map-info-card {
    padding: 0.5rem;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .footer .map-info-card h2 {
    font-size: 1.5rem;
    margin-bottom: 0.4rem;
  }
  .footer .map-info-card .address {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
    line-height: 1.3;
  }
  .footer .map-info-card .rating {
    margin-bottom: 1rem;
    font-size: 1.1rem;
  }
  .footer .map-info-card .actions a.large-map-link {
    font-size: 1.1rem;
  }
  .footer .map-info-card .actions .directions-icon {
    width: 2rem;
    height: 2rem;
  }
  .footer .map-info-card .directions-btn {
    font-size: 0.9rem;
  }
  .footer .map-info-card .directions-btn img {
    width: 18px;
    height: 18px;
  }
}
.footer__logo {
  max-width: 20rem;
  margin: 14rem auto 0;
}
@media screen and (max-width: 768px) {
  .footer__logo {
    margin: 10rem auto 0;
    max-width: 23rem;
  }
}
.footer__social {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 5rem;
}
.footer__socialLink {
  display: block;
  width: 100%;
}
.footer__socialLink:nth-child(1) {
  max-width: 3rem;
}
.footer__socialLink:nth-child(2) {
  max-width: 3rem;
}
.footer__socialLink:nth-child(3) {
  max-width: 1.4rem;
}
.footer__socialLink img {
  width: 100%;
  height: auto;
}
.footer__time {
  max-width: 12rem;
  margin: 1.5rem auto 0;
}
.footer__contact {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  margin-top: 4.4rem;
}
.footer__contactText {
  max-width: 9.1rem;
}
.footer__contactMail {
  max-width: 13rem;
}
.footer__copyright {
  max-width: 20rem;
  margin: 4.5rem auto 0;
}

.jellySec__swiper {
  margin-top: 2.4rem;
}
.jellySec__swiper .swiper-wrapper {
  transition-timing-function: linear !important;
}
.jellySec__swiper .swiper-slide {
  height: 100%;
}
.jellySec__swiper figure {
  height: 100%;
}
.jellySec__swiper__jelly {
  width: 100%;
}
.jellySec__swiper img {
  width: 100%;
  height: auto;
}

.badgeSec__swiper {
  margin-top: 2.4rem;
}
.badgeSec__swiper .swiper-wrapper {
  transition-timing-function: linear !important;
}
.badgeSec__swiper .swiper-slide {
  height: 19.4rem;
  width: 19.4rem !important;
}
.badgeSec__swiper .swiper-slide img {
  height: 19.4rem;
  width: 19.4rem;
}

@keyframes pop-in-bon {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes slide-up-fade {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.heroSec {
  padding-top: 5rem;
}
@media screen and (max-width: 768px) {
  .heroSec {
    padding-top: 4rem;
  }
}
.heroSec__figure video {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.heroSec__heroText {
  max-width: 32rem;
  margin: 0 auto 1.4rem;
}
@media screen and (max-width: 768px) {
  .heroSec__intro02 {
    margin-top: 0.5rem;
  }
}
.heroSec__intro03 {
  margin-top: -1.5rem;
}
@media screen and (max-width: 768px) {
  .heroSec__intro03 {
    margin-top: -0.5rem;
  }
}
.heroSec__intro04 {
  max-width: 100rem;
  margin: 4rem auto 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
@media screen and (max-width: 768px) {
  .heroSec__intro04 {
    max-width: 32rem;
  }
}
.heroSec__intro04.is-active {
  animation: slide-up-fade 0.8s ease forwards;
  animation-delay: 0.8s;
}
.heroSec__textContainer {
  max-width: 100rem;
  margin: 0 auto;
  margin-top: 2.4rem;
}
@media screen and (max-width: 768px) {
  .heroSec__textContainer {
    max-width: 32rem;
  }
}
.heroSec__textContainer figure {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.heroSec__textContainer.is-active figure {
  animation: slide-up-fade 0.8s ease forwards;
}
.heroSec__textContainer.is-active figure:nth-child(1) {
  animation-delay: 0.2s;
}
.heroSec__textContainer.is-active figure:nth-child(2) {
  animation-delay: 0.4s;
}
.heroSec__textContainer.is-active figure:nth-child(3) {
  animation-delay: 0.6s;
}
.heroSec__textContainer.is-active figure:nth-child(4) {
  animation-delay: 0.8s;
}
.heroSec__textContainer.is-active figure:nth-child(5) {
  animation-delay: 1s;
}

.comingSoon {
  margin-top: 8rem;
}
@media screen and (max-width: 768px) {
  .comingSoon {
    margin-top: 4rem;
  }
}
.comingSoon__textContainer {
  max-width: 44.4rem;
  margin: 0 auto;
  margin-top: 2.4rem;
}
@media screen and (max-width: 768px) {
  .comingSoon__textContainer {
    max-width: 23rem;
  }
}
.comingSoon__swiper {
  margin-top: 7rem;
}
@media screen and (max-width: 768px) {
  .comingSoon__swiper {
    margin-top: 6.8rem;
  }
}
.comingSoon__swiper .swiper-wrapper {
  transition-timing-function: linear !important;
}
.comingSoon__swiper .swiper-slide {
  width: 30rem;
  height: auto;
}
@media screen and (max-width: 768px) {
  .comingSoon__swiper .swiper-slide {
    width: 20rem;
  }
}
.comingSoon__swiper .swiper-slide img {
  width: 100%;
  height: auto;
}
.comingSoon__figure {
  opacity: 0;
  transform: scale(0.8);
}
.comingSoon__figure.is-active {
  animation: pop-in-bon 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.badgeSec {
  margin-top: 11rem;
}
@media screen and (max-width: 768px) {
  .badgeSec {
    margin-top: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .badgeSec__random {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 32.7rem;
    margin: 0 auto;
  }
}

.badge-flip-container {
  width: 9.7rem;
  aspect-ratio: 1/1;
  position: relative;
  perspective: 1000px;
}

.badge-flipper {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}
.badge-flipper.is-flipped {
  transform: rotateY(180deg);
}

.badge-front,
.badge-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.badge-front {
  /* background-color: #f0f0f0; Removed gray bg */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transform: rotateY(0deg);
}
.badge-front img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.badge-back {
  z-index: 1;
  transform: rotateY(180deg);
}
.badge-back img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.daySec {
  padding: 4rem 0 12rem;
  position: relative;
  margin-top: 3rem;
  overflow: hidden;
}
.daySec::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300vmax;
  height: 300vmax;
  background: url("../images/bg.jpg") no-repeat center center;
  background-size: contain;
  z-index: -1;
  animation: spinBg 60s linear infinite;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .daySec::before {
    background: url("../images/bg.jpg") no-repeat center center;
    background-size: contain;
    width: 600vmax;
    height: 600vmax;
  }
}
@media screen and (max-width: 768px) {
  .daySec {
    padding: 3rem 0 5rem;
    margin-top: 1rem;
  }
}
.daySec {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 80 40' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,40 V15 Q20,22 40,15 T80,15 V40 Z' fill='%23000'/%3E%3C/svg%3E"), url("data:image/svg+xml,%3Csvg viewBox='0 0 80 40' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,0 V25 Q20,18 40,25 T80,25 V0 Z' fill='%23000'/%3E%3C/svg%3E"), linear-gradient(#000 0 0);
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 80 40' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,40 V15 Q20,22 40,15 T80,15 V40 Z' fill='%23000'/%3E%3C/svg%3E"), url("data:image/svg+xml,%3Csvg viewBox='0 0 80 40' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,0 V25 Q20,18 40,25 T80,25 V0 Z' fill='%23000'/%3E%3C/svg%3E"), linear-gradient(#000 0 0);
  -webkit-mask-position: 0 top, 0 bottom, center;
  mask-position: 0 top, 0 bottom, center;
  -webkit-mask-size: 5rem 4rem, 5rem 4rem, 100% calc(100% - 8rem + 2px);
  mask-size: 5rem 4rem, 5rem 4rem, 100% calc(100% - 8rem + 2px);
  -webkit-mask-repeat: repeat-x, repeat-x, no-repeat;
  mask-repeat: repeat-x, repeat-x, no-repeat;
}
@media screen and (max-width: 768px) {
  .daySec {
    -webkit-mask-size: 2.5rem 2rem, 2.5rem 2rem, 100% calc(100% - 4rem + 2px);
    mask-size: 2.5rem 2rem, 2.5rem 2rem, 100% calc(100% - 4rem + 2px);
  }
}
.daySec {
  animation: waveMove 3s linear infinite;
}
.daySec__figure {
  max-width: 100rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .daySec__figure {
    max-width: 32rem;
  }
}
.daySec__line {
  max-width: 90rem;
  margin: 12rem auto 10rem;
}
@media screen and (max-width: 768px) {
  .daySec__line {
    max-width: 29rem;
    margin: 8rem auto 6rem;
  }
}
.daySec__annotion {
  max-width: 62.5rem;
  margin: 21rem auto 0;
}
@media screen and (max-width: 768px) {
  .daySec__annotion {
    margin: 3.1rem auto 0;
    max-width: 24rem;
  }
}
.daySec .timebrainfri {
  position: absolute;
  animation: floating 6s ease-in-out infinite;
}
.daySec :nth-child(1 of .timebrainfri) {
  animation-delay: 0s;
}
@media screen and (min-width: 769px) {
  .daySec :nth-child(1 of .timebrainfri) {
    width: 12rem;
    top: -18rem;
    left: -8rem;
  }
}
@media screen and (max-width: 768px) {
  .daySec :nth-child(1 of .timebrainfri) {
    width: 4rem;
    top: 4rem;
    left: 0;
  }
}
.daySec :nth-child(2 of .timebrainfri) {
  animation-delay: -1.5s;
}
@media screen and (min-width: 769px) {
  .daySec :nth-child(2 of .timebrainfri) {
    width: 17rem;
    right: -7rem;
    top: 5rem;
  }
}
@media screen and (max-width: 768px) {
  .daySec :nth-child(2 of .timebrainfri) {
    width: 7rem;
    top: 5rem;
    right: -1rem;
  }
}
.daySec :nth-child(3 of .timebrainfri) {
  animation-delay: -3s;
}
@media screen and (min-width: 769px) {
  .daySec :nth-child(3 of .timebrainfri) {
    width: 7rem;
    top: 35rem;
    right: -2rem;
  }
}
@media screen and (max-width: 768px) {
  .daySec :nth-child(3 of .timebrainfri) {
    width: 3rem;
    top: 28rem;
    right: 1rem;
  }
}
.daySec :nth-child(4 of .timebrainfri) {
  animation-delay: -4.5s;
}
@media screen and (min-width: 769px) {
  .daySec :nth-child(4 of .timebrainfri) {
    width: 8rem;
    bottom: 35rem;
    left: -3rem;
  }
}
@media screen and (max-width: 768px) {
  .daySec :nth-child(4 of .timebrainfri) {
    width: 4rem;
    top: 35rem;
    left: 0rem;
  }
}
.daySec :nth-child(5 of .timebrainfri) {
  animation-delay: -2s;
}
@media screen and (min-width: 769px) {
  .daySec :nth-child(5 of .timebrainfri) {
    width: 10rem;
    right: -2rem;
    bottom: 35rem;
  }
}
@media screen and (max-width: 768px) {
  .daySec :nth-child(5 of .timebrainfri) {
    width: 4.5rem;
    right: -0.5rem;
    bottom: 56rem;
  }
}
.daySec :nth-child(6 of .timebrainfri) {
  animation-delay: -5s;
}
@media screen and (min-width: 769px) {
  .daySec :nth-child(6 of .timebrainfri) {
    width: 9rem;
    bottom: 0;
    right: 10rem;
  }
}
@media screen and (max-width: 768px) {
  .daySec :nth-child(6 of .timebrainfri) {
    bottom: 15rem;
    right: 0rem;
    width: 4.5rem;
  }
}
.daySec :nth-child(7 of .timebrainfri) {
  animation-delay: -1s;
}
@media screen and (min-width: 769px) {
  .daySec :nth-child(7 of .timebrainfri) {
    width: 16rem;
    bottom: -12rem;
    left: 18rem;
  }
}
@media screen and (max-width: 768px) {
  .daySec :nth-child(7 of .timebrainfri) {
    bottom: 2rem;
    width: 6rem;
  }
}
.daySec .timebrainsat {
  position: absolute;
  animation: floating 6s ease-in-out infinite;
}
.daySec :nth-child(1 of .timebrainsat) {
  animation-delay: -0.5s;
}
@media screen and (min-width: 769px) {
  .daySec :nth-child(1 of .timebrainsat) {
    width: 12rem;
    top: 1rem;
    right: 5rem;
  }
}
@media screen and (max-width: 768px) {
  .daySec :nth-child(1 of .timebrainsat) {
    width: 6rem;
    top: 1rem;
    right: 0;
  }
}
.daySec :nth-child(2 of .timebrainsat) {
  animation-delay: -2.5s;
}
@media screen and (min-width: 769px) {
  .daySec :nth-child(2 of .timebrainsat) {
    width: 9.4rem;
    left: -5rem;
    top: 10rem;
  }
}
@media screen and (max-width: 768px) {
  .daySec :nth-child(2 of .timebrainsat) {
    width: 4rem;
    top: 12rem;
    left: 0;
  }
}
.daySec :nth-child(3 of .timebrainsat) {
  animation-delay: -4s;
}
@media screen and (min-width: 769px) {
  .daySec :nth-child(3 of .timebrainsat) {
    width: 6.4rem;
    top: 30rem;
    left: 0;
  }
}
@media screen and (max-width: 768px) {
  .daySec :nth-child(3 of .timebrainsat) {
    width: 5rem;
    top: 20rem;
    right: 0rem;
  }
}
.daySec :nth-child(4 of .timebrainsat) {
  animation-delay: -1.2s;
}
@media screen and (min-width: 769px) {
  .daySec :nth-child(4 of .timebrainsat) {
    width: 8.8rem;
    top: 30rem;
    right: 0;
  }
}
@media screen and (max-width: 768px) {
  .daySec :nth-child(4 of .timebrainsat) {
    width: 3.8rem;
    top: 35rem;
    left: 0;
  }
}
.daySec :nth-child(5 of .timebrainsat) {
  animation-delay: -3.5s;
}
@media screen and (min-width: 769px) {
  .daySec :nth-child(5 of .timebrainsat) {
    width: 6rem;
    right: 7rem;
    bottom: 28rem;
  }
}
@media screen and (max-width: 768px) {
  .daySec :nth-child(5 of .timebrainsat) {
    width: 4.5rem;
    left: 0rem;
    bottom: 22rem;
  }
}
.daySec :nth-child(6 of .timebrainsat) {
  animation-delay: -0.8s;
}
@media screen and (min-width: 769px) {
  .daySec :nth-child(6 of .timebrainsat) {
    width: 12rem;
    bottom: 10rem;
    left: -4rem;
  }
}
@media screen and (max-width: 768px) {
  .daySec :nth-child(6 of .timebrainsat) {
    bottom: 17rem;
    right: 1rem;
    width: 3rem;
  }
}
.daySec :nth-child(7 of .timebrainsat) {
  animation-delay: -5.5s;
}
@media screen and (min-width: 769px) {
  .daySec :nth-child(7 of .timebrainsat) {
    width: 16rem;
    bottom: -8rem;
    right: 8rem;
  }
}
@media screen and (max-width: 768px) {
  .daySec :nth-child(7 of .timebrainsat) {
    bottom: -2rem;
    width: 3.3rem;
    left: 10rem;
  }
}
.daySec :nth-child(8 of .timebrainsat) {
  animation-delay: -2.2s;
}
@media screen and (min-width: 769px) {
  .daySec :nth-child(8 of .timebrainsat) {
    width: 6rem;
    bottom: -7rem;
    left: 37rem;
  }
}
@media screen and (max-width: 768px) {
  .daySec :nth-child(8 of .timebrainsat) {
    bottom: -2.5rem;
    right: 4rem;
    width: 6rem;
  }
}

@keyframes waveMove {
  0% {
    -webkit-mask-position: 0 top, 0 bottom, 0 50%;
    mask-position: 0 top, 0 bottom, 0 50%;
  }
  100% {
    -webkit-mask-position: 5rem top, -5rem bottom, 0 50%;
    mask-position: 5rem top, -5rem bottom, 0 50%;
  }
}
@keyframes spinBg {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.speaker {
  margin-top: 6rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .speaker {
    margin-top: 4.5rem;
  }
}
.speaker__title {
  margin: 0 auto;
  max-width: 30rem;
}
@media screen and (max-width: 768px) {
  .speaker__title {
    max-width: 14rem;
    margin-bottom: 1rem;
  }
}
.speaker__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4rem 2.5rem;
  padding: 4rem;
}
@media screen and (max-width: 768px) {
  .speaker__list {
    grid-template-columns: repeat(2, 1fr);
    padding: 3rem 2rem;
    gap: 2.5rem 2rem;
  }
}
.speaker__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 500;
}
.speaker__item a {
  position: relative;
  z-index: 500;
}
.speaker__container {
  background-color: #ffffd0;
  max-width: 100rem;
  width: 100%;
  margin: 0 auto;
  border-radius: 2rem;
  border: 0.1rem solid #f79289;
  position: relative;
}
@media screen and (max-width: 768px) {
  .speaker__container {
    max-width: 32.5rem;
  }
}
.speaker__container .speakerbrain {
  position: absolute;
  animation: floating 6s ease-in-out infinite;
}
.speaker__container :nth-child(1 of .speakerbrain) {
  animation-delay: 0s;
}
@media screen and (min-width: 769px) {
  .speaker__container :nth-child(1 of .speakerbrain) {
    width: 10rem;
    top: -5rem;
    right: 15rem;
  }
}
@media screen and (max-width: 768px) {
  .speaker__container :nth-child(1 of .speakerbrain) {
    width: 4rem;
    top: -5rem;
    left: 3rem;
  }
}
.speaker__container :nth-child(2 of .speakerbrain) {
  animation-delay: -2s;
}
@media screen and (min-width: 769px) {
  .speaker__container :nth-child(2 of .speakerbrain) {
    width: 6.5rem;
    left: -3rem;
    top: 15rem;
  }
}
@media screen and (max-width: 768px) {
  .speaker__container :nth-child(2 of .speakerbrain) {
    width: 7.5rem;
    top: -4rem;
    right: 1rem;
  }
}
.speaker__container :nth-child(3 of .speakerbrain) {
  animation-delay: -4s;
}
@media screen and (min-width: 769px) {
  .speaker__container :nth-child(3 of .speakerbrain) {
    width: 10rem;
    bottom: 20rem;
    right: -7rem;
  }
}
@media screen and (max-width: 768px) {
  .speaker__container :nth-child(3 of .speakerbrain) {
    width: 5rem;
    top: 17rem;
    left: -3rem;
  }
}
.speaker__container :nth-child(4 of .speakerbrain) {
  animation-delay: -1s;
}
@media screen and (min-width: 769px) {
  .speaker__container :nth-child(4 of .speakerbrain) {
    width: 5rem;
    bottom: 10rem;
    left: -3rem;
  }
}
@media screen and (max-width: 768px) {
  .speaker__container :nth-child(4 of .speakerbrain) {
    width: 4rem;
    top: 25rem;
    right: -2rem;
  }
}
.speaker__container :nth-child(5 of .speakerbrain) {
  animation-delay: -3s;
}
@media screen and (min-width: 769px) {
  .speaker__container :nth-child(5 of .speakerbrain) {
    width: 6rem;
    right: 15rem;
    bottom: 7rem;
  }
}
@media screen and (max-width: 768px) {
  .speaker__container :nth-child(5 of .speakerbrain) {
    top: 55rem;
    left: -2rem;
    width: 4.5rem;
  }
}
.speaker__container :nth-child(6 of .speakerbrain) {
  animation-delay: -5s;
}
@media screen and (min-width: 769px) {
  .speaker__container :nth-child(6 of .speakerbrain) {
    width: 16rem;
    bottom: -8rem;
    left: 18rem;
  }
}
@media screen and (max-width: 768px) {
  .speaker__container :nth-child(6 of .speakerbrain) {
    top: 75rem;
    right: -2rem;
    width: 4.5rem;
  }
}
.speaker__container :nth-child(7 of .speakerbrain) {
  animation-delay: -1.5s;
}
@media screen and (max-width: 768px) {
  .speaker__container :nth-child(7 of .speakerbrain) {
    bottom: 50rem;
    width: 6rem;
    left: -3rem;
  }
}
.speaker__container :nth-child(8 of .speakerbrain) {
  animation-delay: -3.5s;
}
@media screen and (max-width: 768px) {
  .speaker__container :nth-child(8 of .speakerbrain) {
    bottom: 40rem;
    width: 4.5rem;
    right: -2rem;
  }
}
.speaker__container :nth-child(9 of .speakerbrain) {
  animation-delay: -0.5s;
}
@media screen and (max-width: 768px) {
  .speaker__container :nth-child(9 of .speakerbrain) {
    bottom: 25rem;
    width: 7.5rem;
    right: -4rem;
  }
}
.speaker__container :nth-child(10 of .speakerbrain) {
  animation-delay: -4.5s;
}
@media screen and (max-width: 768px) {
  .speaker__container :nth-child(10 of .speakerbrain) {
    bottom: 17rem;
    width: 4.5rem;
    left: -2rem;
  }
}
.speaker__container :nth-child(11 of .speakerbrain) {
  animation-delay: -2.5s;
}
@media screen and (max-width: 768px) {
  .speaker__container :nth-child(11 of .speakerbrain) {
    bottom: 3.5rem;
    width: 5.5rem;
    right: 3rem;
  }
}
.speaker__container :nth-child(12 of .speakerbrain) {
  animation-delay: -5.5s;
}
@media screen and (max-width: 768px) {
  .speaker__container :nth-child(12 of .speakerbrain) {
    bottom: -3rem;
    width: 6.5rem;
    left: 5rem;
  }
}
.speaker__fig {
  width: 13rem;
  height: 13rem;
  border-radius: 100%;
  border: 0.4rem solid #fe8b73;
  transition: border-color 1s ease;
  position: relative;
  z-index: 500;
}
@media screen and (max-width: 768px) {
  .speaker__fig {
    width: 8.5rem;
    height: 8.5rem;
  }
}
.speaker__description {
  display: flex;
  margin-top: 1rem;
  gap: 1rem;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 500;
}
@media screen and (max-width: 768px) {
  .speaker__description {
    gap: 0;
  }
}
.speaker__descTitle {
  font-size: 1.7rem;
  line-height: 2.3rem;
  color: #ff8e42;
  font-weight: bold;
  position: relative;
  z-index: 500;
}
@media screen and (max-width: 768px) {
  .speaker__descTitle {
    font-size: 1.2rem;
    line-height: 1.5rem;
  }
}
.speaker__subtitle {
  font-size: 1.3rem;
  line-height: 1.5rem;
  color: #f79289;
  position: relative;
  z-index: 500;
}
@media screen and (max-width: 768px) {
  .speaker__subtitle {
    line-height: 1.5rem;
    font-size: 1.2rem;
  }
}
.speaker__more-container {
  display: flex;
  justify-content: center;
  padding-bottom: 4rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .speaker__more-container {
    padding-bottom: 3.5rem;
  }
}
.speaker__more-btn {
  background: #fe8b73;
  color: #fff;
  border: none;
  border-radius: 9999px;
  padding: 1rem 3rem;
  font-size: 1.6rem;
  font-weight: bold;
  cursor: pointer;
  transition: opacity 0.3s;
  width: 10.8rem;
}
@media screen and (max-width: 768px) {
  .speaker__more-btn {
    width: 10rem;
  }
}
.speaker__more-btn.is-expanded {
  width: 7.5rem;
}
@media screen and (max-width: 768px) {
  .speaker__more-btn.is-expanded {
    width: 6rem;
  }
}
.speaker__more-btn:hover {
  opacity: 0.8;
}

@media screen and (max-width: 768px) {
  .skeleton {
    max-width: 100%;
  }
}
.skeleton__fig, .skeleton__text {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-pulse 1.5s infinite;
}
.skeleton__fig {
  width: 13rem;
  height: 13rem;
  border-radius: 50%;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .skeleton__fig {
    width: 8.5rem;
    height: 8.5rem;
  }
}
@media screen and (max-width: 768px) {
  .skeleton:nth-child(15) {
    display: none;
  }
}
.skeleton:last-child {
  width: 60%;
}
@media screen and (max-width: 768px) {
  .skeleton {
    height: 1.2rem;
  }
}

@keyframes skeleton-pulse {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
@keyframes star-pulse {
  0%, 100% {
    opacity: 0.4;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}
.timeTable {
  font-family: "M PLUS Rounded 1c", "Yu Gothic", sans-serif;
}
.timeTable .fit-content {
  width: fit-content;
}
.timeTable__title {
  max-width: 33rem;
  margin: 10rem auto 0;
}
@media screen and (max-width: 768px) {
  .timeTable__title {
    max-width: 14.5rem;
    margin: 3rem auto 0;
  }
}
.timeTable__date {
  display: flex;
  justify-content: center;
  gap: 9rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .timeTable__date {
    gap: 2.5rem;
    margin-top: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .timeTable__27 {
    max-width: 8.8rem;
  }
}
@media screen and (max-width: 768px) {
  .timeTable__28 {
    max-width: 10.2rem;
  }
}
.timeTable__27 .image-container, .timeTable__28 .image-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.timeTable__27 .image-container img, .timeTable__28 .image-container img {
  display: block;
  transition: opacity 0.3s;
}
.timeTable__27 .image-container .default01, .timeTable__28 .image-container .default01 {
  width: 16.4rem;
}
.timeTable__27 .image-container .hover01, .timeTable__28 .image-container .hover01 {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 18rem;
  opacity: 0;
}
.timeTable__27 .image-container .default02, .timeTable__28 .image-container .default02 {
  width: 18.5rem;
}
.timeTable__27 .image-container .hover02, .timeTable__28 .image-container .hover02 {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 18.5rem;
  opacity: 0;
}
.timeTable__27 .image-container:hover .hover01,
.timeTable__27 .image-container:hover .hover02, .timeTable__28 .image-container:hover .hover01,
.timeTable__28 .image-container:hover .hover02 {
  opacity: 1;
}
.timeTable__27 .image-container:hover .default01,
.timeTable__27 .image-container:hover .default02, .timeTable__28 .image-container:hover .default01,
.timeTable__28 .image-container:hover .default02 {
  opacity: 0;
}
.timeTable__table {
  max-width: 100rem;
  margin: 0 auto;
  position: relative;
}
.timeTable__neon27 {
  max-width: 26.5rem;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .timeTable__neon27 {
    max-width: 13.5rem;
  }
}
.timeTable__desc27 {
  max-width: 94.2rem;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .timeTable__desc27 {
    max-width: 31.6rem;
    margin-bottom: 1rem;
  }
}
.timeTable__neon28 {
  max-width: 28.5rem;
  width: 100%;
  margin: 10rem auto 0;
}
@media screen and (max-width: 768px) {
  .timeTable__neon28 {
    max-width: 15.3rem;
    margin: 2.8rem auto 0;
  }
}
.timeTable__desc28 {
  max-width: 93.1rem;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .timeTable__desc28 {
    max-width: 31.3rem;
    margin-bottom: 1rem;
  }
}

.wrapper {
  max-width: 90rem;
  width: 100%;
  margin: 0 auto;
  border-radius: 2rem;
  overflow: hidden;
  background-color: #d7ffff;
  border: 1.5px solid #D05FFF;
  font-family: "M PLUS Rounded 1c", "Yu Gothic", sans-serif;
}
@media screen and (max-width: 768px) {
  .wrapper {
    max-width: 32.5rem;
  }
}
.timeTable__date28 .wrapper {
  background-color: #efffd2;
}

.header-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  text-align: center;
  border-bottom: 1.5px solid #D05FFF;
}
.timeTable__date28 .header-box {
  border-bottom: 1.5px solid #3f9dff;
}

.header-box h3 {
  margin: 0;
  padding: 1rem;
}
@media screen and (max-width: 768px) {
  .header-box h3 {
    padding: 0.5rem;
  }
}

.header-box h3.left-header {
  border-right: 1.5px solid #D05FFF;
  margin-right: 0.15rem;
}
.timeTable__date28 .header-box h3.left-header {
  border-right: 1.5px solid #3f9dff;
}
@media screen and (max-width: 768px) {
  .header-box h3.left-header {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.header-box h3.left-header img {
  max-width: 17.5rem;
}
@media screen and (max-width: 768px) {
  .header-box h3.left-header img {
    max-width: 9.4rem;
  }
}

.header-box h3.right-header img {
  max-width: 14.8rem;
}
@media screen and (max-width: 768px) {
  .header-box h3.right-header img {
    max-width: 8rem;
    height: 1.35rem;
    width: auto;
    height: 100%;
    object-fit: contain;
  }
}

.header-box h3.right-header {
  border-left: 1.5px solid #D05FFF;
  margin-left: 0.15rem;
}
.timeTable__date28 .header-box h3.right-header {
  border-left: 1.5px solid #3f9dff;
}

.container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: -0.2rem 0 0 0;
  border-bottom: 1.5px solid #D05FFF;
}
.timeTable__date28 .container {
  border-bottom: 1.5px solid #3f9dff;
}
.timeTable__date27 .container:nth-of-type(2) .left-box .child:nth-of-type(3) {
  border-top: 1.5px solid #D05FFF;
  border-bottom: 0;
}
.timeTable__date27 .container:nth-of-type(2) .right-box .child:nth-of-type(3) {
  border-top: 1.5px solid #D05FFF;
}
.timeTable__date28 .container:nth-of-type(2) .left-box .child:first-child {
  border-top: none;
}
.timeTable__date28 .container:nth-of-type(2) .left-box .child:last-child {
  border-bottom: none;
}
.timeTable__date28 .container:nth-of-type(2) .right-box .child:first-child {
  border-top: none;
}
.timeTable__date28 .container:nth-of-type(2) .right-box .child:last-child {
  border-bottom: none;
}
.timeTable__date27 .container:nth-of-type(2) .left-box .child:first-child {
  border-top: none;
}
.timeTable__date27 .container:nth-of-type(2) .left-box .child:nth-of-type(2) {
  border-bottom: none;
}
.timeTable__date27 .container:nth-of-type(2) .right-box .child:first-child {
  border-top: none;
}
.timeTable__date27 .container:nth-of-type(2) .right-box .child:nth-of-type(2) {
  border-bottom: none;
}
.timeTable__date27 .container:nth-of-type(2) .right-box .child:nth-of-type(3) {
  border-bottom: none;
}
.timeTable__date27 .container:nth-of-type(4) {
  border-top: 1.5px solid #D05FFF;
}
.timeTable__date27 .container:nth-of-type(4) .left-box .child:nth-of-type(1) {
  border-top: none;
}
.timeTable__date27 .container:nth-of-type(4) .left-box .child:nth-of-type(2) {
  border-bottom: none;
}
.timeTable__date27 .container:nth-of-type(4) .right-box .child:nth-of-type(1) {
  border-top: none;
}
.timeTable__date27 .container:nth-of-type(4) .right-box .child:nth-of-type(2) {
  border-bottom: none;
}

.timeTable__date28 .center-box:nth-of-type(3) {
  border-bottom: 1.5px solid #3f9dff;
}

.center-box:last-of-type {
  border-top: 1.5px solid #D05FFF;
}
.timeTable__date28 .center-box:last-of-type {
  border-top: 1.5px solid #3f9dff;
}

.left-box,
.right-box {
  display: grid;
}

.children {
  display: flex;
  flex-flow: column;
}

.magic-container {
  background-color: #b6f9c6;
  border-radius: 1rem;
  padding: 3rem 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.timeTable__date27 .magic-container {
  background-color: #aef1f5;
}
@media screen and (max-width: 768px) {
  .magic-container {
    padding: 5rem 1rem 2.5rem;
  }
}

.gathering {
  position: absolute;
  top: 2rem;
  left: 3rem;
}
@media screen and (max-width: 768px) {
  .gathering {
    top: 1rem;
    left: 1rem;
  }
}

.child {
  border: 1.5px solid #D05FFF;
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-flow: column;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .child {
    padding: 1rem;
  }
}
.timeTable__date28 .child {
  border: 1.5px solid #3f9dff;
}

.left-box .child {
  margin-right: 0.15rem;
  border-left: none;
}

.right-box .child {
  margin-left: 0.15rem;
  border-right: none;
}

.children .child + .child {
  border-top: 0;
}

.center-box .child {
  margin-top: -0.1rem;
  border: none;
}
.center-box .child .magic-container {
  min-height: 9.5rem;
}

.time,
.place {
  font-size: 1.4rem;
  color: #d05fff;
  font-weight: bold;
  letter-spacing: 0.025em;
}
.timeTable__date28 .time,
.timeTable__date28 .place {
  color: #3f9dff;
}
@media screen and (max-width: 768px) {
  .time,
  .place {
    font-size: 1.2rem;
  }
  .fit-content .time,
  .fit-content .place {
    text-align: center;
  }
}

.close {
  font-size: 1.4rem;
  color: #d05fff;
  font-weight: bold;
  letter-spacing: 0.025em;
  padding: 0 4rem 2rem;
}
.timeTable__date28 .close {
  color: #3f9dff;
}
@media screen and (max-width: 768px) {
  .close {
    font-size: 1.2rem;
    text-align: center;
  }
}

.title {
  color: #4099dd;
  font-size: 2rem;
  line-height: 2.5rem;
  font-weight: bold;
  letter-spacing: 0.025em;
  word-break: break-all;
  white-space: break-spaces;
  font-family: "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック", Helvetica, sans-serif;
}
.timeTable__date28 .title {
  color: #00c48c;
}
@media screen and (max-width: 768px) {
  .title {
    font-size: 1.2rem;
    line-height: 1.8;
  }
}

.catalyst {
  font-size: 1.4rem;
  color: #d05fff;
  font-weight: bold;
  letter-spacing: 0.025em;
}
.timeTable__date28 .catalyst {
  color: #3f9dff;
}

.timetable-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: none;
  justify-content: center;
  align-items: center;
  font-family: "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック", Helvetica, sans-serif;
}
.timetable-modal.is-active {
  display: flex;
}
.timetable-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}
.timetable-modal__row.modalTime, .timetable-modal__row.modalPlace {
  font-size: 2.2rem;
}
@media screen and (max-width: 768px) {
  .timetable-modal__row.modalTime, .timetable-modal__row.modalPlace {
    font-size: 1.8rem;
  }
}
.timetable-modal__content {
  position: relative;
  padding: 4rem;
  width: 90%;
  max-width: 60rem;
  border-radius: 1rem;
  z-index: 1;
  max-height: 90vh;
  overflow-y: auto;
  background-color: #d7ffff;
  color: #d7ffff;
}
@media screen and (max-width: 768px) {
  .timetable-modal__content {
    padding: 2rem;
  }
}
.timetable-modal.is-day27 .timetable-modal__content {
  background-color: #bf5fff;
}
.timetable-modal.is-day28 .timetable-modal__content {
  background-color: #3f9dff;
}
.timetable-modal__close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  width: 4rem;
  height: 4rem;
}
@media screen and (max-width: 768px) {
  .timetable-modal__close {
    width: 2.5rem;
    height: 2.5rem;
    top: 1rem;
    right: 1rem;
  }
}
.timetable-modal__close img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.timetable-modal__time, .timetable-modal__place {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}
.timetable-modal__place {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .timetable-modal__place {
    font-size: 1.2rem;
  }
}
.timetable-modal__title {
  font-family: "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック", Helvetica, sans-serif;
  font-size: 2.4rem;
  margin-bottom: 3rem;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .timetable-modal__title {
    font-size: 2.1rem;
  }
}
.timetable-modal__speaker {
  margin-bottom: 1.5rem;
  display: flex;
  gap: 1rem;
}
.timetable-modal__speaker:last-child {
  margin-bottom: 0;
}
.timetable-modal__speaker-img {
  width: 6rem;
  height: 6rem;
  flex: 0 0 6rem;
  border-radius: 50%;
  overflow: hidden;
  border-width: 2px;
  border-style: solid;
}
@media screen and (max-width: 768px) {
  .timetable-modal__speaker-img {
    width: 4.5rem;
    height: 4.5rem;
    flex: 0 0 4.5rem;
  }
}
.timetable-modal__speaker-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.timetable-modal__speaker-name {
  font-size: 1.8rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .timetable-modal__speaker-name {
    font-size: 1.2rem;
  }
}
.timetable-modal__speaker-pos {
  font-size: 1.8rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .timetable-modal__speaker-pos {
    font-size: 1.2rem;
  }
}
.timetable-modal__position {
  margin-top: 2rem;
  font-size: 1.2rem;
  color: #ccc;
  text-align: right;
}

@keyframes skeleton-pulse {
  0% {
    opacity: 0.4;
  }
  50% {
    opacity: 0.8;
  }
  100% {
    opacity: 0.4;
  }
}
.modal-btn {
  cursor: pointer;
}

.modal-btn,
.close {
  transition: background-color 0.3s;
}
.modal-btn.is-loading,
.close.is-loading {
  background-color: #d05fff;
  animation: skeleton-pulse 1.5s infinite ease-in-out;
  pointer-events: none;
  border-color: transparent;
}
.modal-btn.is-loading > *,
.close.is-loading > * {
  visibility: hidden;
  opacity: 0;
}
.modal-btn.is-loading,
.close.is-loading {
  color: transparent;
}

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

/*# sourceMappingURL=main.css.map */
