@charset "UTF-8";
html {
  overflow-x: hidden;
  width: 100%;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.container-fluid, .container,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl {
  width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

.container-fluid {
  margin: 0;
}

.container {
  max-width: 100%;
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

.container-sm {
  max-width: 100%;
}
@media (min-width: 576px) {
  .container-sm {
    max-width: 540px;
  }
}

.container-md {
  max-width: 100%;
}
@media (min-width: 768px) {
  .container-md {
    max-width: 720px;
  }
}

.container-lg {
  max-width: 100%;
}
@media (min-width: 992px) {
  .container-lg {
    max-width: 960px;
  }
}

.container-xl {
  max-width: 100%;
}
@media (min-width: 1200px) {
  .container-xl {
    max-width: 1140px;
  }
}

.container-xxl {
  max-width: 100%;
}
@media (min-width: 1400px) {
  .container-xxl {
    max-width: 1320px;
  }
}

@font-face {
  font-family: "Shin-Maru-GP-Regular";
  src: url(/wp-content/themes/kidsup/fonts/A-OTF-ShinMGoPro-Regular.otf);
}
@font-face {
  font-family: "Shin-Maru-GP-Bold";
  src: url(/wp-content/themes/kidsup/fonts/A-OTF-ShinMGoPro-Bold.otf);
}
@font-face {
  font-family: "Shin-Maru-GP-DeBold";
  src: url(/wp-content/themes/kidsup/fonts/A-OTF-ShinMGoPro-DeBold.woff);
}
@font-face {
  font-family: "Shin-Maru-GP-Ultra";
  src: url(/wp-content/themes/kidsup/fonts/A-OTF\ Shin\ Maru\ Go\ Pro\ U.otf);
}
body {
  -webkit-font-smoothing: antialiased;
  font-family: "Noto Sans JP", "Noto Sans SC", "Noto Sans", "Noto Serif JP", "Noto Serif SC", serif;
}

h1 {
  font-size: 3rem;
  line-height: 1.2;
}

h2 {
  font-size: 2.5rem;
  line-height: 1.2;
}

h3 {
  font-size: 2rem;
  line-height: 1.3;
}

h4 {
  font-size: 1.5rem;
  line-height: 1.4;
}

h5 {
  font-size: 1.25rem;
  line-height: 1.25;
}

p {
  font-size: 1rem;
  line-height: 1.5;
}

.p-sub {
  font-size: 0.75rem;
}

@media (max-width: 991.98px) {
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2rem;
  }
  h3 {
    font-size: 1.5rem;
  }
  h4 {
    font-size: 1.25rem;
  }
  h5 {
    font-size: 1.15rem;
  }
  p {
    font-size: 1rem;
  }
}
@media (max-width: 767.98px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.75rem;
  }
  h3 {
    font-size: 1.5rem;
  }
  h4 {
    font-size: 1.25rem;
  }
  h5 {
    font-size: 1rem;
  }
  p {
    font-size: 1.125rem;
  }
}
@media (max-width: 575.98px) {
  h1 {
    font-size: 1.8rem;
  }
  h2 {
    font-size: 1.75rem;
  }
  h3 {
    font-size: 1.5rem;
  }
  h4 {
    font-size: 1.25rem;
  }
  h5 {
    font-size: 1rem;
  }
  p {
    font-size: 1.125rem;
  }
}
.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}

@media (max-width: 575.98px) {
  .desktop-only {
    display: none;
  }
  .mobile-only {
    display: block;
  }
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

nav {
  position: fixed;
  background-color: white;
  height: 5rem;
  padding: 0.625rem, 1rem, 0.625rem, 1rem;
  width: 100%;
  z-index: 9001;
}
nav .nav-inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  height: 100%;
  padding: 0 1rem;
  z-index: 2;
}
nav .navbar-brand {
  display: flex;
  justify-content: center;
  width: 22.375rem;
  max-width: 30%;
  height: auto;
  transition-duration: 0.3s;
}
nav .navbar-brand img {
  max-width: 100%;
  height: auto;
  display: block;
}
nav .mobile {
  display: none;
}
nav .nav-links {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  padding-right: 0rem;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 1rem;
  font-family: "Noto Sans JP";
  line-height: unset;
}
nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}
nav a:hover {
  transition-duration: 0.3s;
  opacity: 0.6;
}
nav a.button {
  background-color: #EF8200;
  padding: 0.5rem 2rem;
  text-align: center;
  border-radius: 2rem;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  height: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-text-stroke: 0.03125rem white;
  text-stroke: 0.03125rem white;
  transition-duration: 0.3s;
}
nav .nav-toggle {
  position: relative;
  background: #5A534A;
  border: 1px solid transparent;
  width: 2.75rem;
  height: 2.75;
  border-radius: 50%;
  cursor: pointer;
  display: none;
}
nav .nav-toggle:focus {
  outline: none;
}
nav .nav-toggle [class*=bar-] {
  display: block;
  background: white;
  position: absolute;
  transition: 0.2s ease all;
  border-radius: 0.1rem;
  height: 0.2rem;
  width: 66%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
  transform-origin: center;
}
nav .nav-toggle .bar-top {
  top: 30%;
}
nav .nav-toggle .bar-mid {
  top: 50%;
}
nav .nav-toggle .bar-bot {
  top: 70%;
}
nav .nav-toggle.opened .bar-top {
  transform: translate(-50%, -50%) rotate(45deg);
  top: 50%;
}
nav .nav-toggle.opened .bar-mid {
  opacity: 0;
}
nav .nav-toggle.opened .bar-bot {
  transform: translate(-50%, -50%) rotate(-45deg);
  top: 50%;
}
nav .sticky-cta {
  display: none;
}
nav {
  /* Smaller Desktop Resizing */
}
@media (max-width: 991px) {
  nav .navbar-brand {
    width: -moz-fit-content;
    width: fit-content;
    width: 27.5%;
    max-width: 22.375rem;
    height: 100%;
  }
  nav .nav-links {
    gap: 0.5rem;
  }
  nav a.button {
    padding: 0.5rem 1.25rem;
  }
}
nav {
  /* Mobile Styles */
}
@media (max-width: 767.98px) {
  nav .navbar-brand {
    width: 22.375rem;
    max-width: 80%;
    display: flex;
    justify-content: flex-start;
    margin-left: 0;
  }
  nav .navbar-brand img {
    height: auto;
  }
  nav .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    aspect-ratio: 1/1;
  }
  nav .nav-links {
    position: absolute;
    top: 5rem;
    left: 0;
    right: 0;
    background-color: #333;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    display: flex;
    height: 0;
    padding: unset;
    padding-top: 1rem;
    padding-bottom: 1rem;
    height: -moz-fit-content;
    height: fit-content;
    overflow: hidden;
    z-index: -1;
    /* Key changes for the slide-down effect */
    transform: translateY(-100%); /* Start off-screen above the navbar */
    opacity: 0;
    transition: 0.3s ease-out; /* Transition both properties */
  }
  nav .nav-links.show {
    transform: translateY(0); /* Slide down to its normal position */
    opacity: 1; /* Fade in */
    visibility: visible;
    z-index: 0;
  }
  nav a.button {
    width: calc(100% - 2rem);
    max-width: 375px;
    margin-left: 0;
  }
  nav .sticky-cta {
    background-color: #333;
    color: white;
    font-weight: bold;
    text-align: center;
    padding: 1rem;
    border-radius: 0;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease-out;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    padding-bottom: calc(1rem + env(safe-area-inset-bottom));
  }
  nav .sticky-cta a {
    color: inherit;
    text-decoration: none;
  }
  nav .sticky-cta .button {
    font-size: 1.2rem;
  }
  nav .nav-toggle.opened ~ .sticky-cta {
    transform: translateY(100%);
    opacity: 0;
    transition: 0.3s ease-out;
  }
}

.cta-button {
  text-decoration: none;
  background-color: #5A534A;
  color: white;
  display: flex;
  justify-content: space-between;
  width: -moz-fit-content;
  width: fit-content;
}

.cta-primary {
  font-size: 1.5rem;
  font-family: "Shin-Maru-GP-Ultra";
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  border-radius: 3rem;
}
.cta-primary .arrow {
  margin-left: 3rem;
  width: 1.6rem;
  height: auto;
  fill: currentColor;
  stroke-miterlimit: 1;
  stroke: currentColor;
  stroke-width: 70px;
  overflow: visible;
}

.cta-secondary {
  font-size: 1.25rem;
  font-family: "Shin-Maru-GP-DeBold";
  padding-left: 1.75rem;
  padding-right: 1.75rem;
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
  border-radius: 3rem;
}
.cta-secondary .arrow {
  margin-left: 2rem;
  width: 1.35rem;
  height: auto;
  fill: currentColor;
  stroke-width: 35px;
  overflow: visible;
}

@media (max-width: 575.98px) {
  .cta-button {
    width: 100%;
    max-width: 350px;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cta-button .arrow {
    margin-left: unset;
  }
  .cta-primary {
    font-size: 1.3rem;
    width: -moz-fit-content;
    width: fit-content;
  }
  .cta-primary .arrow {
    width: 1.4rem;
  }
  .cta-primary .cta-secondary {
    font-size: 1.15rem;
  }
  .cta-primary .cta-secondary .arrow {
    width: 1.25rem;
  }
}
.hero {
  width: 100%;
  /* 1) Oldest fallback — always fill viewport height */
  height: 100vh;
  min-height: -moz-fit-content;
  min-height: fit-content; /* legacy safety floor */
  /* 2) Modern override for mobile viewport quirks */
  height: 100dvh;
  /* 3) Enforce minimum aspect ratio for modern browsers */
  min-height: 56.25vw;
  /* 4) Extra safeguard in modern browsers */
  min-height: clamp(500px, 56.25vw, 100dvh);
  padding-top: 5rem;
  background-color: #EF8200;
}

.party-event-about {
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
@media (max-width: 991.98px) {
  .party-event-about .three-reasons-row {
    margin-top: 1rem;
    gap: 1rem;
  }
  .party-event-about .three-reasons-row .reason-box {
    padding: 1rem;
  }
}

.about-event-wrapper {
  display: flex;
  gap: 2rem;
  flex-direction: row;
}
.about-event-wrapper .text {
  width: 55%;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-event-wrapper .image-column {
  width: 45%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}
.about-event-wrapper .image-column img {
  padding: 2rem;
}
@media (max-width: 991.98px) {
  .about-event-wrapper {
    gap: 1rem;
  }
  .about-event-wrapper .text {
    width: 60%;
    padding: unset;
  }
  .about-event-wrapper .image-column {
    width: 40%;
  }
}
@media (max-width: 767.98px) {
  .about-event-wrapper {
    flex-direction: column-reverse;
    gap: 0;
  }
  .about-event-wrapper .text {
    width: 100%;
  }
  .about-event-wrapper .text .cta-button {
    margin: auto;
  }
  .about-event-wrapper .image-column {
    width: 100%;
  }
}

.three-reasons-swiper {
  display: none;
}

.three-reasons-row {
  width: 100%;
  height: 10rem;
  margin-top: 2rem;
  display: flex;
  gap: 2rem;
  height: -moz-fit-content;
  height: fit-content;
  align-items: stretch;
}
.three-reasons-row .reason-box {
  width: 33%;
  padding: 2rem;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.three-reasons-row .reason-box .icon {
  width: 5rem;
  aspect-ratio: 1/1;
  fill: white;
}
.three-reasons-row .reason-box h5 {
  color: white;
  font-family: "Shin-Maru-GP-Bold";
  text-align: center;
  margin-bottom: 1rem;
}
.three-reasons-row .reason-box p {
  color: white;
  font-weight: bolder;
}

@media (max-width: 767.98px) {
  .three-reasons-row {
    display: none;
  }
  .three-reasons-swiper {
    display: block;
    padding-bottom: 2rem;
  }
  .three-reasons-swiper .swiper-slide {
    width: 66% !important;
  }
  .three-reasons-swiper .swiper-slide .reason-box {
    width: -moz-fit-content;
    width: fit-content;
    height: 100%;
    padding: 2rem;
    display: flex;
    align-items: center;
    flex-direction: column;
  }
}
@media (max-width: 767.98px) and (max-width: 575.98px) {
  .three-reasons-swiper .swiper-slide .reason-box {
    padding: 1rem;
  }
}
@media (max-width: 767.98px) {
  .three-reasons-swiper .swiper-slide .reason-box .icon {
    width: 5rem;
    aspect-ratio: 1/1;
    fill: white;
  }
  .three-reasons-swiper .swiper-slide .reason-box h5 {
    color: white;
    font-family: "Shin-Maru-GP-Bold";
    text-align: center;
    margin-bottom: 1.125rem;
  }
  .three-reasons-swiper .swiper-slide .reason-box p {
    color: white;
    font-weight: bolder;
    font-size: 1rem;
  }
}
.prefecture-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  width: 100%;
  padding: 1rem;
  padding-top: 0rem;
  padding-bottom: 2rem;
  position: relative;
}
.prefecture-wrapper h3 {
  font-size: 1.5rem;
}
.prefecture-wrapper svg {
  width: 2rem;
  height: 2rem;
  margin: 0;
  padding: 0;
}
@media (max-width: 767.98px) {
  .prefecture-wrapper {
    padding: 1rem;
    padding-top: 0;
  }
}
.prefecture-wrapper .prefecture {
  position: relative;
  border-radius: 2rem;
  padding: 1rem;
  width: calc(50% - 0.5rem);
  height: -moz-fit-content;
  height: fit-content;
}
.prefecture-wrapper .prefecture .prefecture-header {
  display: flex;
  align-items: center;
  margin: 0 0 1rem;
  padding: 0.5rem 1rem;
  height: -moz-fit-content;
  height: fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 1rem;
}
.prefecture-wrapper .prefecture .prefecture-header svg {
  width: 2rem;
  height: auto;
  padding-right: 0.5rem;
}
.prefecture-wrapper .prefecture .prefecture-header h2 {
  font-size: 2rem;
  font-weight: bolder;
  line-height: 0;
  padding-bottom: 0.25rem;
}
.prefecture-wrapper .prefecture .wards-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  position: relative;
}
.prefecture-wrapper .prefecture .wards-container .ward {
  display: block;
  width: calc(50% - 0.5rem);
  border-radius: 1rem;
  padding: 1rem;
  padding-bottom: 0.625rem;
}
.prefecture-wrapper .prefecture .wards-container .ward h3 {
  margin: 0;
}
.prefecture-wrapper .prefecture .wards-container .ward h3 svg {
  width: 1rem;
  height: 1rem;
}
.prefecture-wrapper .prefecture .wards-container .ward ul {
  margin: 0;
  padding-left: 1rem;
}
.prefecture-wrapper .prefecture .wards-container .ward ul li {
  font-weight: bold;
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}
.prefecture-wrapper .prefecture .wards-container .ward ul li .school-date {
  font-weight: 400;
}
.prefecture-wrapper .prefecture.prefecture-tokyo {
  width: 100%;
}
.prefecture-wrapper .prefecture.prefecture-tokyo .wards-container .ward {
  width: calc(25% - 0.75rem);
}
.prefecture-wrapper .prefecture.prefecture-tokyo .prefecture-header {
  background-color: unset;
}
.prefecture-wrapper .prefecture.prefecture-tokyo .prefecture-header h2 {
  color: white;
}
.prefecture-wrapper .prefecture.prefecture-tokyo .prefecture-header svg .map-pin-3-bg-color {
  fill: white;
}
.prefecture-wrapper .prefecture.prefecture-tokyo .prefecture-header svg .map-pin-3-main-color {
  fill: unset;
}
.prefecture-wrapper .prefecture.prefecture-tokyo h3, .prefecture-wrapper .prefecture.prefecture-tokyo svg {
  color: unset;
  fill: unset;
}
.prefecture-wrapper .prefecture.prefecture-kanagawa .prefecture-header {
  background-color: unset;
}
.prefecture-wrapper .prefecture.prefecture-kanagawa .prefecture-header h2 {
  color: white;
}
.prefecture-wrapper .prefecture.prefecture-kanagawa .prefecture-header svg .map-pin-3-bg-color {
  fill: white;
}
.prefecture-wrapper .prefecture.prefecture-kanagawa .prefecture-header svg .map-pin-3-main-color {
  fill: unset;
}
.prefecture-wrapper .prefecture.prefecture-kanagawa h3, .prefecture-wrapper .prefecture.prefecture-kanagawa svg {
  color: unset;
  fill: unset;
}
.prefecture-wrapper .prefecture.prefecture-chiba .prefecture-header {
  background-color: unset;
}
.prefecture-wrapper .prefecture.prefecture-chiba .prefecture-header h2 {
  color: white;
}
.prefecture-wrapper .prefecture.prefecture-chiba .prefecture-header svg .map-pin-3-bg-color {
  fill: white;
}
.prefecture-wrapper .prefecture.prefecture-chiba .prefecture-header svg .map-pin-3-main-color {
  fill: unset;
}
.prefecture-wrapper .prefecture.prefecture-chiba h3, .prefecture-wrapper .prefecture.prefecture-chiba svg {
  color: unset;
}
.prefecture-wrapper .prefecture.prefecture-saitama .prefecture-header {
  background-color: unset;
}
.prefecture-wrapper .prefecture.prefecture-saitama .prefecture-header h2 {
  color: white;
}
.prefecture-wrapper .prefecture.prefecture-saitama .prefecture-header svg .map-pin-3-bg-color {
  fill: white;
}
.prefecture-wrapper .prefecture.prefecture-saitama .prefecture-header svg .map-pin-3-main-color {
  fill: unset;
}
.prefecture-wrapper .prefecture.prefecture-saitama h3, .prefecture-wrapper .prefecture.prefecture-saitama svg {
  color: unset;
}
@media screen and (max-width: 991.9px) {
  .prefecture-wrapper .prefecture {
    width: 100%;
  }
  .prefecture-wrapper .prefecture .wards-container .ward {
    width: calc(50% - 0.5rem);
  }
  .prefecture-wrapper .prefecture.prefecture-tokyo {
    width: 100%;
  }
  .prefecture-wrapper .prefecture.prefecture-tokyo .wards-container .ward {
    width: calc(33% - 0.569rem);
  }
}
@media screen and (max-width: 767.9px) {
  .prefecture-wrapper .prefecture.prefecture-tokyo {
    width: 100%;
  }
  .prefecture-wrapper .prefecture.prefecture-tokyo .wards-container .ward {
    width: calc(50% - 0.5rem);
  }
}
@media screen and (max-width: 575.9px) {
  .prefecture-wrapper .prefecture {
    width: 100%;
    padding: 0;
    padding-bottom: 0rem;
    margin-bottom: 0rem;
    border-radius: 2rem;
    overflow: hidden;
    gap: 0rem;
  }
  .prefecture-wrapper .prefecture .prefecture-header {
    margin: unset;
    padding: 1rem;
    border-radius: 0;
    cursor: pointer;
    width: 100%;
    display: flex;
    align-items: center;
    padding-bottom: 0.8rem;
  }
  .prefecture-wrapper .prefecture .wards-container {
    padding: 0 1rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    display: flex;
    flex-direction: column;
  }
  .prefecture-wrapper .prefecture .wards-container .ward {
    width: 100% !important;
    margin: unset;
    background-color: white;
  }
  .prefecture-wrapper .prefecture .wards-container .ward ul li {
    padding: 0.25rem 0;
  }
  .prefecture-wrapper .prefecture.expanded .wards-container {
    max-height: -moz-fit-content;
    max-height: fit-content;
    padding: 1rem;
  }
}

.seasonal-three-benefits {
  background-color: #5A534A;
}
.seasonal-three-benefits .container {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.seasonal-three-benefits .container .benefit-column {
  background-color: #EF8200;
  width: 33.3333333333%;
  padding: 1rem;
  border-radius: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
.seasonal-three-benefits .container .benefit-column img {
  width: 100%;
  height: auto;
  border-radius: 1rem !important;
  border-style: solid;
  border-width: 0.15rem;
  border-color: white;
}
.seasonal-three-benefits .container .benefit-column p {
  width: 100%;
  font-size: 1.25rem;
  color: white;
  padding-top: unset;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (max-width: 991.98px) {
  .seasonal-three-benefits .container {
    gap: 1rem;
  }
  .seasonal-three-benefits .container .benefit-column p {
    font-size: 1rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}
@media (max-width: 767.98px) {
  .seasonal-three-benefits .container {
    gap: 1rem;
    flex-direction: column;
  }
  .seasonal-three-benefits .container .benefit-column {
    width: 100%;
  }
  .seasonal-three-benefits .container .benefit-column p {
    font-size: 1.25rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.customer-feedback {
  background-color: #EF8200;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.customer-feedback h2 {
  color: white;
}
.customer-feedback .customer-feedback-column-wrapper {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}
.customer-feedback .customer-feedback-column-wrapper .item {
  width: 33.3333333333%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  border-radius: 2rem;
  background-color: #5A534A;
}
.customer-feedback .customer-feedback-column-wrapper .item .picture-name-wrapper {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  width: 100%;
  justify-content: center;
  height: -moz-fit-content;
  height: fit-content;
}
.customer-feedback .customer-feedback-column-wrapper .item .picture-name-wrapper .img-wrapper {
  width: 33.3333333333%;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.customer-feedback .customer-feedback-column-wrapper .item .picture-name-wrapper .img-wrapper img {
  width: -moz-fit-content;
  width: fit-content;
}
.customer-feedback .customer-feedback-column-wrapper .item .picture-name-wrapper .name-wrapper {
  width: 66.6666666667%;
  display: flex;
  align-items: center;
  height: 100%;
}
.customer-feedback .customer-feedback-column-wrapper .item .picture-name-wrapper .name-wrapper h4 {
  color: white;
}
.customer-feedback .customer-feedback-column-wrapper .item p {
  color: white;
}
@media (max-width: 991.98px) {
  .customer-feedback .customer-feedback-column-wrapper .item {
    padding: 1rem;
  }
  .customer-feedback .customer-feedback-column-wrapper .item .picture-name-wrapper {
    flex-direction: column;
    height: -moz-fit-content;
    height: fit-content;
  }
  .customer-feedback .customer-feedback-column-wrapper .item .picture-name-wrapper .img-wrapper {
    width: 50%;
    height: auto;
    margin: auto;
    position: relative;
  }
  .customer-feedback .customer-feedback-column-wrapper .item .picture-name-wrapper .img-wrapper img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
  }
  .customer-feedback .customer-feedback-column-wrapper .item .picture-name-wrapper .name-wrapper {
    width: 100%;
    display: flex;
    text-align: center;
    height: -moz-fit-content;
    height: fit-content;
  }
  .customer-feedback .customer-feedback-column-wrapper .item .picture-name-wrapper .name-wrapper h4 {
    color: white;
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
  }
}
@media (max-width: 767.98px) {
  .customer-feedback .customer-feedback-column-wrapper {
    flex-direction: column;
  }
  .customer-feedback .customer-feedback-column-wrapper .item {
    width: 100%;
    padding: 2rem;
  }
  .customer-feedback .customer-feedback-column-wrapper .item .picture-name-wrapper {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    width: 100%;
    justify-content: center;
    height: -moz-fit-content;
    height: fit-content;
  }
  .customer-feedback .customer-feedback-column-wrapper .item .picture-name-wrapper .img-wrapper {
    width: 40%;
    height: auto;
    background-color: white;
  }
  .customer-feedback .customer-feedback-column-wrapper .item .picture-name-wrapper .img-wrapper img {
    width: 100%;
  }
  .customer-feedback .customer-feedback-column-wrapper .item .picture-name-wrapper .name-wrapper {
    width: 60%;
    display: flex;
    margin: auto;
  }
  .customer-feedback .customer-feedback-column-wrapper .item .picture-name-wrapper .name-wrapper h4 {
    font-size: 1.5rem;
    text-align: left;
    width: 100%;
  }
}

.four-benefits {
  background-color: #5A534A;
  padding: 2rem 0;
}
.four-benefits .four-benefits-wrapper {
  width: 100%;
  background-color: #EF8200;
  display: flex;
  flex-direction: row;
  gap: 1rem;
}
.four-benefits .four-benefits-wrapper .benefit {
  width: 25%;
  padding: 2rem;
}
.four-benefits .four-benefits-wrapper .benefit .benefit-icon-box {
  width: 6.5rem;
  margin: auto;
  padding-bottom: 0.5rem;
}
.four-benefits .four-benefits-wrapper .benefit .benefit-icon-box .benefit-icon-colour-1 {
  fill: white;
}
.four-benefits .four-benefits-wrapper .benefit .benefit-icon-box .benefit-icon-colour-2 {
  fill: #5A534A;
}
.four-benefits .four-benefits-wrapper .benefit h4 {
  font-size: 1.15rem;
  text-align: center;
  color: white;
}
.four-benefits .four-benefits-wrapper .benefit h4 .h4-sub {
  font-size: 0.85rem;
}
@media (max-width: 991.98px) {
  .four-benefits .four-benefits-wrapper {
    flex-wrap: wrap;
  }
  .four-benefits .four-benefits-wrapper .benefit {
    width: calc(50% - 0.5rem);
  }
}
@media (max-width: 576.98px) {
  .four-benefits .four-benefits-wrapper {
    flex-wrap: unset;
    flex-direction: column;
  }
  .four-benefits .four-benefits-wrapper .benefit {
    width: 100%;
    margin: auto;
  }
}

.cta-party-times {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  padding-bottom: 2rem;
}
.cta-party-times .party-times-box {
  margin: auto;
  display: flex;
  flex-direction: column;
  width: -moz-fit-content;
  width: fit-content;
  padding-bottom: 1rem;
  background-color: #EF8200;
}
.cta-party-times .party-times-box h2, .cta-party-times .party-times-box h3, .cta-party-times .party-times-box p {
  text-align: center;
}
.cta-party-times .party-times-box h2 {
  padding-bottom: 1rem;
  font-family: "Shin-Maru-GP-Ultra";
}
.cta-party-times .party-times-box h3 {
  font-family: "Shin-Maru-GP-DeBold";
  padding-bottom: 1rem;
}
.cta-party-times .party-times-box p {
  font-size: 1.25rem;
  font-weight: bold;
}
.cta-party-times .party-times-box p a {
  color: white;
}
@media (max-width: 575.98px) {
  .cta-party-times .party-times-box p {
    font-size: 1rem;
  }
}
.cta-party-times .cta-primary {
  margin-left: auto;
  margin-right: auto;
}

.cta-party-times-timeline {
  position: relative;
  overflow: hidden;
}
.cta-party-times-timeline .container {
  padding-top: 10vw;
  padding-bottom: 10vw;
}
.cta-party-times-timeline .container .party-times-box {
  background-color: unset;
  width: 100%;
}
.cta-party-times-timeline .container .party-times-box h2 {
  font-family: "Shin-Maru-GP-Ultra";
  text-align: center;
  margin-bottom: 1rem;
}
.cta-party-times-timeline .container .party-times-box .party-times-timeline {
  border-style: solid;
  border-width: 0.3rem;
  display: flex;
  flex-direction: row;
  width: 100%;
  border-radius: 3rem;
  overflow: hidden;
}
.cta-party-times-timeline .container .party-times-box .party-times-timeline .party-number {
  font-size: 1.25rem;
}
.cta-party-times-timeline .container .party-times-box .party-times-timeline .party-time {
  font-size: 1.15rem;
}
.cta-party-times-timeline .container .party-times-box .party-times-timeline .party-1-3-box,
.cta-party-times-timeline .container .party-times-box .party-times-timeline .party-2-4-box {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: auto;
}
@media (max-width: 991.98px) {
  .cta-party-times-timeline .container .party-times-box .party-times-timeline .party-1-3-box,
  .cta-party-times-timeline .container .party-times-box .party-times-timeline .party-2-4-box {
    padding: 1rem;
  }
}
.cta-party-times-timeline .container .party-times-box .party-times-timeline .party-1-3-box h3,
.cta-party-times-timeline .container .party-times-box .party-times-timeline .party-1-3-box h4,
.cta-party-times-timeline .container .party-times-box .party-times-timeline .party-2-4-box h3,
.cta-party-times-timeline .container .party-times-box .party-times-timeline .party-2-4-box h4 {
  line-height: 1;
  padding: 0;
  text-align: left;
}
.cta-party-times-timeline .container .party-times-box .party-times-timeline .party-1-3-box, .cta-party-times-timeline .container .party-times-box .party-times-timeline .party-2-4-box {
  width: 18%;
}
.cta-party-times-timeline .container .party-times-box .party-times-timeline .interlude {
  width: 11.5%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}
.cta-party-times-timeline .container .party-times-box .party-times-timeline .interlude p {
  font-size: 0.75rem;
  text-align: left;
  width: 100%;
}
.cta-party-times-timeline .container .party-times-box .party-times-timeline .interlude .party-times-arrow-mobile {
  display: none;
}
.cta-party-times-timeline .container .party-times-box .party-times-timeline .lunch-break {
  width: 5%;
  border-left-style: dashed;
  border-right-style: dashed;
  border-left-width: 0.15rem;
  border-right-width: 0.15rem;
}
@media (max-width: 767.98px) {
  .cta-party-times-timeline .container .party-times-box .party-times-timeline {
    flex-direction: column;
    border-radius: 2rem;
    padding: 0;
  }
  .cta-party-times-timeline .container .party-times-box .party-times-timeline .party-1-3-box,
  .cta-party-times-timeline .container .party-times-box .party-times-timeline .party-2-4-box,
  .cta-party-times-timeline .container .party-times-box .party-times-timeline .interlude,
  .cta-party-times-timeline .container .party-times-box .party-times-timeline .lunch-break {
    width: 100%;
    padding-left: 2rem;
  }
  .cta-party-times-timeline .container .party-times-box .party-times-timeline .lunch-break {
    height: 2rem;
    border-top-style: dashed;
    border-bottom-style: dashed;
    border-left: none;
    border-right: none;
  }
  .cta-party-times-timeline .container .party-times-box .party-times-timeline .interlude .party-times-arrow-mobile {
    display: flex;
    position: absolute;
    transform: translate(-50%, 0%);
    left: 80%;
    height: 390%;
  }
}
.cta-party-times-timeline .container .party-times-box .party-times-arrow-row {
  display: flex;
  flex-direction: row;
  gap: 5%;
  padding-top: 1rem;
}
.cta-party-times-timeline .container .party-times-box .party-times-arrow-row .party-times-arrow {
  width: 33%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767.98px) {
  .cta-party-times-timeline .container .party-times-box .party-times-arrow-row {
    display: none;
  }
}
.cta-party-times-timeline .container .party-times-box p,
.cta-party-times-timeline .container .party-times-box .party-times-link {
  padding: 1rem;
  text-decoration: none;
}
.cta-party-times-timeline .container .cta-primary {
  width: -moz-fit-content;
  width: fit-content;
  padding-left: 5rem;
  padding-right: 5rem;
  transition: 0.3s;
  justify-content: center;
}
.cta-party-times-timeline .container .cta-primary:hover {
  opacity: 1;
  border-color: white;
}
.cta-party-times-timeline .container .cta-primary:active {
  opacity: 0.6;
}
@media (max-width: 575.98px) {
  .cta-party-times-timeline .container .cta-primary {
    width: 90%;
    padding-left: unset;
    padding-right: unset;
  }
}
.cta-party-times-timeline .times-cta-lower {
  text-align: center;
}
.cta-party-times-timeline .cta-primary {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.activity-slider {
  height: -moz-fit-content;
  height: fit-content;
  background-color: #5A534A;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.activity-slider p {
  color: white;
  padding-bottom: 1rem;
  font-family: "Shin-Maru-GP-Bold";
}
.activity-slider .swiper {
  -webkit-mask-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 2%, rgb(255, 255, 255) 10%, rgb(255, 255, 255) 90%, rgba(255, 255, 255, 0) 98%);
          mask-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 2%, rgb(255, 255, 255) 10%, rgb(255, 255, 255) 90%, rgba(255, 255, 255, 0) 98%);
}
.activity-slider .swiper-wrapper .swiper-card {
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 1.5rem;
  overflow: hidden;
  padding: 0.5rem;
  background-color: #EF8200;
  position: relative;
  border: solid 3px #EF8200;
  cursor: pointer;
  transition: ease-in-out 0.2s;
  aspect-ratio: 5/8;
}
.activity-slider .swiper-wrapper .swiper-card:hover {
  border-color: white;
}
.activity-slider .swiper-wrapper .swiper-card .img-wrapper {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  aspect-ratio: 1/1;
  width: 100%;
}
.activity-slider .swiper-wrapper .swiper-card .img-wrapper img {
  width: 100%;
  border-radius: 1rem;
}
.activity-slider .swiper-wrapper .swiper-card .img-wrapper .date-container {
  position: absolute;
  top: 0;
  background-color: #EF8200;
  border-radius: 0 0 1.5rem 0;
  margin-top: -0.5rem;
}
.activity-slider .swiper-wrapper .swiper-card .img-wrapper .date-container h5 {
  color: white;
  padding: 0.75rem;
  padding-left: 1rem;
  padding-right: 1.5rem;
  font-family: "Shin-Maru-GP-Bold";
}
.activity-slider .swiper-wrapper .swiper-card .img-wrapper .date-container h5 .h5-sub {
  font-size: 1rem;
}
.activity-slider .swiper-wrapper .swiper-card .img-wrapper .time-container {
  position: absolute;
  background-color: #EF8200;
  border-radius: 1.5rem 0 0 0;
  left: 100%;
  width: -moz-fit-content;
  width: fit-content;
  transform: translate(-100%, -100%);
  color: white;
  font-family: "Shin-Maru-GP-Bold";
  padding: 0.75rem;
  font-size: 0.85rem;
  width: 3.5rem;
  font-size: 1rem;
}
.activity-slider .swiper-wrapper .swiper-card .img-wrapper .img-tag-overlay {
  position: absolute;
  transform: translate(0%, -0.4rem);
  bottom: 0%;
  left: 0%;
  width: -moz-fit-content;
  width: fit-content;
}
.activity-slider .swiper-wrapper .swiper-card .img-wrapper .img-tag-overlay .activity-tag-cooking, .activity-slider .swiper-wrapper .swiper-card .img-wrapper .img-tag-overlay .activity-tag-outdoor {
  font-size: 0.75rem;
  font-family: "Shin-Maru-GP-Bold";
  background-color: white;
  color: black;
  padding: 0.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  border-radius: 1rem;
}
.activity-slider .swiper-wrapper .swiper-card .card-lower {
  height: 40%;
  display: flex;
  align-items: center;
}
.activity-slider .swiper-wrapper .swiper-card .card-lower h4 {
  text-align: center;
  font-family: "Shin-Maru-GP-Bold";
  color: white;
  text-decoration: none !important;
  font-size: 1.25rem;
  margin: auto;
}
@media screen and (max-width: 576.98px) {
  .activity-slider .swiper-wrapper .swiper-card {
    width: 75%;
  }
  .activity-slider .swiper-wrapper .swiper-card .img-wrapper .date-container h5 {
    font-size: 1.5rem;
  }
  .activity-slider .swiper-wrapper .swiper-card .img-wrapper .date-container h5 .h5-sub {
    font-size: 1.25rem;
  }
  .activity-slider .swiper-wrapper .swiper-card .img-wrapper .time-container {
    font-size: 1.5rem;
    width: 4.5rem;
  }
  .activity-slider .swiper-wrapper .swiper-card .card-lower h4 {
    font-size: 1.75rem;
    margin: auto;
  }
}

.event-category {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  padding-top: 1rem;
}
@media screen and (max-width: 576.98px) {
  .event-category {
    flex-direction: column;
  }
}

.activity-tag-cooking, .activity-tag-outdoor {
  font-size: 0.75rem;
  font-family: "Shin-Maru-GP-Bold";
  background-color: white !important;
  color: black !important;
  padding: 0.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  border-radius: 1rem;
  width: -moz-fit-content;
  width: fit-content;
}

.info-pane-outdoor p, .info-pane-cooking p {
  padding-top: 1rem;
}

.info-pane-outdoor {
  width: 65%;
}
@media screen and (max-width: 576.98px) {
  .info-pane-outdoor {
    width: 100%;
  }
}

.info-pane-cooking {
  width: 35%;
}
@media screen and (max-width: 576.98px) {
  .info-pane-cooking {
    width: 100%;
  }
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.modal.open {
  display: flex;
}
.modal .contents-wrapper {
  width: 100vw;
  height: 100vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal .contents-wrapper .container {
  justify-content: center;
  align-items: center;
  padding: none;
}
.modal .contents-wrapper .container .activity-modal-content {
  margin: unset !important;
  background: #EF8200;
  border-radius: 2.5rem;
  text-align: center;
  position: relative;
  width: 100%;
  padding: 1rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.5rem;
}
.modal .contents-wrapper .container .activity-modal-content img {
  border-radius: 2rem;
  width: 25%;
}
.modal .contents-wrapper .container .activity-modal-content .modal-info-wrapper {
  flex-grow: 1;
  width: 75%;
  text-align: left;
}
.modal .contents-wrapper .container .activity-modal-content .modal-info-wrapper .activity-tag-cooking, .modal .contents-wrapper .container .activity-modal-content .modal-info-wrapper .activity-tag-outdoor {
  font-size: 0.75rem;
  font-family: "Shin-Maru-GP-Bold";
  background-color: white !important;
  color: black !important;
  padding: 0.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  border-radius: 1rem;
}
.modal .contents-wrapper .container .activity-modal-content .modal-info-wrapper h2, .modal .contents-wrapper .container .activity-modal-content .modal-info-wrapper h3, .modal .contents-wrapper .container .activity-modal-content .modal-info-wrapper p {
  color: white;
  width: calc(100% - 4rem);
}
.modal .contents-wrapper .container .activity-modal-content .modal-info-wrapper h3 {
  font-family: "Shin-Maru-GP-Bold";
}
.modal .contents-wrapper .container .activity-modal-content .modal-info-wrapper p {
  padding-bottom: 1rem;
}
.modal .contents-wrapper .container .activity-modal-content .modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: white;
  background-color: #EF8200;
  width: 3rem;
  height: 3rem;
  border-radius: 1.5rem;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer !important;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  transition: ease-in-out 0.2s;
}
.modal .contents-wrapper .container .activity-modal-content .modal-close:hover {
  opacity: 0.6;
}
@media screen and (max-width: 768.98px) {
  .modal .contents-wrapper .container .activity-modal-content {
    flex-direction: column;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .modal .contents-wrapper .container .activity-modal-content img {
    border-radius: 2rem;
    width: 70%;
  }
  .modal .contents-wrapper .container .activity-modal-content .modal-info-wrapper {
    flex-grow: 1;
    width: 90%;
    margin: auto;
    text-align: left;
  }
  .modal .contents-wrapper .container .activity-modal-content .modal-info-wrapper h2, .modal .contents-wrapper .container .activity-modal-content .modal-info-wrapper h3, .modal .contents-wrapper .container .activity-modal-content .modal-info-wrapper p {
    color: white;
    width: 100%;
  }
  .modal .contents-wrapper .container .activity-modal-content .modal-info-wrapper .cta-secondary {
    margin: auto;
  }
}

.seasonal-dropdowns {
  background-color: #5A534A;
  padding-bottom: 2rem;
}
.seasonal-dropdowns .button-row {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.seasonal-dropdowns .button-row .dropdown-button {
  display: flex;
  justify-content: space-between;
  border-radius: 2.75rem;
  font-size: 1.25rem;
  width: 25%;
  background-color: #EF8200;
  margin-left: auto;
  margin-right: auto;
  padding: 0.75rem 1rem;
  font-family: "Noto Sans";
  font-weight: bold;
  text-align: left;
  color: white;
  border: solid 0.15rem white;
  cursor: pointer;
}
.seasonal-dropdowns .button-row .dropdown-button .dropdown-arrow {
  width: 2rem;
  fill: currentColor;
  transition: transform 0.3s ease;
  transform: rotate(180deg);
}
.seasonal-dropdowns .button-row .dropdown-button:hover {
  color: #EF8200;
  background-color: white;
  transition: ease-in-out 0.2s;
}
.seasonal-dropdowns .button-row .dropdown-button.active {
  color: #EF8200;
  background-color: white;
}
.seasonal-dropdowns .button-row .dropdown-button.active .dropdown-arrow {
  transform: rotate(0deg);
}
@media (max-width: 1199.98px) {
  .seasonal-dropdowns .button-row .dropdown-button {
    font-size: 0.9rem;
  }
  .seasonal-dropdowns .button-row .dropdown-button .dropdown-arrow {
    width: 1.25rem;
  }
}
@media (max-width: 991.98px) {
  .seasonal-dropdowns .button-row .dropdown-button {
    font-size: 0.75rem;
  }
  .seasonal-dropdowns .button-row .dropdown-button .dropdown-arrow {
    width: 1rem;
  }
}
@media (max-width: 767.98px) {
  .seasonal-dropdowns .button-row {
    flex-direction: column;
    gap: 1rem;
  }
  .seasonal-dropdowns .button-row .dropdown-button {
    width: 100%;
    font-size: 1.25rem;
  }
  .seasonal-dropdowns .button-row .dropdown-button .dropdown-arrow {
    width: 2rem;
  }
}
.seasonal-dropdowns .dropdown-section {
  width: 100%;
  background-color: white;
  border-radius: 2rem;
  padding: 2rem;
  display: none;
}
.seasonal-dropdowns .dropdown-section img {
  border-radius: 1rem;
  width: 100%;
  height: auto;
}
.seasonal-dropdowns .dropdown-section .cta-secondary {
  margin-top: 1rem;
  margin-left: auto;
  margin-right: auto;
  padding-right: 2rem;
  padding-left: 2rem;
  width: -moz-fit-content;
  width: fit-content;
}
.seasonal-dropdowns #schedule .box-1, .seasonal-dropdowns #schedule .box-2 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  padding: 1rem;
  border-radius: 1rem;
}
.seasonal-dropdowns #schedule .box-1 {
  background-color: #f7f7f7;
}
.seasonal-dropdowns #schedule h4 {
  font-family: "Noto Sans JP";
  color: #EF8200;
  font-weight: 900;
  font-size: 1.25rem;
  padding-bottom: 0.5rem;
}
.seasonal-dropdowns #schedule h5 {
  font-size: 1rem !important;
  font-weight: bold;
}
.seasonal-dropdowns #schedule .english-class-row {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}
.seasonal-dropdowns #schedule .english-class-row .elementary, .seasonal-dropdowns #schedule .english-class-row .kindy {
  width: 50%;
}
@media (max-width: 767.98px) {
  .seasonal-dropdowns #schedule .english-class-row {
    flex-direction: column;
  }
  .seasonal-dropdowns #schedule .english-class-row .elementary, .seasonal-dropdowns #schedule .english-class-row .kindy {
    width: 100%;
  }
}

.lower-cta {
  background-color: #EF8200;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.lower-cta .lower-cta-contents {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.lower-cta .lower-cta-contents .image {
  width: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.lower-cta .lower-cta-contents .image img {
  margin: auto;
}
.lower-cta .lower-cta-contents .text {
  width: 60%;
  height: -moz-fit-content;
  height: fit-content;
  margin-left: 0;
}
.lower-cta .lower-cta-contents .text h2 {
  text-align: left;
  padding-bottom: 1rem;
  margin-left: 10%;
}
.lower-cta .lower-cta-contents .text .cta-button {
  margin: auto;
  margin-left: 10%;
}
@media screen and (max-width: 767.98px) {
  .lower-cta .lower-cta-contents .image {
    width: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .lower-cta .lower-cta-contents .image img {
    margin: auto;
  }
  .lower-cta .lower-cta-contents .text {
    width: 70%;
  }
  .lower-cta .lower-cta-contents .text h2 {
    margin-left: 5%;
  }
  .lower-cta .lower-cta-contents .text .cta-button {
    margin-left: 5%;
  }
}
@media (max-width: 575.98px) {
  .lower-cta .lower-cta-contents {
    flex-direction: column;
  }
  .lower-cta .lower-cta-contents .image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .lower-cta .lower-cta-contents .image img {
    margin: auto;
  }
  .lower-cta .lower-cta-contents .text {
    width: 100%;
  }
  .lower-cta .lower-cta-contents .text h2 {
    margin-left: unset;
    text-align: center;
    padding-bottom: 2rem;
    padding-top: 1rem;
    font-size: 1.3rem;
  }
  .lower-cta .lower-cta-contents .text .cta-button {
    margin: auto;
  }
}

/* Swiper Container Styling */
.gallery-swiper {
  width: 100%; /* Swiper container is full width */
  height: auto;
}
.gallery-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  aspect-ratio: 3/2;
  border-radius: 2rem;
  overflow: hidden;
  background-color: #EF8200;
  border: solid white 0.5rem;
}
@media screen and (max-width: 767.98px) {
  .gallery-swiper .swiper-slide {
    aspect-ratio: 1/1;
  }
}
.gallery-swiper .swiper-slide .container {
  padding: 0;
}
.gallery-swiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  cursor: pointer;
  margin: auto;
}

/* Custom Navigation Styling */
.swiper-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  padding-top: 0.5rem;
}
.swiper-nav .previous,
.swiper-nav .next {
  cursor: pointer;
  transition: color 0.3s ease;
  width: 4rem;
}
.swiper-nav .previous .swiper-button-bg,
.swiper-nav .next .swiper-button-bg {
  fill: #EF8200;
}
.swiper-nav .previous .swiper-button-arrow,
.swiper-nav .next .swiper-button-arrow {
  fill: white;
}
.swiper-nav .previous,
.swiper-nav .next {
  transition: ease-in-out 0.2s;
  opacity: 0.9;
}
.swiper-nav .previous:hover,
.swiper-nav .next:hover {
  opacity: 0.6;
}

/* Modal Styling */
.image-modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
}

.image-modal.show {
  display: flex; /* Show the modal */
}

.modal-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(51, 51, 51, 0.7); /* Corresponds to --kidsup-gray at 66% opacity */
}

.modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 90%;
  z-index: 9999; /* Above the background */
}

.close-modal {
  position: absolute;
  top: 6rem;
  right: 1rem;
  color: white;
  background-color: #EF8200;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  z-index: 9003; /* Above the image */
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
}

.FAQ {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.FAQ .accordion-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding-top: 1rem;
}
.FAQ .accordion-wrapper .accordion-item {
  border-radius: 2rem;
  overflow: hidden;
}
.FAQ .accordion-wrapper .accordion-item .accordion-button {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1rem;
  cursor: pointer;
  background-color: #5A534A;
  border: none;
  color: white;
  text-align: left;
  border-radius: 2rem;
  transition: background-color 0.3s ease, border-radius 0.3s ease;
}
.FAQ .accordion-wrapper .accordion-item .accordion-button h3 {
  font-size: 1.5rem;
  font-family: "Shin-Maru-GP-Bold";
  color: inherit;
}
.FAQ .accordion-wrapper .accordion-item .accordion-button .accordion-icon {
  width: 3rem;
  height: 3rem;
  transition: transform 0.3s ease;
}
.FAQ .accordion-wrapper .accordion-item .accordion-button .accordion-icon line {
  stroke: currentColor;
  stroke-width: 2;
  transition: opacity 0.3s ease;
  stroke-linecap: round;
}
.FAQ .accordion-wrapper .accordion-item .accordion-button .accordion-icon .vert {
  opacity: 1;
}
.FAQ .accordion-wrapper .accordion-item .accordion-content {
  height: 0;
  overflow: hidden;
  transition: background-color 0.3s ease, height 0.3s ease-in-out;
  padding: 0 2rem;
  background: #fff;
  color: #333;
  border-radius: 0 0 2rem 2rem;
}
.FAQ .accordion-wrapper .accordion-item .accordion-content p {
  margin: 1rem 0;
}
.FAQ .accordion-wrapper .accordion-item {
  /* Expanded state */
}
.FAQ .accordion-wrapper .accordion-item.active .accordion-button {
  border-radius: 2rem 2rem 0 0;
  transition: background-color 0.3s ease, border-radius 0.3s ease 0s;
}
.FAQ .accordion-wrapper .accordion-item.active .accordion-icon .vert {
  opacity: 0;
}
.FAQ .accordion-wrapper .accordion-item.active .accordion-content {
  border-radius: 0 0 2rem 2rem;
}
.FAQ .accordion-wrapper .accordion-item {
  /* Collapsing state (delay border-radius) */
}
.FAQ .accordion-wrapper .accordion-item:not(.active) .accordion-button {
  border-radius: 2rem;
  transition: background-color 0.3s ease, border-radius 0.3s ease 0.3s;
}

.sign-up {
  margin-bottom: 1rem;
}
.sign-up .sign-up-row {
  padding-top: 2rem;
  display: flex;
  flex-direction: row;
  gap: 1rem;
}
.sign-up .sign-up-row .step {
  width: 33.3333333333%;
}
.sign-up .sign-up-row .step .step-image {
  width: 100%;
  aspect-ratio: 1/1;
  margin-bottom: 1rem;
}
.sign-up .sign-up-row .step .step-image .sign-up-bg {
  fill: white;
}
.sign-up .sign-up-row .step .step-image .sign-up-main-colour {
  fill: #EF8200;
}
.sign-up .sign-up-row .step .step-image .sign-up-stroke {
  fill: #5A534A;
}
.sign-up .sign-up-row .step h3 {
  margin-bottom: 1rem;
  font-size: 1.75rem;
}
.sign-up .button-box {
  display: flex;
  flex-direction: row;
  margin: auto;
  width: -moz-fit-content;
  width: fit-content;
  justify-content: space-between;
  width: 60%;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.sign-up .button-box .cta-button {
  width: 40%;
}
@media (max-width: 1399.98px) {
  .sign-up .button-box {
    width: 65%;
  }
}
@media (max-width: 1199.98px) {
  .sign-up .button-box {
    width: 75%;
  }
}
@media (max-width: 991.98px) {
  .sign-up .button-box {
    width: 100%;
  }
}
@media (max-width: 767.98px) {
  .sign-up .sign-up-row {
    flex-direction: column;
  }
  .sign-up .sign-up-row .step {
    width: 100%;
  }
  .sign-up .button-box {
    flex-direction: column;
    justify-content: unset;
    gap: 1rem;
  }
  .sign-up .button-box .cta-button {
    width: 100%;
    max-width: 425px;
  }
}

.bottom {
  background-color: #5A534A;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.bottom h3 {
  font-size: 1.5rem;
  color: white;
  font-family: "Shin-Maru-GP-Bold";
  text-align: center;
  padding-top: 1rem;
}
.bottom p {
  text-align: center;
  color: white;
}
.bottom .bottom-image {
  display: flex;
  width: 50%;
  margin: auto;
}

#footer {
  background-color: #EF8200;
  padding: 3.125rem;
  padding-bottom: 1.875rem;
}
#footer ol,
#footer ul {
  list-style: none;
  font-family: "Noto Sans JP";
}
#footer a {
  font-family: "Noto Sans JP";
  text-decoration: none !important;
  color: inherit;
}
#footer .footer-link {
  padding: 0 10px;
}
#footer .footer-top-row {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  padding-bottom: 0.25rem;
}
#footer .footer-top-row .logo-sns-box {
  width: 25%;
  height: -moz-fit-content;
  height: fit-content;
  margin: auto;
  position: relative;
}
#footer .footer-top-row .logo-sns-box .footer-logo {
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  transition: ease-in-out 0.2s;
  display: flex;
  padding-bottom: 0.5rem;
}
#footer .footer-top-row .logo-sns-box .footer-logo img {
  height: auto;
  width: 90%;
  max-width: 230px;
  margin: auto;
}
#footer .footer-top-row .logo-sns-box .footer-logo img:hover {
  opacity: 0.6;
}
#footer .footer-top-row .logo-sns-box .sns-area {
  width: 100%;
  display: flex;
  padding-bottom: 0.5rem;
}
#footer .footer-top-row .logo-sns-box .sns-area .sns-wrapper {
  margin: auto;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  flex-direction: row;
}
#footer .footer-top-row .logo-sns-box .sns-area .sns-wrapper img {
  display: block;
  max-width: 14.375rem;
  margin: auto;
  max-height: 4.25rem;
  transition: ease-in-out 0.2s;
}
#footer .footer-top-row .logo-sns-box .sns-area .sns-wrapper img:hover {
  opacity: 0.6;
}
#footer .footer-top-row .logo-sns-box .copyright {
  margin: auto;
  margin-top: 2.5;
  display: flex;
  font-weight: bold;
  color: white;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Noto Sans JP";
  text-align: center;
}
#footer .hyperlinks-box {
  width: 75%;
  display: flex;
  justify-content: center;
}
#footer .hyperlinks-box ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  font-weight: bold;
}
#footer .hyperlinks-box ul li {
  color: inherit;
  color: white;
  font-family: "Noto Sans JP";
  transition: ease-in-out 0.2s;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
#footer .hyperlinks-box ul li:hover {
  opacity: 0.6;
}
#footer .footer-sub-area {
  width: 100%;
  display: flex;
  padding-left: calc(25% + 1rem);
  position: relative;
}
#footer .footer-sub-area .sub-area-contents {
  width: 100%;
  display: flex;
}
#footer .footer-sub-area .sub-area-contents .button-wrapper {
  display: flex;
  flex-direction: row;
  width: auto;
  height: auto;
  gap: 1rem;
}
#footer .footer-sub-area .sub-area-contents .button-wrapper .footer-button {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1rem;
  padding: 1rem;
  padding-left: 3rem;
  padding-right: 3rem;
  border-radius: 3rem;
  justify-content: center;
  background-color: #5A534A;
  border: solid 0.0725rem white;
  color: white !important;
  font-weight: bolder;
  transition: ease-in-out 0.2s;
}
#footer .footer-sub-area .sub-area-contents .button-wrapper .footer-button:hover {
  opacity: 0.75;
}
#footer .footer-sub-area .sub-area-contents .button-wrapper .footer-button-blue {
  background-color: #84c1da;
}
#footer .footer-sub-area .sub-area-contents .policy-links {
  width: auto;
  display: flex;
  gap: 1rem;
  margin-right: 0;
  margin-left: auto;
}
#footer .footer-sub-area .sub-area-contents .policy-links a {
  margin: auto;
  margin-bottom: 0;
  color: white !important;
  font-weight: bold;
  transition: ease-in-out 0.2s;
  font-size: 0.75rem;
}
#footer .footer-sub-area .sub-area-contents .policy-links a:hover {
  opacity: 0.6;
}
@media (max-width: 1399.98px) {
  #footer .footer-top-row .logo-sns-box {
    width: 30%;
  }
  #footer .footer-top-row .hyperlinks-box {
    width: 70%;
  }
  #footer .footer-sub-area {
    padding-left: calc(30% + 1rem);
  }
  #footer .footer-sub-area .sub-area-contents .policy-links {
    display: flex;
    flex-direction: column;
    gap: 0rem;
  }
  #footer .footer-sub-area .sub-area-contents .policy-links a {
    margin-right: 0;
  }
}
@media (max-width: 1199.98px) {
  #footer .footer-top-row .logo-sns-box {
    width: 20%;
  }
  #footer .footer-top-row .hyperlinks-box {
    width: 80%;
  }
  #footer .footer-sub-area {
    padding-left: calc(20% + 1rem);
  }
  #footer .footer-sub-area .sub-area-contents .button-wrapper {
    gap: 0.5rem;
  }
  #footer .footer-sub-area .sub-area-contents .button-wrapper .footer-button {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (max-width: 991.98px) {
  #footer .footer-top-row .logo-sns-box {
    width: 15%;
  }
  #footer .footer-top-row .hyperlinks-box {
    width: 85%;
  }
  #footer .footer-sub-area {
    padding-left: calc(15% + 1rem);
  }
  #footer .footer-sub-area .sub-area-contents .button-wrapper {
    gap: 0.5rem;
  }
  #footer .footer-sub-area .sub-area-contents .button-wrapper .footer-button {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (max-width: 767.98px) {
  #footer {
    background-color: #EF8200;
    padding: unset;
    padding-left: 2.5%;
    padding-right: 2.5%;
    padding-top: 2rem;
    padding-bottom: 1.875rem;
  }
  #footer .footer-top-row {
    flex-direction: column;
  }
  #footer .footer-top-row .logo-sns-box {
    width: 100%;
  }
  #footer .footer-top-row .logo-sns-box .footer-logo img {
    width: 90%;
    max-width: 576px;
  }
  #footer .footer-top-row .hyperlinks-box {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-bottom: 0.5rem;
  }
  #footer .footer-top-row .hyperlinks-box ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    font-weight: bold;
  }
  #footer .footer-top-row .hyperlinks-box ul li {
    color: inherit;
    color: white;
    font-family: "Noto Sans JP";
    transition: ease-in-out 0.2s;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  #footer .footer-top-row .hyperlinks-box ul li:hover {
    opacity: 0.6;
  }
  #footer .footer-sub-area {
    width: 100%;
    display: flex;
    padding-left: unset;
    position: relative;
    flex-direction: column;
  }
  #footer .footer-sub-area .sub-area-contents {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  #footer .footer-sub-area .sub-area-contents .button-wrapper {
    display: flex;
    flex-direction: column;
    width: auto;
    height: auto;
    gap: 1rem;
    padding-bottom: 1rem;
  }
  #footer .footer-sub-area .sub-area-contents .button-wrapper .footer-button {
    padding-left: 5rem;
    padding-right: 5rem;
    border-radius: 3rem;
    margin: auto;
  }
  #footer .footer-sub-area .sub-area-contents .policy-links {
    width: auto;
    display: flex;
    gap: 1rem;
    margin-right: auto;
    margin-left: auto;
  }
}/*# sourceMappingURL=event-pages-common.css.map */